  :root {
      --primary: #1a4b8c;
      --secondary: #f9a51a;
      --accent: #e63946;
      --white: #ffffff;
      --light: #f8f9fa;
      --dark: #2d3436;
      --success: #2ecc71;
      --transition: all 0.3s ease;
      --border-radius: 12px;
      --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  p{
    font-family:'Poppins', sans-serif !important;
    font-size: 16px !important;
  }

  body {
      font-family: 'Poppins', sans-serif;
      color: var(--dark);
      line-height: 1.6;
      background-color: #fff;
      overflow-x: hidden;
  }

  h1,
  h2,
  h3,
  h4,
  h5 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      line-height: 1.3;
  }

  .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
  }

  .btn {
      display: inline-block;
      padding: 14px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: var(--transition);
      font-size: 14px;
      border: none;
      cursor: pointer;
  }

  .btn-primary {
      background: var(--primary);
      color: white;
      box-shadow: 0 4px 15px rgba(26, 75, 140, 0.3);
  }

  .btn-primary:hover {
      background: #0f3a70;
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(26, 75, 140, 0.4);
  }

  .btn-secondary {
      background: var(--secondary);
      color: white;
      box-shadow: 0 4px 15px rgba(249, 165, 26, 0.3);
  }

  .btn-secondary:hover {
      background: #e59400;
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(249, 165, 26, 0.4);
  }

  /* Header Styles */
  header {
      background-color: white;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      padding: 5px 0;
  }

  .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
  }

  .logo {
      display: flex;
      align-items: center;
  }

  .logo-img {
      width: 80px;
      height: 80px;
      background: var(--primary);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 28px;
      font-weight: 700;
      margin-right: 10px;
  }

  .logo-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .logo-text {
      font-size: 32px;
      font-weight: 700;
      color: var(--primary);
  }

  .logo-text span {
      color: var(--secondary);
  }

  nav ul {
      display: flex;
      list-style: none;
  }

  nav ul li {
      margin-left: 30px;
      position: relative;
  }

  nav ul li a {
      text-decoration: none;
      color: var(--dark);
      font-weight: 500;
      transition: var(--transition);
      font-size: 17px;
  }

  nav ul li a:hover {
      color: var(--primary);
  }

  nav ul li a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 3px;
      background: var(--primary);
      transition: var(--transition);
  }

  nav ul li a:hover::after {
      width: 100%;
  }

  /* Mobile Menu Toggle */
  .menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 40px;
      height: 40px;
      cursor: pointer;
      z-index: 1001;
  }

  .menu-toggle span {
      width: 30px;
      height: 3px;
      background: var(--primary);
      margin: 3px 0;
      transition: var(--transition);
      transform-origin: center;
  }

  /* Mobile Navigation */
  .mobile-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 400px;
      height: 100vh;
      background: var(--white);
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
      z-index: 999;
      transition: right 0.4s ease;
      padding: 80px 30px 30px;
      overflow-y: auto;
  }

  .mobile-nav.active {
      right: 0;
  }

  .mobile-nav ul {
      list-style: none;
  }

  .mobile-nav ul li {
      margin-bottom: 20px;
  }

  .mobile-nav ul li a {
      text-decoration: none;
      color: var(--dark);
      font-size: 18px;
      font-weight: 500;
      display: block;
      padding: 10px 0;
      transition: var(--transition);
  }

  .mobile-nav ul li a:hover {
      color: var(--primary);
      transform: translateX(10px);
  }

  .close-menu {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 40px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      font-size: 24px;
      color: var(--primary);
  }

  .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
      z-index: 998;
  }

  .overlay.active {
      opacity: 1;
      visibility: visible;
  }

  /* Hero Section - Modern Swiper Banner */
  .hero {
      position: relative;
      height: 95vh;
      overflow: hidden;
  }

  .swiper {
      width: 100%;
      height: 100%;
  }

  .swiper-slide {
      display: flex;
      align-items: center;
      background-position: center;
      background-size: cover;
      position: relative;
  }

  .swiper-slide::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.24);
  }

  .hero-content {
      position: relative;
      z-index: 2;
      color: white;
      padding: 0 20px;
      max-width: 1200px;
      margin: 0 auto;
  }

  .hero-content h1 {
      font-size: 48px;
      margin-bottom: 20px;
      line-height: 1.2;
      animation: fadeInUp 1s ease;
  }

  .hero-content h1 span {
      color: var(--secondary);
     
  }

  .hero-content p {
      font-size: 18px;
      margin-bottom: 30px;
      line-height: 1.8;
      max-width: 600px;
      animation: fadeInUp 1.2s ease;
     
  }
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 60px 0;
}

