body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  background-color: #ffffff;
  border-top: 3px solid #f3e5e5;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;


  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.header img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.title {
  font-size: 36px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.title .blue {
  color: #1f2b5b;
}

.title .lightblue {
  color: #3dbdec;
}

/*  Responsive  */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    padding: 20px 10px;
  }

  .title {
    font-size: 28px;
  }

  .header img {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 24px;
  }

  .header img {
    width: 45px;
    height: 45px;
  }
}



/*hero section*/
 .bg-image {
    background-image: url('img/herosection.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 100vh;
  }

  .bg-image::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }

  .maincontainer {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    color: white;
  }

  .heading {
    text-align: center;
    margin-bottom: 40px;
  }

  .heading p {
    font-size: 18px;
    margin: 0;
  }

  .heading h1 {
    font-size: 32px;
    margin: 10px 0;
  }

  .heading h2 {
    font-size: 20px;
    font-weight: normal;
    margin: 10px 0;
  }

  .hero-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    flex-direction: row;
  }

  .left, .right {
    flex: 1;
    min-width: 300px;
  }

  .left {
    color: black;
  }

  .left .box1,
  .left .box2,
  .left .box3 {
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
  }

  .left .box1,
  .left .box3 {
    background-color: #1f2b5b;
    color: white;
  }
   .left .box1:hover,
  .left .box3:hover {
    background-color: #3b4d96;
    color: white;
  }

  .left .box2 {
    background-color: white;
  }

  .left .box2 p {
    font-size: 14px;
  }

  .left strong {
    font-weight: bold;
  }

  .right {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: 10px;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }

  .submit-btn {
    background-color: #1f2b5b;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    width: 100%;
    cursor: pointer;
  }

  .submit-btn:hover {
  
    background-color: #3b4d96;
  }

  .small-text {
    font-size: 12px;
    margin-top: 15px;
    color: #535353;
  }

  /* responsive */
  @media (max-width: 1024px) {
    .hero-content {
    flex-direction: column-reverse;
    }

    .heading h1 {
      font-size: 26px;
    }

    .heading h2 {
      font-size: 18px;
    }
  }

  @media (max-width: 600px) {
    .heading h1 {
      font-size: 22px;
    }

    .heading h2 {
      font-size: 16px;
    }

    .left .box1,
    .left .box2,
    .left .box3,
    .right {
      padding: 15px;
    }

    .submit-btn {
      padding: 10px;
    }
  }

/*privacy*/
.privacy-container {
   margin-left: 70px;
  margin-right: 70px;
     box-sizing: border-box;
     padding: 50px;
     
     
  
}

.privacy-updated {
  font-size: 16px;
  margin-bottom: 20px;
}

.privacy-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.privacy-text {
  font-size: 16px;
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 20px;
}

.privacy-text strong {
  font-weight: bold;
}

/* Responsive  */
@media (max-width: 768px) {
  .privacy-container {
    padding: 15px;
    margin: 20px;
  }

  .privacy-title {
    font-size: 26px;
  }

  .privacy-text {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .privacy-title {
    font-size: 22px;
  }

  .privacy-updated {
    font-size: 14px;
  }

  .privacy-text {
    font-size: 14px;
  }
}
/*conaultation section*/

.consultation-section {
  background-color: #1f2b5b;
  color: white;
  padding: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.consultation-text {
  flex: 1;
  min-width: 300px;
  font-size: 24px;
  font-weight: normal;
  text-align: center;
  margin-left: 50px;
  margin-right: 50px;
}

.consultation-text b {
  font-weight: bold;
}

.contact-boxes {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.contact-card {
  border: 2px solid white;
  padding: 15px 25px;
  text-align: center;
  font-size: 18px;
  width: fit-content;
}

.contact-card b {
  font-size: 20px;
}

.timings {
  text-align: center;
  margin-top: 10px;
  font-size: 16px;
}

/* Responsive  */
@media (max-width: 768px) {
  .consultation-section {
    flex-direction: column;
    padding: 30px 20px;
  }

  .consultation-text {
    font-size: 20px;
    margin: 20px 0;
  }

  .contact-boxes {
    width: 100%;
    gap: 15px;
  }

  .contact-card {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .consultation-text {
    font-size: 18px;
    padding: 0 10px;
  }

  .contact-card b {
    font-size: 18px;
  }

  .contact-card {
    font-size: 16px;
    padding: 12px 20px;
  }

  .timings {
    font-size: 14px;
  }
}





/*terms*/

.terms-container {
  margin-left: 70px;
  margin-right: 70px;
     box-sizing: border-box;
     padding: 50px;
     
  
}

.terms-updated {
  font-size: 16px;
  margin-bottom: 20px;
}

.terms-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.terms-text {
  font-size: 16px;
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 20px;
}

.terms-text strong {
  font-weight: bold;
}

/* Responsive  */
@media (max-width: 768px) {
  .terms-container {
    padding: 15px;
    margin: 20px;
  }

  .terms-title {
    font-size: 26px;
  }

  .terms-text {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .terms-title {
    font-size: 22px;
  }

  .terms-updated {
    font-size: 14px;
  }

  .terms-text {
    font-size: 14px;
  }
}
/*disclaimer section*/

.disclaimer-section {
  background-color: white;
  padding: 50px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-left: 50px;
  margin-right: 50px;
}

.disclaimer-section a {
  color: #007bff;
  text-decoration: none;
}

.disclaimer-section a:hover {
  text-decoration: underline;
}

/* responsiveness */
@media (max-width: 768px) {
  .disclaimer-section {
    padding: 30px 20px;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 13px;
  }
}


@media (max-width: 480px) {
  .disclaimer-section {
    padding: 20px 15px;
    margin: 10px;
    font-size: 12.5px;
  }
}



/*footer*/
.footer {
  background-color: #ffffff;
  color: #1f2b5b;
  text-align: center;
  padding: 20px;
  font-family: Arial, sans-serif;
  border-top: 2px solid #1f2b5b; 
}



.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 60px;
  height: auto;
  margin-bottom: 10px;
}

.footer-logo h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
}

.footer-logo .red {
  color: #cc0c2f;
}

.footer-logo .white {
  color: #1f2b5b;
}

.footer hr {
  margin: 20px auto;
  width: 90%;
  border: 0;
  height: 1px;
  background-color: #ccc;
  opacity: 0.3;
}

.footer-bottom p {
  font-size: 14px;
  margin: 0;
}

.footer-bottom a {
  color: #1f2b5b;
  text-decoration: none;
  margin: 0 5px;
}

.footer-bottom a:hover {
  color: #3b4d96;
}

/* Responsive */
@media (max-width: 600px) {
  .footer-logo h2 {
    font-size: 18px;
    text-align: center;
  }

  .footer-bottom p {
    font-size: 12px;
    padding: 0 10px;
  }
}

