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

   CSS VARIABLES & RESET

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

:root {

    --primary-brown: #0b1e6d;

    --secondary-brown: #08154d;

    --accent-gold: #d4a574;

    --accent-gold-soft: #f5e6d3;

    --text-dark: #333333;

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

}

/* ============================================
   TOP BAR, HEADER, NAVBAR (Same as other pages)
   ============================================ */
/* ============================================

   TOP BAR — FROM HOMEPAGE

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

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

  text-decoration: none;

}



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

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

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

}



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

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

.navbar {

  background: var(--secondary-brown);

  position: relative;

  z-index: 1000;

}



.nav-container {

  display: flex;

  justify-content: center;

  align-items: center;

}



.nav-links {

  display: flex;

  list-style: none;

  margin: 0;

}



.nav-item a {

  display: block;

  padding: 16px 20px;

  color: var(--white);

  font-weight: 500;

  font-size: 14px;

  transition: var(--transition);

  text-decoration: none;

}



.nav-item a:hover,

.nav-item a.active {

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

}



.hamburger {

  display: none;

  flex-direction: column;

  cursor: pointer;

  padding: 10px;

}



.hamburger span {

  width: 25px;

  height: 3px;

  background: var(--white);

  margin: 3px 0;

  transition: var(--transition);

}

/* 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;

}



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

   FOUNDER MAIN SECTION

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

.founder-section {

    padding: 100px 0;

    background: var(--white);

}



.founder-grid {

    display: grid;

    grid-template-columns: 400px 1fr;

    gap: 80px;

    align-items: start;

}



/* Left Side - Image */

.founder-image-wrapper {

    position: sticky;

    top: 100px;

}



.founder-image-container {

    position: relative;

    border-radius: 20px;

    overflow: hidden;

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

    margin-bottom: 30px;

}



.founder-img {

    width: 100%;

    height: auto;

    display: block;

    transition: transform 0.5s ease;

}



.founder-image-container:hover .founder-img {

    transform: scale(1.05);

}



.image-badge {

    position: absolute;

    bottom: 20px;

    left: 20px;

    right: 20px;

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

    backdrop-filter: blur(10px);

    color: var(--white);

    padding: 15px 20px;

    border-radius: 12px;

    display: flex;

    align-items: center;

    gap: 12px;

    font-weight: 600;

    font-size: 15px;

}



.image-badge i {

    font-size: 20px;

    color: var(--accent-gold);

}



.founder-name-card {

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

    padding: 30px;

    border-radius: 16px;

    text-align: center;

    box-shadow: var(--shadow);

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

}



.founder-name {

    font-size: 26px;

    font-weight: 700;

    color: var(--primary-brown);

    margin-bottom: 10px;

}



.founder-credentials {

    font-size: 16px;

    color: var(--text-light);

    font-weight: 600;

    margin-bottom: 15px;

}



.founder-role {

    font-size: 14px;

    color: var(--text-light);

    line-height: 1.6;

}



/* Right Side - Content */

.founder-content {

    padding-top: 20px;

}



.content-section {

    margin-bottom: 50px;

    padding: 35px;

    background: var(--bg-light);

    border-radius: 16px;

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

    transition: var(--transition);

}



.content-section:hover {

    transform: translateX(10px);

    box-shadow: var(--shadow);

    background: var(--white);

}



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

    margin-bottom: 20px;

}



.section-icon i {

    font-size: 26px;

    color: var(--white);

}



.content-heading {

    font-size: 24px;

    font-weight: 700;

    color: var(--primary-brown);

    margin-bottom: 15px;

}



.content-text {

    font-size: 16px;

    line-height: 1.8;

    color: var(--text-light);

    margin-bottom: 15px;

}



.content-text:last-child {

    margin-bottom: 0;

}



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

   EDUCATIONAL TIMELINE SECTION

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

.education-section {

    padding: 100px 0;

    background: var(--bg-light);

}



.section-header-center {

    text-align: center;

    margin-bottom: 70px;

}



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

}



