* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, sans-serif
}
html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

body {
    background: #f4f6f9;
    color: #222;
    line-height: 1.6;
    padding-top: 112px
}

a {
    text-decoration: none;
    color: inherit
}

img {
    display: block;
    max-width: 100%
}

button {
    cursor: pointer;
    border: none
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}
.loader {
  width: 50px;
  height: 50px;
  border: 5px solid #ddd;
  border-top: 5px solid #0f4c5c;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 40px auto;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.blog-section {
  padding: 40px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
}

.section-subtitle {
  color: #666;
  margin-bottom: 30px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-card h3 {
  padding: 15px;
  font-size: 18px;
}

.blog-card a {
  display: block;
  padding: 10px;
  color: teal;
  text-decoration: none;
  font-weight: 600;
}
.blog-wrapper {
  position: relative;
  max-width: 1100px;
  margin: auto;
}

.blog-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px 14px;
  background: rgba(0,0,0,0.3);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: 0.3s;
  z-index: 10;
}

.blog-btn:hover {
  background: #0c3a45;
}

/* LEFT */
.prev-btn {
  left: -50px;
}

.feedback-content {
    width: 100%;
    margin-bottom: 30px;
    padding: 20px 0;
}

.feedback-content h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #0d6efd;
    font-size: 32px;
    font-weight: 700;
}

.feedback-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.feedback-track {
    display: flex;
    gap: 25px;
    margin-bottom: 50px;
    width: max-content;
    animation: feedbackScroll 30s linear infinite;
}

.feedback-slider:hover .feedback-track {
    animation-play-state: paused;
}

.feedback-card {
    width: 320px;
    min-width: 320px;
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    border: 1px solid #f0f0f0;
}

.feedback-card:hover {
    transform: translateY(-8px);
}

.feedback-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #0d6efd;
    margin-bottom: 15px;
}

.stars {
    font-size: 18px;
    margin-bottom: 15px;
}

.feedback-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    min-height: 100px;
}

.feedback-card h4 {
    margin-top: 15px;
    color: #222;
    font-size: 18px;
}

.feedback-card span {
    color: #777;
    font-size: 14px;
}

@keyframes feedbackScroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media(max-width:768px) {

    .feedback-content h2 {
        font-size: 24px;
    }

    .feedback-card {
        width: 280px;
        min-width: 280px;
    }

    .feedback-track {
        animation-duration: 20s;
    }
}
/* RIGHT */ 
.next-btn {
  right: -50px;
}
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #333;
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.success {
  background: #28a745;
}

.toast.error {
  background: #dc3545;
}

/* ===== MODAL CONTAINER ===== */
.image-modal{
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(0,0,0,0.92);
  justify-content: center;
  align-items: center;
}

/* ===== IMAGE ===== */
.image-modal .modal-content{
  max-width: 80%;
  max-height: 70%;
  border-radius: 8px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  pointer-events: none;
  transition: transform 0.3s ease;
}

/* ===== COMMON CLICKABLE ELEMENTS ===== */
.nav-btn,
.close-modal,
.image-counter{
  pointer-events: auto;
}

/* ===== CLOSE BUTTON ===== */
.close-modal{
  position: absolute;
  top: 20px;
  right: 25px;

  font-size: 38px;
  color: #fff;
  cursor: pointer;

  z-index: 1000000;
  transition: 0.3s;
}

.close-modal:hover{
  color: #f0c040;
  transform: scale(1.2);
}

/* ===== NAVIGATION BUTTONS ===== */
.nav-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  font-size: 48px;
  color: #fff;
  cursor: pointer;

  padding: 12px 16px;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);

  user-select: none;
  z-index: 1000000;

  transition: all 0.3s ease;
}

/* Hover */
.nav-btn:hover{
  background: rgba(0,0,0,0.7);
  color: #f0c040;
  transform: translateY(-50%) scale(1.15);
}

/* Left & Right */
.prev{
  left: 20px;
}

.next{
  right: 20px;
}

/* ===== IMAGE COUNTER ===== */
.image-counter{
  position: absolute;
  bottom: 20px;
  left: 5%;
  transform: translateX(-50%);

  color: #fff;
  font-size: 14px;

  background: rgba(0,0,0,0.6);
  padding: 6px 14px;
  border-radius: 20px;

  z-index: 1000000;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px){

  .nav-btn{
    font-size: 34px;
    padding: 10px;
  }

  .prev{
    left: 10px;
  }

  .next{
    right: 10px;
  }

  .close-modal{
    font-size: 30px;
    right: 15px;
    top: 15px;
  }

  .image-counter{
    font-size: 12px;
    padding: 5px 10px;
  }

  .modal-content{
    max-width: 95%;
    max-height: 80%;
  }
}

