  .hero-section {
      padding: 60px 20px;
      background: linear-gradient(to bottom, #9EDDEF, #f5f7f8);
    }

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

    .hero-content {
      flex: 1;
    }

    .badge-hero {
      display: inline-block;
      background: #e0f3f8;
      color: #000;
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 14px;
      margin-bottom: 20px;
    }

    .hero-title {
      font-size: 36px;
      font-weight: bold;
      color: #222;
      margin-bottom: 15px;
      line-height: 1.3;
    }

    .hero-title span {
      color: #41C4E0;
    }

    .hero-text {
      font-size: 16px;
      color: #555;
      line-height: 1.6;
      max-width: 500px;
    }

    .hero-image {
      flex: 1;
      text-align: center;
    }

    .hero-image img {
      max-width: 100%;
      height: auto;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero-section .container {
        flex-direction: column;
        text-align: center;
      }

      .hero-title {
        font-size: 28px;
      }

      .hero-text {
        margin: 0 auto;
      }
    }

    .custom-menu {
  padding: 0px 20px;
  background: #f7f7f7;
}

.custom-menu .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.custom-menu .image {
    margin-left: calc(-50vw + 51%);
}
/* TEXT CONTENT */
.custom-menu .content {
  flex: 1;
}

.custom-menu h2 {
     font-size: 36px;
    font-weight: bold;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.3;
}

.custom-menu h2 span {
  color: #2bb3c0;
}

.custom-menu p {
  margin-bottom: 20px;
  color: #000;
  line-height: 1.6;
}

.custom-menu ul {
  padding-left:0px;
  list-style: none;
}

.custom-menu ul li {
  margin-bottom: 12px;
  position: relative;
  color: #555;
      display: flex;
    align-items: flex-start;
    gap: 10px;
}



/* IMAGE RIGHT SIDE */
.custom-menu .image {
  flex: 1;
  text-align: right;
}

.custom-menu .image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
  .custom-menu .container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .custom-menu .image {
    text-align: center;
  }
}


/* Section */
.promotion {
  padding: 0px 0;
  background: #f8f9fb;
}

.promotion .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Left Content */
.promotion__content {
  flex: 1;
}

.promotion__title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
}

.promotion__title span {
  color: #2aaae2;
}

.promotion__subtitle {
  font-size: 18px;
  margin-bottom: 15px;
  color: #555;
}

.promotion__desc {
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
  color: #000;
}

/* List */
.promotion__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  list-style: none;
  padding-left:0px;
}
img.list-icon {
    width: 25px;
    height: 25px;
}
.promotion__list li {
  position: relative;
      display: flex;
    align-items: center;
    gap: 10px;
  font-size: 14px;
}


/* Right Image */
.promotion__image {
  flex: 1;
  text-align: center;
}

.promotion__image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .promotion .container {
    flex-direction: column;
    text-align: center;
  }

  .promotion__list {
    grid-template-columns: 1fr;
  }

  .promotion__image {
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .promotion__title {
    font-size: 24px;
  }

  .promotion__subtitle {
    font-size: 16px;
  }
}



/* Section */
.contact-section {
    background: #eaf9ff;
    padding: 80px 0;
}

/* Main Box */
.contact-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    box-shadow: 0px 15px 25px 0px rgba(158, 221, 239, 0.5);
}

/* Left Side */
.contact-left {
    width: 45%;
}

