
/*** cursor ends **/
/*** 
canvas{
    background-image: linear-gradient(180deg, #fff 50%, #F3F2F2 100%);    
}


**/

/* --- Menu Toggle (Hamburger) --- */
.menu-toggle {
    display: none;
    position: fixed;
    right: 20px;
    border: none;
    cursor: pointer;
}

#menu-btn-container {
  position: absolute;
  top: 50%;
  right: 0px;
  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: 20px;
  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: 6px;
}

#menu-label:after {
  top: 12px;
}

#menu-bar {
  top: 18px;
}

#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 var(--menu-duration) var(--menu-timing);
    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 20px 40px;
    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: 40px;
    padding: 20px;
    gap: 40px;
}

/* --- 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 var(--menu-duration) var(--menu-timing);
    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 20px;
    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: 40px;    
}

/* --- 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 20px;
    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;
}

/***********************************************************************************************************************/

body.overlay #otrivo-wrapper::after{
    content: "";
    background: rgba(0, 0, 0, .44);
    display: block;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    backdrop-filter: blur(2px);
}
.site-header {
    background: #ffffff70;
    z-index: 999999;
    position: fixed;
}

.top-bar {
    text-align: center;    
    background: var(--color-light-bg);
    width: 100vw;
    padding: 5px;
}
span.notice {
    font-size: var(--font-sm);
}

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;
}

.nav-container{
    display: flex;
    flex: 0 0 60%;    
    justify-content: center;   
}
.hedear-section.header-container {
    position: relative;
    width: 100vw;
    display: flex;
    justify-content: center;
    backdrop-filter: blur(10px);
}
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1400px;
}
.main-nav>ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.main-nav>ul>li {
    padding: 30px 20px;
}

.main-nav>ul>li>a {
    display: block;
    text-decoration: none; 
    color: #1B1B1B;
}
.mega-menu-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    width: 15px;
    height: 15px;
    padding: 4px 4px 3px 4px;    
    margin-left: 5px;
    border-radius: 50%;
}

.mega-menu-icon>svg {
    padding: 0;
    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: 40px 0;    
    top: 100%;
    left: 0;
    width: 100vw; 
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px); 
    transition: all 0.3s ease;
    z-index: 100;    
  
}
header.site-header:has(.hovered) {
    background: #ffffff;
}
.tabs-container {
    width: 1400px;
    display: flex;
    justify-content: space-around;
}
ul.tabs {
    flex: 0 0 30%;
    padding-right: 40px;    
}
.maintenance-program {
    display: flex;
    flex-wrap: wrap;
    flex: 0 0 25%;
    justify-content: space-between;
    padding: 30px;
    border: 1px solid var(--color-border);
    background: #f3f2f2;
}      
.tab-content-wrapper {
    overflow-y: hidden;
    overflow-x: auto;
    height: 300px;
    display: flex;
    flex-direction: column;
    flex: 0 0 45%;
    transition: all 0.45s ease-in-out;
    padding-left: 40px;
}
.tab-title {
    font-size: var(--font-md);
    margin: 0;
    font-weight: bold;        
}
.tab-stubtitle {
    font-size: var(--font-xsm);
}
.tab-icon>svg {
    height: var(--font-sm);
    rotate: 45deg;
}
.tab-content {
    font-size: 0.8rem;
    min-height: 100%;
    min-width: 240px;
    overflow-x: auto;
    transition: all 0.45s ease-in-out;
}
li.s-item>a {
    text-decoration: none;
    font-size: var(--font-md);
}
.tabs {
    position: relative;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #F0F0F0;
    list-style-type: none;
    gap: 8px;
}
.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%;
    border: 1px solid var(--color-border);
    padding: 20px 30px;
}
.tabs .active, .tabs a:hover {
    font-weight: 700;
    outline: none;
    color: #1B1B1B;
    background: #0058ff1c;    
}
ul.serive-items>li.s-item {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 25px;
}
ul.serive-items>li.s-item svg {
    height: 25px;
    width: 25px;
}
.active .tab-icon>svg {
    fill: var(--color-primary);
}
.m-title {
    font-size: var(--font-lg);
    padding-bottom: 10px;    
}