.announcement-bar{
  position: fixed;
  top: 0;
  width:100%;
  color: #fff;
  text-align:center;
  padding:10px 55px;
  font-size:0.95rem;
  font-weight:500;
  letter-spacing:0.5px;
  z-index: 1000;
}

.announcement-bar p{
  margin:0;
}

/* ===== HEADER ===== */
#mainHeader {
    position:fixed;
    top: 42px;
    width: 100%;
    background: #0b3c5d;
    color: #fff;
    z-index: 1000;
    padding: 10px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
    transition: transform 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo{
    height:70px;
    width:auto;
    max-width:340px;
    object-fit:contain;
}
/* ===== DESKTOP NAV ===== */
/* NAVBAR */
#mainHeader nav{
    display:flex;
    align-items:center;
    gap:16px;
}

/* ALL NAV LINKS */
#mainHeader nav a,
.nav-drop-link{
    color:#fff;
    font-weight:500;
    text-decoration:none;
    transition:0.2s;
    display:flex;
    align-items:center;
    gap:6px;
    padding:10px 0;
    margin:0;
}

/* HOVER */
#mainHeader nav a:hover,
.nav-drop-link:hover{
    color:#f7b733;
    
}

/* LOGIN BUTTON */
.login-btn{
    background:#c9bb00;
    color:#0b3c5d !important;
    padding:8px 16px !important;
    border-radius:20px;
    font-weight:600;
}

/* DESKTOP DROPDOWN */
.nav-dropdown{
    position:relative;
    display:flex;
    align-items:center;
    
}

.nav-dropdown::after{
    content:"";
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    height:15px;
}

.nav-dropdown-content{
    display:none;
    position:absolute;
    top:100%;
    left:50%;
    background:#fff;
    min-width:180px;
    border-radius:6px;
    justify-content: center;
    box-shadow:0 8px 20px rgba(0,0,0,0.12);
    overflow:hidden;
    z-index:999;
    border:2px solid #e0a11b;
    transform:translateX(-50%);
}

.nav-dropdown-content a{
    display:block;
    padding:16px 22px;
    color:#333 !important;
    text-decoration:none;
    justify-content: center;
    font-weight:500;
    white-space:nowrap;   /* Prevent text wrap */
    transition:.25s;
}

.nav-dropdown-content a:hover{
    background:#f5f7fa;
    color:#0b3c5d !important;
    transform: translateX(6px);
}

.nav-dropdown:hover .nav-dropdown-content{
    display:block;
}

/* ===== DESKTOP ACTIVE ===== */
#mainHeader nav a.active,
.nav-drop-link.active {
  color: #f7b733;
  position: relative;
}

/* Underline effect */
#mainHeader nav a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #f7b733;
}

/* ===== SIDEBAR ACTIVE ===== */
#sidebar a.active {
  background: rgba(255,255,255,0.15);
  border-left: 4px solid #f7b733;
  font-weight: 600;
}

#sidebar a.active i {
  color: #f7b733;
}

/* Parent dropdown highlight */
.sidebar-drop-link.active-parent {
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
}

/* ===== BURGER ===== */
.burger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #fff;
  z-index: 1004;
  transition: transform 0.3s ease;
}

/* Rotate when active */
.burger.active {
  transform: rotate(90deg);
}

/* ===== MOBILE STYLES ===== */
@media (max-width: 768px) {

  /* Hide desktop nav */
  #mainHeader nav {
    display: none;
  }

  /* Show burger */
  .burger {
    display: block;
  }
}
@media (max-width: 768px) {
  #mainHeader {
    top:40px;
    padding: 10px 12px;
  }

  .announcement-bar {
    font-size: 0.8rem;
    padding: 8px;
  }
}

/* ===== SIDEBAR (MODERN UI) ===== */
#sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;

  background: rgba(11, 60, 93, 0.95);
  backdrop-filter: blur(12px);

  display: flex;
  flex-direction: column;
  padding: 22px 18px;
  overflow: scroll;
  transition: all 0.45s cubic-bezier(0.77, 0, 0.18, 1);
  z-index: 2000;
  transform: translateX(100%);
  box-shadow: -10px 0 30px rgba(0,0,0,0.35);
}

/* Active */
#sidebar.active {
  right: 0;
  transform: translateX(0);
}

/* ===== HEADER ===== */
.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}

.sidebar-logo {
  height: 55px;
  width: auto;
  transition: transform 0.3s ease;
}

.sidebar-logo:hover {
  transform: scale(1.05);
}

.close-btn {
  font-size: 22px;
  cursor: pointer;
  color: #fff;
  transition: transform 0.3s ease;
}

.close-btn:hover {
  transform: rotate(90deg);
}

