/* --- Menu Toggle (Hamburger) --- */
.menu-toggle {
    display: none;
    position: fixed;
    right: 0.938rem;
    border: none;
    cursor: pointer;
}

#menu-btn-container {
  position: absolute;
  top: 50%;
  right: 0.938rem;
  width: 39px;
  margin: 0 auto;
  transform: translateY(-50%) scale(2);
}

#menu-btn {
  overflow: hidden;
}

#menu-checkbox {
  display: none;
}

#menu-label {
  position: relative;
  display: block;
  height: 14px;
  cursor: pointer;
}

#menu-label:before,
#menu-label:after,
#menu-bar {
  position: absolute;
  left: 0;
  width: 26px;
  height: 1px;
  background-color: #000;
}
.is-active #menu-label:before,
.is-active #menu-label:after,
.is-active #menu-bar 
{
  background-color: #fff;
}

#menu-label:before,
#menu-label:after {
  content: "";
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) left;
}

#menu-label:before {
  top: 0px;
}

#menu-label:after {
  top: 6px;
}

#menu-bar {
  top: 12px;
}

#menu-bar:before {
  content: "CLOSE";
  position: absolute;
  top: 5px;
  right: 0;
  left: 0;
  color: #000;
  font-size: 8px;
  text-align: center;
}
.is-active #menu-bar:before{
 color: #fff;
}
#menu-checkbox:checked + #menu-label:before {
  left: -39px;
}

#menu-checkbox:checked + #menu-label:after {
  left: 39px;
}

#menu-checkbox:checked + #menu-label #menu-bar:before {
  animation: moveUpThenDown 0.8s ease 0.2s forwards,
    shakeWhileMovingUp 0.8s ease 0.2s forwards,
    shakeWhileMovingDown 0.2s ease 0.8s forwards;
}

@keyframes moveUpThenDown {
  0% {
    top: 0;
  }
  50% {
    top: -27px;
  }
  100% {
    top: -14px;
  }
}

@keyframes shakeWhileMovingUp {
  0% {
    transform: rotateZ(0);
  }
  25% {
    transform: rotateZ(-10deg);
  }
  50% {
    transform: rotateZ(0deg);
  }
  75% {
    transform: rotateZ(10deg);
  }
  100% {
    transform: rotateZ(0);
  }
}

@keyframes shakeWhileMovingDown {
  0% {
    transform: rotateZ(0);
  }
  80% {
    transform: rotateZ(3deg);
  }
  90% {
    transform: rotateZ(-3deg);
  }
  100% {
    transform: rotateZ(0);
  }
}

/*****/

button.menu-toggle {
    padding: 6px 8px;
    z-index: 9999;
}

/* --- Main Menu Panel Container --- */
#mobile-menu-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Use 100vh for full viewport height */
    background-image: linear-gradient(108deg, #000000, #2758e3 35%, #ffffff);
    background-size: 100%;
    color: var(--menu-text);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

#mobile-menu-panel.is-open {
    transform: translateX(0);
}

/* --- NEW: Static Header & Footer --- */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 1.25rem 2.5rem;
    flex-shrink: 0;
    position: relative; /* For z-index to work */
    z-index: 9;
}

.mobile-menu-header .logo svg {
    width: 100px;
    height: auto;
}

.sticky-close-btn {
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
}

.sticky-close-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--menu-text);
}

.mobile-menu-footer {
    display: flex;
    flex-direction: column;
    margin-bottom: 2.5rem;
    padding: 1.25rem;
    gap: 2.5rem;
}

/* --- Panels Staging Area (The sliding part) --- */
.menu-panels-container {
    flex-grow: 2; /* Takes up remaining space */
    position: relative;
    overflow: hidden;
}
.mobile-menu-info span {
    font-size: var(--font-sm);
    color: #fff;
}
.mobile-menu-info p{
    font-size: var(--font-md);
    color: #fff;
}
/* --- Individual Panel Styling --- */
.menu-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(100%); /* Start off-screen to the right */
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

/* --- NEW Panel Animation States --- */
.menu-panel.is-active {
    transform: translateX(0);
}

.menu-panel.is-prev-level {
    transform: translateX(-100%); /* Parent panel is now off-screen to the left */
}

/* --- Panel Structure (Header for back/title, Content) --- */
.panel-header {
    display: flex;
    align-items: center;
    padding: 15px 1.25rem;
    flex-shrink: 0;
}

.panel-title {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 5px;
    font-weight: 400;
    font-size: var(--font-body);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Hide main menu title as it's redundant with logo */
#main-menu-panel .panel-header {
    display: none;
}
svg.right-arrow {
    fill: #fff;
    height: 24px;
    padding: 0 10px;
}
.panel-content ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;    
}
.panel-back-btn {
    display: flex;
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
    position: absolute; /* Keep it left, title will center properly */
    left: 5px;
}

.panel-back-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--menu-text);
}
.panel-back-btn span{
    color: #fff;
}
.panel-content {
    flex-grow: 1;
    overflow-y: auto;
    padding-top: 2.5rem;    
}

/* --- Navigation List Styling --- */
.panel-content nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.panel-content nav li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 1.25rem;
    color: var(--menu-text);
    text-decoration: none;
    font-size: var(--font-st);
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.panel-content nav li a:hover {
    background-color: rgba(255, 255, 255, 0.05);
}
        