.m-dec {
    font-size: var(--font-sm);
    display: block;
}
.m-btn {
    margin-top: 20px;
    background: #0058ff !important;
    border-radius: 0px !important;
    padding: 10px 12px !important;
    height: 40px;
    width: 40px;   
}
.m-btn svg {
    fill: #FFFFFF;
    height: 16px;
    width: 16px;
    padding: 0;
}

/**** menu ends***/

.container{ 
    display: flex;
    flex-direction: column;  
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 0px;
    gap: 20px;
}












/** hero new css**/

.p-right {
    flex-direction: column !important;
        flex: 0 0 25.5%;
        gap:40px !important;
}
.hero-text {
    text-align: left;
}
.platform-profiles {
    display: flex;
    justify-content: space-between;
}

span.hero-slogan {
    text-align: left;
    font-weight: 600;
}

.hero-profile {
    padding: 0 !important;
    background: transparent !important;
}
.p-left {
    display: flex;
        flex: 0 0 60%;
    flex-direction: column;
    gap: 40px;
}

span.p-text {
    color: #000;
    font-weight: 600;    
    font-size: var(--font-lg);
    text-align: center;
    padding-bottom: 20px;
}
.animated-heading {
    text-align: left;
}

.static-text{
    font-size: clamp(2.75rem,4vw,4.5rem); /* Adjust size as needed */
    font-weight: 700;
    color: #1b1b1b;
    margin: 0;
    padding: 0;
}

.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: clamp(2.75rem,4vw,4.5rem);
    font-weight: 700;
    height: 5rem; /* Must match the wrapper height */
    display: flex;
    align-items: center;
    
    /* The gradient styling */
    background: linear-gradient(90deg,#ff9b55,#ff2cc0 32%,#3f2fee 99%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}














.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 620px;
    z-index: 1;
}
.hero-section .container {
    text-align: center;    
    z-index: 9;
    position: relative;
    pointer-events: none;
    height: 620px;
    justify-content: flex-end;
    gap: 40px;    
}
.hero-overlay {
    display: flex;
    align-items: center;    
    position: absolute;
    height: 620px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    font-size: 20vw;
    font-family: "Guminert", Sans-serif;
    opacity: 0.8;
    color: #ffffff70;
    pointer-events: none;
}
h2.hero-title {
    font-size: clamp(3rem, 8vw, 4rem);
    margin: 0;    
}



/* Rotating container — keep inline but relative for positioning
.rotating {
  display: inline-block;
  position: relative;
  width: 450px;      
  height: 108px;
  vertical-align: middle;  
  overflow: hidden;
  margin-left: 10px; 
  text-align: left;
}
.rotating-inner {
  position: absolute;
  width: 100%;
}
.rotating-inner .gradient-txt {
  position: absolute;
  left: 0%;
  top: 0;
  transform: translate(-50%, 108px);
  white-space: nowrap;
  opacity: 0;
  animation: slideUp 10s linear infinite;
  animation-fill-mode: both;
}
.rotating-inner .gradient-txt:nth-child(1) { animation-delay: 0s; }
.rotating-inner .gradient-txt:nth-child(2) { animation-delay: 2.5s; }
.rotating-inner .gradient-txt:nth-child(3) { animation-delay: 5s; }
.rotating-inner .gradient-txt:nth-child(4) { animation-delay: 7.5s; }

@keyframes slideUp {
  0%        { opacity: 0; transform: translate(-0%, 108px); }
  5%        { opacity: 1; transform: translate(-0%, 0); }
  25%       { opacity: 1; transform: translate(-0%, 0); }
  30%       { opacity: 0; transform: translate(-0%, -108px); }
  100%      { opacity: 0; transform: translate(-0%, -108px); }
}
 */

span.hero-slogan {
    color: #000;    
    padding-top: 20px;
    max-width: 750px;
    display: inline-block;
}
h2.hero-subtitle {
    font-size: 1.4em;
    font-weight: 600;
    margin: 0;
    padding-top: 80px;    
}
a.no_.btn-dark.header-cta, a.no_.btn-dark.header-cta span {
    background: #0058ff;
}
.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.hero-cta-profile {
    padding-bottom: 80px;
}
.hero-proof {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.p-right {
    display: flex;
    gap: 5px;
}
.hero-profile {
    display: flex;
    flex-direction: column;
    background: #f4f3f370;
    backdrop-filter: blur(10px);
    padding: 5px 20px;
}
.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;
}

