.hero-section {
    position: relative;
    min-height: 650px;
    
    background-size: cover;
    background-position: center;
    overflow: hidden;
    font-family:"Playfair Display",Georgia,serif;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3,14,21,0.85) 0%, rgba(3,14,21,0.55) 38%, rgba(3,14,21,0.18) 72%, rgba(3,14,21,0.08) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    min-height: 650px;
    margin: 0 auto;
    padding: 45px 0px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    width: 58%;
    padding-top: 5px;
}

.hero-eyebrow {
    display: block;
    margin-bottom: 15px;
    color: #d8e0e4;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
}

.hero-content h1 {
    margin: 0;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 45px;
    line-height: 1.02;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-content h1 span {
    color: #079ee6;
}

.hero-subtitle {
    margin: 22px 0 0;
    color: #eef3f5;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
}

.hero-features {
    display: flex;
    margin-top: 35px;
}

.hero-feature {
    width: 145px;
    min-height: 78px;
    padding: 0 18px;
    box-sizing: border-box;
    border-right: 1px solid rgba(92,171,205,0.45);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    font-family: var(--font-normal);
}

.hero-feature:first-child {
    padding-left: 0;
}

.hero-feature:last-child {
    border-right: 0;
}

.hero-feature i {
    margin-bottom: 10px;
    color: #fff;
    font-size: 25px;
}

.hero-feature span {
    color: #e4ebee;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 35px;
}

.hero-btn {
    min-width: 215px;
    height: 54px;
    padding: 0 28px;
    box-sizing: border-box;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.hero-btn-primary {
    background: #079ee6;
    border: 2px solid #079ee6;
    color: #fff;
}

.hero-btn-primary:hover {
    background: #0589c8;
    border-color: #0589c8;
    color: #fff;
}

.hero-btn-secondary {
    background: transparent;
    border: 2px solid #d8e2e7;
    color: #fff;
}

.hero-btn-secondary:hover {
    background: #fff;
    color: #07151d;
}

.hero-form-wrapper {
    width: 425px;
    flex-shrink: 0;
}

.hero-enquiry-form {
    width: 100%;
    padding: 25px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.3);
    font-family: var(--font-normal);
}

.hero-enquiry-form h2 {
    margin: 0 0 7px;
    color: #123b53;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    line-height: 1.2;
}

.hero-enquiry-form > p {
    margin: 0 0 17px;
    color: #65747c;
    font-size: 12px;
    line-height: 1.5;
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    margin-bottom: 11px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #123b53;
    font-size: 16px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #d7e0e5;
    border-radius: 5px;
    background: #fff;
    color: #123b53;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input,
.form-group select {
    height: 35px;
    padding: 0 10px;
}

.form-group textarea {
    min-height: 68px;
    padding: 9px 10px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a8b4ba;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #079ee6;
    box-shadow: 0 0 0 2px rgba(7,158,230,0.08);
}

.form-group input[type="file"] {
    height: 35px;
    padding: 8px;
    cursor: pointer;
    font-size: 14px;
}

.form-group small {
    display: block;
    margin-top: 4px;
    color: #8a979d;
    font-size: 12px;
}

.form-submit {
    width: 100%;
    height: 43px;
    margin-top: 4px;
    border: 0;
    border-radius: 6px;
    background: #073d5b;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-submit i {
    margin-left: 8px;
    font-size: 12px;
}

.form-submit:hover {
    background: #079ee6;
}

@media (max-width: 1050px) {
    .hero-container {
        gap: 25px;
    }

    .hero-content {
        width: 55%;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-form-wrapper {
        width: 340px;
    }

    .hero-feature {
        width: 125px;
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media (max-width: 800px) {
    .hero-section {
        min-height: auto;
    }

    .hero-container {
        min-height: auto;
        padding: 55px 20px;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-content {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-features {
        flex-wrap: wrap;
    }

    .hero-feature {
        width: 25%;
    }

    .hero-form-wrapper {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 550px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-eyebrow {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .hero-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px 0;
    }

    .hero-feature {
        width: 100%;
        border-right: 1px solid rgba(92,171,205,0.45);
    }

    .hero-feature:nth-child(2),
    .hero-feature:last-child {
        border-right: 0;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-btn {
        width: 100%;
    }

    .form-row {
        display: block;
    }
}

.about-section {
  font-family: 'Poppins', Arial, sans-serif;
}

.about-image-col {
  position: relative;
  min-height: 420px;
}

.about-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.about-main-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.about-main-caption {
  position: absolute;
  left: 32px;
  bottom: 28px;
  z-index: 2;
}

.about-main-caption h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 600;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.about-thumb-stack {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}

.about-thumb {
  width: 110px;
  height: 90px;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.about-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content-col {
  background-color: #eef1f5;
  display: flex;
  align-items: center;
}

.about-content {
  padding: 56px 64px;
  max-width: 620px;
}

.about-eyebrow {
  display: block;
  color: #3d6fb4;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.about-heading {
  font-family: 'Playfair Display', Georgia, serif;
  color: #16294f;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.about-text {
  color: #5b6472;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.about-features {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-feature i {
  font-size: 22px;
  color: #3d6fb4;
}

.about-feature span {
  font-size: 13px;
  color: #16294f;
  font-weight: 600;
  line-height: 1.4;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #16294f;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.25s ease;
}

.about-btn i {
  font-size: 13px;
}

.about-btn:hover {
  background-color: #0d1c38;
  color: #ffffff;
}

@media (max-width: 991.98px) {
  .about-thumb-stack {
    display: none;
  }

  .about-content {
    padding: 48px 32px;
  }
}

@media (max-width: 575.98px) {
  .about-features {
    gap: 20px;
  }

  .about-heading {
    font-size: 28px;
  }
}

.why-section {
  background-color: #16324f;
  padding: 48px 56px 40px;
  font-family: 'Poppins', Arial, sans-serif;
}

.why-eyebrow {
  display: block;
  color: #7ba3c9;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.why-heading {
  font-family: var(--font-curly);
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-text {
  color: #c3d1de;
  font-size: 15px;
  margin-bottom: 0;
}

.why-script-col {
  text-align: right;
}

.why-script {
  font-family: var(--font-normal);
  color: #ffffff;
  font-size: 26px;
  line-height: 1.2;
}

.why-features {
  margin-top: 36px;
}

.why-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.why-feature {
  flex-direction: column;
  text-align: center;
  justify-content: center;
}

.why-feature:first-child {
  border-left: none;
  padding-left: 0;
}

.why-feature i {
  font-size: 26px;
  color: #ffffff;
  flex-shrink: 0;
}

.why-feature span {
  color: #e6ecf1;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 991.98px) {
  .why-script-col {
    text-align: left;
    margin-top: 16px;
  }

  .why-features {
    flex-wrap: wrap;
    row-gap: 24px;
  }

  .why-feature {
    flex: 0 0 50%;
    border-left: none !important;
    padding-left: 0 !important;
  }
}

.process-section {
  background-color: #1c2b3a;
  background-image: linear-gradient(rgba(15, 25, 38, 0.75), rgba(15, 25, 38, 0.75)), url('process-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 56px 56px 48px;
  font-family: 'Poppins', Arial, sans-serif;
}

.process-heading-wrap {
  text-align: center;
  margin-bottom: 44px;
}

.process-eyebrow {
  display: block;
  color: #6fa8d8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.process-heading {
  font-family: 'Playfair Display', Georgia, serif;
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 0;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.process-step {
  flex: 1;
  max-width: 240px;
  text-align: left;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 0;
  right: -24px;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.15);
}

.process-step-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.process-number {
  width: 42px;
  height: 42px;
  border: 1.5px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.process-step-top i {
  color: #ffffff;
  font-size: 22px;
}

.process-step h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-step p {
  color: #9fb3c8;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 0;
}

.process-arrow {
  color: #4a6178;
  font-size: 16px;
  margin-top: 20px;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .process-steps {
    flex-wrap: wrap;
    row-gap: 32px;
  }

  .process-arrow {
    display: none;
  }

  .process-step {
    flex: 0 0 45%;
    max-width: none;
  }
}

@media (max-width: 575.98px) {
  .process-section {
    padding: 48px 24px;
  }

  .process-step {
    flex: 0 0 100%;
  }
}

/* #region Testimonials Styles */

.testimonial-faq-section {
  font-family: 'Poppins', Arial, sans-serif;
  background-color: #16324f;
}

.testimonial-col {
  padding: 48px 30px 0 0 ;
}

.testimonial-eyebrow {
  display: block;
  color: #6fa8d8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.testimonial-heading {
  font-family: 'Playfair Display', Georgia, serif;
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 28px;
}

.testimonial-swiper {
  padding-bottom: 8px;
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  height: 100%;
}
.testimonial-swiper .swiper-wrapper {
  align-items: stretch;
}

.testimonial-swiper .swiper-slide {
  height: auto;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #eef1f5;
  color: #16324f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 12px;
}

.testimonial-text {
  color: #4a5568;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.testimonial-card h5 {
  color: #16294f;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

.testimonial-card span {
  display: block;
  color: #8492a6;
  font-size: 12px;
  margin-bottom: 10px;
}

.testimonial-stars i {
  color: #f5a623;
  font-size: 12px;
  margin-right: 2px;
}

.testimonial-pagination {
  text-align: left;
  margin-top: 16px;
}

.testimonial-pagination .swiper-pagination-bullet {
  background-color: #ffffff;
  opacity: 0.4;
}

.testimonial-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.faq-col {
  background-color: #eef1f5;
  padding: 48px 35px;
}

.faq-heading {
  font-family: 'Playfair Display', Georgia, serif;
  color: #16294f;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.faq-subheading {
  color: #5b6472;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.faq-accordion .accordion-item {
  background: none;
  border: none;
  border-bottom: 1px solid #d7dde4;
  border-radius: 0;
}

.faq-accordion .accordion-button {
  background: none;
  color: #16294f;
  font-size: 14px;
  font-weight: 600;
  padding: 16px 4px;
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  content: '\f067';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  background-image: none;
  font-size: 12px;
  color: #16294f;
  transition: transform 0.25s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: '\f068';
  transform: rotate(0deg);
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #16294f;
  box-shadow: none;
}

.faq-accordion .accordion-body {
  color: #5b6472;
  font-size: 13px;
  line-height: 1.7;
  padding: 0 4px 16px;
}

@media (max-width: 575.98px) {
  .testimonial-col,
  .faq-col {
    padding: 40px 24px;
  }
}

.cta-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background:#0d1117;
}

.cta-overlay {
  background-color: rgba(15, 25, 38, 0.6);
  padding: 56px;
}

.cta-heading {
  font-family: 'Playfair Display', Georgia, serif;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-text {
  color: #dfe6ec;
  font-size: 14px;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 20px;
}

.cta-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.cta-contacts span {
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
}

.cta-contacts i {
  color: #ffffff;
  margin-right: 8px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  color: #16294f;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
}

.cta-btn:hover {
  background-color: #eef1f5;
  color: #16294f;
}

@media (max-width: 991.98px) {
  .testimonial-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-contacts {
    flex-direction: column;
    gap: 10px;
  }

  .text-lg-end {
    text-align: left !important;
    margin-top: 8px;
  }
}

@media (max-width: 575.98px) {
  .testimonial-col,
  .faq-col,
  .cta-overlay {
    padding: 40px 24px;
  }

  .testimonial-cards {
    grid-template-columns: 1fr;
  }
}