/* ============================================

   CSS VARIABLES & RESET

   ============================================ */

:root {

    --primary-brown: #0b1e6d;
    --secondary-brown: #081652;
    --accent-gold: #d4a574;

    --text-dark: #1a1a2e;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-lighter: #fafafa;
    --white: #ffffff;

    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}



* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



html {

    scroll-behavior: smooth;

}



body {

    font-family: 'Poppins', sans-serif;

    line-height: 1.6;

    color: #1a1a2e;

    overflow-x: clip;

}



.container {

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 20px;

}



.container-fluid {

    max-width: 1400px;

    margin: 0 auto;

    padding: 0 20px;

}



/* ============================================

   TOP BAR — FROM 2ND CODE (preserved)

   ============================================ */

.top-bar {

  background: var(--primary-brown);

  color: var(--white);

  padding: 9px 0;

  font-size: 13px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.12);

}



.top-bar-content {

  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-wrap: wrap;

  gap: 8px;

}



.top-bar-left {

  display: flex;

  gap: 28px;

  align-items: center;

  flex-wrap: wrap;

}



.top-bar-info {

  display: flex;

  align-items: center;

  gap: 7px;

  font-weight: 500;

}



.top-bar-info i {

  font-size: 11px;

  color: var(--accent-gold);

}



.top-bar-right {

  display: flex;

  gap: 18px;

  align-items: center;

}



.top-bar-right a {

  display: flex;

  align-items: center;

  gap: 5px;

  color: var(--white);

  font-size: 13px;

  font-weight: 500;

  transition: var(--transition);

  padding: 3px 0;

  position: relative;

}



.top-bar-right a::after {

  content: '';

  position: absolute;

  bottom: 0;
  left: 0;

  width: 0;
  height: 1px;

  background: var(--accent-gold);

  transition: var(--transition);

}



.top-bar-right a:hover::after {
  width: 100%;
}



.top-bar-right a i {

  font-size: 11px;

  color: var(--accent-gold);

}



/* ============================================

   HEADER — FROM 2ND CODE (preserved exactly)

   ============================================ */

.header {

  background: var(--white);

  padding: 10px 0;

  border-bottom: 3px solid var(--primary-brown);

  box-shadow: var(--shadow);

  position: relative;

  z-index: 100;

}



.header-content {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

}



.header-logo {
  flex-shrink: 0;
}



.header-logo img {

  width: 100px;

  height: auto;

  filter: drop-shadow(0 4px 8px rgba(0, 36, 114, 0.15));

  transition: var(--transition);

}



.header-logo img:hover {
  transform: scale(1.03);
}



.header-text {
  flex-grow: 1;
}



.header-text h1 {

  font-family: 'Cooper Black', 'Georgia', serif;

  font-size: 25px;

  color: var(--primary-brown);

  font-weight: 700;

  margin-bottom: 4px;

  line-height: 1.25;

  letter-spacing: 0.2px;

}



.header-subtitle {

  font-size: 14px;

  color: var(--text-dark);

  font-weight: 600;

  margin-bottom: 2px;

}



.header-info {

  font-size: 13px;

  color: var(--text-light);

  font-weight: 400;

  margin-bottom: 2px;

}



.header-accreditation {

  font-size: 13px;

  color: var(--text-light);

  font-weight: 400;

}



.header-accreditation strong {

  color: var(--text-dark);

  font-weight: 600;

}



.header-accreditation-logos {

  display: flex;

  align-items: center;

  gap: 44px;

  flex-shrink: 0;

}



.logo-card {

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  background: var(--white);

  transition: var(--transition);

}



.logo-card:hover {

  transform: translateY(-2px);

}



.naac-card {
  position: relative;
  top: 0px;
  left: 0px;
}

.naac-card img {

  height: 94px;

  width: auto;

  object-fit: contain;

}



.nba-card {

  position: relative;
  top: -3px;

}