.platforms-rating span.star-rating .stars {
    height: 22px;
}
.star-rating svg{
    width: 15px;
    height: 18px;
    fill: #ff7c00;
    margin-left: -6px;        
}
span.rating-star .stars svg {
    fill: #ff7c00;
}
.platform-logo svg{
    height: 15px;
    fill: currentColor;
}

.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; 
}
.swiper-slide {
    display:flex; 
    align-items:center; 
    justify-content:center; 
}
.swiper-wrapper {
  transition-timing-function: linear !important;
}
.container.promo{
    margin-bottom: 40px;
    width: 100%; 
    height: auto;
}
video.video-container {
    width: 100%;  
}








section.work-section {
    background: #fff;
    padding: 40px 0 120px 0;
    z-index: 999999;
    position: relative;
}
.work-container {
    background: #fff;
    position: relative;
    z-index: 9;
}
.f-work-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.swiper.f-work-swiper {
    overflow: visible;
    max-width: 1200px;
    width: 100%;
    margin-left: 0;    
}
.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 100% !important;
    color: #1B1B1B;
    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: row;
    background-color: var(--color-lightest-bg);
    padding: 80px 60px;
    gap: 40px;    
}
.work-details {
    display: flex;
    flex-direction: column;
    width: 40%;
    align-items: start;    
}
span.work-tag {
    font-size: var(--font-sm);
    box-shadow: inset 0 0 0 1.1px rgba(0, 0, 0, .15);
    border-radius: 20px;
    padding: 5px 15px;
    background: var(--color-light-bg);
}

.work-tags {
    padding-top: 40px;
}
.work-link {
    padding-top: 40px;
}

.work-image {
    display: flex;
    width: 60%;
}
img.work-image-pic {
    max-width: 650px;
    transform: scale(1.2);
    transition: all 400ms ease-in-out;
}
img.work-image-pic:hover {
   transform: scale(1.4);
}
img.work-logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.work-slide {
    text-align: start;
}
.slide-title, .p-title {
    font-size: var(--font-st);
    font-weight: 400;
    margin-bottom: 1em;
    letter-spacing: -1px;    
}
.p-title{
    font-weight: 800;
    color: #1B1B1B;
}

.sticky-cards{
    position: relative;
    width: 100vw;
    background-color: #fff;
}

/** process section**/
.process-section{
    background-color: #000;
    padding: 80px 0;
}
.process-parent {
    display: flex;
    flex: 1 1 auto;
    justify-content: space-between;
    gap: 80px;
}
.process-wrapper {
    flex: 0 0 70%;
    margin: auto;
    background: #242424;
}
.process-review {
    flex: 0 0 calc(30% - 80px);
}
.process-review span{
    font-size: var(--font-md);
    color: #ddd;
}
.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;
    gap: 10px;
}
.reviews-proof span.star-rating svg{
    width: 20px;
}
span.rating-platform img {
    width: 80px;
}
.process-review .testimonial-footer {
    padding: 20px 0 40px 0;
}
.process-review  .t-position {
    font-size: var(--font-sm);
}
.process-item {
    border-bottom: 1px solid #484848;
}
.process-item:last-child {
    border-bottom: none;
}
.process-title {
    display: flex;
    align-items: center;
    font-size: var(--font-st);
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    position: relative;
    padding: 30px;    
}
.s-subtile {
    color: inherit;
    font-size: var(--font-lg);
}
.process-subtitle {
    font-size: var(--font-sm);
    color: #707070;
    padding-right:15px;
}
.toggle-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);    
    right: 40px;
    width: 25px;
    height: 25px;
}
.process-item .toggle-icon::before{
    content: " ";
    position: absolute;
    background-color: #fff;
    transition: transform .35s ease-out;
    left: 0;
    top: 50%;
    height: 1px;
    width: 100%;
}
.process-item .toggle-icon::after{
    content: "";
    position: absolute;
    background-color: #fff;
    transition: transform .45s ease-out;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
}

