* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body
{
  overflow-x: hidden;
}
/* Make header fixed at the top */
header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: rgba(255, 255, 255, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  
  width: 1300px;
}

.logo img {
  width: 184.69564819335938px;
  height: 54.446495056152344px;
  top: 23px;
  left: 80px;
  margin-left: 50px;

}

.center ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.center ul li a {
  text-decoration: none;
  color: black;
  padding: 5px 0;
  font-weight: 500;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s;
  width: 425px;
height: 32px;
top: 34px;
left: 507.5px;
gap: 20px;

}

.center ul li a:hover {
  border-bottom: 3px solid rgba(11, 70, 142, 1);
}

.center ul li a.active {
  border-bottom: 3px solid rgba(11, 70, 142, 1);
}
.contact button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 154px;
  height: 44px;
  padding: 10px 16px;
  border-radius: 8px;
  background-color: #FABD46;
  border: none;
  color: white;
  font-weight: 500;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  box-shadow:
    0px 2px 4px rgba(11, 70, 142, 0.1),
    0px 7px 7px rgba(11, 70, 142, 0.09),
    0px 15px 9px rgba(11, 70, 142, 0.05),
    0px 27px 11px rgba(11, 70, 142, 0.01),
    0px 43px 12px rgba(11, 70, 142, 0);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0%;
}

.contact button::before {
  content: '';
  position: absolute;
  bottom: -75px; /* start from below the button */
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background-color: #0B468E;
  border-radius: 50%;
  z-index: 0;
  transition: width 0.5s ease-in-out, height 0.5s ease-in-out, bottom 0.5s ease-in-out;
}

.contact button:hover::before {
  width: 200px;
  height: 200px;
  up: -30px; /* pushes the circle up so it fills button nicely */
}

.contact button span,
.contact button img {
  position: relative;
  z-index: 2;
}
@media (max-width: 600px) {
  header {
    flex-direction: column;
    align-items: center;
    height: auto;
    width: 100%;
    padding: 15px 0;
  }

  .logo img {
    width: 140px;
    height: auto;
    margin-left: 0;
  }

  .center ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .center ul li a {
    font-size: 14px;
    padding: 4px 0;
    width: auto;
    height: auto;
    border: none;
  }

  .contact {
    margin-top: 10px;
  }

  .contact button {
    width: 130px;
    height: 38px;
    font-size: 12px;
  }
}
/*2nd*/

    .about-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: auto;
      gap: 40px;
      flex-wrap: wrap;
    }

    .about-text {
      max-width: 600px;
    }

    .about-text small {

      font-family: 'Lato','Arial',sans-serif;
font-weight: 600;
font-size: 18px;
line-height: 100%;
letter-spacing: 0.4%;
text-transform: uppercase;
color: rgba(37, 53, 81, 1);


    }

    .about-text h2 {
   font-family: 'Montserrat','Arial',sans-serif;
font-weight: 700;
font-size: 48px;
line-height: 64px;
letter-spacing: 0.1%;
color: rgba(11, 70, 142, 1);
margin-top: 10px;
margin-bottom: 10px;
text-align: left;

    }

    .about-text p {
      font-size: 16px;
      color: #444;
      line-height: 1.6;
      margin-bottom: 30px;
      font-family: 'Lato','Arial', sans-serif;
font-weight: 400;
font-size: 20px;
line-height: 30px;
letter-spacing: 0.2%;

    }

    .about-text button {
      background: #FFC043;
      color: #fff;
      border: none;
      padding: 12px 24px;
      border-radius: 6px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .about-text button:hover {
      background: #e6a72e;
    }

    .about-image img {
      width: 500px;
      border-radius: 12px;
      object-fit: cover;
    }

    @media (max-width: 1024px) {
      .about-section {
        flex-direction: column;
        text-align: center;
      }

      .about-image img {
        width: 100%;
      }
    }
/*3rd*/

    
 .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;

  }

 h2 {

    margin-bottom: 15px;
    font-family: 'Montserrat','Arial',sans-serif;
font-weight: 700;
font-size: 54px;
line-height: 100%;
letter-spacing: 0.2%;
text-align: center;
color: rgba(11, 70, 142, 1);

  }

 .subtitle {
   
    margin-top: 10px;
    margin-bottom: 20px;
    font-family: 'Lato','Arial',sans-serif;
font-weight: 400;
font-size: 20px;
line-height: 30px;
letter-spacing: 0.2%;
text-align: center;
color: rgba(30, 58, 95, 1);

  }

