
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('../css/animate.css'); 

:root {
--default-font: "DM Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
--heading-font: "Roboto",  sans-serif;
--nav-font: "Open Sans",  sans-serif;
}

:root { 
--background-color: #ffffff;
--default-color: rgb(88 106 232); 
--heading-color: #14223d; 
--accent-color: #1A237E; 
--surface-color: #ffffff; 
--contrast-color: #ffffff; 
--footer-color: #fff;
--link-color: #3949ABB;
--bg-color:#fbf5f0;
--bg-black:#000;
}

:root {
--nav-color:#fff;  
--nav-hover-color: #1A237E; 
--nav-mobile-background-color: #ffffff;
--nav-dropdown-background-color: #ffffff; 
--nav-dropdown-color: #222222;
--nav-dropdown-hover-color: #1A237E;
}

.light-background {
--background-color:#0a1e25;
--surface-color: #ffffff;
}

.dark-background {
--background-color: #122fad;
--default-color: #ffffff;
--heading-color: #ffffff;
--surface-color: #252525;
--contrast-color: #ffffff;
}

:root {
scroll-behavior: smooth;
}
p{
    color: #000;
}
figure {
	margin: 0;
	padding: 0;
	background: #fff;
	overflow: hidden;
}
figure:hover+span {
	bottom: -36px;
	opacity: 1;
}
/* Zoom In #1 */
.hover01 figure img {
	-webkit-transform: scale(1);
	transform: scale(1);
-webkit-transition: .3s ease-in-out;
transition: .3s ease-in-out;
}
.hover01 figure:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
/* Zoom In #2 */
.hover02 figure img {
-webkit-transition: .3s ease-in-out;
transition: .3s ease-in-out;
}
.hover02 figure:hover img {
	width: 350px;
}
/* Zoom Out #1 */
.hover03 figure img {
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
-webkit-transition: .3s ease-in-out;
transition: .3s ease-in-out;
}
.hover03 figure:hover img {
	-webkit-transform: scale(1);
	transform: scale(1);
}
/* Zoom Out #2 */
.hover04 figure img {
	width: 400px;
	height: auto;
-webkit-transition: .3s ease-in-out;
transition: .3s ease-in-out;
}
.hover04 figure:hover img {
}
/* Slide */
.hover05 figure img {
	margin-inline-start: 30px;
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
-webkit-transition: .3s ease-in-out;
transition: .3s ease-in-out;
}
.hover05 figure:hover img {
	margin-inline-start: 0;
}
/* Rotate */
.hover06 figure img {
	-webkit-transform: rotate(15deg) scale(1.4);
	transform: rotate(15deg) scale(1.4);
-webkit-transition: .3s ease-in-out;
transition: .3s ease-in-out;
}
.hover06 figure:hover img {
	-webkit-transform: rotate(0) scale(1);
	transform: rotate(0) scale(1);
}
/* Blur */
.hover07 figure img {
	-webkit-filter: blur(3px);
	filter: blur(3px);
-webkit-transition: .3s ease-in-out;
transition: .3s ease-in-out;
}
.hover07 figure:hover img {
	-webkit-filter: blur(0);
	filter: blur(0);
}
/* Gray Scale */
.hover08 figure img {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
-webkit-transition: .3s ease-in-out;
transition: .3s ease-in-out;
}
.hover08 figure:hover img {
	-webkit-filter: grayscale(0);
	filter: grayscale(0);
}
/* Sepia */
.hover09 figure img {
	-webkit-filter: sepia(100%);
	filter: sepia(100%);
-webkit-transition: .3s ease-in-out;
transition: .3s ease-in-out;
}
.hover09 figure:hover img {
	-webkit-filter: sepia(0);
	filter: sepia(0);
}
/* Blur + Gray Scale */
.hover10 figure img {
	-webkit-filter: grayscale(0) blur(0);
	filter: grayscale(0) blur(0);
-webkit-transition: .3s ease-in-out;
transition: .3s ease-in-out;
}
.hover10 figure:hover img {
	-webkit-filter: grayscale(100%) blur(3px);
	filter: grayscale(100%) blur(3px);
}
/* Opacity #1 */
.hover11 figure img {
	opacity: 1;
-webkit-transition: .3s ease-in-out;
transition: .3s ease-in-out;
}
.hover11 figure:hover img {
	opacity: .5;
}
/* Opacity #2 */
.hover12 figure {
	background: #1abc9c;
}
.hover12 figure img {
	opacity: 1;
-webkit-transition: .3s ease-in-out;
transition: .3s ease-in-out;
}
.hover12 figure:hover img {
	opacity: .5;
}
/* Flashing */
.hover13 figure:hover img {
	opacity: 1;
	-webkit-animation: flash 1.5s;
	animation: flash 1.5s;
}
@-webkit-keyframes flash {
0% {
opacity: .4;
}
100% {
opacity: 1;
}
}
@keyframes flash {
0% {
opacity: .4;
}
100% {
opacity: 1;
}
}
.slider-container {
	width: 100%;
	max-width:100%;
	height: 100vh;
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.now-showing {
	position: absolute;
	top: 20px;
	left: 20px;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
	z-index: 10;
}
 .now-showing::before {
 content: "";
 width: 6px;
 height: 6px;
 background: #122fad;
 border-radius: 50%;
}
.accordion-slider {
	display: flex;
	height: 100%;
	position: relative;
}
.slide {
	flex: 1;
	position: relative;
	cursor: pointer;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	filter: grayscale(1);
}
.slide:hover {
	filter: grayscale(0);
}
.slide.active {
	flex: 2.5;
	filter: grayscale(0);
}

.slide::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 80%);
}

