/********** Template CSS **********/
:root {
    --bs-primary: #29539a;
    --bs-secondary: #06A3DA;
    --bs-body-color:#282828;
    --bs-light: #ced6e5;
    --bs-dark: #26344f;
    --bs-body-font-family:'Montserrat', sans-serif;
}

a {
    color: var(--bs-primary);
}
a:hover {
    color: var(--bs-secondary);
}
.bg-primary{
   background: var(--bs-primary) !important; 
}
.bg-light {
    background-color: rgb(227 237 247) !important;
}
/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--bs-primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

body {
    max-width: 100%;
    font-family: var(--bs-body-font-family);
    overflow-x: hidden;
    background: url(../img/bg-body.png) repeat;
}

.text-primary{

    color:var(--bs-primary) !important;
}

/*** Heading ***/
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 0.03em;
  
}
h1,
h2,
.fw-bold {
    font-weight: 500 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 400 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 400 !important;
}


/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.bt--bs-secondary {
    color: white;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.bt--bs-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--bs-secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}
.cta-btn {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    background: var(--bs-primary);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    overflow: hidden;
    text-decoration: none;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    text-transform: uppercase;
    font-size: 15px;
    font-family: var(--bs-body-font-family);
}
.cta-btn:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bs-secondary);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.cta-btn:hover, .cta-btn:focus, .cta-btn:active {
color:white;
}
.cta-btn:hover:before, .cta-btn:focus:before, .cta-btn:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
/***form***/
.form-floating>.form-control, .form-floating>.form-control-plaintext, .form-floating>.form-select {
    border: 1px solid var(--bs-primary) !important;
}
.form-control::placeholder {
    color: var(--bs-body-color) !important;
}

/***top-info***/
.top-info{
background-color:var(--bs-primary);
}
.dropdown-menu {
    --bs-dropdown-min-width: 1rem;
    --bs-dropdown-padding-y: 0;
}
.dropdown-item:focus, .dropdown-item:hover {
    color: white;
    background-color: var(--bs-primary) !important;
}

