/* Reset some defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
  }
  
  /* Navbar */
  /* Basic Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background: #fff; */
    background: linear-gradient(135deg, #003366, #000000);
   
    padding: 20px 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background 0.3s ease-in-out;
  }
  
  /* Logo */
  .navbar .logo {
    font-size: 24px;
    font-weight: bold;
    /* color: #003366; */ 
    color: #fff;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
  }
  
  /* Nav Links */
  .navbar .nav-links {
    display: flex;
    gap: 20px;
  }
  
  .navbar .nav-links a {
    text-decoration: none;
    /* color: #555; */
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s, transform 0.3s;
  }
  
  /* Hover Effect for Links */
  .navbar .nav-links a:hover {
    color: #c6e0f0;
    transform: scale(1.1);
  }
  
  /* Active Link Styling */
  .navbar .nav-links a.active {
    color: #c6e0f0;
    font-weight: bold;
  }
  
  /* Hamburger Menu Styling */
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
  }
  
  .menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #003366;
    border-radius: 5px;
  }
  
  /* Responsive Navbar Styles */
  @media (max-width: 768px) {
    /* Nav Links for Small Screens */
    .navbar .nav-links {
      position: absolute;
      top: 60px;
      left: 0;
      right: 0;
      background-color:  #8faedb;
      flex-direction: column;
      align-items: center;
      gap: 15px;
      display: none;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: 20px 0;
      z-index: 1001;
    }
  
    /* When Menu is Active */
    .navbar .nav-links.active {
      display: flex;
    }
  
    /* Show the Hamburger Menu */
    .menu-toggle {
      display: flex;
    }
    
    /* Navbar Links - Mobile Version */
    .navbar .nav-links a {
      font-size: 20px;
    }

  }

  .submenu-container {
    position: relative;
  }
  
  .submenu-container:hover .submenu {
    display: block;
  }
  
  .submenu {
    display: none; /* Hide submenu by default */
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #010711;
     
    padding: 10px;
    list-style-type: none;
  }
  
  /* Background change on scroll */
  .navbar.scrolled {
    background: #f5f9ff;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
  }
  
  /* Transition effect for the sticky navbar */
  .navbar.scrolled .logo {
    color: #003366;
  }
  
  /* When scrolling, navbar sticks at the top */
  .navbar.scrolled .nav-links a {
    color: #003366;
  }
  
  /* Hero Section */
  /* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(135deg, #d0e8ff, #a3cfff);

    min-height: 100vh;
    position: relative;
    overflow: hidden;
  }
  
  /* Hero Content */
  .hero-content {
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
  }
  
  /* Heading */
  .hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #003366;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  /* Paragraph */
  .hero p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 40px;
    padding: 0 10px;
  }
  
  /* Call-to-Action Button */
  .cta-button {
    background: #003366;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
  }
  
  .cta-button:hover {
    background: #0056b3;
    transform: translateY(-5px);
  }
  
  /* Animation */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Breakpoints */
  @media (max-width: 992px) {
    .hero h1 {
      font-size: 3rem;
    }
    .hero p {
      font-size: 1.15rem;
    }
  }
  
  @media (max-width: 768px) {
    .hero {
      padding: 100px 15px;
    }
    .hero h1 {
      font-size: 2.5rem;
    }
    .hero p {
      font-size: 1.05rem;
    }
    .cta-button {
      padding: 12px 28px;
      font-size: 16px;
    }
  }
  
  @media (max-width: 480px) {
    .hero h1 {
      font-size: 2rem;
    }
    .hero p {
      font-size: 0.95rem;
    }
    .cta-button {
      padding: 10px 25px;
      font-size: 15px;
    }
  }
  
  
 /* About Section */
