/* ===== Navbar ===== */
#navbar {
    background: linear-gradient(90deg, #290083, #3d44ae);
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 0 -40px; */
    height: 80px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
  }
  
  #navbar:hover {
    background: linear-gradient(90deg, #3d44ae, #290083);
  }
  
  #navbar-image {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  #navbar-image:hover {
    transform: scale(1.1) rotate(-5deg);
  }
  
  /* Navbar Links */
  .nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
  }
  
  .nav-links h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .nav-links h5::after {
    content: '';
    width: 0;
    height: 3px;
    background: #ffdd57;
    position: absolute;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
  }
  
  .nav-links h5:hover::after {
    width: 100%;
  }
  
  .nav-links h5:hover {
    color: #ffdd57;
  }
  
  /* Navbar Button */
  .nav-links button {
    border: 2px solid #fff;
    padding: 10px 25px;
    margin-right: 30px;
    border-radius: 30px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .nav-links button:hover {
    background: #ffdd57;
    color: #290083;
    transform: scale(1.05);
  }
  
  /* Hamburger for Mobile */
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  
  .nav-toggle span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  /* Sidebar */
  .sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 250px;
    height: 100%;
    background: #290083;
    padding: 100px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    transition: left 0.4s ease;
    z-index: 998;
  }
  
  .sidebar.active {
    left: 0;
  }
  
  .sidebar h5, .sidebar button {
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .sidebar h5:hover, .sidebar button:hover {
    color: #ffdd57;
  }
  
  /* ===== Responsive ===== */
  @media (max-width: 992px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
  }
  
  @media (max-width: 768px) {
    #navbar {
      padding: 0 20px;
    }
    #navbar-image { height: 50px; }
  }
  
  
  .hero-section {
      height: 100vh; /* Full screen height */
      background-image: url("./images/landing\ page\ image.jpg");
      background-size: cover;       /* Makes image fit screen */
      background-position: center;  /* Centers the image */
      background-attachment: fixed; /* Keeps it fixed while scrolling */
      display: flex;
      /* justify-content: center; */
      align-items: center;
      margin-top: 80px;
      position: relative;
    }
    
  
    .hero-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5); /* black with 50% transparency */
      z-index: 1;
    }
    
    /* Text stays clear and on top */
    
  
    /* Dark overlay on image for better text visibility */
    .hero-overlay {
      /* background: rgba(0, 0, 0, 0.4); */
      color: white;
    
      position: relative;
      z-index: 2;
      /* text-align: center; */
      /* text-align: center; */
      padding-left: 40px;
      border-radius: 12px;
  }
  
  .hero-title {
        /* font-size: large; */
      font-size: 500%;
      font-weight: 700;
      margin-bottom: 1rem;
    }
    
    .hero-text {
      font-size: 2rem;
      margin-bottom: 1.5rem;
    }
    
    .hero-btn {
      background-color: #007bff00;
      border: none;
      color: white;
  margin-top: 2rem;
      padding: 12px 28px;
      border: 1px solid white;
      border-radius: 50px;
      cursor: pointer;
      font-size: 1.5rem;
      transition: background 0.3s;
    }
    
    .hero-btn:hover {
      background-color: #062f5ad2;
    }
    
  
  
  
    /* ===== General Section ===== */
  .about-section {
    width: 100%;
    padding: 80px 8%;
    background: #f9fbfd;
    color: #333;
    font-family: "Inter", sans-serif;
    box-sizing: border-box;
  }
  
  /* ===== Header ===== */
  .about-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #003366;
    position: relative;
  }
  
  .about-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: #007bff;
    margin: 10px auto 0;
    border-radius: 2px;
  }
  
  /* ===== Mission Layout ===== */
  .mission-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: nowrap;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* ===== Text Area ===== */
  .mission-text {
    flex: 1;
    min-width: 320px;
  }
  
  .mission-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #004c99;
    margin-bottom: 20px;
  }
  
  .mission-para {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
  }
  
  .mission-para.highlight {
    background: #e8f2ff;
    border-left: 5px solid #007bff;
    padding: 18px 20px;
    border-radius: 6px;
  }
  
  /* ===== Image Area ===== */
  .mission-image {
    flex: 1;
    text-align: right;
  }
  
  .mission-image img {
    width: 100%;
    max-width: 520px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .mission-image img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  }
  
  /* ===== Responsiveness ===== */
  
  /* Large laptop screens */
  @media (max-width: 1200px) {
    .mission-container {
      gap: 40px;
    }
  
    .about-section {
      padding: 70px 6%;
    }
  }
  
  /* Tablets and small laptops */
  @media (max-width: 992px) {
    .mission-container {
      flex-wrap: wrap;
      text-align: center;
    }
  
    .mission-text {
      order: 2;
    }
  
    .mission-image {
      order: 1;
      text-align: center;
    }
  
    .mission-image img {
      max-width: 400px;
      margin-bottom: 30px;
    }
  }
  
  /* Mobile screens */
  @media (max-width: 600px) {
    .about-title {
      font-size: 2rem;
    }
  
    .mission-title {
      font-size: 1.5rem;
    }
  
    .mission-para {
      font-size: 0.95rem;
    }
  
    .about-section {
      padding: 60px 5%;
    }
  }
  
  
  
  
  
  /* ===== Section Base ===== */
  .services-section {
    padding: 80px 8%;
    background: linear-gradient(135deg, #f9fbfd, #f3f8ff);
    font-family: "Inter", sans-serif;
    color: #333;
  }
  
  /* ===== Header ===== */
  .services-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .services-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #003366;
    position: relative;
  }
  
  .services-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #007bff;
    margin: 12px auto 0;
    border-radius: 2px;
  }
  
  .services-subtitle {
    font-size: 1.05rem;
    color: #555;
    max-width: 700px;
    margin: 15px auto 0;
    line-height: 1.6;
  }
  
  /* ===== Groups ===== */
  .services-group {
    margin-bottom: 60px;
  }
  
  .group-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #004c99;
    text-align: center;
    margin-bottom: 30px;
  }
  
  /* ===== Grid ===== */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  /* ===== Card Styling ===== */
  .service-item {
    background: #fff;
    border-radius: 12px;
    padding: 18px 20px;
    font-size: 1rem;
    color: #004080;
    font-weight: 500;
    border-left: 5px solid #007bff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: left;
  }
  
  .service-item:hover {
    transform: translateY(-4px);
    background: #f8fbff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  /* ===== Responsive ===== */
  @media (max-width: 992px) {
    .services-title {
      font-size: 2rem;
    }
  
    .group-title {
      font-size: 1.5rem;
    }
  
    .service-item {
      font-size: 0.95rem;
    }
  }
  
  @media (max-width: 600px) {
    .services-section {
      padding: 60px 6%;
    }
  
    .services-title {
      font-size: 1.8rem;
    }
  
    .service-item {
      text-align: center;
    }
  }
  
  
  
  
  /* ===== Testimonials Section ===== */
  .testimonials-section {
    background: linear-gradient(135deg, #f9fbfd, #f3f8ff);
    padding: 90px 8%;
    font-family: "Inter", sans-serif;
    color: #333;
    text-align: center;
    overflow: hidden;
  }
  
  /* ===== Header ===== */
  .testimonials-header {
    margin-bottom: 60px;
  }
  
  .testimonials-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #003366;
    position: relative;
  }
  
  .testimonials-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #007bff;
    margin: 10px auto 0;
    border-radius: 2px;
  }
  
  .testimonials-subtitle {
    font-size: 1.05rem;
    color: #555;
    margin-top: 10px;
  }
  
  /* ===== Testimonial Cards ===== */
  .testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
  }
  
  .testimonial-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
  }
  
  .testimonial-card:nth-child(1) {
    animation-delay: 0.1s;
  }
  .testimonial-card:nth-child(2) {
    animation-delay: 0.3s;
  }
  .testimonial-card:nth-child(3) {
    animation-delay: 0.5s;
  }
  
  .testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  }
  
  .testimonial-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid #007bff;
  }
  
  .testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .testimonial-text {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  .testimonial-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #003366;
    margin-bottom: 4px;
  }
  
  .testimonial-role {
    font-size: 0.9rem;
    color: #777;
  }
  
  /* ===== Fade-in Animation ===== */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(40px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* ===== Responsive ===== */
  @media (max-width: 768px) {
    .testimonials-title {
      font-size: 2rem;
    }
  
    .testimonial-card {
      padding: 25px 20px;
    }
  
    .testimonial-text {
      font-size: 0.95rem;
    }
  }
  
  
  
  
  
  
  /* ===== Main Section ===== */
  .contact-main-section {
    font-family: 'Inter', sans-serif;
    width: 100%;
    background: #f5f9ff;
    padding: 60px 20px;
    box-sizing: border-box;
  }
  
  /* ===== Contact Form Section ===== */
  .contact-form-section {
    max-width: 700px;
    margin: 0 auto 60px auto;
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    animation: fadeInUp 1s ease;
  }
  
  .section-title {
    font-size: 2.5rem;
    color: #004aad;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
  }
  
  .section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: #007bff;
    margin: 8px auto 0;
    border-radius: 2px;
  }
  
  .section-subtitle {
    text-align: center;
    color: #555;
    font-size: 1rem;
    margin-bottom: 40px;
  }
  
  /* ===== Form ===== */
  .contact-form .form-group {
    position: relative;
    margin-bottom: 25px;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 18px 15px;
    border: 1px solid #d0d7e2;
    border-radius: 10px;
    background: #f9faff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #004aad;
    box-shadow: 0 0 12px rgba(0, 74, 173, 0.2);
  }
  
  textarea {
    height: 120px;
    resize: none;
  }
  
  .contact-form label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #999;
    background: #fff;
    padding: 0 5px;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  
  .contact-form input:focus + label,
  .contact-form input:not(:placeholder-shown) + label,
  .contact-form textarea:focus + label,
  .contact-form textarea:not(:placeholder-shown) + label {
    top: -10px;
    font-size: 0.85rem;
    color: #004aad;
  }
  
  .file-upload input {
    padding: 5px 0;
  }
  
  .send-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #004aad, #007bff);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .send-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 74, 173, 0.25);
  }
  
  /* ===== Visit Hours Section ===== */
  .visit-hours-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .info-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .info-card:hover {
    transform: translateY(-5px);
  }
  
  .info-card h3 {
    font-size: 1.5rem;
    color: #004aad;
    margin-bottom: 10px;
  }
  
  .info-card p,
  .info-card ul {
    color: #555;
    line-height: 1.6;
  }
  
  .info-card ul {
    list-style: none;
    padding-left: 0;
  }
  
  .card-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  /* ===== Animations ===== */
  @keyframes fadeInUp {
    from {opacity:0; transform: translateY(40px);}
    to {opacity:1; transform: translateY(0);}
  }
  
  /* ===== Responsive ===== */
  @media (max-width: 992px) {
    .visit-hours-section {
      flex-direction: column;
      gap: 20px;
    }
  
    .contact-form-section {
      padding: 40px 25px;
    }
  }
  
  
  
  
  
  .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    zoom:inherit;
    background-color: #29b200;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  }
  
  .whatsapp-float img {
    width: 35px;
    height: 35px;
  }
  
  
  
  
  
  
  .map-section {
    padding: 60px 20px;
    background: #f5f9ff;
    text-align: center;
  }
  
  .map-title {
    font-size: 2rem;
    color: #004aad;
    margin-bottom: 10px;
    position: relative;
  }
  
  .map-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #007bff;
    margin: 8px auto 0;
    border-radius: 2px;
  }
  
  .map-subtitle {
    color: #555;
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .map-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .map-container iframe {
      height: 300px;
    }
  }
  
  
  
  
  
  
  .simple-text-footer {
    background-color: #004aad;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
  }
  
  .footer-content p {
    margin: 5px 0;
  }
  
  .footer-brand {
    font-weight: 600;
    font-size: 1rem;
    color: #e0e7ff;
  }
  
  .footer-contact {
    font-size: 0.95rem;
    color: #cce0ff;
  }
  
  .footer-copy {
    font-size: 0.85rem;
    color: #cce0ff;
    margin-top: 10px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-brand {
      font-size: 0.95rem;
    }
  
    .footer-contact,
    .footer-copy {
      font-size: 0.8rem;
    }
  }
  
  
  
  
  .map-header {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .location-pin {
    font-size: 45px;
    display: block;
    margin-bottom: 10px;
    animation: bounce 1.5s infinite;
  }
  
  .map-title {
    font-size: 2rem;
    font-weight: 700;
    color: #290083;
    margin-bottom: 5px;
  }
  
  .map-subtitle {
    color: #555;
    font-size: 1rem;
  }
  
  /* Pin bounce animation */
  @keyframes bounce {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
  }
  