a.mobile-menu-item {
    text-decoration: underline !important;
    text-underline-offset: 6px;
}

/***********************************************************************************************************************/

section {
    padding: 0 2.5rem;
}

body.overlay #body-overlay::after{
    content: "";
    background: rgba(0, 0, 0, .44);
    display: block;
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    backdrop-filter: blur(2px);
}
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    transition: transform 0.3s ease-in-out;
}
.site-header.hide {
transform: translateY(-100%);
}
/**
.top-bar {
    text-align: center;    
    width: 100%;
    padding: 5px;
}
span.notice {
    font-size: var(--font-sm);
}
**/
.nav-container{
    display: flex;
    flex: 0 0 60%;    
    justify-content: center;   
}
.hedear-section.header-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 1.25rem;
}
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1400px;
    padding: 0 2.5rem;
}
g#__lottie_element_28 {
    display: none !important;
    opacity: 0 !important;
}
.logo-container {
    display: flex;
    flex: 0 0 20%;    
    justify-content: start;
}
a.logo-link {
    position: relative;
    width: 150px;    
}
a.logo-link::after{
    content: "";
    position: relative;
}
g[transform="matrix(0.37545713782310486,0,0,0.37545713782310486,569.054931640625,232.40797424316406)"] {
    display: none !important;
}
.cta-container.header-cta {
    display: flex;
    flex: 0 0 20%;    
    justify-content: end;
}
.main-nav>ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0 2.5rem;
    background: var(--bg-light);
    border-radius: 50px;
    box-shadow: var(--box-shadow);
}
body.overlay .main-nav>ul{
    box-shadow: none;
}

.main-nav>ul>li {
    padding: 1rem;
}

.main-nav>ul>li>a {
    display: block;
    text-decoration: none; 
    color: var(--text);
}
.mega-menu-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--text);
    width: 15px;
    height: 15px;
    padding: 4px 4px 3px 4px;    
    margin-left: 5px;
    border-radius: 50%;
}

.mega-menu-icon>svg {
    fill:var(--bg);
    padding: 0;
    height: 11px;
    transition: 400ms ease-in-out;        
}
.mega-menu.hovered .mega-menu-icon>svg {
    rotate: 135deg;
    transition: 400ms ease-in-out;
}
/* Style the tab */
.nav-item.mega-menu {
    display: flex;
    align-items: center;
}

.nav-item.mega-menu:hover .mega-menu-wrapper{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);    
}
.mega-menu-wrapper {
    display: flex;
    justify-content: center;    
    position: absolute;
    padding: 2.5rem 0;    
    top: 100%;
    left: 0;
    width: 100%; 
    background: var(--bg-light);
    opacity: 0;
    visibility: hidden;
    transform: translateY(1.25rem); 
    transition: all 0.3s ease;
    z-index: 100;    
  
}
header.site-header:has(.hovered), header.site-header:has(.hovered) .hedear-section.header-container {
    background: #fff;
}
.tabs-container {
    width: 1320px;
    display: flex;
    gap: 7px;
    justify-content: space-around;
}
.tabs {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 0 0 40%;
    padding-right: 7px;
    border-radius: 10px;
    list-style-type: none;
    gap: 7px;
}
.tab-details {
    display: flex;
    flex-direction: column;
}
.maintenance-program {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    height: 100%;
    padding: 1.25rem;
    border-radius: 10px;

}
.tab-wrapper {
    display: flex;
    flex: 1 0 70%;
}
.tab-content-wrapper {
    overflow-y: hidden;
    overflow-x: auto;
    height: 285px;
    display: flex;
    flex-direction: column;
    flex: 1 0 60%;
    transition: all 0.45s ease-in-out;
    margin-right: 1.25rem;
    box-shadow: var(--box-shadow);
    border-radius: 10px;
}
.tab-title {
    font-size: var(--font-md);
    margin: 0;
    font-weight: 600;        
}
.tab-stubtitle {
    font-size: var(--font-xsm);
}
.tab-icon>svg {
    fill: transparent;
    rotate: 45deg;
    position: absolute;
    top: -2rem;
    right: 1.25rem;
    transition: 200ms ease-in-out;
}
.tab-content {
    font-size: 0.8rem;
    min-height: 100%;
    overflow-x: auto;
    transition: all 0.45s ease-in-out;
    background: var(--color-accent);
    border-radius: 10px;
    padding: 2.5rem;
}
li.s-item>a {
    text-decoration: none;
    font-size: var(--font-md);
}

.tabs a {
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.mega-menu-wrapper .tabs li>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.25rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    background: var(--bg-light);
}
.tabs .active, .tabs a:hover {
    outline: none;
    color: var(--text);
    background: var(--color-accent) !important;    
}
ul.serive-items>li.s-item {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding-bottom: 1.25rem;
}
ul.serive-items>li.s-item svg {
    height: 25px;
    width: 25px;
    fill: var(--icon);
}
.active .tab-icon>svg {
    fill: var(--color-primary);
    top: 50%;
    transform: translate(-50%);
}
.cta-content-bg {
    padding: 7px;
    border-radius: 16px;
    background: var(--bg);
}
.m-title {
    font-size: var(--font-lg);
    padding-bottom: 0.625rem;    
}