.social-media a {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.social-media a:hover {
    background: var(--bs-primary);
    color: white;
    transform: translateY(-4px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(247, 246, 244, 0.3);
    border-color: var(--accent-gold);
}
.top-info a:hover {
    text-decoration: none;
}
.top-info a {
    color: white;
    text-decoration: underline;
}
/********navbar**********/
.navbar{
transition:all .4s ease;
z-index:999;
}

.navbar.is-sticky{
position:fixed;
top:0;
left:0;
width:100%;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
animation:navbarFade .4s ease;
}

@keyframes navbarFade{
from{transform:translateY(-20px);opacity:0;}
to{transform:translateY(0);opacity:1;}
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: var(--bs-body-color);
    outline: none;
    transition: .5s;
    text-transform: uppercase;
    font-weight: 600;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
}
/* Gradient lines */
.navbar-light .navbar-nav .nav-link::after, .navbar-light .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #91b9f1, #3166ba);
    left: 0;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

/* Bottom line */
.navbar-light .navbar-nav .nav-link::after {
    bottom: 0;
    transform-origin: right;
}

/* Top line */
.navbar-light .navbar-nav .nav-link::before {
    top: 0;
    transform-origin: left;
}

/* Hover trigger */
.navbar-light .navbar-nav .nav-link:hover::after,
.navbar-light .navbar-nav .nav-link:hover::before,
.navbar-light .navbar-nav .nav-link.active::after,
.navbar-light .navbar-nav .nav-link.active::before {
    transform: scaleX(1);
}


.navbar-light .navbar-brand h1 {
    color: white;
}

.navbar-light .navbar-brand img {
    max-height: 110px;
    transition: .5s;
    object-fit: contain;
    padding: 3px 4px;
    background: white;
    border-radius: 3px;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 70px;
}
.nav-lang {
    color: var(--bs-body-color);
    font-weight: 500;
}
.nav-lang:hover{
color: var(--bs-primary);

}
 .social-mobile{
        display: none;
    }


/****************************************
                Hamburger 
*****************************************/
@media (max-width: 991px) {
    .main-logo {
        height: 45px;
        filter: contrast(1.1);
    }

    /* Hamburger Container */
    .custom-toggler {
        border: none;
        background: transparent;
        padding: 10px;
        outline: none;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    /* Hamburger Lines */
    .hamburger-icon {
        width: 28px;
        height: 2px;
        background-color: black;
        border-radius: 2px;
        position: relative;
        transition: all 0.4s ease;
    }

    .hamburger-icon::before,
    .hamburger-icon::after {
        content: '';
        position: absolute;
        width: 28px;
        height: 2px;
        background-color: black;
        border-radius: 2px;
        transition: all 0.4s ease;
    }

    .hamburger-icon::before { top: -8px; }
    .hamburger-icon::after { top: 8px; }

    /* Hover Effect */
    .custom-toggler:hover .hamburger-icon {
        transform: scale(1.1);
    }

    .custom-toggler:hover .hamburger-icon::before {
        width: 90%;
    }

    .custom-toggler:hover .hamburger-icon::after {
        width: 90%;
    }
    .navbar-toggler:not(.collapsed) .hamburger-icon {
        background: transparent;
    }

    .navbar-toggler:not(.collapsed) .hamburger-icon::before {
        transform: rotate(45deg) translate(5px, 5px);
        top: 0;
        width: 28px;
    }

    .navbar-toggler:not(.collapsed) .hamburger-icon::after {
        transform: rotate(-45deg) translate(5px, -5px);
        top: 0;
        width: 28px;
    }

    /* Offcanvas */
    .offcanvas {
        width: 85%;
        max-width: 320px;
        background: #111;
        border-left: none;
        box-shadow: -10px 0 40px rgba(0,0,0,0.05);
        transition: transform 0.4s ease;
    }

    .offcanvas-header {
        padding: 25px 20px;
        border-bottom: 1px solid white;
    }

    .offcanvas-title {
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        font-size: 1.2rem;
        color: white;
        letter-spacing: 1px;
    }

    .offcanvas-body {
        padding: 30px 20px;
    }

    .offcanvas .nav-link {
        font-family: 'Montserrat', sans-serif;
        font-size: 1rem;
        font-weight: 700;
        color: white;
        padding: 12px 0;
        display: block;
        transition: all 0.3s ease;
    }
.offcanvas .navbar-nav .nav-link {
    color: white;
    margin: 0 0 15px;
}

    .offcanvas .nav-link:hover,
    .offcanvas .nav-link.active {
      
        padding-left: 12px;
    }
  .social-mobile {
    padding: 20px 0 0;
    display: block;
    border-top: 1px solid white;
}

    /* Close button animation */
    .btn-close {
        position: relative;
        width: 36px;
        height: 36px;
        background-color: white;
        border-radius: 50%;
        transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .btn-close::before,
    .btn-close::after {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        width: 2px;
        height: 20px;
        background-color: black;
        border-radius: 1px;
        transform: translate(-50%, -50%) rotate(45deg);
        transition: all 0.3s ease;
    }

    .btn-close::after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .btn-close:hover {
        transform: rotate(90deg) scale(1.1);
    }
    .navbar-toggler:focus {
    box-shadow: none !important;
    }

    /* Language dropdown */
    .navbar-light .navbar-nav .nav-link::after,
    .navbar-light .navbar-nav .nav-link::before {
        display: none;
    }
nav.navbar {
    display: grid;
    grid-template-columns: 1fr auto auto;
    grid-gap: inherit!important;
}
button.navbar-toggler.custom-toggler {
    order: 3;
    margin: 0 0 0 auto;
}
}
@media (max-width: 450px) {
    nav.navbar {
    grid-gap: 10px !important;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
}
a.navbar-brand {
    margin: 0 auto 0;
    display: table;
    grid-column: 1 / 4;
    grid-row: 1;
    text-align: center;
}
button.navbar-toggler.custom-toggler {
    order: 3;
    grid-column: 3;
    grid-row: 2;
}
.nav-lang {
    grid-column: 1;
    grid-row: 2;
}
.is-sticky a.navbar-brand {
    display: none;
}
}
/*** Carousel ***/
.img-zoom-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: black;
}

.img-zoom-wrapper {

    position: relative;

    width: 100%;

    height: 100vh;

    overflow: hidden;

}

.img-zoom-wrapper img {

    height: 100vh;

    object-fit: cover;

    animation: kenburns 15s linear infinite alternate;

}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 29, 61, 0.2) 0%, rgba(0, 8, 20, 0.85) 100%);
    z-index: 1;
}