/* ===== LINKS ===== */
#sidebar a {
  display: flex;
  align-items: center;
  gap: 12px;

  color: #fff;
  text-decoration: none;

  padding: 12px 14px;
  margin-bottom: 8px;

  border-radius: 10px;
  font-size: 15px;

  transition: all 0.3s ease;
}

/* Hover */
#sidebar a:hover {
  background: rgba(255,255,255,0.12);
  transform: translateX(6px);
}

/* ===== LOGIN BUTTON ===== */
#sidebar .login-btn {
  background: linear-gradient(135deg, #f7b733, #ffcc33);
  color: #0b3c5d;
  font-weight: 600;
  justify-content: center;
  margin-top: 20px;
  border-radius: 12px;
}

#sidebar .login-btn:hover {
  transform: scale(1.05);
}

/* ===== DROPDOWN ===== */
.sidebar-dropdown {
  width: 100%;
  color: white;
}

/* Dropdown header */
.sidebar-drop-link {
  display: flex;
  
  align-items: center;
  cursor: pointer;
}
.sidebar-drop-link a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
}

/* Arrow near text */
.sidebar-drop-link .arrow {
  font-size: 13px;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

/* Arrow only */
.sidebar-drop-link .arrow {
  font-size: 13px;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

/* Rotate only arrow */
.sidebar-drop-link.active .arrow {
  transform: rotate(180deg);
}

/* Dropdown content animation */
.sidebar-dropdown-content {
  max-height: 0;
  overflow: scroll;
  transition: max-height 0.35s ease;
  margin-left: 10px;
}

/* Show dropdown */
.sidebar-dropdown-content.show {
  max-height: 200px;
}

/* Sub links */
.sidebar-dropdown-content a {
  font-size: 14px;
  padding: 10px 12px;
  opacity: 0.9;
}
#sidebar a i {
  width: 18px;
  text-align: center;
  font-size: 15px;
}

/* ===== OVERLAY ===== */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);

  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 1500;
}

#overlay.active {
  opacity: 1;
  visibility: visible;
}
/* about */
.profil-container{
  max-width:1400px;
  margin:auto;
  padding:40px 30px 80px;
  background:linear-gradient(to bottom, #f8f9fc, #eef3f9);
}

.carousel{
  position:relative;
  width:100%;
  height:430px;
  overflow:hidden;
  border-radius:26px;
}

.carousel img{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transition:0.5s;
}

.carousel img.active{
  opacity:1;
}

/* Buttons */
.carousel button{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(0,0,0,0.5);
  color:#fff;
  border:none;
  font-size:22px;
  padding:8px 12px;
  cursor:pointer;
  border-radius:50%;
}

.carousel .prev{ left:10px; }
.carousel .next{ right:10px; }
/* MODERN ABOUT SECTION */
.modern-about-section{
  display:flex;
  align-items:center;
  gap:55px;
  padding:40px 0;
  flex-wrap:wrap;
}

.modern-about-image{
  flex:1;
  min-width:280px;
}

.modern-about-image img{
  width:100%;
  height:430px;
  object-fit:cover;
  border-radius:26px;
  display:block;
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.modern-about-content{
  flex:1;
  min-width:280px;
}

.modern-about-content h2{
  font-size:3rem;
  font-weight:800;
  color:#0b2d5c;
  margin-bottom:18px;
  line-height:1.1;
}

.modern-about-content h2::after{
  content:"";
  display:block;
  width:65px;
  height:6px;
  background:#e0a11b;
  margin-top:10px;
  border-radius:10px;
}

.modern-about-content p{
  font-size:1rem;
  line-height:1.8;
  color:#5a5a5a;
  margin-bottom:18px;
  text-align:justify;
}
.modern-about-content strong{
  color:#0b3c5d;
}
.modern-about-content strong{
  color:#0b3c5d;
}
.read-btn{
  display:inline-block;
  margin-top:15px;
  padding:10px 22px;
  background:#e0a11b;
  color:#fff;
  border-radius:25px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.read-btn:hover{
  background:#0b2d5c;
}

/* Tablet */
@media(max-width:992px){
  .modern-about-section{
    flex-direction:column;
    gap:35px;
  }

  .modern-about-image img{
    height:auto;
    max-height:500px;
  }

  .modern-about-content h2{
    font-size:3rem;
  }
}
@media (max-width: 768px) {
  .carousel {
    height: 250px;
  }

  .modern-about-image img {
    height: 250px;
  }

  .modern-about-content {
    text-align: center;
  }
}

/* Mobile */
@media(max-width:576px){
  .profil-container{
    padding:30px 18px 60px;
  }

  .modern-about-content h2{
    font-size:2.3rem;
  }

  .modern-about-content p{
    font-size:1rem;
    line-height:1.9;
  }

  .modern-about-image img{
    border-radius:22px;
  }
}

/* gallery */
.gallery-scroll-section{
  padding:70px ;
  background:linear-gradient(135deg, #0b2d5c, #0b3c5d);
  text-align:center;
  color:#fff;
  position:relative;
  overflow:hidden;
}

/* Optional soft overlay effect */
.gallery-scroll-section::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(255,255,255,0.05);
}

/* Title */
.gallery-title{
  font-size:2.6rem;
  font-weight:700;
  text-align:center;
  margin:0;
  margin-bottom:40px;
  color:#fff;
  position:relative;
}


/* underline */
.gallery-title::after{
  content:"";
  width:70px;
  height:5px;
  background:#e0a11b;
  display:block;
  margin:10px auto 0;
  border-radius:10px;
}
/* header alignment */
.gallery-header{
    position: relative;
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:30px;
  padding:0 20px; /* optional spacing */
}

@media (max-width: 768px) {
  .card {
    min-width: 200px;
    height: 180px;
  }

  .gallery-title {
    font-size: 1.8rem;
  }

  .events-container {
    flex-direction: column;
    gap: 20px;
  }

  .highlights,
  .events-content {
    padding: 20px;
  }
}

/* button style */
/* place button at right */
.view-more-btn{
  position:absolute;
  right:20px;
  top:50%;
  transform:translateY(-50%);
  border:2px solid #e0a11b;
  background:transparent;
  color:#fff;
  padding:10px 18px;
  border-radius:25px;
  text-decoration:none;
  font-size:0.9rem;
  font-weight:600;
  transition:0.3s;
}

/* hover effect */
.view-more-btn:hover{
  background:#c98d14;
  transform:translateY(-1px);
}

/* carousel */
.carousel-wrapper{
  overflow:hidden;
  position:relative;
}

.carousel-track{
  display:flex;
  gap:10px;
  width:max-content;
  animation: scroll 300s linear infinite;
  will-change: transform;
}

.card{
  min-width:280px;
  height:280px;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.3);
  background: transparent;
  padding: 0;
  line-height: 0;
  display: block;
}

.card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.3);
  display: block;
  object-position: top;
}

