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



   CSS VARIABLES & RESET



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



:root {



  --primary-brown: #0b1e6d;



  --secondary-brown: #081652;



  --accent-gold: #4d7cff;



  --text-dark: #333333;



  --text-light: #666666;



  --bg-light: #f8f9fa;



  --bg-lighter: #fafafa;



  --white: #ffffff;



  --shadow: 0 4px 20px rgba(11, 30, 109, 0.15);



  --shadow-lg: 0 10px 40px rgba(11, 30, 109, 0.25);



  --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: var(--text-dark);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-fluid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

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

   HEADER & NAVBAR BRANDING OVERRIDES

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

.sticky-header-wrapper,
.top-bar,
.header,
.navbar {
  --primary-brown: #002472;
  --secondary-brown: #020c56;
  --accent-gold: #d4a574;
  --accent-gold-soft: #f5e6d3;
}

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

   TOP BAR

   ============================================ */
.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: flex-start;
  align-items: center;
  width: 100%;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
}

.top-bar-info i {
  color: var(--accent-gold);
  font-size: 12px;
}

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

   HEADER

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

.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;
}

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

   STICKY HEADER WRAPPER

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

.sticky-header-wrapper {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  background: #fff;
  transition: box-shadow 0.3s ease;
}

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

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

   NAVBAR

   ============================================ */
.navbar {
  background: var(--secondary-brown);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.container-fluid {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item>a {
  display: block;
  padding: 16px 25px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.nav-item>a:hover {
  color: var(--accent-gold);
}

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

   DROPDOWN & MEGA MENU

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

.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;
  z-index: 1000;
}

.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;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: var(--bg-light);
  color: var(--primary-brown);
  border-left-color: var(--primary-brown);
  padding-left: 26px;
}

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

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  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;
  text-decoration: none;
}

.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);
}

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

   HERO SECTION (Consistent with Principal Page)

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

.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: 100px;



  height: 4px;



  background: var(--accent-gold);



  margin: 0 auto;



  border-radius: 2px;



}



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



   OVERVIEW SECTION



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



.overview-section {



  padding: 80px 0;



  background: var(--white);



}



.content-card {



  background: var(--white);



  padding: 35px;



  border-radius: 16px;



  box-shadow: var(--shadow);



  transition: var(--transition);



  border: 2px solid var(--bg-light);



}



.content-card:hover {



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



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



  transform: translateY(-3px);



}



.card-header {



  display: flex;



  align-items: center;



  gap: 15px;



  margin-bottom: 25px;



  padding-bottom: 20px;



  border-bottom: 2px solid var(--bg-light);



}



.card-icon {



  width: 50px;



  height: 50px;



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



  border-radius: 12px;



  display: flex;



  align-items: center;



  justify-content: center;



  flex-shrink: 0;



}



.card-icon i {



  font-size: 22px;



  color: var(--white);



}



.card-title {



  font-size: 24px;



  font-weight: 700;



  color: var(--primary-brown);



}



.card-body p {



  font-size: 15px;



  line-height: 1.8;



  color: var(--text-light);



  margin-bottom: 15px;



  text-align: justify;



}



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



   INITIATIVES SECTION



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



.initiatives-section {



  padding: 80px 0;



  background: var(--bg-light);



}



.section-header {



  text-align: center;



  margin-bottom: 50px;



}



.section-title {



  font-size: 32px;



  font-weight: 700;



  color: var(--primary-brown);



  margin-bottom: 15px;



}



.section-divider {



  width: 60px;



  height: 4px;



  background: var(--accent-gold);



  margin: 0 auto;



  border-radius: 2px;



}



.initiatives-grid {



  display: grid;



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



  gap: 30px;



}



.initiative-card {



  background: var(--white);



  padding: 30px;



  border-radius: 16px;



  box-shadow: var(--shadow);



  text-align: center;



  transition: var(--transition);



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



}



.initiative-card:hover {



  transform: translateY(-10px);



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



  border-top-color: var(--accent-gold);



}



.initiative-icon {



  width: 70px;



  height: 70px;



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



  border-radius: 50%;



  display: flex;



  align-items: center;



  justify-content: center;



  margin: 0 auto 20px;



  font-size: 28px;



  color: var(--white);



}



.initiative-card h3 {



  font-size: 18px;



  font-weight: 600;



  color: var(--primary-brown);



  margin-bottom: 10px;



}



.initiative-card p {



  font-size: 14px;



  color: var(--text-light);



  line-height: 1.6;



}



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



   DETAILED SECTION



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



.detailed-section {



  padding: 80px 0;



  background: var(--white);



}



.detailed-grid {



  display: grid;



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



  gap: 30px;



}



.detailed-card {



  background: var(--bg-light);



  padding: 30px;



  border-radius: 16px;



  box-shadow: var(--shadow);



  display: flex;



  gap: 20px;



  transition: var(--transition);



  border-left: 4px solid var(--primary-brown);



}



.detailed-card:hover {



  transform: translateX(10px);



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



  background: var(--white);



}



.detail-number {



  font-size: 36px;



  font-weight: 700;



  color: var(--primary-brown);



  opacity: 0.2;



  min-width: 50px;



}



.detail-content h3 {



  font-size: 18px;



  font-weight: 600;



  color: var(--primary-brown);



  margin-bottom: 10px;



}



.detail-content p {



  font-size: 14px;



  color: var(--text-light);



  line-height: 1.7;



}



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



   TIMELINE SECTION



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