.title-underline {

    width: 60px;

    height: 4px;

    background: linear-gradient(90deg, var(--primary-brown), var(--accent-gold));

    margin: 0 auto;

    border-radius: 2px;

}



.education-timeline {

    position: relative;

    max-width: 900px;

    margin: 0 auto;

}



.education-timeline::before {

    content: '';

    position: absolute;

    left: 50%;

    transform: translateX(-50%);

    top: 0;

    bottom: 0;

    width: 3px;

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

    z-index: 0;

}



.timeline-item {

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    gap: 40px;

    margin-bottom: 60px;

    align-items: center;

    position: relative;

    z-index: 1;

}



.timeline-item:nth-child(even) .timeline-content {

    order: -1;

    text-align: right;

}



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

    box-shadow: 0 0 0 10px var(--white), var(--shadow-lg);

    z-index: 3;

    position: relative;

    transition: var(--transition);

}



.timeline-item:hover .timeline-icon {

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

}



.timeline-icon i {

    font-size: 32px;

    color: var(--white);

}



.timeline-content {

    background: var(--white);

    padding: 30px;

    border-radius: 16px;

    box-shadow: var(--shadow);

    transition: var(--transition);

    position: relative;

    z-index: 2;

}



.timeline-item:hover .timeline-content {

    transform: translateY(-5px);

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

}



.timeline-item.featured .timeline-content {

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

    color: var(--white);

}



.timeline-item.featured .degree-badge,

.timeline-item.featured .university-name,

.timeline-item.featured .university-location {

    color: var(--white);

}



.timeline-item.featured .degree-description {

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

}



.degree-badge {

    display: inline-block;

    background: var(--primary-brown);

    color: var(--white);

    padding: 8px 20px;

    border-radius: 20px;

    font-size: 16px;

    font-weight: 700;

    margin-bottom: 15px;

}



.timeline-item.featured .degree-badge {

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

    border: 2px solid var(--white);

}



.university-name {

    font-size: 22px;

    font-weight: 700;

    color: var(--primary-brown);

    margin-bottom: 10px;

}



.university-location {

    font-size: 14px;

    color: var(--text-light);

    margin-bottom: 15px;

    display: flex;

    align-items: center;

    gap: 8px;

}



.timeline-item:nth-child(even) .university-location {

    justify-content: flex-end;

}



.degree-description {

    font-size: 15px;

    color: var(--text-light);

    line-height: 1.7;

}



.honor-badge {

    margin-top: 15px;

    padding: 12px 20px;

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

    border-radius: 8px;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    font-size: 14px;

    font-weight: 600;

}



.honor-badge i {

    color: var(--accent-gold);

}



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

   IMPACT SECTION

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

.impact-section {

    padding: 100px 0;

    background: var(--white);

}



.impact-grid {

    display: grid;

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

    gap: 40px;

}



.impact-card {

    background: var(--bg-light);

    padding: 40px;

    border-radius: 16px;

    text-align: center;

    transition: var(--transition);

    border: 2px solid transparent;

}



.impact-card:hover {

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

    transform: translateY(-10px);

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

    background: var(--white);

}



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

}



.impact-card:hover .impact-icon {

    transform: rotateY(360deg);

}



.impact-icon i {

    font-size: 36px;

    color: var(--white);

}



.impact-title {

    font-size: 22px;

    font-weight: 700;

    color: var(--primary-brown);

    margin-bottom: 15px;

}



.impact-description {

    font-size: 15px;

    line-height: 1.7;

    color: var(--text-light);

}



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

   QUOTE SECTION

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

.quote-section {

    padding: 80px 0;

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

    position: relative;

    overflow: hidden;

}



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

}



.quote-container {

    max-width: 900px;

    margin: 0 auto;

    text-align: center;

    position: relative;

    z-index: 2;

}



.quote-icon {

    font-size: 60px;

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

    margin-bottom: 20px;

}



.founder-quote {

    font-size: 24px;

    line-height: 1.8;

    color: var(--white);

    font-style: italic;

    font-weight: 300;

    margin-bottom: 30px;

}