.hero-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(201, 153, 89, 0.2) 0.5px, transparent 0.5px);
    background-size: 25px 25px;
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    opacity: 0.6;
}



.hero-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

.carousel-indicators {
    bottom: 10px;
}
/* --- Responsive --- */
@media (max-width: 767px) {

.cta-btn {
    padding: 15px 12px;
    font-size: 14px;
}

}
/*****************************
  Counter
*****************************/

.counter-section {
    overflow: hidden;
    padding: 80px 0;
}

.tech-connect-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 1;
    opacity: 0.3;
    pointer-events: none;
}

.tech-connect-bg svg {
    width: 100%;
    animation: dash-move 20s linear infinite;
}

@keyframes dash-move {
    from { stroke-dashoffset: 1000; }
    to { stroke-dashoffset: 0; }
}

.premium-logic {
    position: relative;
    padding: 30px;
    transition: 0.5s;
    z-index: 2;
}

.counter-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.counter-number .timer {
    font-size: clamp(3rem, 10vw, 6.5rem);
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--bs-body-color);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-text-stroke-width: 1px;
    font-family: Lato, Arial, sans-serif;
}

.counter-number .suffix {
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--bs-primary);
    margin-left: 10px;
}

.counter-title {
    display: block;
    margin-top: 15px;
    font-size: clamp(0.7rem, 2vw, 0.85rem);
    font-weight: 800;
    letter-spacing: 4px;
    color: #6c757d;
    text-transform: uppercase;
    transition: 0.4s;
}

.premium-logic:hover .timer {
    color: #091E3E;
    -webkit-text-stroke: 1.5px transparent;
    transform: scale(1.05) translateY(-5px);
    text-shadow: 0 20px 40px rgba(9, 30, 62, 0.1);
}

.premium-logic:hover .counter-title {
    color: var(--bs-primary);
    letter-spacing: 6px;
}

@media (max-width: 991px) {
    .counter-section {
        padding: 60px 0;
    }
    .tech-connect-bg {
        opacity: 0.15;
    }
}

@media (max-width: 576px) {
    .premium-logic {
        padding: 20px 10px;
        margin-bottom: 30px;
    }
    .tech-connect-bg {
        display: none;
    }
    .counter-title {
    text-align: center;
}
}
/****main-services-grid***/
.main-services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 30px;
}

.main-services-grid.main-services-offset {
    margin-top: 100px; 
}

.main-services-card {
    position: relative;
    padding: 60px 40px;
    background: var(--bs-body-color);
    border: 2px solid var(--bs-primary);
    border-radius: 10px;
    height: 100%;
    transition: all 0.3s ease-in-out;
    z-index: 1;
    color: white;
}
.main-services-card .main-services-inner {
    overflow: hidden;
}