/* About Section */
.about {
    background: linear-gradient(135deg, #e0f2ff, #c2e0ff); /* Light bluish gradient */
    padding: 80px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
  }
  
  .about-wrapper {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .about h2 {
    font-size: 36px;
    color: #004080; /* Deep blue heading */
    margin-bottom: 20px;
  }
  
  .about p {
    font-size: 18px;
    color: #333;
    line-height: 1.7;
  }
  
  /* Number Section */
  .number-row {
    background: #f9f9f9;
    padding: 60px 20px;
  }
  
  .numbers {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
  }
  
  .number-card {
    background: #ffffff;
    padding: 40px 20px;
    flex: 1;
    min-width: 250px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .number-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }
  
  .number-card h2 {
    font-size: 40px;
    color: #003366;
    margin-bottom: 10px;
  }
  
  .number-card span {
    font-size: 18px;
    color: #555;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .numbers {
      flex-direction: column;
      align-items: center;
    }
    
    .number-card {
      width: 80%;
    }
  }
  
  @media (max-width: 600px) {
    .about h2 {
      font-size: 28px;
    }
  
    .about p {
      font-size: 16px;
    }
  
    .number-card h2 {
      font-size: 32px;
    }
  
    .number-card span {
      font-size: 16px;
    }
  }
  
  
  /* Contact */
  /* Contact Section */
.contact {
    background: linear-gradient(135deg, #d0e8ff, #a3cfff);

    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
  }
  
  .contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .contact h2 {
    font-size: 36px;
    color: #003366;
    margin-bottom: 50px;
  }
  
  .contact-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .contact-form,
  .contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    flex: 1;
    min-width: 320px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  .contact-info a {
    color: #666666; /* Grey shade */
    text-decoration: none; /* Removes underline */
  }
  
  .contact-info a:hover {
    color: #003366; /* Darker grey on hover */
     /* Underline on hover for better interactivity */
  }
  
  
  /* Contact Form Inputs */
  .contact-form form input,
  .contact-form form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
  }
  
  .contact-form form textarea {
    height: 150px;
    resize: none;
  }
  
  /* Submit Button */
  .contact-form form button {
    width: 100%;
    padding: 15px;
    background: #003366;
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .contact-form form button:hover {
    background: #0055aa;
  }
  
  /* Contact Info */
  .contact-info h3 {
    font-size: 28px;
    color: #003366;
    margin-bottom: 20px;
  }
  
  .contact-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
  }
  
  .contact-info strong {
    color: #333;
  }
  
  /* Map Styling */
  .map iframe {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    margin-top: 20px;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .contact-container {
      flex-direction: column;
      align-items: center;
    }
  
    .contact-form,
    .contact-info {
      width: 90%;
    }
  }
  
  @media (max-width: 600px) {
    .contact h2 {
      font-size: 28px;
    }
  
    .contact-form form input,
    .contact-form form textarea {
      font-size: 14px;
    }
  
    .contact-info h3 {
      font-size: 22px;
    }
  }
  
  /* services */

  .services {
    padding: 80px 20px;
    background: #f5f9ff;
    text-align: center;
  }
  
  .services h2 {
    font-size: 42px;
    color: #003366;
    margin-bottom: 50px;
  }
  
  .service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  
  .card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 30px 25px;
    width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
  }
  
  .card::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.2), rgba(0, 123, 255, 0.05));
    top: -20%;
    left: -20%;
    transform: rotate(25deg);
    z-index: 0;
  }
  
  .card h3 {
    font-size: 26px;
    color: #003366;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
  }
  
  .card p {
    font-size: 16px;
    color: #555;
    position: relative;
    z-index: 1;
  }
  
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.2);
  }
  

  .number-row {
    text-align: center;
    padding: 60px 20px;
    background: #f9f9f9;
  }
  
  .section-title {
    color: #007BFF; /* Elegant blue */
    font-size: 32px;
    margin-bottom: 40px;
  }
  
  .numbers {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .number-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    width: 180px;
    transition: transform 0.3s ease;
  }
  
  .number-card:hover {
    transform: translateY(-8px);
  }
  
  .number-card h3 {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
  }
  
  .number-card span {
    font-size: 18px;
    color: #555;
  }

  

  /* Features Section */
