

/* Blue Button */
.btn-masco {
  --btn-bg: #31D1FF !IMPORTANT;
  --btn-color: #fff;
  --btn-border-width: 1px;
  --btn-border-color: #31D1FF!IMPORTANT;
  text-decoration: none  !important;
}

/* **New About Section** */
.about-section {
    padding: 120px 0;
    background: #fbfbfb !important;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.about-badge {
    width: 106px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #31D1FF;
    color: #fff;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    margin: 0 auto 24px;
}

.about-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    align-items: center;
}

.about-col-image {
    flex: 0 0 41.666%;
    max-width: 41.666%;
    padding: 0 15px;
    margin-left: 8.333%;
}

.about-col-content {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
}

.about-content {
    padding: 0;
}

.about-text-block {
    padding: 20px 0;
}

.about-title {
    font-size: 55px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000;
}

.about-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #555;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 187px;
    height: 48px;
    background: #31D1FF !important;
    color: #fff !important;
    border-radius: 8px;
    padding: 14px;
    text-decoration: none !important;
    box-shadow: inset 0px 2.34px 1.17px rgba(255,255,255,0.25),
                inset 0px -4.67px 2.34px rgba(0,0,0,0.25),
                0px 0px 0px 4.67px rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.about-cta-btn:hover {
    background: #1fc2ee !important;
    transform: translateY(-2px);
    box-shadow: inset 0px 2px 1px rgba(255,255,255,0.35),
                inset 0px -5px 3px rgba(0,0,0,0.35),
                0px 8px 20px rgba(0,0,0,0.25),
                0px 0px 0px 4px rgba(255,255,255,0.12);
}

/* Features Section */
.about-features-section {
    padding: 60px 0;
}

.about-features-container {
    width: 100%;
}

.about-features-wrapper {
    display: flex;
    gap: 150px;
    margin: auto;
    max-width: 1280px;
}

/* LEFT SIDE */
.about-features-cards {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.about-feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.11) !important;
}

.about-icon-box {
    width: 32px;
    height: 32px;
    padding: 8px;
    border-radius: 5.33px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2f8ff;
}

.about-feature-card h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 25.2px;
    letter-spacing: -0.18px;
}

/* RIGHT TESTIMONIAL */
.about-testimonial-box {
    flex: 1;
    padding: 20px;
}

.about-stars {
    color: #000;
    margin-bottom: 10px;
    font-size: 20px;
}

.about-testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 600 !important;
    margin-bottom: 15px;
    width: 95%;
}