.m-dec {
    font-size: var(--font-sm);
    display: block;
}
.m-btn {
    padding: 7px;
    margin-top: auto;
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
}
.m-btn .btn-icon {
    background: none;
    width: 100%;
}
.m-btn .btn-bg {
    background: var(--color-primary) !important;
}
.m-btn svg {
    fill: var(--bg);
    height: 14px;
    width: 14px;
    padding: 0;
}

/**** menu ends***/


.hero-section .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
    z-index: 9;
    position: relative;
    height: 700px;
    gap: 2.5rem;
    padding-bottom: 0;
}
.hero-bg {
    position: absolute;
    z-index: -1;
}

.animated-heading {
    text-align: left;
}
.static-text{
    font-size: clamp(2.55rem, 7vw,4.25rem); /* Adjust size as needed */
    font-weight: 800;
    color: var(--text);
    line-height: 1.1;

}
.word-rotator-wrapper {
    display: inline-block;
    position: relative;
    vertical-align: baseline; /* Aligns the wrapper with the bottom of the text line */
    height: 5rem; /* Should be slightly larger than the line-height to prevent clipping */
    overflow: hidden;
    margin-bottom: -10px;    
}

.word-rotator {
    left: 0;
    top: 0;
    /* This transition is key to the bouncy slide-up effect */
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* For performance optimization */
    will-change: transform;
}

.word {
    font-size: inherit;
    font-weight: inherit;
    height: 5rem; /* Must match the wrapper height */
    display: flex;
    align-items: center;
    background-color: rgba(27, 27, 27, 0.44);
    
    /* The gradient styling 
    background: linear-gradient(90deg,var(--color-primary),#ff2cc0 32%,#3f2fee 99%);*/
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


.platform-profiles {
    display: flex;
    width: 350px;
    gap: 1.25rem;
}
.hero-profile {
    padding: 0 !important;
    background: transparent !important;
}
.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}
.hero-cta-profile {
    padding-bottom: 80px;
}
.hero-info {
    display: flex;
    flex-direction: column;
    flex: 0 0 45%;
    justify-content: end;
    gap: 2.5rem;
    padding-bottom: 4rem;    
}
.hero-profile {
    display: flex;
    flex-direction: column;
    padding: 5px 1.25rem;
}
.platforms-rating {
    display: flex;
}
.platform-logo.upwork>img {
    max-height: 18px;
}
.platform-logo>img {
    max-height: 15px;
}
.platform-logo {
    text-align: left;
}
.p-rating {
    font-size: 14px;
    font-weight: bold;
    margin: 0 10px 0 0;
}


.star-rating svg{
    width: 15px;
    height: 18px;
    fill: var(--color-primary);
    margin-left: -6px;        
}

.agency-rating-card .rating-star .stars svg {
    width: 1.25rem;
    height: 1.25rem;    
    fill: var(--color-primary);
}
.platform-logo svg{
    height: 15px;
    fill: currentColor;
}
span.platforms>svg {
    margin-left: -5px;
}
span.p-text {
    color: var(--text);
    font-weight: 600;
    font-size: var(--font-lg);
    width: 200px;
}

/* --- Main Content Styling --- */

/* --- Body Blur Effect --- */
#body-overlay {
    transition: filter 0.5s ease-in-out;
}
#body-overlay.blurred {
    filter: blur(10px);
}


section.hero-section {
    padding-bottom: 0;
    border-bottom: 1px solid var(--border);
}

/** Top fade **/
.gallery::before,
.gallery::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 5rem;
  pointer-events: none;
}

.gallery::before {
  top: 0;
  background: linear-gradient(to bottom, #f2f2f2 0%, transparent 100%);
  z-index: 999;
}

.gallery::after {
  bottom: 0;
  background: linear-gradient(to top, #f2f2f2 0%, transparent 100%);
}

.brand-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 2.5rem;
}
.brand-logos-container {
    display: flex;
    padding-top: 35px;    
    justify-content: space-between;
    width: 100%;
}
.brand-logo{
    width: 100%;
    height: 30px;
    object-fit: contain;
    filter: brightness( 100% ) contrast( 100% ) saturate( 0% ) blur( 0px ) hue-rotate( 0deg );
}
.brand-swiper { 
    width: 100%; 
    overflow: hidden; 
}
.brand-swiper .swiper-slide{
    height: 30px;
}

.swiper-wrapper {
    transition-timing-function: linear !important;
}

.about-section{
    position: relative;
    z-index: 9;
}
.about-wrapper {
    display: flex;
    gap: 5rem;
}
.about-left {
    width: 40%;
}
.about-right {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: 60%;
}
.about-info {
    display: flex;
    gap: 7px;    
}
.about-box1, .about-box2 {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    gap: 2.8rem;
    padding: 1.25rem;
    font-weight: 800;
    background: var(--bg);
    border-radius: 10px;
    box-shadow: var(--box-shadow);   
    overflow: hidden; 
}
.about-box1:hover .btn-icon.hover, .about-box2:hover .btn-icon.hover  {
    position: absolute;
    top: 2.5rem;
    right: 1.25rem;
    opacity: 1;
    transition: 400ms ease-in-out;
}
.about-box1 .btn-icon.hover, .about-box2 .btn-icon.hover{
    right: 1.25rem !important;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;    
}
.number-range {
    font-size: 3rem;
    font-weight: 600;    
}
.verified-reviews {
    display: flex;
}
svg.verified {
    width: 1.5rem;
    margin-right: 7px;
}

.about-right .process-review .testimonial-footer {
    padding-bottom: 0;
}


.about-right  span.quote-icon>img {
    filter: invert(1);
}

/* --- Promo Video Styling --- */
.video-wrapper {
    margin-bottom: 7px;
    overflow: hidden;
    box-shadow: var(--box-shadow);  
}

#promoVideo {
    display: block;
    width: 100%;
    cursor: pointer;
    border-radius: 10px;
}

