/* --- CORE SETTINGS --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #ffffff;
    overflow: hidden; 
    color: #111;
}

/* --- Global Fix for Horizontal Scroll --- */
html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}


/* --- Floating WhatsApp Button Style Start --- */
/* --- Floating WhatsApp Button --- */
.whatsapp-btn {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 9998; /* High priority but below the custom cursor */
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
    padding: 10px; /* Ensures the icon is perfectly sized inside the circle */
}

.whatsapp-btn svg {
    width: 100%;
    height: 100%;
    fill: #fff; /* Ensures the handset is white */
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

/* --- Smooth Continuous Pulse Animation --- */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        transform: scale(1);
    }
}

/* Mobile responsive scaling */
@media (max-width: 768px) {
    .whatsapp-btn {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
        padding: 8px;
    }
}
/* --- Floating WhatsApp Button Style End --- */


/* Adjust position for smaller screens */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}


/* Fix Bootstrap row margins to prevent content leaking outside the viewport */
.row {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

/* Responsive Typography: Prevents large words from breaking the layout on mobile */
@media (max-width: 991px) {
    .display-1 {
        font-size: 3.5rem !important; /* Adjusting the "CREATIVES" text size */
        line-height: 1.1;
    }
    .display-2 {
        font-size: 2.8rem !important; /* Adjusting the "VOICE" text size */
        line-height: 1.1;
    }
    .display-4 {
        font-size: 2.2rem !important;
    }
    .section-padding {
        padding: 80px 0; /* Reducing section spacing for mobile */
    }
}

@media (max-width: 576px) {
    .display-1 {
        font-size: 2.8rem !important;
    }
    .display-2 {
        font-size: 2rem !important;
    }
    
    /* Adjusting top padding for the Sub-Hero section on small screens */
    .container.pt-5 {
        padding-top: 2rem !important;
    }
}

/* Responsive padding for Value Cards */
@media (max-width: 767px) {
    .value-card {
        padding-left: 20px;
        margin-bottom: 20px;
    }
}



.bg-black { background-color: #000 !important; }
.text-blackk{color: #111 !important;}

/* --- 1. PAGE LOADER STYLES --- */
#loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: #111; 
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20000;
}
.loader-content { overflow: hidden; text-align: center; }
.loader-text {
    color: #ffffff;
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    display: inline-block;
    white-space: nowrap;
    opacity: 0; /* JS load thase tyare visibility thase */
}
/* IMPORTANT: Start state for Drop animation */
.loader-text span { 
    display: inline-block; 
    transform: translateY(-120%); 
}

/* --- 2. GLOBAL STYLES --- */
/* .noise-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.06;
    pointer-events: none;
    z-index: 10000;
} */

/* --- 3. NAVBAR --- */
.navbar {
    z-index: 9000;
    padding: 12px 0;
    background: transparent;
    transition: all 0.4s ease-in-out;
}
.navbar.scrolled {
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(5px);
}

.navbar-brand { font-weight: 800; font-size: 22px; letter-spacing: -1px; }
.nav-link { font-weight: 600; font-size: 15px; margin: 0 10px; color: #111 !important; }
.nav-link.active {color: #111 !important;font-weight: 800;}
.btn-talk {
    background: #111; color: #fff !important;
    border: 1.5px solid #111; transition: 0.3s ease-in-out;
    padding: 10px 25px; border-radius: 50px; text-decoration: none;
    font-weight: 600; font-size: 14px;
}
@media (min-width: 769px) {.navbar {padding: 18px 0;}.navbar.scrolled {padding: 12px 0;}}

/* --- 4. HERO SECTION & FLICKER FIX --- */
.hero-section {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    overflow: hidden;
}

/* Flicker Fix: Initial state set to hidden in CSS */
.hero-line, .hero-desc, .hero-btn-container {
    opacity: 0;
    visibility: hidden;
}

.mesh-wrapper {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    filter: blur(5px);
}
.mesh-ball { position: absolute; border-radius: 50%; opacity: 1; mix-blend-mode: multiply; }
.ball-1 { width: 45vw; height: 45vw; background: #c3dafe; top: -5%; left: -5%; }
.ball-2 { width: 40vw; height: 40vw; background: #fed7e2; bottom: 10%; right: -5%; }
.ball-3 { width: 30vw; height: 30vw; background: #e9d5ff; top: 10%; right: 10%; }
.ball-4 { width: 25vw; height: 25vw; background: #bbf7d0; bottom: 20%; left: 10%; }

.hero-content { position: relative; z-index: 10; padding: 0 20px; }
.hero-title { font-size: clamp(2.5rem, 10vw, 8rem); font-weight: 800; line-height: 0.95; letter-spacing: -3px; text-transform: uppercase; }
.outline-text { color: transparent; -webkit-text-stroke: 1.2px #111; }

/* Global Buttons */
.btn-custom { border: 1.5px solid #111; padding: 14px 40px; border-radius: 50px; color: #111; font-weight: 700; text-decoration: none; display: inline-block; transition: 0.3s ease-in-out; }
.btn-custom:hover { background: #111; color: #fff; }

.btn-fill {
    background: #111; color: #fff !important;
    padding: 14px 40px; border-radius: 50px; text-decoration: none;
    font-weight: 700; font-size: 15px; display: inline-block;
    border: 1.5px solid #111; transition: 0.3s ease-in-out;
}
.btn-fill:hover , .btn-talk:hover { background: transparent; color: #111 !important; }

.btn-border {
    background: transparent; color: #111 !important;
    padding: 14px 40px; border-radius: 50px; text-decoration: none;
    font-weight: 700; font-size: 15px; display: inline-block;
    border: 1.5px solid #111; transition: 0.3s ease-in-out;
}
.btn-border:hover { background: #111; color: #fff !important; }

.btn-fill.btn-light{
    background-color: #fff !important;
    color: #000 !important;
    border-color: #fff !important;
}
.btn-fill.btn-light:hover {
    background-color: transparent !important;
    color: #fff !important;
}

.feature-tag {
    background: #e4e4e4;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}


/* --- 5. SECTIONS STYLING --- */
.section-padding { padding: 60px 0; }
.reveal { opacity: 0; transform: translateY(50px); }

.about-img-wrapper { position: relative; overflow: hidden; border-radius: 20px; height: 500px; }
.about-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }

.service-card {
    padding: 35px;
}
/* .service-card:hover { background: #111; color: #fff; transform: translateY(-10px); }*/

.work-item { position: relative; overflow: hidden; cursor: pointer; }
.work-img { width: 100%; height: 550px; object-fit: cover; transition: 0.6s ease; }
.work-item:hover .work-img { transform: scale(1.05); }
.work-img-wrapper {position: relative;background: #f9f9f9;}
.work-img {width: 100%;height: 500px;object-fit: cover;transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);}
.work-item:hover .work-img {transform: scale(1.05);}

.card-boxx{
    background: #fcfcfc;border-radius: 30px;
    border: 1px solid rgba(0,0,0,0.1); transition: 0.3s ease-in-out; height: 100%;
}
.card-boxx:hover{ background: #111; color: #fff; transform: translateY(-10px); }

footer { background: #000; color: #fff; padding: 20px 0 50px; }
@media (min-width: 769px) {
    .section-padding { padding: 120px 0; }
    footer { padding: 80px 0 40px;}
}
/* #cursor {
    width: 12px; height: 12px; background: #000; border-radius: 50%;
    position: fixed; pointer-events: none; z-index: 11000; display: none;
} */
#cursor{position:fixed;top:0;left:0;width:40px;height:40px;border-radius:50%;background-color:#fff;pointer-events:none;z-index:9999;mix-blend-mode:difference;transform:translate(-50%,-50%);transition:opacity .3s ease,visibility .3s ease;opacity:1;visibility:visible;
display: none;}
@media (min-width: 769px) { #cursor { display: block; } body { cursor: none; } }


/* --- Marquee Section Style Start --- */
/* --- Marquee Styling --- */
.marquee {
    display: flex;
    /* overflow: hidden; */
    width: 100%;
    background: #fff;
    cursor: default;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    align-items: center;
}

.brand-logo-wrapper {
    flex-shrink: 0;
    padding: 0 40px;
}

.brand-logo-wrapper img {
    height: 50px; /* Fixed height for all logos */
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: all 0.4s ease;
}

.brand-logo-wrapper:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@media (min-width: 769px) {
    .brand-logo-wrapper img {
        height: 70px;
    }
}

/* --- Marquee Section Style End --- */


/* FAQ */
.custom-faq .accordion-button:not(.collapsed) { color: #111; background-color: transparent; }