.nba-card img {

  height: 68px;

  width: auto;

  object-fit: contain;

}



.nba-subtext {

  position: absolute;

  top: 95%;

  left: 50%;

  transform: translateX(-50%);

  font-size: 11px;

  font-weight: 800;

  color: var(--secondary-brown);

  text-transform: uppercase;

  letter-spacing: 0.5px;

  margin-top: 2px;

  white-space: nowrap;

}



/* ============================================

   NAVBAR — FROM 2ND CODE (preserved exactly)

   ============================================ */

.navbar {

  background: var(--secondary-brown);

  position: relative;

  z-index: 1000;

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);

  transition: box-shadow 0.3s ease;

}



.sticky-header-wrapper.scrolled {
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.22);
}



.nav-container {

  display: flex;

  justify-content: center;

  align-items: center;

}



.nav-links {

  display: flex;

  align-items: stretch;

  margin: 0;

  padding: 0;

}



.nav-item {
  position: relative;
}



.nav-item>a {

  display: flex;

  align-items: center;

  gap: 5px;

  padding: 16px 17px;

  color: var(--white);

  font-weight: 500;

  font-size: 13.5px;

  transition: var(--transition);

  white-space: nowrap;

  position: relative;

}



.nav-item>a::after {

  content: '';

  position: absolute;

  bottom: 0;

  left: 50%;

  transform: translateX(-50%);

  width: 0;
  height: 3px;

  background: var(--accent-gold);

  border-radius: 2px 2px 0 0;

  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);

}



.nav-item>a:hover::after,

.nav-item>a.active::after {
  width: calc(100% - 20px);
}



.nav-item>a:hover,

.nav-item>a.active {

  background: rgba(255, 255, 255, 0.08);

  color: var(--accent-gold);

}



.nav-item>a i.fa-chevron-down {

  font-size: 9px;

  transition: transform 0.3s ease;

}



.nav-item:hover>a i.fa-chevron-down {
  transform: rotate(180deg);
}



/* Dropdown */

.dropdown-menu {

  position: absolute;

  top: 100%;
  left: 0;

  background: var(--white);

  min-width: 260px;

  box-shadow: var(--shadow-lg);

  border-radius: 0 0 10px 10px;

  border-top: 3px solid var(--primary-brown);

  opacity: 0;

  visibility: hidden;

  transform: translateY(-8px);

  transition: var(--transition);

  padding: 8px 0;

}



.nav-item:hover .dropdown-menu {

  opacity: 1;

  visibility: visible;

  transform: translateY(0);

}



.dropdown-menu a {

  display: block;

  padding: 11px 20px;

  color: var(--text-dark);

  font-size: 13.5px;

  font-weight: 500;

  transition: var(--transition);

  border-left: 3px solid transparent;

}



.dropdown-menu a:hover {

  background: var(--bg-light);

  color: var(--primary-brown);

  border-left-color: var(--primary-brown);

  padding-left: 26px;

}



/* Mega Menu */

.mega-menu {
  min-width: 680px;
}

.mega-menu-wide {
  min-width: 880px;
}



.mega-menu-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 16px;

  padding: 22px;

}



.mega-menu-grid-wide {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 24px;

  padding: 22px;

}



.mega-column h4 {

  font-size: 12px;

  font-weight: 700;

  color: var(--primary-brown);

  text-transform: uppercase;

  letter-spacing: 0.8px;

  padding-bottom: 8px;

  margin-bottom: 6px;

  border-bottom: 2px solid var(--primary-brown);

  white-space: normal;

}



.mega-column a {

  display: block;

  white-space: normal;

  word-break: break-word;

  padding: 7px 0;

  line-height: 1.45;

  font-size: 13px;

  font-weight: 500;

  color: var(--text-dark);

  transition: var(--transition);

  border-left: 2px solid transparent;

  padding-left: 4px;

}