.main-services-card .main-services-icon {
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.main-services-card .main-services-bg-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.main-services-card .main-services-content .service-title {
    margin-bottom: 20px;
}

.main-services-card .main-services-links {
    opacity: 0;
    margin-top: 20px;
    margin-bottom: -70px;
    transition: all 0.3s ease-in-out;
}

/* --- Effets Hover --- */
.main-services-card:before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 0; bottom: 0;
    z-index: -1;
    margin: -3px;
    opacity: 0;
    border-radius: inherit;
    transition: all 0.3s ease-in-out;
    background: linear-gradient(130deg, #3663D8, #77BEFF, #00D1FF);
}

.main-services-card:hover:before {
    opacity: 1;
}

.main-services-card:hover .main-services-icon {
    margin-top: -70px;
    opacity: 0;
}

.main-services-card:hover .main-services-bg-icon {
    opacity: 0.2;
}

.main-services-card:hover .main-services-links {
    margin-bottom: 0;
    opacity: 1;
}
a.btn-arrow {
    color: white;
}
.btn-arrow:after {
    content: "";
    position: absolute;
    left: -4px;
    bottom: -4px;
    opacity: 1;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out;
    border-radius: 50px;
}

/* --- Responsive --- */
@media (max-width: 767px) {
    .main-services-card { padding: 40px 20px; }
    .main-services-grid.main-services-offset { margin-top: 50px; }
}
/*************about***************/

/* circle 1 */
.main-content::before, .main-services-section::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 0;
    width: 300px;
    height: 300px;
    background: hsl(218deg 58% 38% / 20%);
    border-radius: 50%;
    animation: floatCircle1 3s ease-in-out infinite alternate;
    z-index: -1;
}

.main-content::after, .main-services-section::after, .method-section:after {
    content: "";
    position: absolute;
    bottom: 150px;
    right: 0px;
    width: 200px;
    height: 200px;
    background: hsl(218deg 58% 38% / 20%);
    border-radius: 50%;
    animation: floatCircle2 5s ease-in-out infinite alternate;
    z-index: 0;
}

/* animation 1 */
@keyframes floatCircle1 {
  0% { transform: translateY(0px); }
  100% { transform: translateY(40px); }
}

/* animation 2 */
@keyframes floatCircle2 {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-30px); }
}
.main-content img {
  --s: 300px;  
  --b: 8px;    
  --g: 14px;    
  --c: var(--bs-primary);
  
  width: var(--s);
  aspect-ratio: 1;
  outline: calc(var(--s)/2) solid #0009;
  outline-offset: calc(var(--s)/-2);
  cursor: pointer;
  transition: .3s;
}
.main-content img:hover {
  outline: var(--b) solid var(--c);
  outline-offset: var(--g);
}

.main-content img + img {
  border-radius: 50%;
}
.titles-part a {
    text-decoration: none;
    background: var(--bs-primary) !important;
    color: white;
    transition: all 0.4s;
}
.titles-part a:hover {
    transform: scale(0.9);
}
/*****************************
  Marquee style
*****************************/
.marquee-section {
    background: var(--bs-dark);
    height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    width: 100%;
}

.marquee-track {
    display: flex;
    animation: luxury-scroll 40s linear infinite;
}

@keyframes luxury-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.marquee-group {
    display: flex;
    align-items: center;
    gap: 60px;
    padding-right: 60px;
}

.text-outline {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.5s;
    font-family: Lato, Arial, sans-serif;
}

.text-glow {
    font-size: clamp(3rem, 8vw, 6rem);
    color: #06A3DA;
    text-shadow: 0 0 15px rgba(6, 163, 218, 0.6);
    font-weight: 300;
}
.glass-lens {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255,255,255,0.02) 50%, 
        transparent 100%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 5;
    pointer-events: none;
    border-left: 1px solid rgba(6, 163, 218, 0.2);
    border-right: 1px solid rgba(6, 163, 218, 0.2);
}

/* Hover Effect */
.marquee-track:hover {
    animation-play-state: paused;
}

.text-outline:hover {
    -webkit-text-stroke: 1.5px white;
    opacity: 1;
    cursor: crosshair;
}

