/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    background-color: rgb(210, 210, 210);
    font-family: Arial, Helvetica, sans-serif;
}

.partner-section,
.services-section,
.works-section,
.about-section{
    scroll-margin-top: 100px;
}


.nav-bar {
    position: fixed;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 15px 25px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0)));
    background-image: -o-linear-gradient(top, rgba(0,0,0,1), rgba(0,0,0,0));
    background-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    z-index: 99;
}

.mobile-nav {
    display: none;
}

#mobileNav {
    background-color: transparent;
    color: whitesmoke;
    outline: none;
    border: none;
}

.nav-bar img {
    width: 35px;
}

.nav-links a {
    display: inline-block;
    padding: 0px 10px;
    color: whitesmoke;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.nav-links a:hover {
    text-decoration: none;
    color: #E45528;
}

/**/
canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: -1;
    image-rendering: crisp-edges;
    image-rendering: -moz-crisp-edges;
    -webkit-filter: brightness(1.10) contrast(1.10) saturate(1.05);
            filter: brightness(1.10) contrast(1.10) saturate(1.05);
}
.canvas-wrapper::after {
    content: '';
    position: fixed;
    inset: 0;
    background-color:  rgba(0,0,0,0.25);

}

.hero-content {
    position: fixed;
    padding: 150px 25px;
    width: 570px;
    inset: 0;
    background-color: transparent;
    opacity: 0;
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    z-index: 0;
}

.hero-content.slide-right {
    opacity: 1;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
}

.hero-content h1 {
    text-align: left;
    color: #E45528;
    font-weight: bolder;
    font-size: 4rem;
    text-shadow: 0px 3px 5px #30303090;
}

.hero-content p {
    color: whitesmoke;
}

.hero-btn {
    background-color: #E45528;
    border-color: #E45528;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background-color: #c03e1b;
    border-color: #c03e1b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(228, 85, 40, 0.3);
}

.scroll-indicator-container {
    position: fixed;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: fadeIn 1s ease-in-out 2s forwards;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: whitesmoke;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 8px;
    font-weight: 600;
}

.scroll-indicator i {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.loading-screen{
    position: fixed;
    inset: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: black;
    z-index: -1;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    pointer-events: none;
}

.loading-screen.zoom-in{
    opacity: 0;
    -webkit-transform: scale(1.5);
        -ms-transform: scale(1.5);
            transform: scale(1.5);
}

.loading-screen img{
    width: 150px;
    -webkit-animation: bouncing-logo 1.5s ease-in-out infinite ;
            animation: bouncing-logo 1.5s ease-in-out infinite ;
}

@-webkit-keyframes bouncing-logo {
    0%{
        -webkit-transform: translateY(-20px);
                transform: translateY(-20px);
    }
    50%{
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
    100%{
        -webkit-transform: translateY(-20px);
                transform: translateY(-20px);
    }
}

@keyframes bouncing-logo {
    0%{
        -webkit-transform: translateY(-20px);
                transform: translateY(-20px);
    }
    50%{
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
    100%{
        -webkit-transform: translateY(-20px);
                transform: translateY(-20px);
    }
}

.scroll-space {
    height: 3000px;
}

/**/

.main-content-wrapper {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 1)));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
    z-index: 2;
}


.footer {
    color: whitesmoke;
    background-color: #161b22;
    padding: 15px 20px;
}

.footer .col-12 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}


/**/

/* Styles for small phones */
@media screen and (max-width: 480px) {
    .slideshow-controls .pagination {
    gap: 0.3rem !important;
}

.slideshow-controls .pagination-dot {
    width: 10px !important;
    height: 10px !important;
}
.section-header{
    font-size: 2rem !important;
}
}