.mega-column a:hover {

  color: var(--primary-brown);

  border-left-color: var(--primary-brown);

  padding-left: 10px;

  background: none;

}



/* Hamburger */

.hamburger {

  display: none;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  gap: 5px;

  width: 46px;
  height: 46px;

  padding: 10px;

  background: var(--primary-brown);

  border: none;

  border-radius: 8px;

  cursor: pointer;

  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.28);

  transition: var(--transition);

  flex-shrink: 0;

}



.hamburger:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.04);
}



.hamburger span {

  display: block;

  width: 24px;
  height: 2.5px;

  background: var(--white);

  border-radius: 2px;

  transition: all 0.3s ease;

}



.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5.5px, 5.5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-16px);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5.5px, -5.5px);
}







/* ============================================

   BREADCRUMB

   ============================================ */

.breadcrumb {

    background: var(--bg-light);

    padding: 15px 0;

    border-bottom: 1px solid #e0e0e0;

}



.breadcrumb a {

    color: var(--text-light);

    text-decoration: none;

    transition: var(--transition);

}



.breadcrumb a:hover {

    color: var(--primary-brown);

}



.breadcrumb .separator {

    margin: 0 10px;

    color: var(--text-light);

}



.breadcrumb .current {

    color: var(--primary-brown);

    font-weight: 600;

}



/* ============================================

   HERO SECTION

   ============================================ */

.hero-section {

    position: relative;

    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--secondary-brown) 100%);

    padding: 100px 0;

    text-align: center;

    overflow: hidden;

}



.hero-section::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background: 

        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),

        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);

    animation: pulse 8s ease-in-out infinite;

}



.hero-overlay {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)" /></svg>');

}



.hero-content {

    position: relative;

    z-index: 2;

}



.hero-title {

    font-size: 52px;

    font-weight: 800;

    color: var(--white);

    margin-bottom: 20px;

    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);

}



.hero-subtitle {

    font-size: 20px;

    color: rgba(255, 255, 255, 0.9);

    margin-bottom: 30px;

    font-weight: 300;

}



.hero-divider {

    width: 80px;

    height: 4px;

    background: var(--accent-gold);

    margin: 0 auto;

    border-radius: 2px;

}



/* ============================================

   ABOUT SECTION

   ============================================ */

.about-section {

    padding: 100px 0;

    background: var(--white);

}



.about-grid {

    display: grid;

    grid-template-columns: 1.5fr 1fr;

    gap: 60px;

    align-items: start;

}



.section-badge {

    display: inline-block;

    background: rgba(124, 40, 9, 0.1);

    color: var(--primary-brown);

    padding: 8px 20px;

    border-radius: 20px;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 15px;

}



.section-title {

    font-size: 42px;

    font-weight: 700;

    color: var(--primary-brown);

    margin-bottom: 30px;

    line-height: 1.2;

}



.about-text {

    font-size: 16px;

    line-height: 1.8;

    color: var(--text-dark);

    margin-bottom: 20px;

    text-align: justify;

}



.about-text strong {

    color: var(--primary-brown);

    font-weight: 700;

}



.about-stats {

    display: grid;

    grid-template-columns: 1fr;

    gap: 20px;

}



.stat-box {

    background: linear-gradient(135deg, var(--bg-light), var(--white));

    padding: 25px;

    border-radius: 12px;

    display: flex;

    align-items: center;

    gap: 20px;

    border: 2px solid transparent;

    transition: var(--transition);

    box-shadow: var(--shadow);

}



.stat-box:hover {

    border-color: var(--primary-brown);

    transform: translateX(10px);

    box-shadow: var(--shadow-lg);

}



.stat-icon {

    width: 60px;

    height: 60px;

    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

}



.stat-icon i {

    font-size: 26px;

    color: var(--white);

}



.stat-number {

    font-size: 28px;

    font-weight: 700;

    color: var(--primary-brown);

    margin-bottom: 5px;

}



