: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; }
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%; }

/* 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); }



.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: 768px) { .circles-container { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .circles-container { grid-template-columns: 1fr; } }

/* ================= FOOTER STYLING ================= */

.brandcore-footer {
  background: #0b0b0b;
  color: #ccc;
  font-family: 'Poppins', sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* CTA */
.footer-cta {
  text-align: center;
  padding: 80px 0 50px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-cta h2 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 25px;
}

.cta-btn {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid #ff6b00;
  color: #ff6b00;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #ff6b00;
  color: #000;
}
.brandcore-footer,
.footer-credits {
  background: #0b0b0b !important;
  color: #ccc !important;
}

.footer-credits a {
  color: #ccc !important;
  text-decoration: none !important;
}

/* MAIN FOOTER */
.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 60px 0;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-logo {
  font-size: 24px;
  color: #fff;
  margin-bottom: 15px;
}

.footer-logo span {
  color: #ff6b00;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ff6b00;
  padding-left: 5px;
}

/* Social */
.social-icons {
  margin-top: 15px;
}

.social-icons a {
  margin-right: 10px;
  color: #ccc;
  font-size: 16px;
  transition: 0.3s ease;
}

.social-icons a:hover {
  color: #ff6b00;
  transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 15px 0;
}

.bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.bottom-links a {
  margin-left: 20px;
  color: #888;
  text-decoration: none;
  font-size: 13px;
}

.bottom-links a:hover {
  color: #ff6b00;
}

/* Responsive */
@media(max-width: 768px){
  .bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .bottom-links {
    margin-top: 10px;
  }
}
.footer-credits {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 18px 0;
  font-family: 'Poppins', sans-serif;
}

.credits-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: #777;
}

.footer-credits a {
  color: #777;
  text-decoration: none;
  margin-right: 15px;
  transition: 0.3s ease;
}

.footer-credits a:hover {
  color: #ff6b00;
}

.highlight {
  color: #ff6b00;
  font-weight: 500;
}

.credits-right span {
  cursor: pointer;
  transition: 0.3s ease;
}

.credits-right span:hover {
  opacity: 0.8;
}

/* Mobile */
@media(max-width: 768px){
  .credits-container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* 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: 768px) {
    .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;
}
.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: 768px) {
    /* Navbar stack fix */
    .header-container {
        width: 100%;
        flex-direction: column !important;
        padding: 20px 10px !important;
        gap: 15px !important;
        margin: auto;
    }

    .nav-links {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px 15px !important;
        padding: 0 !important;
        align-self: auto;
    }

    .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;
    }
}
/* ================= MOBILE HAMBURGER ================= */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--black);
    transition: 0.4s cubic-bezier(0.16,1,0.3,1);
}

/* Animate into X */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(6px);
}

.hamburger.active span:nth-child(2) {
    transform: rotate(-45deg) translateY(-6px);
}

/* Mobile Fullscreen Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
    z-index: 1000;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu li {
    margin: 30px 0;
}

.mobile-menu a {
    text-decoration: none;
    color: #fff;
    font-size: 28px;
    font-weight: 300;
    transition: 0.3s;
}

.mobile-menu a:hover {
    color: var(--orange);
}

/* ONLY MOBILE */
@media (max-width: 900px) {

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
        position: absolute;
        right: 5%;
        top: 50%;
        transform: translateY(-50%);
    }
}
/* FORCE DESKTOP HIDE */
.hamburger {
    display: none !important;
}

/* ONLY SHOW IN MOBILE */
@media (max-width: 900px) {

    .nav-links {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
        position: absolute;
        right: 5%;
        top: 50%;
        transform: translateY(-50%);
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 1100;
    }
}
/* ================= CREATIVE PROCESS ================= */

.process-intro {
  padding-top: 220px;
  text-align: center;
}

.process-main-title {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.1;
}

.process-stack {
  position: relative;
}

.process-block {
  position: relative;
  padding: 180px 0;
  overflow: hidden;
}

.process-block.dark {
  background: var(--black);
  color: var(--white);
}

.process-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}

.process-left h2 {
  font-size: 3rem;
  font-weight: 700;
}

.process-right {
  max-width: 500px;
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.8;
}

/* Huge Background Number */
.process-bg-number {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  font-size: 15rem;
  font-weight: 900;
  color: rgba(242,101,34,0.05);
  pointer-events: none;
  user-select: none;
}

/* Hover subtle motion */
.process-block:hover .process-left h2 {
  color: var(--orange);
  transition: 0.4s ease;
}

/* Responsive */
@media (max-width: 900px) {

  .process-main-title {
    font-size: 2.5rem;
  }

  .process-flex {
    flex-direction: column;
    gap: 40px;
  }

  .process-bg-number {
    font-size: 6rem;
    left: 5%;
  }

}