@media (max-width: 768px) {
    .marquee-section { height: 250px; }
    .glass-lens { width: 70%; }
    .marquee-group { gap: 30px; padding-right: 30px; }
}

/*------------------------
  Keyframes Animation
-------------------------*/
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translatex(-100%);
  }
}

@keyframes marqueeRight {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translatex(0);
  }
}
/************marquee_bottom**************/
.marquee-main {
    background-color: var(--bs-dark);
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    perspective: 1200px;
}

.marquee-row {
    width: 140%;
    margin-left: -20%;
    position: absolute;
    white-space: nowrap;
}

.row-bg {
    transform: rotate(-4deg) translateY(-40px);
    z-index: 1;
    opacity: 0.1;
}

.row-fg {
    transform: rotate(2deg) translateY(30px);
    z-index: 5;
    background: rgba(38, 52, 79, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(6, 163, 218, 0.2);
    border-bottom: 1px solid rgba(6, 163, 218, 0.2);
    padding: 15px 0;
}

.marquee-track {
    display: flex;
}

.track-left { 
    animation: scroll-fast 12s linear infinite; 
}

.track-right { 
    animation: scroll-fast 18s linear infinite reverse; 
}

@keyframes scroll-fast {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.text-stroke {
    font-size: 2.2rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px var(--bs-light);
    padding-right: 40px;
    text-transform: uppercase;
    font-family: Lato, Arial, sans-serif;
}

.text-fill {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    padding: 0 30px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.text-sep {
    color: var(--bs-secondary);
    margin-left: 30px;
    font-size: 2rem;
}

.marquee-row:hover .marquee-track {
    animation-play-state: paused;
}

.text-fill:hover {
    color: var(--bs-secondary);
    transform: scale(1.1);
    cursor: pointer;
}

.marquee-main::before,
.marquee-main::after {
    content: "";
    position: absolute;
    top: 0;
    width: 25%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.marquee-main::before { 
    left: 0; 
    background: linear-gradient(to right, var(--bs-dark), transparent); 
}

.marquee-main::after { 
    right: 0; 
    background: linear-gradient(to left, var(--bs-dark), transparent); 
}

@media (max-width: 768px) {
    .marquee-main { height: 250px; }
    .text-fill { font-size: 1.2rem; }
    .text-stroke { font-size: 1.5rem; }
}
/*****************************/
.method-container {
    display: flex;
    width: 100%;
    height: 520px;
    gap: 12px;
}

.method-card {
    position: relative;
    flex: 1;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.method-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 10%, rgba(9, 30, 62, 0.95) 100%);
}

.method-content {
    position: absolute;
    bottom: 40px;
    left: 30px;
    right: 30px;
    color: white;
    z-index: 2;
}

.step-number {
    font-size: 3.5rem;
    font-weight: 900;
    opacity: 0.25;
    display: block;
    line-height: 1;
    margin-bottom: 15px;
    transition: all 0.5s ease;
}

.step-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 1rem;
    opacity: 0;
    max-height: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    line-height: 1.6;
}

.method-card:hover {
    flex: 4;
}

.method-card:hover .step-desc {
    opacity: 1;
    max-height: 200px;
    transform: translateY(0);
    margin-top: 10px;
}

.method-card:hover .step-number {
    opacity: 1;
    color: var(--bs-secondary);
}

.method-container:hover .method-card:not(:hover) {
    flex: 0.6;
    filter: brightness(0.6);
}

@media (max-width: 991px) {
    .method-container {
        flex-direction: column;
        height: auto;
    }
  .method-card {
    height: 90vh;
    flex: none !important;
}
    .method-card:hover {
        height: 100vh;
    }
    .method-card .step-desc {
        opacity: 1;
        max-height: 500px;
        transform: translateY(0);
    }
}

/***Features***/
section.Features, section.Work-Process {
    background: var(--bs-light);
}
/*** Section Title ***/

.section-title-1::before,
.section-title-2::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 1px;
    left: 0;
    bottom: 0;
    background: var(--bs-primary);
    border-radius: 2px;
}

.section-title-2::before {
    height: 1px;
}

.section-title-1.text-center::before,
.section-title-2.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title-1.section-title-sm::before, .section-title-2.section-title-sm::before {
    width: 90px;
}
.section-title-2.section-title-sm::before {
    height: 1px;
}

.section-title-1::after,
.section-title-1::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
      bottom: -2px;
    background: var(--bs-primary);
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}