/* animation */
@keyframes scroll{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

/* hover pause */
.carousel-track:hover{
  animation-play-state: paused;
}
@media (max-width:600px){
  .view-more-btn{
    position:static;
    transform:none;
    display:block;
    margin:15px auto 0;
  }
}

/* SECTION */
.latest-events{
  background:#f5f7fb;
  padding:70px 20px;
  color:#0d3c84;
}

/* CONTAINER */
.events-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:stretch;
  gap:40px;
  flex-wrap:wrap;
}

/* LEFT SIDE (Highlights) */
.highlights{
  flex:1;
  background:#ffffff;
  padding:30px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.highlights h2{
  font-size:1.9rem;
  margin-bottom:20px;
}

/* Highlight Items */
.highlight-item{
  background:#f0f4ff;
  padding:12px 15px;
  border-radius:8px;
  margin-bottom:12px;
  font-size:1rem;
  transition:0.3s;
  cursor:pointer;
}

.highlight-item:hover{
  background:#e0e7ff;
  transform:translateX(6px);
}

/* RIGHT SIDE (Events) */
.events-content{
  flex:1;
  background:#ffffff;
  padding:30px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.events-content h2{
  font-size:1.9rem;
  margin-bottom:20px;
}

/* EVENTS LIST */
.events-list{
  list-style:none;
  padding:0;
  margin:0;
}

.events-list li{
  margin-bottom:15px;
  font-size:1.05rem;
  padding:10px 12px;
  border-radius:6px;
  transition:0.3s;
}

/* Hover effect */
.events-list li:hover{
  background:#f0f4ff;
  transform:translateX(5px);
}

/* Date highlight */
.events-list span{
  color:#f7b733;
  font-weight:600;
}

/* RESPONSIVE */
@media(max-width:768px){
  .events-container{
    flex-direction:column;
  }

  .highlights,
  .events-content{
    text-align:center;
  }
}
/* Scroll container */
.events-scroll{
  height:200px;     
  overflow:hidden;
  position:relative;
}

/* Animate list */
.events-list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  animation: scrollUp 10s linear infinite;
}

/* Pause on hover */
.events-scroll:hover .events-list{
  animation-play-state: paused;
}

/* Animation */
@keyframes scrollUp{
  0%{
    transform: translateY(0);
  }
  100%{
    transform: translateY(-50%);
  }
}

/* ===== MODAL BACKGROUND ===== */
.modalenquiry {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 15px;
}

/* ===== MODAL BOX ===== */
.modal-content.split {
  display: flex;
  width: 100%;
  max-width: 850px;
  max-height: 90vh;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  position: relative;
  animation: fadeIn 0.4s ease;
}

/* ===== LEFT ===== */
.modal-left {
  flex: 1;
  padding: 25px;
  background: linear-gradient(135deg, #0b3c5d, #1e6fa3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}

/* ===== RIGHT ===== */
.modal-right {
  flex: 1;
  padding: 25px;
  overflow-y: auto;
}

/* ===== FORM ===== */
.modal-right form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-right input,
.modal-right textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  transition: 0.3s;
  font-size: 14px;
}

.modal-right input:focus,
.modal-right textarea:focus {
  border-color: #1e6fa3;
  box-shadow: 0 0 5px rgba(30,111,163,0.3);
  outline: none;
}

/* ===== BUTTON ===== */
.modal-right button {
  background: #f7b733;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.modal-right button:hover {
  background: #ffcc4d;
  transform: scale(1.03);
}

/* ===== CLOSE BUTTON ===== */
.close-btn-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: 100;
  cursor: pointer;
  background: #fff;
  padding: 6px 10px;
  border-radius: 50%;
  font-weight: bold;
  transition: 0.3s;
}

.close-btn-modal:hover {
  background: #f7b733;
  color: #000;
}

/* ===== FLIP CARD ===== */
.flip-card {
  width: 100%;
  perspective: 1000px;
}

.flip-inner {
  position: relative;
  width: 100%;
  min-height: 250px;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

/* Hover trigger */
.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 20px;
  backface-visibility: hidden;
  border-radius: 10px;
}

.flip-front {
  background: transparent;
  color: #fff;
}

.flip-back {
  background: #f7b733;
  color: #000;
  transform: rotateY(180deg);
}

/* ===== ANIMATION ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .modalenquiry {
    align-items: flex-end;
  }

  .modal-content.split {
    flex-direction: column;
    width: 95%;
    border-radius: 15px 15px 0 0;
    animation: slideUp 0.4s ease;
  }

  .modal-left {
    text-align: center;
  }

  .modal-right {
    max-height: 60vh;
  }

  @keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }
}

/* ===== PREVENT SCROLL ===== */
.no-scroll {
  overflow: hidden;
}

.hero-section {
  position: relative;
  height: 90vh;
  overflow: hidden;
  background: linear-gradient(135deg, #0b3c5d 0%, #1e6fa3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.carousel-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin-top: 15px;
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  background-size: cover;
  background-position: center;
}

.carousel-slide.active {
  opacity: 1;
}

/* ✅ overlay (no pointer-events, minimal z-index) */
.carousel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 60, 93, 0.5);
}

