
@import url('https://fonts.googleapis.com/css2?family=STIX+Two+Text:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open Sans');

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    color: #000;
  }
  
  /* ---------- Header ---------- */
  header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    /* padding: 20px 60px; */
  }
  
  .header-container {
    position: relative;
    display: flex;
    align-items: center;
    height: 80px;
    max-width: 1280px;
    margin: 0 auto;
  }
  
  .logo img {
    height: 80px;
  }
  
  .nav-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav-links li {
    display: inline-block;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 1rem;
  }

  .nav-links a:hover {
    color: #1E64F1;
  }
  
  
  /* ---------- Responsive ---------- */
  @media (max-width: 900px) {
    .nav-container {
      position: static;
      transform: none;
      margin-left: auto;
    }
  
    .nav-links {
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
    }
  
    .header-container {
      flex-direction: column;
      height: auto;
      gap: 15px;
    }
  }
  




  .contact-section {
    position: relative;
  }
  
  .contact-box {
    position: relative;
    /* top: -100px; */
    margin-bottom: 3rem; 
    background-color: #F2F5F5;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
    padding: 70px 20px 50px 20px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    text-align: center;
    z-index: 2;
  }
  
  .banner {
    background-image: url('../images/ContactBannerImage.png');
    background-size: cover;
    background-position: center;
    height: 450px;
    margin-bottom: -130px;
    position: relative;
    z-index: 1;
  }
  
  
  .contact-box h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
  }

  .blue {
    color: #1E64F1;
  }
  
  .contact-box p {
    color: #444444;
    font-size: 16px;
    font-weight: 400;
    margin: auto;
    line-height: 1.6; 
  }
  
  .contact-options {
    display: flex;
    justify-content: center;
    gap: 110px;
    margin-top: 30px;
    flex-wrap: wrap;
  }

  @media (max-width: 768px) {
    .contact-options {
      gap: 20px;
    }
    .contact-options a {
      width: 100%;
    }
  }
  
  .contact-options a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .option {
    background: #fff;
    border-radius: 10px;
    padding: 20px 100px;
    min-width: 160px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease;
    cursor: pointer;
  }

  @media (max-width: 768px) {
    .contact-options a {
      justify-content: center;
    }
    .option {
      padding: 20px;
    }
  }

  .option span {
    font-weight: 600;
    font-size: 16px;
  }
  
  .option i {
    font-size: 20px;
    color: #000;
  }
  
  .option:hover {
    transform: translateY(-5px);
    color: #1E64F1;
    font-weight: bold;
  }



  .form-box select {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    box-sizing: border-box;
    background-color: white;
    color: #777;
  }
  
  @media (max-width: 768px) {
    .form-box select {
      margin-top: 20px;
    }
  }
  


  .contact-form-section .container {
    display: flex;
    max-width: 1280px;
    margin: auto;
    flex-wrap: wrap;
  }
  
  .form-box {
    font-family: 'Open Sans', sans-serif;
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  }
  
  .form-box h3.form-heading {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-top: 0;
  }
  
  .form-box input,
  .form-box textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    box-sizing: border-box;
  }
  
  .name-fields {
    display: flex;
    gap: 15px;
  }
  
  .name-fields input {
    flex: 1;
  }
  .name-fields .iti {
    flex: 1 !important;
    width: 100% !important;
  }
  
  .phone-input-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
  }
  
  .country-code {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    background-color: #fff;
  }
  
  .form-box button {
    background-color: #1D66A3;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    transition: background-color 0.3s ease;

  }
  
  .form-box button:hover {
    background-color: #1e64f1;
  }
    

  form {
    font-family: 'Open Sans', sans-serif;
  }
  
.form-box p {
  font-size: 16px;
  text-align: center;
}

input,
textarea,
select,
button {
  font-family: 'Open Sans', sans-serif;
}

  .iti {
  display: flex;
  align-items: center;
  height: 100%;
}

.iti__flag-container {
  display: flex;
  align-items: center;
  height: 100%;
}