.images-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

 .images-row img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    height: 300px;
  }

 .description-box {

    font-family: 'Lato','Arial',sans-serif;
font-weight: 400;
font-size: 17px;
line-height: 30px;
letter-spacing: 0.2%;
text-align: center;
margin-bottom: 10px;
color: rgba(30, 58, 95, 1);

  }
.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  background-color: #FFC043;
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  font-family: 'Inter', sans-serif;
  line-height: 24px;
  transition: color 0.3s ease;
  box-shadow:
    0px 2px 4px rgba(11, 70, 142, 0.1),
    0px 7px 7px rgba(11, 70, 142, 0.09),
    0px 15px 9px rgba(11, 70, 142, 0.05),
    0px 27px 11px rgba(11, 70, 142, 0.01),
    0px 43px 12px rgba(11, 70, 142, 0);
}

.cta-button::before {
  content: '';
  position: absolute;
  bottom: -75px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background-color: #0B468E;
  border-radius: 50%;
  z-index: 0;
  transition:
    width 0.5s ease-in-out,
    height 0.5s ease-in-out,
    bottom 0.5s ease-in-out;
}

.cta-button:hover::before {
  width: 200px;
  height: 200px;
  up: -30px;
}

.cta-button span {
  position: relative;
  z-index: 2;
}

  @media (max-width: 768px) {
   .images-row {
      flex-direction: column;
      gap: 20px;
    }

     .images-row img {
      max-width: 100%;
    }
  }
 .why-choose {
      max-width: 1245px;
      margin: 80px auto;
      padding: 0 20px;
      text-align: center;
    }

    .why-choose h2 {
      font-family: 'Montserrat', 'Arial',sans-serif;
      font-size: 46px;
      color: #0B468E;
      font-weight: 700;
      margin-bottom: 16px;
      text-align: center;
      
    }

    .why-choose p {
      font-size: 18px;
      max-width: 760px;
      margin: 0 auto 60px;
      line-height: 1.6;
      font-family: 'Lato', 'Arial',sans-serif;
font-weight: 400;
font-size: 20px;
line-height: 30px;
letter-spacing: 0.2%;
text-align: center;

    }

    .why-grid {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .why-item {
      flex: 1;
      min-width: 280px;
      text-align: center;
      padding: 0 10px;
    }

    .why-icon {
      width: 48px;
      height: 48px;
      background-color: #0B468E;
      border-radius: 50%;
      margin: 0 auto 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .why-icon img {
      width: 24px;
      height: 24px;
    }

    .why-item h3 {
      font-size: 20px;
      font-weight: 600;
      color: #0B468E;
      margin-bottom: 12px;
        font-family: 'Lato', 'Arial',sans-serif;
    }

    .why-item p {
      font-size: 16px;
      line-height: 1.6;
       font-weight: 500;
font-family: 'Lato', 'Arial',sans-serif;
color: rgba(37, 53, 81, 1);

    }

    @media (max-width: 768px) {
      .why-grid {
        flex-direction: column;
        align-items: center;
      }

      .why-item {
        margin-bottom: 40px;
      }
    }
.mission-section {
      max-width: 1240px;
      margin: 80px auto;
      padding: 0 20px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 40px;
    }

    .mission-images {
      flex: 1 1 45%;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .mission-images img {
      width: 100%;
      border-radius: 10px;
      object-fit: cover;
      max-height: 240px;
    }

    .mission-content {
      flex: 1 1 50%;
    }

    .mission-content small {
      font-size: 16px;
      color: #5c5c5c;
      text-transform: uppercase;
      font-weight: 600;
        font-family: 'Lato','Arial',sans-serif;
color: rgba(37, 53, 81, 1);


    }

    .mission-content h2 {
      
      color: #003087;
      font-weight: 700;
  
      font-family: 'Montserrat','Arial',sans-serif;

font-size: 42px;
line-height: 60px;
letter-spacing: 0.1%;
text-align: left;
    }

    .mission-content p {
      font-size: 18px;
      color: #333;
      line-height: 1.6;
      margin-bottom: 16px;
      font-family: 'Lato','Arial',sans-serif;
        font-weight: 400;
    }

.btn-circle {
  position: relative;
  padding: 12px 24px;
  background-color: #FABD46;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
}

.btn-circle span {
  position: relative;
  z-index: 2;
  color: white;
}

.btn-circle::before {
  content: '';
  position: absolute;
  bottom: -80px; /* starts below */
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background-color: #0B468E;
  border-radius: 50%;
  z-index: 1;
  transition: width 0.5s ease, height 0.5s ease, bottom 0.5s ease;
}

.btn-circle:hover::before {
  width: 220px;
  height: 220px;
  up: -30px; /* moves up to cover button */
}

    @media (max-width: 768px) {
      .mission-section {
        flex-direction: column;
      }

      .mission-images {
        flex: 1 1 100%;
      }

      .mission-content {
        flex: 1 1 100%;
      }

      .mission-content h2 {
        font-size: 24px;
      }
    }
    /*clients*/

.testimonial-wrapper {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  height: auto;
  padding: 60px 0 60px 82px; /* Only left padding */
  background: #f9fafb;
  overflow: hidden;
  box-sizing: border-box;
  
box-shadow: 0px 32px 64px -16px rgba(57, 59, 106, 0.06);

}

.cliants {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 112px; /* align arrow buttons to far right */
}

.headings {
  display: flex;
  flex-direction: column;
}

h2 {

  margin: 0;
  font-family: 'Montserrat','Arial',sans-serif;
font-weight: 700;
font-size: 48px;
line-height: 100%;
letter-spacing: 0.1%;
color: rgba(11, 70, 142, 1);

}

.subtext {
  margin-top: 12px;
  

  font-family: 'Lato','Arial',sans-serif;
font-weight: 600;
font-size: 20px;
line-height: 100%;
letter-spacing: 0.4%;
text-transform: capitalize;

}

.testimonial-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 24px;
  padding-top: 40px;
  padding-right: 0;  /* No right padding */
  scroll-snap-type: x mandatory;
}

.testimonial-container::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 320px;
  flex: 0 0 auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  scroll-snap-align: start;
}

.stars {
  color: #fbbf24;
  font-size: 20px;
  margin-bottom: 15px;
}

.testimonial-text {
font-weight: 400;
font-style: italic;
font-size: 16px;
line-height: 24px;
letter-spacing: 0.2px;

  line-height: 1.6;
  font-family: 'Lato','Arial',sans-serif;
  color: rgba(40, 37, 86, 1);

}

.client-info {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.client-info img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}

.client-name {
  font-weight: 700;
  font-size: 16px;

  font-family: 'Lato','Arial',sans-serif;
color: rgba(11, 70, 142, 1);

}

.client-company {
font-family: 'Lato','Arial',sans-serif;
font-weight: 400;
font-size: 14px;
line-height: 24px;
letter-spacing: 0.2%;
color: rgba(37, 53, 81, 1);


}

.arrows {
  display: flex;
  gap: 16px;
}

.arrow {
  background-color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: background-color 0.3s ease;
}

/* Hover effect for both */
.arrow:hover {
  background-color: #FABD46;
}

/* ✅ Second arrow always yellow */
.arrows .arrow:last-child {
  background-color: #FABD46;
}

/* ✅ Prevent yellow from changing on hover */
.arrows .arrow:last-child:hover {
  background-color: #FABD46;
}

.arrow img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .testimonial-wrapper {
    padding: 40px 20px;
  }

  .cliants {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-right: 20px;
  }

  .headings h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .subtext {
    font-size: 16px;
    margin-top: 8px;
  }

  .testimonial-container {
    padding-top: 24px;
    gap: 16px;
    overflow-x: scroll;
  }

  .testimonial-card {
    width: 260px;
    padding: 16px;
  }

  .testimonial-text {
    font-size: 14px;
    line-height: 1.5;
  }

  .client-info {
    margin-top: 16px;
  }

  .client-info img {
    width: 36px;
    height: 36px;
  }

  .client-name {
    font-size: 14px;
  }

  .client-company {
    font-size: 12px;
  }

  .arrows {
    justify-content: center;
    width: 100%;
    margin-top: 20px;
  }

  .arrow {
    width: 36px;
    height: 36px;
  }

  .arrow img {
    width: 12px;
    height: 12px;
  }
}