.stat-label {

    font-size: 13px;

    color: var(--text-light);

    font-weight: 500;

}



/* ============================================

   MISSION OVERVIEW SECTION

   ============================================ */

.mission-overview-section {

    padding: 80px 0;

    background: var(--bg-light);

}



.mission-overview-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));

    gap: 40px;

}



.mission-card {

    background: var(--white);

    padding: 45px;

    border-radius: 16px;

    box-shadow: var(--shadow);

    text-align: center;

    transition: var(--transition);

    border-top: 5px solid var(--primary-brown);

}



.mission-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow-lg);

}



.mission-icon-wrapper {

    width: 80px;

    height: 80px;

    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 25px;

    transition: var(--transition);

}



.mission-card:hover .mission-icon-wrapper {

    transform: rotateY(360deg);

}



.mission-icon-wrapper i {

    font-size: 36px;

    color: var(--white);

}



.mission-card-title {

    font-size: 24px;

    font-weight: 700;

    color: var(--primary-brown);

    margin-bottom: 15px;

}



.mission-card-text {

    font-size: 15px;

    line-height: 1.8;

    color: var(--text-light);

    margin-bottom: 25px;

}



.mission-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--primary-brown);

    font-weight: 600;

    text-decoration: none;

    transition: var(--transition);

}



.mission-link:hover {

    gap: 12px;

}



/* ============================================

   PLACEMENT SECTION

   ============================================ */

.placement-section {

    padding: 100px 0;

    background: var(--white);

}



.section-header-center {

    text-align: center;

    margin-bottom: 60px;

}



.section-description {

    font-size: 16px;

    color: var(--text-light);

    max-width: 700px;

    margin: 15px auto 0;

    line-height: 1.7;

}



.placement-highlights {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

    gap: 30px;

}



.highlight-card {

    background: linear-gradient(135deg, var(--bg-light), var(--white));

    padding: 40px;

    border-radius: 16px;

    text-align: center;

    border: 2px solid transparent;

    transition: var(--transition);

    box-shadow: var(--shadow);

}



.highlight-card:hover {

    border-color: var(--primary-brown);

    transform: translateY(-10px);

    box-shadow: var(--shadow-lg);

}



.highlight-icon {

    width: 80px;

    height: 80px;

    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 25px;

    transition: var(--transition);

}



.highlight-card:hover .highlight-icon {

    transform: scale(1.1) rotate(5deg);

}



.highlight-icon i {

    font-size: 36px;

    color: var(--white);

}



.highlight-title {

    font-size: 22px;

    font-weight: 700;

    color: var(--primary-brown);

    margin-bottom: 15px;

}



.highlight-description {

    font-size: 15px;

    line-height: 1.7;

    color: var(--text-light);

}



/* ============================================

   PARTNERS SECTION

   ============================================ */

.partners-section {

    padding: 100px 0;

    background: var(--bg-light);

}



.partners-grid {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));

    gap: 25px;

}



.partner-card {

    background: var(--white);

    padding: 30px;

    border-radius: 12px;

    text-align: center;

    border: 2px solid transparent;

    transition: var(--transition);

    box-shadow: var(--shadow);

    cursor: pointer;

}



.partner-card:hover {

    border-color: var(--primary-brown);

    transform: translateY(-8px);

    box-shadow: var(--shadow-lg);

}



.partner-logo {

    width: 70px;

    height: 70px;

    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));

    color: var(--white);

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 20px;

    transition: var(--transition);

}



.partner-card:hover .partner-logo {

    transform: rotateY(180deg);

}



.partner-logo span {

    font-size: 24px;

    font-weight: 700;

}



.partner-name {

    font-size: 16px;

    font-weight: 600;

    color: var(--text-dark);

    margin-bottom: 8px;

    line-height: 1.4;

}



.partner-category {

    font-size: 13px;

    color: var(--text-light);

}



/* ============================================

   CTA SECTION

   ============================================ */

