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

:root {
    --primary: #5a1016;
    --secondary: #d4af37;
    --dark: #140608;
    --light: #ffffff;
    --text: #e8e8e8;
    --glass: rgba(255, 255, 255, 0.08);
}

html {
    scroll-behavior: smooth;
}

body{
    font-family: 'Outfit', sans-serif;

    background:
        linear-gradient(
            180deg,
            #2d080d 0%,
            #5a1016 100%
        );

    color:white;
    overflow-x:hidden;
}

img {
    width: 100%;
    display: block;
}

.container {
    width: min(1200px, 90%);
    margin: auto;
}

.section {
    padding: 120px 0;
}

.section-title {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-tag {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 600;
}

.section-heading-center {
    text-align: center;
    margin-bottom: 70px;
}

.glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary), #f6d365);
    color: black;
}

.btn-primary:hover {
    transform: translateY(-5px);
}

.btn-outline {
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: black;
}

/* ================= HEADER ================= */

/* .header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: 0.4s ease;
}

.header.scrolled {
    background: rgba(90, 16, 22, 0.92);
    backdrop-filter: blur(10px);
} */

/* ================= SMART NAVBAR ================= */

.header {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 9999;

    transition:
        transform 0.4s ease,
        background 0.4s ease,
        box-shadow 0.4s ease;

}

/* hide navbar */

.header.hide-nav {

    transform: translateY(-100%);

}

/* glass effect after scroll */

.header.scrolled {

    background: rgba(90, 16, 22, 0.92);

    backdrop-filter: blur(14px);

    box-shadow: 0 10px 30px rgba(0,0,0,0.15);

}

.nav-container {
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 60px;
}

.logo h2 {
    font-size: 1.2rem;
}

.logo span {
    font-size: 0.8rem;
    color: #ccc;
}

.nav {
    display: flex;
    gap: 35px;
}

.nav a {
    text-decoration: none;
    color: white;
    position: relative;
    font-weight: 500;
}

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

.language-switcher {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 8px 14px;
    border-radius: 10px;
    outline: none;
    cursor: pointer;
    backdrop-filter: blur(10px);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
}

.language-switcher option{
    color:black;
}

.nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0%;
    height: 2px;
    background: var(--secondary);
    transition: 0.3s;
}

.nav a:hover::after {
    width: 100%;
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-btn span {
    width: 28px;
    height: 3px;
    background: white;
}

/* ================= HERO ================= */

/* .hero{

    min-height:100vh;

    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;

    background:
    linear-gradient(
        90deg,

        rgba(20,6,8,1) 0%,
        rgba(20,6,8,1) 30%,

        rgba(90,16,22,0.7) 60%,

        rgba(90,16,22,0) 100%
    ),

    url('assets/new-building.svg');

    background-size: cover;
    background-position: center;
} */

/* ================= HERO SLIDESHOW ================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

/* Dark overlay for better text readability */
.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(20, 6, 8, 0.85) 0%,
    rgba(20, 6, 8, 0.85) 30%,
    rgba(90, 16, 22, 0.6) 60%,
    rgba(90, 16, 22, 0) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: left;
  width: 100%;
  max-width: 1200px;
  margin-top: 150px;
  margin-left: 70px;
}

/* Slideshow indicators/dots */
.slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: 0.3s ease;
}

.slider-dot.active {
  background: var(--secondary);
  width: 30px;
  border-radius: 10px;
}

.slider-dot:hover {
  background: var(--secondary);
}

/* .hero-content{

    text-align:left;

    width:100%;

    max-width:1200px;

    z-index:2;

    margin-top: 150px;
    margin-left:70px;
} */

.hero-top{

    color:#ffd7db;

    letter-spacing:6px;

    font-size:0.9rem;

    margin-bottom:20px;

    font-weight:600;
}

.hero h1{

    font-size:clamp(3rem,8vw,4.5rem);

    line-height:1;

    font-weight:800;

    max-width:700px;

    margin-bottom:30px;

    text-transform:uppercase;
}

.hero-subtitle{

    max-width:620px;

    font-size:1.15rem;

    line-height:1.9;

    /* color:rgba(255,255,255,0.82); */
    color:#d4af37;

    margin-bottom:45px;
}

.hero-buttons{

    display:flex;
    gap:25px;
    flex-wrap:wrap;
}

.hero-buttons .btn {
  padding: 10px 24px;
  font-size: 0.95rem;
  gap: 8px;
}