/* Styles for phones and small tablets in portrait */
@media screen and (max-width: 768px) {
    .hero-content {
        width: 100%;
    }
    .hero-content h1 {
        text-align: left;
        color: #E45528;
        font-weight: bolder;
        font-size: 2.5rem;
        text-shadow: 0px 3px 5px #30303090;
    }

    .mobile-nav {
        display: block;
    }

    .nav-links {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        border-radius: 5px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        position: fixed;
        padding: 10px 20px;
        right: 20px;
        top: 60px;
        background-color: #303030;
        opacity: 0;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    .nav-links a {
        padding: 5px 0;
    }

    .nav-links.fade-in {
        opacity: 1;
    }

    .slideshow-controls {
        margin-top: 1rem;
    }

}

/*Styles for dekstop layout onwards*/
@media screen and (min-width:768px) {
    .triple-slider .swiper {
        max-width: 850px;
        /* Increase width */
    }
}

/* Styles for tablets in landscape or small laptops */
@media screen and (min-width: 769px) and (max-width: 1024px) {}

/* Styles for typical laptops */
@media screen and (min-width: 1025px) and (max-width: 1200px) {}

/* Styles for large screens / desktops */
@media screen and (min-width: 1201px) {}

/*Styles for dekstop layout onwards*/
@media screen and (min-width:1024px) {}

@media screen and (max-width:952px) {}

.space-filler {
    height: 80vh;
    background-color: transparent;
}
.section-header {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bolder;
    font-size: 2.8rem;
    text-align: center;
    color: whitesmoke;
    opacity: 0;
    -webkit-transform: scale(0.5);
        -ms-transform: scale(0.5);
            transform: scale(0.5);
    -webkit-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

.section-header.fade{
    opacity: 1;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
}
.service-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 15px;
    padding: 30px;
    color: whitesmoke;
    background-color: #161b22;
    border: 1px solid #2d333b;
    -webkit-filter: blur(10px);
            filter: blur(10px);
    opacity: 0;
    -webkit-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
    pointer-events: none;
}
.services-section .row .col-lg-4:nth-child(2) .service-card{
   -webkit-transform: translate(100%, -100%) scale(0);
        -ms-transform: translate(100%, -100%) scale(0);
            transform: translate(100%, -100%) scale(0);
}
.services-section .row .col-lg-4:nth-child(3) .service-card{
            -webkit-transform: translate(0, -100%) scale(0);
        -ms-transform: translate(0, -100%) scale(0);
            transform: translate(0, -100%) scale(0);
}

.services-section .row .col-lg-4:nth-child(4) .service-card{
            -webkit-transform: translate(-100%, -100%) scale(0);
        -ms-transform: translate(-100%, -100%) scale(0);
            transform: translate(-100%, -100%) scale(0);
}

.services-section .row .col-lg-4:nth-child(2) .service-card.fade-down{
   -webkit-transform: translate(0, 0) scale(1);
        -ms-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
            opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    pointer-events:all;
    -webkit-transition-delay: 200ms;
         -o-transition-delay: 200ms;
            transition-delay: 200ms;
}

.services-section .row .col-lg-4:nth-child(3) .service-card.fade-down{
   -webkit-transform: translate(0, 0) scale(1);
        -ms-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
            opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    pointer-events:all;
    -webkit-transition-delay: 600ms;
         -o-transition-delay: 600ms;
            transition-delay: 600ms;
}

.services-section .row .col-lg-4:nth-child(4) .service-card.fade-down{
   -webkit-transform: translate(0, 0) scale(1);
        -ms-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
            opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    pointer-events:all;
    -webkit-transition-delay: 400ms;
         -o-transition-delay: 400ms;
            transition-delay: 400ms;
}


.triple-slider.fade-down,
.logo-wrapper.fade-down{
    -webkit-filter: blur(0);
            filter: blur(0);
    pointer-events:all;
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
        -ms-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
}

.service-card img {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.service-card h4 {
    padding: 10px 0px;
    color: #E45528;
    font-weight: bolder;
}

p.card-description {
    text-align: justify;
}

.service-card:hover {
    border: 1px solid #E45528;
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
}

.service-card:hover img {
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
}


#tripleSlider {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.triple-slider {
    padding: 32px 0;
    opacity: 0;
    -webkit-transform: translateY(-100px);
        -ms-transform: translateY(-100px);
            transform: translateY(-100px);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.triple-slider .swiper {
    width: 90%;
    max-width: 850px;
    height: 100%;
    border-radius: 8px;
}

.triple-slider .bg-image {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    display: block;
}

.triple-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    -webkit-perspective: 1200px;
            perspective: 1200px;
}




.triple-slider .triple-slider-main {
    position: relative;
    z-index: 10;
    -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
}

.triple-slider .triple-slider-prev,
.triple-slider .triple-slider-next {
    opacity: 0.25;
    position: absolute;
    top: 50%;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    cursor: pointer;
}

.triple-slider .triple-slider-prev {
    right: 50%;
    -webkit-transform: translateY(-50%) scale(0.75) rotateY(10deg);
            transform: translateY(-50%) scale(0.75) rotateY(10deg);
}

.triple-slider .triple-slider-next {
    left: 50%;
    -webkit-transform: translateY(-50%) scale(0.75) rotateY(-10deg);
            transform: translateY(-50%) scale(0.75) rotateY(-10deg);
}

/* Controls: Pagination & Play Button */
.slideshow-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slideshow-controls .pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem;
}

