/* ===== GLOBAL RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BODY ===== */
body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  /* body text ~16px */
  font-weight: 400;
  /* normal */
  line-height: 1.5;
  /* 1.4–1.6 safe range */   
  letter-spacing: normal;
  color: #1f2937;
  /* professional dark text */
  background-color: #ffffff;
}

/* ===== HEADINGS ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  /* bold headings */
  line-height: 1.4;
  letter-spacing: normal;
}

/* Heading sizes */
h1 {
  font-size: 25px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

/* ===== PARAGRAPH & TEXT ===== */
p,
li,
span,
small {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

/* ===== MENU / NAV ===== */
nav a,
.menu a {
  font-size: 16px;
  font-weight: 700;
  /* bold menu */
  letter-spacing: normal;
  text-decoration: none;
}

/* ===== BUTTONS ===== */
button,
.btn,
input[type="submit"] {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  /* bold button text */
  letter-spacing: normal;
  cursor: pointer;
}

/* ===== FORMS ===== */
input,
textarea,
select {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.logo-link,
a {
  text-decoration: none
}

.dropdown-menu li a,
.nav-menu>li>a {
  font-weight: 500;
  cursor: pointer;
  font-size: 16px
}

.dropdown-menu li a,
.hamburger,
.logo-link,
.logo-link *,
.nav-menu>li>a {
  cursor: pointer
}

.hero-text .btn,
.read-more-btn:hover {
  background: #ff8c00
}

:root {
  --blue:  #0e4c82;
  --orange: #f59e0b;
  --white: #ffffff
}


a {
  color: inherit
}

.footer-box ul,
ul {
  list-style: none
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px
}

.top-header {
  background: #fff;
  border-bottom: 1px solid #eee
}

.top-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0
}

.logo-box,
.top-info {
  display: flex;
  align-items: center
}

.logo-box {
  gap: 12px;
  margin-left: 10px
}

/* ===== LOGO LINK ===== */
.logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
}

/* ===== LOGO BOX ===== */
.logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== LOGO IMAGE (DEFAULT – DESKTOP) ===== */
.logo-box img {
  max-height: 110px;
  /* desktop */
  width: auto;
  transition: .3s ease;
}

/* ===== LARGE TABLET / SMALL LAPTOP ===== */
@media(max-width:1200px) {
  .logo-box img {
    max-height: 120px;
  }
}

/* ===== TABLET ===== */
@media(max-width:992px) {
  .logo-box img {
    max-height: 100px;
  }
}

/* ===== MOBILE ===== */
@media(max-width:576px) {
  .logo-box img {
    max-height: 80px;
  }
}

/* school logo end */
.school-text span {
  display: block;
  font-size: 20px;
  border-top: 5px solid var(--orange)
}

.logo-link {
  display: inline-block
}

.top-info {
  gap: 10px;
  font-size: 14px
}

.nav-menu,
.top-info .social {
  align-items: center;
  display: flex
}

.top-info .social {
  gap: 10px
}

.top-info .social i {
  font-size: 25px;
  color: var(--blue);
  cursor: pointer;
  transition: transform .3s, color .3s
}

.top-info .social i:hover {
  color: var(--orange);
  transform: scale(1.2)
}

.navbar {
  position: sticky;
  top: 0;
  background: var(--blue);
  z-index: 999
}

.nav-menu>li,
.nav-menu>li>a,
.nav-wrapper {
  position: relative
}

.nav-wrapper {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center
}

.nav-menu {
  gap: 40px
}

.nav-menu>li>a {
  color: #fff;
  padding: 28px 0;
  white-space: nowrap
}

.nav-menu>li>a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 0;
  height: 3px;
  background: var(--orange);
  transition: .3s
}

.nav-menu>li>a.active::after,
.nav-menu>li>a:hover::after {
  width: 100%
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px
}

.dropdown-toggle i {
  font-size: 12px;
  transition: .3s
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #fff;
  border-radius: 12px;
  padding: 10px 0;
  border-top: 4px solid var(--orange);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: .35s;
  z-index: 1000
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: var(--blue);
  transition: .3s;
  color: var(--blue)
}

.dropdown-menu li a:hover {
  background: linear-gradient(90deg, var(--orange), #ffb703);
  color: #fff;
  padding-left: 28px
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg)
}