.hero-buttons .btn i {
  font-size: 1rem;
}

.hero-buttons .btn span {
  margin-left: 6px;
}

.hero-buttons .btn-primary:hover span,
.hero-buttons .btn-outline:hover span {
  transform: translateX(4px);
}

.btn{

    display:flex;
    align-items:center;
    gap:14px;

    padding:18px 34px;

    border-radius:999px;

    text-decoration:none;

    font-size:1.1rem;
    font-weight:700;

    transition:0.4s ease;

    position:relative;

    overflow:hidden;
}

/* PRIMARY BUTTON */

.btn-primary{

    background:#f2c230;

    color:#111;

    box-shadow:
        0 10px 30px rgba(242,194,48,0.35);
}

.btn-primary:hover{

    transform:translateY(-5px);

    background:#ffd84d;
}

.btn-primary span{

    margin-left:10px;

    transition:0.4s ease;
}

.btn-primary:hover span{

    transform:translateX(5px);
}

/* OUTLINE BUTTON */

.btn-outline{

    border:2px solid rgba(255,255,255,0.7);

    color:white;

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

    backdrop-filter:blur(10px);
}

.btn-outline:hover{

    background:white;

    color:#5a1016;

    transform:translateY(-5px);
}

.btn-outline span{

    margin-left:10px;

    transition:0.4s ease;
}

.btn-outline:hover span{

    transform:translateX(5px);
}

/* ICONS */

.btn i{

    font-size:1.1rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.stat-card {
    padding: 25px;
    border-radius: 25px;
}

.stat-card h2 {
    font-size: 3rem;
    color: var(--secondary);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, -10px);
    }
}

/* ================= ABOUT ================= */

.about{

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.96),
        rgba(255,240,240,.92)
    );

    padding-bottom:10px;
}

.about-header{

    text-align:center;

    max-width:850px;

    margin:0 auto 80px;
}

.about-header h2{

    font-size:3rem;

    color:#5a1016;

    margin:20px 0;
}

.about-header h2 span{

    display:block;

    color:#d4af37;
}

.section-title span[data-key="sectionTitle"] {
    color: #5a1016;
}

.section-title-highlight {
    color: #d4af37;
}

.about-header p{

    color:#555;

    line-height:1.8;

    max-width:700px;

    margin:auto;
}

.vision-card-premium{

    position:relative;

    background:white;

    border-radius:25px;

    padding:50px 30px 70px;

    text-align:center;

    overflow:visible;

    box-shadow:
        0 10px 40px rgba(0,0,0,.08);

    border-top:4px solid #7a0019;

    min-height:200px;
}

/* decorative corner */

.vision-card-premium::before{

    content:'';

    position:absolute;

    top:-60px;
    right:-60px;

    width:180px;
    height:180px;

    border-radius:50%;

    background:
        rgba(212,175,55,.05);
}

/* icon */

.vision-icon{

    width:60px;
    height:60px;

    border-radius:50%;

    margin:-85px auto 15px;

    background:
        linear-gradient(
            135deg,
            #7a0019,
            #a80024
        );

    display:flex;
    align-items:center;
    justify-content:center;

    border:8px solid #fff;

    box-shadow:
        0 15px 35px rgba(122,0,25,.25);
}

.vision-icon i{

    color:white;

    font-size:1.5rem;
}

/* title */

.vision-header span{

    color:#d4af37;

    letter-spacing:2px;

    font-size:.45rem;

    font-weight:700;
}

.vision-header h3{

    margin-top:5px;

    font-size:1.5rem;

    color:#5a1016;

    font-family:'Cinzel', serif;
}

/* divider */

.vision-divider{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:15px;

    margin:15px 0;
}

.vision-divider span{

    width:120px;
    height:1px;

    background:#d4af37;
}

.vision-divider i{

    color:#d4af37;
}

/* quote */

.vision-card-premium blockquote{

    position:relative;

    border:none;

    margin:0;

    padding:20px;

    font-size:2rem;

    line-height:1.5;

    color:#5a1016;

    font-family:'Cinzel', serif;

    font-weight:700;
}

.quote-left{

    position:absolute;

    left:0;

    top:0;

    color:#7a0019;

    font-size:2rem;
}

.quote-right{

    position:absolute;

    right:0;

    bottom:0;

    color:#7a0019;

    font-size:2rem;
}

/* badge */