/* ✅ controls always clickable */
.carousel-controls {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 25px;
  z-index: 3;
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicator.active {
  background: #fff;
  width: 30px;
  border-radius: 5px;
}

/* ✅ remove extra z-index */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%230b3c5d" width="1200" height="600"/><path fill="%23ffffff" fill-opacity="0.05" d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z"/></svg>');
  background-size: cover;
  opacity: 0;
}

.hero-content {
  position: relative;
  z-index: 4; /* only this needs to be above */
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #fff;
  display: inline-block;
}

.btn-primary {
  background: #f7b733;
  color: #0b3c5d;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  text-decoration: none;
}

.btn-secondary:hover {
  background: #fff;
  color: #0b3c5d;
  transform: translateY(-3px);
}
/* ============================= */
/* 📱 TABLET (≤ 992px) */
/* ============================= */
@media (max-width: 992px) {

  .hero-section {
    height: 80vh;
    padding: 20px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .carousel-controls {
    padding: 0 15px;
  }
  .hero-overlay {
    pointer-events: none;
}

.carousel-controls {
    z-index: 100;
    pointer-events: none;
}

.carousel-btn {
    pointer-events: auto;
} 
}


/* ============================= */
/* 📱 MOBILE (≤ 768px) */
/* ============================= */
@media (max-width: 768px) {

  .hero-section {
    height: 75vh;
    padding: 15px;
  }

  .carousel-container {
    margin-top: 0; /* remove extra gap */
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .hero-content {
    padding: 0 10px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-btn {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
    padding: 12px 18px;
    font-size: 0.95rem;
  }

  .carousel-controls {
    padding: 0 10px;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .carousel-indicators {
    bottom: 12px;
  }

  .carousel-indicator {
    width: 8px;
    height: 8px;
  }

  .carousel-indicator.active {
    width: 20px;
  }
  .hero-overlay {
    pointer-events: none;
}

.carousel-controls {
    z-index: 100;
    pointer-events: none;
}

.carousel-btn {
    pointer-events: auto;
}
}


/* ============================= */
/* 📱 SMALL MOBILE (≤ 480px) */
/* ============================= */
@media (max-width: 480px) {

  .hero-section {
    height: 70vh;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-btn {
    font-size: 0.85rem;
    padding: 10px 14px;
  }

  .carousel-btn {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .carousel-controls {
    padding: 0 8px;
  }

  .carousel-indicators {
    bottom: 8px;
  }
 .hero-overlay {
    pointer-events: none;
}

.carousel-controls {
    z-index: 100;
    pointer-events: none;
}

.carousel-btn {
    pointer-events: auto;
}
}


.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    color: #0b3c5d;
    position: relative;
    padding-bottom: 20px
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f7b733, #fc4a1a);
    border-radius: 2px
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem
}

.about-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fff 0%, #f4f6f9 100%)
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px
}

.about-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-top: 4px solid #0b3c5d
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-top-color: #f7b733
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 20px
}

.about-card h3 {
    font-size: 1.5rem;
    color: #0b3c5d;
    margin-bottom: 15px
}

.about-card p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem
}

.stats-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0b3c5d 0%, #1e6fa3 100%)
}

.stats-title {
    color: #fff !important
}

.stats-title::after {
    background: linear-gradient(90deg, #f7b733, #fc4a1a)
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    color: #fff
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 20px;
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    color: #fff
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px)
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #fff
}

.stat-label {
    font-size: 1rem;
    opacity: 0.95;
    color: #fff
}

.features-section {
    padding: 80px 20px
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12)
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #0b3c5d;
    margin-bottom: 12px
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem
}