/* --- Modal Styling (with transitions added) --- */
#modal-overlay {
    position: fixed;
    z-index: 999999999;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    /* ADDED: Transition for the overlay fade */
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

#modal-line {
    position: fixed;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
    transform-origin: left;
    transform: scaleX(0);
    /* ADDED: Transition for the line animation */
    transition: transform 0.4s cubic-bezier(0.5, 0, 0.25, 1); /* Matches GSAP ease 'power2.in' */
}

#modal-content-wrapper {
    position: relative;
    width: 90vw;
    max-width: 1200px;
    aspect-ratio: 16 / 9;
    background-color: black;
    box-shadow: 0 1.25rem 50px rgba(0,0,0,0.5);
    overflow: hidden;
    transform: scaleY(0);
    visibility: hidden;
    /* ADDED: Transition for the vertical expansion */
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1); /* Matches GSAP ease 'power3.inOut' */
}

#modal-video-wrapper,
#close-btn {
    /* ADDED: Make content initially transparent for fade-in effect */
    opacity: 0;
    /* ADDED: Transition for the final fade-in */
    transition: opacity 0.3s ease;
}

#modal-video-wrapper video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

#close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.70);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    z-index: 10;
    /* Keep existing transitions for hover effects */
    transition: background-color 0.2s, transform 0.2s, opacity 0.3s ease;
    transform: rotate(45deg);

}
#close-btn:hover {
    transform: rotate(135deg);
}
#close-btn::before{    
    content: " ";
    position: absolute;
    background-color: #000;
    transition: transform .35s ease-out;
    left: 50%;
    height: 1px;
    width: 40px;
    transform: translate(-50%, -1px);
}

#close-btn::after {
    content: "";
    position: absolute;
    background-color: #000;
    transition: transform .45s ease-out;
    width: 1px;
    height: 40px;
    top: 50%;
    transform: translate(-1px, -50% );
}
#close-btn:hover::before, #close-btn:hover::after{    

    background-color: #ff0000;

}



.work-container {
    position: relative;
    z-index: 9;
}
.work {
    width: 100%;
}
.f-work-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 95% !important;
    left: 0px !important;
    color: var(--text);
    padding: 8px;
    width: 80px;
    border: 1px solid;
  } 
.swiper-button-next svg{
    rotate: 45deg;
}
.swiper-button-prev svg{
    rotate: -135deg;    
}
.swiper-button-next {
    left: 100px !important;
}
.work-wrapper {
    display: flex;
    flex-direction: column;
    gap: 7px;
    overflow: hidden;
}
.work-content {
    display: flex;
    gap: 7px;
}
.work-details {
    padding: 1.25rem;
    background: var(--bg);
    border-radius: 10px;
    margin-top: 7px;
    box-shadow: var(--box-shadow);    
}
.work-tag {
    font-size: var(--font-sm);
    line-height: 1.4;
}
.work-tag:not(:last-child)::after {
    content: "●";
    padding: 0 10px;
}

img.work-image {
    width: 100% ;
}
    .reveal {
      position: relative;
      overflow: hidden;
      aspect-ratio: 3 / 2;
      border-radius: 10px;
    }

    .reveal img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.05);
      transition: clip-path 1.4s;
      clip-path: inset(0 100% 0 0); /* hidden from right side */
    }

    .reveal.animating img {
      clip-path: inset(0 0 0 0); /* fully visible */
    }

    /* optional curtain overlay for nice "wipe" shine */
    .reveal::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      transform: translateX(0);
      transition: transform 1.4s;
      z-index: 2;
    }

    .reveal.animating::after {
      transform: translateX(100%);
    }

.work-title {
    font-size: var(--font-st);
    font-weight: 800;
    line-height: 1.2;  
}


/** why section**/

.why-us-container {
    position: relative;    
    display: flex;
    flex-direction: row;
    gap: 5rem;
    
}
.why-title{
    display: flex;
    flex: 1 1 40%; 
    flex-direction: column;
    position: sticky;
    top: 6.5rem; 
    height: max-content;   
}
.why-us-container .box{
    padding: 0;
}

.why-description {
    padding-bottom: 1.25rem;
}
.why-us-container .plus, .why-us-container .percent {
    padding-left: 7px;
}
.why-us-container .stat-number, .why-us-container .plus, .why-us-container .percent{
    font-size: 2rem;
}
.why-us-container .stat-item{
    padding: 1.25rem;
}
.why-points {
    display: flex;
    flex: 1 1 60%;
    flex-direction: column;
    gap: 7px;
}
.point-box {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: var(--box-shadow); 
    backdrop-filter: blur(10px);   
}
.point-icon {
    padding: 2.5rem 2.5rem 0;
}
.point-title {
    font-size: var(--font-st);
    font-weight: 800;
}
.point-description {
    padding: 2.5rem;
    background: var(--bg);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}