.slideshow-controls .pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2d333b;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.slideshow-controls .pagination-dot.active {
    background: #E45528;
    /* 🔥 Updated from blue to fiery orange */
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
}

.slideshow-controls .play-btn {
    background: none;
    border: 2px solid #E45528;
    /* 🔥 Updated from blue to fiery orange */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.slideshow-controls .play-btn:hover {
    background: rgba(228, 85, 40, 0.1);
    /* 🔥 Subtle orange hover effect */
}

.slideshow-controls .play-btn svg {
    fill: #E45528;
    /* 🔥 Updated from blue to fiery orange */
    width: 20px;
    height: 20px;
}
.logo-wrapper{
    background-color: rgba(245, 245, 245, 0.5);
    border-radius: 12px;
    -webkit-filter: blur(10px);
            filter: blur(10px);
    opacity: 0;
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
   backdrop-filter: blur(5px);
   -webkit-backdrop-filter: blur(5px);
   -webkit-transition: all 1s ease-in-out;
   -o-transition: all 1s ease-in-out;
   transition: all 1s ease-in-out;
}
.logo-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 20px;
    opacity: 0;
    -webkit-filter: blur(5px);
            filter: blur(5px);
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
   -webkit-transition: all 0.3s ease-in-out;
   -o-transition: all 0.3s ease-in-out;
   transition: all 0.3s ease-in-out;
}