.quote-attribution {

    font-size: 16px;

    color: var(--accent-gold);

    font-weight: 600;

}



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

   AWARDS SECTION

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

.awards-section {

    padding: 100px 0;

    background: var(--bg-light);

}



.awards-grid {

    display: grid;

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

    gap: 40px;

    max-width: 1000px;

    margin: 0 auto;

}



.award-card {

    background: var(--white);

    padding: 40px;

    border-radius: 16px;

    box-shadow: var(--shadow);

    transition: var(--transition);

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

}



.award-card:hover {

    transform: translateY(-10px);

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

}



.award-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-bottom: 25px;

}



.award-icon i {

    font-size: 36px;

    color: var(--white);

}



.award-title {

    font-size: 24px;

    font-weight: 700;

    color: var(--primary-brown);

    margin-bottom: 10px;

}



.award-issuer {

    font-size: 16px;

    color: var(--text-light);

    font-weight: 600;

    margin-bottom: 15px;

}



.award-description {

    font-size: 15px;

    line-height: 1.7;

    color: var(--text-light);

}



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

   CTA, FOOTER (Same as other pages)

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

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

}



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

}



.footer-bottom {

    text-align: center;

    font-size: 14.5px;

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

    line-height: 1.8;

}



.footer-bottom p {

    margin-bottom: 6px;

}



.footer-bottom p:last-child {

    margin-bottom: 0;

}



.footer-bottom a {

    color: var(--accent-gold);

    font-weight: 600;

    transition: var(--transition);

    text-decoration: none;

}



.footer-bottom a:hover {

    text-decoration: underline;

    opacity: 0.85;

}



.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) {

    .founder-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }



    .founder-image-wrapper {

        position: relative;

        top: auto;

        max-width: 500px;

        margin: 0 auto;

    }



    .founder-section {

        padding: 80px 0;

    }



    .education-section,

    .impact-section,

    .awards-section {

        padding: 80px 0;

    }



    .education-timeline::before {

        left: 40px;

        z-index: 0;

    }



    .timeline-item {

        grid-template-columns: auto 1fr;

        gap: 30px;

        z-index: 1;

    }



    .timeline-item:nth-child(even) .timeline-content {

        order: 0;

        text-align: left;

    }



    .timeline-item:nth-child(even) .university-location {

        justify-content: flex-start;

    }



    .impact-grid {

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

    }



    .awards-grid {

        grid-template-columns: 1fr;

        max-width: 600px;

    }

}
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) {

    .founder-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }



    .founder-image-wrapper {

        position: relative;

        top: auto;

        max-width: 500px;

        margin: 0 auto;

    }



    .founder-section {

        padding: 80px 0;

    }



    .education-section,

    .impact-section,

    .awards-section {

        padding: 80px 0;

    }



    .education-timeline::before {

        left: 40px;

        z-index: 0;

    }



    .timeline-item {

        grid-template-columns: auto 1fr;

        gap: 30px;

        z-index: 1;

    }



    .timeline-item:nth-child(even) .timeline-content {

        order: 0;

        text-align: left;

    }



    .timeline-item:nth-child(even) .university-location {

        justify-content: flex-start;

    }



    .impact-grid {

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

    }



    .awards-grid {

        grid-template-columns: 1fr;

        max-width: 600px;

    }

}



/* Tablets */

