/*{ margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0A1628;
  --royal: #1B3A8C;
  --gold: #F5A623;
  --teal: #3A8A85;
  --offwhite: #F8F9FC;
  --charcoal: #0D0D0D;
  --gray: #6B7280;
}

html { scroll-behavior: smooth; }
html, body { max-width: 100% !important; overflow-x: hidden;      font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  line-height: 1.6; }


a { text-decoration: none; }*/

/* =============================================
   NAVIGATION
============================================= */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 2vw, 48px);
  transition: background 0.4s, box-shadow 0.4s;
  background-color: transparent;
}

#nav.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
  border-bottom: 1px solid white;
}

#nav.scrolled .hamburger span { background: #ffffff; }

.hamburger span {
  width: 24px; height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.nav-logo-wrap {
  background: #fff;
  border-radius: 8px;
  padding: 5px 0;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.nav-logo-wrap img { height: 44px; width: auto; }

.nav-logo-wrap .logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 7px 10px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.1); }

.nav-right { display: flex; align-items: center; gap: 12px; }

.btn-apply {
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 15px;
  border-radius: 7px;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn-apply:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 20px rgba(245,166,35,0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* DRAWER */
#drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(340px, 90vw);
  height: 100vh;
  background: var(--navy);
  z-index: 1100;
  padding: 20px 0 40px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.45s ease-in-out;
  will-change: transform;
}

#drawer.open { transform: translateX(0); }

#drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

#drawer-overlay.open { opacity: 1; visibility: visible; }

.drawer-link {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 12px 28px;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, background 0.2s;
}

.drawer-link:hover { color: #fff; background: rgba(255,255,255,0.06); }

.drawer-cta { margin: 24px 28px 0; }

.drawer-cta a {
  display: block;
  text-align: center;
  background: var(--gold);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  padding: 14px;
  border-radius: 8px;
}
.nav-logo-pill{
  /* background:#ffffff; */
  border-radius:10px;
  padding:6px 16px;
  display:flex;
  align-items:center;
  /*box-shadow:0 2px 12px rgba(0,0,0,.25), 0 0 0 1px rgba(255,255,255,.6);*/
}
.nav-logo-pill img{height:70px;width:auto;display:block;}
.scrolled > .nav-logo-pill img{height:60px;}
.scrolled > .nav-logo-pill.logo {
    height: 50px;
}
footer{background:var(--navy);padding:60px 40px 32px;color:rgba(255,255,255,.65);}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr 2fr;gap:40px;margin-bottom:40px;}
.footer-brand .nav-logo{margin-bottom:16px;}
.footer-brand p{font-size:14px;line-height:1.7;max-width:280px;}
.footer-col h4{font-size:13px;font-weight:700;color:#fff;letter-spacing:.08em;text-transform:uppercase;margin-bottom:16px;}
.footer-col a{display:block;font-size:14px;color:rgba(255,255,255,.55);margin-bottom:10px;transition:color .2s;}
.footer-col a:hover{color:#fff;}
.footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding-top:24px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px;font-size:13px;}
.footer-bottom a{color:rgba(255,255,255,.4);transition:color .2s;}
.footer-bottom a:hover{color:#fff;}
@media(max-width:900px){.footer-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:580px){
  .footer-grid{grid-template-columns:1fr;}
  footer{padding:48px 20px 24px;}
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .btn-apply { padding: 9px 14px !important; }
}

@media (max-width: 600px) {
  .btn-apply { display: none !important; }
  .nav-logo-wrap img { height: 36px !important; }
  
}

@media (max-width: 640px) {
      #nav{ height: 90px; }
  }

/* =============================================
   TYPOGRAPHY
============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

/* =============================================
   HERO SECTION
============================================= */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--royal) 100%);
  text-align: center;
  min-height: 70vh;
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  height: 600px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
  z-index: 0;
}

.hero-content { position: relative; z-index: 1; width: 100%; }

.hero-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(32px, 6vw, 72px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.04;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.85);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

@media (max-width: 640px) {
      .hero{ min-height: 85vh; }
  }