.logo-container img{
   width: 125px;
   padding: 5px 15px;
   -webkit-transition: all 0.3s ease-in-out;
   -o-transition: all 0.3s ease-in-out;
   transition: all 0.3s ease-in-out;
   -webkit-filter: drop-shadow(0px 1px 5px rgb(0, 0,0,0.4));
           filter: drop-shadow(0px 1px 5px rgb(0, 0,0,0.4));
}
.col-lg-2:has(.logo-container){
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.col-lg-2:has(.logo-container):hover img{
    -webkit-transform: scale(1.2) rotate(-1deg);
        -ms-transform: scale(1.2) rotate(-1deg);
            transform: scale(1.2) rotate(-1deg);
   -webkit-filter: drop-shadow(0px 1px 5px rgb(0, 0,0,0.4));
           filter: drop-shadow(0px 1px 5px rgb(0, 0,0,0.4));
}

.logo-wrapper .col-lg-2:nth-child(1) .logo-container{
    -webkit-transition-delay: 200ms;
         -o-transition-delay: 200ms;
            transition-delay: 200ms;
}
.logo-wrapper .col-lg-2:nth-child(2) .logo-container{
    -webkit-transition-delay: 400ms;
         -o-transition-delay: 400ms;
            transition-delay: 400ms;
}
.logo-wrapper .col-lg-2:nth-child(3) .logo-container{
    -webkit-transition-delay: 600ms;
         -o-transition-delay: 600ms;
            transition-delay: 600ms;
}
.logo-wrapper .col-lg-2:nth-child(4) .logo-container{
    -webkit-transition-delay: 800ms;
         -o-transition-delay: 800ms;
            transition-delay: 800ms;
}
.logo-wrapper .col-lg-2:nth-child(5) .logo-container{
    -webkit-transition-delay: 1000ms;
         -o-transition-delay: 1000ms;
            transition-delay: 1000ms;
}
.logo-wrapper .col-lg-2:nth-child(6) .logo-container{
    -webkit-transition-delay: 1200ms;
         -o-transition-delay: 1200ms;
            transition-delay: 1200ms;
}

.logo-container.blur-left{
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
}

.colored-text{
    position: relative;
    color:#E45528;
    z-index: 0;
    padding: 7px 12px;
}

.colored-text::before{
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 7px;
    background-color: whitesmoke;
    z-index: -1;
    width: 0;
    -webkit-transition: all 1.5s ease-in-out;
    -o-transition: all 1.5s ease-in-out;
    transition: all 1.5s ease-in-out;
}

.colored-text.paint::before{
    width: 100%;
}
.work-tags{
    position: absolute;
    top: 0;
    padding: 10px;
    z-index: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.work-type{
    position: absolute;
    bottom: 0;
    padding: 10px;
    z-index: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.work-type span{
    font-size: 14px;
    font-family: 'Satoshi Light', Arial;
    padding: 3px 13px;
    border-radius: 7px;
    color: whitesmoke;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.fa-star,
.fa-crown,
.fa-tags,
.fa-chart-simple,
.fa-clock,
.fa-bolt,
.fa-user-tie {
    color: #E45528;
}
.work-tags span{
    display: inline-block;
    font-family: 'Satoshi Medium', Arial;
    padding: 3px 12px;
    border-radius: 7px;
    font-size: 14px;
    color: #303030;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(255,255,255,0.7);
    -webkit-box-shadow: 0px 4px 4px rgba(0,0,0,0.2);
            box-shadow: 0px 4px 4px rgba(0,0,0,0.2);
    margin: 2px;
}
.featured-works-wrapper{
    background-color:black;
    aspect-ratio:4/3;
    border-radius:12px;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
            box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    opacity: 0;
    -webkit-filter: blur(5px);
            filter: blur(5px);
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
}

.featured-works-wrapper.blur-left{
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
}

.featured-works-wrapper .work-snippet{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
    z-index: 0;
    -webkit-transition: all 7s linear;
    -o-transition: all 7s linear;
    transition: all 7s linear;
}

.row .col-lg-4:nth-child(1) .featured-works-wrapper{
    -webkit-transition-delay: 200ms;
         -o-transition-delay: 200ms;
            transition-delay: 200ms;
}
.row .col-lg-4:nth-child(2) .featured-works-wrapper{
    -webkit-transition-delay: 400ms;
         -o-transition-delay: 400ms;
            transition-delay: 400ms;
}
.row .col-lg-4:nth-child(3) .featured-works-wrapper{
    -webkit-transition-delay: 600ms;
         -o-transition-delay: 600ms;
            transition-delay: 600ms;
}


.work-snippet.inactive{
    display: none;
}

.video-content{
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
    height: 100%;
    width: 100%;
}

.featured-works-wrapper:hover{
    -webkit-box-shadow: 0px 0px 70px rgba(255,255,255,0.5);
            box-shadow: 0px 0px 70px rgba(255,255,255,0.5);
}

.featured-works-wrapper:hover .logo-overlay{
    opacity: 0;
}

.featured-works-wrapper:hover .work-type{
    opacity: 0;
}
.featured-works-wrapper:hover .work-tags{
    opacity: 0;
}
.featured-works-wrapper:hover .work-name{
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
}

.featured-works-wrapper:hover .work-snippet{
    -o-object-position: bottom;
       object-position: bottom;
}

.featured-works-wrapper:hover .video-content{
    -webkit-animation: sneak 10s linear infinite;
            animation: sneak 10s linear infinite;
}

@-webkit-keyframes sneak {
    0%{
    object-position: top;
    }
    50%{
    object-position:bottom;
    }
    100%{
    object-position: top;
    }
}

@keyframes sneak {
    0%{
    -o-object-position: top;
       object-position: top;
    }
    50%{
    -o-object-position:bottom;
       object-position:bottom;
    }
    100%{
    -o-object-position: top;
       object-position: top;
    }
}

.logo-overlay{
    position: absolute;
    inset: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    background-color:rgba(75, 75, 75, 0.7);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.logo-overlay img{
    width: 150px;
}


.work-name{
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 1;
    padding: 15px 17px;
    -webkit-transform: translateY(100%) scale(0.7);
        -ms-transform: translateY(100%) scale(0.7);
            transform: translateY(100%) scale(0.7);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.work-name a{
    color: skyblue;
}
.work-name p{
    color: whitesmoke;
    font-family: 'Satoshi Medium',Arial;
    margin: 0 0 0 14px;
    
}
.work-name span{
    display: inline-block;
    padding: 5px 20px;
    border-radius: 7px;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    background-color: rgba(48, 48, 48, 0.35);
}


@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 5px rgba(228, 85, 40, 0.4), 0 0 0 0 rgba(228, 85, 40, 0.7);
    }
    50% {
        box-shadow: 0 0 20px rgba(228, 85, 40, 0.8), 0 0 10px 10px rgba(228, 85, 40, 0);
    }
    100% {
        box-shadow: 0 0 5px rgba(228, 85, 40, 0.4), 0 0 0 0 rgba(228, 85, 40, 0.7);
    }
}

.cta-link{
    font-family: 'Satoshi Medium', Arial;
    padding: 12px 25px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: white;
    border: none;
    border-radius: 12px;
    background-color: #E45528;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    animation: pulse-glow 2s infinite ease-in-out;
    display: inline-block;
    text-decoration: none;
}

.cta-link:hover{
    background-color: #c9401f;
    animation: none;
    color: white;
    text-decoration: none;
}
.verified-client{
    position: relative;
}
.verified-client::before{
    content: '';
    position: absolute;
    background-image: url('../assets/images/icons/verified.png');
    background-size: contain;
    background-repeat: no-repeat;
    left: -23px;
    top: 1px;
    width: 20px;   
    height: 20px;
}
/* -----------------------------------------------------------
   BOOKING SECTION STYLES
   ----------------------------------------------------------- */
:root {
    --card-bg: #161b22;         
    --section-bg: #000000;      
    --accent: #E45528;          
    --text-main: whitesmoke;    
    --text-sub: rgba(245,245,245,0.8); 
    --border-dark: #2d333b;     
    --shadow-strong: 0 10px 30px rgba(0,0,0,0.5); 
    --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
    --font-main: 'Arial', Helvetica, sans-serif;
}

.booking-section {
    position: relative;
    min-height: 100vh;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    overflow: hidden;
}

/* Ambient Glow Effect */
.ambient-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(228,85,40,0.08) 0%, rgba(0,0,0,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

/* Centered Layout */
.booking-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: center;
}

/* -----------------------------------------------------------
   FORM STYLES
   ----------------------------------------------------------- */
.form-col { 
    width: 100%;
    opacity: 0; 
    transform: translateY(40px); 
    transition: all 1s var(--ease-out); 
}
.form-col.in-view { opacity: 1; transform: translateY(0); }

.booking-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-strong);
    border: 1px solid var(--border-dark);
    position: relative;
}
.booking-card:hover { border-color: var(--accent); box-shadow: 0px 0px 40px rgba(228,85,40,0.1); transition: 0.3s ease; }

.input-group { position: relative; margin-bottom: 30px; }
.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.booking-section input, .booking-section textarea {
    width: 100%;
    padding: 12px 0;
    font-size: 1.1rem;
    color: var(--text-main);
    border: none;
    border-bottom: 2px solid #eee; 
    background: transparent;
    transition: border-color 0.3s ease;
    font-family: inherit;
    border-radius: 0;
    outline: none;
}

/* -----------------------------------------------------------
   DATE PICKER FIXES
   ----------------------------------------------------------- */
.booking-section input[type='date'] {
    /* No color-scheme: dark here keeps the popup white (clean) */
    cursor: pointer;
}

/* Force Icon White */
.booking-section input[type='date']::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
}
.booking-section input[type='date']::-webkit-calendar-picker-indicator:hover { opacity: 1; }

/* Label Behavior */
.booking-section label {
    position: absolute; top: 10px; left: 0; font-size: 1.1rem; color: #888;
    pointer-events: none; transition: 0.3s ease all;
}

.booking-section input:focus, .booking-section textarea:focus { border-bottom-color: var(--accent); }
.booking-section input:focus ~ label, .booking-section input:not(:placeholder-shown) ~ label,
.booking-section textarea:focus ~ label, .booking-section textarea:not(:placeholder-shown) ~ label {
    top: -12px; font-size: 0.8rem; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
}

/* Autocomplete Styles */
.autocomplete-wrapper { position: relative; }
.suggestions-list {
    position: absolute; top: 100%; left: 0; width: 100%;
    background: var(--card-bg); border: 1px solid var(--border-dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); border-radius: 8px;
    max-height: 200px; overflow-y: auto; z-index: 10; display: none; margin-top: 5px;
}
.suggestions-list.active { display: block; animation: fadeIn 0.2s ease; }
.suggestion-item { padding: 12px 15px; cursor: pointer; font-size: 1rem; color: var(--text-main); border-bottom: 1px solid rgba(255,255,255,0.05); }
.suggestion-item:hover { background-color: rgba(228,85,40,0.2); color: var(--accent); }

/* Timezone & Button */
.timezone-alert { background-color: rgba(48,48,48,0.5); border-left: 3px solid var(--accent); padding: 15px; margin-bottom: 25px; font-size: 0.9rem; color: #ccc; display: none; backdrop-filter: blur(2px); }
.timezone-alert strong { color: var(--accent); display: block; margin-bottom: 3px; font-size: 0.8rem; text-transform: uppercase; }

.btn-submit {
    width: 100%; padding: 20px; background: #111; color: white; border: 1px solid transparent;
    border-radius: 8px; font-size: 1rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    cursor: pointer; transition: all 0.3s ease; margin-top: 10px;
}
.btn-submit:hover { background: #000; border-color: var(--accent); color: var(--accent); transform: translateY(-2px); box-shadow: 0px 0px 20px rgba(228,85,40,0.2); }

.spinner { display: none; width: 20px; height: 20px; border: 3px solid rgba(255,255,255,0.3); border-radius: 50%; border-top-color: var(--accent); animation: spin 1s ease-in-out infinite; margin: 0 auto; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 600px) { .input-row { grid-template-columns: 1fr; gap: 10px; } .booking-section { padding: 40px 15px; } }


/* =========================================
   CONFIRMATION MODAL STYLES
   ========================================= */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex; justify-content: center; align-items: center;
    z-index: 1000; opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease;
}
.modal-overlay.is-visible { opacity: 1; visibility: visible; }

.modal-content {
    background-color: #161b22; padding: 40px; border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); border: 1px solid #2d333b;
    max-width: 450px; width: 90%; text-align: center;
    transform: scale(0.8); transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.modal-overlay.is-visible .modal-content { transform: scale(1); }

.modal-content h3 { color: #4CAF50; font-size: 1.8rem; margin-bottom: 10px; font-weight: bolder; }
.modal-content .tagline { color: #E45528; text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; margin-bottom: 20px; }
.modal-icon { color: #E45528; font-size: 3rem; margin-bottom: 20px; }

.meeting-details { list-style: none; padding: 0; margin: 20px 0; text-align: left; }
.meeting-details li { padding: 8px 0; border-bottom: 1px dashed rgba(255, 255, 255, 0.1); }
.meeting-details strong { color: whitesmoke; display: inline-block; width: 80px; }
.meeting-details span, .meeting-details a { color: #E45528; }
.meeting-details a:hover { color: #fff; text-decoration: underline; }

.close-btn {
    margin-top: 20px; width: 100%; padding: 15px; background: #111;
    color: whitesmoke; border: 1px solid transparent; border-radius: 8px;
    font-size: 1rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    cursor: pointer; transition: 0.3s ease-in-out;
}
.close-btn:hover { background: #000; border-color: #E45528; color: #E45528; transform: translateY(-1px); }

