:root {
    --black: #0e0e0e; --white: #ffffff; --orange: #f26522; --grey: #f4f4f4;
    --transition: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; cursor: none; }
body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--black); overflow-x: hidden; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 5%; }

/* CURSOR */
.cursor-dot, .cursor-outline { position: fixed; top: 0; left: 0; transform: translate(-50%, -50%); border-radius: 50%; z-index: 9999; pointer-events: none; }
.cursor-dot { width: 8px; height: 8px; background: var(--orange); }
.cursor-outline { width: 40px; height: 40px; border: 1px solid var(--orange); transition: 0.1s; }

/* NAVBAR */
.navbar { position: fixed; top: 0; width: 100%; padding: 30px 0; z-index: 1000; transition: transform 0.6s var(--transition), background 0.4s ease; }
.navbar--hidden { transform: translateY(-100%); }
.navbar.scrolled { background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); padding: 15px 0; border-bottom: 1px solid #eee; }
.nav-container { display: flex; flex-direction: column; align-items: center; gap: 15px; }
.logo img { height: 35px; }
.nav-links { display: flex; list-style: none; gap: 40px; }
.nav-links a { text-decoration: none; color: var(--black); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; }

/* HERO & GEOMETRIC */
.hero { height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; }
.geo-shape { position: absolute; border: 1px solid rgba(242, 101, 34, 0.1); border-radius: 50%; }
.shape-1 { width: 400px; height: 400px; top: -100px; right: -100px; }
.shape-2 { width: 600px; height: 600px; bottom: -200px; left: -200px; }

.brandcore-title { font-size: 8vw; font-weight: 200; line-height: 1.1; font-family: 'Bebas Neue'; }
.italic { font-family: 'Bebas Neue', serif; }
.orange { color: var(--orange); }

/* SECTIONS */
.content-section { padding: 150px 0; position: relative; }
.dark { background: var(--black); color: var(--white); }
.split { display: grid; grid-template-columns: 1fr 2.5fr; gap: 50px; }
.large-text { font-size: 2.8rem; font-weight: 300; line-height: 1.2; margin-bottom: 20px; }
.sub-text { opacity: 0.7; font-size: 1.1rem; line-height: 1.8; }
.side-title {font-family: 'Bebas Neue'; font-size: 60px;}

/* SERVICES */
.services-modern { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 60px; }
.s-item { padding: 60px; border: 1px solid #eee; transition: 0.5s; }
.s-item:hover { background: var(--orange); color: white; border-color: var(--orange); }

/* HORIZONTAL PROCESS */
.horizontal-scroll-wrapper { overflow: hidden; background: var(--grey); }
.horizontal-container { display: flex; width: 400vw; height: 100vh; }
.panel { width: 100vw; display: flex; flex-direction: column; justify-content: center; padding-left: 10%; }
.panel h2 { font-size: 40px; font-family: 'Playfair Display', serif; }
.panel {
    /* Ensure the panel has enough width for the image */
    min-width: 400px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.panel-img {
    width: 1000px;
    height: 500px; /* Aap apne hisaab se height set kar sakte hain */
    object-fit: cover;
    border-radius: 10px; /* Thoda modern look ke liye corners round karein */
    margin-bottom: 15px;
}

/* WORKFOLIO */
/* Container Styling */
.workfolio-creative {
    padding: 80px 0;
    text-align: center;
    background-color: #ffffff;
}

.workfolio-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 50px;
    letter-spacing: -1px;
}

.circles-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 per row */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* The Creative Circle */
.creative-circle {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Important for the liquid effect */
    background: #fff;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s ease;
}

.circle-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5; /* Stays above the liquid */
    transition: all 0.4s ease;
}

.circle-content i {
    font-size: 2.5rem;
    color: #f26522; /* Brand Orange */
    margin-bottom: 10px;
    transition: color 0.4s ease, transform 0.4s ease;
}

.circle-label {
    font-size: 12px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.4s ease;
}