.vision-badge{

    position:absolute;

    bottom:-25px;
    left:50%;

    transform:translateX(-50%);

    width:50px;
    height:50px;

    border-radius:50%;

    background:
        linear-gradient(
            135deg,
            #7a0019,
            #a80024
        );

    display:flex;
    align-items:center;
    justify-content:center;

    border:6px solid #fff;

    box-shadow:
        0 15px 35px rgba(122,0,25,.25);
}

.vision-badge i{

    color:#fff;

    font-size:1.5rem;
}

.vision-mission-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:40px;

    margin-bottom:70px;
}

.mission-card-premium{

    position:relative;

    background:white;

    border-radius:25px;

    padding:50px 30px 70px;

    text-align:center;

    overflow:visible;

    box-shadow:
        0 20px 60px rgba(0,0,0,.08);

    border-top:6px solid #d4af37;

    min-height:200px;
}

/* decorative corner */

.mission-card-premium::before{

    content:'';

    position:absolute;

    top:-60px;
    right:-60px;

    width:180px;
    height:180px;

    border-radius:50%;

    background:
        rgba(212,175,55,.08);
}

/* icon */

.mission-icon{

    width:60px;
    height:60px;

    border-radius:50%;

    margin:-85px auto 15px;

    background:
        linear-gradient(
            135deg,
            #d4af37,
            #e7c35a
        );

    display:flex;
    align-items:center;
    justify-content:center;

    border:8px solid #fff;

    box-shadow:
        0 15px 35px rgba(212,175,55,.25);
}

.mission-icon i{

    color:white;

    font-size:1.5rem;
}

/* title */

.mission-header span{

    color:#d4af37;

    letter-spacing:2px;

    font-size:.45rem;

    font-weight:700;
}

.mission-header h3{

    margin-top:5px;

    font-size:1.5rem;

    color:#5a1016;

    font-family:'Cinzel', serif;
}

/* divider */

.mission-divider{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:15px;

    margin:15px 0;
}

.mission-divider span{

    width:120px;
    height:1px;

    background:#d4af37;
}

.mission-divider i{

    color:#d4af37;
}

/* quote */

.mission-card-premium blockquote{

    position:relative;

    border:none;

    margin:0;

    padding:10px;

    font-size:1.5rem;

    line-height:1.5;

    color:#5a1016;

    font-family:'Cinzel', serif;

    font-weight:700;
}

.mission-card-premium .quote-left{

    position:absolute;

    left:0;
    top:0;

    color:#d4af37;

    font-size:1.5rem;
}

.mission-card-premium .quote-right{

    position:absolute;

    right:0;
    bottom:0;

    color:#d4af37;

    font-size:2rem;
}

/* badge */

.mission-badge{

    position:absolute;

    bottom:-25px;
    left:50%;

    transform:translateX(-50%);

    width:50px;
    height:50px;

    border-radius:50%;

    background:
        linear-gradient(
            135deg,
            #d4af37,
            #e7c35a
        );

    display:flex;
    align-items:center;
    justify-content:center;

    border:6px solid #fff;

    box-shadow:
        0 15px 35px rgba(212,175,55,.25);
}

.mission-badge i{

    color:white;

    font-size:1.5rem;
}

.vm-card{

    background:white;

    padding:50px;

    border-radius:35px;

    box-shadow:
    0 15px 50px rgba(0,0,0,.08);

    position:relative;

    overflow:hidden;

    transition:.4s ease;
}

.vm-card:hover{

    transform:translateY(-10px);
}

.vm-card::after{

    content:'';

    position:absolute;

    top:-80px;
    right:-80px;

    width:180px;
    height:180px;

    border-radius:50%;

    background:rgba(212,175,55,.06);
}

.vision{

    border-top:6px solid #5a1016;
}

.mission{

    border-top:6px solid #d4af37;
}

.vm-top{

    display:flex;

    align-items:center;

    gap:20px;

    margin-bottom:35px;
}

.vm-icon{

    width:60px;
    height:60px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
        135deg,
        #5a1016,
        #7a1c24
    );

    flex-shrink:0;
}

.mission .vm-icon{

    background:
    linear-gradient(
        135deg,
        #d4af37,
        #e6c65a
    );
}

.vm-icon i{

    color:white;

    font-size:1.5rem;
}

.vm-top span{

    color:#d4af37;

    font-size:.8rem;

    font-weight:700;

    letter-spacing:3px;
}