.ekstrakurikuler {
    padding: 80px 20px;
    background: #f4f6f9
}

.ekstrakurikuler .section-title {
    color: #0b3c5d
}

.ekstra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px
}

.ekstra-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    border-left: 5px solid #ddd;
    overflow: hidden
}

.ekstra-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(247, 183, 51, 0.1), rgba(252, 74, 26, 0.1));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    z-index: 0
}

.ekstra-card.active::before {
    display: none
}

.ekstra-card.active {
    border-left-color: #0b3c5d;
    background: linear-gradient(135deg, #f4f6f9 0%, #e8f2f9 100%)
}

.ekstra-card:hover::before {
    transform: scaleX(1)
}

.ekstra-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15)
}

.ekstra-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
    animation: bounce 2s ease-in-out infinite
}

.ekstra-card h3 {
    color: #0b3c5d;
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700
}

.ekstra-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    position: relative;
    z-index: 1
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    background: #f0f0f0;
    color: #666;
    text-transform: uppercase;
    position: relative;
    z-index: 1
}

.badge-required {
    background: #0b3c5d;
    color: #fff
}

.ekstra-note {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    margin-top: 30px;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    border-left: 4px solid #f7b733
}

.spmb.enrollment-section {
    margin: 80px auto;
    background: linear-gradient(135deg, #0b3c5d, #1e6fa3);
    color: #fff;
    padding: 80px 40px;
    border-radius: 22px;
    text-align: center;
    max-width: 1000px;
    box-shadow: 0 15px 40px rgba(11, 60, 93, 0.3)
}

.enrollment-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 800
}

.enrollment-subtitle {
    margin: 10px 0 40px;
    font-size: 1.1rem;
    opacity: 0.95
}

.enrollment-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px
}

.cta.cta-primary {
    padding: 16px 40px;
    border-radius: 30px;
    background: #f7b733;
    color: #0b3c5d;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease
}

.cta.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(247, 183, 51, 0.3)
}

.cta.cta-secondary {
    padding: 16px 40px;
    border-radius: 30px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease
}

.cta.cta-secondary:hover {
    background: #fff;
    color: #0b3c5d;
    transform: translateY(-3px)
}

.unggulan {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px
}

.unggulan h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0b3c5d
}

.vision-content {
    display: grid;
    gap: 20px
}

.vision-item {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #0b3c5d;
    transition: all 0.3s ease
}

.vision-item:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-left-color: #f7b733
}

.vision-item h3 {
    color: #0b3c5d;
    margin-bottom: 10px;
    font-size: 1.2rem
}

.vision-item p {
    color: #666;
    line-height: 1.7
}

.spmb {
    margin: 80px auto;
    background: linear-gradient(135deg, #f7b733, #fc4a1a);
    color: #fff;
    padding: 60px 40px;
    border-radius: 22px;
    text-align: center;
    max-width: 1000px;
    box-shadow: 0 15px 40px rgba(252, 74, 26, 0.3)
}

.spmb h2 {
    font-size: 2rem;
    margin-bottom: 15px
}

.spmb p {
    margin: 10px 0 30px;
    font-size: 1.1rem;
    opacity: 0.95
}

.spmb-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto
}

.spmb-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease
}