.hamburger {
  display: none;
  position: absolute;
  right: 20px;
  font-size: 28px;
  color: #fff
}


/* ===== HERO ===== */
.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

/* ===== SLIDE ===== */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease;
}

/* ===== HERO MOBILE IMAGE FIX ===== */
@media(max-width:768px) {
  .slide {
    background-position: 100%;
  }
}

@media(max-width:480px) {
  .slide {
    background-position: center top;
  }
}


.slide.active {
  opacity: 1;
  z-index: 1;
}

/* ===== DARK OVERLAY ===== */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:linear-gradient(to right,
             rgba(0,0,0,0.65),
             rgba(0, 0, 0, .25));
  z-index: 2;
}

/* ===== CENTER CONTENT ===== */
.hero-content {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
  text-align: center;
  font-weight: bolder;
  color: #fff;
  z-index: 2;
  max-width: 650px;
  padding: 0 60px;

  opacity: 0;
  transform: translate(-50%, -40%);
  transition: all 1s ease;
}

.slide.active .hero-content {
  opacity: 1;
  transform: translate(-50%, -50%);
}


/* ===== TEXT ===== */
.hero-content {
  max-width: 900px;
  width: 90%;
  margin: auto;
  text-align: center;
}

.hero-content h2 {
  font-size: clamp(24px, 5vw, 42px);
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.2;
  word-break: break-word;
}

.hero-content p {
  font-size: clamp(14px, 3.5vw, 18px);
  margin-bottom: 22px;
  line-height: 1.5;
  font-weight: 800;
}


/* ===== BUTTON ===== */
.hero-btn {
  display: inline-block;
  padding: 12px 26px;
  font-size: 20px;
  background: #e09a30;
  color: #fff;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: all .4s ease;
}


@media(max-width:480px) {
  .hero-btn {
    padding: 10px 22px;
    font-size: 14px;
  }
}

.hero-btn:hover {
  background: #e2a744;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, .4);
}

/* ===== NAV ===== */
.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 5;
  transform: translateY(-50%);
}

.slider-nav span {
  font-size: 36px;
  color: #fff;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 50%;
}

.hero-curve {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero-curve svg {
  width: 100%;
  height: 40px;
  display: block;
}

@media(max-width:768px) {
  .hero-curve svg {
    height: 1px;
    /* curve chhota */
  }
}

@media(max-width:480px) {
  .hero-curve svg {
    height: 20px;
    /* aur kam */
  }
}


/* ===== RESPONSIVE ===== */
@media(max-width:768px) {
  .hero {
    height: 80vh;
  }

  .hero-content h2 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 15px;
  }
}

.welcome-section {
  background: #f9fbff;
  padding: 70px 0
}

.welcome-wrapper{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:40px;
  align-items:center;
}

.welcome-img img{
  width:100%;
  border-radius:16px;
  object-fit:cover;
}

@media(max-width:768px){
  .welcome-wrapper{
    grid-template-columns:1fr;
  }
}


.welcome-wrapper {
  max-width: 900px;
  margin: auto;
  text-align: center;
  padding: 0 20px
}

.welcome-wrapper h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0e4c82;
  margin-bottom: 25px
}

.welcome-wrapper h2 span {
  color: #0e4c82;
  font-size: 32px;
  font-weight: 700;
}

.welcome-wrapper p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px 30px;
  background: #0e4c82;
  color: #fff;
  border-radius: 30px
}

.read-more-btn i {
  transition: transform .3s
}

.read-more-btn:hover i {
  transform: translateX(6px)
}

.founder-section {
  padding: 70px 0;
  background: rgb(184, 179, 179);
  text-align: center
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #0e4c82;
  margin-bottom: 50px
}

.section-title span {
  color: #dd610e
}

.founder-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap
}

.founder-card {
  background: #f9fbff;
  padding: 30px 25px;
  max-width: 320px;
  border-radius: 16px;
  transition: .4s
}

.founder-img {
  border: 4px solid #d4af37;
  border-radius: 16px;
  padding: 6px;
  margin-bottom: 18px
}

.address-card img,
.founder-img img {
  border-radius: 12px;
}

.founder-img img {
  width: 100%;
  height: 300px
}

.founder-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0e4c82;
  margin-bottom: 8px
}

.founder-card p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.6
}

.founder-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .15)
}

