
:root{
  --brand-blue-dark:#002b69;
  --brand-blue:#004aab;
  --brand-blue-light:#005ecb;
  --brand-orange:#ff7a00;
  --brand-text:#061b4d;
  --brand-light:#f4f9ff;
}/* Promoter Header */
.promoter-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 999;
  background: #ffffff;
}
.promoter-navbar {
  width: 100%;
  background: #ffffff;
  box-shadow: 0 4px 22px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 999;
}

.promoter-nav-wrap {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.promoter-logo img {
  width: 170px;
  height: auto;
  display: block;
}

.promoter-nav > ul {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.promoter-nav > ul > li {
  position: relative;
}

.promoter-nav > ul > li > a {
  color: #061b4d;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 34px 0;
  transition: 0.3s ease;
}

.promoter-nav > ul > li > a:hover {
  color: #ff6b00;
}

.promoter-dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 260px;
  background: #ffffff;
  padding: 10px 0;
  margin: 0;
  list-style: none;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  z-index: 9999;
  display: block;
}

.promoter-dropdown:hover .promoter-dropdown-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.promoter-dropdown-list li {
  display: block;
  width: 100%;
}

.promoter-dropdown-list li a {
  display: block;
  width: 100%;
  padding: 14px 20px;
  color: #061b4d;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.3s ease;
}

.promoter-dropdown-list li a:hover {
  background: #f5f9ff;
  color: #ff6b00;
  padding-left: 28px;
}

.promoter-dropdown > a i {
  transition: 0.3s ease;
}

.promoter-dropdown:hover > a i {
  transform: rotate(180deg);
}

.promoter-menu-btn,
.promoter-close-btn {
  display: none;
  border: none;
  background: #ff6b00;
  color: #ffffff;
}

.promoter-menu-btn {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  font-size: 26px;
}

.promoter-close-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 18px;
}

.promoter-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.promoter-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* iPad + Mobile */
@media (max-width: 991px) {
  .promoter-nav-wrap {
    min-height: 78px;
  }

  .promoter-logo img {
    width: 145px;
  }

  .promoter-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .promoter-nav {
    position: fixed;
    top: 0;
    left: -330px;
    width: 310px;
    max-width: 88%;
    height: 100vh;
    background: #ffffff;
    z-index: 9999;
    padding: 28px 24px;
    transition: 0.4s ease;
    box-shadow: 8px 0 30px rgba(0,0,0,0.18);
    overflow-y: auto;
  }

  .promoter-nav.active {
    left: 0;
  }

  .promoter-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-bottom: 28px;
  }

  .promoter-nav > ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .promoter-nav > ul > li {
    width: 100%;
    border-bottom: 1px solid #e8eef7;
  }

  .promoter-nav > ul > li > a {
    width: 100%;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 16px;
  }

  .promoter-dropdown-list {
    position: static;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
    background: #f8f9ff;
    padding: 0;
    margin: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .promoter-dropdown.active .promoter-dropdown-list {
    display: block;
  }

  .promoter-dropdown-list li {
    border-bottom: none;
  }

  .promoter-dropdown-list li a {
    padding: 12px 15px;
    font-size: 15px;
  }

  .promoter-dropdown.active > a i {
    transform: rotate(180deg);
  }

  .promoter-dropdown:hover .promoter-dropdown-list {
    transform: none;
  }
}

@media (max-width: 575px) {
  .promoter-logo img {
    width: 130px;
  }
}
.promoters-hero {
    padding: 80px 0;
    background: #f7fbff;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 500;
    line-height: 1.1;
    color: #08276e;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #ff7a00;
}

.hero-content p {
    font-size: 24px;
    font-weight: 500;
    color: #08276e;
    margin-bottom: 25px;
}

.hero-line {
    width: 60px;
    height: 4px;
    background: #ff7a00;
    margin-bottom: 35px;
}