/* Liquid Hover Effect */
.liquid-bg {
    position: absolute;
    bottom: -100%; /* Hidden at bottom */
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f26522;
    border-radius: 50%;
    z-index: 1;
    transition: bottom 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* Hover States */
.creative-circle:hover {
    transform: scale(1.08);
    border-color: #f26522;
}

.creative-circle:hover .liquid-bg {
    bottom: 0; /* Rises up */
}

.creative-circle:hover .circle-content i,
.creative-circle:hover .circle-label {
    color: #ffffff; /* Contrast against orange */
}

/* Responsive Fix */
@media (max-width: 1024px) { .circles-container { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .circles-container { grid-template-columns: 1fr; } }

/* FOOTER */
.main-footer {
    background-color: #111; /* Sleek Dark Theme */
    color: #fff;
    padding: 60px 0 30px 0;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.footer-top {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 100;
    letter-spacing: -1px;
    margin: 0;
}

.footer-logo span {
    color: #f26522; /* Brand Orange */
}

.footer-tagline {
    font-size: 14px;
    color: #888;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 40px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Legal Links */
.footer-legal a {
    color: #888;
    text-decoration: none;
    font-size: 13px;
    margin-right: 25px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #f26522;
}

/* Credits Section */
.footer-credits {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #888;
}

.brand-text {
    color: #f26522;
    font-weight: 700;
}

.dev-text {
    color: #fff;
    font-weight: 700;
}

.credit-separator {
    color: rgba(255, 255, 255, 0.2);
}

/* Background Geometric Circles */
.footer-circles .f-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(242, 101, 34, 0.1);
    z-index: 1;
}

.c-left {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -100px;
}

.c-right {
    width: 200px;
    height: 200px;
    top: -100px;
    right: -50px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-legal a {
        margin: 0 10px;
    }
}

@media (max-width: 900px) {
    .split, .services-modern, .work-grid { grid-template-columns: 1fr; }
    .valmont-title { font-size: 14vw; }
    .nav-links { display: none; }
}
/* Geometric Canvas */
.geo-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Allows clicking through shapes */
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border: 1px solid rgba(242, 101, 34, 0.15); /* Subtle Brand Orange */
    transition: transform 0.2s ease-out;
}

.circle-1 { width: 400px; height: 400px; border-radius: 50%; top: 10%; left: -5%; }
.circle-2 { width: 250px; height: 250px; border-radius: 50%; bottom: 15%; right: 40%; border-color: rgba(0,0,0,0.05); }

.circle-3 { width: 250px; height: 250px; border-radius: 50%; bottom: 15%; right: 50%; border-color: rgba(0,0,0,0.05); }

.circle-4 { width: 250px; height: 250px; border-radius: 50%; bottom: 25%; right: 30%; border-color: rgba(0,0,0,0.05); }
.circle-5 { width: 250px; height: 250px; border-radius: 50%; bottom: 25%; right: 60%; border-color: rgba(0,0,0,0.05); }

.ring-1 { 
    width: 100px; height: 100px; border-radius: 50%; 
    border: 15px solid rgba(242, 101, 34, 0.03); 
    top: 60%; left: 20%; 
}

/* Dark section adjustment for shapes */
.dark .shape { border-color: rgba(255, 255, 255, 0.1); }
/* CONTACT PAGE (PROFESSIONAL) */
.contact-page { min-height: 100vh; background: var(--black); color: var(--white); display: flex; align-items: center; padding: 100px 0; }
.contact-flex { display: flex; justify-content: space-between; align-items: center; gap: 100px; }
.orange-label { color: var(--orange); font-size: 12px; letter-spacing: 5px; }
.contact-title { font-size: 5rem; line-height: 1; margin: 20px 0; font-weight: 200; }
.contact-card { background: rgba(255,255,255,0.03); padding: 60px; border-radius: 2px; border: 1px solid rgba(255,255,255,0.05); }
.c-row { display: flex; align-items: center; gap: 20px; margin-bottom: 30px; font-size: 1.2rem; }
.c-row i { color: var(--orange); }
.social-grid { display: flex; gap: 25px; margin-top: 50px; }
.social-grid a { color: var(--white); font-size: 1.5rem; transition: 0.3s; }
.social-grid a:hover { color: var(--orange); }
@import url('https://fonts.googleapis.com/css2?family=Mr+Dafoe&display=swap');

.brush-wrapper {
    margin-top: 20px;
    text-align: center;
}

.liquid-brush {
    font-family: 'Playwrite GB S', cursive;
    font-size: 3rem;
    color: #0e0e0e; /* Your Orange */
    position: relative;
    display: inline-block;
    
    /* The Magic: We hide the text using a mask */
    -webkit-mask-image: linear-gradient(to right, black 50%, transparent 50%);
    mask-image: linear-gradient(to right, black 50%, transparent 50%);
    -webkit-mask-size: 200% 100%;
    mask-size: 200% 100%;
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
    
    transition: -webkit-mask-position 2s ease, mask-position 2s ease;
}

/* This class triggers the paint effect */
.liquid-brush.paint-active {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
}

/* Optional: Adding a slight 'glow' to make it look like wet ink */
.liquid-brush.paint-active {
    text-shadow: 0 0 10px rgba(242, 101, 34, 0.2);
}

/* Nav Item Alignment Safe */
.nav-item {
    position: relative;
    text-decoration: none;
    color: #000;
    font-weight: 700;
    padding: 5px 0;
    display: inline-block; /* Centering ke liye zaroori hai */
    z-index: 1;
}

/* Marker using ::after (No extra HTML needed) */
.nav-item::after {
    content: "";
    position: absolute;
    bottom: 4px;      /* Marker ki unchai */
    left: 0;
    width: 0;         /* Shuruat mein zero */
    height: 12px;     /* Meraki style thickness */
    background-color: #f26522; /* Aapka Orange */
    opacity: 0.4;
    z-index: -1;      /* Text ke peeche */
    transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    pointer-events: none;
}

/* Jab mouse text par jaye */
.nav-item:hover::after {
    width: 100%;      /* Highlighter draw hoga */
}
/* Navigation Link Base */
.nav-links a {
    text-decoration: none;
    color: var(--black);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
    display: inline-block;
}

/* The Hover Line (Invisible by default) */
.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%; /* Start from center */
    width: 0;
    height: 2px;
    background-color: #f26522; /* Your Brand Orange */
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1), left 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover State: Line expands and color shifts */
.nav-links a:hover {
    color: #f26522;
}

.nav-links a:hover::after {
    width: 100%;
    left: 0;
}

/* Optional: Slight "Lift" effect */
.nav-links li {
    transition: transform 0.3s ease;
}

.nav-links li:hover {
    transform: translateY(-2px);
}
.whatsapp-btn-fixed {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 60px !important;
    height: 60px !important;
    background-color: #25d366 !important;
    color: white !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    font-size: 32px !important;
    z-index: 999999 !important; /* Extremely high value */
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
    transition: transform 0.3s ease !important;
}

.whatsapp-btn-fixed:hover {
    transform: scale(1.1) !important;
    background-color: #1ebea5 !important;
}

/* Pulsating Ring */
.pulse-ring {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    background-color: #25d366 !important;
    border-radius: 50% !important;
    z-index: -1 !important;
    animation: wa-pulse 2s infinite !important;
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}
/* --- UNIVERSAL MOBILE OPTIMIZATION --- */
@media screen and (max-width: 600px) {
    /* Navbar stack fix */
    .header-container {
        flex-direction: column !important;
        padding: 20px 10px !important;
        gap: 15px !important;
    }

    .nav-links {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px 15px !important;
        padding: 0 !important;
    }

    .nav-item {
        font-size: 11px !important;
        letter-spacing: 1px !important;
    }

    /* Hero & Text Resizing */
    h1, .section-title, .workfolio-title {
        font-size: 28px !important;
        line-height: 1.2 !important;
        padding: 0 15px !important;
    }

    /* Workfolio Circle Grid Fix */
    /* Agar aapke circles bahar ja rahe hain toh yeh unhe 2 per row kar dega */
    .circles-container, .category-grid {
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 15px !important;
        padding: 0 15px !important;
    }

    .creative-circle, .cat-circle {
        width: 100% !important; /* Container ki width lega */
        max-width: 150px !important;
        max-height: 150px !important;
        margin: 0 auto !important;
    }

    .circle-label, .cat-text {
        font-size: 10px !important;
        text-align: center !important;
    }

    .circle-content i {
        font-size: 1.5rem !important;
    }

    /* Footer fix */
    .footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
        gap: 20px !important;
    }

    /* Hidden elements on mobile for performance */
    .footer-circles {
        display: none !important;
    }
}