@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* Root Variables */
:root {
    --primary-color: #c9f31d;
    --secondary-color: #6366f1;
    --accent-color: #8b5cf6;
    --bg-dark: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-card: #0e0f11;
    --white: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #666666;
    --gradient-primary: linear-gradient(135deg, #00ff88 0%, #6366f1 100%);
    --gradient-secondary: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    --border-color: #333333;
    --text-color: rgba(250, 250, 250, 0.2);
    --text-stroke-color: #fafafa;
    --text-fill-color: #fafafa;
}
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}
a {
    text-decoration: none;
}
.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
  }
  
  .poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
  }
  
  .poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
  }
  
  .poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
  }
  
  .poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
  }

.green {
    color: #c9f31d;
}
.greenBg {
    background: #c9f31d;;
}
.white {
    color: #fff;
}
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: var(--bg-dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Navigation */
header {
    background: url('../imgs/banner-bg.jpg');
    height: 100%;
}
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand .logo {
    height: 40px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}
.navbar.navbar-visible {
    background: #000 !important;
}
.logo-kmw {
    width: 200px;
}
/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #fff;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    margin-right: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    color: var(--bg-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 10px 30px rgba(201, 243, 29, 0.3);
}

.btn-outline-light {
    border: 2px solid var(--text-secondary);
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.hero-description {
    font-size: 1rem;
    color: var(--text-secondary);
}
.graphic {
    z-index: 2;
    position: relative;
}
.graphic img {
    width: 75%;
}
.card-style-one {
    border: 1px solid #fff;
    background: transparent;
    padding: 50px;
    padding-top: 80px;
    padding-bottom: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    height: 100%;
    border-radius: 20px;
    max-width: 70%;
    margin-top: -15%;
    z-index: 1;
}

.card-style-one .bottom {
    color: var(--white);
}
.fun-fact .counter {
    display: flex;
    align-items: center;
    font-size: 5rem;
    line-height: 1.2;
    position: relative;
    color: var(--primary-color);
    font-weight: 700;
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
.btn-animation {
    z-index: 1;
    position: relative;
    font-size: 18px;
    display: inline-block;
    margin-left: 10px;
    box-shadow: none;
    text-decoration: none;
    font-weight: 600;
    color: var(--white);
}
.bg-dark .btn-animation i {
    background: var(--white);
}
.btn-animation i {
    display: inline-block;
    height: 55px;
    width: 55px;
    text-align: center;
    line-height: 55px;
    background: var(--white);
    color: var(--white);
    border-radius: 50%;
    transform: scale(0);
    margin-right: 10px;
    transition: all 0.35s ease-in-out;

}
.btn-animation span {
    transition: all 0.35s ease-in-out;
    left: -50px;
    position: relative;
    text-transform: uppercase;
    font-weight: 600;
}
.btn-animation::after {
    position: absolute;
    left: -13px;
    top: 0;
    content: "";
    height: 60px;
    width: 60px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all 0.35s ease-in-out;
    transform: scale(1);
    z-index: -1;
}
.btn-animation:hover i {
    transform: scale(1);
    color: var(--bg-dark);
}
.btn-animation:hover span {
    left: 0;
}
.btn-animation:hover::after {
    transform: scale(0);
}

/* About */
.about-style-six-area {
    background: var(--bg-card);
    background-size: 45%;
    background-repeat: no-repeat;
    background-position: right top;
}
.card-style-two {
	display: flex;
	justify-content: space-between;
	margin-bottom: 50px;
}
.about-style-six-area .title {
    font-size: 6rem;
    font-weight: 700;
    color: var(--primary-color);
}
.about-style-six-area .sub-title {
    font-weight: 500;
}   
.desc {
    color: var(--text-muted);
    font-size: 20px;
}
.card-style-two h4 {
	text-transform: uppercase;
	font-size: 30px;
}
.thumb-style-four img {
    border-radius: 30px;
    height: auto;
    max-width: 100%;
}

.list-style-one {
	margin: 0;
	padding: 0;
	list-style: none;
	text-transform: uppercase;
	display: inline-block;
}

.list-style-one li {
	padding: 5px 0;
	color: var(--color-heading);
}

.bg-dark .list-style-one li {
	color: var(--white);
}

.list-style-one li:first-child {
	border-top: none;
	padding-top: 0;
}

.list-style-one li strong {
	min-width: 100px;
	display: inline-block;
	font-weight: 400;
}

.about-style-six-info .d-flex img {
	min-width: 115px;
	width: 115px;
	margin-right: 30px;
}

.about-style-six-info .title {
	text-transform: uppercase;
    margin-bottom: 0;
    line-height: 5rem;
}

.thumb-style-four img {
	border-radius: 30px;
}

.service-list {
	margin: 0;
	padding: 0;
	list-style: none;
	/* display: grid;
	grid-column-gap: 30px;
	grid-auto-columns: minmax(0, 1fr);
	grid-auto-flow: column; */
}

.service-list a {
	display: block;
	border: 1px solid #e7e7e7;
	padding: 25px 30px;
	border-radius: 10px;
	text-transform: capitalize;
	position: relative;
    color: #fff;
    min-height: 170px;
}

.bg-dark .service-list a {
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: transparent;
}

.service-list a i {
	display: inline-block;
	margin-bottom: 30px;
	font-size: 30px;
	transform: rotate(-45deg);
}

/* .service-list li:first-child a, .service-list li a:hover {
	background: var(--primary-color);
	color: var(--bg-dark);
	border-color: transparent;
} */

.about-style-six-info .service-list {
	margin-top: 50px;
}

/* .about-style-six-info .service-list li .hover-content {
    position: absolute;
    top: 0;
    padding: 15px;
    line-height: 16px;
    font-size: 14px;
    transform: translateY(150%);
    transition: all ease 0.5s;
    color: #000;
    overflow-y: auto;
} */
.about-style-six-info .service-list ul {
    padding-left: 0;
}
.about-style-six-info .service-list ul li {
    margin: 10px 20px;
}
/* .about-style-six-info .service-list ul li::before {
    position: absolute;
    content: '';
    background: #fff;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    left: 0;
    top: 3px
} */
.service-list a span {
	display: block;
	height: 45px;
	width: 45px;
	text-align: center;
	line-height: 45px;
	background: #2e2d2d;
	border-radius: 50%;
	margin-right: 15px;
	font-weight: 700;
	margin-bottom: 20px;
	transition: all 0.35s ease-in-out;
	color: var(--white);
}
.service-list li a div {
    transition: all ease-in-out 0.4s;
}
.service-list li:hover .hover-content{
    transform: translateY(0);
    height: 180px;
}
.service-list li:hover a div {
    transform: translateY(-200%);
}
.service-list li:hover a {
    background: var(--primary-color);
}

/* .service-list li:first-child a span, ul.service-list li a:hover span {
	top: 10px;
	opacity: 0;
	visibility: hidden;
} */

/* Toolkit section */
.toolkit-section {
    background: #18191b;
    position: relative;
}
.site-heading .sub_title {
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
    padding: 8px 60px;
    border-radius: 30px;
    font-size: 18px;
    max-width: max-content;
    text-transform: uppercase;
}
.site-heading h2 {
    font-size: 3rem;
    font-weight: 700;
}
.services-style-one-items {
    position: relative;
    z-index: 1;
}
.services-style-one-items h4 a {
    text-decoration: none;
    color: #fff;
}
.services-style-one-item {
	padding: 60px 37px;
	border-radius: 30px;
	background: #232527
}
.services-style-one-item img {
    height: 60px;
    margin-bottom: 35px;
}
.services-style-one-items .single-item {
	padding: 0 2px;
	height: 100%;
}
a.btn-full {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: 1px solid #dddddd;
	border-radius: 30px;
	color: var(--color-heading);
	padding: 3px;
	padding-left: 30px;
	text-transform: uppercase;
	font-weight: 500;
	font-size: 14px;
}

a.btn-full i {
	display: inline-block;
	height: 45px;
	width: 45px;
	line-height: 45px;
	text-align: center;
	border-radius: 50%;
	transform: rotate(-45deg);
	font-size: 16px;
	transition: all 0.35s ease-in-out;
	border: 1px solid #e7e7e7;
}

a.btn-full {
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--white);
	background: transparent;
}

a.btn-full i {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.active a.btn-full i {
	background: var(--white);
	color: #1f1f20;
}
.services-style-one-item p {
	transition: all .5s;
	margin: 0;
}

.services-style-one-item .btn-full {
	margin-top: 35px;
}
.box-title {
    font-size: 22px;
    word-wrap: break-word;
    line-height: 26px;
}
/* Recent works */
.project-style-one-area {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.section-padding {
    padding: 120px 0;
}
#services .services-style-three-area {
    padding-top: 100px;
    padding-bottom: 100px;
}
.project-style-one-area .sub-title {
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 600;
    display: inline-block;
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
    border: 1px solid #cccccc;
    padding: 8px 30px;
    border-radius: 30px;
    font-size: 18px;
    max-width: max-content;
}
.h_desc {
    color: var(--text-secondary);
}
.bg-dark .sub-title {
    font-weight: 600;
    color: #cccccc;
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.portfolio-info-card {
    display: flex;
    border-top: 1px solid #dddddd;
    margin-top: 40px;
    padding-top: 35px;
    padding-left: 20%;
}
.portfolio-style-one-item {
    position: relative;
    padding-left: 320px;
}
.portfolio-style-one-item .info {
    position: absolute;
    left: 15%;
    top: 20%;
    max-width: 60%;
    transform: translateY(-50%);
}
.portfolio-style-one-item .info h2 a {
    color: var(--white);
}
.portfolio-style-one-item .btn-animation {
    margin-top: 25px;
}
.portfolio-style-one-item .info h2 {
    font-size: 80px;
    margin: 0;
    line-height: 1;
    font-weight: 600;
}
.portfolio-style-one-item .info h2 strong {
    font-weight: 600;
}
.project-swiper-nav {
    position: absolute;
    left: 0;
    top: 30%;
    display: flex;
    height: 250px;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    transform: translateY(-50%);
    z-index: 9;
}
.project-swiper-nav .project-pagination {
    background: transparent;
    position: absolute;
    line-height: 1.2;
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    left: 0;
    transform: translateY(-50%);
    top: 95%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 36px;
    height: 75px;
}
.bg-dark .project-swiper-nav .project-pagination {
    color: var(--white);
    background: transparent;
}
.year-swiper-nav {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    top: 4%;
    width: 100%;
    right: 0;
}
.project-swiper-nav > div,
.year-swiper-nav > div {
    height: 40px;
    width: 40px;
    background: #343232;
    z-index: 9;
    position: relative;
    border-radius: 50%;
    left: 0;
}
.project-swiper-nav > div::after,
.year-swiper-nav > div::after {
    position: absolute;
    top: 7px;
    content: "";
    height: 100%;
    width: 100%;
    font-family: "Font Awesome 6 Pro";
    text-align: center;
    color: var(--white);
}
.project-swiper-nav .project-button-prev::before,
.year-swiper-nav .project-button-prev::before  {
    background: url('../imgs/rectangle_17_copy.png') no-repeat center;
    width: 14px;
    height: 26px;
    content: '';
    background-size: 70%;
}
.project-swiper-nav .project-button-next::before,
.year-swiper-nav .project-button-next::before {
    background: url('../imgs/rectangle_17.png') no-repeat center;
    width: 14px;
    height: 26px;
    content: '';
    background-size: 70%;
}
/* Testimonial Section Styles */
.testimonial-section {
    /* background-color: #1a1a1a; */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: url('../imgs/testomonialBg.jpg') no-repeat center;
}
.testimonial-section::before,
.testimonial-section::after {
    content: "";
    position: absolute;
    top: 0;
    width: 200px; 
    height: 100%;
    z-index: 10; 
    pointer-events: none;
}
.testimonial-section::before {
    left: 0;
    background: linear-gradient(to right, #1a1a1a, transparent);
}
  
.testimonial-section::after {
    right: 0;
    background: linear-gradient(to left, #1a1a1a, transparent);
}
.testimonial-nav {
    position: absolute;
    bottom: 35px;
    width: 140px;
    left: 50%;
    transform: translateX(-50%);
}
.testimonial-nav .swiper-button-next {
    background: transparent;
    border: 1px solid #fff;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    color: #fff;
}
.testimonial-nav .swiper-button-prev {
    border: 1px solid #fff;
    background: transparent;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    color: #fff;
}
.testimonial-nav .swiper-button-next::after,
.testimonial-nav .swiper-button-prev::after {
    font-size: 25px;
}
.testimonial-slider {
    padding-bottom: 100px !important;
}

.testimonial-card {
    background: var(--primary-color);
    border-radius: 20px;
    padding: 40px 30px;
    margin: 0 15px;
    position: relative;
    min-height: 300px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    outline: none;
    transition: all 0.3s ease;
}
.testimonial-card * {
    pointer-events: none;
}
.testimonial-rating img {
    height: 20px;
}
.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #0e0f11;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.clientName {
    display: flex;
    gap: 15px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #444;
}

.client-details h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.client-name {
    color: #0e0f11;
    margin-bottom: 5px;
}

.client-position {
    font-size: 0.9rem;
    color: #0e0f11;
    margin: 0;
    font-weight: 300;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
    border: 1px solid #0e0f11;
    border-radius: 30px;
    padding: 5px 10px;
}

.testimonial-rating i {
    color: #0e0f11;
    font-size: 1.2rem;
}


/* Process */
.process-style-one-item {
    position: relative;
    z-index: 1;
    border-radius: 30px;
    border-top: 1px solid rgb(255, 255, 255, 0.1);
}
.process-style-one-item:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom-left-radius: 0;
}
.process-style-one-item {
    border-top: 1px solid rgb(255, 255, 255, 0.1);
}
.process-style-one-item .item {
    padding: 50px 30px;
    position: relative;
    z-index: 1;
}
.process-style-one-item .item img {
    height: 60px;
    margin: auto;
    margin-bottom: 30px;
}
.process-style-one-item:nth-child(2n) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.process-style-one-item:nth-child(2n) {
    border-top: none !important;
}
.process-style-one-item:nth-child(2n)::after {
    position: absolute;
    left: -1px;
    top: 55px;
    width: 50px;
    content: "";
    border-left: 1px solid rgba(255, 255, 255, 0.1);;
    bottom: 0;
    border-bottom-left-radius: 30px;
}
.process-style-one-item:nth-child(2n)::after {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.process-style-one-item:nth-child(2n)::before {
    position: absolute;
    right: -2px;
    content: "";
    bottom: 0;
    height: 64px;
    width: 50px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);;
    border-bottom-right-radius: 30px;
}
.process-style-one-item:nth-child(odd)::before {
    position: absolute;
    left: 0;
    bottom: 60px;
    content: "";
    top: 0;
    width: 50px;
    border-left: 1px solid #cccccc;
    border-top-left-radius: 30px;
}
.process-style-one-item:nth-child(odd)::before {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.process-style-one-item:nth-child(odd)::after {
    position: absolute;
    right: 0;
    bottom: auto;
    content: "";
    top: 0;
    height: 64px;
    width: 50px;
    border-right: 1px solid #cccccc;
    border-top-right-radius: 30px;
}
.process-style-one-item:nth-child(odd)::after {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.process-style-one-item .item .f_title {
    font-weight: 500;
}
.process-style-one-item .item .f_desc {
    color: var(--text-secondary);
}

.years-content .section-title {
    font-size: 5rem;
    margin-bottom: 0.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

/* .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
} */
/* Clients Section Styles */
.clients-section {
    background-color: #1a1a1a;
    padding: 100px 0;
    border-top: 1px solid #333;
}

.clients-content {
    padding-right: 50px;
    position: relative;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #555;
    border-radius: 25px;
    font-size: 12px;
    letter-spacing: 1px;
    color: #ccc;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.clients-title {
    font-size: 2.9rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: white;
}

.clients-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #aaa;
    margin-bottom: 40px;
}

.clients-card {
    display: flex;
    align-items: center;
    margin-left: 25px;
}
.clients-card img {
    height: 55px;
    width: 55px;
    border-radius: 50%;
    margin-left: -25px;
    border: 2px solid var(--white);
}
.clients-card img {
    border: 2px solid var(--bg-dark);
}
.clients-card i {
    display: inline-block;
    height: 55px;
    width: 55px;
    line-height: 51px;
    background: var(--bg-dark);
    text-align: center;
    border-radius: 50%;
    margin-left: -25px;
    border: 2px solid var(--white);
    color: var(--white);
}

.brand-info::after {
    position: absolute;
    right: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 1px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0), var(--primary-color), rgba(255, 255, 255, 0));
}
.client-style-one-items {
    display: flex;
    flex-wrap: wrap;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;

}
.client-style-one-item {
    width: 33.333%;
    text-align: center;
    padding: 30px 50px;
    position: relative;
    z-index: 1;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.client-style-one-item:first-child::before {
    position: absolute;
    top: 0;
    left: -1px;
    height: 100%;
    width: 1px;
    border-left: 1px solid #1a1a1a;
    content: "";
}
.client-style-one-item:first-child::after {
    position: absolute;
    top: -1px;
    left: 0;
    height: 1px;
    width: 100%;
    border-top: 1px solid #1a1a1a;
    content: "";
}
.client-style-one-item .fun-fact {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.client-style-one-item .fun-fact .counter {
    color: var(--white);
}
.fun-fact .counter {
    display: flex;
    align-items: center;
    font-size: 80px;
    line-height: 1.2;
    position: relative;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    /* margin-top: -10px; */
    line-height: 66px;
}
.client-style-one-item .fun-fact span.medium {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-muted);
}
.client-style-one-item img {
    max-height: 60px;
}
.client-style-one-item img.ponds-logo {
    max-height: 35px; 
}
.client-style-one-item a {
    position: relative;
    display: block;
    color: var(--color-heading);
    text-transform: uppercase;
    font-size: 20px;
    border-bottom: 1px solid var(--color-heading);
    text-align: left;
}
.client-style-one-item a {
    color: var(--white);
    border-bottom: 2px solid var(--white);
}
.client-style-one-item:last-child::before {
    position: absolute;
    bottom: 0;
    right: -1px;
    height: 100%;
    width: 1px;
    background: #1a1a1a;
    content: "";
}
.client-style-one-item:last-child::after {
    position: absolute;
    bottom: -1px;
    right: 0;
    height: 1px;
    width: 100%;
    background: #1a1a1a;
    content: "";
}
/* Contact */
.contact-panel {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.contact-panel div {
    height: 100%;
}
.contact-panel-bg {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 48%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.contact-panel .title.h_title {
    font-size: 2.9rem;
    font-weight: 700;
} 
.contact-panel .sub-title {
    text-transform: uppercase;
    color: #cccccc;
    font-weight: 500;
    display: inline-block;
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 30px;
    border-radius: 30px;
    font-size: 18px;
    max-width: max-content;
}

ul.contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 50px;
    display: inline-block;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
}

ul.contact-list li {
    float: left;
    display: flex;
    margin-right: 50px;
}
ul.contact-list li .info h4 {
    margin-bottom: 0;
}
ul.contact-list li i {
    display: inline-block;
    height: 62px;
    width: 62px;
    text-align: center;
    line-height: 62px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-right: 15px;
    font-size: 20px;
    color: var(--bg-dark);
}
ul.contact-list li a {
    font-weight: 400;
    font-size: 16px;
    color: var(--white);
}
.contact-panel::after {
    position: absolute;
    left: 50%;
    top: 50%;
    content: "";
    height: 600px;
    width: 600px;
    background: var(--white);
    z-index: -1;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.07;
}
/* Footer */
.footer {
    position: relative;
    background: #18191b;
}
.footer-link {
    color: #ddd;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
  }
  
  .footer-link:hover {
    color: #fff;
  }
  .footer-social {
    display: flex;
  }
  .footer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #fff;
    color: #000;
    border-radius: 4px;
    text-align: center;
    line-height: 36px;
    margin-right: 10px;
    transition: 0.3s;
    font-size: 16px;
  }
  .footer-icon i {
    font-size: 22px;
  }
  
  .footer-icon:hover {
    background: #ccc;
  }

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.text-fill {
    background: linear-gradient(
        to right,
        var(--text-fill-color),
        var(--text-fill-color)
      )
      no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 0%;
    color: var(--text-color);
    transition: background-size cubic-bezier(0.1, 0.5, 0.5, 1) 0.5s;
  }

  /*  */
  /* How it works starts here */
.how-it-works {
    align-items: center;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0px;
    height: 3697px;
    justify-content: flex-start;
    overflow: visible;
    position: relative;
    width: 100%;
    z-index: 2;
  }
  .how-it-works .horizontal-scroll {
    align-items: center;
    background-color: var(--horizontal-scroll-bg);
    display: flex;
    gap: 250px;
    height: 100vh;
    justify-content: flex-start;
    overflow: hidden;
    padding: 0;
    position: sticky;
    top: 0;
    width: 100%;
    will-change: transform;
    z-index: 1;
  }
  .horizontal-container {
    align-items: center;
    background: linear-gradient(90deg, var(--horizontal-scroll-bg) 0%, var(--horizontal-part-gradient));
    display: flex;
    gap: 0px;
    height: 100vh;
    justify-content: flex-start;
    overflow: visible;
    padding: 0;
    position: relative;
    width: min-content;
    z-index: 1;
  }
  .spacer {
    flex: none;
    height: 100%;
    overflow: hidden;
    position: relative;
    width: 400px;
    /* display: none; */
  }
  .hz-inner-container {
    flex: none;
    height: 100vh;
    overflow: visible;
    position: relative;
    width: 1440px;
  }
  .image-hiw-1 {
    height: 100vh;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
  }
  .image-hiw-1 .con-img {
    aspect-ratio: 1.634 / 1;
    flex: none;
    height: 100vh;
    left: -277px;
    overflow: visible;
    position: absolute;
    top: 0;
  }
  .image-hiw-1 .con-img img {
    transform: perspective(1200px) translateX(-265px);
    height: 100%;
  }
  .hz-inner-container .screen-hiw {
    align-items: center;
    bottom: 48px;
    display: flex;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 16px;
    height: min-content;
    justify-content: flex-start;
    overflow: visible;
    padding: 0;
    position: absolute;
    right: 80px;
    width: 290px;
  }
  .screen-recording-1 {
    /* aspect-ratio: 0.490 / 1; */
    /* background-color: var(--white); */
    border-radius: 32px;
    box-shadow: var(--screen-box-shadow);
    flex: none;
    height: 591px;
    /* overflow: hidden; */
    position: relative;
    width: 290px;
    will-change: transform;
  }
  .screen-recording-1 .sr--container ,
  .screen-recording-1 .sr--container img {
    height: 100%;
  }
  /* .sr--container {
    inset: -28px 0 0;
    position: absolute;
  } */
  .ss-disclaimer {
    flex: none;
    height: auto;
    position: relative;
    width: auto;
    z-index: 1;
  }
  .ss-disclaimer p {
    font-size: 20px;
    line-height: 24px;
    color: rgba(0, 0, 0.32);
  }
  .hz-inner-container .copy {
    align-items: flex-start;
    top: 48px;
    display: flex;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    height: min-content;
    justify-content: flex-start;
    left: 380px;
    overflow: visible;
    padding: 0;
    position: absolute;
    width: min-content;
  }
  .main-text {
    align-items: flex-start;
    align-self: stretch;
    display: flex;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
    height: 370px;
    justify-content: flex-start;
    overflow: visible;
    padding: 0;
    position: relative;
    width: auto;
    text-align: left;
  }
  .main-text .big-text {
    flex: none;
    /* height: 210px; */
    mix-blend-mode: screen;
    position: relative;
    /* white-space: pre; */
    width: 600px;
    z-index: 1;
  }
  .main-text h1 {
    font-size: 70px;
    width: 100%;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0em;
    line-height: 100%;
    color: var(--primary-color)
  }
  .text-desc {
    flex: none;
    height: auto;
    position: relative;
    width: 300px;
    word-break: break-word;
    word-wrap: break-word;
  }
  .text-desc p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 1.5em;
  }
  .framer-81g2H {
    align-items: center;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 24px;
    height: min-content;
    overflow: visible;
    padding: 0;
    position: relative;
    text-decoration: none;
    width: min-content;
    width: 100%;
    justify-content: flex-end;
    transition: all ease 0.5s;
  }
  .framer-81g2H button {
    background-color: var(--btn-rgb);
    border-radius: 40px;
    box-shadow: var(--btn-box-shadow) 0px 16px 24px 0px;
    align-items: center;
    display: flex;
    flex: none;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0px;
    height: 32px;
    justify-content: center;
    overflow: visible;
    padding: 32px;
    position: relative;
    width: 30px;
    border: none;
    transition: all ease 0.5s;
  }
  .framer-160s5au {
    fill: rgb(251, 202, 168);
    color: rgb(251, 202, 168);
    transform: none;
    transform-origin: 50% 50% 0px;
    opacity: 1;
    flex: none;
    height: 32px;
    position: relative;
    width: 30px;
  }
  .framer-160s5au .svgContainer svg {
    width: 35px;
    fill: rgb(251, 202, 168);
  }
  .framer-1mzgtie {
    flex: none;
    height: auto;
    display: inline-block;
  }
  .framer-1mzgtie p {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 24px;
    color: var(--white);
    margin: 0;
  }
  .framer-81g2H:hover button{
    background-color: var(--hover-brown);
  }

  .breadcrumb-area {
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url('https://wordpress.validthemes.net/dixor/wp-content/uploads/2025/02/10.jpg');
    background-size: cover;
    word-break: break-word;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-top: 220px;
    padding-bottom: 170px;
}
.breadcrumb-area h1 {
    display: block;
    margin-top: -10px;
    margin-bottom: 15px;
    font-size: 80px;
    line-height: 1;
}
.breadcrumb-area nav.woocommerce-breadcrumb {
    font-family: 16px;
    font-weight: 600;
    margin-top: 20px;
}
.breadcrumb-area nav.woocommerce-breadcrumb a {
    font-weight: 600;
    font-size: 16px;
    color: #fff;
}
.detail-banner img {
    border-radius: 15px;
}
.project-details-thumb img {
	margin-bottom: 60px;
}

.project-details-main-info {
    width: 85%;
    margin: auto;
    padding-bottom: 100px;
}
.project-single-tags a {
	display: inline-block;
	position: relative;
	z-index: 1;
	padding: 5px 20px;
	text-transform: uppercase;
	font-weight: 500;
	background: var(--primary-color);
	color: var(--bg-dark);
	border-radius: 5px;
	margin-right: 10px;
	margin-bottom: 15px;
    transition: all ease 0.5s;
}

.project-single-tags a:hover {
	background: var(--white);
	color: var(--bg-dark);
}

.project-single-tags {
	margin-bottom: 25px;
}

.project-details-thumb h2 {
	margin: 0;
	padding-right: 15%;
}
.project-details-thumb img {
    margin-bottom: 60px;
}

.project-author-details ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-row-gap: 30px;
}

.project-author-details ul li {
	display: grid;
	grid-template-columns: 1fr 3fr;
	grid-column-gap: 60px;
	position: relative;
	z-index: 1;
	border-top: 1px solid #dddddd;
	padding-top: 30px;
}

.project-author-details ul li {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.project-author-details ul li:first-child {
	border: none;
	padding: 0;
}

.project-author-details ul li  h3 {
	font-size: 20px;
	margin: 0;
}

.project-author-details ul li p {
	margin: 0;
}
.padTB {
    padding: 100px 0;
}
.e-con-inner {
    background-color: #18191B;
}
.thumb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
}
.single-grid-container {
    background: #000;
}
.item-grid-colum {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    grid-column-gap: 50px;
    grid-row-gap: 60px;
}
.item-grid-colum .left-info h3 {
    display: flex;
    align-items: center;
}
.item-grid-colum .left-info h3 strong {
    position: relative;
    z-index: 1;
    margin-right: 25px;
    padding-right: 50px;
    color: transparent;
    -webkit-text-stroke: 1px #666666;
    font-size: 40px;
    font-weight: 900;
}
.item-grid-colum .left-info h3 strong {
    -webkit-text-stroke: 1px #cccccc;
}
.right-info p {
    color: #ccc;
}
.item-grid-colum .left-info h3 strong::after {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    height: 1px;
    width: 30px;
    border-top: 1px solid;
    margin-top: 3px;
    color: #666666;
    -webkit-text-stroke: inherit;
}
.item-grid-colum .left-info h3 strong::after {
    color: var(--white);
}
/* timeline section our journey */
.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background-color: #6bc353;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.timeline-item.left {
    flex-direction: row-reverse;
}

.timeline-item.right {
    flex-direction: row;
}

.timeline-content {
    /* background-color: #fff; */
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 45%;
}

.timeline-content.left {
    margin-right: 5%;
}

.timeline-content.right {
    margin-left: 5%;
}

.timeline-point {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 3px solid #6bc353;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.paper-plane {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(20deg);
    width: 100px;
    height: auto;
    z-index: 5;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.paper-plane.red {
    filter: drop-shadow(0 4px 8px rgba(255, 0, 0, 0.3));
}

.service-style-three-items li {
	overflow: hidden;
}

.service-style-three-items {
	overflow: hidden;
	margin: 0 auto;
	padding: 0;
	list-style: none;
	display: flex;
    margin-bottom: 30px;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	transition: all 300ms ease;
	position: relative;
	gap: 30px;
}

.service-style-three-items li {
	cursor: grab;
	position: relative;
	z-index: 1;
	overflow: hidden;
	margin: 0;
	padding: 60px 37px;
	list-style: none;
	width: 30%;
	height: inherit;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	border: 1px solid #dddddd;
	border-radius: 20px;
}

.bg-dark .service-style-three-items li {
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-style-three-items li.out::after {
	opacity: 0;
}

.service-style-three-items li .service-three-content.big-section {
	width: 100%;
}

.service-style-three-items li.out {
	width: 45%;
	background: var(--primary-color)
}
.service-style-three-items li.out .icon img {
    filter: invert(1);
}

/* .service-style-three-items li.out {
	background: var(--dark-optional);
} */

.accrdion-portfolio-area .service-three-content {
	display: inline-block;
	height: auto;
	min-height: auto;
	padding: 30px;
	border-radius: 20px;
	position: relative;
	z-index: 1;
}
.services-style-three-area {
    background: #000000;
}
.service-three-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.service-three-content .icon img {
	height: 70px;
	margin-bottom: 50px;
}

.service-three-content .info h4 {
	margin-bottom: 20px;
	font-size: 22px;
    color: white;
}
.service-three-content .info h4 a {
    color: #fff;
}
.service-three-content .info p {
	transition: opacity 0.1s ease-out, transform 0.4s ease-out, clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96);
	opacity: 0;
	transform: translateX(40px);
	margin: 0;
	visibility: hidden;
	clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
 .service-three-content .info p {
	color: #cccccc;
}

.service-style-three-items li.out .service-three-content .info p {
	transform: translateX(0px);
	opacity: 1;
	transition-delay: 0.4s;
	visibility: visible;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.service-style-three-items li.out .service-three-content .info h4 a,
.service-style-three-items li.out .service-three-content .info .s_desc,
.service-style-three-items li.out .service-three-content .bottom {
	color: var(--bg-dark);
}

.service-three-content .botom h4 {
	transition: all 035s ease-in-out;
}

.service-three-content .bottom h4 {
	transition: all 0.35s ease-in-out;
}
.service-three-content .bottom {
    margin-top: 10px;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
}

.service-style-three-items li.out .service-three-content .bottom h4 {
	display: none;
	transform: translateX(40px);
	visibility: hidden;
}
.partner-logos .row {
    margin-bottom: 50px;
}
.client-logo {
    background: #fff;
    margin-bottom: 20px;
    text-align: center;
    border-radius: 10px;
}