@media (max-width: 768px) {

    /* Sections */

    .founder-section,

    .education-section,

    .impact-section,

    .quote-section,

    .awards-section,

    .cta-section {

        padding: 60px 0;

    }



    /* Hero */

    .hero-section {

        padding: 70px 0;

    }



    .hero-title {

        font-size: 36px;

    }



    .hero-subtitle {

        font-size: 16px;

    }



    /* Founder Section */

    .founder-image-wrapper {

        max-width: 100%;

    }



    .founder-name-card {

        padding: 25px;

    }



    .founder-name {

        font-size: 22px;

    }



    .founder-credentials {

        font-size: 14px;

    }



    .founder-role {

        font-size: 13px;

    }



    .founder-content {

        padding-top: 0;

    }



    .content-section {

        padding: 30px 25px;

        margin-bottom: 30px;

    }



    .section-icon {

        width: 50px;

        height: 50px;

    }



    .section-icon i {

        font-size: 22px;

    }



    .content-heading {

        font-size: 20px;

    }



    .content-text {

        font-size: 15px;

    }



    /* Titles */

    .section-title {

        font-size: 32px;

    }



    /* Timeline */

    .education-timeline::before {

        left: 30px;

        z-index: 0;

    }



    .timeline-item {

        gap: 20px;

        margin-bottom: 40px;

        z-index: 1;

    }



    .timeline-icon {

        width: 60px;

        height: 60px;

        z-index: 3;

    }



    .timeline-icon i {

        font-size: 24px;

    }



    .timeline-content {

        padding: 25px;

        z-index: 2;

    }



    .degree-badge {

        font-size: 14px;

        padding: 6px 16px;

    }



    .university-name {

        font-size: 18px;

    }



    .university-location {

        font-size: 13px;

    }



    .degree-description {

        font-size: 14px;

    }



    /* Impact Cards */

    .impact-grid {

        grid-template-columns: 1fr;

    }



    .impact-card {

        padding: 35px 25px;

    }



    .impact-icon {

        width: 70px;

        height: 70px;

    }



    .impact-icon i {

        font-size: 32px;

    }



    .impact-title {

        font-size: 20px;

    }



    /* Quote */

    .founder-quote {

        font-size: 20px;

    }



    .quote-attribution {

        font-size: 14px;

    }



    /* Awards */

    .awards-grid {

        grid-template-columns: 1fr;

    }



    .award-card {

        padding: 35px 25px;

    }



    .award-icon {

        width: 70px;

        height: 70px;

    }



    .award-icon i {

        font-size: 32px;

    }



    .award-title {

        font-size: 20px;

    }



    /* CTA */

    .cta-title {

        font-size: 28px;

    }



    .cta-description {

        font-size: 16px;

    }



    /* Footer */

    .footer-grid {

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

        gap: 30px;

    }

}



/* Mobile Phones */