.contact-left h1 {
    font-size: 39px;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-left p {
    color: black;
    line-height: 1.7;
    margin-bottom: 40px;
    font-size: 16px;
}

.info-box {
    margin-bottom: 25px;
}

.info-box i {
    color: black;
    font-size: 18px;
    margin-right: 10px;
}

.info-box h3 {
    display: inline-block;
    color: black;
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

textarea {
    font-size: 14px;
    letter-spacing: 2%;
}

.info-box h2 {

    font-weight: 500;
    margin-left: 30px;
    line-height: 32px;
    font-size: 16px;
    color: black;
    margin-left: 30px;
    line-height: 25px;

}

/* Right Side */
.contact-right {
    width: 50%;
}

.contact-right h2 {
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 700;
}

input[type="text"] {
    font-size: 14px;
    color: rgb(173, 181, 189);
    letter-spacing: 2%;
}

input[type="email"] {
    font-size: 14px;
    letter-spacing: 2%;
}

textarea {
    font-size: 14px;
    letter-spacing: 2%;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group {
    width: 100%;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
}

input,
textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
    font-size: 14px;
}

textarea {
    height: 140px;
    resize: none;
}

.contact-left p {
    color: black;
    line-height: 1.7;
    margin-bottom: 40px;
}

button.submit {
    cursor: pointer;
    margin-top: 30px;
    border-radius: 11px;
    font-size: 18px;
    font-weight: 700;
    padding: 11px 25px;
    background: #2ec7f0;
    color: #fff;
    border: none;
    cursor: pointer;
}

button:hover {
  background: #41c4e0;
   color: #ffffff;
}

/* Footer */

.footer-section {
    background: #000;
    padding: 70px 0 20px;
    color: #fff;
}

/* .container {
    max-width: 1200px;
    margin: auto;
} */

.footer-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 70px;
    flex-wrap: wrap;
}

/* --  COLUMN 1 --*/
.column-one {
    max-width: 280px;
}

.column-one img {
    margin-bottom: 20px;
    width: 92%;
}

.footer-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: #d1d1d1;
    margin-bottom: 25px;
}

.social-media-icon {
    display: flex;
    gap: 15px;
}

.social-media-icon a {
    background: #fff;
    color: #000;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
    padding: 7px 9px;
}

.social-media-icon a:hover {
    background: #f5f5f5;
}

/* --  COMMON TITLES --*/
.column-two h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 19px;
    color: #fff;
}

.column-three h4 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.column-four h2 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 17px;
    color: #fff;
}

/* --  LIST STYLING -- */
.footer-first-list {
    list-style: none;
    padding-left: 10px;
}

.footer-second-list {
    list-style: none;
    padding-left: 10px;
}

.footer-forth-list {
    list-style: none;
    padding-left: 10px;

}

.footer-first-list li,
.footer-second-list li,
.footer-forth-list li {
    margin-bottom: 16px;
}

.footer-first-list li a {
    text-decoration: none;
    color: #d8d8d8;
    font-size: 16px;
    line-height: 1.6;
    transition: 0.3s;
}

.footer-second-list li a {
    text-decoration: none;
    color: #d8d8d8;
    font-size: 16px;
    line-height: 1.6;
    transition: 0.3s;
}

.footer-forth-list li a {
    text-decoration: none;
    color: #d8d8d8;
    font-size: 16px;
    line-height: 1.6;
    transition: 0.3s;
}

.footer-first-list li a:hover,
.footer-second-list li a:hover,
.footer-forth-list li a:hover {
    color: #fff;
}

/* --   CONTACT ICONS -- */
.footer-forth-list li a i {
    margin-right: 12px;
    color: #fff;
    min-width: 20px;
}




/* -- FOOTER BOTTOM--*/
.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #bdbdbd;
    padding: 10px;
}

/* --   RESPONSIVE --*/
@media (max-width: 991px) {
    .footer-wrapper {
        flex-direction: column;
        gap: 30px;
        margin-left: 20px;
    }

    .column-two h3,
    .column-three h4,
    .column-four h2 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .footer-section {
        padding: 50px 0 20px;
    }

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

    .column-one,
    .column-two,
    .column-three,
    .column-four {
        width: 100%;
    }

    .column-two h3,
    .column-three h4,
    .column-four h2 {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .footer-subtitle {
        font-size: 15px;
    }

    .footer-bottom {
        font-size: 13px;
    }
}






/* Responsive */
@media(max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 25px;
    }

    .contact-left,
    .contact-right {
        width: 100%;
    }

    .form-row {
        flex-direction: column;
    }
}


/* Section */
.faq {
  padding: 60px 20px;
}

.faq__container {
  max-width: 900px;
  margin: 0 auto;
}

/* Header */
.faq__header {
  text-align: center;
  margin-bottom: 40px;
}

.faq__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 18px;
  border: 0.1rem solid rgba(65, 196, 224, 1);
  border-radius: 18px;
box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0.12);
  font-size: 20px;
  font-weight: 500;
  color: #222;
  background: rgba(255, 255, 255, 1);
}