.process-item.active .toggle-icon::before{
    content: "";
    position: absolute;
    background-color: #fff;
    transition: transform .35s ease-out 0s;
    left: 0;
    top: 50%;
    height: 1px;
    width: 100%;
    transform: rotate(180deg);
}
.process-item.active .toggle-icon::after{
    content: "";
    position: absolute;
    background-color: #fff;
    transition: transform .45s ease-out 0s;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    transform: rotate(270deg);
}

.process-detils {
    display: none;
    margin-top: 10px;
    padding: 0 80px 40px 65px;
}
.process-detils span {
    color: var(--color-muted);
}
.step-1, .step-2 {
    color: #ebebeb;
    display: block;
    padding-bottom: 20px;    
}
.step-title {
    color: #ffffff;
    border-bottom: 1px solid;
}
span.quote-icon>img {
    width: 40px;
}

.service-content {
    padding: 80px 0;
    display: flex;
    justify-content: space-between;
}
.service-area {
    display: flex;
    flex-wrap: wrap;
    flex: 0 0 65%;
    justify-content: space-between;
}
.service-video {
    flex: 0 0 35%;
}
.video-container {
    overflow: hidden;
}
.video-container>video {
    transform: scale(1.03);
}
.service-area>h2 {
    width: 100%;
}
.service-left>p {
    margin-bottom: 40px;
}
a.no_.cta-button{
    border: 1px solid #1B1B1B;
    background: #1B1B1B;
    color: #fff;
}
.service-tags {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.service-text {
    display: flex;
    justify-content: space-between;
}
.service-left {
    width: 40%;
}
.service-right {
    width: 50%;
}
a.service-link {
    font-size: var(--font-sm);
    margin-bottom: 10px;
}
section.service-section.web-design {
    background-color: #fff490;
    z-index: 1;
}
section.service-section.branding {
    background-color: #81e8e5;
    z-index: 2;
}
section.service-section.digital-marketing {
    background-color: #f98089;
    z-index: 3;
}
section.stats-section{
    z-index: 4;
    position: relative;
    background-color: #fff;
}

/*************stats*****************/

.stats-header {
    text-align: center;
}
.stats-grid {
    display: inline-grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 80px;
    padding: 80px;
    background: #f3f2f2;
}
.stat-number,span.plus, span.percent {
    font-size: 5em;
    font-weight: 800;
}
.stat-item {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 0 0 40px;
    border-left: 1px solid #c5c0c0;
    position: relative;
}
.stat-item:before {
    content: "";
    height: 100px;
    width: 3px;
    background: #1B1B1B;
    position: absolute;
    left: -2px;
    top: 50%;
    transform: translateY(-50%);;
}
.stat-label {
    font-size: 1.2em;
    font-weight: 800;
}
span.plus, span.percent {
    padding-left: 15px;
}
span.stats-des {
    padding-top: 10px;
    font-size: 0.9em;
}
section.stats-section {
    padding: 120px 0px 40px;
}
/*
.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: 100vw;
    height: 600px;
    padding-bottom: 80px;
    background-color: #fff;
    display: flex;
    align-items: center;
}
.reviews-container {
    width: 100vw;
    margin: 0 auto;
}
.reviews-items {
    display: flex;
    flex-wrap: nowrap;
    padding-top: 80px;
}
.reviews-items {
  display: flex;
  flex-wrap: nowrap;
}
.reviews-card {
    display: flex;
    flex-direction: column;
    flex: 0 0 420px;
    justify-content: space-between;
    background: #fff;
    padding: 40px;
    border: 1px solid  var(--color-border);
    margin-left: -50px; /* overlap amount */
    height: 400px;
    transform-origin: center center;
    transition: transform 0.3s ease;    
}
.reviews-card:nth-child(7n+4) p, .reviews-card:nth-child(7n+4) span, .reviews-card:nth-child(7n+6) p, .reviews-card:nth-child(7n+6) span { 
  color: #fff;  
}
/* pattern: 1,2 left / 3 right / 4 left / 5 right / 6,7 repeat */
/* vertical offsets pattern: up/down */
.reviews-card:nth-child(7n+1) { 
  transform: rotate(-8deg); 
  margin-top: -40px; /* moves up */
  background-color: #b990ff;
}
.reviews-card:nth-child(7n+2) { 
  transform: rotate(5deg); 
  margin-top: 0; /* normal */
  background-color: #fff490;
  
}
.reviews-card:nth-child(7n+3) { 
  transform: rotate(5deg);  
  margin-top: -35px; /* moves up */
  background-color: #f3f2f2;
  
}
.reviews-card:nth-child(7n+4) { 
  transform: rotate(-6deg); 
  margin-top: 45px; /* moves down more */
  background-color: #1B1B1B;
}
.reviews-card:nth-child(7n+5) { 
  transform: rotate(6deg);  
  margin-top: -40px; /* moves up */
  background-color: #f98089;

}
.reviews-card:nth-child(7n+6) { 
  transform: rotate(-8deg); 
  margin-top: 30px;
  background-color: #1B1B1B;   
}
.reviews-card:nth-child(7n+7) { 
  transform: rotate(-5deg); 
  margin-top: -30px;
}
/* hover effect remains same */
.reviews-card:hover {
  transform: rotate(0deg) scale(1.05);
  z-index: 10;
}