@media (max-width: 480px) {

    /* Sections */

    .founder-section,

    .education-section,

    .impact-section,

    .quote-section,

    .awards-section,

    .cta-section {

        padding: 50px 0;

    }



    /* Hero */

    .hero-section {

        padding: 60px 0;

    }



    .hero-title {

        font-size: 28px;

    }



    .hero-subtitle {

        font-size: 14px;

    }



    .hero-divider {

        width: 60px;

    }



    /* Founder Section */

    .founder-name-card {

        padding: 20px;

    }



    .founder-name {

        font-size: 20px;

    }



    .founder-credentials {

        font-size: 13px;

    }



    .founder-role {

        font-size: 12px;

    }



    .content-section {

        padding: 25px 20px;

        margin-bottom: 25px;

        border-left-width: 4px;

    }



    .content-section:hover {

        transform: translateX(5px);

    }



    .section-icon {

        width: 45px;

        height: 45px;

        margin-bottom: 15px;

    }



    .section-icon i {

        font-size: 20px;

    }



    .content-heading {

        font-size: 18px;

        margin-bottom: 12px;

    }



    .content-text {

        font-size: 14px;

        line-height: 1.7;

    }



    /* Section Headers */

    .section-title {

        font-size: 26px;

    }



    .section-badge {

        font-size: 11px;

        padding: 6px 16px;

    }



    .title-underline {

        width: 50px;

        height: 3px;

    }



    /* Timeline */

    .education-timeline::before {

        left: 22px;

        z-index: 0;

    }



    .timeline-item {

        gap: 15px;

        margin-bottom: 35px;

        z-index: 1;

    }



    .timeline-icon {

        width: 45px;

        height: 45px;

        box-shadow: 0 0 0 6px var(--white), var(--shadow);

        z-index: 3;

    }



    .timeline-icon i {

        font-size: 18px;

    }



    .timeline-content {

        padding: 20px;

        z-index: 2;

    }



    .degree-badge {

        font-size: 13px;

        padding: 5px 14px;

        margin-bottom: 12px;

    }



    .university-name {

        font-size: 16px;

        margin-bottom: 8px;

    }



    .university-location {

        font-size: 12px;

        margin-bottom: 12px;

    }



    .degree-description {

        font-size: 13px;

    }



    .honor-badge {

        margin-top: 12px;

        padding: 10px 16px;

        font-size: 12px;

    }



    /* Impact Cards */

    .impact-card {

        padding: 30px 20px;

    }



    .impact-icon {

        width: 65px;

        height: 65px;

        margin-bottom: 20px;

    }



    .impact-icon i {

        font-size: 28px;

    }



    .impact-title {

        font-size: 18px;

        margin-bottom: 12px;

    }



    .impact-description {

        font-size: 14px;

    }



    /* Quote Section */

    .quote-icon {

        font-size: 45px;

        margin-bottom: 15px;

    }



    .founder-quote {

        font-size: 17px;

        line-height: 1.7;

        margin-bottom: 25px;

    }



    .quote-attribution {

        font-size: 13px;

    }



    /* Awards */

    .award-card {

        padding: 25px 20px;

        border-top-width: 4px;

    }



    .award-icon {

        width: 65px;

        height: 65px;

        margin-bottom: 20px;

    }



    .award-icon i {

        font-size: 28px;

    }



    .award-title {

        font-size: 18px;

        margin-bottom: 8px;

    }



    .award-issuer {

        font-size: 14px;

        margin-bottom: 12px;

    }



    .award-description {

        font-size: 14px;

    }



    /* CTA */

    .cta-title {

        font-size: 24px;

    }



    .cta-description {

        font-size: 15px;

        margin-bottom: 30px;

    }



    .cta-buttons {

        flex-direction: column;

        align-items: center;

        gap: 15px;

    }



    .btn {

        width: 100%;

        max-width: 280px;

        justify-content: center;

        padding: 12px 28px;

        font-size: 14px;

    }



    /* Footer */

    .footer {

        padding: 50px 0 20px;

    }



    .footer-grid {

        grid-template-columns: 1fr;

        gap: 25px;

    }



    .footer-title {

        font-size: 18px;

        margin-bottom: 20px;

    }



    .footer-contact li,

    .footer-links li {

        margin-bottom: 10px;

        font-size: 14px;

    }



    .footer-bottom {

        padding-top: 25px;

        font-size: 13px;

    }



    /* Scroll Top Button */

    .scroll-top {

        width: 45px;

        height: 45px;

        bottom: 20px;

        right: 20px;

    }



    .scroll-top i {

        font-size: 18px;

    }

}



/* Very Small Phones */

@media (max-width: 360px) {

    .hero-title {

        font-size: 24px;

    }



    .section-title {

        font-size: 22px;

    }



    .founder-name {

        font-size: 18px;

    }



    .content-heading {

        font-size: 16px;

    }



    .founder-quote {

        font-size: 15px;

    }



    .impact-title,

    .award-title {

        font-size: 16px;

    }

}



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

}



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

   MOBILE MENU & HEADER RESPONSIVE FIX (HOMEPAGE STYLES)

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

@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: 0.3s;

    z-index: 99999;

    padding-top: 80px;

  }



  .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, 0.1);

  }



  .dropdown-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.mobile-open > .dropdown-menu {

    display: block;

  }



  .dropdown-menu a {

    color: #fff;

    padding: 12px 35px;

  }

}



@media (max-width: 480px) {

  .header-logo img {

    width: 52px;

  }



  .header-text h1 {

    font-size: 13px;

  }



  .header-subtitle {

    font-size: 10.5px;

  }



  .header-info {

    font-size: 9.5px;

  }



  .naac-card img {

    height: 60px;

  }



  .nba-card img {

    height: 40px;

  }



  .nba-subtext {

    font-size: 8px;

  }

}