.vm-top h3{

    color:#5a1016;

    font-size:2rem;

    margin-top:5px;
}

.vm-card blockquote{

    border:none;

    padding:0;

    margin:0;

    font-size:1.5rem;

    line-height:1.6;

    color:#5a1016;

    font-weight:700;
}

.about-features-modern{

    display:grid;

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

    background:white;

    border-radius:35px;

    overflow:hidden;

    box-shadow:
    0 10px 40px rgba(0,0,0,.08);
}

.feature-modern{

    text-align:center;

    padding:40px 25px;

    border-right:1px solid #eee;
}

.feature-modern:last-child{

    border-right:none;
}

.feature-modern i{

    font-size:2rem;

    color:#5a1016;

    margin-bottom:15px;
}

.feature-modern h4{

    color:#5a1016;
}

/* ================= PRINCIPAL ================= */

.principal-modern{
    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.96),
        rgba(255,240,240,.92)
    );
    position:relative;
    overflow:hidden;
}

.principal-modern::before{
    content:'';

    position:absolute;
    right:-180px;
    top:120px;

    width:450px;
    height:450px;

    background:
    linear-gradient(
        135deg,
        #5a1016,
        #8d1d29
    );

    border-radius:100px;

    opacity:.08;
}

.principal-modern-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.principal-text h2{
    font-size:3rem;
    line-height:1.05;
    margin:20px 0;

    color:#5a1016;
}

.principal-title span[data-key="principalTitle"] {
    color: #5a1016;
}

.principal-title-highlight {
    color: #d4af37;
}

.principal-text h2 span{
    display:block;
    color:#d4af37;
}

.principal-divider{
    display:flex;
    align-items:center;
    gap:20px;

    margin:30px 0;
}

.principal-divider span{
    width:120px;
    height:2px;
    background:#d4af37;
}

.principal-divider i{
    color:#5a1016;
    font-size:1.3rem;
}

.principal-text p{
    color:#333;
    line-height:2;
    margin-bottom:25px;
    max-width:650px;
}

.principal-signature{
    display:flex;
    align-items:center;
    gap:20px;

    margin-top:40px;
}

.signature-icon{
    width:70px;
    height:70px;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        #5a1016,
        #7a1c24
    );

    display:flex;
    align-items:center;
    justify-content:center;
}

.signature-icon i{
    color:#d4af37;
    font-size:1.5rem;
}

.principal-signature h4{
    color:#5a1016;
    font-size:1.5rem;
}

.principal-signature span{
    color:#d4af37;
    letter-spacing:3px;
    font-weight:700;
}

.principal-photo-wrapper{
    position:relative;
}

.photo-bg{
    position:absolute;

    right:-30px;
    bottom:-30px;

    width:100%;
    height:100%;

    background:
    linear-gradient(
        135deg,
        #5a1016,
        #8f1f2b
    );

    border-radius:40px;

    z-index:1;
}

.principal-photo{
    position:relative;
    z-index:2;
}

.principal-photo img{
    width:100%;
    border-radius:40px;
    border:4px solid #d4af37;
}

.quote-card{
    position:absolute;

    left:40px;
    bottom:30px;

    background:white;

    border-radius:25px;

    padding:25px;

    width:80%;

    display:flex;
    gap:15px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.15);
}

.quote-icon{
    width:40px;
    height:40px;

    border-radius:50%;

    background:#5a1016;

    color:#d4af37;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;

}

.quote-icon i{
    font-size:1.3rem;
    font-style:italic;
}

.quote-card p{
    color:#333;
    line-height:1.8;
    margin-bottom:10px;
}

.quote-card span{
    color:#d4af37;
    font-weight:600;
}

.principal-values{
    margin-top:80px;

    background:white;

    border-radius:35px;

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

    box-shadow:
    0 10px 40px rgba(0,0,0,.08);

    overflow:hidden;
}

.value-item{
    padding:40px 25px;

    text-align:center;

    border-right:1px solid #eee;
}

.value-item:last-child{
    border-right:none;
}

.value-item i{
    font-size:2rem;

    color:#5a1016;

    margin-bottom:15px;
}

.value-item h4{
    color:#5a1016;
}

/* Academic Staff */

.academic-staff{

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.96),
        rgba(255,240,240,.92)
    );
}

.staff-header{

    text-align:center;
    position:relative;

    margin-bottom:60px;
}

.staff-header h2{

    font-size:3rem;
    color:#5a1016;
    margin-bottom:10px;
}

