/* Mega Menu CSS Start */



/* =========================================================
   GLOBAL
   ========================================================= */

.sc-mega-navigation,
.sc-mega-navigation *,
.sc-mega-navigation *::before,
.sc-mega-navigation *::after {
  box-sizing: border-box;
}

.sc-mega-navigation {
  width: 100%;

  position: relative;

  z-index: 99999;

  font-family: "Bricolage Grotesque", sans-serif;
}

/* =========================================================
   TOP BAR
   ========================================================= */

.sc-top-bar {
  width: 100%;

  min-height: 50px;

  padding: 0 22px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  position: relative;

  background: linear-gradient(90deg, #2f69e8 0%, #2cd1f7 100%);
  backdrop-filter: blur(32.71px);
  -webkit-backdrop-filter: blur(32.71px);

  border-radius: 35px;

  color: #ffffff;
}

/* =========================================================
   TOP MENU
   ========================================================= */

.sc-top-menu {
  height: 48px;

  display: flex;

  align-items: center;

  gap: 30px;
}

/* =========================================================
   NAV ITEM
   ========================================================= */

.sc-nav-item {
  height: 100%;

  display: flex;

  align-items: center;

  position: static;
}

/* =========================================================
   TOP NAV LINK

   Font:
   Bricolage Grotesque
   Weight: 600
   Size: 18px
   Title Case
   ========================================================= */

.sc-nav-link {
  height: 100%;

  display: inline-flex;

  align-items: center;

  gap: 5px;

  color: #ffffff !important;

  text-decoration: none !important;

  font-family: "Bricolage Grotesque", sans-serif;

  font-size: 18px;

  font-weight: 600;

  line-height: 1;

  text-transform: capitalize;

  white-space: nowrap;

  transition: opacity 0.2s ease;
}

.sc-nav-link:hover {
  color: #ffffff !important;

  opacity: 0.85;
}

/* =========================================================
   TOP ARROW
   ========================================================= */

.sc-nav-link > i {
  font-size: 10px;

  transition: transform 0.25s ease;
}

.sc-has-mega:hover .sc-nav-link > i {
  transform: rotate(180deg);
}

/* =========================================================
   PHONE
   ========================================================= */

.sc-phone {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  color: #ffffff !important;

  text-decoration: none !important;

  font-family: "Bricolage Grotesque", sans-serif;

  font-size: 18px;

  font-weight: 600;

  white-space: nowrap;

  transition: color 0.3s ease;
}

.sc-phone:hover {
  color: #f49b3c !important;
}

.sc-phone i {
  font-size: 13px;
}

/* =========================================================
   MEGA DROPDOWN

   IMPORTANT:
   Static nav item + absolute dropdown
   means dropdown is centered relative
   to the complete navigation bar.
   ========================================================= */

.sc-mega-dropdown {
  position: absolute;

  top: 100%;

  left: 50%;

  width: 100%;

  padding: 18px 18px 16px;

  background: #ffffff;

  border-radius: 5px;

  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.16);

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transform: translateX(-50%) translateY(12px);

  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;

  z-index: 999999;
}

/* =========================================================
   OPEN
   ========================================================= */

.sc-has-mega:hover .sc-mega-dropdown {
  opacity: 1;

  visibility: visible;

  pointer-events: auto;

  transform: translateX(-50%) translateY(0);
}

/* =========================================================
   THREE COLUMNS
   ========================================================= */

.sc-mega-columns {
  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  column-gap: 20px;

  align-items: start;
}

/* =========================================================
   COLUMN
   ========================================================= */

.sc-mega-column {
  min-width: 0;
}

/* =========================================================
   MEGA MENU HEADING

   Font:
   Bricolage Grotesque
   Weight: 600
   Size: 18px
   Title Case
   ========================================================= */

.sc-mega-heading {
  min-height: 30px;

  display: flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 10px;

  color: #111111;

  font-family: "Bricolage Grotesque", sans-serif;

  font-size: 18px;

  font-weight: 600;

  line-height: 1.2;

  text-transform: capitalize;

  white-space: nowrap;
}

/* =========================================================
   HEADING ICON
   ========================================================= */

.sc-heading-icon {
  width: 35px;

  height: 35px;
  aspect-ratio: 1/1;

  display: flex;

  align-items: center;

  justify-content: center;

  flex: 0 0 26px;

  border-radius: 50%;

  background: #2f69e81f;

  color: #2f69e8;

  font-size: 17px;
}

/* =========================================================
   MEGA MENU LIST
   ========================================================= */

.sc-mega-links {
  list-style: none;

  margin: 0;

  padding: 0;
}

/* =========================================================
   MEGA MENU LI

   Font:
   Bricolage Grotesque
   Weight: 600
   Size: 15px
   Title Case
   ========================================================= */