.spmb-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px)
}

.spmb-item h3 {
    margin-bottom: 10px;
    font-size: 1rem
}

.spmb-item p {
    font-size: 0.9rem;
    opacity: 0.9
}

.spmb .cta {
    display: inline-block;
    margin-top: 20px;
    padding: 16px 40px;
    border-radius: 30px;
    background: #fff;
    color: #fc4a1a;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease
}

.spmb .cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2)
}

.spmb .cta:active {
    transform: scale(0.96)
}

.gallery-preview {
    padding: 80px 20px
}

.gallery-card {
    background: linear-gradient(135deg, #0b3c5d 0%, #1e6fa3 100%);
    border-radius: 18px;
    padding: 60px 40px;
    color: #fff;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(11, 60, 93, 0.3);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease
}

.gallery-card:hover .gallery-overlay {
    background: rgba(0, 0, 0, 0.2)
}

.gallery-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 800;
    position: relative;
    z-index: 2
}

.gallery-card p {
    font-size: 1rem;
    opacity: 0.9;
    position: relative;
    z-index: 2
}

.gallery-cta {
    display: inline-block;
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
    animation: slideRight 2s ease-in-out infinite
}

.staf-section {
    padding: 80px 20px;
    background: #f7f9fc
}

.staf-section h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0b3c5d
}

.staf-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px
}

.staf-outer-card {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .08)
}

.staf-inner-card {
    background: #f1f4f9;
    border-radius: 16px;
    padding: 18px;
    overflow: hidden
}

.staf-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px
}

.staf-slider::-webkit-scrollbar {
    height: 6px
}

.staf-slider::-webkit-scrollbar-thumb {
    background: #cfd6e0;
    border-radius: 10px
}

.staf-slider::-webkit-scrollbar-track {
    background: #f1f4f9
}

.staf-card {
    min-width: 160px;
    background: #fff;
    border-radius: 14px;
    padding: 12px;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: .3s;
    text-align: center
}

.staf-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12)
}

.staf-card img {
    border-radius: 10px;
    border: 2px solid #ddd;
    background: #eee;
    height: 100px;
    width: 100%;
    object-fit: cover
}

.staf-card .jabatan {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50
}

.staf-note {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    margin-top: 15px
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    justify-content: center;
    align-items: center;
    z-index: 2000;
    animation: fadeIn 0.3s ease
}

.modal-content {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    width: 90%;
    max-width: 420px;
    text-align: center;
    animation: slideUp 0.3s ease
}

.modal-content img {
    width: 150px;
    border-radius: 12px;
    border: 3px solid #ddd;
    margin: 0 auto 12px;
    background: #eee;
    height: 150px;
    object-fit: cover
}

.modal-content ul {
    list-style: none;
    text-align: left;
    margin-top: 14px;
    font-size: 14px
}

.modal-content li {
    margin-bottom: 6px
}

.close {
    float: right;
    font-size: 22px;
    cursor: pointer;
    transition: color 0.2s
}

.close:hover {
    color: #f7b733
}

.ai-promo {
    background: linear-gradient(135deg, #0b3c5d, #1e6fa3);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.ai-promo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%230b3c5d" width="1200" height="400"/><path fill="%23ffffff" fill-opacity="0.03" d="M0,200 Q300,100 600,200 T1200,200 L1200,400 L0,400 Z"/></svg>');
    background-size: cover;
    opacity: 0.5
}

.ai-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto
}

.ai-promo h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 800;
    background: linear-gradient(135deg, #f7b733, #fc4a1a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.ai-promo p {
    margin: 15px 0 30px;
    font-size: 1.15rem;
    opacity: 0.95;
    line-height: 1.8
}

.ai-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto
}

.ai-feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease
}

.ai-feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px)
}

.ai-feature-item p {
    font-size: 0.95rem;
    margin: 0
}

.ai-button {
    display: inline-block;
    margin-top: 25px;
    padding: 16px 45px;
    border-radius: 30px;
    background: #fff;
    color: #0b3c5d;
    font-weight: 700;
    transition: all .3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    font-size: 1rem
}

.ai-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .3);
    background: #f7b733;
    color: #0b3c5d
}

.ai-button:active {
    transform: scale(.96)
}

.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0b3c5d 0%, #1e6fa3 100%);
    color: #fff;
    text-align: center
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.95
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap
}

.cta-btn {
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #fff;
    display: inline-block;
    text-decoration: none
}

.cta-btn-primary {
    background: #fff;
    color: #0b3c5d
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2)
}

.cta-btn-secondary {
    background: transparent;
    color: #fff
}

.cta-btn-secondary:hover {
    background: #fff;
    color: #0b3c5d;
    transform: translateY(-3px)
}