/* Icon circle */
.faq__tag i {
display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(65, 196, 224, 1);
    border-radius: 50%;
    color: rgba(65, 196, 224, 1);
    font-size: 14px;
    font-weight: bold;
}

.faq__title {
  font-size: 40px;
    margin-bottom: 10px;
    font-weight: 600;
}

.faq__subtitle {
  
    font-size: 18px;
    color: rgba(25, 25, 25, 1);
    font-weight: 400;

}

/* FAQ List */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Item */
.faq__item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(224, 252, 251, 1);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0px 5px 15px 0px rgba(25, 33, 61, 0.06);
}

/* Question */
.faq__question {
 width: 100%;
    padding: 20px 18px;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Icon */
.faq__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(65, 196, 224, 1);
  position: relative;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: #fff;
}

.faq__icon::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__icon::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Answer */
.faq__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__answer p,
.faq__answer ul {
  margin-bottom: 10px;
}

.faq__answer ul {
  padding-left: 20px;
}

/* Active state */
.faq__item.active .faq__answer {
  max-height: 500px;
  padding: 10px 20px 20px;
  font-size: 17px;
  font-weight: 400;
}

.faq__item.active .faq__icon::after {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .faq__title {
    font-size: 24px;
  }

  .faq__question {
    font-size: 15px;
  }
}

/* services section style start */
 
    /* ── Section wrappers ── */
    .services-ordering-section,
    .services-menu-section,
    .services-revenue-section, 
    .services-brand-section,
    .services-growth-section, .services-growthsecond-section{
      padding: 40px 0;
    }

    /* ── Headings ── */
     .service-heading {
    font-size: 40px;
    font-weight: 700;
    color: rgba(0, 0, 0, 1);
    line-height: 42px;
}

    .service-heading .accent {
      color: #3ABFF8;
    }

    .service-subtitle {
     font-size: 20px;
    font-weight: 500;
    color: rgba(25, 25, 25, 1);
    line-height: 32px;
    }

    /* ── Feature list ── */
    .feature-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .feature-list li {
     display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 400;
    color: rgba(25, 25, 25, 1);
    margin-bottom: 14px;
    }

    .feature-list li:last-child {
      margin-bottom: 0;
    }

    /* Arrow icon badge */
    .icon-badge {
      flex-shrink: 0;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background-color: rgba(65, 196, 224, 1);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .icon-badge i {
      font-size: 16px;
    color: #ffffff;
    }

    /* ── Image placeholder card ── */
    .service-img-card {
      width: 100%;
      aspect-ratio: 4 / 3.5;
      border-radius: 24px;
      background: rgba(196, 196, 196, 1);
      position: relative;
      overflow: hidden;
      /* Layered shadow — "dormat" lifted effect */
      box-shadow:
        0 6px  16px rgba(20,  80, 120, 0.14),
        0 20px 48px rgba(58, 191, 248, 0.22),
        0 40px 80px rgba(58, 191, 248, 0.10);
    }

    /* Top-left sheen */
    .service-img-card::before {
      content: '';
      position: absolute;
      top: -40px;
      left: -40px;
      width: 60%;
      height: 60%;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, transparent 70%);
    }

    /* Inner bottom depth */
    .service-img-card::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 24px;
      box-shadow: inset 0 -8px 28px rgba(90, 160, 210, 0.3);
    }

    /* ── Divider ── */
    .section-hr {
      border: none;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(58,191,248,0.25), transparent);
      margin: 0 auto;
      max-width: 860px;
    }

    /* ── Responsive tweaks ── */
    @media (max-width: 767.98px) {
      .services-ordering-section,
    .services-menu-section,
    .services-revenue-section, 
    .services-brand-section,
    .services-growth-section, .services-growthsecond-section {
        padding: 20px 0;
      }
     .service-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: rgba(25, 25, 25, 1);
    line-height: 32px;
}
      .service-heading { font-size: 24px; }
      
      /* On mobile always show text below card */
      .order-mobile-img  { order: 1; }
      .order-mobile-text { order: 2; }
    }

/* services section style end */ 

/* about style start here */

/* -- About section --*/


section.About-section {
    padding: 30px;
} 

h2.About-main-title span {
    color: #41C4E0;
}

.About-wrapper {
    display: flex;
    justify-content: center;
    gap: 51px;
    align-items: center;
}