.iti__selected-flag {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 8px;
  box-sizing: border-box;
}

  @media (max-width: 900px) {
    .contact-form-section .container {
      flex-direction: column;
      padding: 1.5rem;
    }
  
    .form-box,
    .info-box {
      width: 100%;
      padding: 20px;
    }
  
    .form-box h3 {
      font-size: 1rem;
      margin-bottom: 15px;
    }
  
    .form-box input,
    .form-box textarea {
      font-size: 0.9rem;
      padding: 10px 12px;
    }
  
    .form-box button {
      font-size: 0.95rem;
      padding: 10px 18px;
    }
  
    .name-fields {
      flex-direction: column;
      gap: 10px;
    }
  
    .info-box {
      gap: 15px;
    }
  
    .info-section {
      padding: 20px;
    }
  
    .info-section h4 {
      font-size: 1rem;
    }
  
    .info-section p {
      font-size: 0.9rem;
    }
  
    .info-grid {
      grid-template-columns: 1fr;
      gap: 10px;
    }
  }
  
  


  .contact-heading {
    width: 100%;
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  .contact-heading span {
    color: #1e64f1;
  }
  
  
  .form-info-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
  



@media (max-width: 768px) {
  .contact-form-section {
    padding: 0;
    margin: 0;
  }

  .contact-form-section .container {
    flex-direction: column;
    padding: 0 16px; 
    width: 100%;
    box-sizing: border-box;
  }

  .form-info-wrapper {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .form-box {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }

  .name-fields {
    flex-direction: column;
    gap: 12px;
  }

  .form-box input,
  .form-box textarea,
  .form-box select {
    font-size: 1rem;
    padding: 12px 14px;
    width: 100%;
    box-sizing: border-box;
  }

  .form-box button {
    font-size: 1rem;
    padding: 12px 20px;
    width: 100%;
  }

  .contact-heading {
    font-size: 36px;
    padding: 0 10px;
  }

  .form-box h3.form-heading {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  iframe {
    width: 100% !important;
    height: auto;
  }
}



/* Reviews */
.reviews-section {
  padding: 3rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  text-align: center;
  background-color: #fff;
}

.reviews-heading {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
}
  
 
  
.reviews-heading span + span,
.reviews-heading strong,
.reviews-heading em {
  color: #1e64f1;
}

.reviews-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  /* padding: 0 20px; */
}

.reviews-container {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  overflow-x: hidden;
  scroll-behavior: smooth;
  cursor: grab;
  width: 100%;
  scroll-snap-type: x mandatory;
  /* padding-right: 10px;
  padding-left: 10px; */
}

.reviews-container::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 355px;
  max-width: 355px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
  scroll-snap-align: start;
}

.review-card .stars {
  color: #f5b100;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.review-card .date {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 10px;
}

.review-card .text {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 15px;
}

.review-card .author {
  font-weight: bold;
  font-size: 0.9rem;
}

.arrow {
  border: none;
  border-radius: 50%;
  width: 49px;
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 6px;
}


.arrow img {
  width: 220%;
  height: auto;
}


.reviews-button-container {
  margin-top: 30px;
}

.reviews-button {
  background-color: #1D66A3 ;
  color: white;
  font-size: 16px;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease;
}

.reviews-button:hover {
  background-color: #1E64F1;
  color: #fff !important;
}



@media (max-width: 768px) {
  .review-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .arrow {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }

  .reviews-wrapper {
    gap: 10px;
  }

  .reviews-button {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}



/* Bottom Icons */
/* Icons Bar Section Background */
.cta-icons-bar {
  background-color: #E5E7EB;
}

.cta-icons p {
  color: #1E64F1;
  font-weight: 600;
}

/* Icons Container */
.cta-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
  gap: 60px;
}

/* Each icon + text */
.icon-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #444;
}

/* Icon Style */
.icon-item img {
  height: 24px;
}

/* Responsive */
@media (max-width: 900px) {
.cta-container {
  flex-direction: column;
  text-align: center;
}

.cta-content {
  text-align: center;
}

.testimonial-overlay {
  position: static;
  background: #333;
  margin-top: 15px;
}
}
@media (max-width: 900px) {
  .cta-icons {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 20px;
    gap: 25px;
  }

  .icon-item {
    justify-content: flex-start;
  }
}




.footer {
  /* background-color: #1D66A3; */
  color: white;
  /* padding: 60px 40px 30px; */
  font-size: 0.95rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 40px;
  gap: 40px;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-column h4 {
  font-size: 1rem;
  
  margin-bottom: 16px;
  color: #ffffff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.newsletter input[type="email"] {
  width: 100%;
  padding: 10px 12px;
  border-radius: 5px;
  border: none;
  margin-bottom: 10px;
}

.newsletter label {
  font-size: 0.8rem;
  display: block;
  margin-bottom: 12px;
  color: #e0e0e0;
}

.newsletter button {
  padding: 10px 20px;
  background-color: white;
  color: #144196;
  border-radius: 25px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 20px;
}

.newsletter button:hover {
  background-color: #ffc000;
  color: #000;
}

.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.social-icons a img {
  height: 20px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  border-top: 1px solid #ffffff33;
  padding: 20px 0;
  text-align: center;
  color: #ddd;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 0.8rem;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-bottom-inner p {
  margin: 0;
}

.footer-bottom-inner ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-bottom-inner ul li a {
  color: #ddd;
  text-decoration: none;
}

.footer-bottom-inner ul li a:hover {
  text-decoration: underline;
}