.welcome-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #0e4c82
}

.welcome-title span {
  position: relative;
  color: #0e4c82;
  padding-bottom: 6px
}

.welcome-address {
  padding: 70px 20px;
  background: #f8fafc
}

.welcome-address h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #0e4c82;
}

.address-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px
}

.address-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08)
}

.address-card img {
  height: 260px;
  border: 4px solid #f59e0b;
  margin-bottom: 15px
}

.address-card h3 {
  color: #f59e0b;
  margin-bottom: 10px
}

.address-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 15px
}

.address-card h4 {
  margin-top: 10px;
  color: #0a3d62
}

.address-card span {
  font-size: 13px;
  color: #64748b
}

.review-section {
  padding: 60px 0;
  background: #0a3d62;
  color: #fff;
  text-align: center;
  overflow: hidden
}

.review-section h2 {
  margin-bottom: 30px
}

.review-slider {
  overflow: hidden;
  width: 100%
}

.review-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: 55s linear infinite scrollReviews
}

.review-card {
  background: #fff;
  color: #333;
  min-width: 300px;
  max-width: 300px;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
  position: relative
}

.review-card::before {
  content: "“";
  font-size: 48px;
  color: #f59e0b;
  position: absolute;
  top: -18px;
  left: 20px
}

.review-card p {
  font-size: 15px;
  line-height: 1.6
}

.review-card h4 {
  margin-top: 15px;
  color: #0a3d62;
  font-size: 14px
}

@keyframes scrollReviews {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-100%)
  }
}

.school-footer {
  background: #081f33;
  color: #fff;
  margin-top: 60px
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-box h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #f59e0b
}

.footer-box p,
.footer-box ul li {
  margin-bottom: 10px;
 

}

.footer-box ul li a {
  color: #d1d5db;
  font-size: 14px;
  transition: .3s;
}

.footer-box ul li a:hover {
  color: #f59e0b;
  padding-left: 6px
}

.footer-box i {
  color: #f59e0b;
  margin-right: 8px
}

.footer-box p {
  line-height: 1.7;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #d1d5db
}

.footer-box p i {
  font-size: 14px;
  color: #f59e0b;
  min-width: 16px
}

.footer-social {
  margin-top: 15px
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #fff;
  border-radius: 50%;
  margin-right: 8px;
  transition: .3s
}

.footer-social a:hover {
  background: #f59e0b;
  transform: translateY(-4px)
}

.footer-box iframe {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  border: 0
}

.footer-bottom {
  text-align: center;
  padding: 15px;
  border-top: 1px solid #334155;
  font-size: 14px;
  background: #061726
}

.footer-bottom span {
  color: #f59e0b
}

@media(max-width:992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr)
  }
}

.footer-logo {
  width: 90px;
  margin-bottom: 12px;
  background-color: #d1d5db;
  border-radius: 50%
}

.footer-about {
  display: flex;
  flex-direction: column;
  align-items: flex-start
}

@media(max-width:576px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-social {
    justify-content: center
  }

  .footer-about {
    align-items: center
  }

  .footer-logo {
    width: 80px
  }
}

@media(max-width:768px) {

  .nav-menu,
  .nav-menu>li,
  .nav-menu>li>a.active::after,
  .nav-menu>li>a:hover::after {
    width: 100%
  }

  .nav-menu {
    flex-direction: column;
    background: var(--blue);
    gap: 0
  }

  .nav-menu>li>a {
    display: inline-block;
    white-space: normal;
    position: relative;
    width: 100%;
    padding: 15px 22px
  }

  .nav-menu>li>a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: auto;
    height: 3px;
    background: var(--orange)
  }

  .nav-menu,
  .top-info {
    display: none
  }

  .nav-wrapper {
    justify-content: space-between
  }

  .nav-menu {
    flex-direction: column;
    background: var(--blue);
    padding: 15px 0
  }

  .nav-menu.active,
  .nav-menu.show {
    display: flex
  }

  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: #0e4c82;
    display: none;
    opacity: 1;
    visibility: visible
  }

  .dropdown-menu li a {
    font-size: 13px;
    color: #fff;
    padding: 12px 34px
  }

  .dropdown.open .dropdown-menu,
  .hamburger {
    display: block
  }

  .hero {
    height: 55vh
  }

  .hero-text h2 {
    font-size: 1.8rem
  }

  .hero-text p {
    font-size: 1rem
  }

  .hero-text .btn {
    padding: 10px 22px;
    font-size: 14px
  }

  .welcome-section {
    padding: 50px 0
  }

  .section-title,
  .welcome-title,
  .welcome-wrapper h2 {
    font-size: 24px; 
  }

  .welcome-wrapper p {
    font-size: 14.5px
  }

  .founder-img img {
    height: 240px
  }

  .address-grid {
    grid-template-columns: 1fr
  }

  .review-card {
    min-width: 260px;
    max-width: 260px
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0b3c78;
    display: none;
    flex-direction: column
  }

  .hamburger {
    display: block;
    cursor: pointer
  }
}