/*faq*/
.faq-section {
  padding: 80px 20px;
  font-family: 'Lato', 'Arial', sans-serif;
 

}

.faq-container {
  max-width: 1245px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: flex-start;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 1);
}

.faq-left {
  flex: 1;
  max-width: 45%;
}

.faq-label {
  font-size: 14px;
  color: #444;
  display: block;
  margin-bottom: 10px;
}

.faq-left h2 {
  font-size: 32px;
  color: #003087;
  font-weight: 700;
  margin-bottom: 260px; /* more space between h2 and note */
  line-height: 1.3;
}

.faq-note {
  font-size: 14px;
  color: #444;
  margin-top: 0; /* reset top margin */
}

.faq-note a {
  color: #003087;
  text-decoration: underline;
}

/* FAQ card container */
.faq-card {
  flex: 2;
  border-radius: 8px;
  padding: 30px;
  width: 100%;
}

/* FAQ list wrapper */
.faq-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Common FAQ block */
.faq-box details {
  border-bottom: 1px solid #e2e2e2;
  padding: 0;
  position: relative;
}

/* First block styling */
.faq-box details:first-of-type {
  background-color: rgba(246, 247, 249, 1);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 10px;
}

/* Summary text */
.faq-box summary {
  font-weight: 600;
  color: #003087;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  padding: 18px 30px 18px 40px;  /* Make consistent for all */
  position: relative;
  display: block;
}