/* hover effect */
.reviews-card:hover {
  transform: rotate(0deg) scale(1.05);
  z-index: 10;
}    
img.tauthor.rounded-circle {
    width: 50px;
    height: 50px;
    border-radius: 50px;
}
.testimonial {
    font-size: var(--font-lg);
    font-weight: 600;    
}
.testimonial::before {
    content: "\201C";
    display: inline-block;
    transform: scale(2);
}
.testimonial::after {
    content: "\201D";
}
.testimonial-footer {
    display: flex;
    gap: 10px;
}
.t-position {
    font-size: 0.8em;
}
.agency-rating.reviews-card {
    align-items: center;
    justify-content: space-around;
    background: #f3f2f2;
}
.avg-rating {
    font-size: 4em;
    font-weight: 800;
    color: #33333370;
}
.rating-star>svg {
    height: 30px;
    width: 30px;
}
.score-platform {
    text-align: center;
}



section.portfolio-section {
    background-color: #f3f2f2;
    z-index: 5;
    position: relative;
}
.text-invert-light{
    -webkit-background-clip: text !important;
    background-clip: text !important;
    background-size: 0%;
    transition: background-size cubic-bezier(.1, .5, .5, 1) 0.5s;
    position: relative;
    color: #ffffff70 !important;
    background: linear-gradient(to right, #fff, #fff) no-repeat;        
}
.text-invert{
    -webkit-background-clip: text !important;
    background-clip: text !important;
    background-size: 0%;
    transition: background-size cubic-bezier(.1, .5, .5, 1) 0.5s;
    position: relative;
    color: #1b1b1b70;
    background: linear-gradient(to right, #1B1B1B, #1B1B1B) no-repeat;
}
#title-work{
    white-space: nowrap;
}

/** faq section**/
section.faq-section {
    padding: 80px 0;
}
.faq-wrapper {
    flex: 0 0 60%;    
}
.container.faq-container {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 80px;
}
h2.faq-title {
    width: 100%;
    margin: 0;
}
.ceo {
    flex: 0 0 25%;
    padding-left: 40px;
}
.ceo-image>img {
    border-radius: 0 !important;
}
.ceo .t-name {
    font-size: var(--font-lg);
    line-height: 1;
}
.faq-item {
    position: relative;
    border-bottom: 1px solid #ddd;
}
.faq-question {
    font-size: var(--font-lg);
    font-weight: 600;
    color: #000;
    cursor: pointer;
    position: relative;
    padding: 30px 0;
}
.faq-answer {
    font-size: var(--font-md);
    display: none;
    padding: 0 80px 40px 0px;
}
.faq-item.active {
    border-top: 1px solid #000;
}
.faq-item .toggle-icon {
    right: 0px;
}
.faq-item .toggle-icon::before{
    content: " ";
    position: absolute;
    background-color: #000;
    transition: transform .35s ease-out;
    left: 0;
    top: 50%;
    height: 1px;
    width: 100%;
}
.faq-item .toggle-icon::after{
    content: "";
    position: absolute;
    background-color: #000;
    transition: transform .45s ease-out;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
}

.faq-item.active .toggle-icon::before{
    content: "";
    position: absolute;
    background-color: #000;
    transition: transform .35s ease-out 0s;
    left: 0;
    top: 50%;
    height: 1px;
    width: 100%;
    transform: rotate(180deg);
}
.faq-item.active .toggle-icon::after{
    content: "";
    position: absolute;
    background-color: #000;
    transition: transform .45s ease-out 0s;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    transform: rotate(270deg);
}
.faq-additional {
    padding: 10px 0;
}
.faq-additional>span {
    font-size: var(--font-sm);
}
.meeting_email {
    margin: 20px 0;
}
.contact-list {
    padding: 40px 0;
}
.contact-list ul {
  list-style: none;
}
.contact-list li {
  position: relative;
  margin-bottom: 0.5em;
}

.contact-list li::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 8px;
    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%;
    max-width: 600px;
    margin: 0 auto;
    padding: 80px 20px;    
}
.form_input {
    width: 100%;
    padding: 18px 15px 18px 15px; /* extra top padding for label */
    font-size: var(--font-md);
    font-family: var(--font-body);    
    border: 2px solid var(--color-border);
    outline: none;
    box-sizing: border-box;
}