/* Overlay */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Box */
.popup-box {
  width: 520px;
  max-width: 92%;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  animation: popupZoom .4s ease;
}

/* Heading */
.popup-title {
  margin: 0;
  padding: 14px;
  text-align: left;
  font-size: 26px;
  font-weight: 700;
  background: #f3f2f1;
  color: #0a0a0a;
}

/* Slider */
.popup-slider {
  position: relative;
}

/* Images */
.popup-slide {
  display: none;
  width: 100%;
}

.popup-slide.active {
  display: block;
}

/* Close */
.popup-close {
  position: absolute;
  top: 8px;
  right: 14px;
  font-size: 28px;
  color: #121111;
  cursor: pointer;
  z-index: 2;
}

/* Arrows */
.popup-prev,
.popup-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 50%;
}

.popup-prev {
  left: 10px;
}

.popup-next {
  right: 10px;
}

.popup-prev:hover,
.popup-next:hover {
  background: #ff9800;
}

/* Animation */
@keyframes popupZoom {
  from {
    transform: scale(.7);
    opacity: 0
  }

  to {
    transform: scale(1);
    opacity: 1
  }
}

/* Mobile */
@media(max-width:600px) {
  .popup-title {
    font-size: 18px;
    padding: 10px;
  }
}

/* about css */


/* ===== BANNER ===== */
.about-banner {
  height: 100px;
  position: relative;
}

.about-banner .overlay {
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.about-banner h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.about-banner p {
  font-size: 20px;
  color: #f39c12;
}

/* ===== CONTENT ===== */
.about-content {
  padding: 50px 20px;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.about-content p {
  margin-bottom: 18px;
  text-align: justify;
  font-size: 14px;
}

/* ===== CONTACT BOX ===== */
.about-contact {
  margin-top: 40px;
  padding: 25px;
  background: #fff;
  border-left: 5px solid #f39c12;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.about-contact h3 {
  margin-top: 0;
  color: #0b3c78;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px) {
  .about-banner h1 {
    font-size: 26px;
  }

  .about-banner {
    height: 220px;
  }
}

/* admission enquiry css */

.enquiry-section {
  min-height: auto;
  /* FIX */
  background: linear-gradient(135deg, #fef3c7, #fff);
  display: flex;
  align-items: center;
  padding: 40px 15px;
}

.enquiry-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: #fff;
  padding: 45px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
}

/* LEFT INFO */
.enquiry-info h1 {
  font-size: 32px;
  margin-bottom: 16px;
  color: #111827;
}

.enquiry-info p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 22px;
  color: #374151;
}

.enquiry-info ul {
  list-style: none;
  padding: 0;
}

.enquiry-info li {
  font-size: 16px;
  margin-bottom: 10px;
  color: #1f2937;
}

/* CONTACT BOX */
.contact-box {
  background: #f8fafc;
  padding: 35px;
  border-radius: 16px;
  border: 1px solid #fde68a;
}

.contact-box h2 {
  font-size: 26px;
  margin-bottom: 22px;
  color: #111827;
  text-align: center;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.contact-item img {
  flex-shrink: 0;
}

.contact-item p {
  font-size: 16px;
  color: #374151;
  line-height: 1.6;
}

/* ===== TABLET ===== */
@media(max-width:900px) {
  .enquiry-container {
    grid-template-columns: 1fr;
    padding: 35px;
    gap: 30px;
  }

  .enquiry-info h1 {
    font-size: 30px;
    text-align: center;
  }

  .enquiry-info p {
    text-align: left;
  }

  .enquiry-info ul {
    text-align: left;
  }
}

/* ===== MOBILE ===== */
@media(max-width:480px) {
  .enquiry-section {
    padding: 30px 12px;
  }

  .enquiry-container {
    padding: 25px 20px;
    border-radius: 16px;
  }

  .enquiry-info h1 {
    font-size: 24px;
  }

  .enquiry-info p,
  .enquiry-info li,
  .contact-item p {
    font-size: 14.5px;
  }

  .contact-box {
    padding: 22px;
  }

  .contact-box h2 {
    font-size: 22px;
  }

  .contact-item {
    gap: 10px;
  }
}

/* admission procedure */
.admission-section {
  padding: 80px 20px;
  background: #f9fafc;
  font-family: "Rubik", sans-serif;
}

.admission-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* ===== TEXT ===== */
.admission-text {
  flex: 1;
}

.admission-text h1 {
  font-size: 38px;
  font-weight: 700;
  color: #0e4c82;
  margin-bottom: 8px;
}

.admission-text h3 {
  font-size: 18px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 22px;
}

.admission-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 16px;
}

.admission-text h4 {
  margin-top: 24px;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
}

.admission-text ul {
  margin-top: 12px;
  padding-left: 20px;
}

.admission-text ul li {
  font-size: 16px;
  line-height: 1.8;
  color: #334155;
  list-style: disc;
}

.admission-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
}