/* All other summary tags match this padding */
.faq-box details:not(:first-of-type) summary {
  padding: 18px 30px 18px 40px; /* Same as first */
}

/* Arrow icon */
.faq-box summary::after {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  right: 30px;
  top: 20px;
  background-image: url("img2/arrow-down-s-line.png");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

/* Rotate icon on open */
.faq-box details[open] summary::after {
  transform: rotate(180deg);
}

/* Answer text */
.faq-answer {
  margin: 0 30px 20px 40px;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

/* Remove last border */
.faq-box details:last-child {
  border-bottom: none;
}
@media (max-width: 600px) {
  .faq-section {
    padding: 40px 16px;
  }

  .faq-container {
    flex-direction: column;
    gap: 30px;
  }

  .faq-left {
    max-width: 100%;
  }

  .faq-left h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .faq-label,
  .faq-note {
    font-size: 13px;
  }

  .faq-card {
    padding: 20px;
  }

  .faq-box summary {
    font-size: 15px;
    padding: 16px 24px 16px 30px;
  }

  .faq-box details:not(:first-of-type) summary {
    padding: 16px 24px 16px 30px;
  }

  .faq-box summary::after {
    right: 24px;
    top: 18px;
    width: 12px;
    height: 12px;
  }

  .faq-answer {
    margin: 0 24px 16px 30px;
    font-size: 13px;
  }
}


/*10*/

    .get-started {
      background-color: #fbfbfb;
      padding: 50px 20px;
    }

    .get-started .content {
      max-width: 1150px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background-color: #ffffff;
      padding-left: 16px;
      flex-wrap: wrap;
    }

    .get-started .left {
      flex: 1;
      min-width: 300px;
    }

    .get-started h5 {
      margin-bottom: 10px;
      font-family: 'Lato', sans-serif;
      font-weight: 600;
      font-size: 18px;
      text-transform: uppercase;
      color: #253551;
    }

    .get-started h2 {
      margin-bottom: 15px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 48px;
      color: #0B468E;
    }

    .get-started p {
      font-family: 'Lato', sans-serif;
      font-size: 18px;
      line-height: 28px;
      width: 100%;
      max-width: 556px;
      color: #1e3a5f;
    }

    .get-started .email-box {
      position: relative;
      width: 100%;
      max-width: 384px;
      height: 48px;
      margin-top: 20px;
    }

    .get-started input[type="email"] {
      width: 100%;
      height: 100%;
      padding-left: 42px;
      padding-right: 12px;
      border: 1px solid rgba(0, 0, 0, 0.06);
      border-radius: 10px;
      box-shadow: 0px 2px 1.5px 0.5px rgba(149, 160, 178, 0.16);
      font-size: 16px;
      font-family: 'Lato', sans-serif;
    }

    .get-started .email-box > img {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      width: 16px;
      height: 16px;
      pointer-events: none;
    }

    .submit-btn-wrap {
      display: flex;
      justify-content: flex-start;
      margin-top: 15px;
    }

    .submit-btn {
      background: #f9b233;
      color: white;
      padding: 10px 20px;
      border: 1px solid;
      border-radius: 5px;
      cursor: pointer;
      font-size: 14px;
      font-family: 'Inter', sans-serif;
      overflow: hidden;
      position: relative;
      z-index: 1;
      text-align: center;
      border-image-source: linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 100%);
      box-shadow:
        0px 2px 4px rgba(11, 70, 142, 0.1),
        0px 7px 7px rgba(11, 70, 142, 0.09),
        0px 15px 9px rgba(11, 70, 142, 0.05),
        0px 27px 11px rgba(11, 70, 142, 0.01),
        0px 43px 12px rgba(11, 70, 142, 0);
    }

    .submit-btn::before {
      content: '';
      position: absolute;
      bottom: -75px;
      left: 50%;
      transform: translateX(-50%);
      width: 10px;
      height: 10px;
      background-color: #0B468E;
      border-radius: 50%;
      z-index: 0;
      transition: width 0.5s ease, height 0.5s ease, bottom 0.5s ease;
    }

    .submit-btn:hover::before {
      width: 200px;
      height: 200px;
      bottom: -30px;
    }

    .submit-btn span {
      position: relative;
      z-index: 2;
    }

    .get-started .right img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
    }

  /* === Responsive Mobile Query === */