.section-title-1.section-title-sm::after, .section-title-2.section-title-sm::after {
    width: 6px;
    height: 5px;
}

.section-title-2.section-title-sm::after {
    bottom: -1px;
}

.section-title-1.text-center::after,
.section-title-2.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title-1.section-title-sm::after,
.section-title-2.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 70px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Story Timeline ***/
.story::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    margin-left: -1px;
    background: var(--bs-primary);
    z-index: -1;
}

.story .story-right::before,
.story .story-left::before {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    top: 2px;
    left: 50%;
    margin-left: -7px;
    background: var(--bs-primary);
    border-radius: 2px;
    transform: rotate(45deg);
    z-index: 1;
}

.story .story-right .story-text::before,
.story .story-left .story-text::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 0;
    border: 9px solid;
}

.story .story-right .story-text::before {
    left: -18px;
    border-color: transparent var(--light) transparent transparent;
}

.story .story-left .story-text::before {
    right: -18px;
    border-color: transparent transparent transparent var(--light);
}

@media (max-width: 768px) {
    .story::after {
        left: 13px;
    }
    
    .story .story-right::before,
    .story .story-left::before {
        left: 24px;
    }

    .story .story-right .story-text::before,
    .story .story-left .story-text::before {
        top: -18px;
        left: 0;
        border-color: transparent transparent var(--light) transparent;
    }
}


/*** inter-Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    border-radius: 2px;
    transform: rotate(-45deg);
    
}
.service-item:hover .service-icon {
   -webkit-animation: rotate-center 0.6s ease-in-out both;
	        animation: rotate-center 0.6s ease-in-out both;
}
@-webkit-keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}


.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}

.service3-item>div {
    z-index: 1;
}

.service3-item div::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 2px 2px 0 0;
    transition: .5s;
    z-index: -1;
}

.service3-item div:hover::after {
    width: 100%;
    background: var(--bs-primary);
}

.service3-item * {
    transition: .5s;
}

.service3-item:hover * {
    color: white !important;
}

.service3-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    border-radius: 2px;
    transition: .5s;
}

.service3-item:hover .service-icon {
    background: white !important;
}

.service3-item:hover .service-icon i {
    color: var(--bs-primary) !important;
}



/*** Team ***/
.team-item {
    transition: .5s;
    border: 1px solid var(--bs-primary);
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img, .blog-item .blog-img img {
    transition: .5s;
    border-bottom: 1px solid var(--bs-primary);
    border-radius: 10px 10px 0px 0;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}

/************/
.team-section {
    position: relative;
}

.team-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(6, 163, 218, 0.1);
    color: var(--bs-secondary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.team-grid {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
}

.team-member-card {
    flex: 1;
    max-width: 350px;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.offset-top {
    margin-top: 60px;
}

.member-wrapper {
    background: white;
    border-radius: 35px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.4s ease;
}

.member-img-container {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--bs-primary);
    padding: 50px;
}

.member-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.8s ease;
}

.member-status {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: green;
    border-radius: 50%;
    position: relative;
}

.status-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: status-pulse 1.5s ease-in-out infinite;
}

@keyframes status-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}

.status-label {
    font-size: 0.65rem;
    font-weight: 800;
    color: green;
    letter-spacing: 1px;
}

.member-info {
    padding: 25px 15px 15px;
}

.member-info h3 {
    font-weight: 800;
    color: #091E3E;
    font-size: 1.5rem;
    margin: 0;
}