.title-icon-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0 2.5rem 2.5rem;
}
.point-icon svg {
    width: 2.5rem;
    height: 2.5rem;
}
.quote-icon svg {
    height: 24px;
}
.point-title-icon svg.dark {
    height: var(--font-sm);
}
img.bg-1, img.bg-2 {
    position: absolute;
    z-index: -1;
    filter: blur(5px);
    opacity: 0.5;
}


/** process section**/
.process-section{
    position: relative;    
}

.proccess-title, .process-parent {
    z-index: 2;
    position: relative;
}
.process-parent {
    display: flex;
    flex: 1 1 auto;
    justify-content: space-between;
    gap: 7.5rem;
}
.process-wrapper {
    flex: 0 0 70%;
    margin: auto;
}
.process-item {
    background: var(--bg-gradient);
    border-radius: 10px;
    padding-bottom: 7px;
    margin-bottom: 7px;
}
.process-item:last-child {
    border-bottom: none;
    margin-bottom: 0px;    
}
.process-review {
    flex: 0 0 calc(30% - 7.5rem);
}

.process-review  img.tauthor.rounded-circle{
    filter: grayscale(1);
}
p.reviews-proof {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
span.star-rating {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: var(--font-xsm);
    font-weight: 800;
}
.reviews-proof span.star-rating svg{
    width: 1.25rem;
    margin: 0;
}
span.rating-platform img {
    width: 60px;
}
.process-review .testimonial-footer {
    padding: 1.15rem 0 ;
}
.process-review  .t-position {
    font-size: var(--font-xsm);
}

.process-title {
    display: flex;
    align-items: center;
    font-size: var(--font-st);
    font-weight: 800;
    color: var(--text);
    cursor: pointer;
    position: relative;
    padding: 1.5rem;
}

.s-subtile {
    color: inherit;
    font-size: var(--font-lg);
}
.process-subtitle {
    font-size: var(--font-sm);
    color: var(--color-primary);
    padding-right:15px;
}
.toggle-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50px;
}
.process-item .toggle-icon::before{
    content: " ";
    position: absolute;
    background-color: var(--bg-dark);
    transition: transform .35s ease-out;
    left: 0;
    top: 50%;
    height: 2px;
    width: 100%;
    scale: 0.5;
}
.process-item .toggle-icon::after{
    content: "";
    position: absolute;
    background-color: var(--bg-dark);
    transition: transform .45s ease-out;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    scale: 0.5;
}

.process-item.active .toggle-icon::before{
    content: "";
    position: absolute;
    background-color: var(--color-primary);
    transition: transform .35s ease-out 0s;
    left: 0;
    top: 50%;
    height: 1px;
    width: 100%;
    transform: rotate(180deg);
    scale: 0.6;
}
.process-item.active .toggle-icon::after{
    content: "";
    position: absolute;
    background-color: var(--color-primary);
    transition: transform .45s ease-out 0s;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    transform: rotate(270deg);
    scale: 0.6;
}

.process-detils {
    display: none;
    padding: 2.5rem;
    background: #f2f2f2;
    margin: 7px 7px 0;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.step-1, .step-2 {
    display: block;
    color: var(--text);   
}
.step-1 {
    padding-bottom: 1.25rem;
}
.step-title {
    border-bottom: 1px solid;
}
span.quote-icon>img {
    width: 2.5rem;
}

.container.service-container {
    gap: 7px;
}
.service-content {
    display: flex;
    justify-content: space-between;
    gap: 7px;
    min-height: 420px;    

}
.service-area {        
    display: flex;
    flex-direction: column;
    flex: 1 1 60%;
    gap: 1.5rem;
    background: var(--bg);
    border-radius: 10px;    
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
}
.service-video {
    flex: 1 1 40%;
}
.service-video .video-container {
    display: flex;
    overflow: hidden;
    border-radius: 10px;
}
.service-video video {
    border-radius: 10px;
    width: 100%;
}
.service-text {
    display: flex;
    gap: 1.25rem;
}
.service-left {
    display: flex;
    flex: 0 1 40%;
}
.service-icon {
    display: none;
    height: 35px;
    width: 35px;
    margin-top: 12px;
    margin-right: 0.625rem;
}
.service-title {
    font-size: clamp(1.5rem, 4vw, 1.75rem);
    font-weight: 800;
    color: var(--text);
    width: max-content;
}

.service-left>p {
    margin-bottom: 1.25rem;
}
.service-icon svg {
    height: 30px;
    width: 30px;
    fill: var(--icon);
    stroke: var(--icon);
}
.stat-item {
    padding: 1.25rem;
}
a.no_.cta-button{
    border: 1px solid var(--text);
    background: var(--text);
    color: #fff;
}

a.service-link {
    display: flex;
    font-size: var(--font-sm);
    gap: 7px;
    align-items: baseline; 
    margin-bottom: 7px;   
/**    margin: 0 10px 10px 0;
    background: var(--bg-gradient);
    padding: 7px 14px;
    border-radius: 10px;**/
}
a.service-link:hover svg.dark {
    fill: var(--color-primary);
}
/**
.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    background-color: #000;
}**/


/*************stats*****************/

.stat-content {
    display: flex;
    gap: 7px;
}
.stat-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 7px;
}
.stats-grid {
    display: inline-grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
  }