.hero-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-features div {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 15px 18px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.hero-features i {
    width: 55px;
    height: 55px;
    background: #08276e;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.hero-features span {
    color: #08276e;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
}

.hero-image {
    text-align: right;
}

.hero-image img {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin-left: auto;
}

/* iPad */
@media (max-width: 991px) {

    .promoters-hero {
        padding: 60px 0;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .hero-line {
        margin: 0 auto 30px;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-image {
        text-align: center;
    }

    .hero-image img {
        margin: auto;
    }

    .hero-content h1 {
        font-size: 54px;
    }
}

/* Mobile */
@media (max-width: 576px) {

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-features {
        flex-direction: column;
    }

    .hero-features div {
        width: 100%;
    }
}
/* Promoters Footer */
.promoters-footer {
    background:linear-gradient(135deg,var(--brand-blue-dark),var(--brand-blue));
    color: #ffffff;
    padding: 46px 0 18px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1.55fr;
    gap: 55px;
    align-items: flex-start;
}

.footer-brand img {
    width: 155px;
    margin-bottom: 18px;
}

.footer-brand p,
.footer-contact p,
.footer-col ul li a {
    color: #dce9ff;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
}

.footer-brand p {
    max-width: 285px;
    margin-bottom: 22px;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 17px;
    transition: 0.3s ease;
}

.footer-social a:hover {
    background: #ff7a00;
}
.footer-bottom p a{
  text-decoration: none;

}
.footer-bottom p a:hover{
  color: #ff7a00;
}
.footer-col h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 22px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    transition: 0.3s ease;
}

.footer-col ul li a i {
    font-size: 12px;
}

.footer-col ul li a:hover {
    color: #ff7a00;
    transform: translateX(4px);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-contact p i {
    color: #ffffff;
    font-size: 22px;
    margin-top: 4px;
}

.footer-contact a {
    color: #dce9ff;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #ff7a00;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.14);
    margin-top: 42px;
    padding-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    color: #dce9ff;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
}

.footer-bottom span {
    color: #ff7a00;
    font-weight:500;
}

/* iPad */
@media (max-width: 991px) {
    .promoters-footer {
        padding: 42px 0 18px;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .promoters-footer {
        padding: 38px 0 16px;
        text-align: left;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand img {
        width: 135px;
    }

    .footer-col h4 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .footer-brand p,
    .footer-contact p,
    .footer-col ul li a,
    .footer-bottom p {
        font-size: 14px;
    }

    .footer-bottom {
        margin-top: 30px;
    }
}
/* Promoters Index */
.promoters-hero {
    background:
      linear-gradient(rgba(0,43,105,.86), rgba(0,43,105,.86));
  background-size: cover;
  background-position: center right;
  padding: 86px 0;
}

.hero-content h1 {
  color: #ffffff;
  font-size: 54px;
  font-weight: 500;
  line-height: 1.15;
}

.hero-content h1 span {
  color: #ff6b00;
  font-size: 72px;
}

.hero-content p {
  color: #ffffff;
  font-size: 22px;
  font-weight:500;
  margin: 18px 0 34px;
}

.hero-features {
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
}

.hero-features div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #08276e;
  font-weight:500;
}

.hero-features i {
  width: 50px;
  height: 50px;
  background: #052d83;
  color: #fff;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-size: 25px;
}

.promoters-about {
  padding: 55px 0 25px;
}

.about-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 10px;
}

.promoters-about h2,
.why-promoters h2 {
  color: #08276e;
  font-size: 34px;
  font-weight: 500;
}

.promoters-about h2 span,
.why-promoters h2 span {
  color: #ff6b00;
}

.section-line {
  width: 50px;
  height: 3px;
  background: #ff6b00;
  margin: 14px 0 24px;
}

.promoters-about p {
  color: #08276e;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 500;
  margin-bottom: 24px;
}

.promoters-stats {
  padding: 0 0 32px;
}

.stats-box {
  border: 1px solid #d6e1f2;
  border-radius: 8px;
  padding: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-right: 1px solid #d6e1f2;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item i {
  width: 65px;
  height: 65px;
  background: #edf4ff;
  color: #052d83;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 34px;
}

.stat-item h3 {
  color: #052d83;
  font-size: 36px;
  font-weight: 500;
  margin: 0;
}

.stat-item p {
  color: #08276e;
  margin: 0;
  font-size: 13px;
  font-weight: 500;
}

.why-promoters {
  padding: 10px 0 35px;
}

.why-text {
  max-width: 920px;
  margin: 0 auto 35px;
  color: #08276e;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}

.why-card {
  border: 1px solid #d6e1f2;
  border-radius: 8px;
  padding: 26px 12px;
  background: #fff;
  min-height: 145px;
}

.why-card i {
  color: #052d83;
  font-size: 42px;
  margin-bottom: 16px;
}

.why-card h4 {
  color: #08276e;
  font-size: 16px;
  font-weight:500;
  line-height: 1.35;
}

.promoters-cta {
  padding: 0 0 45px;
}

.cta-box {
  background: linear-gradient(90deg, #002b69, #003f91);
  border-radius: 6px;
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: center;
  overflow: hidden;
}

.cta-box a {
  background: rgba(0,0,0,.18);
  color: #fff;
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 26px;
  font-weight: 500;
  text-decoration: none;
}

.cta-box a > i {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  display: grid;
  place-items: center;
}

.cta-box a span {
  width: 45px;
  height: 45px;
  background: #ff6b00;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.cta-box p {
  color: #fff;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 500;
  margin: 0;
  padding: 20px 32px;
}

/* iPad */
@media (max-width: 991px) {
  .promoters-hero {
    text-align: center;
    padding: 70px 0;
    background:
      linear-gradient(rgba(255,255,255,.86), rgba(255,255,255,.86)),
      url("../images/promoters-hero.jpg");
    background-size: cover;
    background-position: center;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content h1 span {
    font-size: 54px;
  }

  .hero-features {
    justify-content: center;
  }

  .promoters-about {
    text-align: center;
  }

  .section-line {
    margin-left: auto;
    margin-right: auto;
  }

  .stats-box {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .stat-item {
    border-right: none;
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-box {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .promoters-hero {
    padding: 50px 0;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content h1 span {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .hero-features {
    flex-direction: column;
    align-items: center;
  }

  .about-img {
    height: 260px;
  }

  .promoters-about h2,
  .why-promoters h2 {
    font-size: 28px;
  }

  .stats-box,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    justify-content: flex-start;
  }

  .cta-box a {
    height: auto;
    padding: 22px;
    font-size: 22px;
  }

  .cta-box p {
    font-size: 15px;
    padding: 20px;
  }
}
/* Promoters About Page */
.promoters-about-hero {
  background:
    linear-gradient(90deg, rgba(0,43,105,.98) 0%, rgba(0,43,105,.88) 38%, rgba(0,43,105,.15) 100%),
    url("../images/about-hero.jpg");
  background-size: cover;
  background-position: center right;
  padding: 100px 0;
  color: #ffffff;
}

.about-hero-content h1 {
  font-size: 58px;
  font-weight: 500;
  margin-bottom: 18px;
}

.about-hero-content p {
  font-size: 26px;
  line-height: 1.45;
  font-weight: 500;
  margin-bottom: 24px;
}

.about-orange-line,
.company-line {
  width: 55px;
  height: 3px;
  background: #ff6b00;
}

.promoters-company {
  padding: 72px 0 45px;
}

.company-label {
  color: #ff6b00;
  font-size: 26px;
  font-weight: 500;
}

.company-line {
  margin: 12px 0 18px;
}

.promoters-company h2 {
  color: #08276e;
  font-size: 46px;
  font-weight: 500;
  margin-bottom: 32px;
}

.promoters-company p {
  color: #08276e;
  font-size: 17px;
  line-height: 1.9;
  font-weight: 500;
  margin-bottom: 28px;
}

.company-img img {
  width: 100%;
  height: 455px;
  object-fit: cover;
  border-radius: 12px;
}

.promoters-values {
  padding: 10px 0 35px;
}

.values-box {
  background: linear-gradient(135deg, #f3f8ff, #ffffff);
  border-radius: 12px;
  padding: 38px 28px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  box-shadow: 0 8px 28px rgba(0,0,0,.05);
}

.value-item {
  text-align: center;
  padding: 0 18px;
  border-right: 1px solid #cfdced;
}

.value-item:last-child {
  border-right: none;
}

.value-item i {
  color: #052d83;
  font-size: 52px;
  margin-bottom: 30px;
  display: inline-block;
}

.value-item h4 {
  color: #08276e;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 500;
  margin-bottom: 14px;
}

.value-item p {
  color: #08276e;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
  margin: 0;
}

.promoters-about-stats {
  padding: 0 0 50px;
}

.about-stats-box {
  background: linear-gradient(90deg, #002b69, #003f91);
  border-radius: 10px;
  padding: 28px 38px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.about-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border-right: 1px solid rgba(255,255,255,.22);
}

.about-stat:last-child {
  border-right: none;
}

.about-stat i {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,.12);
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 38px;
}

.about-stat h3 {
  color: #ff6b00;
  font-size: 38px;
  font-weight: 500;
  margin: 0;
}

.about-stat p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

/* iPad */
@media (max-width: 991px) {
  .promoters-about-hero {
    text-align: center;
    padding: 78px 0;
    background:
      linear-gradient(rgba(0,43,105,.88), rgba(0,43,105,.88)),
      url("../images/about-hero.jpg");
    background-size: cover;
    background-position: center;
  }

  .about-orange-line,
  .company-line {
    margin-left: auto;
    margin-right: auto;
  }

  .promoters-company {
    text-align: center;
  }

  .company-img img {
    height: 360px;
  }

  .values-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-item {
    border-right: none;
  }

  .about-stats-box {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .about-stat {
    border-right: none;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .promoters-about-hero {
    padding: 55px 0;
  }

  .about-hero-content h1 {
    font-size: 38px;
  }

  .about-hero-content p {
    font-size: 20px;
  }

  .promoters-company {
    padding: 50px 0 35px;
  }

  .company-label {
    font-size: 21px;
  }

  .promoters-company h2 {
    font-size: 34px;
  }

  .promoters-company p {
    font-size: 15px;
  }

  .company-img img {
    height: 260px;
  }

  .values-box,
  .about-stats-box {
    grid-template-columns: 1fr;
  }

  .about-stats-box {
    padding: 28px 22px;
  }

  .about-stat {
    justify-content: flex-start;
  }
}
/* Promoters Testimonials */
.testimonial-hero,
.testimonial-section {
  font-weight: 500;
}

.testimonial-hero {
  background:
    linear-gradient(90deg, rgba(0,43,105,.98) 0%, rgba(0,43,105,.88) 38%, rgba(0,43,105,.12) 100%),
    url("../images/testimonial-hero.jpg");
  background-size: cover;
  background-position: center right;
  padding: 115px 0;
  color: #ffffff;
}

.testimonial-hero-content h1 {
  font-size: 58px;
  font-weight: 500;
  margin-bottom: 20px;
}

.testimonial-hero-content p {
  font-size: 26px;
  line-height: 1.45;
  font-weight: 500;
  margin-bottom: 28px;
}

.testimonial-line {
  width: 55px;
  height: 3px;
  background: #ff6b00;
}

.testimonial-section {
  padding: 70px 0 75px;
  background: #ffffff;
}

.testimonial-title {
  margin-bottom: 45px;
}

.testimonial-title h2 {
  color: #08276e;
  font-size: 48px;
  font-weight: 500;
  margin-top: 16px;
}

.testimonial-title h2 span {
  color: #ff6b00;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38px;
  max-width: 1050px;
  margin: auto;
}

.testimonial-card {
  position: relative;
  min-height: 345px;
  background: #ffffff;
  border: 1px solid #dbe5f3;
  border-radius: 12px;
  padding: 42px 42px 36px;
  box-shadow: 0 8px 30px rgba(0,0,0,.04);
}

.quote-icon {
  width: 48px;
  height: 48px;
  background: #f0f5ff;
  color: #08276e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.quote-icon i {
  font-size: 36px;
  line-height: 1;
}

.stars {
  position: absolute;
  top: 45px;
  right: 48px;
  color: #ff6b00;
  font-size: 18px;
  letter-spacing: 3px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 20px;
}

.client-info img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  background: #eef3fb;
}

.client-info h3 {
  color: #08276e;
  font-size: 23px;
  font-weight: 500;
  margin-bottom: 10px;
}

.client-info span {
  width: 42px;
  height: 2px;
  background: #ff6b00;
  display: block;
}

.testimonial-card p {
  color: #08276e;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
}

.testimonial-control {
  width: 45px;
  height: 45px;
  background: #08276e;
  color: #ffffff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.testimonial-control:hover {
  background: #ff6b00;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.testimonial-control i {
  font-size: 24px;
}

/* iPad */
@media (max-width: 991px) {
  .testimonial-hero {
    text-align: center;
    padding: 80px 0;
    background:
      linear-gradient(rgba(0,43,105,.88), rgba(0,43,105,.88)),
      url("../images/testimonial-hero.jpg");
    background-size: cover;
    background-position: center;
  }

  .testimonial-line {
    margin-left: auto;
    margin-right: auto;
  }

  .testimonial-title h2 {
    font-size: 40px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 650px;
  }

  .testimonial-control {
    display: none;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .testimonial-hero {
    padding: 58px 0;
  }

  .testimonial-hero-content h1 {
    font-size: 38px;
  }

  .testimonial-hero-content p {
    font-size: 20px;
  }

  .testimonial-section {
    padding: 50px 0;
  }

  .testimonial-title h2 {
    font-size: 32px;
  }

  .testimonial-card {
    padding: 30px 22px;
    min-height: auto;
  }

  .stars {
    position: static;
    margin-bottom: 20px;
  }

  .client-info {
    gap: 18px;
  }

  .client-info img {
    width: 76px;
    height: 76px;
  }

  .client-info h3 {
    font-size: 20px;
  }

  .testimonial-card p {
    margin-left: 0;
    font-size: 15px;
  }
}
/* Ongoing Projects Page */
.project-hero,
.coming-project-section {
  font-weight: 500;
}

.project-hero {
  background:
    linear-gradient(90deg, rgba(0,43,105,.98) 0%, rgba(0,43,105,.88) 38%, rgba(0,43,105,.20) 100%),
    url("../images/ongoing-projects-hero.jpg");
  background-size: cover;
  background-position: center right;
  color: #ffffff;
  padding: 125px 0;
}

.project-hero-content h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 22px;
}

.project-line {
  width: 56px;
  height: 3px;
  background: #ff6b00;
  margin-bottom: 25px;
}

.project-hero-content p {
  font-size: 26px;
  line-height: 1.45;
  font-weight: 600;
  margin: 0;
}

.coming-project-section {
  padding: 72px 0 45px;
  background: #ffffff;
}

.coming-card {
  border: 1px solid #d7e1f0;
  border-radius: 10px;
  padding: 62px 35px 50px;
  text-align: center;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(0,0,0,.03);
  margin-bottom: 45px;
  animation: fadeUpProject .8s ease both;
}

.construction-icon img {
  width: 100%;
  max-width: 520px;
  margin-bottom: 25px;
}

.coming-card h2 {
  color: #08276e;
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 18px;
}

.coming-card p {
  color: #08276e;
  font-size: 19px;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 12px;
}

.project-contact-box {
  background: linear-gradient(135deg, #f3f8ff, #ffffff);
  border-radius: 10px;
  padding: 30px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  animation: fadeUpProject .9s ease both;
}

.project-contact-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.project-contact-left > i {
  min-width: 78px;
  width: 78px;
  height: 78px;
  background: #052d83;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 42px;
}

.project-contact-left h3 {
  color: #08276e;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.project-contact-left p {
  color: #08276e;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
  max-width: 670px;
}

.project-contact-box a {
  min-width: 260px;
  height: 64px;
  background: #ff6b00;
  color: #ffffff;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  text-decoration: none;
  font-size: 21px;
  font-weight: 700;
  transition: .3s ease;
}

.project-contact-box a:hover {
  background: #052d83;
  transform: translateY(-3px);
}

@keyframes fadeUpProject {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* iPad */
@media (max-width: 991px) {
  .project-hero {
    text-align: center;
    padding: 88px 0;
    background:
      linear-gradient(rgba(0,43,105,.86), rgba(0,43,105,.86)),
      url("../images/ongoing-projects-hero.jpg");
    background-size: cover;
    background-position: center;
  }

  .project-line {
    margin-left: auto;
    margin-right: auto;
  }

  .project-hero-content h1 {
    font-size: 48px;
  }

  .project-hero-content p {
    font-size: 23px;
  }

  .project-contact-box {
    flex-direction: column;
    text-align: center;
  }

  .project-contact-left {
    flex-direction: column;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .project-hero {
    padding: 60px 0;
  }

  .project-hero-content h1 {
    font-size: 38px;
  }

  .project-hero-content p {
    font-size: 19px;
  }

  .coming-project-section {
    padding: 48px 0 35px;
  }

  .coming-card {
    padding: 42px 20px 38px;
  }

  .construction-icon img {
    max-width: 300px;
  }

  .coming-card h2 {
    font-size: 32px;
  }

  .coming-card p {
    font-size: 16px;
  }

  .project-contact-box {
    padding: 28px 20px;
  }

  .project-contact-left > i {
    min-width: 68px;
    width: 68px;
    height: 68px;
    font-size: 34px;
  }

  .project-contact-left h3 {
    font-size: 23px;
  }

  .project-contact-box a {
    width: 100%;
    min-width: unset;
    font-size: 18px;
  }
}
/* Completed Projects Page */
.completed-hero {
  background:
    linear-gradient(90deg, rgba(0,43,105,.98) 0%, rgba(0,43,105,.88) 38%, rgba(0,43,105,.20) 100%),
    url("../images/completed-projects-hero.jpg");
  background-size: cover;
  background-position: center right;
}

.coming-soon-text {
  font-size: 32px;
  font-weight: 700;
  color: #ff6b00;
  margin-top: 20px;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .coming-soon-text {
    font-size: 26px;
  }
}
/* Contact Page */
.contact-hero,
.contact-info-section {
  font-weight: 500;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(0,43,105,.98) 0%, rgba(0,43,105,.88) 38%, rgba(0,43,105,.18) 100%);
  background-size: cover;
  background-position: center right;
  color: #ffffff;
  padding: 105px 0;
}

.contact-hero-content h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-line {
  width: 55px;
  height: 3px;
  background: #ff6b00;
  margin-bottom: 18px;
}

.contact-hero-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 22px;
}

.contact-hero-content h2 span {
  color: #ff6b00;
}

.contact-hero-content p {
  font-size: 22px;
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
}

.contact-info-section {
  padding: 36px 0 45px;
  background: #ffffff;
}

.contact-info-card {
  min-height: 270px;
  background: #ffffff;
  border: 1px solid #d7e1f0;
  border-radius: 12px;
  text-align: center;
  padding: 48px 25px 35px;
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
  transition: .3s ease;
}

.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,43,105,.12);
}

.contact-info-card i {
  width: 74px;
  height: 74px;
  background: #eef4ff;
  color: #052d83;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 36px;
  margin: 0 auto 28px;
}

.contact-info-card h3 {
  color: #08276e;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}

.contact-info-card p {
  color: #08276e;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
  margin: 0;
}

.contact-map-only {
  position: relative;
  margin-top: 40px;
  height: 560px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #d7e1f0;
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
}

.contact-map-only iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-address-card {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  background: #052d83;
  color: #ffffff;
  border-radius: 8px;
  padding: 24px 34px;
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 430px;
}

.map-address-card i {
  color: #ff6b00;
  font-size: 44px;
}

.map-address-card p {
  font-size: 17px;
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
}

/* iPad */
@media (max-width: 991px) {
  .contact-hero {
    text-align: center;
    padding: 80px 0;
    background:
      linear-gradient(rgba(0,43,105,.86), rgba(0,43,105,.86));
    background-size: cover;
    background-position: center;
  }

  .contact-line {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-hero-content h1 {
    font-size: 38px;
  }

  .contact-hero-content h2 {
    font-size: 34px;
  }

  .contact-hero-content p {
    font-size: 19px;
  }

  .contact-map-only {
    height: 460px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .contact-hero {
    padding: 58px 0;
  }

  .contact-hero-content h1 {
    font-size: 32px;
  }

  .contact-hero-content h2 {
    font-size: 28px;
  }

  .contact-hero-content p {
    font-size: 16px;
  }

  .contact-info-card {
    min-height: auto;
    padding: 38px 20px;
  }

  .contact-map-only {
    height: 390px;
  }

  .map-address-card {
    width: 88%;
    min-width: unset;
    padding: 20px;
    gap: 14px;
  }

  .map-address-card i {
    font-size: 34px;
  }

  .map-address-card p {
    font-size: 14px;
  }
}
.floating-contact {
    position: fixed;
    right: 22px;
    top: 270px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #ffffff;
}
.floating-contact a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.floating-contact a:nth-child(1) {
    background: #24d366;
}
.floating-contact a:nth-child(2) {
    background: #1d7df2;
}
.floating-contact a:nth-child(3) {
    background: #ff9416;
}
body.menu-open{
  overflow:hidden;
}

.promoter-menu-btn{
  display:none;
  border:0;
  background:#ff9416;
  color:#fff;
  width:42px;
  height:42px;
  border-radius:6px;
  font-size:24px;
}

.promoter-mobile-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  z-index:9998;
  opacity:0;
  visibility:hidden;
  transition:.3s ease;
}

.promoter-mobile-overlay.active{
  opacity:1;
  visibility:visible;
}

.promoter-mobile-menu{
  position:fixed;
  top:0;
  left:-320px;
  width:300px;
  max-width:86%;
  height:100vh;
  background:#fff;
  z-index:9999;
  padding:24px;
  overflow-y:auto;
  transition:.35s ease;
}

.promoter-mobile-menu.active{
  left:0;
}

.promoter-mobile-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:28px;
}

.promoter-mobile-head img{
  width:135px;
}

.promoter-mobile-head button{
  border:0;
  background:#ff9416;
  color:#fff;
  width:36px;
  height:36px;
  border-radius:50%;
}

.promoter-mobile-nav{
  list-style:none;
  margin:0;
  padding:0;
}

.promoter-mobile-nav li{
  border-bottom:1px solid #eee;
}

.promoter-mobile-nav li a,
.promoter-mobile-drop-btn{
  width:100%;
  padding:15px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border:0;
  background:transparent;
  color:#111827;
  font-size:15px;
  font-weight:600;
  text-decoration:none;
}

.promoter-mobile-drop-btn i{
  transition:.3s ease;
}

.promoter-mobile-drop-btn.active i{
  transform:rotate(180deg);
}

.promoter-mobile-dropdown{
  display:none;
  list-style:none;
  margin:0;
  padding:0 0 12px 15px;
}

.promoter-mobile-dropdown.show{
  display:block;
}

.promoter-mobile-dropdown li{
  border-bottom:0;
}

.promoter-mobile-dropdown li a{
  padding:10px 0;
  font-size:14px;
  color:#555;
}

@media(max-width:991px){
  .promoter-nav{
    display:none;
  }

  .promoter-menu-btn{
    display:flex;
    align-items:center;
    justify-content:center;
  }
}