.member-info span {
    font-size: 0.75rem;
    color: var(--bs-secondary);
    font-weight: 700;
    letter-spacing: 1px;
}

.member-socials {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.member-socials a {
    color: #ccc;
    font-size: 1.1rem;
    transition: 0.3s;
}

.team-member-card:hover {
    transform: translateY(-12px);
}

.team-member-card:hover .member-wrapper {
    border-color: var(--bs-secondary);
    box-shadow: 0 40px 80px rgba(6, 163, 218, 0.12);
}

.team-member-card:hover .member-img {
    transform: scale(1.1);
}

.member-socials a:hover {
    color: var(--bs-secondary);
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .team-grid {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .offset-top {
        margin-top: 0;
    }
    .team-member-card {
        width: 100%;
        max-width: 400px;
    }
    .member-img-container {
        height: 350px;
    }
}
/*** Project Portfolio ***/
#portfolio-flters .btn {
    position: relative;
    display: inline-block;
    margin: 10px 4px 0 4px;
    transition: .5s;
}

#portfolio-flters .btn:hover,
#portfolio-flters .btn.active {
    color: white !important;
}

.portfolio-item {
    margin-bottom: 60px;
}

.portfolio-img img {
    transition: .3s;
}

.portfolio-item:hover .portfolio-img img {
    transform: scale(1.2);
}

.portfolio-title {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 120px;
    padding: 0 30px;
    right: 30px;
    left: 30px;
    bottom: -60px;
    background: white;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    transition: .5s;
    z-index: 3;
}

.portfolio-item:hover .portfolio-title {
    bottom: -45px;
}

.portfolio-btn {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 2;
    opacity: 0;
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
}

.portfolio-btn a {
    transition: .5s;
}

.portfolio-item:hover .portfolio-btn a {
    margin-top: -60px;
}

.portfolio-box::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    border-radius: 2px;
    background: rgba(9, 30, 62, .7);
    transition: .5s;
    z-index: 1;
}

.portfolio-item:hover .portfolio-box::after {
    height: 100%;
}

.project-carousel .owl-nav {
    margin-top: 30px;
    width: 100%;
    height: 46px;
    display: flex;
    justify-content: center;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    position: relative;
    margin: 0 5px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: var(--bs-primary);
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}


/*** Work Process ***/
.process-icon {
    width: 75px;
    height: 75px;
}

.process-item .position-relative::after {
    position: absolute;
    content: "\f101";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 50px;
    color: #a6c2db;
    top: 0;
    right: -45px;
    -webkit-animation: process-item-icon 3s infinite linear;
    animation: process-item-icon 3s infinite linear;
}

@-webkit-keyframes process-item-icon {
    0% {right: -30px; } 50% { right: -45px; } 100% { right: -30px; }
}

.process-item:last-child .position-relative::after {
    display: none;
}

@media (max-width: 992px) {
    .process-item:nth-child(2) .position-relative::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .process-item .position-relative::after {
        display: none;
    }
}

.tech-innovation-section {
    background: white;
}

.stat-item {
    border-left: 3px solid var(--bs-secondary);
    padding-left: 15px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 20px;
}

.bento-item {
    background: white;
    border-radius: 25px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-main {
    grid-row: span 2;
    background: #091E3E;
    color: white;
}

.bento-main i {
    font-size: 45px;
    color: var(--bs-secondary);
}

.bento-secondary {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.bento-secondary i {
    font-size: 35px;
    color: var(--bs-secondary);
}

.bento-item h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.bento-item p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Hover Effects */
.bento-item:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.bento-main:hover {
    background: var(--bs-secondary);
}

.bento-main:hover i {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .bento-main {
        grid-row: span 1;
    }
}

/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 2s;
}


.bg-header.services-page {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
}

.bg-header.contact-page {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-3.jpg) center center no-repeat;
    background-size: cover;
}
.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

.contact-form .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}

.button-example .btn {
    margin: .25rem .125rem;
}