.stat-number,span.plus, span.percent, .data {
    font-size: 3rem;
    font-weight: 800;
}
.stat-item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 2.5rem;
    position: relative;
    background: var(--bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}
.btn-icon.hover {
    position: absolute;
    top: -2.5rem;
    right: 2.5rem;
    opacity: 0;
    transition: 400ms ease-in-out;
    
}
.stat-item:hover .btn-icon.hover{
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    opacity: 1;
    transition: 400ms ease-in-out;
}
.stats{
    display: block;
    width: 100%;
    padding-top: 2.5rem;
}
.stat-label {
    font-weight: 800;
}
span.plus, span.percent {
    padding-left: 7px;
}


/*
.counterOne, .e-years .plus {
    color: #8d12b3;
}
.counterTwo, .p-completed .plus {
    color: #ff7a44;
}
.counterThree, .r-success .percent {
    color: #2eb10f;
}
    */

section.reviews-section{
    z-index: 9;
    margin-top: -1px;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}
.reviews-container {
    width: 100%;
    margin: 0 auto;
}
.reviews-items {
  display: flex;
  flex-wrap: nowrap;
}
.testimonial-head {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    background: var(--bg);
    padding: 1.25rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

img.tauthor.rounded-circle {
    filter: grayscale(1);    
    width: 50px;
    height: 50px;
    border-radius: 50px;
}
.testimonial {
    font-size: var(--font-st);
    font-weight: 800;
    line-height: 1.4;
}
.testimonial .text-invert{
    color: var(--text)
}
.testimonial::before {
    content: "\201C";
    display: inline-block;
    transform: scale(2);
}
.testimonial::after {
    content: "\201D";
}
.testimonial-footer {
    display: flex;
    gap: 10px;
    padding: 1.25rem;
}
span.t-name {
    font-weight: 800;
}
.t-position {
    font-size: 0.8em;
}

.avg-rating {
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 800;
    color: #33333370;
    line-height: 1;
}
.rating-star>svg {
    height: 30px;
    width: 30px;
}
.agency-rating-card {
    display: none;
    flex-direction: column;
    height: max-content;
    gap: 10px;
    padding: 1.25rem 2rem 0.75rem;
    background: var(--bg-light);
    box-shadow: var(--box-shadow);
    border-radius: 10px;
}

.score-platform {
    display: flex;
    align-items: end;
    gap: 10px;
}
.reviews-items {
  width: 100%;
  overflow: hidden; /* prevent overflow */
}


section.portfolio-section {
    background-color: var(--bg-light);
    z-index: 5;
    position: relative;
}
.text-invert-light{
    color: #949494;
    font-size: inherit;
    font-weight: inherit;
}
.text-invert{
    color: #1b1b1b70;
    font-size: inherit;
    font-weight: inherit;
}
#title-work{
    white-space: nowrap;
}

/** faq section**/

.faq-wrapper {
    flex: 1 1 60%;
}

h2.faq-title {
    width: 100%;
    margin: 0;
}
.faq-area {
    position: relative;    
    display: flex;
    gap: 5rem;
}
.ceo {
    position: sticky;
    top: 6.5rem;    
    flex: 1 1 40%;
    height: max-content;
    padding: 7px;
}
.ceo img.tauthor.rounded-circle {
    filter: none;
    width: 60px;
    height: 60px;
}
.ceo .testimonial-footer{
    padding: 1.688rem;
    padding-bottom: 0;
}
.ceo .t-name {
    font-size: var(--font-lg);
    line-height: 1;
}
.faq-cta {
    background: var(--bg);
    padding: 1.25rem;
    margin-top: 5rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}
.faq-cta a.no_.default-btn.hero-btn {
    margin-right: 1.25rem;
}
.faq-email{
    color: var(--color-primary);
    display: inline-flex;
    gap: 7px;
    padding-left: 7px;
    font-weight: 600;
}
.faq-item {
    background: var(--bg);
    border-radius: 10px;
    margin-bottom: 7px;
    padding: 0 1.25rem;
    position: relative;
    box-shadow: var(--box-shadow);
}
.faq-item:last-child{
    margin-bottom: 0px;
}
.faq-question {
    font-size: var(--font-lg);
    font-weight: 800;
    color: var(--bg-dark);
    cursor: pointer;
    position: relative;
    padding: 1.5rem;
}
.faq-answer {
    font-size: var(--font-md);
    display: none;
    padding: 1.25rem;
}
.faq-item .toggle-icon {
    background:none;
    right: 0px;    
}



.faq-item .toggle-icon::before{
    content: " ";
    position: absolute;
    background-color: var(--bg-dark);
    transition: transform .35s ease-out;
    left: 0;
    top: 50%;
    height: 2px;
    width: 100%;
    scale: 0.5;
}
.faq-item .toggle-icon::after{
    content: "";
    position: absolute;
    background-color: var(--bg-dark);
    transition: transform .45s ease-out;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    scale: 0.5;
}