/* ===== IMAGE ===== */
.admission-image {
  flex: 1;
  text-align: center;
}

.admission-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px) {
  .admission-container {
    flex-direction: column;
    text-align: left;
  }

  .admission-text ul {
    text-align: left;
  }

  .admission-text h1 {
    font-size: 32px;
  }
}

@media(max-width:576px) {
  .admission-section {
    padding: 60px 16px;
  }

  .admission-text h1 {
    font-size: 28px;
  }

  .admission-text p,
  .admission-text ul li {
    font-size: 15px;
  }
}

/* contact css */
.contact-section {
  padding: 70px 20px;
  background: #f8fafc;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

/* LEFT INFO */
.contact-info h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-info p {
  color: #555;
  margin-bottom: 25px;
}

.contact-info ul {
  list-style: none;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 16px;
  color: #333;
}

.contact-info span i {
  font-size: 18px;
  color: #d19842;
  background: #fff3df;
  padding: 10px;
  border-radius: 50%;
}

/* SOCIAL ICONS */
.social-icons {
  margin-top: 25px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #e09e3b;
  color: #0f0f0f;
  border-radius: 50%;
  margin-right: 10px;
  transition: .3s;
}

.social-icons a:hover {
  background: #e2a744;
  transform: translateY(-3px);
}

/* ===== FORM WRAPPER ===== */
#whatsappForm {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  max-width: 450px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ===== INPUTS & TEXTAREA ===== */
#whatsappForm input,
#whatsappForm textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border-radius: 10px;
  border: 1.5px solid #ddd;
  outline: none;
  transition: all .3s ease;
  font-family: inherit;
}

#whatsappForm textarea {
  resize: none;
}

/* Focus Effect */
#whatsappForm input:focus,
#whatsappForm textarea:focus {
  border-color: #25D366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
}

/* ===== BUTTON ===== */
#whatsappForm button {
  background: #25D366;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  transition: all .4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Hover */
#whatsappForm button:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

/* ===== PLACEHOLDER STYLE ===== */
#whatsappForm input::placeholder,
#whatsappForm textarea::placeholder {
  color: #999;
  font-size: 14px;
}

/* ===== MOBILE RESPONSIVE ===== */
@media(max-width:600px) {
  #whatsappForm {
    padding: 22px;
  }

  #whatsappForm button {
    font-size: 15px;
  }
}


/* RESPONSIVE */
@media(max-width:900px) {
  .contact-container {
    grid-template-columns: 1fr;
    padding: 35px;
  }
}

@media(max-width:480px) {

  .contact-info h2,
  .contact-form h2 {
    font-size: 26px;
  }
}

/* ===== CORE VALUES SECTION ===== */
.core-values-section {
  font-family: "Rubik", sans-serif;
  background: #f9fafb;
}

/* HERO IMAGE */
.core-values-hero {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}


.core-values-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.core-values-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.core-values-hero p {
  font-size: 18px;
  max-width: 700px;
}