.home-demo-item a,
.inner-demo-item a {
    display: flex;
    width: 100%;
    height: 800px;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: 10s;
}

.inner-demo-item a {
    height: 400px;
	transition: 5s;
}

.home-demo-item:hover a,
.inner-demo-item:hover a {
    background-position: bottom center;
}
/*-----------------------*/
/* footer */
/*-----------------------*/
.footer a {
    color: white;
}
.footer a:hover {
text-decoration: none;
}
/*-----------------------*/
/* Cursor */
/*-----------------------*/
#cursor {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .cursor__circle {
    width: 40px;
    height: 40px;
    margin-top: -50%;
    margin-left: -50%;
    border-radius: 50%;
    border: 1px solid #77BEFF;
    transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), width 0.3s cubic-bezier(0.25, 1, 0.5, 1), height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }
  /* Cursor Text */
  #cursor.text .cursor__circle,
  #cursor.arrow .cursor__circle {
    width: 130px;
    height: 130px;
    border: none;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.3);
  }
  #cursor.text::after {
    content: '';
    position: absolute;
    left: -50%;
    top: -50%;
    width: 100%;
    height: 100%;
    color: #000000;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #cursor::after {
    content: attr(data-cursor-text) !important;
  }
  /* Cursor Arrow */
  #cursor.arrow::after {
    content: '' !important;
    position: absolute;
    left: -50%;
    top: -50%;
    width: 100%;
    height: 100%;
    color: #000000;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
  }
  #cursor.cursor-link .cursor__circle {
    opacity: 0;
    width: 0;
    height: 0;
  }
  #cursor.cursor-link::after {
    content: normal;
    opacity: 0;
  }
  #cursor.overlay .cursor__circle {
    width: 48px;
    height: 48px;
    background-color: rgba(227, 222, 193, 0.08);
    border-color: transparent;
  }
}


/*----------------------------------*/
/* Back To Top */
/*----------------------------------*/
.back-to-top {
  position: fixed;
  z-index: 99;
  right: 50px;
  bottom: 50px;
  height: 55px;
  width: 55px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  transform: translateY(30px);
}

.back-to-top::before {
  position: absolute;
  font-family: "Font Awesome 6 Free";
  content: "\f062";
  text-align: center;
  line-height: 55px;
  opacity: 1;
  height: 55px;
  width: 55px;
  font-size: 18px;
  font-weight: 600;
  color: #77BEFF;
}

.back-to-top svg path {
  fill: none;
}

.back-to-top svg.progress-circle path {
  stroke: #77BEFF;
  stroke-width: 4;
}

.back-to-top.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ANIMATIONS */
@keyframes float { 0% { transform: translateY(0); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0); } }
.animate-float { animation: float 3s ease-in-out infinite; }


.overlap-tier {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tier-container {
    width: 90%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    gap: 0;
}
.tier-number {
    flex: 0.4;
    display: flex;
    justify-content: center;
    background: white;
}

.num-stroke {
    font-size: 12rem;
    font-weight: 900;
    line-height: 1;
    color: var-(--bs-primary);
    opacity: 0.15;
    transition: 0.8s ease;
}

.tier-visual {
    flex: 1;
    height: 70vh;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.tier-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.tier-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(38, 52, 79, 0.9) 50%, transparent 90%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    color: white;
}

.tier-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.tier-title span {
    color: transparent;
    -webkit-text-stroke: 1px white;
}

.tier-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 450px;
    opacity: 0.8;
}

.overlap-tier:hover img {
    transform: scale(1);
}

.overlap-tier:hover .num-stroke {
    opacity: 0.3;
    transform: translateX(20px);
}

@media (max-width: 992px) {

    .tier-container { flex-direction: column; text-align: center; background: white; height: 100vh;}
    .num-stroke { font-size: 6rem; margin-bottom: 20px; }
    .tier-content { padding: 30px; text-align: left; }
    .tier-title { font-size: 2rem; }
}