.stat-pills {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-pill {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

/* =============================================
   INTRO STRIP
============================================= */
.intro-strip {
  background: var(--offwhite);
  padding: clamp(40px, 6vw, 60px) clamp(20px, 5vw, 40px);
  text-align: center;
}

.intro-strip p {
  font-size: 16px;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.map-placeholder {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--teal) 0%, var(--royal) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding: 20px;
}

/* =============================================
   MAIN CAMPUS SECTION
============================================= */
.main-campuses {
  background: white;
  padding: clamp(50px, 7vw, 80px) clamp(20px, 5vw, 40px);
}

.flagship-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  box-shadow: 0 8px 40px rgba(10,22,40,0.10);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
}

.flagship-card-visual {
  /*background: linear-gradient(135deg, var(--navy) 0%, var(--royal) 100%);*/
  /*background: linear-gradient(180deg, rgba(8, 20, 45, 0.35) 0%, rgba(8, 20, 45, 0.75) 55%, rgba(8, 20, 45, 0.95) 100% ), url("../../public/images/campus/bangalore-campus.png");*/
  background-image: url("../../public/images/campus/bangalore-campus-1.png");
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: clamp(24px, 4vw, 40px);
  position: relative;
  overflow: hidden;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/*.flagship-card-visual::before {
  content: '🏙️';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  font-size: 140px;
  opacity: 0.25;
  pointer-events: none;
}*/

.flagship-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.flagship-card-visual h3 {
  font-size: clamp(26px, 4vw, 36px);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  position: relative;
  z-index: 1;
  line-height: 1.1;
}

.flagship-card-visual .flagship-state {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}

.flagship-card-body {
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.flagship-card-body .campus-detail {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 10px;
  line-height: 1.6;
}

.flagship-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
  padding: 20px 0;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
}

.flagship-stat { text-align: center; }

.flagship-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.flagship-stat-label {
  font-size: 11px;
  color: var(--gray);
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.flagship-facilities {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 48px;
  color: var(--navy);
}

.campus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.campus-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.campus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.campus-card-header {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
}

.campus-card-header.bangalore { background: linear-gradient(135deg, var(--navy) 0%, var(--royal) 100%); }
.campus-card-header.mysore { background: linear-gradient(135deg, var(--royal) 0%, var(--teal) 100%); }

.campus-card-body { padding: clamp(20px, 3vw, 32px); }

.campus-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.campus-card h3 {
  font-size: clamp(24px, 3vw, 32px);
  color: var(--navy);
  margin-bottom: 8px;
}

.campus-state {
  font-size: 14px;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 16px;
}

.campus-detail {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 12px;
  line-height: 1.6;
}

.campus-facilities {
  margin: 20px 0;
  padding: 20px 0;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
}

.facility-item {
  font-size: 14px;
  color: var(--charcoal);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.facility-item::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.campus-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--royal);
  transition: color 0.3s ease;
}

.campus-link:hover { color: var(--teal); }

/* =============================================
   SATELLITE CAMPUSES
============================================= */
.satellite-campuses {
  background: var(--offwhite);
  padding: clamp(50px, 7vw, 80px) clamp(20px, 5vw, 40px);
}

.satellite-intro {
  font-size: 16px;
  color: var(--gray);
  max-width: 800px;
  margin: 0 0 48px 0;
  line-height: 1.8;
}

.satellite-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.satellite-card {
  background: white;
  border-radius: 12px;
  /*padding: 28px 24px;*/
  padding: 0 !important;
  text-align: center;
  border: 1px solid #E5E7EB;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  position: relative;
  overflow: hidden;
  /*min-height: 360px;*/
  min-height: auto;
  text-align: center;
  border-radius: 14px;
  /*background-size: cover;
  background-position: center;
  background-repeat: no-repeat;*/
}

.satellite-card::before {
    content: "";
    display: block;
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.satellite-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.satellite-grid .satellite-card:nth-child(1)::before {
    background-image: url("../../public/images/campus/mysore-campus.png");
}

.satellite-grid .satellite-card:nth-child(2)::before {
    background-image: url("../../public/images/campus/vizag-campus.jpg");
}

.satellite-grid .satellite-card:nth-child(3)::before {
    background-image: url("../../public/images/campus/coimbatore-campus-1.png");
}

.satellite-emoji {
    display: none !important;
}

/*.satellite-badge {
    display: inline-block;
    margin-top: 22px;
}*/

.satellite-badge {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;

    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;

    background: #e8f1ef;
    color: #287c78;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.satellite-card h3 {
    margin-top: 18px;
    margin-bottom: 6px;
}

.satellite-state {
    margin-bottom: 18px;
}

.satellite-contact {
    padding: 14px 0;
    margin: 0 24px;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.satellite-link {
    display: inline-block;
    margin: 24px 0 30px;
}

.satellite-emoji { font-size: 56px; margin: 12px 0; }

.satellite-card h3 {
  font-size: clamp(20px, 3vw, 24px);
  color: var(--navy);
  margin-bottom: 4px;
}

.satellite-state { font-size: 13px; color: var(--gray); margin-bottom: 16px; }

.satellite-contact {
  font-size: 13px;
  color: var(--gray);
  margin: 16px 0;
  padding: 12px 0;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
}

.satellite-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--royal);
  transition: color 0.3s ease;
}

.satellite-link:hover { color: var(--teal); }

/* =============================================
   GEMS EXPERIENCE
============================================= */
.gems-experience {
  background: linear-gradient(135deg, var(--navy) 0%, var(--royal) 100%);
  padding: clamp(50px, 7vw, 80px) clamp(20px, 5vw, 40px);
  color: white;
  position: relative;
  overflow: hidden;
}

.gems-experience::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
  z-index: 0;
}

.experience-content { position: relative; z-index: 1; }

.gems-experience h2 {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 48px;
  text-align: center;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.experience-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: clamp(20px, 3vw, 32px) clamp(16px, 2vw, 24px);
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.experience-card:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-6px);
}

