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

   CSS VARIABLES & RESET

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

:root {

    --primary-brown: #0b1e6d;
    --secondary-brown: #0b1e6d;
    --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(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;

}



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

   TOP BAR, HEADER, NAVBAR (Same as other pages)

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

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

}



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

   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;

}



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

   TRUSTEES SECTION

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

.trustees-section {

    padding: 100px 0;

    background: var(--white);

}



.trustee-card {

    display: grid;

    grid-template-columns: 380px 1fr;

    gap: 50px;

    margin-bottom: 80px;

    background: var(--bg-light);

    border-radius: 20px;

    overflow: hidden;

    box-shadow: var(--shadow);

    transition: var(--transition);

}



.trustee-card:hover {

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

    transform: translateY(-5px);

}



.trustee-card:last-child {

    margin-bottom: 0;

}



/* Image Side */

.trustee-image-side {

    position: relative;

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

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 40px;

}


.trustee-img-container{
    position: relative;
    width: 280px;
    height: 340px;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(255,255,255,0.08);
    border: 3px solid rgba(195, 177, 177, 0.2);
}



.trustee-img{
    width: 80%;
    height: 80%;
    object-fit: contain;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.trustee-img-placeholder {

    width: 100%;

    height: 100%;

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

    border-radius: 16px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 3px solid rgba(255, 255, 255, 0.2);

    transition: var(--transition);

}



.trustee-img-placeholder i {

    font-size: 80px;

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

}



.trustee-img-container:hover .trustee-img-placeholder {

    transform: scale(1.05);

    border-color: rgba(255, 255, 255, 0.4);

}



.trustee-badge {

    position: absolute;

    bottom: -15px;

    left: 50%;

    transform: translateX(-50%);

    background: var(--white);

    padding: 12px 25px;

    border-radius: 30px;

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

    display: flex;

    align-items: center;

    gap: 10px;

    font-weight: 600;

    font-size: 13px;

    color: var(--primary-brown);

}



.trustee-badge i {

    color: var(--accent-gold);

    font-size: 16px;

}



/* Content Side */

.trustee-content-side {

    padding: 50px 50px 50px 0;

}



.trustee-header {

    margin-bottom: 25px;

}



.position-badge {

    display: inline-block;

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

    color: var(--primary-brown);

    padding: 6px 16px;

    border-radius: 20px;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 12px;

}



.trustee-name {

    font-size: 32px;

    font-weight: 700;

    color: var(--primary-brown);

    margin-bottom: 10px;

    line-height: 1.2;

}



.trustee-credentials {

    font-size: 15px;

    color: var(--text-light);

    font-weight: 600;

    display: flex;

    align-items: center;

    gap: 8px;

}



.trustee-credentials i {

    color: var(--accent-gold);

}



.trustee-divider {

    height: 3px;

    width: 60px;

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

    margin: 25px 0;

    border-radius: 2px;

}



.trustee-bio {

    margin-bottom: 30px;

}



.trustee-bio p {

    font-size: 15px;

    line-height: 1.8;

    color: var(--text-light);

    margin-bottom: 15px;

    text-align: justify;

}



.trustee-bio p:last-child {

    margin-bottom: 0;

}



.trustee-highlights {

    display: flex;

    flex-wrap: wrap;

    gap: 15px;

}



.highlight-item {

    display: flex;

    align-items: center;

    gap: 10px;

    background: var(--white);

    padding: 10px 18px;

    border-radius: 8px;

    font-size: 13px;

    font-weight: 500;

    color: var(--text-dark);

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

    transition: var(--transition);

}



.highlight-item:hover {

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

    transform: translateY(-2px);

}



.highlight-item i {

    color: var(--primary-brown);

    font-size: 16px;

}



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

   VISION STATEMENT SECTION

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

.vision-statement-section {

    padding: 80px 0;

    background: var(--bg-light);

}



.vision-statement-card {

    max-width: 900px;

    margin: 0 auto;

    background: var(--white);

    padding: 50px;

    border-radius: 16px;

    box-shadow: var(--shadow);

    text-align: center;

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

}



.statement-icon {

    font-size: 50px;

    color: var(--primary-brown);

    margin-bottom: 25px;

    opacity: 0.2;

}



.statement-text {

    font-size: 18px;

    line-height: 1.9;

    color: var(--text-light);

    font-style: italic;

}



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

   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;

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

}



.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

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

@media (max-width: 1024px) {

    .trustee-card {

        grid-template-columns: 1fr;

        gap: 0;

    }



   /* Left Side */
.trustee-image-side{
    background: linear-gradient(135deg,#0b1e6d,#173b9c);
    display:flex;
    justify-content:center;
    align-items:center;
    padding:50px 40px;
}

/* Image Card */
.trustee-img-container{
    width:290px;
    height:360px;
    background:rgba(255,255,255,0.08);
    border:2px solid rgba(255,255,255,0.18);
    border-radius:20px;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
    backdrop-filter:blur(5px);
}

/* Trustee Image */
.trustee-img{
    width:82%;
    height:82%;
    object-fit:contain;
    object-position:center bottom;
    transition:.4s;
}

.trustee-img-container:hover .trustee-img{
    transform:scale(1.05);
}

/* Badge */
.trustee-badge{
    position:absolute;
    bottom:18px;
    left:50%;
    transform:translateX(-50%);
    background:#fff;
    color:#0b1e6d;
    padding:12px 28px;
    border-radius:40px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:10px;
    box-shadow:0 10px 25px rgba(0,0,0,.18);
}

.trustee-badge i{
    color:#d4af37;
}



    .trustee-content-side {

        padding: 40px;

    }



    .vision-statement-card {

        padding: 40px;

    }

}



    .hero-section {

        padding: 70px 0;

    }



    .hero-title {

        font-size: 36px;

    }



    .trustees-section {

        padding: 60px 0;

    }



    .trustee-card {

        margin-bottom: 50px;

    }



    .trustee-content-side {

        padding: 30px 25px;

    }



    .trustee-name {

        font-size: 26px;

    }



    .vision-statement-card {

        padding: 30px 25px;

    }



    .statement-text {

        font-size: 16px;

    }



    .cta-title {

        font-size: 28px;

    }



    .footer-grid {

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

    }

}



@media (max-width: 480px) {

    .hero-title {

        font-size: 28px;

    }



    .hero-subtitle {

        font-size: 16px;

    }



    .trustee-image-side {

        padding: 40px 25px 60px;

    }



    .trustee-img-container {

        width: 100%;

        max-width: 240px;

        height: 300px;

    }



    .trustee-img-placeholder i {

        font-size: 60px;

    }



    .trustee-content-side {

        padding: 25px 20px;

    }



    .trustee-name {

        font-size: 22px;

    }



    .trustee-bio p {

        font-size: 14px;

        text-align: left;

    }



    .trustee-highlights {

        flex-direction: column;

    }



    .highlight-item {

        width: 100%;

    }



    .vision-statement-card {

        padding: 25px 20px;

    }



    .statement-icon {

        font-size: 40px;

    }



    .statement-text {

        font-size: 15px;

    }



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

    }

}



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

   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;

  }

}