.sc-mega-links li {
  width: 100%;

  min-height: 38px;

  padding: 7px 9px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 12px;

  border-radius: 4px;

  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.sc-mega-links li a {
  min-width: 0;

  flex: 1;

  color: #111111 !important;

  text-decoration: none !important;

  font-family: "Bricolage Grotesque", sans-serif;

  font-size: 15px;

  font-weight: 600;

  line-height: 1.3;

  text-transform: capitalize;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

  transition: color 0.2s ease;
}

/* =========================================================
   RIGHT ARROW
   ========================================================= */

.sc-mega-links li > i {
  width: 18px;

  flex: 0 0 18px;

  text-align: right;

  color: #111111;

  font-size: 12px;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

/* =========================================================
   HOVER

   Text:
   #2F69E8

   Background:
   #2F69E81F
   ========================================================= */

.sc-mega-links li:hover {
  background: #2f69e81f;
}

.sc-mega-links li:hover a,
.sc-mega-links li:hover > i {
  color: #2f69e8 !important;
}

.sc-mega-links li:hover > i {
  transform: translateX(3px);
}

/* =========================================================
   DEFAULT ACTIVE ITEM
   ========================================================= */

.sc-mega-links li.sc-active {
  background: #2f69e81f;
}

.sc-mega-links li.sc-active a,
.sc-mega-links li.sc-active > i {
  color: #2f69e8 !important;
}

/* =========================================================
   CTA
   ========================================================= */

.sc-mega-cta {
  width: 100%;

  min-height: 72px;

  margin-top: 15px;

  padding: 12px 14px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  border-radius: 5px;

  background: linear-gradient(90deg, #2f69e8 0%, #172f75 100%);
}

/* =========================================================
   CTA LEFT
   ========================================================= */

.sc-cta-content-wrap {
  min-width: 0;

  display: flex;

  align-items: center;

  gap: 12px;
}

/* =========================================================
   ROCKET
   ========================================================= */

.sc-rocket-icon {
  width: 70px;

  height: 70px;

  aspect-ratio: 1/1;

  flex: 0 0 48px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: #ffffff;

  color: #2f69e8;

  font-size: 21px;
}

.sc-rocket-icon i {
  font-size: 33px;
}

/* =========================================================
   CTA TEXT
   ========================================================= */

.sc-cta-text {
  min-width: 0;
}

.sc-cta-text h3 {
  margin: 0 0 4px;

  color: #ffffff;

  font-family: "Bricolage Grotesque", sans-serif;

  font-size: 24px;

  font-weight: 600;

  line-height: 1.2;

  text-transform: capitalize;

  white-space: nowrap;
}

.sc-cta-text p {
  margin: 0;

  color: rgba(255, 255, 255, 0.85);

  font-family: var(--e-global-typography-text-font-family), Sans-serif;

  font-size: 14px;

  font-weight: 300;

  line-height: 1.35;
}

/* =========================================================
   CTA BUTTON
   ========================================================= */

.sc-cta-button {
  transition: transform 0.25s ease;
  height: 45px;

  padding: 0 18px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 7px;

  flex: 0 0 auto;

  border-radius: 25px;

  background: #ffffff;

  color: #7035e9 !important;

  text-decoration: none !important;

  font-family: "Bricolage Grotesque", sans-serif;

  font-size: 16px;

  font-weight: 600;

  text-transform: capitalize;

  white-space: nowrap;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.sc-cta-button i {
  font-size: 10px;
}

.sc-cta-button:hover {
  color: #ffffff !important;

  transform: scale(0.94);
  background: #f49b3c;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}


@media(min-width: 600px){

/* 3 items */
.sc-mega-columns:has(> :nth-child(3)):not(:has(> :nth-child(4))) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* 2 items */
.sc-mega-columns:has(> :nth-child(2)):not(:has(> :nth-child(3))) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {
  .sc-top-bar {
    padding: 0 18px;
  }

  .sc-top-menu {
    gap: 20px;
  }

  .sc-nav-link {
    font-size: 16px;
  }

  .sc-phone {
    font-size: 14px;
  }

  .sc-mega-dropdown {
    width: 100%;
  }

  .sc-mega-heading {
    font-size: 16px;
  }

  .sc-mega-links li a {
    font-size: 14px;
  }
	.sc-mega-column{
		margin-bottom: 20px;
	}
}

/* =========================================================
   SMALL TABLET
   ========================================================= */

@media (max-width: 800px) {
  .sc-top-menu {
    gap: 14px;
  }

  .sc-nav-link {
    font-size: 14px;
  }

  .sc-phone {
    display: none;
  }

  .sc-mega-dropdown {
    width: min(700px, calc(100vw - 30px));
  }

  .sc-mega-columns {
    column-gap: 12px;
	  grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {
  .sc-top-bar {
    min-height: 48px;

    padding: 0 14px;

    border-radius: 24px;

    overflow: visible;
  }

  .sc-top-menu {
    width: 100%;
	justify-content: space-between;

    height: 48px;

    gap: 18px;

    overflow-x: auto;

    scrollbar-width: none;
  }

  .sc-top-menu::-webkit-scrollbar {
    display: none;
  }

  .sc-nav-link {
    font-size: 14px;
  }

  .sc-nav-link > i {
    font-size: 8px;
  }

  .sc-mega-dropdown {
    width: calc(100vw - 24px);

    max-height: calc(100vh - 70px);

    overflow-y: auto;

    left: 12px;

    top: 100%;

    transform: translateY(10px);
	  transform: translateX(-8px);

    padding: 14px;
  }

	.sc-has-mega.sc-mobile-open .sc-mega-dropdown{
		transform: translateX(-8px) !important;
	}

  .sc-has-mega:hover .sc-mega-dropdown {
    transform: translateY(0);
	
  }

  .sc-mega-columns {
    grid-template-columns: 1fr;

    row-gap: 14px;
  }

  .sc-mega-heading {
    font-size: 17px;

    margin-bottom: 6px;
  }

  .sc-mega-links li {
    min-height: 38px;
  }

  .sc-mega-links li a {
    font-size: 14px;

    white-space: normal;
  }

  .sc-mega-cta {
    align-items: flex-start;

    flex-direction: column;

    gap: 12px;

    padding: 12px;
  }

  .sc-cta-text h3 {
    font-size: 15px;

    white-space: normal;
  }

  .sc-cta-text p {
    font-size: 9px;
  }

  .sc-cta-button {
    align-self: flex-start;
	          height: 40px;
  }
.sc-mega-column{
		margin-bottom: 8px;
	}
}

/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {
  .sc-nav-link {
    font-size: 14px;
  }

  .sc-top-menu {
    gap: 14px;
  }

  .sc-mega-dropdown {
    width: calc(100vw - 16px);

    left: 8px;
  }

  .sc-mega-heading {
    font-size: 16px;
  }

  .sc-mega-links li a {
    font-size: 13px;
  }

  .sc-rocket-icon {
    width: 42px;

    height: 42px;

    flex-basis: 42px;

    font-size: 18px;
  }
}



/* Mega Menu CSS End */





/* Hero Section CSS Start */

.service-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-image: url("https://websitebetalink.com/beta/skyclick/wp-content/uploads/2026/09/hero-bg-2.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 0px 0px 16px 16px;
    padding: 140px 0 30px 0;
}

.service-hero__container {
    max-width: 1200px;
    min-height: 403px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 53% 47%;
    align-items: center;
    position: relative;
}

.service-hero__content {
    position: relative;
    z-index: 2;
    padding: 35px 0;
}

.service-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 14px;
    color: #ffffff;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
}

.white-circle-heading {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 4px solid #2F69E8;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
}

.service-hero__line {
    display: block;
    width: 68px;
    height: 2px;
    background: rgba(255, 255, 255, 0.85);
    flex-shrink: 0;
}

.service-hero__title {
    margin: 0 0 14px;
    max-width: 610px;
    color: #ffffff;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 53px;
    font-weight: 700;
    line-height: 63px;
    letter-spacing: -0.4px;
}

.service-hero__description {
    max-width: 525px;
    margin: 0 0 19px;
    color: rgba(255, 255, 255, 0.88);
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.45;
    text-transform: normal;
}

.service-hero__buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 19px;
    border-radius: 50px;
    font-family: "Garet", Sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    text-transform: capitalize;
    text-decoration: none;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.service-hero__button--primary {
    color: #ffffff;
    background: #f6a12a;
    border: 1px solid #f6a12a;
}

.service-hero__button--primary:hover {
    color: #ffffff;
    background: #F49B3C;
    border-color: #F49B3C;
    transform:  scale(0.90) ;
}

.service-hero__button--secondary {
    color: #ffffff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.service-hero__button--secondary:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: #ffffff;
    transform:  scale(0.90) ;
}

.service-hero__button-arrow {
    display: inline-block;
    margin-left: 9px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    transform: rotate(310deg);
    transform-origin: center;
}

.service-hero__visual {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-hero__visual img {
    display: block;
    width: 100%;
    max-width: 510px;
    height: auto;
    object-fit: contain;
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .service-hero__container {
        width: min(1200px, calc(100% - 32px));
        grid-template-columns: 54% 46%;
        min-height: 380px;
    }

    .service-hero__eyebrow {
        font-size: 17px;
    }

    .service-hero__line {
        width: 55px;
    }

    .service-hero__title {
        font-size: 42px;
        line-height: 52px;
        letter-spacing: -0.8px;
    }

    .service-hero__description {
        font-size: 16px;
        max-width: 490px;
        line-height: 1.5;
    }

    .service-hero__button {
        font-size: 14px;
        height: 38px;
        padding: 0 17px;
    }

    .service-hero__button-arrow {
        font-size: 15px;
        margin-left: 8px;
        transform: rotate(310deg);
    }

    .service-hero__visual img {
        max-width: 430px;
    }
}

@media (max-width: 767px) {
    .service-hero {
        background-position: center center;
        border-radius: 0 0 12px 12px;
        padding: 80px 0 25px;
    }

    .service-hero__container {
        width: calc(100% - 30px);
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 25px;
        padding: 85px 0 25px;
    }

    .service-hero__content {
        width: 100%;
        padding: 0;
    }

    .service-hero__eyebrow {
        font-size: 14px;
        gap: 9px;
        margin-bottom: 13px;
    }

    .white-circle-heading {
        width: 8px;
        height: 8px;
        border-width: 3px;
    }

    .service-hero__line {
        width: 45px;
        height: 1px;
    }

    .service-hero__title {
        max-width: none;
        font-size: 36px;
        line-height: 44px;
        letter-spacing: -0.6px;
        margin-bottom: 15px;
    }

    .service-hero__description {
        max-width: none;
        font-size: 15px;
        font-weight: 300;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .service-hero__buttons {
        flex-wrap: wrap;
        gap: 10px;
    }

    .service-hero__button {
        height: 40px;
        padding: 0 16px;
        font-size: 13px;
    }

    .service-hero__button-arrow {
        font-size: 15px;
        margin-left: 8px;
        transform: rotate(310deg);
    }

    .service-hero__visual {
        width: 100%;
		display: none;
    }

    .service-hero__visual img {
        width: 100%;
        max-width: 400px;
        transform: none;
    }
}

@media (max-width: 480px) {
    .service-hero {
        padding-top: 65px;
    }

    .service-hero__eyebrow {
        font-size: 12px;
        gap: 8px;
    }

    .service-hero__line {
        width: 35px;
    }

    .service-hero__title {
        font-size: 30px;
        line-height: 39px;
        letter-spacing: -0.4px;
    }

    .service-hero__description {
        font-size: 14px;
        line-height: 1.5;
    }

    .service-hero__buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .service-hero__button {
        height: 42px;
        font-size: 13px;
    }

    .service-hero__button-arrow {
        font-size: 15px;
        margin-left: 8px;
        transform: rotate(310deg);
        color: white;
    }

    .service-hero__visual img {
        max-width: 100%;
    }
}

/* Hero Section CSS End */




/* =========================================
   SEO CHALLENGES SECTION
========================================= */

.seo-challenges {
    width: 100%;
    padding: 20px 0;
    background: #ffffff;
    overflow: hidden;
}

.seo-challenges__container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 47% 53%;
    align-items: center;
    position: relative;
}


/* =========================================
   LEFT MEDIA AREA
========================================= */

.seo-challenges__media {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}


/* =========================================
   PULSING BACKGROUND
========================================= */

.seo-challenges__pulse {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: seoPulse 3.5s ease-in-out infinite;
}

.seo-challenges__pulse--large {
    width: 400px;
    height: 400px;
    left: 35px;
    top: 155px;
    background: #EEF3FF;
    opacity: 0.9;
}

.seo-challenges__pulse--small {
    width: 105px;
    height: 105px;
    right: 35px;
    top: 80px;
    background: #F2F5FD;
    animation-delay: 0.8s;
}

@keyframes seoPulse {
    0% {
        transform: scale(1);
        opacity: 0.75;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.45;
    }

    100% {
        transform: scale(1);
        opacity: 0.75;
    }
}


/* =========================================
   PRIMARY IMAGE
   NORMAL DOCUMENT FLOW
========================================= */

.seo-challenges__primary-image {
    position: relative;
    z-index: 2;
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.seo-challenges__primary-image img {
    display: block;
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
	border-radius: 15px;
}


/* =========================================
   SECONDARY IMAGE
   ABSOLUTE OVERLAP
========================================= */

.seo-challenges__secondary-image {
    position: absolute;
    z-index: 3;
    width: 57%;
    right: -5px;
    bottom: 35px;
}

.seo-challenges__secondary-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}


/* =========================================
   RIGHT CONTENT
========================================= */

.seo-challenges__content {
    position: relative;
    z-index: 5;
    padding-left: 20px;
}


/* =========================================
   EYEBROW
========================================= */

.seo-challenges__eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 24px;
    color: #2F69E8;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
}

.seo-challenges__eyebrow-circle {
    width: 16px;
    height: 16px;
    border: 4px solid #2F69E8;
    border-radius: 50%;
    flex-shrink: 0;
}

.seo-challenges__eyebrow-line {
    width: 120px;
    height: 2px;
    background: #2F69E8;
    flex-shrink: 0;
}


/* =========================================
   HEADING
========================================= */

.seo-challenges__title {
    margin: 0 0 25px;
    max-width: 700px;
    color: #000000;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 57px;
    font-weight: 700;
    line-height: 1.12;
	text-transform: capitalize;
   
}

.seo-challenges__title span {
    display: block;
    background: linear-gradient(
        90deg,
        #2F69E8 0%,
        #172f75 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* =========================================
   DESCRIPTION
========================================= */

.seo-challenges__text {
    max-width: 790px;
}

.seo-challenges__text p {
    margin: 0 0 22px;
    color: #000000;
    font-family: "Garet", Sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    text-transform: normal;
}

.seo-challenges__text p:last-child {
    margin-bottom: 0;
}


/* =========================================
   ICON LIST
========================================= */

.seo-challenges__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 25px;
    margin-top: 42px;
	row-gap: 10px;
}

.seo-challenges__list-column {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.seo-challenges__list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #000000;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.25;
}

.seo-challenges__list-item i {
    color: #2F69E8;
    font-size: 25px;
    line-height: 1;
    flex-shrink: 0;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

    .seo-challenges {
        padding: 30px 0;
    }

    .seo-challenges__container {
        width: min(100% - 32px, 1200px);
        grid-template-columns: 47% 53%;
    }

    .seo-challenges__media {
        min-height: 500px;
    }

    .seo-challenges__pulse--large {
        width: 350px;
        height: 350px;
        left: 5px;
        top: 125px;
    }

    .seo-challenges__pulse--small {
        width: 80px;
        height: 80px;
        right: 15px;
        top: 65px;
    }

    .seo-challenges__primary-image {
        width: 90%;
    }

    .seo-challenges__secondary-image {
        width: 60%;
        right: -10px;
        bottom: 20px;
    }

    .seo-challenges__content {
        padding-left: 15px;
    }

    .seo-challenges__eyebrow {
        font-size: 17px;
    }

    .seo-challenges__eyebrow-line {
        width: 70px;
    }

    .seo-challenges__title {
        font-size: 42px;
        line-height: 1.15;
    }

    .seo-challenges__text p {
        font-size: 16px;
    }

    .seo-challenges__list {
        column-gap: 20px;
        margin-top: 30px;
    }

    .seo-challenges__list-item {
        font-size: 16px;
    }

    .seo-challenges__list-item i {
        font-size: 21px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .seo-challenges {
        padding: 30px 0;
    }

    .seo-challenges__container {
        width: calc(100% - 30px);
        display: flex;
        flex-direction: column;
    }

    .seo-challenges__media {
		justify-content: start;
        width: 100%;
        min-height: 430px;
        order: 1;
		margin-top: 20px;
        margin-bottom: 10px;
        align-items: flex-end;
		order: 3;
    }

    .seo-challenges__pulse--large {
        width: 300px;
        height: 300px;
        left: 50%;
        top: 95px;
        transform: translateX(-50%);
    }

    .seo-challenges__pulse--small {
        width: 70px;
        height: 70px;
        right: 5%;
        top: 35px;
    }

    .seo-challenges__primary-image {
        width: 70%;
    }

    .seo-challenges__secondary-image {
        width: 55%;
        right: 0;
        bottom: 10px;
    }

    .seo-challenges__content {
        width: 100%;
        padding-left: 0;
        order: 2;
    }

    .seo-challenges__eyebrow {
        font-size: 14px;
        gap: 8px;
        margin-bottom: 18px;
    }

    .seo-challenges__eyebrow-circle {
        width: 12px;
        height: 12px;
        border-width: 3px;
    }

    .seo-challenges__eyebrow-line {
        width: 45px;
        height: 1px;
    }

    .seo-challenges__title {
        font-size: 36px;
        line-height: 1.15;
        letter-spacing: -0.6px;
        margin-bottom: 20px;
    }

    .seo-challenges__text p {
        font-size: 15px;
        line-height: 1.55;
        margin-bottom: 18px;
    }

    .seo-challenges__list {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 30px;
    }

    .seo-challenges__list-column {
        gap: 14px;
    }

    .seo-challenges__list-item {
        font-size: 16px;
        gap: 10px;
    }

    .seo-challenges__list-item i {
        font-size: 21px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .seo-challenges {
        padding: 30px 0;
    }

    .seo-challenges__media {
        min-height: 350px;
        
    }

    .seo-challenges__pulse--large {
        width: 250px;
        height: 250px;
        top: 80px;
    }

    .seo-challenges__pulse--small {
        width: 55px;
        height: 55px;
        top: 25px;
    }

    .seo-challenges__primary-image {
        width: 92%;
    }

    .seo-challenges__secondary-image {
        width: 57%;
        bottom: 5px;
    }

    .seo-challenges__eyebrow {
        font-size: 12px;
    }

    .seo-challenges__eyebrow-line {
        width: 30px;
    }

    .seo-challenges__title {
        font-size: 30px;
        line-height: 1.2;
    }

    .seo-challenges__text p {
        font-size: 14px;
    }

    .seo-challenges__list-item {
        font-size: 15px;
    }
}

/* Challenges Section CSS End */



/* Service Section CSS Start */

.services-section{
  padding: 40px 10px;
  margin-top: 30px;
  background-color: #F0F9FF;
}

/* =========================================
   SEO SERVICES EYEBROW + HEADING
========================================= */

.seo-services__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-bottom: 14px;
    color: #2F69E8;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
}

.seo-services__eyebrow-circle {
    width: 10px;
    height: 10px;
    border: 4px solid #2F69E8;
    border-radius: 50%;
    flex-shrink: 0;
}

.seo-services__eyebrow-line {
    width: 68px;
    height: 2px;
    background: #2F69E8;
    flex-shrink: 0;
}

.seo-services__title {
    margin: 0;
    color: #000000;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 57px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1px;
    text-align: center;
	text-transform: capitalize;
}

.seo-services__title span {
    display: block;
    background: linear-gradient(
        90deg,
        #2F69E8 0%,
        #172f75 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

    .seo-services__eyebrow {
        font-size: 17px;
    }

    .seo-services__eyebrow-line {
        width: 55px;
    }

    .seo-services__title {
        font-size: 46px;
        line-height: 1.15;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .seo-services__eyebrow {
        gap: 7px;
        margin-bottom: 12px;
        font-size: 14px;
		justify-content: start !important;
    }

    .seo-services__eyebrow-circle {
        width: 8px;
        height: 8px;
        border-width: 2px;
    }

    .seo-services__eyebrow-line {
        width: 45px;
        height: 1px;
    }

    .seo-services__title {
        font-size: 36px;
        line-height: 1.15;
        letter-spacing: -0.6px;
		text-align: left !important;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .seo-services__eyebrow {
        font-size: 12px;
    }

    .seo-services__eyebrow-line {
        width: 35px;
    }

    .seo-services__title {
        font-size: 31px;
        line-height: 1.2;
    }
}



.service-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.service-feature-card {
  background: #ffffff;
  border: 1px solid #2f69e81a;
  border-radius: 15px;
  padding: 20px;
  /* min-height: 250px; */
  box-sizing: border-box;
}

.service-feature-card:hover {
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease-in-out;
  transform: translateY(-4px);
}

.service-feature-icon {
  width: 50px;
  height: 50px;
  background: #f49b3c1f;
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 22px;
}

.service-feature-icon i {
  font-size: 24px;
  color: #f49b3c;
  line-height: 1;
}

.service-feature-card h3 {
  margin: 0 0 10px;
  padding: 0;
  text-transform: capitalize;

  font-size: 21px;
  line-height: 1.2;
  font-weight: 700;
  font-family: var(--e-global-typography-primary-font-family), Sans-serif;

  color: #000000;
}
.service-feature-card:hover h3 {
  color: #172f75;
  transition: all 0.3s ease-in-out;
}

.service-feature-card p {
  margin: 0;
  padding: 0;
  text-transform: normal;
  font-family: var(--e-global-typography-text-font-family), Sans-serif;
  font-size: 14px;
  font-weight: 300;

  color: #000000d1;
}

/* Tablet */

@media (max-width: 1024px) {
  .service-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-feature-card {
    padding: 15px;
  }
  .service-feature-card h3 {
    font-size: 18px;
  }
  .service-feature-card p {
    font-size: 13px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .service-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .service-feature-card {
    min-height: auto;
    padding: 14px;
  }

  .service-feature-card h3 {
    font-size: 16px;
  }
  .service-feature-card p {
    font-size: 12px;
  }
}


/* Service Section CSS End */




/* AI Section CSS Start */

/* AI Section CSS */

/* =========================================================
   MAIN SECTION
========================================================= */


/* =========================================
   AI SEARCH INTRO
========================================= */

.ai-search-intro__eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    color: #2F69E8;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
}

.ai-search-intro__circle {
    width: 10px;
    height: 10px;
    border: 4px solid #2F69E8;
    border-radius: 50%;
    flex-shrink: 0;
}

.ai-search-intro__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 66px;
    height: 30px;
    padding: 0 13px;
    border-radius: 50px;
    background: #172F75;
    color: #ffffff;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
}

.ai-search-intro__eyebrow-text {
    white-space: nowrap;
}

.ai-search-intro__line {
    width: 135px;
    height: 2px;
    background: #2F69E8;
    flex-shrink: 0;
}


/* =========================================
   HEADING
========================================= */

.ai-search-intro__title {
    margin: 0 0 30px;
    color: #000000;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 57px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1px;
	text-transform: capitalize;
}

.ai-search-intro__title span {
    display: inline;
    background: linear-gradient(
        90deg,
        #2F69E8 0%,
        #172F75 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* =========================================
   DESCRIPTION
========================================= */

.ai-search-intro__description {
    width: 70%;
    margin: 0;
    color: #000000;
    font-family: "Garet", Sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    text-transform: normal;
    margin-bottom: 20px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

    .ai-search-intro__eyebrow {
        gap: 11px;
        margin-bottom: 25px;
        font-size: 17px;
    }

    .ai-search-intro__badge {
        min-width: 65px;
        height: 29px;
        padding: 0 11px;
        font-size: 17px;
    }

    .ai-search-intro__eyebrow-text {
        white-space: normal;
    }

    .ai-search-intro__line {
        width: 80px;
    }

    .ai-search-intro__title {
        font-size: 46px;
        line-height: 1.15;
        margin-bottom: 25px;
    }

    .ai-search-intro__description {
        font-size: 16px;
        line-height: 1.5;
		width: 100%;
	}
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .ai-search-intro__eyebrow {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 20px;
        font-size: 14px;
    }

    .ai-search-intro__circle {
        width: 8px;
        height: 8px;
        border-width: 3px;
    }

    .ai-search-intro__badge {
        min-width: 50px;
        height: 25px;
        padding: 0 9px;
        font-size: 14px;
    }

    .ai-search-intro__eyebrow-text {
        white-space: normal;
    }

    .ai-search-intro__line {
        width: 45px;
        height: 1px;
    }

    .ai-search-intro__title {
        font-size: 36px;
        line-height: 1.15;
        letter-spacing: -0.6px;
        margin-bottom: 20px;
    }

    .ai-search-intro__description {
        font-size: 15px;
        line-height: 1.55;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .ai-search-intro__eyebrow {
        font-size: 12px;
    }

    .ai-search-intro__badge {
        min-width: 45px;
        height: 23px;
        font-size: 12px;
    }

    .ai-search-intro__line {
        width: 35px;
    }

    .ai-search-intro__title {
        font-size: 31px;
        line-height: 1.2;
    }

    .ai-search-intro__description {
        font-size: 14px;
    }
}



.ai-section {
  width: 100%;
  max-width: 1200px;

  display: grid;

  grid-template-columns: 40% 60%;

  gap: 20px;

  align-items: center;

  box-sizing: border-box;
}

/* =========================================================
   LEFT SERVICES
========================================================= */

.ai-services-list {
  height: 480px;

  overflow-y: auto;

  /* Space for scrollbar on the LEFT */
  direction: rtl;

  padding: 5px 0 5px 20px;

  box-sizing: border-box;

  scrollbar-width: thin;
  scrollbar-color: #2f69e8 #eeeeee;
}

/* Keep the actual content normal LTR */

.ai-services-list > * {
  direction: ltr;
}

/* LEFT SCROLLBAR */

.ai-services-list::-webkit-scrollbar {
  width: 7px;
}

.ai-services-list::-webkit-scrollbar-track {
  background: #eeeeee;
}

.ai-services-list::-webkit-scrollbar-thumb {
  background: #2f69e8;

  border-radius: 20px;
}

/* =========================================================
   SERVICE ITEM
========================================================= */

.ai-service {
  display: grid;

  grid-template-columns: 82px 1fr;

  gap: 18px;

  margin-bottom: 38px;

  cursor: pointer;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.ai-service:hover {
  transform: translateX(4px);
}

.ai-service.active {
  transform: translateX(4px);
}

/* =========================================================
   SERVICE ICON
========================================================= */

.ai-service-icon {
  width: 82px;

  height: 82px;

  border-radius: 50%;

  background: #e1eaff;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #2f69e8;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.ai-service-icon i {
  font-size: 34px;
}

/* =========================================================
   SERVICE CONTENT
========================================================= */

.ai-service-content h3 {
  margin: 0 0 7px;

  font-family: var(--e-global-typography-primary-font-family), Sans-serif;

  font-size: 20px;

  line-height: 1.1;

  text-transform: capitalize;

  font-weight: 700;

  color: #222222;
}

.ai-service-content p {
  margin: 0;

  font-family: var(--e-global-typography-text-font-family), Sans-serif;

  max-width: 360px;

  text-transform: normal;

  font-weight: 300;

  font-size: 17px;

  line-height: 1.55;

  color: #000000;
}

/* =========================================================
   RIGHT VISUAL
========================================================= */

.ai-visual {
  position: relative;

  min-height: 500px;

  display: flex;

  align-items: center;

  justify-content: center;

  overflow: hidden;
}

/* =========================================================
   AI PLATFORM CARDS
========================================================= */

.ai-platforms {
  position: absolute;

  top: 10px;

  left: 0;

  right: 0;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 8px;

  z-index: 4;
}

.ai-platform {
  height: 67px;

  background: #ffffff;

  border: 1px solid #e2e5ea;

  border-radius: 15px;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 9px;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.035);
}

/* =========================================================
   PLATFORM LOGO
========================================================= */

.ai-platform-logo {
  width: 34px;

  height: 34px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;
}

.ai-platform-logo i {
  font-size: 17px;
}

.ai-chatgpt .ai-platform-logo {
  background: #39a99a;

  color: #ffffff;
}

.ai-gemini .ai-platform-logo {
  background: #eef1ff;

  color: #5276df;
}

.ai-perplexity .ai-platform-logo {
  background: #eef5f7;

  color: #24445c;
}

.ai-copilot .ai-platform-logo {
  background: #eef1ff;

  color: #2f69e8;
}

.ai-platform-name {
  font-size: 14px;

  font-weight: 600;

  color: #222222;
}

/* =========================================================
   CONNECTING LINES
========================================================= */

.ai-connector {
  position: absolute;

  top: 78px;

  left: 10%;

  right: 10%;

  height: 110px;

  border-bottom: 2px dashed #dce2ef;

  border-left: 2px dashed #dce2ef;

  border-right: 2px dashed #dce2ef;

  border-radius: 0 0 35px 35px;

  z-index: 1;
}

.ai-connector-center {
  position: absolute;

  top: 185px;

  left: 50%;

  width: 2px;

  height: 35px;

  background: repeating-linear-gradient(
    to bottom,
    #dce2ef 0,
    #dce2ef 5px,
    transparent 5px,
    transparent 10px
  );

  transform: translateX(-50%);

  z-index: 1;
}

/* =========================================================
   SEARCH CARD
========================================================= */

.ai-search-card {
  position: relative;

  width: 86%;

  margin-top: 115px;

  background: #ffffff;

  border: 1px solid #e1e5eb;

  border-radius: 18px;

  padding: 25px 27px;

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);

  z-index: 2;

  box-sizing: border-box;
}

/* =========================================================
   SEARCH HEADER
========================================================= */

.ai-search-header {
  display: flex;

  align-items: flex-start;

  gap: 17px;
}

/* =========================================================
   SPARKLE
========================================================= */

.ai-sparkle {
  flex: 0 0 58px;

  width: 58px;

  height: 58px;

  background: #ffffff;

  border: 1px solid #e1e5eb;

  border-radius: 12px;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #5148df;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.ai-sparkle i {
  font-size: 27px;
}

/* =========================================================
   QUESTION
========================================================= */

.ai-question-area {
  flex: 1;
}

.ai-question-label {
  display: block;

  margin-bottom: 4px;

  font-size: 12px;

  font-weight: 600;

  color: #858585;
}

.ai-current-question {
  font-size: 17px;

  line-height: 1.45;

  font-weight: 700;

  color: #252525;

  min-height: 25px;
}

/* =========================================================
   SUGGESTIONS
========================================================= */

.ai-suggestions {
  margin-top: 20px;
}

.ai-suggestions-title {
  margin-bottom: 10px;

  font-size: 12px;

  font-weight: 500;

  color: #8a8a8a;
}

.ai-question-list {
  display: flex;

  flex-wrap: wrap;

  gap: 7px;
}

.ai-tab-list {
  display: flex;

  flex-wrap: wrap;

  gap: 7px;
}

.ai-tab-panel[hidden] {
  display: none;
}

.ai-tab-panel {
  margin-top: 20px;
}

.ai-question {
  appearance: none;

  border: 1px solid #dfe4ec;

  background: #f8faff;

  border-radius: 20px;

  padding: 8px 13px;

  font-family: inherit;

  font-size: 12px;

	font-weight: 500;

  line-height: 1.3;

  color: #3d4b63;

  cursor: pointer;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;

text-align: left;
	text-wrap: wrap;
}

.ai-question:hover {
  background: #edf2ff;

  border-color: #c4d0ed;

  color: #2F69E8; 

  transform: translateY(-1px);
}

.ai-question.selected {
  background: #2f69e8;

  border-color: #2f69e8;

  color: #ffffff;
}

/* =========================================================
   ANSWER
========================================================= */

.ai-answer-wrapper {
  margin-top: 20px;

  padding-top: 18px;

  border-top: 1px solid #eeeeee;
}

.ai-answer {
  padding-left: 25px;

  font-size: 14px;

	font-weight: 300;

  line-height: 1.7;

  color: #3b3b3b;
}

.ai-answer-brand {
  color: #3676d9;

  font-weight: 700;
}

.ai-answer-text {
  display: inline;
}

/* =========================================================
   TYPEWRITER CURSOR
========================================================= */

.ai-answer-text::after {
  content: "|";

  display: inline-block;

  margin-left: 2px;

  color: #2f69e8;

  font-weight: 300;

  animation: answerCursorBlink 0.7s infinite;
}

@keyframes answerCursorBlink {
  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

/* =========================================================
   BENEFITS
========================================================= */

.ai-benefits {
  list-style: none;

  margin: 18px 0 0;

  padding: 18px 0 0 25px;

  border-top: 1px solid #eeeeee;
}

.ai-benefits li {
  display: flex;

  align-items: flex-start;

  gap: 10px;

  margin-bottom: 11px;

  font-size: 13px;

  line-height: 1.45;

  color: #373737;
}

.ai-benefits li i {
  flex: 0 0 auto;

  margin-top: 2px;

  font-size: 14px;

  color: #5148df;
}

.ai-benefits li span {
  flex: 1;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {
  .ai-section {
    grid-template-columns: 1fr;

    gap: 15px;
  }

  .ai-services-list {
    height: 430px;
  }

  .ai-visual {
    min-height: 500px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
  .ai-section {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .ai-services-list {
    height: 420px;

    padding-right: 12px;
  }

  .ai-service {
    grid-template-columns: 62px 1fr;

    gap: 14px;

    margin-bottom: 30px;
  }

  .ai-service-icon {
    width: 62px;

    height: 62px;
  }

  .ai-service-icon i {
    font-size: 26px;
  }

  .ai-service-content h3 {
    font-size: 17px;
  }

  .ai-service-content p {
    font-size: 14px;

    line-height: 1.5;
  }

  .ai-visual {
    min-height: 650px;

    margin-top: 10px;
  }

  .ai-platforms {
    grid-template-columns: repeat(2, 1fr);

    gap: 7px;
  }

  .ai-platform {
    height: 58px;

    gap: 7px;
  }

  .ai-platform-logo {
    width: 28px;

    height: 28px;
  }

  .ai-platform-logo i {
    font-size: 14px;
  }

  .ai-platform-name {
    font-size: 12px;
  }

  .ai-connector,
  .ai-connector-center {
    display: none;
  }

  .ai-search-card {
    width: 94%;

    margin-top: 130px;

    padding: 20px;
  }

  .ai-search-header {
    gap: 12px;
  }

  .ai-sparkle {
    flex: 0 0 48px;

    width: 48px;

    height: 48px;
  }

  .ai-sparkle i {
    font-size: 22px;
  }

  .ai-current-question {
    font-size: 15px;
  }

  .ai-suggestions {
    padding-left: 0;
  }

  .ai-question {
    font-size: 11px;

    padding: 7px 10px;
  }

  .ai-answer {
    padding-left: 0;

    font-size: 13px;
  }

  .ai-benefits {
    padding-left: 0;
  }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 480px) {
  .ai-service {
    grid-template-columns: 55px 1fr;
  }

  .ai-service-icon {
    width: 55px;

    height: 55px;
  }

  .ai-service-icon i {
    font-size: 23px;
  }

  .ai-service-content h3 {
    font-size: 16px;
  }

  .ai-service-content p {
    font-size: 13px;
  }

  .ai-platform-name {
    font-size: 11px;
  }

  .ai-search-card {
    padding: 17px;
  }
}

/* AI visual typography */
.ai-visual .ai-platform-name,
.ai-visual .ai-current-question,
.ai-visual .ai-benefits,
.ai-visual .ai-question{
  font-family: var(--e-global-typography-primary-font-family), Sans-serif;
}

.ai-visual .ai-question-label,
.ai-visual .ai-suggestions-title,
/* .ai-visual .ai-question, */
.ai-visual .ai-answer{
  font-family: var(--e-global-typography-text-font-family), Sans-serif;
}

/* AI Section CSS END */



/* Our Approach Section CSS Start*/

.our-approach-section{
  padding: 40px 10px;
  background-color: #F0F9FF;
  
}

.our-approach-text{
  margin-top: 20px;
}

.our-approach-text p{
    margin: 0 0 22px;
    color: #000000;
    font-family: "Garet", Sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    text-transform: normal;
    text-align: center;
}
.our-approach-text p:last-child{
  margin-bottom: 0;
}

@media(max-width: 1024px){
  .our-approach-text p{
    font-size: 16px;
  }
}

@media(max-width: 768px){
  .our-approach-text p{
text-align: left !important;
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.3;
  }
}


/* Our Approach Section CSS End */



/* Why Choose Us Section CSS Start*/


@media(min-width: 1025px){
  .why-chose-title{
    max-width: 68%;
  }
}

.seo-results-section {
  width: 100%;
  padding: 50px 20px;
  box-sizing: border-box;
}

.seo-results-container {
  max-width: 1200px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: 50% 50%;

  align-items: center;

  gap: 20px;

  box-sizing: border-box;
}

/* =====================================================
   LEFT FEATURES AREA
===================================================== */

.seo-features {
  width: 100%;

  display: flex;

  flex-direction: column;

  gap: 18px;
}

/* =====================================================
   FEATURE BOX
===================================================== */

.seo-feature {
  position: relative;

  width: 360px;

  min-height: 110px;

  display: flex;

  align-items: center;

  background: #ffffff;

  border-radius: 14px;

  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.18);

  box-sizing: border-box;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* =====================================================
   HOVER
===================================================== */

.seo-feature:hover {
  transform: translateY(-3px);

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* =====================================================
   RIGHT ALIGNED BOXES
===================================================== */

.seo-feature-right {
  align-self: flex-end;

  padding: 18px 25px 18px 42px;
}

/* =====================================================
   LEFT ALIGNED BOXES
===================================================== */

.seo-feature-left {
  align-self: flex-start;

  padding: 18px 25px 18px 42px;
}

/* =====================================================
   ICON
===================================================== */

.seo-feature-icon {
  position: absolute;

  left: -42px;

  top: 50%;

  transform: translateY(-50%);

  width: 72px;

  height: 72px;

  border-radius: 50%;

  background: linear-gradient(135deg, #2f69e8, #1c398f);

  color: #ffffff;

  display: flex;

  align-items: center;

  justify-content: center;

  box-sizing: border-box;

  z-index: 2;
}

.seo-feature-icon i {
  font-size: 28px;
}

/* =====================================================
   FEATURE CONTENT
===================================================== */

.seo-feature-content {
  width: 100%;
}

.seo-feature-content h3 {
  margin: 0 0 7px;

  font-family: var(--e-global-typography-primary-font-family), Sans-serif;

  font-size: 20px;

  text-transform: capitalize;

  line-height: 1.2;

  font-weight: 700;

  color: #4f4f4f;
}

.seo-feature-content p {
  margin: 0;

  font-family: var(--e-global-typography-text-font-family), Sans-serif;

  font-size: 13px;

font-weight: 300;

  text-transform: normal;

  line-height: 1.6;

  color: #000000;
}

/* =====================================================
   RIGHT IMAGE
===================================================== */

.seo-results-image {
  width: 100%;

  display: flex;

  align-items: center;

  justify-content: center;
}

.seo-results-image img {
  display: block;

  width: 100%;

  max-width: 600px;

  height: auto;

  object-fit: contain;

border-radius: 15px;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1024px) {
  .seo-results-container {
    grid-template-columns: 1fr 1fr;

    gap: 20px;
  }

  .seo-feature {
    width: 90%;

    min-height: 105px;
  }

  .seo-feature-content h3 {
    font-size: 17px;
  }

  .seo-feature-content p {
    font-size: 12px;
  }

  .seo-feature-icon {
    width: 64px;

    height: 64px;

    left: -36px;
  }

  .seo-feature-icon i {
    font-size: 24px;
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {
  .seo-results-section {
    padding: 40px 20px;
  }

  .seo-results-container {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .seo-features {
    gap: 20px;
  }

  .seo-feature {
    width: calc(100% - 25px);

    min-height: 105px;
  }

  /*
       On mobile we don't need alternating
       left/right positioning.
    */

  .seo-feature-right,
  .seo-feature-left {
    align-self: flex-start;
  }

  .seo-results-image {
    width: 100%;
  }

  .seo-results-image img {
    width: 100%;

    max-width: 600px;
  }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {
  .seo-feature {
    width: calc(100% - 18px);

    min-height: 100px;

    padding: 16px 18px 16px 38px;
  }

  .seo-feature-icon {
    left: -30px;

    width: 58px;

    height: 58px;
  }

  .seo-feature-icon i {
    font-size: 22px;
  }

  .seo-feature-content h3 {
    font-size: 16px;
  }

  .seo-feature-content p {
    font-size: 12px;

    line-height: 1.5;
  }
}



/* Why Choose Us Section CSS End */


/* Faqs Section CSS Start*/

/* ================================
   FAQ CONTAINER
================================ */




/* =========================================
   CONTACT + FAQ SECTION
========================================= */

.faq-contact-section {
    width: 100%;
    padding: 40px 0;
    background: #ffffff;
    overflow: hidden;
}

.faq-contact-section__container {
    /* width: min(1200px, calc(100% - 40px)); */
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 48% 48%;
    justify-content: space-between;
    align-items: center;
}


/* =========================================
   LEFT CONTACT FORM
========================================= */


.contact-form-contain{
  justify-content: center;
  align-items: center;
  border: 2px solid #2F69E821;
  border-radius: 15px;
  background: linear-gradient(135deg, #FBFEFFD6, #F1E4FFD9);
  padding: 20px;
  text-align: center;
}

.contact-form-contain h2{
      padding: 0;
    color: #1C398F;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.8px;
    text-align: center;
    margin: 0;

}
.contact-form-contain .proposal-form .form-row{
	gap:0 !important;
	margin-bottom: 0 !important;
}

@media(max-width: 1024px){
  .contact-form-contain h2{
    font-size: 24px;
  }
}
@media(max-width: 768px){
  .contact-form-contain h2{
    font-size: 20px;
  }
}

@media(max-width: 480px){
  .contact-form-contain h2{
    font-size: 18px;
  }
}


.contact-form-contain p{
  margin: 10px 10px;
      padding: 0;
    color: #000000;
    font-family: "Garet", Sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.3;
    text-transform: capitalize;
    text-align: center;
}
@media(max-width: 1024px){
  .contact-form-contain p{
    font-size: 14px;
  }
}
@media(max-width: 768px){
  .contact-form-contain p{
    font-size: 13px;
  }
}

@media(max-width: 480px){
  .contact-form-contain p{
    font-size: 12px;
  }
}


.faq-contact-section__form {
    width: 100%;
}


/* =========================================
   RIGHT FAQ CONTENT
========================================= */

.faq-contact-section__content {
    width: 100%;
 
}


/* =========================================
   FAQ EYEBROW
========================================= */

.faq-contact-section__eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 22px;
    color: #2F69E8;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
}

.faq-contact-section__eyebrow-circle {
    width: 10px;
    height: 10px;
    border: 4px solid #2F69E8;
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-contact-section__eyebrow-text {
    white-space: nowrap;
}

.faq-contact-section__eyebrow-line {
    width: 95px;
    height: 2px;
    background: #2F69E8;
    flex-shrink: 0;
}


/* =========================================
   FAQ HEADING
========================================= */

.faq-contact-section__title {
    margin: 0 0 20px;
    padding: 0;
    color: #000000;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.8px;
}

.faq-contact-section__title span {
    background: linear-gradient(
        90deg,
        #2F69E8 0%,
        #172f75 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* =========================================
   FAQ DESCRIPTION
========================================= */

.faq-contact-section__description {
    margin: 0 0 25px;
    padding: 0;
    color: #000000;
    font-family: "Garet", Sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5;
    text-transform: normal;
}


/* =========================================
   FAQ ACCORDION CONTAINER
========================================= */

.faq-contact-section .custom-faq-accordion {
    width: 100%;
    margin: 0;
    padding: 0;
}


/* =========================================
   FAQ ITEM
========================================= */

.faq-contact-section .faq-item {
    width: 100%;
    margin: 0 0 17px;
    padding: 0;
}

.faq-contact-section .faq-item:last-child {
    margin-bottom: 0;
}


/* =========================================
   FAQ QUESTION
========================================= */

.faq-contact-section .faq-question {
    width: 100%;
    min-height: 68px;
    margin: 0;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 13px;
    box-sizing: border-box;
    cursor: pointer;
}


/* =========================================
   FAQ TITLE
========================================= */

.faq-contact-section .faq-title {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.3;
    text-align: left;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

    .faq-contact-section {
        padding: 70px 0;
    }

    .faq-contact-section__container {
        width: min(100% - 32px, 1200px);
        grid-template-columns: 47% 53%;
    }

    .faq-contact-section__form {
        padding-right: 15px;
    }

    .faq-contact-section__content {
        padding-left: 15px;
    }

    .faq-contact-section__eyebrow {
        font-size: 17px;
        gap: 9px;
        margin-bottom: 18px;
    }

    .faq-contact-section__eyebrow-circle {
        width: 9px;
        height: 9px;
        border-width: 3px;
    }

    .faq-contact-section__eyebrow-line {
        width: 65px;
    }

    .faq-contact-section__title {
        font-size: 32px;
        line-height: 1.15;
        letter-spacing: -0.5px;
    }

    .faq-contact-section__description {
        font-size: 14px;
        margin-bottom: 22px;
    }

    .faq-contact-section .faq-item {
        margin-bottom: 14px;
    }

    .faq-contact-section .faq-question {
        min-height: 62px;
        padding: 12px 15px;
    }

    .faq-contact-section .faq-title {
        font-size: 17px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .faq-contact-section {
        padding: 15px 0;
    }

    .faq-contact-section__container {
        width: calc(100% - 30px);
        display: flex;
        flex-direction: column;
        gap: 45px;
    }

    .faq-contact-section__form {
        width: 100%;
        padding-right: 0;
        order: 1;
    }

    .faq-contact-section__content {
        width: 100%;
        padding-left: 0;
        order: 2;
    }

    .faq-contact-section__eyebrow {
        font-size: 14px;
        gap: 8px;
        margin-bottom: 17px;
    }

    .faq-contact-section__eyebrow-circle {
        width: 8px;
        height: 8px;
        border-width: 3px;
    }

    .faq-contact-section__eyebrow-line {
        width: 45px;
        height: 1px;
    }

    .faq-contact-section__title {
        font-size: 30px;
        line-height: 1.2;
        letter-spacing: -0.5px;
        margin-bottom: 15px;
    }

    .faq-contact-section__description {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .faq-contact-section .faq-item {
        margin-bottom: 12px;
    }

    .faq-contact-section .faq-question {
        min-height: 58px;
        padding: 11px 13px;
        gap: 10px;
    }

    .faq-contact-section .faq-title {
        font-size: 16px;
        line-height: 1.3;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .faq-contact-section {
        padding: 50px 0;
    }

    .faq-contact-section__container {
        width: calc(100% - 24px);
        gap: 35px;
    }

    .faq-contact-section__eyebrow {
        font-size: 12px;
        gap: 7px;
    }

    .faq-contact-section__eyebrow-circle {
        width: 7px;
        height: 7px;
        border-width: 2px;
    }

    .faq-contact-section__eyebrow-line {
        width: 32px;
    }

    .faq-contact-section__title {
        font-size: 27px;
        line-height: 1.2;
    }

    .faq-contact-section__description {
        font-size: 13px;
        line-height: 1.5;
    }

    .faq-contact-section .faq-question {
        min-height: 55px;
        padding: 10px 12px;
    }

    .faq-contact-section .faq-title {
        font-size: 15px;
    }
}

.custom-faq-accordion {
  width: 100%;
  margin: 0 auto;
}

/* ================================
   FAQ ITEM
================================ */

.custom-faq-accordion .faq-item {
  width: 100%;
  box-sizing: border-box;

  background: #dfe9ff3d;

  border: 1px solid #2f69e8;
  border-radius: 10px;

  margin-bottom: 15px;

  overflow: hidden;
}

/* ================================
   QUESTION
================================ */

.custom-faq-accordion .faq-question {
  width: 100%;
  min-height: 55px;

  display: flex;
  align-items: center;

  gap: 11px;

  padding: 0 15px;

  border: 0;
  outline: none;

  background: transparent;

  cursor: pointer;

  text-align: left;

  box-sizing: border-box;

	text-wrap: wrap;
}

/* ================================
   ICON CIRCLE
================================ */

.custom-faq-accordion .faq-icon {
  position: relative;

  width: 25px;
  height: 25px;

  min-width: 25px;
  max-width: 25px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #2f69e8 0%, #1c398f 100%);

  border-radius: 50%;

  box-sizing: border-box;

  flex-shrink: 0;

  transition: transform 0.2s ease;
}

/* ================================
   HORIZONTAL LINE
   Creates +
   ================================ */

.custom-faq-accordion .faq-icon::before {
  content: "";

  position: absolute;

  width: 11px;
  height: 2px;

  background: #ffffff;

  border-radius: 2px;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);
}

/* ================================
   VERTICAL LINE
   Creates +
================================ */

.custom-faq-accordion .faq-icon::after {
  content: "";

  position: absolute;

  width: 2px;
  height: 11px;

  background: #ffffff;

  border-radius: 2px;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

/* ================================
   ACTIVE = MINUS
================================ */

.custom-faq-accordion .faq-item.active .faq-icon::after {
  opacity: 0;

  transform: translate(-50%, -50%) scaleY(0);
}

/* ================================
   QUESTION TEXT
================================ */

.custom-faq-accordion .faq-title {
  flex: 1;

  color: #000000;

  font-family: var(--e-global-typography-primary-font-family), Sans-serif;

  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;

  line-height: 1.3;

  margin: 0;
}

/* ================================
   ANSWER
================================ */

.custom-faq-accordion .faq-answer {
  display: grid;

  grid-template-rows: 0fr;

  opacity: 0;

  transition:
    grid-template-rows 0.4s ease,
    opacity 0.4s ease;
}

/* ================================
   OPEN ANSWER
================================ */

.custom-faq-accordion .faq-item.active .faq-answer {
  grid-template-rows: 1fr;

  opacity: 1;
}

/* ================================
   ANSWER INNER
================================ */

.custom-faq-accordion .faq-answer-inner {
  min-height: 0;

  overflow: hidden;

  padding: 0 48px;

  box-sizing: border-box;

  color: #000000;

  font-family: var(--e-global-typography-text-font-family), Sans-serif;

  font-size: 13px;

  font-weight: 300;

  line-height: 1.45;

  transition:
    padding-top 0.4s ease,
    padding-bottom 0.4s ease;
}

/* CLOSED */

.custom-faq-accordion .faq-item:not(.active) .faq-answer-inner {
  padding-top: 0;
  padding-bottom: 0;
}

/* OPEN */

.custom-faq-accordion .faq-item.active .faq-answer-inner {
  padding-top: 0;
  padding-bottom: 20px;
}

/* ================================
   HOVER
================================ */

.custom-faq-accordion .faq-question:hover .faq-icon {
  transform: scale(1.04);
}

/* ================================
   MOBILE
================================ */

@media (max-width: 767px) {
  .custom-faq-accordion .faq-question {
    min-height: 55px;

    padding: 0 13px;

    gap: 10px;
  }

  .custom-faq-accordion .faq-title {
    font-size: 16px;
  }

  .custom-faq-accordion .faq-icon {
    width: 24px;
    height: 24px;

    min-width: 24px;
    max-width: 24px;
  }

  .custom-faq-accordion .faq-answer-inner {
    padding-left: 45px;
    padding-right: 45px;

    font-size: 13px;
  }

  .custom-faq-accordion .faq-item.active .faq-answer-inner {
    padding-bottom: 18px;
  }
}

/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 480px) {
  .custom-faq-accordion .faq-item {
    border-radius: 9px;

    margin-bottom: 12px;
  }

  .custom-faq-accordion .faq-title {
    font-size: 15px;
  }

  .custom-faq-accordion .faq-answer-inner {
    padding-left: 42px;
    padding-right: 42px;
  }
}

/* whatsapp */
button.wh-ap-btn {
	outline: none;
	width: 60px;
	height: 60px;
	border: 0;
	background-color: #2ecc71;
	padding: 0;
	border-radius: 100%;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	cursor: pointer;
	transition: opacity 0.3s, background 0.3s, box-shadow 0.3s;
}

button.wh-ap-btn::after {
	content: "";
	background-image: url("//i.imgur.com/cAS6qqn.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 60%;
	width: 100%;
	height: 100%;
	display: block;
	opacity: 1;
}

button.wh-ap-btn:hover {
	opacity: 1;
	background-color: #20bf6b;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.wh-api {
	/* position: fixed; */
	om: 0;
	right: 0;
}

.wh-fixed {
	margin-right: 15px;
	margin-bottom: 15px;
}

.wh-fixed > a {
	display: block;
	text-decoration: none;
}

button.wh-ap-btn::before {
	content: "Chat with me";
	display: block;
	position: absolute;
	margin-left: -130px;
	margin-top: 16px;
	height: 25px;
	background: #49654e;
	color: #fff;
	font-weight: 400;
	font-size: 15px;
	border-radius: 3px;
	width: 0;
	opacity: 0;
	padding: 0;
	transition: opacity 0.4s, width 0.4s, padding 0.5s;
	padding-top: 7px;
	border-radius: 30px;
	box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
}

.wh-fixed > a:hover button.wh-ap-btn::before {
	opacity: 1;
	width: auto;
	padding-top: 7px;
	padding-left: 10px;
	padding-right: 10px;
	width: 100px;
}

/* animacion pulse */

.whatsapp-pulse {
	width: 60px;
	px; */
	height: 60px;
	left: 30px;
	bottom: 10px;
	background: #10b418;
	position: fixed;
	text-align: justify;
	color: #ffffff;
	cursor: pointer;
	border-radius: 50%;
	z-index: 99999;
	display: inline-block;
	line-height: 14px;
}

.whatsapp-pulse:before {
	position: absolute;
	content: " ";
	z-index: -1;
	bottom: -15px;
	left: -15px;
	background-color: #10b418;
	width: 90px;
	height: 90px;
	border-radius: 100%;
	animation-fill-mode: both;
	-webkit-animation-fill-mode: both;
	opacity: 0.6;
	-webkit-animation: pulse 1s ease-out;
	animation: pulse 1.8s ease-out;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scale(0);
		opacity: 0;
	}
	25% {
		-webkit-transform: scale(0.3);
		opacity: 1;
	}
	50% {
		-webkit-transform: scale(0.6);
		opacity: 0.6;
	}
	75% {
		-webkit-transform: scale(0.9);
		opacity: 0.3;
	}
	100% {
		-webkit-transform: scale(1);
		opacity: 0;
	}
}

@keyframes pulse {
	0% {
		transform: scale(0);
		opacity: 0;
	}
	25% {
		transform: scale(0.3);
		opacity: 1;
	}
	50% {
		transform: scale(0.6);
		opacity: 0.6;
	}
	75% {
		transform: scale(0.9);
		opacity: 0.3;
	}
	100% {
		transform: scale(1);
		opacity: 0;
	}
}