/* CONTENT CONTAINER */
.core-values-container {
  max-width: 1200px;
  margin: auto;
  padding: 70px 20px;
  text-align: center;
}

.core-values-container h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #0e4c82;
}

/* GRID */
.core-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.core-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
  transition: all .4s ease;
}

.core-card span {
  font-size: 38px;
  display: block;
  margin-bottom: 14px;
}

.core-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111827;
}

.core-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
  text-align: left;
}

.core-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
}

/* RESPONSIVE */
@media(max-width:992px) {
  .core-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px) {
  .core-values-hero {
    height: 260px;
  }

  .core-values-hero h1 {
    font-size: 30px;
  }

  .core-values-container {
    padding: 50px 15px;
  }

  .core-values-grid {
    grid-template-columns: 1fr;
  }
}

/* criculam css */
.curriculum {
  padding: 80px 20px;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  color: #0b3c78;
}

.section-title p {
  color: #555;
  margin-top: 8px;
}

/* IMAGE CARDS */
.curriculum-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.curriculum-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* CONTENT */
.curriculum-content h3 {
  color: #0e4c82;
  margin-top: 40px;
}

.curriculum-content ul {
  margin-top: 15px;
  padding-left: 20px;
}

.curriculum-content ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

hr {
  margin: 40px 0;
  border: 0;
  border-top: 1px solid #ddd;
}

/* STREAMS */
.streams {
  margin-top: 40px;
}

.stream-box {
  background: #f5f7fb;
  padding: 20px;
  border-radius: 15px;
  margin-top: 20px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.stream-box h4 {
  color: #0b3c78;
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .section-title h2 {
    font-size: 28px;
  }

  .curriculum-card img {
    height: 220px;
  }
}

/* our mission css start */

.vision-mission-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f0f8ff, #e6f2ff);
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: #003366;
}

.vm-container {
  display: flex;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
}

.vm-card {
  flex: 1;
  min-width: 280px;
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vm-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.vm-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #004080;
}

.vm-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.vision {
  border-left: 6px solid #1e90ff;
}

.mission {
  border-left: 6px solid #28a745;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }

  .vm-card h3 {
    font-size: 22px;
  }
}

/* our mission css end */



/* toopers css start */

.school-highlights {
  display: flex;
  gap: 30px;
  padding: 60px 20px;
  background: linear-gradient(135deg, #eef6ff, #ffffff);
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
  font-family: 'Segoe UI', sans-serif;
}

.card {
  flex: 1;
  min-width: 300px;
  background: #fff;
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #003366;
}

/* our toppers cs start */
.school-highlights {
  background: #f5f7fb;
  padding: 80px 40px;
}

.highlights-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.highlights-left {
  flex: 1;
}

.highlights-left h2 {
  font-size: 34px;
  font-weight: 800;
  color: #1a237e;
  line-height: 1.1;
}

.highlights-left p {
  margin-top: 20px;
  font-size: 16px;
  color: #555;
  max-width: 300px;
}

/* RIGHT */
.highlights-right {
  flex: 1;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;

}

/* CARD */
.toppers-card {
  background: #fff;
  width: 300px;
  border-radius: 16px;
  padding: 25px 20px 30px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.toppers-card h3 {
  color: #283593;
  margin-bottom: 20px;
}

/* SLIDER */
.topper-slider {
  position: relative;
}

.topper-slide {
  display: none;
}

.topper-slide.active {
  display: block;
}

.topper-slide img {
  width: 150px;
  height: 180px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 12px;
}

.topper-slide h4 {
  font-size: 17px;
}

.topper-slide p {
  font-size: 14px;
  color: #555;
}

.topper-slide span {
  display: inline-block;
  margin-top: 6px;
  font-weight: 700;
  color: #1a237e;
}

/* BUTTONS */
.topper-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #1a237e;
  color: #fff;
  cursor: pointer;
}

.topper-prev {
  left: 8px;
}

.topper-next {
  right: 8px;
}

/* VIEW ALL */
.view-all {
  display: inline-block;
  margin-top: 20px;
  padding: 7px 18px;
  background: #1a237e;
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 900px) {
  .highlights-container {
    flex-direction: column;
    text-align: center;
  }

  .highlights-right {
    justify-content: center;
  }

  .highlights-left p {
    margin: auto;
  }
}

/* our topper css end */

/* NOTICE BOARD */
.notice-wrapper {
  height: 280px;
  overflow: hidden;
}

.notice-list {
  list-style: none;
  padding: 0;
  margin: 0;
  animation: scrollNotice 55s linear infinite;
}

.notice-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  border-bottom: 1px dashed #c58a8a;
  font-size: 18px;
  font-weight: 700;
}

