
   @import url('https://fonts.cdnfonts.com/css/bahamas');
    :root {
      --primary: #3B5AF5;      /* Vibrant Blue */
      --secondary: #FF5757;    /* Coral Red */
      --accent1: #8C52FF;      /* Purple */
      --accent2: #00BFA6;      /* Teal */
      --accent3: #FFC857;      /* Amber */
      --dark: #2E384D;         /* Dark Blue-Gray */
      --light: #F5F7FA;        /* Light Gray */
      --white: #FFFFFF;bl.
      --text: #4A4A4A;
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      color: var(--text);
      line-height: 1.7;
      overflow-x: hidden;
    }
    
    h1, h2, h3, h4, h5 {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      line-height: 1.3;
    }
    
    /* Utility Classes */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .btn {
      display: inline-block;
      padding: 12px 24px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 500;
      letter-spacing: 1px;
      text-transform: uppercase;
      font-size: 14px;
      transition: var(--transition);
      cursor: pointer;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .btn-primary {
      background: var(--primary);
      color: var(--white);
      border: 2px solid var(--primary);
    }
    
    .btn-primary:hover {
      background: transparent;
      color: var(--primary);
      transform: translateY(-3px);
      box-shadow: 0 7px 14px rgba(59, 90, 245, 0.2);
    }
    
    .btn-secondary {
      background: var(--secondary);
      color: var(--white);
      border: 2px solid var(--secondary);
    }
    
    .btn-secondary:hover {
      background: transparent;
      color: var(--secondary);
      transform: translateY(-3px);
      box-shadow: 0 7px 14px rgba(255, 87, 87, 0.2);
    }
    
    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 2px solid var(--white);
    }
    
    .btn-outline:hover {
      background: var(--white);
      color: var(--primary);
      transform: translateY(-3px);
      box-shadow: 0 7px 14px rgba(255, 255, 255, 0.2);
    }
    
    .section {
      padding: 100px 0;
    }
    
    .section-title {
      text-align: center;
      margin-bottom: 60px;
      position: relative;
    }
    
    .section-title h2 {
      font-size: 42px;
      color: var(--dark);
      margin-bottom: 20px;
      position: relative;
      display: inline-block;
    }
    
    .section-title h2:after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -10px;
      width: 80px;
      height: 3px;
      background: var(--secondary);
      transform: translateX(-50%);
    }
    
    .section-title p {
      max-width: 700px;
      margin: 0 auto;
      color: #777;
    }
    
    .text-center {
      text-align: center;
    }
    
    .grid {
      display: grid;
    }
    
    .flex {
      display: flex;
    }
    
    .relative {
      position: relative;
    }
    
    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .animate {
      animation: fadeIn 0.8s ease forwards;
    }
    
    /* Top Bar Styles */
    .top-bar {
      background: var(--dark);
      color: var(--white);
      padding: 8px 0;
      font-size: 14px;
    }
    
    .top-bar-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .contact-info {
      display: flex;
      gap: 20px;
    }
    
    .contact-info a {
      color: var(--light);
      text-decoration: none;
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    
    .contact-info a:hover {
      color: var(--secondary);
    }
    
    .contact-info i {
      color: var(--secondary);
      font-size: 14px;
    }
    
    .fee-button {
      background: var(--secondary);
      color: var(--white);
      text-decoration: none;
      padding: 6px 16px;
      border-radius: 50px;
      font-weight: 500;
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 6px rgba(255, 87, 87, 0.2);
    }
    
    .fee-button:hover {
      background: var(--white);
      color: var(--secondary);
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(255, 87, 87, 0.3);
    }
    
    /* Main Header Styles */
    .main-header {
      background: var(--white);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      position: relative;
      z-index: 100;
    }
    
    .header-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
    }
    
    /* Logo Styles */
    .logo-container {
          display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 10;
    }
    
    .logo-image {
      width: 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .logo-image img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }
    
    .logo-text {
      display: flex;
      flex-direction: column;
    }
    
    .logo-text h1 {
      color: var(--primary);
      font-size: 24px;
      font-weight: 700;
      line-height: 1.2;
      margin: 0;
      font-family: 'Playfair Display', serif;
    }
    
    .logo-text p {
      color: var(--accent1);
      font-size: 16px;
      font-weight: 500;
      margin: 0;
    }
    
    /* Menu Toggle for Mobile */
    .menu-toggle {
      display: none;
      cursor: pointer;
    }
    
    .hamburger {
      width: 30px;
      height: 20px;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    
    .hamburger span {
      display: block;
      height: 3px;
      width: 100%;
      background: var(--primary);
      border-radius: 3px;
      transition: var(--transition);
    }
    
    .menu-toggle.active .hamburger span:nth-child(1) {
      transform: translateY(8.5px) rotate(45deg);
    }
    
    .menu-toggle.active .hamburger span:nth-child(2) {
      opacity: 0;
    }
    
    .menu-toggle.active .hamburger span:nth-child(3) {
      transform: translateY(-8.5px) rotate(-45deg);
    }
    
    /* Navigation Styles */
    .main-nav {
      display: flex;
      align-items: center;
    }
    
    .menu {
      display: flex;
      list-style: none;
      gap: 5px;
    }
    
    .menu > li {
      position: relative;
    }
    
    .menu > li > a {
      display: flex;
      align-items: center;
      padding: 10px 18px;
      color: var(--dark);
      text-decoration: none;
      font-weight: 500;
      transition: var(--transition);
      border-radius: 30px;
      gap: 5px;
    }
    
    .menu > li > a i {
      font-size: 12px;
      transition: var(--transition);
    }
    
    .menu > li:hover > a {
      color: var(--primary);
      background: rgba(59, 90, 245, 0.08);
    }
    
    .menu > li:hover > a i {
      transform: rotate(180deg);
    }
    
    .menu > li.active > a {
      color: var(--white);
      background: var(--primary);
    }
    
    .menu > li.active > a i {
      color: var(--white);
    }
    
    /* Dropdown Menu Styles */
    .dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      background: var(--white);
      min-width: 220px;
      border-radius: 10px;
      box-shadow: var(--shadow);
      padding: 10px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      z-index: 100;
    }
    
    .has-dropdown:hover .dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    
    .dropdown li {
      list-style: none;
    }
    
    .dropdown li a {
      display: block;
      padding: 8px 20px;
      color: var(--text);
      text-decoration: none;
      font-size: 14px;
      transition: var(--transition);
    }
    
    .dropdown li a:hover {
      color: var(--primary);
      background: rgba(59, 90, 245, 0.08);
      padding-left: 25px;
    }
    
    /* Hero Slider */
    .hero {
      position: relative;
      height: 100vh;
      color: var(--white);
      overflow: hidden;
    }
    
    .slider-container {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 0;
    }
    
    .slider {
      width: 100%;
      height: 100%;
      position: relative;
      overflow: hidden;
    }
    
    .slide {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      transition: opacity 1s ease;
      background-size: cover;
      background-position: center;
    }
    
    .slide.active {
      opacity: 1;
    }
    
    .slide::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgb(77 74 74 / 80%) 0%, rgb(11 11 11 / 80%) 100%);
      opacity: 0.7;
      z-index: 1;
    }
    
    .slider-controls {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 3;
    }
    
    .slider-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      transition: var(--transition);
    }
    
    .slider-dot.active {
      background: var(--white);
      transform: scale(1.2);
    }
    
    .slider-arrows {
      position: absolute;
      top: 50%;
      width: 100%;
      transform: translateY(-50%);
      display: flex;
      justify-content: space-between;
      padding: 0 20px;
      z-index: 3;
    }
    
    .slider-arrow {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--white);
      font-size: 20px;
      transition: var(--transition);
      backdrop-filter: blur(5px);
    }
    
    .slider-arrow:hover {
      background: rgba(255, 255, 255, 0.4);
    }
    
    .hero-content {
      position: relative;
      height: 100%;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-top: 80px;
    }
    
    .hero-text {
      max-width: 650px;
      animation: fadeIn 1s ease forwards;
    }
    
    .hero h1 {
      font-size: 56px;
      margin-bottom: 20px;
      line-height: 1.2;
    }
    
    .hero p {
      font-size: 18px;
      margin-bottom: 40px;
      opacity: 0.9;
      max-width: 600px;
    }
    
    .hero-btns {
      display: flex;
      gap: 20px;
    }
    
    .hero-stats {
      position: absolute;
      bottom: 50px;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: center;
      gap: 50px;
      animation: fadeIn 1.5s ease forwards;
    }
    
    .hero-stat {
      text-align: center;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      padding: 20px 30px;
      border-radius: 10px;
      min-width: 200px;
    }
    
    .hero-stat h3 {
      font-size: 36px;
      margin-bottom: 5px;
    }
    
    .hero-stat p {
      font-size: 14px;
      opacity: 0.8;
      margin: 0;
    }
    
    /* About Section */
    .about-section {
      position: relative;
      background: var(--light);
    }
    
    .about-section .container {
      position: relative;
      z-index: 1;
    }
    
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }
    
    .about-image {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    
    .about-image img {
      width: 100%;
      border-radius: 20px;
      transition: transform 0.5s ease;
    }
    
    .about-image:hover img {
      transform: scale(1.05);
    }
    
    .about-image:before {
      content: '';
      position: absolute;
      top: -20px;
      left: -20px;
      width: 100px;
      height: 100px;
      border-top: 5px solid var(--accent1);
      border-left: 5px solid var(--accent1);
      z-index: -1;
    }
    
    .about-image:after {
      content: '';
      position: absolute;
      bottom: -20px;
      right: -20px;
      width: 100px;
      height: 100px;
      border-bottom: 5px solid var(--secondary);
      border-right: 5px solid var(--secondary);
      z-index: -1;
    }
    
    .about-content h2 {
      color: var(--primary);
      margin-bottom: 30px;
      font-size: 36px;
    }
    
    .about-content p {
      margin-bottom: 20px;
    }
    
    .about-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 30px;
    }
    
    .about-feature {
      display: flex;
      align-items: flex-start;
    }
    
    .about-feature i {
      margin-right: 15px;
      font-size: 24px;
      color: var(--accent2);
      background: rgba(0, 191, 166, 0.1);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .about-feature-text h4 {
      font-size: 18px;
      margin-bottom: 5px;
    }
    
    .about-feature-text p {
      font-size: 14px;
      margin: 0;
      color: #777;
    }
    
    /* Features Section */
    .features-section {
      background: var(--white);
    }
    
    .features-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
    }
    
    .feature-card {
      background: var(--white);
      border-radius: 15px;
      box-shadow: var(--shadow);
      overflow: hidden;
      transition: var(--transition);
    }
    
    .feature-card:hover {
      transform: translateY(-15px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }
    
    .feature-image {
      height: 200px;
      overflow: hidden;
    }
    
    .feature-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .feature-card:hover .feature-image img {
      transform: scale(1.1);
    }
    
    .feature-content {
      padding: 25px;
    }
    
    .feature-content h3 {
      font-size: 22px;
      margin-bottom: 15px;
      color: var(--primary);
    }
    
    .feature-content p {
      font-size: 14px;
      color: #777;
      margin-bottom: 20px;
    }
    
    .feature-card:nth-child(1) {
      border-top: 3px solid var(--primary);
    }
    
    .feature-card:nth-child(2) {
      border-top: 3px solid var(--secondary);
    }
    
    .feature-card:nth-child(3) {
      border-top: 3px solid var(--accent1);
    }
    
    .feature-card:nth-child(4) {
      border-top: 3px solid var(--accent2);
    }
    
    /* Info Boxes Section */
    .info-section {
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent1) 100%);
      color: var(--white);
    }
    
    .info-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    
    .info-card {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 15px;
      padding: 30px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: var(--transition);
    }
    
    .info-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
      background: rgba(255, 255, 255, 0.15);
    }
    
    .info-card h3 {
      font-size: 24px;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 15px;
    }
    
    .info-card h3:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background: var(--accent3);
    }
    
    .info-list {
      list-style: none;
    }
    
    .info-list li {
      margin-bottom: 15px;
      position: relative;
      padding-left: 25px;
    }
    
    .info-list li:before {
      content: '→';
      position: absolute;
      left: 0;
      color: var(--accent3);
    }
    
    .info-list li a {
      color: var(--white);
      text-decoration: none;
      transition: var(--transition);
    }
    
    .info-list li a:hover {
      opacity: 0.8;
      padding-left: 5px;
    }
    
    /* Gallery Section */
    .gallery-section {
      background: var(--light);
    }
    
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    
    .gallery-item {
      position: relative;
      border-radius: 15px;
      overflow: hidden;
      height: 250px;
      box-shadow: var(--shadow);
    }
    
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .gallery-item:hover img {
      transform: scale(1.1);
    }
    
    .gallery-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
      display: flex;
      align-items: flex-end;
      padding: 20px;
      opacity: 0;
      transition: var(--transition);
    }
    
    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }
    
    .gallery-overlay h3 {
      color: var(--white);
      font-size: 18px;
      margin: 0;
    }
    
    /* Testimonial Section */
    .testimonial-section {
      background: url('images/background/bg2.jpg') center/cover;
      position: relative;
      color: var(--white);
    }
    
    .testimonial-section:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(46, 56, 77, 0.9) 0%, rgba(59, 90, 245, 0.9) 100%);
    }
    
    .testimonial-section .container {
      position: relative;
    }
    
    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    
    .testimonial-card {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 15px;
      padding: 30px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: var(--transition);
      position: relative;
    }
    
    .testimonial-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }
    
    .testimonial-card:before {
      content: '"';
      position: absolute;
      top: 20px;
      left: 20px;
      font-size: 80px;
      color: rgba(255, 255, 255, 0.1);
      font-family: 'Playfair Display', serif;
      line-height: 1;
    }
    
    .testimonial-text {
      font-style: italic;
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
    }
    
    .testimonial-author {
      font-weight: 600;
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
    }
    
    .testimonial-author:before {
      content: '';
      width: 30px;
      height: 2px;
      background: var(--accent3);
      margin-right: 10px;
    }
    
    /* Call to Action */
    .cta-section {
      background: var(--white);
      padding: 80px 0;
    }
    
    .cta-container {
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent1) 100%);
      border-radius: 20px;
      padding: 60px;
      color: var(--white);
      text-align: center;
      box-shadow: var(--shadow);
    }
    
    .cta-container h2 {
      font-size: 36px;
      margin-bottom: 20px;
    }
    
    .cta-container p {
      max-width: 600px;
      margin: 0 auto 30px;
      opacity: 0.9;
    }
    
    /* Enhanced Sections */
    /* Testimonials Styles */
    .testimonials-section {
      background: #f8f9fa;
      position: relative;
    }
    
    .testimonials-slider {
      display: flex;
      overflow-x: hidden;
      position: relative;
    }
    
    .testimonial-item {
      min-width: 100%;
      padding: 20px;
      transition: transform 0.4s ease;
    }
    
    .testimonial-content {
      background: white;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      position: relative;
    }
    
    .testimonial-content:before {
      content: '\201C';
      position: absolute;
      top: 20px;
      left: 20px;
      font-size: 60px;
      color: rgba(59, 90, 245, 0.1);
      font-family: serif;
    }
    
    .testimonial-content p {
      font-style: italic;
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
      font-size: 16px;
      line-height: 1.8;
    }
    
    .testimonial-author h4 {
      color: #3B5AF5;
      margin-bottom: 5px;
      font-weight: 600;
    }
    
    .testimonial-author p {
      font-size: 14px;
      font-style: normal;
      margin: 0;
      color: #666;
    }
    
    .testimonial-controls {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 30px;
      gap: 20px;
    }
    
    .prev-testimonial, 
    .next-testimonial {
      background: #3B5AF5;
      color: white;
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .prev-testimonial:hover, 
    .next-testimonial:hover {
      background: #FF5757;
      transform: translateY(-3px);
    }
    
    .testimonial-dots {
      display: flex;
      gap: 10px;
    }
    
   .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #ddd;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .dot.active {
      background: #3B5AF5;
      transform: scale(1.2);
    }

    /* News & Events Section */
    .news-events-section {
      background: white;
    }
    
    .news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-bottom: 40px;
    }
    
    .news-item {
      display: flex;
      background: #f8f9fa;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }
    
    .news-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .news-date {
      background: #3B5AF5;
      color: white;
      padding: 15px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-width: 80px;
    }
    
    .news-date .day {
      font-size: 24px;
      font-weight: 700;
      line-height: 1;
    }
    
    .news-date .month {
      font-size: 14px;
      text-transform: uppercase;
    }
    
    .news-content {
      padding: 20px;
      flex-grow: 1;
    }
    
    .news-content h3 {
      color: #3B5AF5;
      margin-bottom: 10px;
      font-size: 18px;
    }
    
    .news-content p {
      color: #666;
      margin-bottom: 15px;
      font-size: 14px;
    }
    
    .read-more {
      color: #FF5757;
      text-decoration: none;
      font-weight: 600;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 5px;
      transition: all 0.3s ease;
    }
    
    .read-more:hover {
      color: #3B5AF5;
    }
    
    .read-more i {
      transition: transform 0.3s ease;
    }
    
    .read-more:hover i {
      transform: translateX(5px);
    }
    
    .view-all-btn {
      display: inline-block;
      background: #3B5AF5;
      color: white;
      padding: 12px 24px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    
    .view-all-btn:hover {
      background: #FF5757;
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(255, 87, 87, 0.2);
    }

    /* Achievements Section */
    .achievements-section {
      background: linear-gradient(135deg, #3B5AF5 0%, #8C52FF 100%);
      color: white;
    }
    
    .achievements-section .section-header h2 {
      color: white;
    }
    .section-header h2 {
    font-size: 36px;
    color: #3B5AF5;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    }
    .fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
    .achievements-section .section-header h2:after {
      background: #FFC857;
    }
    
    .achievements-section .section-header p {
      color: rgba(255, 255, 255, 0.8);
    }
    
    .achievements-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }
    
    .achievement-item {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 10px;
      padding: 25px;
      display: flex;
      gap: 20px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
    }
    
    .achievement-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
      background: rgba(255, 255, 255, 0.15);
    }
    
    .achievement-icon {
      font-size: 30px;
      color: #FFC857;
      background: rgba(255, 255, 255, 0.1);
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    
    .achievement-content h3 {
      font-size: 18px;
      margin-bottom: 10px;
      color: white;
    }
    
    .achievement-content p {
      color: rgba(255, 255, 255, 0.8);
      margin: 0;
      font-size: 14px;
      line-height: 1.6;
    }

    /* Virtual Tour Section */
    .virtual-tour-section {
      background: #f8f9fa;
    }
    
    .tour-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }
    
    .tour-content h2 {
      color: #3B5AF5;
      font-size: 32px;
      margin-bottom: 20px;
    }
    
    .tour-content p {
      color: #666;
      margin-bottom: 20px;
      font-size: 16px;
      line-height: 1.7;
    }
    
    .tour-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #FF5757;
      color: white;
      padding: 12px 24px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    
    .tour-btn:hover {
      background: #3B5AF5;
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(59, 90, 245, 0.2);
    }
    
    .tour-image {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .tour-image img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s ease;
    }
    
    .tour-image:hover img {
      transform: scale(1.05);
    }
    
    .tour-overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: rgba(59, 90, 245, 0.8);
      color: white;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .tour-overlay:hover {
      background: rgba(255, 87, 87, 0.8);
      transform: translate(-50%, -50%) scale(1.1);
    }

    /* FAQ Section */
    .faq-section {
      background: white;
    }
    
    .faq-accordion {
      max-width: 900px;
      margin: 0 auto;
    }
    
    .faq-item {
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      background: #f8f9fa;
    }
    
    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      cursor: pointer;
      background: #f8f9fa;
      transition: all 0.3s ease;
    }
    
    .faq-question h3 {
      margin: 0;
      font-size: 18px;
      color: #333;
      font-weight: 600;
    }
    
    .faq-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: #3B5AF5;
      color: white;
      font-size: 12px;
      transition: all 0.3s ease;
    }
    
    .faq-question.active .faq-toggle {
      background: #FF5757;
      transform: rotate(45deg);
    }
    
    .faq-answer {
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    
    .faq-question.active + .faq-answer {
      padding: 0 20px 20px;
      max-height: 1000px;
    }
    
    .faq-answer p {
      margin: 0;
      color: #666;
      font-size: 15px;
      line-height: 1.7;
    }
    
    /* Animation Classes */
    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    .fade-in.appear {
      opacity: 1;
      transform: translateY(0);
    }
    
    /* Counter Animation */
    .counter-animation {
      font-weight: 700;
      color: #fff;
      font-size: 36px;
      margin-bottom: 5px;
    }
    
    /* For floating elements effect */
    .float-animation {
      animation: float 3s ease-in-out infinite;
    }
    
    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
      100% { transform: translateY(0px); }
    }
    
    /* Smooth scrolling */
    html {
      scroll-behavior: smooth;
    }
    
    /* Footer Styles */
    .footer {
      background: var(--dark);
      color: var(--light);
      padding: 80px 0 0;
    }
    
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 50px;
    }
    
    .footer-column h3 {
      color: var(--white);
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 15px;
      font-size: 22px;
    }
    
    .footer-column h3:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 3px;
      background: var(--secondary);
    }
    
    .footer-about p {
      margin-bottom: 25px;
      font-size: 14px;
      line-height: 1.8;
    }
    
    .social-links {
      display: flex;
      gap: 15px;
    }
    
    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      color: var(--white);
      font-size: 18px;
      transition: var(--transition);
    }
    
    .social-links a:hover {
      background: var(--primary);
      transform: translateY(-5px);
    }
    
    .footer-links {
      list-style: none;
    }
    
    .footer-links li {
      margin-bottom: 12px;
    }
    
    .footer-links a {
      color: var(--light);
      text-decoration: none;
      transition: var(--transition);
      font-size: 14px;
      display: block;
    }
    
    .footer-links a:hover {
      color: var(--secondary);
      padding-left: 5px;
    }
    
    .footer-contact {
      list-style: none;
    }
    
    .footer-contact li {
      margin-bottom: 20px;
      display: flex;
      align-items: flex-start;
    }
    
    .footer-contact i {
      margin-right: 15px;
      color: var(--secondary);
      font-size: 18px;
    }
    
    .footer-bottom {
      margin-top: 60px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding: 20px 0;
      text-align: center;
      font-size: 14px;
    }
    
    .footer-bottom a {
      color: var(--secondary);
      text-decoration: none;
    }
    
    /* Back to Top Button */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--secondary);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      z-index: 99;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
      box-shadow: 0 5px 15px rgba(255, 87, 87, 0.3);
      cursor: pointer;
    }
    
    .back-to-top.active {
      opacity: 1;
      visibility: visible;
    }
    
    .back-to-top:hover {
      background: var(--primary);
      transform: translateY(-5px);
    }
    
    /* Responsive Styles */
    @media (max-width: 1200px) {
      .features-grid,
      .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    
    @media (max-width: 992px) {
      .section {
        padding: 80px 0;
      }
      
      .hero h1 {
        font-size: 48px;
      }
      
      .about-grid,
      .features-grid,
      .info-grid,
      .testimonial-grid,
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
      }
      
      .menu-toggle {
        display: block;
      }
      
      .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 20px;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: all 0.4s ease-in-out;
        opacity: 0;
      }
      
      .main-nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 1;
      }
      
      .menu {
        flex-direction: column;
        width: 100%;
        gap: 10px;
      }
      
      .menu > li > a {
        padding: 12px 15px;
        justify-content: space-between;
      }
      
      .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(245, 247, 250, 0.5);
        margin-top: 5px;
        margin-bottom: 10px;
        display: none;
        border-radius: 5px;
      }
      
      .dropdown.active {
        display: block;
      }
      
      .dropdown li a {
        padding: 10px 15px;
        padding-left: 25px;
      }
      
      .tour-wrapper {
        grid-template-columns: 1fr;
      }
      
      .section-header h2 {
        font-size: 32px;
      }
    }
    
    @media (max-width: 768px) {
      .hero {
        height: auto;
        min-height: 100vh;
      }
      
      .hero h1 {
        font-size: 36px;
      }
      
      .hero-btns {
        flex-direction: column;
        gap: 15px;
      }
      
      .hero-stats {
        flex-direction: column;
        gap: 15px;
      }
      
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .info-grid,
      .features-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }
      
      .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      
      .about-features {
        grid-template-columns: 1fr;
      }
      
      .section-title h2 {
        font-size: 32px;
      }
      
      .about-content h2 {
        font-size: 30px;
      }
      
      section {
        padding: 60px 0;
      }
      
      .section-header h2 {
        font-size: 28px;
      }
      
      .news-item {
        flex-direction: column;
      }
      
      .news-date {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 10px;
      }
    }
    
    @media (max-width: 576px) {
      .gallery-grid {
        grid-template-columns: 1fr;
      }
      
      .cta-container {
        padding: 40px 20px;
      }
      
      .cta-container h2 {
        font-size: 28px;
      }
      
      .top-bar-inner {
        flex-direction: column;
        gap: 10px;
      }
      
      .top-contact {
        flex-direction: column;
        align-items: center;
        gap: 10px;
      }
      
      .top-contact-item {
        margin-right: 0;
      }
      
      .section-header h2 {
        font-size: 24px;
      }
      
      .achievement-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      
      .testimonial-controls {
        flex-wrap: wrap;
      }
    }
     .stats-section {
      background-color: #fff;
    }
    
    .stats-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }
    
    .stats-content h2 {
      position: relative;
      padding-bottom: 20px;
          padding-top: 40px;
    }
    
    .stats-content h2::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background-color: #f39c12;
    }
    
    .stats-numbers {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin: 30px 0;
    }
    
    .stat-item {
      background-color: #f9f9f9;
      padding: 20px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
    }
    
    .stat-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .stat-number {
      font-size: 2.5rem;
      font-weight: 700;
      color: #1a3b5d;
      margin-bottom: 5px;
    }
    
    .stat-label {
      font-size: 0.9rem;
      color: #666;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    .stats-features {
      margin-top: 20px;
    }
    
    .stats-feature {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }
    
    .stats-icon {
      width: 40px;
      height: 40px;
      background-color: #1a3b5d;
      color: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 5px;
      margin-right: 15px;
      flex-shrink: 0;
    }
    
    .stats-feature-text h4 {
      font-size: 1.1rem;
      color: #1a3b5d;
      margin-bottom: 3px;
    }
    
    .stats-feature-text p {
      font-size: 0.9rem;
      color: #666;
      margin: 0;
    }
    
    .stats-image {
      position: relative;
    }
    
    .stats-image img {
      width: 100%;
      height: 450px;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    
    .stats-overlay {
      position: absolute;
      bottom: 20px;
      right: -20px;
      background-color: #fff;
      padding: 15px;
      border-radius: 10px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      max-width: 220px;
    }
    
    .stats-overlay h3 {
      font-size: 1.2rem;
      color: #1a3b5d;
      margin-bottom: 10px;
    }
    
    .stats-overlay p {
      font-size: 0.9rem;
      color: #666;
      margin: 0;
    }
    
    /* Responsive adjustments */
    @media (max-width: 992px) {
      .timeline-content {
        flex-direction: column;
      }
      
      .timeline-image, .timeline-text {
        width: 100%;
      }
      
      .timeline-text {
        padding-left: 0;
        margin-top: 30px;
      }
      
      .story-grid {
        grid-template-columns: 1fr;
      }
      
      .story-image {
        grid-row: auto;
      }
      
      .stats-grid {
        grid-template-columns: 1fr;
      }
      
      .stats-image {
        order: -1;
        margin-bottom: 30px;
      }
    }
    
    @media (max-width: 768px) {
      .story-features {
        grid-template-columns: 1fr;
      }
      
      .stats-numbers {
        grid-template-columns: 1fr;
      }
    }
     .h21 {
      font-size: 2.2rem;
      color: #1a3b5d;
      margin-bottom: 25px;
      font-weight: 700;
    }
    
    .p1 {
      margin-bottom: 15px;
      color: #555;
    }
    
    .btn1 {
      display: inline-block;
      padding: 12px 30px;
      background-color: #1a3b5d;
      color: #fff;
      text-decoration: none;
      border-radius: 5px;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    
    .btn1:hover {
      background-color: #f39c12;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
  </style>
  <style>
        /* Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            font-size: 16px;
            line-height: 1.5;
            color: #333;
            background-color: #f9f9f9;
        }
        
        a {
            text-decoration: none;
        }
        
        ul {
            list-style: none;
        }
        
        .container {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        /* Header Styles */
        .header-wrapper {
            background-color: #fff;
            position: relative;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
        }
        
        /* Split Header Layout */
        .split-header {
            display: grid;
            grid-template-columns: 350px 1fr;
            min-height: 120px;
        }
        
        /* Left Side - Logo and School Name */
        .header-left {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            color: #fff;
            padding: 0px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .header-left::after {
            content: '';
            position: absolute;
            top: 0;
            right: -50px;
            width: 100px;
            height: 100%;
            background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
            transform: skewX(-20deg);
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
            position: relative;
            z-index: 10;
        }
        
        .school-logo {
            width: 350px;
            height: 120px;
           /* border-radius: 50%;
          background-color: #fff;*/
            padding: 5px;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
        }
        
        .school-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        .school-identity {
            flex: 1;
        }
        
        .school-name {
             font-family: 'Bahamas', sans-serif;
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 5px;
            line-height: 1.2;
            letter-spacing: 0.5px;
        }
         .school-name1 {
             font-family: 'Bahamas', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 5px;
            line-height: 1.2;
            letter-spacing: 0.5px;
        }
        
        
        .school-location {
              font-family: 'Bahamas', sans-serif;
            font-size: 1rem;
            font-weight: 500;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }
        
        .cbse-badge {
            display: inline-block;
            margin-top: 8px;
            font-size: 0.75rem;
            background-color: rgba(255, 255, 255, 0.15);
            padding: 4px 10px;
            border-radius: 20px;
            font-weight: 600;
        }
        
        /* Right Side - Navigation and Contact */
        .header-right {
            display: flex;
            flex-direction: column;
        }
        
        /* Top Contact Bar */
        .contact-bar {
            background-color: #f8fafc;
            border-bottom: 1px solid #e2e8f0;
            padding: 10px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .contact-list {
            display: flex;
            gap: 20px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: #475569;
        }
        
        .contact-item i {
            color: #3b82f6;
            font-size: 0.9rem;
        }
        
        .social-links {
            display: flex;
            gap: 12px;
        }
        
        .social-link {
            width: 28px;
            height: 28px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            background-color: #e2e8f0;
            color: #475569;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background-color: #3b82f6;
            color: #fff;
        }
        
        .action-buttons {
            display: flex;
            gap: 15px;
        }
        
        .action-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 15px;
            border-radius: 4px;
            font-size: 0.85rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .disclosure-btn {
            background-color: #dc2626;
            color: #fff;
        }
        
        .disclosure-btn:hover {
            background-color: #b91c1c;
        }
        
        .fees-btn {
            background-color: #4f46e5;
            color: #fff;
        }
        
        .fees-btn:hover {
            background-color: #4338ca;
        }
        
        /* Main Navigation */
        .main-navigation {
            flex: 1;
            display: flex;
            align-items: center;
            padding: 0 30px;
        }
        
        .nav-container {
            width: 100%;
        }
        
        .nav-menu {
            display: flex;
            gap: 10px;
        }
        
        .nav-item {
            position: relative;
        }
        
        .nav-link {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 15px 18px;
            color: #334155;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 10px;
            left: 18px;
            width: 0;
            height: 2px;
            background-color: #3b82f6;
            transition: width 0.3s ease;
        }
        
        .nav-item:hover .nav-link::after,
        .nav-item.active .nav-link::after {
            width: calc(100% - 36px);
        }
        
        .nav-item:hover .nav-link,
        .nav-item.active .nav-link {
            color: #3b82f6;
        }
        
        .nav-link i {
            font-size: 0.7rem;
            transition: transform 0.3s ease;
        }
        
        .nav-item:hover .nav-link i {
            transform: rotate(180deg);
        }
        
        /* Dropdown Menu */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 250px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 100;
            overflow: hidden;
            border: 1px solid #e2e8f0;
        }
        
        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-item {
            border-bottom: 1px solid #f1f5f9;
        }
        
        .dropdown-item:last-child {
            border-bottom: none;
        }
        
        .dropdown-link {
            display: block;
            padding: 12px 20px;
            color: #334155;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .dropdown-link:hover {
            background-color: #f1f5f9;
            color: #3b82f6;
            padding-left: 25px;
        }
        
        /* Mobile Toggle */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: #334155;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Mobile Header */
        .mobile-header {
            display: none;
            padding: 15px 20px;
            background-color: #fff;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .mobile-header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .mobile-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .mobile-logo img {
            width: 40px;
            height: 40px;
        }
        
        .mobile-school-name {
            font-size: 1rem;
            font-weight: 700;
            color: #1e3a8a;
        }
        
        /* Mobile Navigation */
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -300px;
            width: 300px;
            height: 100%;
            background-color: #fff;
            z-index: 1000;
            transition: right 0.3s ease;
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
            overflow-y: auto;
        }
        
        .mobile-nav.active {
            right: 0;
        }
        
        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            color: #fff;
        }
        
        .mobile-brand {
            font-size: 1.1rem;
            font-weight: 700;
        }
        
        .close-mobile {
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        .mobile-menu {
            padding: 15px 0;
        }
        
        .mobile-item {
            border-bottom: 1px solid #f1f5f9;
        }
        
        .mobile-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            color: #334155;
            font-weight: 600;
        }
        
        .mobile-link i {
            transition: transform 0.3s ease;
        }
        
        .mobile-link.active i {
            transform: rotate(180deg);
        }
        
        .mobile-dropdown {
            display: none;
            background-color: #f8fafc;
        }
        
        .mobile-dropdown.active {
            display: block;
        }
        
        .mobile-dropdown-link {
            display: block;
            padding: 12px 20px 12px 35px;
            color: #334155;
            font-size: 0.9rem;
            border-bottom: 1px solid #f1f5f9;
        }
        
        .mobile-dropdown-link:last-child {
            border-bottom: none;
        }
        
        .mobile-contact {
            padding: 20px;
            background-color: #f8fafc;
            border-top: 1px solid #e2e8f0;
        }
        
        .mobile-contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            font-size: 0.9rem;
            color: #475569;
        }
        
        .mobile-contact-item i {
            color: #3b82f6;
        }
        
        .mobile-actions {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 15px;
        }
        
        .mobile-btn {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            padding: 12px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .mobile-social {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }
        
        .mobile-social a {
            width: 36px;
            height: 36px;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #e2e8f0;
            color: #475569;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .mobile-social a:hover {
            background-color: #3b82f6;
            color: #fff;
        }
        
        .backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
            display: none;
        }
        
        .backdrop.active {
            display: block;
        }
        
        /* Media Queries */
        @media (max-width: 1200px) {
            .split-header {
                grid-template-columns: 300px 1fr;
            }
            
            .nav-link {
                padding: 15px 12px;
            }
        }
        
        @media (max-width: 992px) {
            .header-wrapper {
                display: none;
            }
            
            .mobile-header {
                display: block;
            }
            
            .mobile-toggle {
                display: block;
            }
        }