.timeline-section {



  padding: 80px 0;



  background: var(--bg-light);



}



.timeline-grid {



  display: grid;



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



  gap: 30px;



  position: relative;



}



.timeline-grid::before {



  content: "";



  position: absolute;



  top: 0;



  left: 50%;



  transform: translateX(-50%);



  width: 4px;



  height: 100%;



  background: linear-gradient(180deg, var(--primary-brown), transparent);



  display: none;



}



@media (min-width: 900px) {



  .timeline-grid::before {



    display: block;



  }



}



.timeline-card {



  background: var(--white);



  padding: 30px;



  border-radius: 16px;



  box-shadow: var(--shadow);



  transition: var(--transition);



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



}



.timeline-card:hover {



  transform: scale(1.02);



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



}



.timeline-year {



  display: inline-block;



  background: var(--primary-brown);



  color: var(--white);



  padding: 8px 16px;



  border-radius: 20px;



  font-size: 16px;



  font-weight: 600;



  margin-bottom: 15px;



}



.timeline-content h3 {



  font-size: 18px;



  font-weight: 600;



  color: var(--primary-brown);



  margin-bottom: 15px;



}



.timeline-content ul {



  list-style: none;



  padding: 0;



}



.timeline-content ul li {



  font-size: 14px;



  color: var(--text-light);



  margin-bottom: 10px;



  padding-left: 20px;



  position: relative;



}



.timeline-content ul li::before {



  content: "✓";



  position: absolute;



  left: 0;



  color: var(--accent-gold);



  font-weight: bold;



}



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



   CTA, FOOTER (Consistent with Principal Page)



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



.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 {
  background: linear-gradient(160deg, #0a1222, #111d36);
  color: var(--white);
  padding: 20px 0;
}



.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;



}



.gold-text {
  color: #ffb400;
  font-weight: 600;
}

.footer-bottom {
  text-align: center;
  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-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



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



/* Tablets and Small Desktops */



@media (max-width: 1024px) {



  .initiatives-grid,
  .detailed-grid,
  .timeline-grid {



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



  }



  .overview-section,
  .initiatives-section,
  .detailed-section,
  .timeline-section {



    padding: 60px 0;



  }



}



/* Tablets */



@media (max-width:991px) {

  .top-bar {
    display: none;
  }

  .header {
    padding: 8px 0;
  }

  .header-content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 12px;
  }

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

  .header-text h1 {
    font-size: 20px;
    line-height: 1.25;
  }

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

  .header-info,
  .header-accreditation {
    font-size: 12px;
    margin-bottom: 2px;
  }

  .header-accreditation-logos {
    justify-content: center;
    gap: 32px;
    margin-top: 4px;
  }

  .naac-card {
    top: 0;
    left: 0;
  }

  .naac-card img {
    height: 80px;
  }

  .nba-card img {
    height: 50px;
  }

  .nba-subtext {
    font-size: 9px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: #001d72;
    flex-direction: column;
    overflow-y: auto;
    transition: .3s;
    z-index: 99999;
  }

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

  .nav-item {
    width: 100%;
  }

  .nav-item>a {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .dropdown-menu,
  .mega-menu {
    position: static;
    display: none;
    visibility: visible;
    opacity: 1;
    transform: none;
    width: 100%;
    min-width: 100%;
    background: #082b87;
    box-shadow: none;
    border: none;
  }

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

  .dropdown-menu a {
    color: #fff;
    padding: 12px 35px;
  }

  .mega-menu-grid,
  .mega-menu-grid-wide {
    display: block;
  }

  .mega-column h4 {
    color: #FFD46B;
    padding: 15px 20px;
  }

  .mega-column a {
    color: #fff;
    padding: 10px 35px;
  }
}

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

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

@media (max-width: 768px) {



  .hero-section {



    padding: 70px 0;



  }



  .hero-title {



    font-size: 36px;



  }



  .section-title {



    font-size: 28px;



  }



  .content-card {



    padding: 30px 25px;



  }



  .card-title {



    font-size: 20px;



  }



  .initiatives-grid,
  .detailed-grid,
  .timeline-grid {



    grid-template-columns: 1fr;



  }



  .timeline-grid::before {



    display: none;



  }



  .cta-title {



    font-size: 28px;



  }



  .footer-grid {



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



  }



}



/* Mobile Phones */



@media (max-width: 480px) {



  .hero-title {



    font-size: 28px;



  }



  .hero-subtitle {



    font-size: 16px;



  }



  .section-title {



    font-size: 24px;



  }



  .content-card {



    padding: 25px 20px;



  }



  .card-header {



    flex-direction: row;



    gap: 12px;



  }



  .card-icon {



    width: 45px;



    height: 45px;



  }



  .card-icon i {



    font-size: 18px;



  }



  .card-title {



    font-size: 18px;



  }



  .card-body p {



    font-size: 14px;



    text-align: left;



  }



  .initiative-card,
  .detailed-card {



    padding: 25px;



  }



  .initiative-icon {



    width: 60px;



    height: 60px;



    font-size: 24px;



  }



  .detail-number {



    font-size: 28px;



  }



  .timeline-card {



    padding: 25px;



  }



  .cta-title {



    font-size: 24px;



  }



  .cta-buttons {



    flex-direction: column;



    align-items: center;



  }



  .btn {



    width: 100%;



    max-width: 280px;



    justify-content: center;



  }



  .footer-grid {



    grid-template-columns: 1fr;



  }



}