.quick-links {
    padding: 60px 20px;
    background: #f4f6f9
}

.quick-links h3 {
    text-align: center;
    color: #0b3c5d;
    margin-bottom: 40px;
    font-size: 1.8rem;
    font-weight: 800
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px
}

.quick-link {
    display: block;
    padding: 25px;
    background: #fff;
    border-radius: 14px;
    color: #0b3c5d;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent
}

.quick-link:hover {
    transform: translateY(-5px);
    border-color: #0b3c5d;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12)
}

.card {
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    margin: 20px auto;
    max-width: 1000px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: .3s;
    text-align: center
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .12)
}

.galeri-card {
    cursor: pointer
}

.galeri-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #0b3c5d
}

.galeri-card p {
    font-size: 14px;
    color: #555
}

.galeri-card:hover {
    transform: translateY(-4px)
}

.footer {
    background: #0b3c5d;
    color: white;
    padding: 80px 20px 30px;
    text-align: left;
}

.footer-content {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1.4fr 1fr ;
    gap: 50px;
}

/* Headings */
.footer-section h4 {
    color: #f7b733;
    font-size: 1.45rem;
    margin-bottom: 22px;
    font-weight: 700;
}

/* Paragraph */
.footer-section p {
    color: #fff;
    line-height: 2;
    font-size: 1.02rem;
}

/* =======================
   QUICK LINKS / ACADEMICS
======================= */
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 14px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease;
    font-size: 1rem;
}

/* Custom Bullet Arrow */
.footer-section ul li a::before {
    content: "➜";
    color: #f7b733;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-section ul li a:hover {
    color: #f7b733;
    transform: translateX(6px);
}

.footer-section ul li a:hover::before {
    transform: translateX(3px);
}
.footer-links-group{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}
@media (max-width:768px){
    .footer-links-group{
        grid-template-columns:1fr;
        gap:30px;
    }
}

/* =======================
   CONTACT ALIGNMENT FIX
======================= */
.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    line-height: 1.8;
}

.footer-contact i {
    color: #f7b733;
    font-size: 1.1rem;
    min-width: 22px;
    margin-top: 10px;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-contact a:hover {
    color: #f7b733;
}

/* =======================
   SOCIAL ICONS
======================= */
.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 14px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: 0.3s ease;
}

.social-icons a:hover {
    background: #f7b733;
    color: #0b3c5d;
    transform: translateY(-4px);
}

/* =======================
   FOOTER BOTTOM
======================= */
.footer-bottom {
    margin-top: 45px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.12);
    text-align: center;
    font-size: 0.95rem;
    opacity: 0.85;
}

/* =======================
   MOBILE RESPONSIVE
======================= */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 20px 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
        text-align: left;
    }

    .social-icons {
        justify-content: center;
    }
}
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    padding: 30px 20px
}

.cards .card {
    text-align: center;
    font-size: 15px
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes slideRight {

    0%,
    100% {
        transform: translateX(0)
    }

    50% {
        transform: translateX(10px)
    }
}

@media(max-width:1024px) {
    .hero-title {
        font-size: 2.8rem
    }

    .section-title {
        font-size: 2rem
    }

    .about-grid,
    .features-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-content {
        grid-template-columns: 1fr
    }

    .vision-content {
        max-width: 100%
    }
}

@media(max-width:768px) {
    .hero-section {
        height: 50vh
    }

    .hero-title {
        font-size: 2rem
    }

    .hero-subtitle {
        font-size: 1rem
    }

    .hero-buttons {
        gap: 10px
    }

    .header-text {
        gap: 1px
    }

    .school-subtitle {
        display: none
    }

    .school-name {
        font-size: 16px
    }

    #mainHeader nav a {
        font-size: 12px;
        margin-left: 12px
    }

    .section-title {
        font-size: 1.8rem
    }

    .about-grid,
    .features-grid,
    .stats-grid {
        grid-template-columns: 1fr
    }

    .spmb {
        margin: 40px 20px;
        padding: 40px 20px
    }

    .spmb h2 {
        font-size: 1.5rem
    }

    .spmb-content {
        grid-template-columns: 1fr
    }

    .cta-buttons {
        flex-direction: column
    }

    .cta-btn {
        width: 100%
    }

    .links-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .hero-btn {
        padding: 12px 28px;
        font-size: 0.95rem
    }
}

.burger {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: #fff
}

@media(max-width:768px) {
    #mainHeader nav {
        display: none;
        flex-direction: column;
        background: #0b3c5d;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        text-align: center;
        padding: 10px 0;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2)
    }

    #mainHeader nav a {
        margin: 10px 0;
        display: block
    }

    .burger {
        display: block
    }

    #mainHeader nav.active {
        display: flex
    }
}