.staff-header p{

    color:#666;
}

.staff-btn{

    position:absolute;
    right:0;
    top:20px;

    background:
    linear-gradient(
        135deg,
        #5a1016,
        #8b1f2a
    );

    color:white;
    text-decoration:none;

    padding:14px 28px;

    border-radius:50px;
}

.staffSwiper{
    padding:10px 5px 30px;
}

.swiper-slide{
    height:auto;
}

.staff-card{

    background:white;

    border-radius:28px;

    overflow:hidden;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;
}

.staff-card:hover{
    transform:translateY(-10px);
}

.staff-slider:hover .staff-track{

    animation-play-state:paused;
}

.staff-card{

    min-width:260px;

    flex-shrink:0;
}

.staff-card:hover{

    transform:translateY(-10px);
}

.staff-image{

    position:relative;
}

.staff-image img{

    height:280px;
    width:100%;
    object-fit:cover;
}

.staff-role{

    position:absolute;

    bottom:15px;
    left:50%;

    transform:translateX(-50%);

    background:#d4af37;

    color:white;

    padding:8px 18px;

    border-radius:50px;

    font-size:.75rem;

    font-weight:700;

    letter-spacing:1px;
}

.staff-content{

    padding:25px;
    text-align:center;
}

.staff-content h3{

    color:#5a1016;
    margin-bottom:10px;
}

.staff-content p{

    color:#666;
}

.staff-stats{

    margin-top:60px;

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

    background:white;

    border-radius:35px;

    padding:40px;

    box-shadow:
    0 10px 40px rgba(0,0,0,.08);
}

.stat-item{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;

    padding:10px 20px;

    border-right:1px solid #eee;
}

.stat-item:last-child{
    border-right:none;
}

.stat-item i{

    width:70px;
    height:70px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:1.8rem;

    color:#d4af37;

    background:
    linear-gradient(
        135deg,
        rgba(90,16,22,.08),
        rgba(212,175,55,.08)
    );
}

.stat-item h3{

    color:#5a1016;
    font-size:2rem;
    margin-bottom:5px;
}

.stat-item p{

    color:#666;
}

/* ================= TIMELINE ================= */

/* ================= HISTORY ================= */

.history-showcase{

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.96),
        rgba(255,240,240,.92)
    );

    padding:120px 0;
}

.history-showcase .section-title{
    color:#5a1016;
}

.history-subtitle{

    max-width:700px;

    margin:20px auto 0;

    color:#666;

    line-height:1.8;
}

.history-slider-wrapper{

    position:relative;

    display:flex;

    align-items:center;

    gap:20px;
}

.historySwiper{
    width:100%;
    padding:20px 10px;
}

.principal-history-card{

    background:white;

    border-radius:30px;

    overflow:hidden;

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;
}

.principal-history-card:hover{

    transform:translateY(-10px);
}

.principal-history-image{

    height:320px;

    overflow:hidden;
}

.principal-history-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.5s;
}

.principal-history-card:hover img{

    transform:scale(1.05);
}

.principal-history-content{

    padding:30px;
    text-align:center;
}

.period{

    display:inline-block;

    background:
    linear-gradient(
        135deg,
        #5a1016,
        #8a1f29
    );

    color:white;

    padding:10px 22px;

    border-radius:50px;

    font-weight:600;

    margin-bottom:20px;
}

.principal-history-content h3{

    color:#5a1016;

    font-size:1.6rem;

    margin-bottom:10px;
}

.designation{

    color:#d4af37;

    font-weight:700;

    letter-spacing:2px;

    display:block;

    margin-bottom:20px;
}

.principal-history-content p{

    color:#555;

    line-height:1.8;
}

.history-nav{

    width:60px;
    height:60px;

    border:none;

    border-radius:50%;

    background:white;

    cursor:pointer;

    flex-shrink:0;

    box-shadow:
    0 10px 30px rgba(0,0,0,.12);

    transition:.3s;
}

.history-nav:hover{

    background:#5a1016;
    color:white;
}

.history-nav i{

    font-size:1.2rem;
}
/* ================= ACHIEVEMENTS ================= */

.achievements {
        background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.96),
            rgba(255,240,240,0.92)
        ),
        linear-gradient(
            45deg,
            #5a1016,
            #7a1c24
        );
}

.achievements h2 {
    color: #6a1a21;
}

.achievements h3 {
    color: #6a1a21;
}

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