.about-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-user img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.about-user span {
    font-size: 14px;
    color: #484848;
    line-height: 1.6;
    font-weight: 500 !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-features-wrapper {
        gap: 80px;
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .about-section {
        padding: 80px 0;
    }

    .about-col-image {
        flex: 0 0 100%;
        max-width: 100%;
        margin-left: 0;
        margin-bottom: 40px;
    }

    .about-col-content {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .about-title {
        font-size: 42px;
    }

    .about-features-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .about-features-cards {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .about-feature-card {
        width: 100%;
        height: auto;
        min-height: 130px;
    }

    .about-testimonial-box {
        padding: 20px 0;
    }

    .about-testimonial-text {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-title {
        font-size: 32px;
    }

    .about-description {
        font-size: 16px;
    }

    .about-features-cards {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .about-feature-card {
        padding: 14px;
        min-height: 100px;
    }

    .about-feature-card h4 {
        font-size: 15px;
        line-height: 1.4;
    }

    .about-testimonial-box {
        padding: 15px 0;
    }

    .about-testimonial-text {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 0px 0;
    }

    .about-image-wrapper {
      display: none;
    }

    .about-features-section {
        padding: 40px 0;
    }

    .about-title {
        font-size: 35px !important;
        font-weight: 400 !important;
    }

    .about-features-cards {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .about-feature-card {
        padding: 12px;
        min-height: 90px;
    }

    .about-feature-card h4 {
        font-size: 13px;
    }

    .about-icon-box {
        width: 28px;
        height: 28px;
        padding: 6px;
    }

    .about-icon-box img {
        width: 16px;
        height: 16px;
    }

    .about-cta-btn {
        width: 100%;
        max-width: 187px;
    }

    .about-user span {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .about-features-cards {
        grid-template-columns: 1fr;
    }

    .about-feature-card {
        min-height: 70px;
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }

    .about-feature-card h4 {
        font-size: 14px;
    }
}








/* Top Bar Styles */

.process-heading {
  font-size: 28px !IMPORTANT;
}

/* ****TopBar**** */

/*Header*/
.brand-logo img {
  max-height: 38px !important;
}

.site-header {
  /*box-shadow: 0px 23px 23px -13px #daebff;*/
}

.site-header {
  padding-top: 10px;
  padding-bottom: 10px;
  /*background-color: #fff;*/

}

/*humburger*/
@media (max-width: 991px) {
  .site-header .mobile-menu-trigger {
    background-color: #1463FF;
    border-radius: 2px;
  }
}

@media (max-width: 991px) {
  .site-header .mobile-menu-trigger span {
    background-color: #FFF !IMPORTANT;

  }
}

@media (max-width: 991px) {

  .site-header .mobile-menu-trigger span:before,
  .site-header .mobile-menu-trigger span:after {
    background-color: #fff !IMPORTANT;
  }
}



/* Brands Logo slider */
.brand-section {
  background-color: #fff;
}

.brands-logo-top-bottom {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.brand-section .logo-heading-new {
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .brand-section .logo-heading-new {
    margin-bottom: 20px;
  }
}

@media (min-width: 1200px) {
  .brand-section .logo-heading-new {
    margin-bottom: 20px;
  }
}

@media (min-width: 1400px) {
  .brand-section .logo-heading-new {
    margin-bottom: 20px;
  }
}

.brand-section .logo-section-heading-new {
  font-weight: 500;
  text-align: center;
  margin-bottom: 5px;
  font-size: 22px;
  line-height: 1.4;
  color: #000;
  font-family: var(--font-family-base);
}

/* Brands Logo slider */
 .heading-md {
  font-weight: 500 !IMPORTANT;
}

@media (min-width: 1200px) {
  .heading-md {
    font-size: 42px;
  }
}

.section-3-heading {
  font-size: 34px !IMPORTANT;
}

.index-section-3 {
  padding-top: 30px;
}


.home-5_feature-section-wrapper {
  padding-top: 60px;
}

.section-4-new {
  background-color: #f4feff;
}

.custom-box {
  border: 1px solid #ddd;
  /* Border color */
  border-radius: 8px;
  /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* Shadow effect */
  padding: 28px;
  background-color: #fff;
  /* White background */
  text-align: center;
  transition: transform 0.3s ease;
  /* Smooth hover effect */
}

.custom-box:hover {
  transform: translateY(-5px);
  /* Hover animation */
}

.custom-box .icon {
  font-size: 40px;
  /* Icon size */
  color: #4a4a4a;
  /* Icon color */
  margin-bottom: 15px;
  /* Space below icon */
}

.custom-box h3 {
  font-size: 20px;
  font-weight: bold ! IMPORTANT;
  color: #333;
  margin-bottom: 10px;
  /* Space below heading */
}

.custom-box p {
  color: #555;
  /* Text color */
}

.feature-widget-2__icon img {
  width: 50px;
  height: 50px;
}

.feature-widget-2__icon {
  margin-bottom: 0px;
}

.section-heading {
  text-align: center;
  margin-bottom: 10px;
  /* Space below heading */
  font-size: 24px;
  font-weight: 700;
  color: #333;
  /* Heading color */
  line-height: 1.33;
}


@media (min-width: 1200px) {
  .home-5_feature-section-wrapper {
    padding-top: 50px !IMPORTANT;
  }
}





/*Services Section*/

.home-1_service-section-wrapper {
  padding-top: 60px;
}


/*Faqs Section */
.section-padding-120 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.faqs-button {
  margin-top: 30px;
}





/* Blogs Section Start */
.padding-top-120 {
  padding-top: 40px;
}

.distance-btw-blogandheading {
  margin-bottom: 40px !important;
}


/*custom for contact us section on each page*/
.contact-us-page-margin-top-150 {
  margin-top: 150px;
}

.padding-top-120 {
  padding-top: 40px;
}

.padding-bottom-120 {
  padding-bottom: 50px;
}

.contact-content-space {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

@media (min-width: 992px) {
  .contact-content-space {
    row-gap: 25px;
  }
}

@media (min-width: 1200px) {
  .contact-content-space {
    row-gap: 30px;
  }
}

@media (min-width: 1400px) {
  .contact-content-space {
    row-gap: 40px;
  }
}

/*custom for contact us section on each page End*/




/*Footer Section Start*/
.footer-cta-new {
  background: #F5F5F5 !important;
}

.padding-top-100 {
  padding-top: 40px;
}

.footer-padding-default {
  padding-top: 50px;
}

/* Footer Section End */




/* ========== Web Dev  ============= */
.home-5_process-devider {
  padding-top: 60px;
  padding-bottom: 60px;
}

.process-section {
  background: #FFF;
}

.section-heading-margin {
  margin-bottom: 40px;
}



/*Hero Section*/

/* Default: Hide the contact form */
.contact_form-row {
  display: none;
}

/* Mobile and Tablet: Show form after the heading */
@media (max-width: 991px) {
  .contact_form-row {
    display: flex;
    justify-content: center;
    margin-top: 5px;

  }

  .home-1_hero-content {
    order: -1;
    /* Ensure the heading appears first */
  }

  .home-1_hero-image,
  .home-1_hero-newsletter {
    display: none;
  }
}

/* Hide contact form on desktop */
@media (min-width: 992px) {
  .contact_form-row {
    display: none;
  }
}

.mobile-form-heading {
  font-weight: 600;
  text-align: center;
}


.form-box-style__form-wrapper {
  padding: 20px 5px 10px 5px;
}

@media (max-width: 600px) {
  .contact_form-row {
    display: flex;
    justify-content: center;
    margin-top: 5px;

  }

  /*.heading-xxl{*/
  /*    font-weight: 700 !IMPORTANT;*/
  /*}*/
  @media (min-width: 1400px) {
    .heading-xxl {
      font-size: 78px !IMPORTANT;
    }
  }

  @media (min-width: 1400px) {
    .home-1_hero-section {
      padding-top: 130px !IMPORTANT;
      padding-bottom: 50px !IMPORTANT;
    }
  }

  .home-1_hero-section {

    padding-bottom: 50px !IMPORTANT;
  }

  /*@media (max-width: 600px) {*/
  /*  .home-1_hero-image {*/
  /*    display: none !IMPORTANT;*/
  /*  }*/
  /*}*/

  @media (max-width: 600px) {
    .heading-xxl {
      font-weight: 600 !IMPORTANT;
      font-size: 36px !IMPORTANT;
      /* Include padding and border */
    }

    .site-header {
      padding-top: 8px;
      padding-bottom: 8px;
    }

    @media (max-width: 600px) {
      .home-1_hero-section {
        padding-top: 100px;
      }

      .site-header {
        padding-top: 0px !IMPORTANT;
        padding-bottom: 0px !IMPORTANT;
      }
    }

    /*Top Space for Ipad*/
    @media (min-width: 768px) {
      .home-1_hero-section {
        padding-top: 80px;
        padding-bottom: 80px;
      }

      .site-header {
        padding-top: 3px !IMPORTANT;
        padding-bottom: 3px !IMPORTANT;
      }
    }

    .country-background {
      background-color: #ffad57;
      /* This  */
      padding: 0 5px;
      line-height: 0.9;
      transform: rotate(-1deg) !important;
      display: inline-block;
    }

    .form-box-style__form-wrapper .form-control {
      border: 1px solid rgba(10, 16, 47, 0.5);
      border-radius: 8px;
      padding: 10px 20px;
      width: 100%;
      color: rgba(10, 16, 47, 0.5);
      box-shadow: none;
    }

    .bg-cutom-mobile {
      background-color: #fff !IMPORTANT;
    }



    @media (max-width: 600px) {
      .home-1_hero-section {
        padding-top: 100px;
      }
    }

    /*Top Space for Ipad*/
    @media (min-width: 768px) {
      .home-1_hero-section {
        padding-top: 80px;
        padding-bottom: 80px;
      }
    }

    .bg-cutom-mobile .form-control.textarea {
      height: 150px;
      border-radius: 12px;
    }

    .custom-mobile-btn {
      padding-top: 10px;
      padding-bottom: 10px;
      border-radius: 3px ! IMPORTANT;
    }

    /*Section 3*/


    /*Webdev*/

    @media (max-width: 992px) {

      /* Change the order of the columns */
      .change-order {
        display: flex;
        /* Make sure the row is a flex container */
        flex-direction: column-reverse;
        /* Reverse the order of the columns */
      }
    }

    @media (min-width: 768px) {
      .change-order {
        display: flex;
        /* Make sure the row is a flex container */
        flex-direction: column-reverse;
        /* Reverse the order of the columns */
      }
    }

    .pricing-control-2 {
      max-width: 360px !IMPORTANT;
      min-width: 360px !IMPORTANT;
    }


    /* SEO */
    @media (min-width: 1400px) {
      #smm-page-heading {
        font-size: 78px ! IMPORTANT;
      }
    }

    @media (min-width: 1400px) {
      .heading-xl--general-sans {
        font-size: 80px !IMPORTANT;
      }
    }

    @media (min-width: 1200px) {
      .home-5_hero-section {
        padding-bottom: 50px !IMPORTANT;
      }
    }

    /*Graphic Design*/
    @media (min-width: 1400px) {
      .heading-xl--general-sans {
        font-size: 80px;
      }
    }

    .gd-btn {
      background-color: #30BB78 !IMPORTANT;
      btn-color: #fff;
      btn-border-width: 1px;
      btn-border-color: #30BB78 !IMPORTANT;
    }

    /*SSM*/
    @media (min-width: 1400px) {
      .heading-xl {
        font-size: 80px;
      }
    }

    @media (min-width: 1400px) {
      .pricing-card-2__price {
        font-size: 66px !important;
      }
    }

    /*Service Section button*/
    .section-heading__button.service-section-btn {
      display: flex;
      /* Use flexbox */
      justify-content: center;
      /* Center horizontally */
      align-items: center;
      /* Center vertically */
      text-align: center;
      /* Optional, ensures text alignment */
      margin-top: 20px;
      /* Optional, adds spacing if needed */
    }

/* ============================================================
   WHY CHOOSE US — Sticky Stacked Cards
   All rules scoped to .stack-section / .stack-card.
   The matching JS lives in js/stack-cards.js.
   ============================================================ */

/* Tunable header-height offset — JS sets --stack-top at runtime */
:root {
  --stack-top: 120px; /* fallback; overwritten by stack-cards.js */
}

/* ── Section wrapper ── */
.stack-section {
  position: relative;
  overflow: visible; /* must NOT be hidden — breaks sticky */
}

/* ── Heading & subtitle ── */
.wcu-main-title {
  font-size: 56px;
  font-weight: 500;
  color: #000;
  text-align: center;
  margin-bottom: 12px;
}
.wcu-subtitle {
  font-size: 18px;
  color: #555;
  text-align: center;
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 576px) {
  .wcu-main-title { font-size: 28px; }
  .wcu-subtitle   { font-size: 15px; }
}

/* ── Sticky scroll anchor (no visual styles here) ── */
.stack-section .stack-card {
  position: sticky;
  /* Staggered offset: card 1 → 104px, card 2 → 118px, card 3 → 132px
     --i is set inline on each card via style="--i:N"                 */
  top: calc(var(--stack-top) + (var(--i, 1) * 14px));
  margin: 0 auto 120px auto; /* generous bottom margin = scroll travel */
  width: 100%;
  box-sizing: border-box;
  /* Ascending z-index so later cards naturally paint on top */
  z-index: calc(10 + var(--i, 1));
}

/* ── Visible card shell — all transitions live here ── */
.stack-section .stack-card .card-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60vh;
  gap: 40px;
  border-radius: 25px;
  padding: 50px;
  overflow: hidden;
  box-sizing: border-box;
  transform-origin: center top;
  will-change: transform, filter, opacity;
  transition:
    transform 0.5s cubic-bezier(.22,.61,.36,1),
    filter    0.5s cubic-bezier(.22,.61,.36,1),
    opacity   0.5s cubic-bezier(.22,.61,.36,1);
}

/* ── Depth state: one level behind ── */
.stack-section .stack-card.is-behind .card-content {
  transform: scale(0.93) translateY(-20px);
  filter:    blur(5px);
  opacity:   0.78;
}

/* ── Depth state: two or more levels behind ── */
.stack-section .stack-card.is-behind-2 .card-content {
  transform: scale(0.87) translateY(-38px);
  filter:    blur(8px);
  opacity:   0.50;
}

/* ── Card inner typography & layout ── */
.stack-section .card-content .text-section { flex: 1; }

.stack-section .card-content h2 {
  font-size: 52px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1.1;
}
.stack-section .card-content .sub-heading {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 15px;
  opacity: 0.85;
}
.stack-section .card-content p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.75;
  max-width: 85%;
  margin-bottom: 30px;
}

.stack-section .badge {
  display: inline-block;
  background: rgba(0,0,0,0.08);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: none;
  color: #1a1a1a;
}

.stack-section .btn-custom {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #1a1a1a;
  color: #fff;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.3s ease, background 0.3s ease;
  border: none;
}
.stack-section .btn-custom:hover {
  transform: translateX(5px);
  background: #2d2d2d;
  color: #fff;
}
.stack-section .btn-custom i { font-size: 14px; }

.stack-section .image-section {
  flex: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.stack-section .image-section img {
  max-width: 100%;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* ── Reduced-motion: no transforms / blur ── */
@media (prefers-reduced-motion: reduce) {
  .stack-section .stack-card .card-content { transition: none; }
  .stack-section .stack-card.is-behind  .card-content,
  .stack-section .stack-card.is-behind-2 .card-content {
    transform: none;
    filter:    none;
    opacity:   1;
  }
}

/* ── Mobile (< 992px): stacking completely off ── */
@media (max-width: 991.98px) {
  .stack-section .stack-card {
    position: static;
    margin-bottom: 32px;
    z-index: auto;
  }
  .stack-section .stack-card .card-content {
    height: auto;
    min-height: 40vh;
    padding: 30px 24px;
    transform: none !important;
    filter:    none !important;
    opacity:   1    !important;
  }
  .stack-section .card-content h2     { font-size: 30px; }
  .stack-section .card-content .sub-heading { font-size: 16px; }
  .stack-section .card-content { flex-direction: column; }
  .stack-section .image-section img { max-height: 220px; }
}

/* ── Page number watermark ── */
.stack-section .page-number {
  position: absolute;
  bottom: 30px;
  right: 40px;
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  opacity: 0.08;
}
@media (max-width: 992px) {
  .stack-section .page-number { font-size: 50px; bottom: 20px; right: 25px; }
}
@media (max-width: 655px) {
  .stack-section .page-number { font-size: 40px; }
}

/* ── Card background colors (on .card-content so they respect border-radius) ── */
.card-1 .card-content { background: #fff1df; color: #1a1a1a; }
.card-2 .card-content { background: #ebffe0; color: #1a1a1a; }
.card-3 .card-content { background: #d8f1ff; color: #1a1a1a; }
.card-4 .card-content { background: #ffe5f9; color: #1a1a1a; }
.card-5 .card-content { background: linear-gradient(135deg, #b8d4e3, #8bbccc); color: #1a1a1a; }
.card-6 .card-content { background: linear-gradient(135deg, #e8d5b7, #d4b896); color: #1a1a1a; }
.card-7 .card-content { background: linear-gradient(135deg, #c9d8b8, #aec29a); color: #1a1a1a; }
.card-8 .card-content { background: linear-gradient(135deg, #f0c5d8, #e8aec8); color: #1a1a1a; }

/* per-card page-number color */
.stack-section .card-1 .page-number,
.stack-section .card-2 .page-number,
.stack-section .card-3 .page-number,
.stack-section .card-4 .page-number,
.stack-section .card-5 .page-number,
.stack-section .card-6 .page-number,
.stack-section .card-7 .page-number,
.stack-section .card-8 .page-number { color: rgba(26, 26, 26, 0.08); }

/* ── Margin reset scoped to stack section ── */
.stack-section h1,
.stack-section h2,
.stack-section p {
  margin: 0;
}