/* Animations */
@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollNotice {
  from { transform: translateY(0); }
  to { transform: translateY(-100%); }
}

/* Responsive */
@media (max-width: 768px) {
  .school-highlights {
    flex-direction: column;
  }
}

/* toopers css end */

/* facilities css */
.facilities {
  padding: 80px 20px;
  background: #f5f7fb;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  color: #0b3c78;
  margin-bottom: 10px;
}

.section-title p {
  color: #555;
  font-size: 16px;
}

/* GRID */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* CARD */
.facility-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transition: 0.4s ease;
}

.facility-card:hover {
  transform: translateY(-10px);
}

.facility-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.facility-card h3 {
  color: #0b3c78;
  margin: 15px;
}

.facility-card p {
  font-size: 15px;
  padding: 0 15px 20px;
  line-height: 1.6;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .section-title h2 {
    font-size: 28px;
  }
}

/* faculty css */

/* BANNER */
.faculty-banner {
  background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), center/cover no-repeat;
  text-align: center;
  color: #fff;
  padding: 80px 20px;
}

.faculty-banner h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.faculty-banner p {
  font-size: 18px;
  letter-spacing: 1px;
}

/* FACULTY GRID */
.faculty-section {
  padding: 60px 20px;
}

.faculty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

/* FACULTY CARD */
.faculty-card {
  background: #fff;
  border-radius: 16px;
  text-align: center;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: .4s;
  border-top: 4px solid #f39c12;
}

.faculty-card:hover {
  transform: translateY(-10px);
}

.faculty-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #f39c12;
  margin-bottom: 15px;
}

.faculty-card h3 {
  color: #0b3c78;
  margin-bottom: 5px;
}

.faculty-card span {
  display: inline-block;
  color: #f39c12;
  font-weight: 600;
  margin-bottom: 10px;
}

.faculty-card p {
  font-size: 14px;
  margin: 4px 0;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .faculty-banner h1 {
    font-size: 28px;
  }
}


/* archive css */

:root {
  --primary: #0f4c81;
  --accent: #f4b400;
  --bg: #f5f7fb;
}


/* ===== Heading ===== */
.awards-heading {
  text-align: center;
  padding: 60px 20px 30px;
}

.awards-heading h1 {
  font-size: 2.5rem;
  color: var(--primary);
}

/* ===== Year Card ===== */
.year-card {
  max-width: 1200px;
  margin: 20px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
  overflow: hidden;
}

/* header */
.year-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background: linear-gradient(135deg, var(--primary), #123a5e);
  color: #fff;
}

.year-header h2 {
  margin: 0;
  font-size: 1.5rem;
}

.toggle-icon {
  font-size: 28px;
  font-weight: bold;
}

/* pulse animation */
.pulse {
  animation: pulse 0.8s ease;
}

@keyframes pulse {
  0% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.03)
  }

  100% {
    transform: scale(1)
  }
}

/* ===== Students Grid ===== */
.students {
  display: none;
  padding: 25px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.student-card {
  background: #fff;
  border-radius: 14px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .07);
  transition: .3s;
}

.student-card:hover {
  transform: translateY(-5px);
}

.student-card img {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  border: 4px solid var(--accent);
}

.student-card h4 {
  margin: 10px 0 5px;
  color: var(--primary);
}

.student-card p {
  margin: 2px 0;
  font-size: .9rem;
  color: #555;
}

/* ===== Responsive ===== */
@media(max-width:600px) {
  .awards-heading h1 {
    font-size: 1.9rem;
  }

  .year-header h2 {
    font-size: 1.2rem;
  }
}


/* alumini css */


.alumni-section {
  font-family: "Rubik", sans-serif;
  background: #f8fafc;
}

/* HERO */
.alumni-hero {
  position: relative;
  height: 200px;
}

.alumni-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.alumni-overlay h1 {
  font-size: 42px;
  font-weight: 700;
}

.alumni-overlay p {
  font-size: 18px;
}