.form_input:focus {
    border-color: var(--color-primary);
}

.form_label {
    position: absolute;
    left: 18px;
    top: 18px; /* same as input padding-top */
    color: var(--color-muted);
    font-size: var(--font-md);
    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: #fff;      /* optional, prevents overlap */
    padding: 0 4px;
}
/* label animation ends */

.fields {
    position: relative;
    margin-bottom: 20px;
}
.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;
    justify-content: space-between;
    padding-top: 40px;
}
.form_checkbox span{
    padding: 14px;
    border: 2px solid var(--color-border);
    cursor: pointer;
    color: var(--color-muted);
}

.form_checkbox input:checked + span {
    color: var(--color-primary);
    font-weight: 600;
    background: var(--color-light-bg);
}
button .default-btn {
    margin-top: 40px;    
    border: 0;
    border-radius: 50px;
    background: var(--color-primary) !important;
    color: #fff;
}
button {
    border: none;
    background: none;
}
/** form ends */

.contact-section{
    background-color: #f3f2f2;
    padding: 80px 0;
}
.contant-form{
    display: flex;
    align-items: center;
    background-color: #fff;
}
.contact-container {
    flex-direction: row;
    justify-content: space-between;
}
.contant-info, .contant-form {
    flex: 0 0 50%;
}








/**Blog section**/

section.blog-section {
    padding: 80px 0;
}
h2.blog-title {
    text-align: center;
}
.blog-posts {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
.blog-post {
    display: flex;
    flex-direction: column;
    flex: 0 0 calc(33.333% - 20px);
    gap: 10px;
}
.post-thumbnail a, .post-thumbnail a img {
    width: 100% !important;
}
.post-meta {
    display: flex;
    gap: 20px;    
}
.post-meta span {
    font-size: var(--font-sm);
}
.post-title p {
    font-size: var(--font-st);
    font-weight: bold;
}
.read-more-btn {
    margin-top: 20px;
}




















.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 {
    padding: 80px 0 0;    
    background: #090909;
}
.footer-container {
    gap: 80px;
}
.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%;
    gap: 10px;
}
.footer-top .logo {
    padding-bottom: 40px;
}
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;
    margin-bottom: -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: 40px;
    font-weight: 400;
}
.foter-md p{
    margin-bottom: 20px;
}
.foter-md a {
    color: var(--color-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(--color-muted);
}
.home-base {
    font-size: var(--font-md);
    font-weight: 600;
    padding-bottom: 20px;
    color: #fff;
}
.social-icon a {
    color: #fff;
    font-size: var(--font-sm);
}
.social-icon {
    display: flex;
    gap: 20px;
}
span.footer-menu-icon svg {
    height: 12px;
    fill: #fff;
    padding-left: 5px;
}
p.bottom-title {
    font-size: var(--font-md);    
    padding-bottom: 20px;
}
.home-address{
    font-size: var(--font-sm);
    color: var(--color-muted);
}

.copyright span {
    font-size: var(--font-sm);
    color: var(--color-muted);
    padding-bottom: 10px;    
}
.copyright a {
    font-size: var(--font-sm);
    color: #fff;
}
.copyright {
    padding-top: 40px;
}
img.footer-bottom-logo {
    margin-bottom: -10px;
    filter: invert(1);
}