.experience-icon { font-size: 48px; margin-bottom: 16px; }

.experience-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.experience-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

/* =============================================
   CAMPUS VISIT CTA
============================================= */
.campus-visit-cta {
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  padding: clamp(50px, 7vw, 80px) clamp(20px, 5vw, 40px);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.campus-visit-cta::after {
  content: '';
  position: absolute;
  bottom: -50%; right: -10%;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.campus-visit-cta h2 {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 16px;
}

.campus-visit-cta p {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid var(--gold);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 12px 32px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid white;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}



/* =============================================
   RESPONSIVE BREAKPOINTS
============================================= */

/* Large tablets */
@media (max-width: 1024px) {
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .flagship-card { grid-template-columns: 1fr; }
  .flagship-card-visual { min-height: 220px; }
}

/* Tablets */
@media (max-width: 900px) {
  .campus-grid { grid-template-columns: 1fr; }
  .satellite-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .flagship-stats-row { grid-template-columns: repeat(3, 1fr); }
}

/* Small tablets / large phones */
@media (max-width: 768px) {
  .satellite-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title { margin-bottom: 32px; }
  footer { padding: 40px 20px 24px !important; }
  footer > div > div:first-child {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px !important;
  }
}

/* Phones */
@media (max-width: 600px) {
  .satellite-grid { grid-template-columns: 1fr !important; }
  .experience-grid { grid-template-columns: 1fr !important; }
  .cta-buttons { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
  .stat-pills { flex-direction: column; align-items: center; }
  .stat-pill { width: 100%; text-align: center; }
  footer > div > div:first-child {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  footer > div > div:last-child {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  .flagship-stats-row { grid-template-columns: repeat(3, 1fr); gap: 8px; }
}

/* Very small phones */
@media (max-width: 400px) {
  .flagship-stats-row { grid-template-columns: 1fr; }
  .map-placeholder { width: 150px; height: 150px; }
}

.max-wrap { max-width: 1280px; margin: 0 auto; }

/*****************Footer Social Links*******************/

.footer-social h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    background: #fff;
    color: #000;
}