.slide-content {
	position: absolute;
	bottom: 30px;
	left: 30px;
	right: 30px;
	color: white;
	z-index: 2;
}
.slide.active .slide-content {
	bottom: 80px;
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}
.slide-number {
font-size: 64px;
font-weight:500;
color: rgba(255, 255, 255);
line-height: 1;
position: absolute;
bottom: 30px;
left: 30px;
transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide.active .slide-number {
	bottom: auto;
	top: -50px;
	font-size: 48px;
	left: 0;
}
.car-brand {
	font-size: 16px;
	font-weight: 600;
	color: rgba(255, 255, 255);
	margin-bottom: 5px;
	transform: rotate(-90deg);
	transform-origin: left bottom;
	position: absolute;
	bottom: 100px;
	left: 30px;
	white-space: nowrap;
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide.active .car-brand {
	transform: rotate(0deg);
	position: static;
	transform-origin: unset;
}
.car-name {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 8px;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	transition-delay: 0s;
}
.slide.active .car-name {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.3s;
}
.car-subtitle {
	font-size: 16px;
	color: rgba(255, 255, 255);
	margin-bottom: 20px;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	transition-delay: 0s;
}
.slide.active .car-subtitle {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.4s;
}
.car-specs {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	transition-delay: 0s;
}
.slide.active .car-specs {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.5s;
}
.spec-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 6px;
	font-size: 14px;
	opacity: 0;
	transform: translateX(-20px);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide.active .spec-row {
	opacity: 1;
	transform: translateX(0);
}
 .slide.active .spec-row:nth-child(1) {
 transition-delay: 0.6s;
}
.slide.active .spec-row:nth-child(2) {
 transition-delay: 0.65s;
}
.slide.active .spec-row:nth-child(3) {
 transition-delay: 0.7s;
}
.slide.active .spec-row:nth-child(4) {
 transition-delay: 0.75s;
}
.spec-label {
	color: rgba(255, 255, 255);
}
.spec-value {
	color: white;
	font-weight: 600;
}
.performance-badges {
	display: flex;
	gap: 12px;
	margin-top: 15px;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	transition-delay: 0s;
}
.slide.active .performance-badges {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.8s;
}

 

.slide.active .badge {
	opacity: 1;
	transform: scale(1);
}
 .slide.active .badge:nth-child(1) {
 transition-delay: 0.85s;
}
.slide.active .badge:nth-child(2) {
 transition-delay: 0.9s;
}
.slide.active .badge:nth-child(3) {
 transition-delay: 0.95s;
}
.badge-icon {
	width: 8px;
	height: 8px;
	background: #122fad;
	border-radius: 50%;
}
.add-button {
	position: absolute;
	bottom: 30px;
	right: 30px;
	width: 32px;
	height: 32px;
	background: transparent;
	border: 2px solid #122fad;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.4s ease;
	z-index: 3;
}
 .add-button::before, .add-button::after {
 content: "";
 position: absolute;
 background: #122fad;
 transition: all 0.4s ease;
}
 .add-button::before {
 width: 12px;
 height: 2px;
}
 .add-button::after {
 width: 2px;
 height: 12px;
 transform: rotate(0deg);
}
 .slide.active .add-button::before {
 transform: rotate(0deg);
}
 .slide.active .add-button::after {
 opacity: 0;
 transform: scale(0);
}
.navigation-arrows {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	border-radius: 50%;
	color: white;
	cursor: pointer;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 4;
	backdrop-filter: blur(10px);
}
.nav-prev {
	left: 20px;
}
.nav-next {
	right: 20px;
}
.navigation-arrows:hover {
	background: rgba(255, 255, 255, 0.2);
}
 @media (max-width: 768px) {
 .accordion-slider {
 flex-direction: column;
}
 .slide {
 flex: 1;
 min-height: 80px;
}
 .slide.active {
 flex: 2;
}
 .slide-number {
 font-size: 32px;
}
 .car-brand {
 transform: none;
 position: static;
}
}

.hover14 figure {
	position: relative;
}
.hover14 figure::before {
position: absolute;
top: 0;
left:-85%;
z-index: 2;
display: block;
content: '';
width: 50%;
height: 100%;
background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
-webkit-transform: skewX(-25deg);
transform: skewX(-25deg);
}
.hover14 figure:hover::before {
-webkit-animation: shine .75s;
animation: shine .75s;
}
@-webkit-keyframes shine {
100% {
left: 125%;
}
}
@keyframes shine {
100% {
left: 125%;
}
}
/* Circle */
.hover15 figure {
	position: relative;
}
.hover15 figure::before {
position: absolute;
top: 50%;
left: 50%;
z-index: 2;
display: block;
content: '';
width: 0;
height: 0;
background: rgba(255, 255, 255, .2);
border-radius: 100%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
opacity: 0;
}
.hover15 figure:hover::before {
-webkit-animation: circle .75s;
animation: circle .75s;
}
@-webkit-keyframes circle {
0% {
opacity: 1;
}
40% {
opacity: 1;
}
100% {
width: 200%;
height: 200%;
opacity: 0;
}
}
@keyframes circle {
0% {
opacity: 1;
}
40% {
opacity: 1;
}
100% {
width: 200%;
height: 200%;
opacity: 0;
}
}

.button {
pointer-events: auto;
cursor: pointer;
background: var(--accent-color);
border: none;
padding:12px 20px 12px 20px!important;
margin: 0;
font-family: inherit;
font-size: inherit;
position: relative;
display: inline-block;
width: max-content;
}
.button::before, .button::after {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
 
.button--calypso {
overflow: hidden;
font-size:15px;
border-radius:5px;
color: #fff;
}
.button--calypso span {
display: block;
position: relative;
 
z-index: 10; color:#fff
}
.button--calypso:hover span {
animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
}
@keyframes MoveScaleUpInitial {
to {
transform: translate3d(0, -105%, 0) scale3d(1, 2, 1);
opacity: 0;
}
}
@keyframes MoveScaleUpEnd {
from {
transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
opacity: 0;
}
to {
transform: translate3d(0, 0, 0);
opacity: 1;
}
}


.button2 {background:#fff!important;} 
.button2 span {color:#000!important}
.button2:hover span{color: #fff!important;}
.button--calypso2::before {background:rgb(18 47 173)!important}
.button--calypso2::after {background:rgb(18 47 173) !important}
 
 
.button--calypso::before {
content: '';
background:#7b7b7c;
width: 120%;
height: 0;
padding-bottom: 120%;
top: -110%;
left: -10%;
border-radius: 50%; transform:translate3d(0, 68%, 0) scale3d(0, 0, 0);}


.button--calypso:hover::before {
transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}
.button--calypso::after {
content: '';
background:rgb(33 37 41);
transform: translate3d(0, -100%, 0);
transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}
.button--calypso:hover::after {
transform: translate3d(0, 0, 0);
transition-duration: 0.05s;
transition-delay: 0.4s;
transition-timing-function: linear;
}

.bi-arrow-right-short::before { font-size:25px!important; vertical-align:middle; color:#fff} 
.button--calypso { display:flex; line-height:30px}
/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
color: var(--default-color);
background-color: var(--background-color);
font-family: var(--default-font);
}

a {
color: var(--accent-color);
text-decoration: none;
transition: 0.3s;
}

a:hover {
color: color-mix(in srgb, var(--accent-color), transparent 25%);
text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
color: var(--heading-color);
font-family: var(--heading-font);
}




.swiper-pagination-bullet { width:12px; height:12px; background:#fff; opacity:1}
.swiper-pagination-bullet-active {background:#122fad;}

.btn-highlighted {background:#122fad; color:#fff!important; border:1px solid transparent;padding:12px 20px 12px 20px; border-radius:5px}
.btn-highlighted:hover {color:#122fad!important; border:1px solid #122fad; background:#fff!important;}
.btn-highlighted i { font-size:30px!important; line-height:30px; vertical-align:middle}
.btn-highlighted { align-items:center;}
.video-button { display:inline-block; position:relative; z-index:999}
.video-button a {
position: relative;
height: 40px;
width: 40px;
background:#122fad;
border-radius: 50%;
display: flex;
justify-content: center;align-items: center;transition: all 0.3s ease-in-out;
}
.video-button a {color:#fff}

.video-play-button a { position:relative}
.video-play-button a:before { 
content: '';
position: absolute;
top: -30%;
left: -30%;
width: 100%;
height: 100%;
border: 32px solid #fff;
opacity: 50%;
border-radius: 50%;
transform: scale(0.6);
animation: border-zooming 1.2s infinite linear;
}
.video-play-button a:after {content: '';
position: absolute;
top: -30%;
left: -30%;
width: 100%;
height: 100%;
border: 32px solid #fff;
opacity: 50%;
border-radius: 50%;
transform: scale(0.6);
animation: border-zooming 1.2s infinite linear;
}

@keyframes border-zooming {
0% {
border-width: 2px;
}
50% {
border-width: 10px;
}
100% {
border-width: 2px;
}
}


.hero-info-box {
position: relative;
margin-top: -145px;
z-index: 2;
}

.container {
max-width: 1500px;
}


.hero-item {
position: relative;
width: calc(33.33% - 20px);
border-radius: 10px;
overflow: hidden;
}

.blue-color {color: var(--accent-color);}
.bg-dark2 {background:#3949AB}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {color: var(--default-color);transition: all 0.5s;z-index: 997;}
.header .topbar {background-color: var(--background-color);
height: 40px;padding: 0;font-size: 14px;transition: all 0.5s;}

.header .topbar .contact-info i {
font-style: normal;
color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
padding-inline-start: 5px;
color: var(--contrast-color);
}

@media (max-width: 575px) {

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
font-size: 13px;
}
}

.header .topbar .contact-info i a {
line-height: 0;
transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
color: var(--contrast-color);
text-decoration: underline;
}

.header .topbar .social-links a {
color: color-mix(in srgb, var(--contrast-color), transparent 40%);
line-height: 0;
transition: 0.3s;
margin-inline-start: 20px;
}

.header .topbar .social-links a:hover {
color: var(--contrast-color);
}

.header .branding {
min-height: 60px;
padding: 10px 0; 
}
.header .branding .container{
    background-color: #fff;
    padding: 20px 15px;
    border-radius: 8px;
}
.header .logo {
line-height: 1;
}

.header .logo img {
max-height:80px;
margin-inline-end: 8px;
}

.header .logo h1 {
font-size: 30px;
margin: 0;
font-weight: 700;
color: var(--heading-color);
}
.scrolled .header .topbar {height: 0;}

.swiper {position:relative}
.mySwiper  .swiper-slide::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background:rgba(0, 0, 0, .4);
width: 100%;
height:100%;z-index:9;}
.mySwiper .swiper-content {position:relative; z-index:999}

.swiper-slide-1 {background: url(../img/hero.jpg) no-repeat center center fixed; 
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;}


.swiper-slide-2 {background: url(../img/hero-2.jpg) no-repeat center center fixed; 
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
.navmenu {
padding: 0;
}

.navmenu ul {
margin: 0;
padding: 0;
display: flex;
list-style: none;
align-items: center;  text-transform:uppercase
}

.navmenu li {
position: relative;
}

.navmenu a,
.navmenu a:focus {
color: #000000;
        padding: 10px 15px;
        font-size: 17px;
        font-family: var(--nav-font);
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;}



.navmenu li:last-child a {
padding-inline-end: 0;
}

.navmenu li:hover>a,
.navmenu .active,
.navmenu .active:focus {
color: var(--nav-hover-color);
}

.navmenu .dropdown ul {
margin: 0;
padding: 10px 0;
background: var(--nav-dropdown-background-color);
display: block;
position: absolute;
visibility: hidden;
left: 14px;
top: 130%;
opacity: 0;
transition: 0.3s;
border-radius: 4px;
z-index: 99;
box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

.navmenu .dropdown ul li {
min-width: 200px;
}

.navmenu .dropdown ul a {
padding: 10px 20px;
font-size: 15px;
text-transform: none;
color: var(--nav-dropdown-color);
}

.navmenu .dropdown ul a i {
font-size: 12px;
}

.navmenu .dropdown ul a:hover,
.navmenu .dropdown ul .active:hover,
.navmenu .dropdown ul li:hover>a {
color: var(--nav-dropdown-hover-color);
}

.navmenu .dropdown:hover>ul {
opacity: 1;
top: 100%;
visibility: visible;
}

.navmenu .dropdown .dropdown ul {
top: 0;
left: -90%;
visibility: hidden;
}

.navmenu .dropdown .dropdown:hover>ul {
opacity: 1;
top: 0;
left: -100%;
visibility: visible;
}
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
.mobile-nav-toggle {
color: #000000;
font-size: 28px;
line-height: 0;
margin-inline-end: 10px;
cursor: pointer;
transition: color 0.3s;
}

.navmenu {
padding: 0;
z-index: 9997;
}

.navmenu ul {
display: none;
list-style: none;
position: absolute;
inset: 60px 20px 20px 20px;
padding:10px 10px;
margin: 0;
border-radius: 6px;
background-color: var(--nav-mobile-background-color);
overflow-y: auto;
transition: 0.3s;
z-index: 9998;
box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

.navmenu a,
.navmenu a:focus {
color: var(--nav-dropdown-color);
padding: 10px 20px;
font-family: var(--nav-font);
font-size: 17px;
font-weight: 500;
display: flex;
align-items: center;
justify-content: space-between;
white-space: nowrap;
transition: 0.3s;
}

.navmenu a i,
.navmenu a:focus i {
font-size: 12px;
line-height: 0;
margin-inline-start: 5px;
width: 30px;
height: 30px;
align-items: center;
justify-content: center;
border-radius: 50%;
transition: 0.3s;
background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.navmenu a i:hover,
.navmenu a:focus i:hover {
background-color: var(--accent-color);
color: var(--contrast-color);
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
color: var(--nav-dropdown-hover-color);
}

.navmenu .active i,
.navmenu .active:focus i {
background-color: var(--accent-color);
color: var(--contrast-color);
transform: rotate(180deg);
}

.navmenu .dropdown ul {
position: static;
display: none;
z-index: 99;
padding: 10px 0;
margin: 10px 20px;
background-color: var(--nav-dropdown-background-color);
border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
box-shadow: none;
transition: all 0.5s ease-in-out;
}

.navmenu .dropdown ul ul {
background-color: rgba(33, 37, 41, 0.1);
}

.navmenu .dropdown>.dropdown-active {
display: block;
background-color: rgba(33, 37, 41, 0.03);
}

.mobile-nav-active {
overflow: hidden;
}

.mobile-nav-active .mobile-nav-toggle {
color: #fff;
position: absolute;
font-size: 32px;
top: 45px;
right: 15px;
margin-inline-end: 0;
z-index: 9999;
}

.mobile-nav-active .navmenu {
position: fixed;
overflow: hidden;
inset: 0;
background: rgba(33, 37, 41, 0.8);
transition: 0.3s;
}

.mobile-nav-active .navmenu>ul {
display: block;
}
}
.navmenu .dropdown > a{
    display:flex;
    align-items:center;
    gap:8px;
}

.navmenu .dropdown > a .toggle-dropdown{
    font-size:12px;
    transition:.3s;
}

.navmenu .dropdown:hover > a .toggle-dropdown,
.navmenu .dropdown.active > a .toggle-dropdown{
    transform:rotate(180deg);
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
color: var(--footer-color);
font-size: 14px;
padding-bottom:25px;
position: relative;
background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center 40.1475px;
}
.footer .container {
	position: relative;
	z-index: 2;
}
.footer-contact .logo-footer{
	width: 100%;
	filter: contrast(0);
}
.footer::before{
	content: '';
    position: absolute;
    top: 0;
   inset-inline-end: 0;
    bottom: 0;
   inset-inline-start: 0;
    background-color: #000;
    opacity: 60%;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.footer .footer-newsletter {
background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
padding: 50px 0;
}

.footer .footer-newsletter h4 {
font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
margin-top: 30px;
margin-bottom: 15px;
padding: 6px 8px;
position: relative;
background-color: var(--surface-color);
border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
display: flex;
transition: 0.3s;
border-radius: 4px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
border: 0;
padding: 4px;
width: 100%;
background-color: var(--surface-color);
color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
border: 0;
font-size: 16px;
padding: 0 20px;
margin: -7px -8px -7px 0;
background: var(--accent-color);
color: var(--contrast-color);
transition: 0.3s;
border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

.footer .social-links a {
display: flex;
align-items: center;
justify-content: center;
width:46px;
height:46px;
border-radius:100px;
border: 1px solid #fff;
font-size: 16px;
color:#fff;
margin-inline-end: 10px;
transition: 0.3s;
}

.footer .social-links a:hover {color:#fff; background:#122fad; border: 1px solid #122fad;}

.footer h3 {
font-size:20px;
position: relative;
padding-bottom:30px; color:#fff; text-transform:uppercase; font-weight:600
}

.footer .footer-links {
margin-bottom: 30px;
}

.footer .footer-links ul {
list-style: none;
padding: 0;
margin: 0;
}

.footer .footer-links ul i {
margin-inline-end:3px;
font-size:16px;
line-height: 0;
color: #fff;
}

.footer .footer-links ul li {
padding:13px 0;display:flex;
align-items: center; color: #999; font-size:16px;}

.footer .footer-links ul li:first-child {
padding-top: 0;
}

.footer .footer-links ul a {
display: inline-block;
color:#fff;
line-height: 1;
padding-inline-start: 10px;
}

.footer .footer-links ul a:hover {
color:#fff;
}

.footer .footer-about a {
color:#fff;
}
.footer .footer-about li ul { margin:0; padding:0}
.footer .footer-about li { font-size:16px;list-style:none; margin:0}
.footer .footer-about li a {color:#fff;}
.footer .footer-about li a:hover {color:#122fad;}

.footer .footer-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer .footer-contact-list > li {
  position: relative;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  line-height: 1.4;
}

.footer .footer-contact-list > li:last-child {
  margin-bottom: 0;
}

.footer .footer-contact-list > li > a,
.footer .footer-contact-list .footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.footer .footer-contact-list > li > a:hover {
  color: #a2b9a7;
}

.footer .footer-contact-list > li i {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #a2b9a7;
  color: #000;
  border-radius: 4px;
  position: static;
  inset: auto;
  display: inline-block;
}

.footer .footer-contact-list > li span {
  flex: 1 1 auto;
  min-width: 0;
  padding-top: 8px;
  word-break: break-word;
}

.footer .footer-contact p {margin-bottom: 5px;}
.footer .footer-contact ul {margin:0; padding:0}
.footer .copyright {padding-top: 25px; padding-bottom:0; border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);}
.footer .copyright p {margin-bottom: 0;color: #fff;}
.footer .copyright p a{margin-bottom: 0;color: #ddd; text-decoration: underline;}
.footer .credits {margin-top: 6px;font-size: 13px;}
.footer-title p {font-size:18px; font-weight: 500;text-transform: uppercase;}
.footer-title p {border-left:solid 2px #fff; padding-inline-start:27px}
.subscribe {color:#999;}
.subscribe input {background-color:#e3d1b9;border-color: transparent;color: #000; padding:13px; border-radius:5px; font-size:14px; letter-spacing:1px; width:100%}
input:focus {outline: none;}


.scroll-parent {
position: relative;
background: var(--accent-color);
padding: 25px 0;
z-index: 1;
}

.scroll-parent span {
display: inline-flex;
align-items: center;
font-size: 22px;
font-weight: 600;
line-height: 1.2em;
color:#fff;
text-transform: capitalize;
}
.scroll-parent img { margin:0 5px; width:20px}

/* Define the keyframes */
@keyframes scroll {
from {
transform: translateX(0); /* Start position */
}
to {
transform: translateX(-100%); /* End position (moves the full width of original content out of view) */
}
}
/* Apply the animation to the element (which contains duplicated content) */
.scroll-element {
animation: scroll 100s linear infinite;
white-space: nowrap; /* Keeps items in a single line */
}
/* The parent container needs to hide the overflowing content */
.scroll-parent {
overflow: hidden;
width: 100%;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
position: fixed;
inset: 0;
z-index: 9999;
overflow: hidden;
background-color: var(--background-color);
transition: all 0.6s ease-out;
width: 100%;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}

#preloader div {
width: 13px;
height: 13px;
background-color: var(--accent-color);
border-radius: 50%;
animation-timing-function: cubic-bezier(0, 1, 1, 0);
position: absolute;
left: 50%;
}

#preloader div:nth-child(1) {
left: calc(50% + 8px);
animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
left: calc(50% + 8px);
animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
left: calc(50% + 32px);
animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
left: calc(50% + 56px);
animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
0% {
transform: scale(0);
}

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

@keyframes animate-preloader-3 {
0% {
transform: scale(1);
}

100% {
transform: scale(0);
}
}

@keyframes animate-preloader-2 {
0% {
transform: translate(0, 0);
}

100% {
transform: translate(24px, 0);
}
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
position: fixed;
visibility: hidden;
opacity: 0;
right: 15px;
bottom: 15px;
z-index: 99999;
background-color: var(--accent-color);
width: 40px;
height: 40px;
border-radius: 4px;
transition: all 0.4s;
}

.scroll-top i {
font-size: 24px;
color: var(--contrast-color);
line-height: 0;
}

.scroll-top:hover {
background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
color: var(--contrast-color);
}

.scroll-top.active {
visibility: visible;
opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
[data-aos-delay] {
transition-delay: 0 !important;
}
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
--background-color: color-mix(in srgb, var(--default-color), transparent 96%);
color: var(--default-color);
background-color: var(--background-color);
padding: 25px 0;
position: relative;
}

.page-title h1 {
font-size: 24px;
font-weight: 600;
}

.page-title .breadcrumbs ol {
display: flex;
flex-wrap: wrap;
list-style: none;
padding: 0;
margin: 0;
font-size: 14px;
font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
padding-inline-start: 10px;
}

.page-title .breadcrumbs ol li+li::before {
content: "/";
display: inline-block;
padding-inline-end: 10px;
color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
color: var(--default-color);
background-color: #fff;
padding: 60px 0;
scroll-margin-top: 78px;
overflow: clip;
}

@media (max-width: 1199px) {

section,
.section {
scroll-margin-top: 60px;
}
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {position: relative;}
.section-title h2 {font-size: clamp(1.8rem, 4vw, 2.2rem);}
.section-title p {margin-bottom: 0;}
.section-title small {position: relative;display: inline-block;font-size: 14px;
text-transform: uppercase;margin-bottom: 10px; color:#122fad}
.section-title .form-control {font-size:16px;color:#666666;border-radius:10px;padding:18px 18px;box-shadow:none;outline:none;}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.banner-section {
        height: 100vh;
    padding: 0;
    overflow: unset;
}
.banner-section  .swiper{
    height: 100%;
}
.hero {
padding: 0;
background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
position: relative;
overflow: hidden;
}

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

.hero .hero-content .content {
padding: 80px 0;
}

.hero .hero-content .content h1 {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 2rem;
color: var(--heading-color);
}

@media (max-width: 768px) {
.hero .hero-content .content h1 {
font-size: 2.5rem;
}
}

.hero .hero-content .content p {
font-size: 1.125rem;
line-height: 1.7;
color: color-mix(in srgb, var(--default-color), transparent 20%);
margin-bottom: 3rem;
max-width: 90%;
}

.hero .hero-content .content .cta-group {
display: flex;
align-items: center;
gap: 2rem;
flex-wrap: wrap;
}

.hero .hero-content .content .cta-group .btn-primary {
background: var(--accent-color);
color: var(--contrast-color);
padding: 1rem 2.5rem;
border-radius: 8px;
font-weight: 500;
font-size: 1rem;
text-decoration: none;
transition: all 0.3s ease;
border: none;
display: inline-block;
}

.hero .hero-content .content .cta-group .btn-primary:hover {
background: color-mix(in srgb, var(--accent-color), black 10%);
transform: translateY(-2px);
box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero .hero-content .content .cta-group .btn-secondary {
display: flex;
align-items: center;
gap: 0.75rem;
color: var(--heading-color);
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
}

.hero .hero-content .content .cta-group .btn-secondary i {
font-size: 1.5rem;
color: var(--accent-color);
transition: all 0.3s ease;
}

.hero .hero-content .content .cta-group .btn-secondary:hover {
color: var(--accent-color);
}

.hero .hero-content .content .cta-group .btn-secondary:hover i {
transform: scale(1.1);
}

.hero .hero-content .hero-image {
position: relative;
padding: 80px 0;
}

.hero .hero-content .hero-image img {
border-radius: 12px;
box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
width: 100%;
height: auto;
}

.hero .hero-content .hero-image .floating-card {
position: absolute;
bottom: 40px;
left: -40px;
background: var(--surface-color);
padding: 2rem;
border-radius: 12px;
box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
.hero .hero-content .hero-image .floating-card {
left: 20px;
bottom: 20px;
padding: 1.5rem;
}
}

.hero .hero-content .hero-image .floating-card .card-content {
display: flex;
gap: 2rem;
}

@media (max-width: 576px) {
.hero .hero-content .hero-image .floating-card .card-content {
flex-direction: column;
gap: 1rem;
}
}

.hero .hero-content .hero-image .floating-card .metric {
text-align: center;
}

.hero .hero-content .hero-image .floating-card .metric .number {
display: block;
font-size: 2rem;
font-weight: 600;
color: var(--accent-color);
line-height: 1;
}

.hero .hero-content .hero-image .floating-card .metric .label {
font-size: 0.875rem;
color: color-mix(in srgb, var(--default-color), transparent 30%);
margin-top: 0.25rem;
}

.hero .hero-features {
background: var(--surface-color);
padding: 4rem 0;
border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.protoflio-book{position:relative;padding-top:0;width:1920px;height:1080px;}
.protoflio-book iframe{position:absolute;border:none;width:100%;height:100%;left:0;top:0;}
.hero .hero-features .feature-item {
text-align: center;
padding: 2rem 1rem;
transition: all 0.3s ease;
}

.hero .hero-features .feature-item:hover {
transform: translateY(-5px);
}

.hero .hero-features .feature-item .icon {
width: 80px;
height: 80px;
background: color-mix(in srgb, var(--accent-color), transparent 90%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
transition: all 0.3s ease;
}

.hero .hero-features .feature-item .icon i {
font-size: 2rem;
color: var(--accent-color);
}

.hero .hero-features .feature-item h4 {
font-size: 1.25rem;
font-weight: 500;
margin-bottom: 1rem;
color: var(--heading-color);
}

.hero .hero-features .feature-item p {
font-size: 0.95rem;
line-height: 1.6;
color: color-mix(in srgb, var(--default-color), transparent 30%);
margin: 0;
}

.hero .hero-features .feature-item:hover .icon {
background: var(--accent-color);
transform: scale(1.1);
}

.hero .hero-features .feature-item:hover .icon i {
color: var(--contrast-color);
}

@media (max-width: 992px) {
.hero .hero-content .content {
text-align: center;
padding: 60px 0 40px;
}

.hero .hero-content .content p {
max-width: 100%;
}

.hero .hero-content .hero-image {
padding: 40px 0 60px;
}
}

.hero::before {
content: "";
position: absolute;
top: 0;
right: 0;
width: 50%;
height: 100%;
background: url("../img/bg/abstract-bg-1.webp") center/cover no-repeat;
opacity: 0.03;
z-index: 1;
}

.your-element {
animation: rotate 30s linear infinite; width:200px; height:200px; border-radius:100%; overflow:hidden; float:right;
}

.your-element img { width:100%}


@keyframes rotate {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}


.rotate-video {
animation:rotate 30s linear infinite; width:150px; height:150px; border-radius:100%; overflow:hidden; margin:0 auto;}



/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.service-details-img{width: 100%;}
.service-details-img img{width: 100%;height: 500px;}
.featured-services .service-item {
height: 100%;
padding: 60px 40px;
border-radius: 8px;
transition: all 0.4s ease;
background-color: var(--surface-color);
border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
position: relative;
overflow: hidden;
}

.featured-services .service-item::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
transform: scaleX(0);
transform-origin: left;
transition: transform 0.4s ease;
}

.featured-services .service-item:hover {
transform: translateY(-8px);
box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
}

.featured-services .service-item:hover::before {
transform: scaleX(1);
}

.featured-services .service-item:hover .service-icon {
background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
}

.featured-services .service-item:hover .service-icon i {
color: var(--contrast-color);
transform: scale(1.1);
}

.featured-services .service-item:hover .service-link {
opacity: 1;
transform: translateY(0);
}

.featured-services .service-item:hover .service-link i {
transform: translateX(8px);
}

@media (max-width: 768px) {
.featured-services .service-item {
padding: 40px 30px;
}
}

.featured-services .service-icon {
width: 80px;
height: 80px;
margin: 0 auto 30px;
display: flex;
align-items: center;
justify-content: center;
background: color-mix(in srgb, var(--accent-color), transparent 90%);
border-radius: 50%;
transition: all 0.4s ease;
}

.featured-services .service-icon i {
font-size: 36px;
color: var(--accent-color);
transition: all 0.4s ease;
}

.featured-services h3 {
font-size: 24px;
font-weight: 300;
margin-bottom: 20px;
text-align: center;
color: var(--heading-color);
line-height: 1.3;
}

.featured-services p {
color: color-mix(in srgb, var(--default-color), transparent 20%);
text-align: center;
line-height: 1.7;
margin-bottom: 30px;
font-size: 15px;
}

.featured-services .service-link {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
color: var(--accent-color);
text-decoration: none;
font-weight: 400;
font-size: 14px;
opacity: 0.8;
transform: translateY(10px);
transition: all 0.4s ease;
}

.featured-services .service-link span {
font-weight: 500;
}

.featured-services .service-link i {
font-size: 16px;
transition: transform 0.3s ease;
}

.featured-services .service-link:hover {
color: var(--heading-color);
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills {
--skill-spacing: 40px;
--icon-size: 60px;
--progress-height: 4px;
--border-subtle: color-mix(in srgb, var(--default-color), transparent 90%);
--text-muted: color-mix(in srgb, var(--default-color), transparent 45%);
--surface-elevated: color-mix(in srgb, var(--surface-color), var(--accent-color) 2%);
}

.skills .intro-content {
margin-bottom: 80px;
}

.skills .intro-content .lead-text {
font-size: 20px;
line-height: 1.7;
color: var(--text-muted);
font-weight: 300;
margin: 0;
}

.skills .skills-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
gap: var(--skill-spacing);
margin-bottom: 60px;
}

.skills .skill-item {
padding: 36px 0;
border-bottom: 1px solid var(--border-subtle);
transition: all 0.4s ease;
}

.skills .skill-item:hover {
transform: translateY(-4px);
}

.skills .skill-item:hover .skill-icon i {
color: var(--accent-color);
transform: scale(1.1);
}

.skills .skill-item .skill-icon {
margin-bottom: 24px;
}

.skills .skill-item .skill-icon i {
font-size: var(--icon-size);
color: var(--text-muted);
transition: all 0.4s ease;
}

.skills .skill-item .skill-name {
font-size: 24px;
font-weight: 300;
margin-bottom: 20px;
color: var(--heading-color);
line-height: 1.3;
}

.skills .skill-item .skill-level {
display: flex;
align-items: center;
gap: 16px;
margin-bottom: 20px;
}

.skills .skill-item .skill-level .level-text {
font-size: 14px;
color: var(--accent-color);
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.8px;
min-width: 90px;
}

.skills .skill-item .skill-level .progress-track {
flex: 1;
height: var(--progress-height);
background: var(--border-subtle);
border-radius: 2px;
overflow: hidden;
}

.skills .skill-item .skill-level .progress-track .progress-bar {
width: 0%;
height: 100%;
background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
border-radius: 2px;
transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.skills .skill-item .skill-description {
font-size: 16px;
line-height: 1.8;
color: var(--text-muted);
margin: 0;
}

.skills .certification-area {
padding-top: 60px;
border-top: 1px solid var(--border-subtle);
}

.skills .certification-area .cert-content .cert-title {
font-size: 28px;
font-weight: 300;
margin-bottom: 16px;
color: var(--heading-color);
}

.skills .certification-area .cert-content .cert-description {
font-size: 17px;
line-height: 1.7;
color: var(--text-muted);
margin-bottom: 32px;
}

.skills .certification-area .cert-content .cert-list .cert-item {
display: flex;
align-items: center;
gap: 12px;
padding: 12px 0;
border-bottom: 1px dashed var(--border-subtle);
}

.skills .certification-area .cert-content .cert-list .cert-item:last-child {
border-bottom: none;
}

.skills .certification-area .cert-content .cert-list .cert-item i {
color: var(--accent-color);
font-size: 20px;
}

.skills .certification-area .cert-content .cert-list .cert-item span {
font-size: 16px;
color: var(--default-color);
}

.skills .certification-area .tools-showcase .tools-title {
font-size: 20px;
font-weight: 400;
margin-bottom: 24px;
color: var(--heading-color);
}

.skills .certification-area .tools-showcase .tools-grid {
display: flex;
flex-wrap: wrap;
gap: 12px;
}

.skills .certification-area .tools-showcase .tools-grid .tool-tag {
padding: 8px 16px;
background: var(--surface-elevated);
border: 1px solid var(--border-subtle);
border-radius: 20px;
font-size: 14px;
color: var(--default-color);
transition: all 0.3s ease;
}

.skills .certification-area .tools-showcase .tools-grid .tool-tag:hover {
background: color-mix(in srgb, var(--accent-color), transparent 90%);
border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
color: var(--accent-color);
}

@media (max-width: 992px) {
.skills .skills-grid {
grid-template-columns: 1fr;
gap: 30px;
}

.skills .skill-item {
padding: 28px 0;
}

.skills .skill-item .skill-name {
font-size: 22px;
}

.skills .cert-content .cert-title {
font-size: 24px;
}
}

@media (max-width: 768px) {
.skills {
--skill-spacing: 24px;
--icon-size: 50px;
}

.skills .intro-content {
margin-bottom: 60px;
}

.skills .intro-content .lead-text {
font-size: 18px;
}

.skills .certification-area {
padding-top: 40px;
}

.skills .certification-area .tools-showcase {
margin-top: 40px;
}
}





/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .content h3 {
font-size: 2rem;
font-weight: 700;
}

.skills .content p {
color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.skills .content p:last-child {
margin-bottom: 0;
}

.skills .content ul {
list-style: none;
padding: 0;
}

.skills .content ul li {
padding-bottom: 10px;
}

.skills .progress {
height: 60px;
display: block;
background: none;
border-radius: 0;
}

.skills .progress .skill {
color: var(--default-color);
padding: 0;
margin: 0 0 6px 0;
text-transform: uppercase;
display: block;
font-weight: 600;
font-family: var(--heading-font);
}

.skills .progress .skill .val {
float: right;
font-style: normal;
}

.skills .progress-bar-wrap {
background: color-mix(in srgb, var(--heading-color), transparent 90%);
height: 10px;
}

.progress, .progress-stacked {--bs-progress-height:.5rem;}


/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .section-headline {
color: var(--heading-color);
font-family: var(--heading-font);
font-size: 2.75rem;
font-weight: 300;
line-height: 1.2;
letter-spacing: -0.02em;
}

.stats .section-description {
color: color-mix(in srgb, var(--default-color), transparent 20%);
font-size: 1.125rem;
line-height: 1.7;
font-weight: 300;
max-width: 600px;
margin: 0 auto;
}

.stats .stats-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0;
border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
border-radius: 8px;
overflow: hidden;
background: var(--surface-color);
}

.stats .stat-item {
padding: 3rem 2.5rem;
position: relative;
transition: all 0.4s ease;
}

.stats .stat-item:nth-child(1) {
border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.stats .stat-item:nth-child(2) {
border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.stats .stat-item:nth-child(3) {
border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.stats .stat-item:hover {
background: color-mix(in srgb, var(--accent-color), transparent 97%);
transform: translateY(-2px);
}

.stats .stat-item .stat-content {
text-align: center;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

.stats .stat-item .stat-number {
color: var(--accent-color);
font-family: var(--heading-font);
font-size: 3.5rem;
font-weight: 200;
line-height: 1;
margin-bottom: 1rem;
letter-spacing: -0.03em;
}

.stats .stat-item .stat-number .purecounter {
font-size: inherit;
color: inherit;
}

.stats .stat-item .stat-divider {
width: 40px;
height: 1px;
background: var(--accent-color);
margin: 0 auto 1.5rem auto;
opacity: 0.6;
}

.stats .stat-item .stat-label {
color: var(--heading-color);
font-family: var(--heading-font);
font-size: 1.25rem;
font-weight: 400;
margin-bottom: 1rem;
letter-spacing: 0.01em;
}

.stats .stat-item .stat-description {
color: color-mix(in srgb, var(--default-color), transparent 30%);
font-size: 0.95rem;
line-height: 1.6;
font-weight: 300;
margin: 0;
max-width: 200px;
}

.stats .achievement-badge {
background: var(--surface-color);
border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
border-radius: 8px;
padding: 2.5rem 2rem;
text-align: center;
transition: all 0.4s ease;
}

.stats .achievement-badge:hover {
border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
transform: translateY(-3px);
}

.stats .achievement-badge .badge-icon {
font-size: 2.5rem;
color: var(--accent-color);
margin-bottom: 1.5rem;
opacity: 0.8;
}

.stats .achievement-badge .badge-title {
color: var(--heading-color);
font-family: var(--heading-font);
font-size: 1.5rem;
font-weight: 400;
margin-bottom: 1rem;
letter-spacing: 0.01em;
}

.stats .achievement-badge .badge-text {
color: color-mix(in srgb, var(--default-color), transparent 25%);
font-size: 1rem;
line-height: 1.6;
font-weight: 300;
margin: 0;
max-width: 400px;
margin: 0 auto;
}

@media (max-width: 992px) {
.stats .section-headline {
font-size: 2.25rem;
}

.stats .stats-container {
gap: 0;
}

.stats .stat-item {
padding: 2.5rem 2rem;
}

.stats .stat-item .stat-number {
font-size: 3rem;
}

.stats .stat-item .stat-description {
font-size: 0.9rem;
}
}

@media (max-width: 768px) {
.stats .section-headline {
font-size: 1.875rem;
}

.stats .section-description {
font-size: 1rem;
}

.stats .stats-container {
grid-template-columns: 1fr;
}

.stats .stat-item {
padding: 2rem 1.5rem;
}

.stats .stat-item:nth-child(1) {
border-right: none;
border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.stats .stat-item:nth-child(2) {
border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.stats .stat-item:nth-child(3) {
border-right: none;
border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.stats .stat-item:nth-child(4) {
border-bottom: none;
}

.stats .stat-item .stat-number {
font-size: 2.75rem;
}

.stats .stat-item .stat-description {
max-width: 300px;
}

.stats .achievement-badge {
padding: 2rem 1.5rem;
}

.stats .achievement-badge .badge-icon {
font-size: 2rem;
}

.stats .achievement-badge .badge-title {
font-size: 1.25rem;
}

.stats .achievement-badge .badge-text {
font-size: 0.95rem;
}
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .client-item {
padding: 1.5rem;
text-align: center;
height: 100%;
background-color: var(--surface-color);
border-radius: 8px;
border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
transition: all 0.3s ease-in-out;
display: flex;
align-items: center;
justify-content: center;
}

.clients .client-item img {
max-width: 100%;
transition: all 0.3s ease-in-out;
filter: grayscale(100);
opacity: 0.8;
}

.clients .client-item:hover {
transform: translateY(-5px);
border-color: var(--accent-color);
}

.clients .client-item:hover img {
filter: grayscale(0);
opacity: 1;
}

@media (max-width: 1199px) {
.clients .client-item {
padding: 1.25rem;
}
}

@media (max-width: 767px) {
.clients .client-item {
padding: 1rem;
}
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
padding: 120px 0;
}

.services .service-item {
padding: 60px 40px;
background-color: var(--surface-color);
border-radius: 8px;
transition: all 0.4s ease;
height: 100%;
position: relative;
}

.services .service-item:hover {
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.services .service-item:hover .service-icon i {
transform: scale(1.1);
}

.services .service-item:hover .service-link {
color: var(--accent-color);
}

.services .service-item:hover .service-link i {
transform: translateX(8px);
}

.services .service-icon {
width: 80px;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 40px;
background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6c5ce7 20%));
border-radius: 50%;
}

.services .service-icon i {
font-size: 36px;
color: var(--contrast-color);
transition: transform 0.3s ease;
}

.services h3 {
font-size: 24px;
font-weight: 300;
margin-bottom: 24px;
letter-spacing: -0.5px;
line-height: 1.3;
}

.services p {
font-size: 16px;
line-height: 1.7;
color: color-mix(in srgb, var(--default-color), transparent 20%);
margin-bottom: 40px;
}

.services .service-link {
display: inline-flex;
align-items: center;
gap: 12px;
font-size: 14px;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 1px;
color: var(--heading-color);
text-decoration: none;
transition: all 0.3s ease;
}

.services .service-link i {
font-size: 16px;
transition: transform 0.3s ease;
}

@media (max-width: 768px) {
.services {
padding: 80px 0;
}

.services .service-item {
padding: 40px 24px;
}

.services .service-icon {
width: 64px;
height: 64px;
margin-bottom: 32px;
}

.services .service-icon i {
font-size: 28px;
}

.services h3 {
font-size: 20px;
margin-bottom: 20px;
}

.services p {
font-size: 15px;
margin-bottom: 32px;
}
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {position: relative;overflow: hidden;}
.testimonials .testimonial-slider .swiper-wrapper {
height: auto !important;}
.testimonials .testimonial-item {
background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 2%) 100%);border-radius: 20px;padding: 0;height: 100%;
border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
transition: all 0.4s ease;overflow: hidden;position: relative;}

.testimonials .testimonial-header {position: relative;text-align: center;padding: 30px 30px 20px;}

.testimonials .testimonial-header img {
width: 80px;
height: 80px;
border-radius: 50%;
object-fit: cover;
border: 4px solid color-mix(in srgb, var(--accent-color), transparent 70%);
margin-bottom: 15px;
transition: all 0.3s ease;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-header .rating {
display: flex;
justify-content: center;
gap: 3px;
}

.testimonials .testimonial-header .rating i {
color: #ffc107;
font-size: 0.9rem;
}

.testimonials .testimonial-body {
padding: 0 30px 20px;
}

.testimonials .testimonial-body p {
font-size: 1rem;
line-height: 1.6;
color: color-mix(in srgb, var(--default-color), transparent 20%);
margin: 0;
font-style: italic;
text-align: center;
position: relative;
}

.testimonials .testimonial-body p::before,
.testimonials .testimonial-body p::after {
content: '"';
font-size: 1.5rem;
color: var(--accent-color);
opacity: 0.6;
font-family: serif;
position: absolute;
}

.testimonials .testimonial-body p::before {
top: -5px;
left: -10px;
}

.testimonials .testimonial-body p::after {
bottom: -20px;
right: -5px;
}

.testimonials .testimonial-footer {
padding: 20px 30px 30px;
text-align: center;
position: relative;
}

.testimonials .testimonial-footer small {
font-size: 1.1rem;
font-weight: 600;
color: var(--heading-color);
margin: 0 0 5px;
}

.testimonials .testimonial-footer span {
font-size: 0.85rem;
color: color-mix(in srgb, var(--default-color), transparent 40%);
display: block;
margin-bottom: 15px;
}

.testimonials .testimonial-footer .quote-icon {
position: absolute;
bottom: 15px;
right: 25px;
color: color-mix(in srgb, var(--accent-color), transparent 60%);
font-size: 1.5rem;
transition: all 0.3s ease;
}

.testimonials .swiper-navigation {
position: relative;
margin-top: 25px;
display: flex;
justify-content: flex-end;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
position: static;
width: 45px;
height: 45px;
margin: 0 10px;
background: var(--accent-color);
border-radius: 50%;
color: var(--contrast-color);
font-size: 16px;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
background: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
transform: scale(1.05);
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
font-size: 16px;
font-weight: 600;
}

.testimonials .swiper-pagination {
position: static;
margin-top: 30px;
text-align: center;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
width: 12px;
height: 12px;
background: color-mix(in srgb, var(--default-color), transparent 70%);
opacity: 1;
margin: 0 6px;
transition: all 0.3s ease;
}

.testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
background: var(--accent-color);
transform: scale(1.2);
}

.testimonial-item-content {
position: relative;
z-index: 1;
}

.testimonial-item:hover  p {color:#fff}
.testimonial-item:hover  small {color:#fff}
.testimonial-item:hover  span {color:#fff}
.testimonial-item:hover  .quote-icon {color:#fff!important}
.testimonial-item:hover  .testimonial-header img {border:solid 4px #fff}
.testimonial-item:hover  .testimonial-header .rating i {color:#fff}
.testimonial-item:hover {background:#122fad}


@media (max-width: 1199px) {
.testimonials .testimonial-item .testimonial-header {
padding: 25px 25px 15px;
}

.testimonials .testimonial-item .testimonial-header img {
width: 70px;
height: 70px;
}

.testimonials .testimonial-item .testimonial-body,
.testimonials .testimonial-item .testimonial-footer {
padding-inline-start: 25px;
padding-inline-end: 25px;
}
}

@media (max-width: 991px) {
.testimonials .testimonial-item {
margin-bottom: 30px;
}
}

@media (max-width: 767px) {
.testimonials .testimonial-item .testimonial-header {
padding: 20px 20px 10px;
}

.testimonials .testimonial-item .testimonial-header img {
width: 60px;
height: 60px;
}

.testimonials .testimonial-item .testimonial-header .rating i {
font-size: 0.8rem;
}

.testimonials .testimonial-item .testimonial-body {
padding: 0 20px 15px;
}

.testimonials .testimonial-item .testimonial-body p {
font-size: 0.95rem;
}

.testimonials .testimonial-item .testimonial-footer {
padding: 15px 20px 20px;
}

.testimonials .testimonial-item .testimonial-footer h5 {
font-size: 1rem;
}

.testimonials .testimonial-item .testimonial-footer span {
font-size: 0.8rem;
}

.testimonials .testimonial-item .testimonial-footer .quote-icon {
font-size: 1.3rem;
bottom: 10px;
right: 15px;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
width: 40px;
height: 40px;
font-size: 14px;
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
font-size: 14px;
}
}

@media (max-width: 575px) {
.testimonials .testimonial-slider {
padding-bottom: 30px;
}

.testimonials .testimonial-item .testimonial-header {
padding: 15px 15px 10px;
}

.testimonials .testimonial-item .testimonial-header img {
width: 55px;
height: 55px;
}

.testimonials .testimonial-item .testimonial-body {
padding: 0 15px 10px;
}

.testimonials .testimonial-item .testimonial-body p {
font-size: 0.9rem;
}

.testimonials .testimonial-item .testimonial-footer {
padding: 10px 15px 15px;
}

.testimonials .testimonial-item .testimonial-footer h5 {
font-size: 0.95rem;
}

.testimonials .testimonial-item .testimonial-footer .quote-icon {
font-size: 1.2rem;
}

.testimonials .swiper-navigation {
margin-top: 10px;
}
}




/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters-wrapper {
text-align: center;
margin-bottom:50px;
}

.portfolio .portfolio-filters {
display: inline-flex;
align-items: center;
gap: 40px;
padding: 0;
margin: 0;
list-style: none;
position: relative;
}

.portfolio .portfolio-filters::after {
content: "";
position: absolute;
bottom: -8px;
left: 0;
width: 100%;
height: 1px;
background: color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio .portfolio-filters li {
position: relative;
cursor: pointer;
padding:0;
font-size: 15px;
font-weight: 400;
color: color-mix(in srgb, var(--default-color), transparent 20%);
transition: all 0.4s ease-out;
letter-spacing: 0.5px;
}

.portfolio .portfolio-filters li::after {
content: "";
position: absolute;
bottom: -8px;
left: 50%;
width: 0;
height: 2px;
background: var(--accent-color);
transition: all 0.4s ease-out;
transform: translateX(-50%);
}

.portfolio .portfolio-filters li:hover {
color: var(--default-color);
}

.portfolio .portfolio-filters li.filter-active {
color: var(--default-color);
}

.portfolio .portfolio-filters li.filter-active::after {
width: 100%;
}

@media (max-width: 768px) {
.portfolio .portfolio-filters {
flex-wrap: wrap;
gap: 20px;
justify-content: center;
}
}

.portfolio .portfolio-card {
background: var(--surface-color);
transition: all 0.4s ease-out;
overflow: hidden;
}

.portfolio .portfolio-card:hover {
transform: translateY(-8px);
}

.portfolio .portfolio-card:hover .image-container img {
transform: scale(1.05);
}

.portfolio .portfolio-card:hover .overlay {
opacity: 1;
visibility: visible;
}

.portfolio .portfolio-card:hover .content h3 {
color: var(--accent-color);
}

.portfolio .image-container {
position: relative;
overflow: hidden;
aspect-ratio: 4/4;
border-radius: 8px;
}

.portfolio .image-container img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s ease-out;
}

.portfolio .image-container .overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: color-mix(in srgb, var(--bg-black), transparent 50%);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
visibility: hidden;
transition: all 0.4s ease-out;
backdrop-filter: blur(2px);
}

.portfolio .image-container .overlay-content {
display: flex;
gap: 20px;
transform: translateY(20px);
transition: transform 0.4s ease-out 0.1s;
}

.portfolio-card:hover .portfolio .image-container .overlay-content {
transform: translateY(0);
}

.portfolio .image-container .overlay-content a {
width: 50px;
height: 50px;
background: var(--surface-color);
color: var(--heading-color);
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
transition: all 0.3s ease;
font-size: 18px;
}

.portfolio .image-container .overlay-content a:hover {
color:#000;
transform: scale(1.1);
}

.portfolio .content {
padding: 30px 0;
text-align: center;
}

.portfolio .content h3 {
font-size: 20px;
font-weight:600;
margin-bottom: 8px;
transition: color 0.3s ease;
letter-spacing: 0.5px; text-transform:capitalize
}

.portfolio .content p {
color: color-mix(in srgb, var(--default-color), transparent 40%);
font-size: 14px;
line-height: 1.6;
margin: 0;
letter-spacing: 0.3px;
}

@media (min-width: 992px) {
.portfolio .portfolio-grid {
grid-template-columns: repeat(3, 1fr);
}
}

@media (min-width: 1200px) {
.portfolio .portfolio-grid {
grid-template-columns: repeat(4, 1fr);
gap: 50px;
}
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .gradient {position:relative;display: block;border-radius:10px;}
.team .gradient::before {content:'';position:absolute;top: 0;right: 0;bottom: 0;left: 0;width:100%;height:100%;
background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 42.71%, rgba(0, 0, 0, 0.80) 85.3%);z-index:1;}
.team-content {position: absolute;left: 30px;right: 30px;bottom: 30px;text-align:center;z-index:1;}
.team-content a {color:#fff}
.team-content h3 {font-size:20px}
.team-content p {color:#fff}
.team .gradient img {transition:transform 1s;}
.team .gradient:hover img {transform:scale(1.1);}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
--card-radius: 16px;
--card-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 92%);
--muted: color-mix(in srgb, var(--default-color), transparent 55%);
--line: color-mix(in srgb, var(--default-color), transparent 85%);
--accent-soft: color-mix(in srgb, var(--accent-color), transparent 85%);
--accent-strong: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.pricing .pricing-toggle-container {
text-align: center;
}

.pricing .pricing-toggle-container .pricing-toggle {
background: color-mix(in srgb, var(--accent-color), transparent 92%);
border: 1px solid var(--accent-soft);
}

.pricing .pricing-toggle-container .pricing-toggle .monthly,
.pricing .pricing-toggle-container .pricing-toggle .yearly {
font-weight: 600;
color: var(--default-color);
opacity: 0.7;
transition: 0.3s;
cursor: pointer;
}

.pricing .pricing-toggle-container .pricing-toggle .monthly.active,
.pricing .pricing-toggle-container .pricing-toggle .yearly.active {
color: var(--heading-color);
opacity: 1;
}

.pricing .pricing-toggle-container .pricing-toggle .switch {
position: relative;
display: inline-block;
width: 54px;
height: 28px;
}

.pricing .pricing-toggle-container .pricing-toggle .switch input {
opacity: 0;
width: 0;
height: 0;
}

.pricing .pricing-toggle-container .pricing-toggle .switch .slider {
position: absolute;
cursor: pointer;
inset: 0;
background: var(--accent-soft);
transition: 0.3s;
border-radius: 999px;
}

.pricing .pricing-toggle-container .pricing-toggle .switch .slider::before {
position: absolute;
content: "";
height: 22px;
width: 22px;
left: 3px;
top: 3px;
background-color: var(--surface-color);
transition: 0.3s;
border-radius: 50%;
box-shadow: 0 2px 8px color-mix(in srgb, var(--default-color), transparent 85%);
}

.pricing .pricing-toggle-container .pricing-toggle .switch input:checked+.slider {
background: var(--accent-color);
}

.pricing .pricing-toggle-container .pricing-toggle .switch input:checked+.slider::before {
transform: translateX(26px);
}

.pricing .pricing-toggle-container .hint {
color: var(--muted);
}

.pricing .price-card {
background: var(--surface-color);
border: 1px solid var(--line);
border-radius: var(--card-radius);
padding: 28px;
box-shadow: var(--card-shadow);
display: flex;
flex-direction: column;
transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}

.pricing .price-card:hover {
transform: translateY(-4px);
box-shadow: 0 14px 40px color-mix(in srgb, var(--default-color), transparent 88%);
border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.pricing .price-card.featured {
border-color: var(--accent-strong);
box-shadow: 0 16px 44px color-mix(in srgb, var(--accent-color), transparent 80%);
position: relative;
background: radial-gradient(1200px 1200px at 110% -10%, color-mix(in srgb, var(--accent-color), transparent 92%) 0%, transparent 50%) no-repeat, var(--surface-color);
}

.pricing .price-card.featured .btn-choose {
background-color: var(--accent-color);
color: var(--contrast-color);
}

.pricing .price-card.featured .btn-choose:hover {
background-color: color-mix(in srgb, var(--accent-color), black 8%);
color: var(--contrast-color);
}

.pricing .price-card .ribbon {
position: absolute;
top: 14px;
right: 14px;
background: var(--accent-color);
color: var(--contrast-color);
font-size: 12px;
font-weight: 700;
padding: 6px 10px;
border-radius: 999px;
display: inline-flex;
align-items: center;
gap: 6px;
box-shadow: 0 6px 18px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.pricing .price-card .ribbon i {
font-size: 12px;
}

.pricing .price-card .card-head {
margin-bottom: 18px;
}

.pricing .price-card .card-head .badge-title {
display: inline-block;
font-size: 12px;
font-weight: 700;
letter-spacing: 0.04em;
text-transform: uppercase;
color: var(--accent-color);
background: color-mix(in srgb, var(--accent-color), transparent 90%);
border: 1px solid var(--accent-soft);
padding: 6px 10px;
border-radius: 999px;
margin-bottom: 10px;
}

.pricing .price-card .card-head .title {
font-size: 22px;
margin: 2px 0 8px;
}

.pricing .price-card .card-head .subtitle {
color: var(--muted);
margin: 0 0 14px;
}

.pricing .price-card .card-head .price-wrap {
display: flex;
align-items: baseline;
gap: 10px;
}

.pricing .price-card .card-head .price-wrap .price {
font-family: var(--heading-font);
color: var(--heading-color);
font-weight: 800;
line-height: 1;
display: none;
}

.pricing .price-card .card-head .price-wrap .price sup {
font-size: 18px;
top: -0.6em;
position: relative;
margin-inline-end: 2px;
}

.pricing .price-card .card-head .price-wrap .price.price-monthly,
.pricing .price-card .card-head .price-wrap .price.price-yearly {
font-size: 40px;
}

.pricing .price-card .card-head .price-wrap .price .period {
font-size: 14px;
color: var(--muted);
margin-inline-start: 6px;
font-weight: 600;
}

.pricing .price-card .feature-list {
border-top: 1px dashed var(--line);
padding-top: 16px;
}

.pricing .price-card .feature-list li {
display: flex;
align-items: center;
gap: 10px;
padding: 8px 0;
color: var(--default-color);
}

.pricing .price-card .feature-list li i {
color: var(--accent-color);
font-size: 18px;
}

.pricing .price-card .feature-list li.muted {
color: var(--muted);
}

.pricing .price-card .feature-list li.muted i {
color: var(--muted);
}

.pricing .price-card .cta {
margin-top: auto;
}

.pricing .price-card .cta .btn-choose {
border: 2px solid var(--accent-color);
color: var(--accent-color);
background: transparent;
font-weight: 700;
padding: 10px 16px;
border-radius: 10px;
transition: 0.3s;
}

.pricing .price-card .cta .btn-choose:hover {
background: var(--accent-color);
color: var(--contrast-color);
}

.pricing .pricing-toggle-container~.row .price-card .price-monthly {
display: inline-flex;
}

.pricing .pricing-toggle-container~.row .price-card .price-yearly {
display: none;
}

@supports (selector(:has(*))) {
.pricing .pricing-toggle-container:has(.switch input:checked)~.row .price-card .price-monthly {
display: none;
}

.pricing .pricing-toggle-container:has(.switch input:checked)~.row .price-card .price-yearly {
display: inline-flex;
}

.pricing .pricing-toggle-container:has(.switch input:checked)~.row .pricing-toggle .monthly {
opacity: 0.6;
}

.pricing .pricing-toggle-container:has(.switch input:checked)~.row .pricing-toggle .yearly {
opacity: 1;
color: var(--heading-color);
}
}

@supports not (selector(:has(*))) {
.pricing .pricing-toggle-container .yearly::after {
content: " ";
}
}

@media (max-width: 992px) {
        .navmenu a.button{
            width: auto;
        padding: 10px !important;
        padding-bottom: 0 !important;
        justify-content: center;
        }
    .header{
        background-color: #fff;
    }
.header .branding .container{
    border-radius: 0;
}
.pricing .price-card .card-head .price-wrap .price.price-monthly,
.pricing .price-card .card-head .price-wrap .price.price-yearly {
font-size: 36px;
}

.pricing .price-card .card-head .price-wrap .price sup {
font-size: 16px;
}
}

@media (max-width: 576px) {
    
.pricing .price-card {
padding: 22px;
}

.pricing .pricing-toggle-container .pricing-toggle {
gap: 10px;
}
}

.pricing-boder {border:solid 5px #122fad!important; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);}
.pricing-box:hover {transform: translateY(-10px);box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); box-shadow:0 15px 30px rgba(0, 0, 0, 0.1);}
.pricing-box {transition: all 0.4s; border:1px solid #318f8c }


/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-item {
margin-bottom: 0;
border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq .faq-item:last-child {
border-bottom: none;
}

.faq .faq-item.faq-active .faq-header .faq-number {
color: var(--accent-color);
font-weight: 500;
}

.faq .faq-item.faq-active .faq-header h4 {
color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-header .faq-toggle {
color: var(--accent-color);
transform: rotate(0deg);
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {
opacity: 0;
transform: rotate(90deg);
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {
opacity: 1;
transform: rotate(0deg);
}

.faq .faq-item.faq-active .faq-content {
grid-template-rows: 1fr;
visibility: visible;
opacity: 1;
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {
opacity: 1;
transform: rotate(0deg);
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {
opacity: 0;
transform: rotate(-90deg);
}

.faq .faq-item .faq-header {
display: flex;
align-items: center;
padding: 40px 0;
cursor: pointer;
gap: 0;
transition: all 0.3s ease;
}

.faq .faq-item .faq-header:hover .faq-number {
transform: scale(1.1);
}

.faq .faq-item .faq-header:hover .faq-toggle {
transform: scale(1.1);
}

.faq .faq-item .faq-header .faq-number {
flex-shrink: 0;
width: 80px;
font-family: var(--heading-font);
font-size: 1.1rem;
font-weight: 300;
color: color-mix(in srgb, var(--default-color), transparent 50%);
transition: all 0.3s ease;
letter-spacing: -0.02em;
}

.faq .faq-item .faq-header h4 {
flex: 1;
margin: 0;
font-family: var(--heading-font);
font-size: 1.25rem;
font-weight: 300;
color: var(--heading-color);
transition: all 0.3s ease;
line-height: 1.5;
letter-spacing: -0.01em;
margin-inline-end: 20px;
}

.faq .faq-item .faq-header .faq-toggle {
flex-shrink: 0;
width: 24px;
height: 24px;
display: flex;
align-items: center;
justify-content: center;
color: color-mix(in srgb, var(--default-color), transparent 40%);
font-size: 18px;
transition: all 0.3s ease;
position: relative;
}

.faq .faq-item .faq-header .faq-toggle i {
position: absolute;
transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq .faq-item .faq-content {
display: grid;
grid-template-rows: 0fr;
transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
visibility: hidden;
opacity: 0;
}

.faq .faq-item .faq-content .content-inner {
padding: 0 80px 40px 80px;
overflow: hidden;
}

.faq .faq-item .faq-content .content-inner p {
margin: 0;
color: color-mix(in srgb, var(--default-color), transparent 25%);
line-height: 1.8;
font-size: 1rem;
font-weight: 300;
}

@media (max-width: 768px) {
.faq .faq-item .faq-header {
padding: 30px 0;
}

.faq .faq-item .faq-header .faq-number {
width: 60px;
font-size: 1rem;
}

.faq .faq-item .faq-header h4 {
font-size: 1.1rem;
margin-inline-end: 15px;
}

.faq .faq-item .faq-header .faq-toggle {
width: 20px;
height: 20px;
font-size: 16px;
}

.faq .faq-item .faq-content .content-inner {
padding: 0 60px 30px 60px;
}

.faq .faq-item .faq-content .content-inner p {
font-size: 0.95rem;
}
}

@media (max-width: 576px) {
.faq .faq-item .faq-header {
padding: 25px 0;
}

.faq .faq-item .faq-header .faq-number {
width: 50px;
font-size: 0.9rem;
}

.faq .faq-item .faq-header h4 {
font-size: 1rem;
margin-inline-end: 10px;
}

.faq .faq-item .faq-content .content-inner {
padding: 0 50px 25px 50px;
}

.faq .faq-item .faq-content .content-inner p {
font-size: 0.9rem;
}
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.maps-contact iframe{
	width: 100%;
	height: 450px;
}
.brand-section .swiper-slide{display: block;}
.brand-section .swiper-slide .clint-logo img{height: 150px; width: 100%;}
.client-section .swiper-slide{display: block;}
.client-section .swiper-slide .clint-logo img{height: 150px; width: 100%;}
.maps iframe{width: 100%; height: 400px;}
.contact .contact-form-container {
padding: 60px 0;
}

.contact .contact-form-container .form-intro {
margin-bottom: 60px;
}

.contact .contact-form-container .form-intro h2 {
font-size: 36px;
font-weight: 300;
line-height: 1.3;
margin-bottom: 20px;
color: var(--heading-color);
letter-spacing: -0.5px;
}

@media (max-width: 768px) {
.contact .contact-form-container .form-intro h2 {
font-size: 28px;
}
}

.contact .contact-form-container .form-intro p {
font-size: 18px;
line-height: 1.7;
color: var(--default-color);
margin-bottom: 0;
opacity: 0.85;
}

.contact .contact-form-container .contact-form .row {
margin-bottom: 40px;
}

.contact .contact-form-container .contact-form .row:last-of-type {
margin-bottom: 0;
}

.contact .contact-form-container .contact-form .form-field {
position: relative;
margin-bottom: 40px;
}

.contact .contact-form-container .contact-form .form-field.message-field {
margin-bottom: 50px;
}

.contact .contact-form-container .contact-form .form-field .field-label {
position: absolute;
top: -10px;
left: 0;
font-size: 13px;
font-weight: 500;
color: var(--heading-color);
letter-spacing: 0.5px;
text-transform: uppercase;
opacity: 0.8;
}

.contact .contact-form-container .contact-form .form-field .form-input {
width: 100%;
border: none;
border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
background: transparent;
padding: 20px 0 15px 0;
font-size: 16px;
color: var(--default-color);
transition: all 0.3s ease;
}

.contact .contact-form-container .contact-form .form-field .form-input:focus {
outline: none;
border-bottom-color: var(--accent-color);
background: transparent;
}

.contact .contact-form-container .contact-form .form-field .form-input::placeholder {
color: color-mix(in srgb, var(--default-color), transparent 60%);
opacity: 1;
}

.contact .contact-form-container .contact-form .form-field .message-input {
resize: vertical;
min-height: 120px;
font-family: inherit;
padding-top: 25px;
}

.contact .contact-form-container .contact-form .send-button {
background: transparent;
border: 1px solid var(--accent-color);
color: var(--accent-color);
padding: 18px 40px;
font-size: 14px;
font-weight: 500;
letter-spacing: 1px;
text-transform: uppercase;
display: inline-flex;
align-items: center;
gap: 15px;
transition: all 0.3s ease;
cursor: pointer;
}

.contact .contact-form-container .contact-form .send-button .button-arrow {
font-size: 18px;
transition: transform 0.3s ease;
}

.contact .contact-form-container .contact-form .send-button:hover {
background: var(--accent-color);
color: var(--contrast-color);
}

.contact .contact-form-container .contact-form .send-button:hover .button-arrow {
transform: translateX(5px);
}

.contact .contact-sidebar {
background: color-mix(in srgb, var(--accent-color), transparent 97%);
height: 100%;
padding: 60px 40px;
}

.contact .contact-sidebar .contact-header {
margin-bottom: 60px;
}

.contact .contact-sidebar .contact-header h3 {
font-size: 28px;
font-weight: 300;
margin-bottom: 20px;
color: var(--heading-color);
letter-spacing: -0.3px;
}

.contact .contact-sidebar .contact-header p {
font-size: 16px;
line-height: 1.7;
color: var(--default-color);
margin-bottom: 0;
opacity: 0.85;
}

.contact .contact-sidebar .contact-methods {
margin-bottom: 60px;
}

.contact .contact-sidebar .contact-method {
display: flex;
align-items: flex-start;
gap: 20px;
margin-bottom: 40px;
}

.contact .contact-sidebar .contact-method:last-child {
margin-bottom: 0;
}

.contact .contact-sidebar .contact-method .contact-icon {
width: 40px;
height: 40px;
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
color: var(--accent-color);
}

.contact .contact-sidebar .contact-method .contact-icon i {
font-size: 20px;
}

.contact .contact-sidebar .contact-method .contact-details {
flex: 1;
}

.contact .contact-sidebar .contact-method .contact-details .method-label {
font-size: 12px;
font-weight: 600;
color: var(--accent-color);
letter-spacing: 1px;
text-transform: uppercase;
display: block;
margin-bottom: 8px;
}

.contact .contact-sidebar .contact-method .contact-details p {
font-size: 15px;
line-height: 1.6;
color: var(--default-color);
margin-bottom: 0;
}

.contact .contact-sidebar .connect-section {
border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
padding-top: 40px;
}

.contact .contact-sidebar .connect-section .connect-label {
font-size: 12px;
font-weight: 600;
color: var(--accent-color);
letter-spacing: 1px;
text-transform: uppercase;
display: block;
margin-bottom: 20px;
}

.contact .contact-sidebar .connect-section .social-links {
display: flex;
gap: 15px;
}

.contact .contact-sidebar .connect-section .social-links .social-link {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
color: var(--default-color);
text-decoration: none;
transition: all 0.3s ease;
}

.contact .contact-sidebar .connect-section .social-links .social-link i {
font-size: 16px;
}

.contact .contact-sidebar .connect-section .social-links .social-link:hover {
color: var(--accent-color);
transform: translateY(-2px);
}

@media (max-width: 992px) {
.contact .contact-form-container {
padding: 40px 0;
}

.contact .contact-sidebar {
padding: 40px 30px;
margin-bottom: 40px;
}
}

@media (max-width: 768px) {
.contact .contact-form-container .form-intro {
margin-bottom: 40px;
text-align: center;
}

.contact .contact-form-container .contact-form .row {
margin-bottom: 20px;
}

.contact .contact-form-container .contact-form .form-field {
margin-bottom: 30px;
}

.contact .contact-sidebar {
padding: 30px 25px;
}

.contact .contact-sidebar .contact-header,
.contact .contact-sidebar .contact-methods {
margin-bottom: 40px;
}

.contact .contact-sidebar .contact-method {
margin-bottom: 30px;
}
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details {
padding: 80px 0;
}

.service-details .service-intro {
text-align: center;
margin-bottom: 80px;
}

.service-details .service-intro .service-badge {
margin-bottom: 24px;
}

.service-details .service-intro .service-badge span {
display: inline-block;
padding: 8px 24px;
background: color-mix(in srgb, var(--accent-color), transparent 92%);
color: var(--accent-color);
font-size: 14px;
font-weight: 500;
letter-spacing: 1px;
text-transform: uppercase;
}

.service-details .service-intro h1 {
font-size: 3.5rem;
font-weight: 300;
line-height: 1.2;
margin-bottom: 32px;
color: var(--heading-color);
letter-spacing: -0.02em;
}

@media (max-width: 768px) {
.service-details .service-intro h1 {
font-size: 2.5rem;
}
}

.service-details .service-intro .lead {
font-size: 1.25rem;
line-height: 1.7;
color: color-mix(in srgb, var(--default-color), transparent 30%);
font-weight: 300;
max-width: 600px;
margin: 0 auto;
}

@media (max-width: 768px) {
.service-details .service-intro .lead {
font-size: 1.1rem;
}
}

.service-details .service-content {
margin-bottom: 80px;
}

.service-details .visual-section {
margin-bottom: 80px;
}

.service-details .visual-section .service-image img {
width: 100%;
height: 400px;
object-fit: cover;
}

.service-details .visual-section .service-text {
padding-inline-start: 40px;
}

@media (max-width: 992px) {
.service-details .visual-section .service-text {
padding-inline-start: 0;
margin-top: 40px;
}
}

.service-details .visual-section .service-text h2 {
font-size: 2.25rem;
font-weight: 300;
line-height: 1.3;
margin-bottom: 24px;
color: var(--heading-color);
letter-spacing: -0.01em;
}

@media (max-width: 768px) {
.service-details .visual-section .service-text h2 {
font-size: 1.8rem;
}
}

.service-details .visual-section .service-text p {
font-size: 1.1rem;
line-height: 1.8;
color: var(--default-color);
margin-bottom: 20px;
}

.service-details .visual-section .service-text p:last-child {
margin-bottom: 0;
}

.service-details .features-section {
margin-bottom: 80px;
padding: 60px 0;
background: color-mix(in srgb, var(--default-color), transparent 97%);
}

.service-details .features-section .feature-item {
text-align: center;
padding: 0 20px;
}

.service-details .features-section .feature-item .feature-icon {
width: 64px;
height: 64px;
margin: 0 auto 24px;
display: flex;
align-items: center;
justify-content: center;
}

.service-details .features-section .feature-item .feature-icon i {
font-size: 2rem;
color: var(--accent-color);
}

.service-details .features-section .feature-item h4 {
font-size: 1.1rem;
font-weight: 500;
margin-bottom: 16px;
color: var(--heading-color);
}

.service-details .features-section .feature-item p {
font-size: 1rem;
line-height: 1.6;
color: color-mix(in srgb, var(--default-color), transparent 30%);
margin: 0;
}

.service-details .process-section {
margin-bottom: 80px;
}

.service-details .process-section .process-info {
padding-inline-end: 40px;
}

@media (max-width: 992px) {
.service-details .process-section .process-info {
padding-inline-end: 0;
margin-bottom: 40px;
}
}

.service-details .process-section .process-info h3 {
font-size: 2rem;
font-weight: 300;
line-height: 1.3;
margin-bottom: 24px;
color: var(--heading-color);
letter-spacing: -0.01em;
}

@media (max-width: 768px) {
.service-details .process-section .process-info h3 {
font-size: 1.6rem;
}
}

.service-details .process-section .process-info p {
font-size: 1.1rem;
line-height: 1.7;
color: var(--default-color);
margin: 0;
}

.service-details .process-section .process-steps .step {
display: flex;
gap: 24px;
margin-bottom: 32px;
}

.service-details .process-section .process-steps .step:last-child {
margin-bottom: 0;
}

.service-details .process-section .process-steps .step .step-number {
min-width: 48px;
height: 48px;
display: flex;
align-items: center;
justify-content: center;
background: var(--accent-color);
color: var(--contrast-color);
font-size: 14px;
font-weight: 500;
}

.service-details .process-section .process-steps .step .step-content h5 {
font-size: 1.1rem;
font-weight: 500;
margin-bottom: 8px;
color: var(--heading-color);
}

.service-details .process-section .process-steps .step .step-content p {
font-size: 0.95rem;
line-height: 1.6;
color: color-mix(in srgb, var(--default-color), transparent 20%);
margin: 0;
}

.service-details .info-grid .info-card {
height: 100%;
border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
padding: 32px;
}

.service-details .info-grid .info-card .info-header {
margin-bottom: 24px;
}

.service-details .info-grid .info-card .info-header h4 {
font-size: 1.25rem;
font-weight: 500;
margin-bottom: 8px;
color: var(--heading-color);
}

.service-details .info-grid .info-card .info-header p {
font-size: 0.95rem;
line-height: 1.5;
color: color-mix(in srgb, var(--default-color), transparent 30%);
margin: 0;
}

.service-details .info-grid .info-card .info-content .price-range {
text-align: center;
margin-bottom: 24px;
padding-bottom: 24px;
border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .info-grid .info-card .info-content .price-range .price-label {
display: block;
font-size: 0.85rem;
color: color-mix(in srgb, var(--default-color), transparent 40%);
margin-bottom: 8px;
text-transform: uppercase;
letter-spacing: 1px;
}

.service-details .info-grid .info-card .info-content .price-range .price-value {
font-size: 2.5rem;
font-weight: 300;
color: var(--accent-color);
display: block;
}

.service-details .info-grid .info-card .info-content .info-list {
list-style: none;
padding: 0;
margin: 0;
}

.service-details .info-grid .info-card .info-content .info-list li {
font-size: 0.95rem;
color: var(--default-color);
margin-bottom: 12px;
position: relative;
padding-inline-start: 20px;
}

.service-details .info-grid .info-card .info-content .info-list li:last-child {
margin-bottom: 0;
}

.service-details .info-grid .info-card .info-content .info-list li::before {
content: "•";
position: absolute;
left: 0;
color: var(--accent-color);
}

.service-details .info-grid .info-card .testimonial-content p {
font-size: 1.05rem;
line-height: 1.7;
color: var(--default-color);
margin-bottom: 24px;
font-style: italic;
}

.service-details .info-grid .info-card .testimonial-content .testimonial-author {
display: flex;
align-items: center;
gap: 16px;
}

.service-details .info-grid .info-card .testimonial-content .testimonial-author .author-image {
width: 48px;
height: 48px;
object-fit: cover;
}

.service-details .info-grid .info-card .testimonial-content .testimonial-author .author-info h6 {
font-size: 1rem;
font-weight: 500;
margin-bottom: 4px;
color: var(--heading-color);
}

.service-details .info-grid .info-card .testimonial-content .testimonial-author .author-info span {
font-size: 0.9rem;
color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.service-details .info-grid .info-card .service-form .form-field {
margin-bottom: 16px;
}

.service-details .info-grid .info-card .service-form input[type=text],
.service-details .info-grid .info-card .service-form input[type=email],
.service-details .info-grid .info-card .service-form input[type=tel],
.service-details .info-grid .info-card .service-form textarea {
width: 100%;
padding: 12px 16px;
border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
font-size: 14px;
background-color: var(--surface-color);
color: var(--default-color);
transition: border-color 0.3s ease;
}

.service-details .info-grid .info-card .service-form input[type=text]:focus,
.service-details .info-grid .info-card .service-form input[type=email]:focus,
.service-details .info-grid .info-card .service-form input[type=tel]:focus,
.service-details .info-grid .info-card .service-form textarea:focus {
outline: none;
border-color: var(--accent-color);
}

.service-details .info-grid .info-card .service-form input[type=text]::placeholder,
.service-details .info-grid .info-card .service-form input[type=email]::placeholder,
.service-details .info-grid .info-card .service-form input[type=tel]::placeholder,
.service-details .info-grid .info-card .service-form textarea::placeholder {
color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.service-details .info-grid .info-card .service-form .submit-btn {
background: var(--accent-color);
color: var(--contrast-color);
border: none;
padding: 12px 24px;
font-size: 0.95rem;
font-weight: 500;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
transition: all 0.3s ease;
margin-top: 8px;
}

.service-details .info-grid .info-card .service-form .submit-btn:hover {
background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.service-details .info-grid .info-card .service-form .submit-btn i {
font-size: 0.85rem;
}

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

.service-details .service-intro {
margin-bottom: 60px;
}

.service-details .service-content {
margin-bottom: 60px;
}

.service-details .visual-section,
.service-details .features-section,
.service-details .process-section {
margin-bottom: 60px;
}

.service-details .features-section .row>div {
margin-bottom: 40px;
}

.service-details .features-section .row>div:last-child {
margin-bottom: 0;
}

.service-details .info-grid .row>div {
margin-bottom: 32px;
}

.service-details .info-grid .row>div:last-child {
margin-bottom: 0;
}
}

.service-hover { position:relative}
.service-hover i { position:absolute; top:0;inset-inline-end:0;inset-inline-start:0; margin:0 auto;  font-size:35px; z-index:999; width:35px; height:35px; top:37%; color:#fff;  opacity:0; transition: opacity 0.5s ease-in-out}
.service-hover:hover i {opacity:1; transition: all 0.4s ease-in-out;}
.service-hover a {color:#000;font-size: 18px;}
.service-hover a img{ height: 350px; width: 100%;}
.product-se .service-hover a img{height: 250px;}

/* Product Cards */
.product-card {
  height: 100%;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(18, 47, 173, 0.12);
}
.product-card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.product-card-image {
  overflow: hidden;
}
.product-card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.product-card:hover .product-card-image img {
  transform: scale(1.05);
}
.product-card-body {
  padding: 20px;
}
.product-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #1A237E;
  margin-bottom: 10px;
  line-height: 1.4;
}
.product-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details {
--section-spacing: 5rem;
--content-spacing: 4rem;
--subtle-border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.portfolio-details .project-hero {
margin-bottom: var(--section-spacing);
}

.portfolio-details .project-hero .hero-content {
text-align: center;
max-width: 800px;
margin: 0 auto 3rem;
}

.portfolio-details .project-hero .hero-content .project-category {
font-size: 0.85rem;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--accent-color);
margin-bottom: 1rem;
font-weight: 500;
}

.portfolio-details .project-hero .hero-content .project-title {
font-size: 3.5rem;
font-weight: 300;
line-height: 1.2;
margin-bottom: 1.5rem;
color: var(--heading-color);
letter-spacing: -0.02em;
}

.portfolio-details .project-hero .hero-content .project-subtitle {
font-size: 1.125rem;
line-height: 1.7;
color: color-mix(in srgb, var(--default-color), transparent 25%);
font-weight: 400;
margin-bottom: 0;
}

.portfolio-details .project-hero .project-meta-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
padding-top: 3rem;
border-top: var(--subtle-border);
}

.portfolio-details .project-hero .project-meta-grid .meta-column {
text-align: center;
}

.portfolio-details .project-hero .project-meta-grid .meta-column .meta-label {
font-size: 0.8rem;
text-transform: uppercase;
letter-spacing: 0.1em;
color: color-mix(in srgb, var(--default-color), transparent 50%);
margin-bottom: 0.5rem;
}

.portfolio-details .project-hero .project-meta-grid .meta-column .meta-value {
font-size: 1rem;
font-weight: 500;
color: var(--heading-color);
}

.portfolio-details .visual-showcase {
margin-bottom: var(--section-spacing);
}

.portfolio-details .visual-showcase .main-visual {
border-radius: 8px;
overflow: hidden;
}

.portfolio-details .visual-showcase .main-visual .swiper-wrapper {
height: auto !important;
}

.portfolio-details .visual-showcase .main-visual .swiper-slide img {}

.portfolio-details .visual-showcase .main-visual .swiper-button-next,
.portfolio-details .visual-showcase .main-visual .swiper-button-prev {
width: 50px;
height: 50px;
background-color: color-mix(in srgb, var(--contrast-color), transparent 10%);
border-radius: 50%;
color: var(--heading-color);
font-size: 1.2rem;
font-weight: 600;
transition: all 0.3s ease;
}

.portfolio-details .visual-showcase .main-visual .swiper-button-next::after,
.portfolio-details .visual-showcase .main-visual .swiper-button-prev::after {
font-size: 1rem;
font-weight: 600;
}

.portfolio-details .visual-showcase .main-visual .swiper-button-next:hover,
.portfolio-details .visual-showcase .main-visual .swiper-button-prev:hover {
background-color: var(--accent-color);
color: var(--contrast-color);
transform: scale(1.1);
}

.portfolio-details .visual-showcase .main-visual .swiper-button-prev {
left: 30px;
}

.portfolio-details .visual-showcase .main-visual .swiper-button-next {
right: 30px;
}

.portfolio-details .content-section {
margin-bottom: var(--section-spacing);
}

.portfolio-details .content-section .project-overview {
text-align: center;
}

.portfolio-details .content-section .project-overview h2 {
font-size: 2.75rem;
font-weight: 300;
margin-bottom: 2rem;
color: var(--heading-color);
letter-spacing: -0.02em;
}

.portfolio-details .content-section .project-overview .overview-text {
font-size: 1.125rem;
line-height: 1.8;
color: color-mix(in srgb, var(--default-color), transparent 15%);
margin-bottom: 4rem;
}

.portfolio-details .content-section .project-overview .challenge-solution {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
text-align: left;
}

.portfolio-details .content-section .project-overview .challenge-solution .challenge-block h3,
.portfolio-details .content-section .project-overview .challenge-solution .solution-block h3 {
font-size: 1.5rem;
font-weight: 400;
margin-bottom: 1rem;
color: var(--heading-color);
}

.portfolio-details .content-section .project-overview .challenge-solution .challenge-block p,
.portfolio-details .content-section .project-overview .challenge-solution .solution-block p {
color: color-mix(in srgb, var(--default-color), transparent 25%);
line-height: 1.7;
}

.portfolio-details .metrics-showcase {
padding: 4rem 0;
background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
margin: var(--section-spacing) -15px;
border-radius: 8px;
}

.portfolio-details .metrics-showcase .metrics-content h3 {
font-size: 2.25rem;
font-weight: 300;
margin-bottom: 1rem;
color: var(--heading-color);
}

.portfolio-details .metrics-showcase .metrics-content p {
font-size: 1rem;
color: color-mix(in srgb, var(--default-color), transparent 25%);
line-height: 1.7;
}

.portfolio-details .metrics-showcase .metrics-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
}

.portfolio-details .metrics-showcase .metrics-grid .metric-item {
text-align: center;
padding: 1.5rem;
}

.portfolio-details .metrics-showcase .metrics-grid .metric-item .metric-number {
font-size: 2.5rem;
font-weight: 300;
color: var(--accent-color);
margin-bottom: 0.5rem;
line-height: 1;
}

.portfolio-details .metrics-showcase .metrics-grid .metric-item .metric-label {
font-size: 0.9rem;
color: color-mix(in srgb, var(--default-color), transparent 40%);
line-height: 1.4;
}

.portfolio-details .technology-stack {
margin-bottom: var(--section-spacing);
padding-top: 3rem;
border-top: var(--subtle-border);
}

.portfolio-details .technology-stack h3 {
font-size: 1.5rem;
font-weight: 400;
color: var(--heading-color);
margin-bottom: 0;
}

.portfolio-details .technology-stack .tech-categories {
display: flex;
flex-direction: column;
gap: 2rem;
}

.portfolio-details .technology-stack .tech-categories .tech-category .category-title {
font-size: 1rem;
font-weight: 500;
color: var(--heading-color);
margin-bottom: 1rem;
}

.portfolio-details .technology-stack .tech-categories .tech-category .tech-list {
display: flex;
flex-wrap: wrap;
gap: 0.75rem;
}

.portfolio-details .technology-stack .tech-categories .tech-category .tech-list .tech-item {
padding: 0.5rem 1rem;
background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
color: var(--accent-color);
border-radius: 20px;
font-size: 0.85rem;
font-weight: 500;
transition: all 0.3s ease;
}

.portfolio-details .technology-stack .tech-categories .tech-category .tech-list .tech-item:hover {
background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
transform: translateY(-2px);
}

.portfolio-details .process-gallery {
margin-bottom: var(--section-spacing);
}

.portfolio-details .process-gallery h3 {
font-size: 2.25rem;
font-weight: 300;
text-align: center;
margin-bottom: 3rem;
color: var(--heading-color);
}

.portfolio-details .process-gallery .gallery-masonry {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1.5rem;
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item {
position: relative;
border-radius: 8px;
overflow: hidden;
transition: all 0.4s ease;
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item.large {
grid-row: span 2;
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: all 0.5s ease;
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item .gallery-caption {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
color: white;
padding: 2rem 1.5rem 1.5rem;
font-weight: 500;
transform: translateY(100%);
transition: all 0.3s ease;
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item:hover {
transform: translateY(-5px);
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item:hover img {
transform: scale(1.05);
}

.portfolio-details .process-gallery .gallery-masonry .gallery-item:hover .gallery-caption {
transform: translateY(0);
}

.portfolio-details .key-features-section {
margin-bottom: var(--section-spacing);
}

.portfolio-details .key-features-section .features-intro {
padding-inline-end: 2rem;
}

.portfolio-details .key-features-section .features-intro h3 {
font-size: 2.25rem;
font-weight: 300;
margin-bottom: 1rem;
color: var(--heading-color);
}

.portfolio-details .key-features-section .features-intro p {
color: color-mix(in srgb, var(--default-color), transparent 25%);
line-height: 1.7;
}

.portfolio-details .key-features-section .features-list .feature-row {
display: flex;
align-items: flex-start;
gap: 1.5rem;
margin-bottom: 2.5rem;
}

.portfolio-details .key-features-section .features-list .feature-row:last-child {
margin-bottom: 0;
}

.portfolio-details .key-features-section .features-list .feature-row .feature-icon {
width: 50px;
height: 50px;
border-radius: 50%;
background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.portfolio-details .key-features-section .features-list .feature-row .feature-icon i {
font-size: 1.2rem;
color: var(--accent-color);
}

.portfolio-details .key-features-section .features-list .feature-row .feature-content h4 {
font-size: 1.25rem;
font-weight: 500;
margin-bottom: 0.5rem;
color: var(--heading-color);
}

.portfolio-details .key-features-section .features-list .feature-row .feature-content p {
color: color-mix(in srgb, var(--default-color), transparent 25%);
line-height: 1.7;
margin-bottom: 0;
}

.portfolio-details .project-footer {
padding-top: 3rem;
border-top: var(--subtle-border);
}

.portfolio-details .project-footer .footer-navigation {
display: flex;
justify-content: space-between;
align-items: center;
}

.portfolio-details .project-footer .footer-navigation .nav-link {
display: flex;
flex-direction: column;
text-decoration: none;
transition: all 0.3s ease;
}

.portfolio-details .project-footer .footer-navigation .nav-link.prev-project,
.portfolio-details .project-footer .footer-navigation .nav-link.next-project {
color: var(--heading-color);
}

.portfolio-details .project-footer .footer-navigation .nav-link.prev-project .nav-direction,
.portfolio-details .project-footer .footer-navigation .nav-link.next-project .nav-direction {
font-size: 0.8rem;
text-transform: uppercase;
letter-spacing: 0.1em;
color: color-mix(in srgb, var(--default-color), transparent 50%);
margin-bottom: 0.25rem;
}

.portfolio-details .project-footer .footer-navigation .nav-link.prev-project .nav-title,
.portfolio-details .project-footer .footer-navigation .nav-link.next-project .nav-title {
font-size: 1.1rem;
font-weight: 500;
}

.portfolio-details .project-footer .footer-navigation .nav-link.prev-project:hover,
.portfolio-details .project-footer .footer-navigation .nav-link.next-project:hover {
color: var(--accent-color);
transform: translateY(-3px);
}

.portfolio-details .project-footer .footer-navigation .nav-link.next-project {
text-align: right;
}

.portfolio-details .project-footer .footer-navigation .nav-link.all-projects {
display: flex;
flex-direction: row;
align-items: center;
gap: 0.5rem;
padding: 0.75rem 1.5rem;
border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
border-radius: 25px;
color: var(--heading-color);
font-weight: 500;
transition: all 0.3s ease;
}

.portfolio-details .project-footer .footer-navigation .nav-link.all-projects i {
font-size: 1rem;
}

.portfolio-details .project-footer .footer-navigation .nav-link.all-projects:hover {
background-color: var(--accent-color);
border-color: var(--accent-color);
color: var(--contrast-color);
transform: translateY(-3px);
}

@media (max-width: 991px) {
.portfolio-details .project-hero .hero-content .project-title {
font-size: 3rem;
}

.portfolio-details .project-hero .project-meta-grid {
grid-template-columns: repeat(2, 1fr);
}

.portfolio-details .content-section .project-overview .challenge-solution {
grid-template-columns: 1fr;
gap: 3rem;
}

.portfolio-details .content-section .project-overview h2 {
font-size: 2.25rem;
}

.portfolio-details .metrics-showcase .metrics-grid {
grid-template-columns: 1fr;
gap: 1.5rem;
}

.portfolio-details .key-features-section .features-intro {
margin-bottom: 2rem;
padding-inline-end: 0;
}
}




/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
html, body {
position: relative;
height: 100%;
}
.swiper {
width: 100%;
height:90%;
}
.swiper-slide {font-size: 18px; display: flex;align-items: center;}

.swiper-slide  h4 { margin:0; padding:0;}
.swiper-content h3 {position: relative;display: inline-block;font-size: 14px;line-height: 1.2em;letter-spacing: 0.1em;text-transform: uppercase;padding-inline-start:16px;margin-bottom:10px;}
.swiper-content h3::before {content:'';position: absolute;left: 0;top: 50%;transform: translateY(-50%);width: 6px;height: 6px;background:#fff;}
.swiper-content h2 {font-size: clamp(2.1rem, 2.5vw, 4rem); font-weight:500;}
.swiper-content p {color:#fff} 

.fix-image img {height: 100%;width: 100%;-o-object-fit: cover;object-fit: cover;-webkit-transform-origin: left;transform-origin: left;}
.about-img-section {height:100%;}
.maission-section .about-img-section img{height: 400px;width: 100%;}
.maission-section:nth-of-type(odd) .row{flex-direction: row;}

.maission-section:nth-of-type(even) .row{flex-direction: row-reverse;}
.about-img-section .fix-image { overflow:hidden; border-radius: var(--bs-border-radius-xl)!important;}
.about-us-1 {width: 100%;}
.about-us-2 {position:relative;width:26%;z-index:1;}
.about-us-2 .about-us-image {margin-top:80px;margin-inline-start: -150px;}
.about-us-1 {border-radius: var(--bs-border-radius-xl) !important;overflow:hidden;}
.about-us-1 figure {border:9px solid #e4e4e4;border-radius:1rem;width: 100%;}
.about-us-1 figure img{height: 600px;}
.about-us-2 .about-us-image figure {border:9px solid #fff; border-radius: var(--bs-border-radius-xl) !important;}
.about-us {background-color:#d5d5d547;border-left: 10px solid #3949AB;border-radius:10px; padding:15px;}

.icon-box {position: relative;
background:#3949AB;border-radius: 5px;width:60px;height: 60px;display: flex;align-items: center;justify-content: center;overflow: hidden; color:#fff}

.about-us h4 { margin:0; padding:0 0 5px 0; font-size:20px}
.icon-box i { font-size:30px}

.list ul { margin:0 0 0 20px; padding:0}
.list li { margin:0; padding:0; line-height:35px}

.video-icon .span-icon {
height: 46px; border:solid 2px #fff;
width: 46px; line-height:44px; text-align:center; margin:27% auto 0 auto;
background: var(--accent-color); color:#fff; display:inline-block;  border-radius:100px; position:absolute;inset-inline-start:0;inset-inline-end:0;}
.video-icon .span-icon:hover { background:#fff; color:#122fad}
.video-icon {padding:9px; background:#fff; border-radius:9px}

.bg-services { background:url(../img/bg-services.png) repeat center center;}
.services-section .col-md-3{margin-bottom: 20px;}
.services-title {
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px 20px;
}

.services-title h2, .services-title h3 {
font-size: 20px;
line-height: 1.4em; font-weight:600;
}
.subscribe-today i {font-size:25px!important} 



/*Our Pricing Plans*/
.watch-our-story {
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center 40.1475px; position:relative; padding:5% 0 5% 0;
}
.watch-our-story:before {
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color:#000;
opacity: 60%;
width: 100%;
height: 100%;
z-index: 1;
}  

.popular-tag {
background: var(--color-primary);
color: var(--color-white);
text-align: center;
position: absolute;
z-index: 1;
height: 40px;
top: 30px;
right: -79px;
width: 257px;
transform: rotate(45deg);
line-height: 37px;
}


/*Our Pricing Plans*/



/*testimonals*/
.testimonials {
background:url(../img/testimonials.jpg) no-repeat #f5f5f5;
background-position: bottom left;
background-size: auto;
min-height:500px;
} 
/*testimonals*/




/*pricing*/
.pricing-bg {background:url(../img/bg-price.jpg)  no-repeat top fixed; min-height:500px;} 

.pricing-box {background:#3949AB; backdrop-filter: blur(30px) saturate(100%);
-webkit-backdrop-filter: blur(30px) saturate(100%); border-radius: 10px; min-height:400px; padding:20px; overflow:hidden}

.badge2 {
font-size: 14px;height: 30px;
line-height: 30px;font-weight:400;
padding: 0px 14px;
border-radius: 4px;
display: inline-block;
background: var(--accent-color);
color:#fff;
text-transform: uppercase;
position: relative;
transition: var(--transition); border:0; margin-bottom:10px;
}

.pricing-box h2 sub {font-size:20px;bottom:0;  font-weight:300; font-size:15px;}
.pricing-box h2 {font-size: 44px; color: var(--white-color); font-weight:500}
.price-in {background: rgba(227, 209, 185, 0.2); padding:20px; border-radius: 10px;}
.pricing-text {padding:20px; border-radius:10px;}
.pricing-text ul { margin:10px 0 20px 20px; padding:0;}
.pricing-text li { margin:0; padding:0; line-height:35px;}
.pricing-btn a { display:block; width:100%}

.popular-tag {background:#122fad; color:var(--color-white);text-align: center;position: absolute;z-index: 1;height: 40px;top: 30px;right: -79px;width: 257px;transform: rotate(45deg);line-height: 37px;}

/*pricing*/

/*About*/
.inner-header { background: url(../img/banner_abstract_blue.png) no-repeat center center; 
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover; text-align:center; padding:190px 0 90px 0; position:relative
} 
.inner-header::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #000;
opacity: .6; width: 100%;height: 100%;z-index:1;} 
.inner-header h2 {font-size: 40px;font-weight: 800;text-transform: uppercase;}
.breadcrumb-item.active {color:#fff;}
.breadcrumb-item+.breadcrumb-item::before {color:#fff;}
/*About*/

.progress-bar {background-color:#122fad;}


/*our team*/
.our-team {background-color:#0D0D0D;}
/*our team*/
.row-flex {display: flex;flex-wrap: wrap;}
.content {height: 100%;}

/*what-we-do*/
.what-we-do {width:100%; background:#fff; padding:30px;border-radius: 10px; }
.what-we-do .icon-box {
position: relative;border-radius: 5px;
width: 60px;height: 60px;display: flex;align-items: center;justify-content: center;overflow: hidden;margin-bottom: 60px; background:#3949AB}
.faq-section {background:#f7eee8;border-radius:10px; border:solid 1px #e5dbd3}


/*FAQs*/
.our-faqs{padding: 100px 0;}
.our-faqs-content{display: flex;flex-direction: column;justify-content: space-between;gap: 30px;height: 100%;padding: 20px 0;}

.faq-contact-box-content p a:hover{
color: var(--accent-color);
}

.faq-accordion{
background: var(--secondary-color);
border-radius: 10px;
padding: 40px;
}

.faq-accordion .accordion-item{position: relative;background:#fff;border-radius: 10px; margin-bottom:20px;overflow: hidden;}

.faq-accordion .accordion-item:last-child{margin-bottom: 0;}
.faq-accordion .accordion-header .accordion-button{font-size: 20px;font-weight:600;padding: 20px 54px 20px 30px;}
.faq-accordion .accordion-item .accordion-button::after, 
.faq-accordion .accordion-item .accordion-button.collapsed::after{
content: '\F64D';
font-family: bootstrap-icons!important;
position: absolute;
right: 30px;
top: 50%;
font-size: 20px;
font-weight: 400;
transform: translateY(-50%);
color: var(--accent-color);
transition: all 0.4s ease-in-out;
}
.faq-accordion .accordion-button:not(.collapsed)::after{content: '\F2EA';}

.faq-accordion .accordion-item .accordion-body{
border-top: 1px solid #ededed;
background: transparent;
padding: 20px 30px;
}

.faq-accordion .accordion-item .accordion-body p{
margin: 0;
}
/*what-we-do*/


/*Blog*/
.blog-section img {width:100%;aspect-ratio: 1 / 1.064;object-fit: cover;border-radius: 10px;transition: all 0.6s ease-in-out;}
.pagination2  a {
text-decoration: none;
justify-content: center;
align-items: center;
color: var(--primary-color);
border-radius: 10px;
width: 40px;
height: 40px;
margin: 0 5px; padding:0; text-align:center;
font-weight: 600;
transition: all 0.3s ease-in-out; line-height:40px;
}
.page-item:first-child .page-link {border-radius:10px!important;}
.page-item:last-child .page-link {border-radius:10px!important;}
.post-tags {position: absolute;top: 40px;left: 40px;z-index:1;}
.post-tags a {background: var(--accent-color); color:#fff; padding:7px 10px; font-size:15px; border-radius: 5px; font-weight:600;}
.post-tags a:hover {background:#fff; color:#000}

.post-body p {font-size:15px}
.post-body h3 {font-size:20px}
.post-body a {color:#fff} 
.post-item-2 {position: absolute;right: 40px;bottom: 40px;left: 40px;z-index: 1;}
.post-item-2 h6 {color:#fff; font-size:16px; font-weight:800}
.post-item-2 h2 a {color:#fff;}
.post-item-2 h2 {color:#fff; font-size:20px; line-height:30px; margin-bottom:50px; font-weight:600}
.post-item-2 .read-more {color:#fff; font-size:16px; font-weight:600}

.blog-section::before {
content: '';position: absolute;top: 0;right: 0;bottom: 0;left: 0;
height: 100%;width: 100%; z-index: 1; background:rgba(0,0,0,.4)} 

.blog-section { position:relative; color:#fff}
.blog-section a {color:#fff; display:block; width:100%; height:100%;}
.blog-section a::before {content:'';position: absolute;top: 0;right: 0;bottom: 0;
left: 0;height: 100%;width: 100%;background:rgba(0,0,0,0.5);opacity:40%;z-index: 1;}

.blog-section img {transition: all .3s ease-in-out;}
.blog-section:hover img {transform: scale(1.2);}



.blog-bg {background:#f6f4f0; padding:20px; border:solid 1px #f7f7f7} 
.blog-bg ul { margin:0; padding:0}
.blog-bg li { margin:5px 0 5px 0; padding:5px 0 5px 0; font-weight:600; list-style:none}
.blog-bg li a {color:#172624}
.blog-bg li a:hover {color:#122fad}
.blog-img {position:relative}
.blog-img img {transition:transform 1s;}
.blog-img:hover img {transform:scale(1.1);}
.blog-img .bi-arrow-right::before{ padding-inline-start:0;   transition: padding 0.3s ease-in-out;}
.blog-img:hover .bi-arrow-right::before{ padding-inline-start:10px; transition: padding 0.3s ease-in-out;}
/*Blog*/
.img-h {aspect-ratio: 0 / 1.064!important;}


/*contact*/
.icon-css {
  position: relative;
  flex: 0 0 60px;
  background: var(--accent-color);
  border-radius: 5px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.contact ul {
  margin: 0;
  padding: 0;
}

.contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 0 0 30px 0;
  padding: 0 0 30px 0;
  list-style: none;
  border-bottom: solid 1px #ccc;
  position: relative;
}

.contact ul li > div:last-child {
  flex: 1 1 auto;
  min-width: 0;
}

.contact ul li h3,
.contact ul li h4 {
  margin: 0 0 6px 0;
  padding: 0;
  font-size: 20px;
  font-weight: 600;
}

.contact ul li i {
  font-size: 25px;
}

.contact ul li a {
  color: #000;
  word-break: break-word;
}

.contact ul li a:hover {
  color: #122fad;
}

.contact ul li p {
  margin-bottom: 0;
  word-break: break-word;
}

.contact-us {
  background-color: #184c56;
  border-radius: 10px;
  padding: 30px;
}

.contact-us .section-title h2,
.contact-section .section-title h2 {
  letter-spacing: normal;
}
/*contact*/


/*project*/
.project-item {display: flex;flex-wrap: wrap;gap:20px;background:#f5f5f5;border-radius: 10px;padding:20px;margin-bottom:20px;}
.no-css {
position: relative; background:#122fad; font-size:30px; font-weight:600;
border-radius:5px;width: 60px;height: 60px;display: flex;align-items: center;justify-content: center;overflow: hidden; 
color:#fff}
.list-css ul { margin:0; padding:0}
.list-css li { margin:0 0 15px 0; padding:0 0 0 25px; list-style:none; position:relative}
.list-css li h4 {position:relative; font-size:16px; padding:0; font-weight:600}
.list-css li::before  {left:0;inset-inline-end:0; z-index:1; content: '\F26A';font-family: bootstrap-icons!important;position: absolute;right: 30px; top:10px;font-size:16px;font-weight: 400;transform: translateY(-50%);color: var(--accent-color);transition: all 0.4s ease-in-out;}
/*project*/

.category-list {overflow:hidden; border-radius:10px; margin-bottom:60px; background:#fff; box-shadow: 0 15px 40px rgba(0,0,0,0.08);}
.category-list h3 {font-size:20px;background:#122fad;line-height:normal;padding: 20px 30px; font-weight:600; color:#fff; margin:0;}
.category-list ul { margin:0; padding:0;}
.category-list li {border-bottom: 1px dashed #ddd; padding:15px 15px; list-style:none; padding-inline-start:20px; padding-inline-end:20px}
.category-list li i { font-size:25px; vertical-align:middle; margin-inline-end:10px}
.category-list li a {color:#222}
.category-list li a:hover {color:#3949AB}
.category-list2 li:hover ::before  { transform: rotate(45deg);-webkit-animation:spin 4s linear infinite;-moz-animation:spin 4s linear infinite;animation:spin 4s linear infinite;}

.category-list li:last-child {border:0}

/*progress*/
.progress-bar {width:0;height:100%;transition: width 2s ease;}
.stat {font-size:24px; font-weight:500; margin-top:20px; margin-bottom:20px; line-height:45px}
/*progress*/


/*services-details*/
.services-list ul { margin:30px 0 0 0; padding:0}
.services-list li { margin:0; padding:0; list-style:none}
.service-product-item { margin-bottom: 60px; padding-bottom: 40px; border-bottom: 1px solid #e8eaf6; }
.service-product-item:last-of-type { border-bottom: 0; margin-bottom: 0; }
.product-pdf-action { margin-top: 30px; text-align: center; }
.product-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 2px solid #122fad;
  border-radius: 50px;
  background: #fff;
  color: #122fad;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.product-pdf-btn i { font-size: 20px; }
.product-pdf-btn:hover {
  background: #122fad;
  color: #fff;
  box-shadow: 0 8px 24px rgba(18, 47, 173, 0.25);
}
.service-brands-section {
  padding: 50px 30px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}
.service-brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  padding: 18px 20px;
  background: #f8f9ff;
  border: 1px solid #e8eaf6;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.service-brand-logo img {
  width: 100%;
  height: 90px;
  object-fit: contain;
}
.service-brand-logo:hover {
  transform: translateY(-4px);
  border-color: #122fad;
  box-shadow: 0 10px 24px rgba(18, 47, 173, 0.12);
}
body {overflow-x:hidden;}

/*image*/
.image-anime {position: relative;overflow: hidden;}
.image-anime:after {
content: "";
position: absolute;
width: 200%;
height: 0%;
left: 50%;
top: 50%;
background-color: rgba(255, 255, 255, .3);
transform: translate(-50%, -50%) rotate(-45deg);
z-index: 1;
}
.image-anime:hover:after {
height: 250%;
transition: all 600ms linear;
background-color: transparent;
}
.reveal {
position: relative;
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
visibility: hidden;
overflow: hidden;
}
.reveal img {
height: 100%;
width: 100%;
-o-object-fit: cover;
object-fit: cover;
-webkit-transform-origin: left;
transform-origin: left;
}
html[dir='rtl']{
	.fa-arrow-right{transform: rotate(176deg);}

	/* Contact section RTL */
	.contact-section .section-title,
	.contact-us .section-title {
		text-align: right;
	}

	.contact-us .form-control,
	.contact-us textarea {
		text-align: right;
	}

	.contact-us input[type="tel"],
	.contact-us input[dir="ltr"] {
		text-align: left;
		direction: ltr;
	}

	.contact ul li a[href^="tel:"],
	.contact ul li a[href^="mailto:"] {
		direction: ltr;
		unicode-bidi: isolate;
		display: inline-block;
	}

	.footer .footer-contact-list > li span[dir="ltr"] {
		direction: ltr;
		unicode-bidi: isolate;
		text-align: start;
	}
}

/* ===== Quick contact (floating / mobile bar) ===== */
.site-quick-contact {
  position: fixed;
  z-index: 1040;
  display: flex;
  align-items: stretch;
  gap: 0;
  inset-inline: 0;
  bottom: 0;
  background: #0f1638;
  box-shadow: 0 -6px 24px rgba(15, 22, 56, 0.28);
}

.site-quick-contact__btn {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 58px;
  padding: 8px 6px;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.12);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.site-quick-contact__btn:last-child {
  border-inline-end: 0;
}

.site-quick-contact__btn i {
  font-size: 18px;
  line-height: 1;
}

.site-quick-contact__btn span {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-quick-contact__btn--whatsapp { background: #128c7e; }
.site-quick-contact__btn--phone { background: #1a237e; }
.site-quick-contact__btn--contact { background: #24309a; }
.site-quick-contact__btn--email { background: #3342b0; }

.site-quick-contact__btn:hover,
.site-quick-contact__btn:focus-visible {
  filter: brightness(1.08);
  color: #fff !important;
}

@media (min-width: 992px) {
  .site-quick-contact {
    inset: auto 18px 24px auto;
    inset-inline-end: 18px;
    inset-inline-start: auto;
    bottom: 24px;
    flex-direction: column;
    width: 56px;
    background: transparent;
    box-shadow: none;
    gap: 10px;
  }

  html[dir="rtl"] .site-quick-contact {
    inset-inline-end: auto;
    inset-inline-start: 18px;
  }

  .site-quick-contact__btn {
    flex: 0 0 auto;
    width: 56px;
    min-height: 56px;
    padding: 0;
    border-radius: 14px;
    border-inline-end: 0;
    box-shadow: 0 8px 20px rgba(15, 22, 56, 0.22);
  }

  .site-quick-contact__btn span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .site-quick-contact__btn i {
    font-size: 22px;
  }

  .site-quick-contact__btn:hover {
    transform: translateY(-2px);
  }
}

/* Keep page content clear of the mobile contact bar */
@media (max-width: 991.98px) {
  body {
    padding-bottom: 58px;
  }
}