.faq-item.active .toggle-icon::before{
    content: "";
    position: absolute;
    background-color: var(--color-primary);
    transition: transform .35s ease-out 0s;
    left: 0;
    top: 50%;
    height: 1px;
    width: 100%;
    transform: rotate(180deg);
    scale: 0.6;
}
.faq-item.active .toggle-icon::after{
    content: "";
    position: absolute;
    background-color: var(--color-primary);
    transition: transform .45s ease-out 0s;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    transform: rotate(270deg);
    scale: 0.6;
}
.faq-additional {
    padding: 1.688rem;
    padding-top: 0;
}
.faq-additional>span {
    font-size: var(--font-sm);
    font-weight: 800;
}

.list ul {
  list-style: none;
}
.list li {
  position: relative;
  margin-bottom: 0.5em;
  list-style-type: none;
  font-weight: 600;
}

.list li::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 1.25rem;
    color: var(--color-primary);
  background-color: currentColor; /* takes li text color */
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 31.73 31.73'><polygon points='31.73 0 1.73 0 1.73 4.9 31.73 4.9 31.73 0 31.73 0'/><polygon points='28.27 0 0 28.27 3.47 31.73 31.73 3.47 28.27 0 28.27 0'/><polygon points='31.73 0 26.83 0 26.83 30 31.73 30 31.73 0 31.73 0'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 31.73 31.73'><polygon points='31.73 0 1.73 0 1.73 4.9 31.73 4.9 31.73 0 31.73 0'/><polygon points='28.27 0 0 28.27 3.47 31.73 31.73 3.47 28.27 0 28.27 0'/><polygon points='31.73 0 26.83 0 26.83 30 31.73 30 31.73 0 31.73 0'/></svg>") no-repeat center / contain;
}


/** contact form***/
.form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    padding: 2.5rem;
    border-radius: 10px;
    background: #151619;
    box-shadow: var(--box-shadow);
}
.form_input {
    width: 100%;
    padding: 1rem;
    font-size: var(--font-sm);
    font-family: var(--font-body);
    border: 1px solid var(--border);
    outline: none;
    box-sizing: border-box;
    border-radius: 10px;
    color: var(--bg);
    
}
.form_input option[disabled][hidden] {
  display: none;
}
p.form_title {
    color: var(--bg);
}
.form_input:focus {
    border-color: var(--color-primary);
    background: #151619;
}
input:invalid, textarea:invalid, select:invalid {
    background: #1C1D20;
    
}
input:valid, textarea:valid, select:valid {
    background: #151619;
    border-color: var(--color-primary);
}
.form_label {
    position: absolute;
    left: 18px;
    top: 16px; /* same as input padding-top */
    color: var(--text-muted);
    font-size: var(--font-sm);
    pointer-events: none; /* click passes through to input */
    transition: all 0.2s ease;
}

.form_label.active {
    top: -8px;           /* float above input */
    font-size: var(--font-xsm);      /* smaller font */
    color: var(--color-primary);       /* highlight color */
    background: #151619;     /* optional, prevents overlap */
    padding: 0 4px;
}
/* label animation ends */

.fields {
    position: relative;
    margin-bottom: 1.25rem;
}
.fields:last-child {
    margin-bottom: 0;
}
.field-left, .field-right{
    flex: 0 0 48%;
}
.full-width{
    flex: 0 0 100%;
}
input[type="checkbox"] {
    display: none;
}
.checkboxes {
    display: flex;
    gap: 1.25rem;
    padding-top: 1.25rem;
}
.form_checkbox span{
    padding: 14px;
    border: 1px solid var(--border);
    cursor: pointer;
    color: var(--text-muted);
    border-radius: 10px;
    font-size: var(--font-sm);      
}
textarea#message {
    resize: vertical;
    overflow-y: auto;
    white-space: break-spaces;
}
.form_checkbox input:checked + span {
    color: var(--color-primary);
    font-weight: 600;
    border-color: var(--color-primary);
}
button.form-btn {
    width: 100%;
    background: none;
    outline: none;
    border: none;
}
.submit-btn {
    width: 100%;
    background: var(--color-primary) !important;
    justify-content: center;
    padding: 1.25rem;
    border-radius: 10px;
    margin-top: 1.25rem;
    font-size: var(--font-md);
}
.submit-btn span{
    font-size: var(--font-md);
}
.submit-btn:hover span{
    color: var(--bg-dark);
}
.submit-btn .btn-bg{
    background-color: var(--bg)
}

/** form ends */

.contact-section{
    background: var(--bg);
}
.contact-form{
    display: flex;
    align-items: center;
}
.contact-area {
    display: flex;
    gap: 10px;
}
.contact-box, .contact-form {
    flex: 0 0 50%;
}
.contact-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 7px;
}
.box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 1.25rem;
    background: var(--bg);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}
.contact-email.box{
    grid-area: 1 / 1 / 2 / 2;
}
.contact-call.box{
    grid-area: 1 / 2 / 2 / 3;
}
.full-width.box{
    grid-area: 2 / 1 / 3 / 3;
}
.contact-icon {
    margin: 0 0 auto 0;
}

.contact-subtitle {
    font-weight: 800;
}
.contact-txt {
    font-size: var(--font-sm);
}
.contact-link {
    color: var(--color-primary);
    font-weight: 600;    
}

/**Blog section**/