.overlay-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.795) 40%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

  .hero-buttons {
      display: flex;
      gap: 20px;
      animation: fadeInUp 1.4s ease;
  }

  .swiper-pagination-bullet {
      width: 12px;
      height: 12px;
      background: white;
      opacity: 0.7;
  }

  .swiper-pagination-bullet-active {
      background: var(--secondary);
      opacity: 1;
  }

  .swiper-button-next,
  .swiper-button-prev {
      color: var(--secondary);
  }

  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  /* About Section */
  .about-section {
      background: var(--white);
      padding: 90px 0;
  }

  .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
  }

  .about-images {
      position: relative;
  }

  .about-main-img {
      width: 100%;
      border-radius: var(--border-radius);
      box-shadow: var(--shadow-lg);
  }

  .about-secondary-img {
      position: absolute;
      right: -40px;
      bottom: -75px;
      width: 60%;
      border-radius: var(--border-radius);
      box-shadow: var(--shadow-lg);
      border: 5px solid var(--white);
  }

  .about-content .subtitle {
      margin-bottom: 15px;
  }

  .about-content h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: var(--primary);
  }

  .about-content p {
      margin-bottom: 25px;
      color: #666;
  }

  .about-stats {
      display: flex;
      gap: 30px;
      margin: 30px 0;
  }

  .stat-item {
      text-align: center;
  }

  .stat-number {
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--primary);
      line-height: 1;
  }

  .stat-text {
      font-size: 0.9rem;
      color: #666;
  }

  /* Services Section */
  .services {
      background: var(--light);
      padding: 40px 0;
  }

  .section-header {
      text-align: center;
      margin-bottom: 60px;
  }

  .section-header h2 {
      font-size: 36px;
      color: var(--primary);
      position: relative;
      display: inline-block;
      margin-bottom: 15px;
  }

  .section-header h2::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--secondary);
      border-radius: 2px;
  }

  .section-header p {
      font-size: 18px;
      color: #666;
      max-width: 700px;
      margin: 20px auto 0;
  }

  .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
  }

  .service-card {
      background: white;
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: var(--transition);
      text-align: center;
  }

  .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }

  .service-icon {
      width: 70px;
      height: 70px;
      background: rgba(26, 75, 140, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      color: var(--primary);
      font-size: 28px;
  }

  .service-card h3 {
      font-size: 22px;
      color: var(--primary);
      margin-bottom: 15px;
  }

  .service-card p {
      margin-bottom: 20px;
      color: #666;
      line-height: 1.6;
  }

  /* Programs Section */
  .programs {
      padding: 40px 0;
      background-color: #ecffff;
  }

  .programs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
  }

  .program-card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: var(--transition);
  }

  .program-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }

  .program-image {
      height: 200px;
      overflow: hidden;
  }

  .program-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
  }

  .program-card:hover .program-image img {
      transform: scale(1.1);
  }

  .program-content {
      padding: 25px;
  }

  .program-content h3 {
      font-size: 22px;
      color: var(--primary);
      margin-bottom: 15px;
  }

  .program-content p {
      margin-bottom: 20px;
      color: #666;
  }

  /* Facilities Section */
  .facilities {
      background: #fff;
      padding: 40px 0;
  }

  .facilities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
  }

  .facility-card {
      position: relative;
      height: 280px;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .facility-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
  }

  .facility-card:hover img {
      transform: scale(1.1);
  }

  .facility-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
      color: white;
      padding: 25px;
  }

  .facility-overlay h3 {
      font-size: 20px;
      margin-bottom: 10px;
  }

  .facility-overlay p {
      opacity: 0.9;
  }

  /* Testimonials Section */
  .testimonials {
      padding: 40px 0;
      background: white;
  }

  .testimonials-slider {
      padding: 40px 0;
  }

  .testimonial-card {
      background: white;
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      margin: 20px;
      position: relative;
  }

  .testimonial-card::before {
      content: '\201C';
      position: absolute;
      top: 20px;
      left: 20px;
      font-size: 60px;
      color: rgba(26, 75, 140, 0.1);
      font-family: Arial, sans-serif;
  }

  .testimonial-content {
      position: relative;
      z-index: 2;
  }

  .testimonial-text {
      font-style: italic;
      margin-bottom: 20px;
      color: #555;
      line-height: 1.8;
  }

  .testimonial-author {
      display: flex;
      align-items: center;
  }

  .author-image {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      overflow: hidden;
      margin-right: 15px;
  }

  .author-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .author-details h4 {
      color: var(--primary);
      margin-bottom: 5px;
  }

  .author-details p {
      color: #777;
      font-size: 14px;
  }

  .testimonials-slider .swiper-pagination {
      position: relative;
      margin-top: 40px;
  }

  .testimonials-slider .swiper-pagination-bullet {
      background: var(--primary);
      opacity: 0.5;
      width: 12px;
      height: 12px;
  }

  .testimonials-slider .swiper-pagination-bullet-active {
      background: var(--secondary);
      opacity: 1;
  }

  /* CTA Section */
  .cta {
      background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)), url(../images/school2.jpg);
      background-size: cover;
      background-attachment: fixed;
      color: white;
      text-align: center;
      padding: 170px 0;
  }

  .cta-content {
      max-width: 800px;
      margin: 0 auto;
  }

  .cta-content h2 {
      font-size: 42px;
      margin-bottom: 20px;
  }

  .cta-content p {
      font-size: 18px;
      margin-bottom: 40px;
      opacity: 0.9;
  }

  /* Footer Styles */
  .main-footer {
      background: #111827;
      color: var(--white);
      padding: 80px 0 30px;
  }

  .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 50px;
  }

  .footer-col {
    text-align: start;
    width: 100%;
  }

  .footer-col h3 {
      font-size: 1.4rem;
      margin-bottom: 25px;
      position: relative;
      display: inline-block;
      text-align: start;
  }

  .footer-col h3::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -10px;
      width: 40px;
      height: 3px;
      background: var(--secondary);
      text-align: start;
  }

  .footer-col p {
      color: #9ca3af;
      line-height: 1.8;
      margin-bottom: 20px;
  }

  .footer-links {
      list-style: none;
  }

  .footer-links li {
      margin-bottom: 12px;
  }

  .footer-links a {
      color: #9ca3af;
      text-decoration: none;
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .footer-links a:hover {
      color: var(--secondary);
      transform: translateX(5px);
  }

  .footer-contact-info {
      list-style: none;
  }

  .footer-contact-info li {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      margin-bottom: 15px;
      color: #9ca3af;
  }

  .footer-contact-info i {
      color: var(--secondary);
      margin-top: 5px;
  }

  .social-links {
      display: flex;
      gap: 15px;
      margin-top: 20px;
  }

  .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      color: var(--white);
      text-decoration: none;
      transition: var(--transition);
  }

  .social-links a:hover {
      background: var(--secondary);
      transform: translateY(-3px);
  }

  .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 20px;
      text-align: center;
      color: #9ca3af;
      font-size: 0.9rem;
  }

  /* Responsive Styles */
  @media (max-width: 1200px) {
      .logo-text {
          font-size: 28px;
      }

      nav ul li {
          margin-left: 20px;
      }
  }

  @media (max-width: 992px) {

      .hero-container,
      .about-container {
          grid-template-columns: 1fr;
      }

      .hero-content {
          order: 2;
          text-align: center;
      }

      .about-grid {
          grid-template-columns: 1fr;
          gap: 40px;
      }

      .about-images {
          order: -1;
      }

      .about-secondary-img {
          right: -20px;
          bottom: -20px;
      }

      .hero-buttons {
          justify-content: center;
      }

      .hero-content h1 {
          font-size: 36px;
      }

      .hero {
          height: 70vh;
      }

      /* Show mobile menu toggle */
      .menu-toggle {
          display: flex;
          z-index: 1;
      }

      /* Hide desktop navigation */
      nav {
          display: none;
      }
  }


      @media (max-width: 768px) {
          nav {
              display: none;
          }

          .hero {
              height: 90vh;
          }

          .hero-content h1 {
              font-size: 32px;
          }

          .section-header h2 {
              font-size: 30px;
          }

          .about-stats {
              grid-template-columns: 1fr;
          }

          .footer-grid {
              grid-template-columns: 1fr;
              text-align: center;
          }

          .footer-col h3::after {
              left: 50%;
              transform: translateX(-50%);
          }

          .social-links {
              justify-content: start;
          }

          .testimonial-author {
              flex-direction: column;
              text-align: center;
          }

          .author-image {
              margin-right: 0;
              margin-bottom: 15px;
          }
      }
  

  @media (max-width: 576px) {
      .logo-text {
          font-size: 20px;
      }

      .hero-content h1 {
          font-size: 28px;
      }

      .hero {
          height: 90vh;
      }

      .about-content h2 {
          font-size: 2rem;
      }

      .section-header h2 {
          font-size: 26px;
      }

      .service-card,
      .program-card {
          padding: 20px;
      }

      .facility-card {
          height: 220px;
      }

      .testimonial-card {
          padding: 20px;
          margin: 10px;
      }

      .mobile-nav {
          width: 85%;
      }
  }



  .banner-section{
    background: linear-gradient(to right, #000000af, #2d34368a), url(../images/school2.jpg);
  background-size: cover;
  background-position: center;
  /* background-blend-mode: overlay; */
    padding: 40px 0;
    text-align: center;
    height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .banner-section h2{
    color: white;
    font-size: 46px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
  }

    .breadcrumb {
        margin-top: 10px;
        font-size: 16px;
        color: #f1f1f1;
        font-weight: 500;
        letter-spacing: 1px;
    }
    .breadcrumb a:hover {
        color: var(--secondary);
    }


    