/* CONTENT */
.alumni-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

.alumni-intro {
  text-align: left;
  font-size: 16px;
  margin-bottom: 40px;
}

.alumni-note {
  max-width: 900px;
  margin: 50px auto;
  padding: 25px 30px;
  text-align: center;
  background: #f8f9fb;
  border-left: 5px solid #f4b860;
  border-radius: 6px;
}

.alumni-main {
  font-size: 22px;
  font-weight: 700;
  color: #0e4c82;
  margin-bottom: 10px;
}

.alumni-text {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: left;
}

.alumni-legacy {
  font-size: 18px;
  font-style: italic;
  font-weight: 900;
  color:#f4b860 ;
  letter-spacing: 0.5px;
}

/* TITLES */
.alumni-title {
  font-size: 26px;
  margin: 40px 0 20px;
  color: #1f2937;
}

/* TABLE */
.table-wrapper {
  overflow-x: auto;
}

.alumni-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.alumni-table th {
  background: #f4b860;
  color: #fff;
  padding: 14px;
  text-align: left;
}

.alumni-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #eee;
}

.alumni-table tr:hover {
  background: #f9fafb;
}

/* RESPONSIVE */
@media(max-width:600px) {
  .alumni-hero h1 {
    font-size: 30px;
  }

  .alumni-title {
    font-size: 22px;
  }
}


/* principal css */

.principal-section {
  max-width: 1200px;
  margin: auto;
  padding: 60px 0px;
}

.principal-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #0b3c78;
}

.principal-card {
  display: flex;
  gap: 30px;
  background: #fff;
  padding: 25px;
  margin-bottom: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  align-items: center;
}

.principal-card.reverse {
  flex-direction: row-reverse;
}

.principal-image {
  text-align: center;
  min-width: 260px;
}

.principal-image img {
  width: 200px;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  border: 4px solid #f39c12;
  /* golden */
}

.principal-image h3 {
  margin: 12px 0 5px;
  color: #0b3c78;
}

.designation {
  font-weight: bold;
  color: #f39c12;
}

.principal-image span {
  font-size: 14px;
  display: block;
  color: #555;
}

.principal-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-top: 0;
}

/* RESPONSIVE */
@media(max-width:768px) {

  .principal-card,
  .principal-card.reverse {
    flex-direction: column;
    text-align: left;
  }

  .principal-text {
    margin-top: 15px;
  }
}


/* public css */

.cbse-disclosure {
  padding: 70px 20px;
  background: #f9fafb;
  text-align: center;
}

/* 👇 CENTER WRAPPER */
.disclosure-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.disclosure-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
  transition: .4s ease;
}

.disclosure-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.disclosure-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.disclosure-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

/* Buttons */
.disclosure-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.btn {
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}

.view-btn {
  background: #2563eb;
  color: #fff;
}

.download-btn {
  background: #f59e0b;
  color: #fff;
}

/* 📱 Mobile */
@media(max-width:600px) {
  .disclosure-card {
    max-width: 100%;
  }
}



.a4-container {
    width: 90%;
    max-width: 794px;
    aspect-ratio: 1 / 1.414;
    background-color: white;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  
  }
 
/* Desktop only */
@media (min-width: 769px) {
    .a4-container {
        
        max-height: 700px;
    }
}

.a4-container h1 {
    text-align: center;
    font-size: 2vw;
    margin-bottom: 20px;
    color: #222;
}

.a4-container img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Mobile */
@media (max-width: 600px) {
    .a4-container {
        aspect-ratio: auto;   /* 👈 MOST IMPORTANT */
    }

    .a4-container h1 {
        font-size: 5vw;
    }
}


/* ===== LEGACY SECTION ===== */
.legacy {
    padding: 80px 0;
    background: #f7f9fc;
}

.legacy-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
    padding: 0 20px;
}

/* IMAGE */
.legacy-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* CONTENT */
.legacy-content h2 {
    font-size: 32px;
    color: #0e4c82;
    margin-bottom: 20px;
}

.legacy-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
    max-width: 520px;
}

/* BUTTON */
.legacy-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 26px;
    background: #0b5ed7;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: 0.3s ease;
}

.legacy-btn:hover {
    background: #084298;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .legacy-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .legacy-content p {
        margin: auto;
        text-align: left;
    }
}