.blog-posts {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.blog-post {
    gap: 7px;
    display: flex;
    flex-direction: column;
    flex: 0 0 calc(33.333% - 5px);
}
.post-thumbnail a, .post-thumbnail a img {
    width: 100% !important;
    height: 100%;
    border-radius: 10px;
}
.post-thumb-content {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 2.5rem;
    background: var(--bg);
    box-shadow: var(--box-shadow);
    border-radius: 10px;
}
.post-meta {
    display: flex;
    gap: 0.625rem;    
}
.post-meta span {
    font-size: var(--font-sm);
}
.post-title p {
    font-size: var(--font-lg);
    font-weight: bold;
    line-height: 1.4;

}
.read-more-btn {
    padding-top: 1.25rem;
}

















.svg-container{
    position: absolute;
    top: 0; 
    left: 0;
    z-index: 9;
    height: 100vh;
    width: 200vw;
}


#scramble-text {
	font-size: 28px;
	position: absolute;
  left: 50%; top: 50%;
	transform: translate(-50%, -50%);
	color: #2196f3;
	display: flex;
}

#scramble-text > * {
	white-space: pre;
	overflow: hidden;
}

.remove {
	animation: animateRemove 1s both;
}

@keyframes animateRemove {
	to {
		color: #f44336;
		opacity: 0
	}
}

.add {
	color: #8bc34a;
}




/**** footer CSS ***/
footer.site-footer {
    position: relative;
    background: var(--bg-dark);
    margin: 1.25rem;
    border-radius: 20px;
}
footer.site-footer::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    bottom: 0%;
    width: 100%;
    background: url(/assets/images/shape-bg.png);
    z-index: 1;
    filter: brightness(0.5);   
    opacity: 0.5;  
    background-size: cover;
}
.footer-container {
    gap: 4rem;
    padding-top: 7.75rem;
    z-index: 99;
    position: relative;
    border: none;
}
.footer-top {
    display: flex;
    justify-content: space-between;
}
.footer-services {
    display: flex;
    flex: 0 0 55%;
    justify-content: space-between;
}
.footer-support {
    display: flex;
    flex-direction: column;
    flex: 0 0 35%;
}
.footer-top .logo {
    padding-bottom: 2.5rem;
}
h3.cta-title {
    font-size:var(--font-st);
    font-weight: 400;
    color: #fff;    
}
.footer-support>p {
    font-size: var(--font-st);
    color: #fff;
}

a.footer-email{
    font-size: var(--font-st);
    color: var(--color-primary) !important;
    font-weight: 600; 
    padding: 0;
    border-radius: 0;  
    position: relative;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(90deg, currentcolor, currentcolor);
    background-size: 100% 2px;
    background-position-x: 0%;
    background-position-y: calc(100% - 1.5px);
    background-repeat: no-repeat;

    &:hover {
        animation-name: underlineHover;
        animation-duration: 0.6s;
        animation-timing-function: ease-in-out;
    }
}
.footer-support>p>svg {
    height: 24px;
    padding: 4px;
    fill: #fff;
}
.footer-icon svg{
    padding-left: 5px;    
    height: 14px;
    fill: #fff;
}
.foter-md h3 {
    font-size: var(--font-st);    
    color: #fff;
    padding-bottom: 2.5rem;
    font-weight: 400;
}
.foter-md p{
    margin-bottom: 1.25rem;
}
.foter-md a {
    color: var(--text-muted);
    font-size: var(--font-md);
}
.service-divider::after {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    background: #333333;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
}

.bottom-title {
    font-size: var(--font-md);
    color: var(--text-muted);
    padding-bottom: 1.25rem;    
}
.home-base {
    font-size: var(--font-md);
    font-weight: 600;
    padding-bottom: 1.25rem;
    color: #fff;
}
.social-icon a {
    color: #fff;
    font-size: var(--font-sm);
}
.social-icon {
    display: flex;
    gap: 1.25rem;
}
span.footer-menu-icon svg {
    height: 12px;
    fill: #fff;
    padding-left: 5px;
}

.home-address{
    font-size: var(--font-sm);
    color: var(--text-muted);
}

.copyright span {
    font-size: var(--font-sm);
    color: var(--text-muted);
    padding-bottom: 10px;    
}
.copyright a {
    font-size: var(--font-sm);
    color: #fff;
}
.copyright {
    padding-top: 2.5rem;
}
img.footer-bottom-logo {
    margin-bottom: -10px;
    filter: invert(1);
}

/******************************************************************************************************/





section.brand-section {
    position: relative;
    z-index: 99;
    margin-top: -1px;
}
.reviews-items .swiper-slide {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 10px;
}

.gallery-container {
    display: flex;
    flex: 0 0 40%;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* Gallery Column Styling */
.gallery {
    /* Define the viewport height for the gallery */
    height: 700px;
    overflow: hidden; /* Crucial: This hides the overflow */
    position: relative;
    /* Optional: Masking effect for fading edges
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%); */
}

.gallery-track {
    display: flex;
    flex-direction: column; /* Stack images vertically */
    /* Transform will be controlled by JavaScript */
}

/* Images inside the track */
.gallery-track img {
    border-radius: 10px;
    filter: brightness(1);
    width: 100%;
    object-fit: cover;
    display: block;
    margin-bottom: 10px; /* Space between images */
    box-shadow: var(--box-shadow);
}


.reviews-header {
    display: flex;
    justify-content: space-between;
}