.features {
    width: 100%;
    padding: 60px 20px;
    background: linear-gradient(135deg, #ffffff, #d0e8ff);

    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    box-sizing: border-box;
  }
  
  /* Slider */
  .slider {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }
  
  /* Each Slide */
  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    border-radius: 20px;
  }
  
  /* Active Slide */
  .slide.active {
    opacity: 1;
  }
  
  /* Responsive Media Queries */
  @media (max-width: 992px) {
    .slider {
      height: 400px;
    }
  }
  
  @media (max-width: 768px) {
    .slider {
      width: 90%;
      height: 300px;
    }
  }
  
  @media (max-width: 480px) {
    .slider {
      width: 95%;
      height: 220px;
    }
  }

  
  /* footer */

  /* Footer Styling */
.footer {
    background: linear-gradient(135deg, #003366, #000000);
    color: #fff;
    padding: 60px 20px 30px;
    font-family: 'Poppins', sans-serif;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-section {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-section h5 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #f2f2f2;
  }
  
  .footer-section p {
    font-size: 16px;
    line-height: 1.5;
    color: #ddd;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
  }
  
  .footer-section ul li a {
    text-decoration: none;
    color: #ccc;
    font-size: 16px;
    transition: color 0.3s ease;
  }
  
  .footer-section ul li a:hover {
    color: #f2f2f2;
  }
  
  /* Social Icons */
  .social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
  }
  
  .social-icons a img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease, filter 0.3s ease;
  }
  
  .social-icons a:hover img {
    transform: scale(1.1);
    filter: brightness(1.2);
  }
  
  /* Footer Bottom */
  .footer p.copyright {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #bbb;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .social-icons {
      justify-content: center;
    }
  }
  

/* Privacy Policy Section */
.privacy-policy {
  padding: 60px 20px;
  background: #f7f9fc;
  font-family: 'Poppins', sans-serif;
}

.privacy-policy .container {
  max-width: 1000px;
  margin: 0 auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.privacy-policy h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 30px;
  color: #003366;
}

.privacy-policy h3 {
  font-size: 28px;
  margin-top: 40px;
  color: #333;
}

.privacy-policy h4 {
  font-size: 24px;
  margin-top: 30px;
  color: #555;
}

.privacy-policy p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-top: 15px;
}

.privacy-policy ul {
  margin-top: 15px;
  padding-left: 20px;
}

.privacy-policy ul li {
  font-size: 12px;
  color: #555;
  margin-bottom: 10px;
  list-style: disc;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .privacy-policy .container {
    padding: 30px 20px;
  }

  .privacy-policy h2 {
    font-size: 28px;
  }

  .privacy-policy h3 {
    font-size: 24px;
  }

  .privacy-policy h4 {
    font-size: 20px;
  }

  .privacy-policy p, .privacy-policy ul li {
    font-size: 14px;
  }
}

  


.refund-policy {
  background: linear-gradient(to right, #f9f9f9, #ffffff);
  padding: 4rem 1rem;
  display: flex;
  justify-content: center;
}

.refund-container {
  background: #fff;
  max-width: 900px;
  padding: 3rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.refund-container h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #003366;
  text-align: center;
}

.refund-container p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.refund-container strong {
  color: #000;
}

.refund-container .thank-you {
  margin-top: 2rem;
  font-weight: 600;
  text-align: center;
  font-size: 1.2rem;
  color: #28a745;
}

/* Responsive */
@media (max-width: 768px) {
  .refund-container {
    padding: 2rem 1.5rem;
  }

  .refund-container h2 {
    font-size: 1.8rem;
  }

  .refund-container p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .refund-container {
    padding: 1.5rem 1rem;
  }

  .refund-container h2 {
    font-size: 1.6rem;
  }

  .refund-container p {
    font-size: 0.95rem;
  }
}

.designed-by {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-top: 1em;
}

.designed-by a {
  color: #007BFF; /* or any brand color you like */
  text-decoration: none;
}

.designed-by a:hover {
  text-decoration: none;
}



  
  /* Responsive */
  @media (max-width: 768px) {
    .service-cards {
      flex-direction: column;
      align-items: center;
    }
  }
  