@media (max-width: 768px) {
  .get-started .content {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    text-align: center;
  }

  .get-started h2 {
    font-size: 32px;
  }

  .get-started p {
    font-size: 16px;
    line-height: 24px;
  }

  .get-started .email-box {
    width: 100%;
    max-width: 400px;
    margin: 20px auto 0;
  }

  .get-started input[type="email"] {
    font-size: 15px;
    padding-left: 42px;
  }

  .get-started .email-box > img {
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
  }

  .submit-btn-wrap {
    justify-content: center;
  }

  .get-started .right img {
    margin-top: 60px; /* ⬅️ Increased from 20px to 60px */
    max-width: 90%;
  }
}

/*11*/
.site-footer {
  font-family: 'Lato', 'Arial', sans-serif;
  background: #fff;
  padding: 40px 20px 20px;
  color: #333;
}

/* Top Row: Logo + tagline + social */
.footer-header {
  max-width: 1245px;
  margin: 0 auto 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}

.footer-header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo {
  height: 40px;
}

.footer-tagline {
  font-size: 14px;
  color: #003087;
}

/* Social Icons Row */
.footer-social {
  display: flex;
  gap: 10px;
}

.social-icon {
  position: relative;
  width: 38px;
  height: 38px;
}

.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease;
}

.icon-hover {
  opacity: 0;
}

.social-icon:hover .icon-default {
  opacity: 0;
}

.social-icon:hover .icon-hover {
  opacity: 1;
}

/* Main Footer Content */
.footer-main {
  max-width: 1245px;
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

/* Links Section */
.footer-links {
  display: flex;
  gap: 60px;
}

.footer-links h4 {
  color: #003087;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  font-size: 14px;
  margin-bottom: 10px;
}

/* Contact List */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  margin: 10px 0;
  line-height: 1.6;
}

.footer-contact img {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  margin-top: 3px;
}

/* Bottom Copyright Row */
.footer-bottom {
  max-width: 1245px;
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  border-top: 1px solid #ddd;
  padding-top: 15px;
  flex-wrap: wrap;
}

.footer-policy-links {
  display: flex;
  gap: 20px;
}

.footer-policy-links a {
  color: #555;
  text-decoration: none;
  font-size: 13px;
}

.footer-policy-links a:hover {
  text-decoration: underline;
}
@media (max-width: 600px) {
  .footer-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
  }

  .footer-header-left {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-main {
    flex-direction: column;
    gap: 30px;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }

  .footer-links h4 {
    font-size: 16px;
  }

  .footer-links li,
  .footer-contact li {
    font-size: 15px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
  }

  .footer-policy-links {
    flex-direction: column;
    gap: 8px;
  }
}