.About-content-part {
    width: 42%;
}

h2.About-main-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 130%;
}

.About-image-part img {
    width: 100%;
}

p.About-subtitle {
    font-size: 20px;
    font-weight: 400;
}

p.About-second-subtitle {
    font-size: 20px;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 767px) {
   
    .About-wrapper {
        flex-direction: column;
        gap: 20px;
    }


.About-content-part {
    width: 100%;
}
}

/* -- Challenges section --*/

section.challenges-section {
    padding: 30px;
}

h2.challenges-main-title span {
    color: #41C4E0;
}

.challenges-wrapper {
    display: flex;
    align-items: center;
    gap: 51px;
    justify-content: space-evenly;
}

.challenges-image img {
    width: 100%;
}

.challenges-content {
    width: 42%;
}

h2.challenges-main-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 130%;
}

p.challenges-subtitle {
    font-size: 20px;
    font-weight: 500;
}

ul.challenges-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 26px;
    padding-left: 0px;
}

ul.challenges-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 18px;
    font-weight: 400;
}

i.fa-solid.fa-check {
    background: #41C4E0;
    color: white;
    border-radius: 55px;
    padding: 7px 7px;
    text-align: center;
}

p.second-subtitle {
    font-size: 20px;
    margin-top: 33px;
}

/* Responsive */
@media (max-width: 767px) {
    .challenges-wrapper {
    flex-direction: column;
}

.challenges-content

 {
    width: 100%;
}

}

.Our-approach-section {
    padding: 30px;
}


.Our-approach-wrapper {
    position: relative;
    max-width: 1100px;
    margin: auto;
    border-radius: 20px;
    overflow: hidden;
    min-height: 320px;
    /* Background image */
   background: url("/frontend/image/Services Content.png") center/cover no-repeat;
    display: flex;
    align-items: center;
}


.Our-approach-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}


.blank-section {
    flex: 1;
}

.Our-approach-content {
    position: relative;
    max-width: 420px;
    padding: 42px;
    margin: 39px;
    background: #071827;
    color: #fff;
    border-radius: 16px;
    box-shadow: -6px 0 0 #00cfff;
    transform: skewX(-5deg);
}

/* Fix skew for text */
.Our-approach-content * {
    transform: skewX(5deg);
}


.Our-approach-main-title {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
}

.Our-approach-title {
    font-size: 17px;
    color: #00cfff;
    margin-bottom: 15px;
}

.Our-approach-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #d1d5db;
}


/* ------------------ RESPONSIVE ------------------ */

/* Tablet */
@media (max-width: 992px) {
    .Our-approach-wrapper {
        flex-direction: column;
        justify-content: flex-end;
    }

    .blank-section {
        display: none;
    }

    .Our-approach-content {
        max-width: 90%;
        margin: 20px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .Our-approach-section {
        padding: 40px 15px;
    }

    .Our-approach-content {
        padding: 20px;
        transform: none;
        box-shadow: 0 0 0 3px #00cfff;
    }

    .Our-approach-content * {
        transform: none;
    }

    .Our-approach-main-title {
        font-size: 18px;
    }

    .Our-approach-title {
        font-size: 14px;
    }

    .Our-approach-subtitle {
        font-size: 14px;
    }
}

/* achieve section */


.achieve-section {
    padding: 30px;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #000;
}

.section-title span {
    color: #4cc6eb;
}

.achieve-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
}

.achieve-box {
    display: flex;
    align-items: center;
    position: relative;
}

.icon-circle {
    border-radius: 50%;
    background: #58c7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding: 20px;
}

.icon-circle img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.content-box {
    background: #fff;
    border-radius: 50px;
    padding: 32px 30px 32px 55px;
    margin-left: -20px;
    width: 89%;
    box-shadow: 0 10px 30px 0 rgba(54, 198, 255, 0.5);
}

.content-box p {
    font-size: 20px;
    font-weight: 500;
    color: black;
    line-height: 1.5;
    margin-bottom: 0px;
}

/* Tablet */
@media (max-width: 991px) {
    .section-title {
        font-size: 34px;
    }

    .achieve-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .content-box p {
        font-size: 20px;
    }
}

/* about sttyle end here */