.cta-section {

    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--secondary-brown) 100%);

    color: var(--white);

    text-align: center;

    padding: 80px 0;

    position: relative;

    overflow: hidden;

}



.cta-section::before {

    content: '';

    position: absolute;

    top: -50%;

    left: -50%;

    width: 200%;

    height: 200%;

    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);

    animation: rotate 30s linear infinite;

}



.cta-content {

    position: relative;

    z-index: 2;

}



.cta-title {

    font-size: 38px;

    font-weight: 700;

    margin-bottom: 15px;

}



.cta-description {

    font-size: 18px;

    margin-bottom: 35px;

    opacity: 0.9;

}



.cta-buttons {

    display: flex;

    gap: 20px;

    justify-content: center;

    flex-wrap: wrap;

}



.btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 32px;

    border-radius: 8px;

    font-weight: 600;

    font-size: 15px;

    transition: var(--transition);

    cursor: pointer;

    text-decoration: none;

    border: 2px solid transparent;

}



.btn-primary {

    background: var(--white);

    color: var(--primary-brown);

}



.btn-primary:hover {

    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);

}



.btn-outline {

    background: transparent;

    color: var(--white);

    border-color: var(--white);

}



.btn-outline:hover {

    background: var(--white);

    color: var(--primary-brown);

}



/* ============================================

   FOOTER

   ============================================ */

.footer {

    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);

    color: var(--white);

    padding: 60px 0 20px;

}



.footer-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 40px;

    margin-bottom: 40px;

}



.footer-title {

    font-size: 20px;

    font-weight: 700;

    color: var(--accent-gold);

    margin-bottom: 25px;

}



.footer-contact {

    list-style: none;

}



.footer-contact li {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 15px;

}



.footer-contact i {

    color: var(--accent-gold);

    font-size: 16px;

    margin-top: 3px;

}



.footer-links {

    list-style: none;

}



.footer-links li {

    margin-bottom: 12px;

}



.footer-links a {

    color: rgba(255, 255, 255, 0.8);

    transition: var(--transition);

    text-decoration: none;

}



.footer-links a:hover {

    color: var(--accent-gold);

    padding-left: 5px;

}



.footer-bottom {

    text-align: center;

    padding-top: 30px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    font-size: 14px;

}



.footer-bottom p {

    margin-bottom: 5px;

}



.footer-bottom a {

    color: var(--accent-gold);

    transition: var(--transition);

    text-decoration: none;

}



.footer-bottom a:hover {

    text-decoration: underline;

}



/* ============================================

   SCROLL TO TOP BUTTON

   ============================================ */

.scroll-top {

    position: fixed;

    bottom: 30px;

    right: 30px;

    width: 50px;

    height: 50px;

    background: var(--primary-brown);

    color: var(--white);

    border: none;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    z-index: 999;

    opacity: 0;

    visibility: hidden;

    transition: var(--transition);

    box-shadow: var(--shadow-lg);

}



.scroll-top.show {

    opacity: 1;

    visibility: visible;

}



.scroll-top:hover {

    background: var(--secondary-brown);

    transform: translateY(-5px);

}



/* ============================================

   ANIMATIONS

   ============================================ */

@keyframes pulse {

    0%, 100% {

        opacity: 1;

    }

    50% {

        opacity: 0.8;

    }

}



@keyframes rotate {

    from {

        transform: rotate(0deg);

    }

    to {

        transform: rotate(360deg);

    }

}



/* ============================================

   RESPONSIVE DESIGN

   ============================================ */

@media (max-width: 992px) {

    .about-grid {

        grid-template-columns: 1fr;

        gap: 40px;

    }



    .mission-overview-grid {

        grid-template-columns: 1fr;

    }



    .partners-grid {

        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));

    }

}