.achievement-card {
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    transition: 0.4s ease;
}

.achievement-card:hover {
    transform: translateY(-10px);
}

.achievement-card i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.achievement-card p {
    margin-top: 15px;
    color: #000;
    line-height: 1.7;
}

/* ================= EVENTS ================= */

.events {
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.96),
            rgba(255,240,240,0.92)
        ),
        linear-gradient(
            45deg,
            #5a1016,
            #7a1c24
        );
}

.events h2 {
    color: #6a1a21;
}

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

.event-card {
    overflow: hidden;
    border-radius: 25px;
    background :rgba(122, 122, 121, 0.25);
    transition: 0.4s ease;
}

.event-card:hover {
    transform: translateY(-10px);
}

.event-card img {
    height: 250px;
    object-fit: cover;
}

.event-content {
    padding: 30px;
}

.event-content span {
    color: var(--secondary);
    font-size: 0.9rem;
}

.event-content h3 {
    margin: 15px 0;
    color: #6a1a21;
}

.event-content p {
    color: #000;
    line-height: 1.7;
}

/* ================= GALLERY ================= */

.gallery {
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.96),
            rgba(255,240,240,0.92)
        ),
        linear-gradient(
            45deg,
            #5a1016,
            #7a1c24
        );
    h2 {
        color: #6a1a21;
    }
}

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

.gallery-grid img {
    border-radius: 25px;
    height: 280px;
    object-fit: cover;
    transition: 0.4s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}


/* ================= CONTACT ================= */

.contact-section{

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.96),
        rgba(255,240,240,.92)
    );

    padding:120px 0;
}

.contact-header{

    text-align:center;

    margin-bottom:70px;
}

.contact-header h2{

    color:#5a1016;

    font-size:3rem;

    margin:15px 0;
}

.contact-header p{

    color:#666;

    max-width:700px;

    margin:auto;

    line-height:1.8;
}

.contact-wrapper{

    display:grid;

    grid-template-columns:480px 1fr;

    gap:25px;
}

/* LEFT SIDE */

.contact-info-card{

    background:white;

    border-radius:10px;

    padding:35px;

    box-shadow:
    0 15px 50px rgba(0,0,0,.08);
}

.info-item{

    display:flex;

    gap:18px;

    margin-bottom:35px;
}

.icon-box{

    width:55px;
    height:55px;

    flex-shrink:0;

    border-radius:50%;

    display:flex;

    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
        135deg,
        #5a1016,
        #8d1d29
    );

    color:white;
}

.info-item h4{

    color:#5a1016;

    margin-bottom:8px;
}

.info-item p{

    color:#666;

    line-height:1.8;
}

.contact-map{

    margin-top:30px;

    overflow:hidden;

    border-radius:20px;
}

.contact-map iframe{

    width:100%;

    height:250px;

    border:none;
}

/* RIGHT SIDE */

.contact-form-card{

    background:white;

    border-radius:10px;

    padding:40px;

    box-shadow:
    0 15px 50px rgba(0,0,0,.08);
}

.form-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;
}

.input-group{

    margin-bottom:20px;
}

.input-group label{

    display:block;

    margin-bottom:8px;

    color:#5a1016;

    font-weight:600;
}

.input-group input,
.input-group textarea{

    width:100%;

    padding:15px 18px;

    border:1px solid #ddd;

    border-radius:15px;

    outline:none;

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

    transition:.3s;
}

.input-group input:focus,
.input-group textarea:focus{

    border-color:#d4af37;

    box-shadow:
    0 0 0 4px rgba(212,175,55,.15);
}

.contact-btn{

    border:none;

    background:
    linear-gradient(
        135deg,
        #5a1016,
        #8d1d29
    );

    display: block;
    margin: 20px auto 0;

    color:white;

    padding:15px 40px;

    border-radius:50px;

    font-size:1rem;

    font-weight:600;

    cursor:pointer;

    transition:.3s;
}

.contact-btn:hover{

    transform:translateY(-3px);
}

@media(max-width:992px){

    .contact-wrapper{

        grid-template-columns:1fr;
    }
}

/* ================= FOOTER ================= */

.footer {
    background: black;
    padding-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding-bottom: 40px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #aaa;
}

/* ================= ANIMATION ================= */

.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: 1s ease;
}

.reveal-up {
    transform: translateY(80px);
}

.reveal-left {
    transform: translateX(-80px);
}

