/* =========================================================
   SHUCHIT INFOTEK - BASE / NAVBAR / FOOTER STYLESHEET
   Base Font Size: 15.5px
   Layout: Widescreen expanded layout (1380px max-width)
   ========================================================= */

:root {
  --primary-blue: #0284c7;
  --primary-hover: #0369a1;
  --bg-dark-hero: #050b17;
  --bg-dark-footer: #040913;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border-color: #e2e8f0;
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 15.5px;
}

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

ul {
  list-style: none;
}

.wide-container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ================= TOP UTILITY BAR ================= */
.top-bar {
  background: #030811;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text-light);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left span {
  margin-right: 14px;
}

.top-bar-left .sep {
  opacity: 0.35;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-bar-right a:hover {
  color: #ffffff;
}

.btn-login {
  background: rgba(2, 132, 199, 0.18);
  color: #38bdf8;
  padding: 3px 12px;
  border-radius: 4px;
  font-weight: 500;
}

/* ================= MAIN HEADER / NAVBAR ================= */
.main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(5, 11, 23, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 15px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-svg {
  width: 36px;
  height: 36px;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.p-title {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.p-sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary-blue);
  letter-spacing: 1.2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-size: 0.98rem;
  font-weight: 500;
  color: #cbd5e1;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.btn-view-plans {
  background-color: var(--primary-blue);
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 5px;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.btn-view-plans:hover {
  background-color: var(--primary-hover);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #ffffff;
}

/* ================= PAGE BANNER ================= */
.inner-hero-section {
  position: relative;
  background: var(--bg-dark-hero);
  background-image: linear-gradient(180deg, rgba(5, 11, 23, 0.88) 0%, rgba(5, 11, 23, 0.98) 100%),
                    url('https://images.unsplash.com/photo-1544197150-b99a580bb7a8?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center center;
  padding: 70px 0 65px;
}

.breadcrumb-trail {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #38bdf8;
  margin-bottom: 12px;
}

.breadcrumb-trail a {
  color: #38bdf8;
}

.bc-sep {
  margin: 0 6px;
  color: rgba(255, 255, 255, 0.3);
}

.bc-curr {
  color: #94a3b8;
}

.page-title {
  font-size: 2.85rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

/* ================= BLOG MAIN SECTION ================= */
.blog-main-section {
  padding: 70px 0 100px;
  background-color: #ffffff;
  min-height: 450px;
}

.blog-content-placeholder {
  width: 100%;
}

/* ================= FOOTER ================= */
.site-footer {
  background: var(--bg-dark-footer);
  color: #94a3b8;
  padding: 70px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.text-white {
  color: #ffffff !important;
}

.footer-msg {
  font-size: 0.93rem;
  line-height: 1.68;
  color: #94a3b8;
  margin-bottom: 22px;
  max-width: 420px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.91rem;
}

.c-label {
  font-weight: 600;
  color: #ffffff;
  margin-right: 6px;
}

.col-head {
  font-size: 1.08rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
}

.col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.col-links a {
  font-size: 0.93rem;
  color: #94a3b8;
}

.col-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 22px 0;
  text-align: center;
  font-size: 0.86rem;
  color: #64748b;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-dark-hero);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-menu.is-open {
    display: flex;
  }
  .nav-list {
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
/* ================= BLOGS SECTION (EXACT 3 IN A ROW) ================= */
.blog-main-section {
  padding: 60px 0 90px;
  background-color: #ffffff;
  width: 100%;
}

/* 1 row mein barabar 3 cards */
.blogs-container {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 30px !important;
  width: 100% !important;
  box-sizing: border-box;
}

/* Card Styling */
.blog-frame {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #eef2f6;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex !important;
  flex-direction: column !important; /* Image upar, text neeche */
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.09);
}

/* Card Top Image */
.blog-image {
  width: 100% !important;
  height: 220px !important;
  overflow: hidden;
  background-color: #0b152b;
}

.blog-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
  transition: transform 0.35s ease;
}

.blog-frame:hover .blog-image img {
  transform: scale(1.04);
}

/* Card Bottom Content */
.blog-content {
  padding: 26px 22px !important;
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1;
  box-sizing: border-box;
}

/* Category Pill Tag (Screenshot jaisa) */
.blog-badge {
  align-self: flex-start;
  background: #eff6ff;
  color: #0284c7;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  display: inline-block;
}

.blog-content h1 {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  line-height: 1.4 !important;
  margin: 0 0 12px 0 !important;
  letter-spacing: -0.3px;
}

.blog-content p {
  font-size: 0.93rem !important;
  color: #64748b !important;
  line-height: 1.65 !important;
  margin: 0 0 24px 0 !important;
  flex-grow: 1;
}

/* Bottom Link */
.read-more {
  margin-top: auto;
}

.read-more a {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s, gap 0.2s;
}

.read-more a:hover {
  color: #0284c7;
  gap: 10px;
}

/* Responsive: Tablets par 2 cards aur Mobile par 1 card */
@media (max-width: 1024px) {
  .blogs-container {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }
}

@media (max-width: 680px) {
  .blogs-container {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .blog-image {
    height: 190px !important;
  }
}