@media (max-width: 768px) {

      /* Top bar */

  .top-bar-left {
    gap: 12px;
    font-size: 11.5px;
  }

  .top-bar-right {
    gap: 12px;
  }

  .top-bar-right a {
    font-size: 11.5px;
  }



  /* Header */

  .header {
    padding: 12px 0;
  }

  .header-logo img {
    width: 62px;
  }

  .header-text h1 {
    font-size: 15px;
    line-height: 1.3;
  }

  .header-subtitle {
    font-size: 11px;
  }

  .header-info {
    font-size: 10px;
  }



  /* Hamburger */

  .hamburger { display: none !important; }



  /* Nav drawer */

    .nav-links {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: none;
  }



  .nav-links.active {
    left: 0;
  }



  .nav-item>a {

    padding: 14px 22px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.09);

    font-size: 15px;

    font-weight: 600;

  }



  .nav-item>a::after {
    display: none;
  }



  .nav-item>a:hover,

  .nav-item>a.active {

    background: rgba(255, 255, 255, 0.1);

    color: var(--accent-gold);

  }



  /* Mobile dropdowns */

  .dropdown-menu {

    position: static;

    opacity: 1;
    visibility: visible;

    transform: none;

    box-shadow: none;
    border-top: none;

    background: rgba(0, 0, 0, 0.18);

    border-radius: 0;

    display: none;

    padding: 4px 0;

  }



  .nav-item.mobile-open .dropdown-menu {
    display: block;
  }



  .dropdown-menu a {

    color: rgba(255, 255, 255, 0.88);

    font-size: 14px;

    padding: 11px 32px;

    border-left: none;

  }



  .dropdown-menu a:hover {

    color: var(--accent-gold);

    background: rgba(255, 255, 255, 0.07);

    padding-left: 38px;

    border-left: none;

  }



  .mega-menu,
  .mega-menu-wide {
    min-width: unset;
    width: 100%;
  }

  .mega-menu-grid,
  .mega-menu-grid-wide {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px 0;
  }

  .mega-column h4 {
    padding: 10px 32px 6px;
    border-bottom: none;
    color: var(--accent-gold);
    font-size: 11px;
  }

  .mega-column a {
    color: rgba(255, 255, 255, 0.82);
    padding: 9px 40px;
    border-left: none;
  }

  .mega-column a:hover {
    color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.06);
    padding-left: 46px;
    border-left: none;
  }





    .hero-section {

        padding: 70px 0;

    }



    .hero-title {

        font-size: 36px;

    }



    .hero-subtitle {

        font-size: 16px;

    }



    .section-title {

        font-size: 32px;

    }



    .about-text {

        text-align: left;

    }



    .placement-highlights {

        grid-template-columns: 1fr;

    }



    .partners-grid {

        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));

        gap: 20px;

    }



    .cta-title {

        font-size: 28px;

    }



    .cta-description {

        font-size: 16px;

    }



    .footer-grid {

        grid-template-columns: 1fr;

        gap: 30px;

    }

}



@media (max-width: 480px) {

    .hero-title {

        font-size: 28px;

    }



    .section-title {

        font-size: 26px;

    }



    .mission-card {

        padding: 30px 25px;

    }



    .highlight-card {

        padding: 30px 25px;

    }



    .partners-grid {

        grid-template-columns: 1fr;

    }



    .cta-buttons {

        flex-direction: column;

        align-items: center;

    }



    .btn {

        width: 100%;

        max-width: 300px;

        justify-content: center;

    }

}

/* Mobile Open Dropdown Helpers */
.nav-item.mobile-open>.dropdown-menu {
  display: block;
}

.nav-item.mobile-open>.mega-menu {
  display: block;
}

/* Custom Overrides for Brand Colors & Layout */
.top-bar-info i {
    color: #d4a574 !important;
}
.nav-item>a::after {
    display: none !important;
}

/* Sticky Header Wrapper Definition */
.sticky-header-wrapper {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  background: #fff;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.nav-item>a {
    text-decoration: none !important;
}