.reveal-right {
    transform: translateX(80px);
}

.reveal-active {
    opacity: 1;
    transform: translate(0);
}

/* ================= PRELOADER ================= */

#preloader {
    position: fixed;
    inset: 0;

    background:
        linear-gradient(rgba(90, 16, 22, 0.92),
                rgba(90, 16, 22, 0.92)),
        url("assets/news1.jpg");

    background-size: cover;
    background-position: center;

    backdrop-filter: blur(10px);

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 999999;

    transition:
        opacity 1s ease,
        visibility 1s ease;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

/* content */

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

/* logo animation */

.loader-content img {
    width: 200px;
    height: 200px;
    object-fit: contain;

    opacity: 0;
    transform: scale(0.1);

    animation: logoReveal 1s ease forwards;

    filter:
        drop-shadow(0 0 25px rgba(255, 215, 0, 0.35));
}

/* heading */

.loader-content h2 {
    margin-top: 25px;

    color: #fff;

    font-size: 2rem;
    font-weight: 600;

    opacity: 0;

    overflow: hidden;
    white-space: nowrap;

    width: 0;

    animation:
        textReveal 2s ease forwards;

    animation-delay: 1s;

    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.2);
}

/* subtitle */

.loader-content p {
    margin-top: 10px;

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

    font-size: 1.1rem;

    opacity: 0;

    animation: fadeIn 1s ease forwards;

    animation-delay: 2.2s;
}

/* animations */

@keyframes logoReveal {

    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-10deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0);
    }

}

@keyframes textReveal {

    0% {
        opacity: 0;
        width: 0;
    }

    100% {
        opacity: 1;
        width: 100%;
    }

}

@keyframes fadeIn {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}

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

@media(max-width: 992px) {

    .about-grid,
    .principal-grid,
    .contact-grid,
    .achievement-grid,
    .event-grid,
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 60px;
    }

    .timeline-item {
        flex-direction: row;
    }
}

/* @media(max-width: 768px) {

    .container{
        width: 92%;
    }

    .hero{
        min-height: auto;
        padding: 120px 0 40px;
    }

    .hero-content{
        margin: 0;
        padding: 0;
        text-align: left;
    }

    .hero h1{
        font-size: 3rem;
        line-height: 1.05;
        max-width: 100%;
    }

    .hero-subtitle{
        font-size: 1rem;
        line-height: 1.6;
        max-width: 100%;
    }

    .hero-stats{
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-slide::before{
        background: linear-gradient(
            180deg,
            rgba(20,6,8,.85) 0%,
            rgba(20,6,8,.65) 50%,
            rgba(20,6,8,.45) 100%
        );
    }

    .stat-card{
        width: 100%;
        padding: 20px;
    }

    .stat-card h2{
        font-size: 2.5rem;
    }

    .logo h2{
        font-size: 1rem;
    }

    .logo span{
        font-size: 0.7rem;
    }

    .logo img{
        width: 45px;
    }

    .language-switcher{
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .nav {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: #120607;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.4s ease;
    }

    .nav.active {
        left: 0;
    }

    .menu-btn {
        display: flex;
    }

    .about-grid,
    .principal-grid,
    .contact-grid,
    .achievement-grid,
    .event-grid,
    .gallery-grid,
    .about-features {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-content {
        margin-left: 0;
        margin-top: 25px;
    }

    .timeline::before {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    /* .hero-content {
        margin-left: 20px;
        margin-right: 20px;
    } */
/* 
    .vision-mission-wrapper{

        grid-template-columns:1fr;
    }

    .about-header h2{

        font-size:1.5rem;
    }

    .vm-card{

        padding:35px;
    }

    .vm-card blockquote{

        font-size:1.4rem;
    }

    .about-features-modern{

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

    .principal-modern-grid{
        grid-template-columns:1fr;
    }

    .principal-text h2{
        font-size:3rem;
    }

    .principal-values{
        grid-template-columns:1fr 1fr;
    }

    .quote-card{
        position:relative;
        width:100%;
        left:0;
        bottom:0;
        margin-top:20px;
    }

        .form-row{

        grid-template-columns:1fr;
    }

    .contact-header h2{

        font-size:2.3rem;
    }

    
    .loader-content img {
        width: 120px;
        height: 120px;
    }

    .loader-content h2 {
        font-size: 1.6rem;
    }

    .loader-content p {
        font-size: 0.95rem;
    }

} */



