@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Playball&display=swap');

:root {
    --primary-color: #e3b433;
    --bg-color: #000000;
    --text-color: #FFFFFF;
    --nav-bg: rgba(20, 20, 20, 0.8);
    --transition-speed: 0.5s;
    --font-main: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    background:
        radial-gradient(circle at 50% 0%, rgba(227, 180, 51, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(227, 180, 51, 0.03) 0%, transparent 40%),
        #000000;
    background-attachment: fixed;
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Custom Cursor Styles */
.custom-cursor {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

.cursor-grow {
    width: 80px;
    height: 80px;
    background-color: rgba(227, 180, 51, 0.1);
    border: none;
}

.dot-hide {
    opacity: 0;
}

.global-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
}

main {
    position: relative;
    z-index: 5;
}

header {
    z-index: 99999 !important;
    background: rgba(10, 10, 10, 0.95) !important;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Global Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
}

.sub-heading {
    display: inline-block;
    background: rgba(227, 180, 51, 0.08);
    color: #e3b433;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    border: 1px solid rgba(227, 180, 51, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.section-header h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
    letter-spacing: -1px;
}

/* Gradient Text Support */
.gradient-text {
    background: linear-gradient(135deg, #96751c 0%, #e3b433 50%, #96751c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

section {
    scroll-margin-top: 100px;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 60px;
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
    border-radius: 0px;
    margin: 0 auto;
    right: 0;
}

/* Hover effect for normal state */
header:not(.scrolled):hover {
    width: 98%;
    top: 10px;
    padding: 20px 60px;
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scrolled State */
header.scrolled {
    top: 25px;
    width: 90%;
    max-width: 1200px;
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(15px) saturate(160%);
    -webkit-backdrop-filter: blur(15px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 10px 45px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

header.scrolled:hover {
    width: 92%;
    background: rgba(40, 40, 40, 0.9);
    border-color: rgba(227, 180, 51, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

h2.black.dark-title {
    color: black !IMPORTANT;
}

header.scrolled .logo img {
    height: 34px;
}

header.scrolled .logo {
    transform: scale(0.95);
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    line-height: 1;
}

.logo-text-highlight {
    color: #e3b433;
}

/* Navigation */
.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
    transform: translateY(-1px);
}

/* Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: #000;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.contact-btn:hover {
    color: #000;
    border-color: #fff;
    transform: translateY(-2px);
}

.contact-btn:hover::before {
    transform: scaleX(1);
}

.icon-btns {
    display: flex;
    gap: 12px;
}

.icon-btn {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.icon-btn:hover {
    background: #222;
    border-color: #e3b433;
    color: #e3b433;
    transform: rotate(10deg);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

/* Mobile Menu Container */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    transform: translateX(100%);
    visibility: hidden;
}

.mobile-menu.active {
    transform: translateX(0);
    visibility: visible;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: #e3b433;
}

.mobile-contact-btn {
    margin-top: 20px;
    padding: 15px 40px !important;
    background: linear-gradient(135deg, #96751c, #e3b433) !important;
    border-radius: 50px;
}

/* Hamburger Animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    background: #000;
    /* Fallback color */
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4) 0%, #000 100%);
    z-index: 1;
}

.hero .hero-bg-text {
    z-index: 1;
    font-size: 15vw;
    color: rgba(255, 255, 255, 0.2);
}

.hero .hero-mesh {
    z-index: 1;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.hero-content h1 {
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 25px;
    color: #fff;
    min-height: 2.3em;
    /* Reserve space for typing */
}

/* Typing cursor */
#typing-heading::after {
    content: '|';
    animation: blink 0.7s infinite;
    margin-left: 5px;
    color: #e3b433;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 750px;
    margin: 0 auto 40px;
}

.primary-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
    background: linear-gradient(135deg, #96751c, #e3b433);
    color: #fff;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(227, 180, 51, 0.3);
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f0c84a;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.primary-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(227, 180, 51, 0.5);
}

.primary-btn:hover::before {
    transform: scaleX(1);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.5;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: #fff;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    header {
        padding: 20px;
    }

    header.scrolled {
        width: 95%;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-actions .contact-btn,
    .header-actions .icon-btns {
        display: none;
    }
}

/* Services Marquee Slider */
.services-marquee {
    background: transparent;
    padding: 20px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 5;
}

.services-marquee::before,
.services-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.services-marquee::before {
    left: 0;
    background: linear-gradient(to right, #000, transparent);
}

.services-marquee::after {
    right: 0;
    background: linear-gradient(to left, #000, transparent);
}

.marquee-track {
    display: flex;
    overflow: hidden;
    user-select: none;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marqueeScroll 35s linear infinite;
    align-items: center;
}

.marquee-content span {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    padding: 0 30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.marquee-logo {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1) opacity(0.8);
    /* Make logo white/subtle */
    margin: 0;
}

.marquee-content .italic-text {
    font-style: italic;
    color: #e3b433;
    font-weight: 700;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Logo Slider Section */
.logo-slider {
    background: #fff;
    padding: 50px 0;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #eee;
}

.logo-slider .container {
    padding: 0;
    /* Slider track should be full width of its container but container is boxed */
}

.slider-container {
    width: 100%;
}

.logo-track {
    display: flex;
    width: calc(250px * 16);
    /* 16 items now */
    animation: scrollLogos 40s linear infinite;
    align-items: center;
}

.logo-item {
    width: 250px;
    /* Reduced to show more on screen */
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 0 20px;
    color: #333;
    font-weight: 700;
    font-size: 1.1rem;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.4s ease;
}

.logo-item i {
    font-size: 1.8rem;
    color: #000;
}

.logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    color: #e3b433;
}

.logo-item:hover i {
    color: #e3b433;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 8));
    }

    /* Scroll half the track (8 items) */
}

/* Services Slider Section */
/* =========================
   SERVICES SLIDER SECTION
========================= */
/* =========================
   SERVICES SLIDER SECTION
========================= */

.services-slider {
    background: #f6f4ef;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

/* Container */
.services-slider .container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 40px;
}

/* Header */
.services-slider .section-header {
    text-align: center;
    margin-bottom: 70px;
}

/* FIXED TEXT COLOR */
.services-slider .section-header h2 {
    color: #111111 !important;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -2px;
}

/* =========================
   CAROUSEL
========================= */

.services-grid {
    display: flex;
    gap: 30px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;

    cursor: grab;

    padding-bottom: 10px;
}

.services-grid:active {
    cursor: grabbing;
}

.services-grid::-webkit-scrollbar {
    display: none;
}

/* =========================
   CARD
========================= */

.service-card {
    flex: 0 0 380px;
    scroll-snap-align: start;

    transition: all 0.45s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

/* IMAGE */
.card-image {
    width: 100%;
    aspect-ratio: 4/5;

    overflow: hidden;
    border-radius: 30px;

    margin-bottom: 24px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.7s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.08);
}

/* INFO */
.card-info {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 12px;
}

/* FIXED TEXT COLOR */
.card-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111111;
}

/* FIXED TEXT COLOR */
.service-card p {
    color: #555555;
    line-height: 1.7;
    font-size: 1rem;
}

/* BUTTON */
.arrow-btn {
    width: 46px;
    height: 46px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    border: 1px solid #ddd;

    color: #111;

    background: #fff;

    transition: all 0.4s ease;
}

.arrow-btn:hover {
    background: linear-gradient(135deg, #96751c, #e3b433);
    color: #fff;
    border-color: transparent;

    transform: translateX(4px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

    .service-card {
        flex: 0 0 320px;
    }
}

@media (max-width: 768px) {

    .services-slider {
        padding: 80px 0;
    }

    .services-slider .container {
        padding-left: 20px;
    }

    .services-grid {
        gap: 20px;
    }

    .service-card {
        flex: 0 0 85%;
    }

    .services-slider .section-header h2 {
        font-size: 2.3rem;
    }

    .card-info h3 {
        font-size: 1.2rem;
    }
}

/* Industries Section */
/* Industries We Serve Section */
.industries-section {
    background: #000;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.industries-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.industry-box {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 60px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.industry-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    opacity: 0.03;
    /* Very subtle logo watermark */
    z-index: -1;
    transition: all 0.6s ease;
    pointer-events: none;
    filter: grayscale(100%) brightness(2);
}

.industry-icon-bg img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.industry-box .main-icon {
    font-size: 3rem;
    color: #e3b433;
    margin-bottom: 30px;
    display: inline-block;
    transition: all 0.5s ease;
    filter: drop-shadow(0 5px 15px rgba(227, 180, 51, 0.3));
}

.industry-box h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    transition: all 0.5s ease;
}

.industry-box p {
    color: #999;
    font-size: 1rem;
    line-height: 1.6;
    transition: all 0.5s ease;
}

/* Hover State */
.industry-box:hover {
    transform: translateY(-15px);
    background: #0f0f0f;
    border-color: rgba(227, 180, 51, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 20px rgba(227, 180, 51, 0.1);
}

.industry-box:hover .industry-icon-bg {
    color: rgba(227, 180, 51, 0.05);
    transform: translate(-50%, -50%) scale(1.2) rotate(-5deg);
}

.industry-box:hover .main-icon {
    transform: scale(1.2) translateY(-10px);
    filter: drop-shadow(0 10px 25px rgba(227, 180, 51, 0.6));
}

.industry-box:hover h3 {
    color: #e3b433;
}

.industry-box:hover p {
    color: #fff;
}

/* Add a subtle glow overlay on hover */
.industry-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(227, 180, 51, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.industry-box:hover::after {
    opacity: 1;
}

/* Responsive */
@media (max-width: 1200px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Global Mouse Mesh */
.global-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
    background: radial-gradient(circle at 50% 50%, rgba(227, 180, 51, 0.08) 0%, transparent 60%);
    transition: background 0.1s ease;
}


/* ==========================================================================
   Portfolio Page Styles
   ========================================================================== */

.portfolio-hero {
    padding: 180px 0 100px;
    background: #000;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(227, 180, 51, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.portfolio-hero .hero-content {
    position: relative;
    z-index: 1;
}

.portfolio-hero h1 {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    line-height: 1;
    margin-top: 20px;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 30%, #e3b433 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Filters */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-family: inherit;
}

.filter-btn:hover,
.filter-btn.active {
    background: #e3b433;
    border-color: #e3b433;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(227, 180, 51, 0.2);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 100px;
}

.portfolio-item {
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: #111;
}

.project-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 60%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    opacity: 0;
    transition: all 0.5s ease;
}

.project-info {
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-info .category {
    color: #e3b433;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.project-info h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
}

.project-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.view-project {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
}

.view-project:hover {
    gap: 15px;
    color: #e3b433;
}

/* Project Card Hover */
.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover .project-info {
    transform: translateY(0);
}

/* Consolidated CTA styles at the end of file */

/* Responsive Portfolio */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .project-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
    }

    .project-info {
        transform: translateY(0);
    }
}

/* ==========================================================================
   GLOBAL COMPREHENSIVE RESPONSIVE FIXES
   ========================================================================== */

@media (max-width: 1024px) {
    .container {
        padding: 0 25px;
    }
    
    .section-header {
        margin-bottom: 50px;
    }

    .section-header h2 {
        font-size: 3.2rem;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    /* Hero */
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 15px;
        display: flex;
        align-items: center;
    }
    
    .primary-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 2.4rem;
        line-height: 1.2;
    }
    
    .sub-heading {
        padding: 8px 18px;
        font-size: 0.75rem;
    }

    /* Choose Chat (In case bot.css needs help) */
    .choose-chat-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Industries */
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Success Stories Carousel */
    .story-card {
        flex: 0 0 calc(100% - 20px);
        padding: 20px;
    }
    
    .story-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .story-footer h3 {
        font-size: 1.2rem;
    }

    .case-study-btn {
        width: 100%;
        text-align: center;
    }

    /* Transformation Cards */
    .transformation-card {
        flex: 0 0 calc(100% - 10px);
    }
    
    .transformation-card .card-header {
        flex-direction: row; /* Keep arrow next to title or stack */
        align-items: center;
    }
    
    .transformation-card h3 {
        font-size: 1.2rem;
    }

    .carousel-nav .nav-btn {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .transformation-card {
        flex: 0 0 100%;
    }
    
    .story-card {
        flex: 0 0 100%;
    }
    
    .card-img-box {
        aspect-ratio: 16/10;
    }
    
    .story-image {
        aspect-ratio: 16/10;
    }
}

/* Transformation Services Carousel */
.transformation-services {
    background-color: #ffffff;
    padding: 100px 0;
    color: #111;
}

.transformation-services .section-header {
    margin-bottom: 60px;
}

.dark-title {
    color: #111111;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.1;
    font-weight: 800;
}

.dark-title .gradient-text {
    background: linear-gradient(135deg, #96751c 0%, #e3b433 50%, #96751c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.transformation-carousel-wrapper {
    position: relative;
    padding-bottom: 60px;
}

.transformation-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
    cursor: grab;
}

.transformation-carousel::-webkit-scrollbar {
    display: none;
}

.transformation-card {
    flex: 0 0 calc(33.333% - 20px);
    scroll-snap-align: start;
    transition: all 0.4s ease;
}

.card-img-box {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.transformation-card:hover .card-img-box img {
    transform: scale(1.1);
}

.transformation-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.transformation-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
}

.transformation-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.circle-arrow-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: transparent;
    color: #111;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.transformation-card:hover .circle-arrow-btn {
    background: #e3b433;
    border-color: #e3b433;
    color: #fff;
    transform: translateX(5px);
}

.transformation-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.transformation-nav .nav-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    color: #111;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.transformation-nav .nav-btn:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}

@media (max-width: 1024px) {
    .transformation-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .transformation-card {
        flex: 0 0 calc(100% - 10px);
    }
}


.industry-box h3 {
    font-size: 1.15rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
    transition: all 0.4s ease;
}

.industry-box p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    transition: all 0.4s ease;
}

.industry-box:hover p {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
}

/* Success Stories Section */
/* Success Stories Section */
.success-stories {
    background-color: #000;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.honeycomb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 50% 50%, rgba(227, 180, 51, 0.03) 0%, transparent 70%),
        url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1NiIgaGVpZ2h0PSIxMDAiIHZpZXdCb3g9IjAgMCA1NiAxMDAiPgo8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHN0cm9rZT0iIzIyMiIgc3Ryb2tlLXdpZHRoPSIxIj4KPHBhdGggZD0iTTI4IDEwMEw0IDg2VjU4bDI0LTE0IDI0IDE0djI4bC0yNCAxNHptMC02MGwtMjQtMTRWMTJMMjggMEw1MiAxMnYyOEwyOCA0MHoiLz4KPC9nPgo8L3N2Zz4=');
    opacity: 0.4;
    z-index: 1;
}

.success-stories .container {
    position: relative;
    z-index: 2;
}

.stories-wrapper {
    position: relative;
    width: 100%;
}

.stories-grid {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
}

.stories-grid::-webkit-scrollbar {
    display: none;
}

.story-card {
    flex: 0 0 calc(50% - 20px);
    scroll-snap-align: start;
    background: #0a0a0a;
    border-radius: 40px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.carousel-nav .nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(227, 180, 51, 0.2);
    background: rgba(10, 10, 10, 0.8);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    font-size: 1.2rem;
}

.carousel-nav .nav-btn:hover {
    background: #e3b433;
    border-color: #e3b433;
    color: #000;
    transform: scale(1.1);
}

.card-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    opacity: 0.02;
    pointer-events: none;
    z-index: 0;
    filter: grayscale(100%);
    transition: all 0.6s ease;
}

.story-card:hover .card-watermark {
    opacity: 0.04;
    transform: translate(-50%, -50%) scale(1.1);
}

.card-watermark img {
    width: 100%;
    height: auto;
}

.story-card:hover {
    transform: translateY(-15px);
    border-color: rgba(227, 180, 51, 0.3);
    background: #0f0f0f;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.story-image {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.story-card:hover .story-image img {
    transform: scale(1.1);
}

.story-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.story-footer h3 {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 800;
    line-height: 1.3;
}

.case-study-btn {
    display: inline-block;
    background: linear-gradient(135deg, #96751c, #e3b433);
    color: #fff;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(227, 180, 51, 0.2);
    white-space: nowrap;
    /* Fixes text wrapping */
    flex-shrink: 0;
    /* Prevents button from shrinking */
}

.case-study-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(227, 180, 51, 0.4);
    background: linear-gradient(135deg, #e3b433, #96751c);
}

.case-study-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.case-study-btn:hover {
    color: #e3b433;
    transform: scale(1.05);
}

.case-study-btn:hover::before {
    transform: scaleX(1);
}

@media (max-width: 992px) {
    .story-card {
        flex: 0 0 calc(100% - 20px);
    }

    .carousel-nav .nav-btn {
        width: 50px;
        height: 50px;
    }
}


/* Tools & Technologies Section */
.tools-section {
    background: #000;
    padding: 100px 0;
    position: relative;
}

.tools-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.tool-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.tool-tab.active,
.tool-tab:hover {
    background: linear-gradient(135deg, #96751c, #e3b433);
    border-color: #e3b433;
    box-shadow: 0 10px 20px rgba(227, 180, 51, 0.2);
}

.tools-grid-wrapper {
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tools-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.tool-hex {
    width: 140px;
    height: 160px;
    background: #111;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: default;
}

.tool-hex i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.tool-hex span {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.tool-hex:hover {
    background: #1a1a1a;
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 0 30px rgba(227, 180, 51, 0.2);
}

.tool-hex:hover i {
    color: #e3b433;
    transform: scale(1.1);
}

.tool-hex:hover span {
    color: #fff;
}

@media (max-width: 768px) {
    .tool-hex {
        width: 110px;
        height: 130px;
    }

    .tool-hex i {
        font-size: 1.8rem;
    }
}

/* Testimonials Section - Screenshot Styled */
.testimonials-section {
    background: #000;
    padding: 120px 60px;
    position: relative;
    overflow: hidden;
}

.testimonials-section .container {
    background: #080808;
    border: 1px solid rgba(227, 180, 51, 0.2);
    border-radius: 60px;
    padding: 100px 80px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

/* Corner Glows from screenshot */
.testimonials-section .container::before,
.testimonials-section .container::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(227, 180, 51, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.testimonials-section .container::before {
    top: -150px;
    right: -150px;
}

.testimonials-section .container::after {
    bottom: -150px;
    left: -150px;
}

/* Background Watermark for the whole section */
.testimonial-section-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

.testimonial-section-watermark img {
    width: 100%;
    height: auto;
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.testimonials-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #fff;
    letter-spacing: -2px;
}

.testimonials-content .section-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 45px;
    text-align: left;
    max-width: 500px;
}

/* Testimonial Card VIP - Screenshot Style */
.testimonial-card-wrapper {
    position: relative;
    z-index: 5;
}

.testimonial-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 50px;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s ease;
}

.testimonial-card:hover {
    border-color: rgba(227, 180, 51, 0.4);
    transform: translateY(-5px);
}

.quote-icon {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 4rem;
    color: rgba(227, 180, 51, 0.05);
}

.client-meta {
    margin-bottom: 30px;
}

.client-name {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 5px;
}

.client-title {
    font-size: 1rem;
    color: #e3b433;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.stars {
    color: #e3b433;
    font-size: 1rem;
    display: flex;
    gap: 6px;
}

.testimonial-text {
    font-size: 1.2rem;
    color: white;
    line-height: 1.7;
    margin-bottom: 35px;
    font-style: italic;
}

.client-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-badge {
    width: 50px;
    height: 50px;
    background: #000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #fff;
    font-size: 1.2rem;
    border: 1px solid rgba(227, 180, 51, 0.3);
}

.brand-url {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Nav Buttons */
.testimonial-nav {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: flex-end;
}

.nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: #e3b433;
    color: #000;
    border-color: #e3b433;
    transform: scale(1.1);
}

/* Testimonials Section Styling */
.contact-btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #96751c, #e3b433);
    color: #fff !important;
    text-decoration: none !important;
    padding: 16px 40px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 25px rgba(227, 180, 51, 0.3);
    margin-top: 10px;
}

.contact-btn-gold:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(227, 180, 51, 0.5);
    background: linear-gradient(135deg, #e3b433, #96751c);
}

.contact-btn-gold i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.contact-btn-gold:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1024px) {
    .testimonials-section {
        padding: 60px 20px;
    }

    .testimonials-section .container {
        padding: 60px 30px;
    }

    .testimonials-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .testimonials-content .section-desc {
        margin: 0 auto 30px;
    }

    .testimonial-card {
        padding: 40px 30px;
    }

    .testimonial-nav {
        justify-content: center;
    }
}

.dot-ring::after {
    content: '';
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #96751c, #e3b433);
    border-radius: 50%;
}

.dot-small {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #96751c, #e3b433);
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
}

.testimonial-text {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 35px;
    font-style: normal;
}

.client-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 25px;
}

.brand-url {
    font-size: 0.85rem;
    color: #999;
    font-weight: 600;
    margin-top: 5px;
    text-decoration: underline;
}

.testimonial-nav {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.nav-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 50px;
    height: 50px;
    border: none;
    background: #6c757d;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #96751c, #e3b433);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: inherit;
}

.nav-btn:hover {
    transform: scale(1.1);
}

.nav-btn:hover::before {
    transform: scaleX(1);
}

@media (max-width: 1024px) {
    .testimonials-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .testimonials-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .testimonial-card {
        padding: 30px;
    }
}


/* Go-To Tools Section */

/* Go-To Tools Section */
.go-to-tools {
    background: #000000;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.honeycomb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at center, rgba(227, 180, 51, 0.05) 0%, transparent 70%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66L28 100' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: cover, 56px 100px;
    z-index: 1;
    pointer-events: none;
}

.tools-dot-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.orange-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #96751c, #e3b433);
    border-radius: 50%;
    position: relative;
}

.orange-dot::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 1px solid #e3b433;
    border-radius: 50%;
    opacity: 0.5;
}

.go-to-tools .section-header {
    position: relative;
    z-index: 2;
}

.go-to-tools .section-header h2 {
    color: #fff;
    font-size: clamp(2.5rem, 6vw, 3.8rem);
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
}

.go-to-tools .section-header p {
    color: #aaa;
    max-width: 650px;
    margin: 0 auto 80px;
    font-size: 1.15rem;
    line-height: 1.6;
}

.tools-slider-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

/* Fade Edges for Slider */
.tools-slider-wrapper::before,
.tools-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.tools-slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #000000, transparent);
}

.tools-slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #000000, transparent);
}

.tools-glow-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 50px;
    padding: 30px 0;
    width: max-content;
}

.tools-glow-row::-webkit-scrollbar {
    display: none;
}

.tool-circle {
    flex: 0 0 110px;
    height: 110px;
    background: #0a0a0a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.8rem;
    color: #fff;
    position: relative;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.tool-circle i {
    font-size: 2.2rem;
    z-index: 2;
}

/* Individual Halo Glows */
.tool-circle::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.4;
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    filter: blur(20px);
}

.tool-circle.shopify::before {
    background: #95BF47;
    box-shadow: 0 0 40px #95BF47;
}

.tool-circle.wordpress::before {
    background: #21759B;
    box-shadow: 0 0 40px #21759B;
}

.tool-circle.figma::before {
    background: linear-gradient(45deg, #F24E1E, #A259FF, #1ABCFE);
    box-shadow: 0 0 40px #A259FF;
}

.tool-circle.ai::before {
    background: #FF9A00;
    box-shadow: 0 0 40px #FF9A00;
}

.tool-circle.ps::before {
    background: #00A8FF;
    box-shadow: 0 0 40px #00A8FF;
}

.tool-circle.bigcommerce::before {
    background: #ffffff;
    box-shadow: 0 0 40px #ffffff;
    opacity: 0.2;
}

.tool-circle.magento::before {
    background: #EE672F;
    box-shadow: 0 0 40px #EE672F;
}

.tool-circle:hover {
    transform: translateY(-10px) scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.tool-circle:hover::before {
    opacity: 0.8;
    filter: blur(25px);
}

.tool-circle:hover {
    transform: translateY(-10px) scale(1.1);
    background: #1a1a1a;
}

.tool-circle:hover::before {
    opacity: 1;
    filter: blur(20px);
}

@media (max-width: 768px) {
    .tools-glow-row {
        gap: 25px;
    }

    .tool-circle {
        width: 65px;
        height: 65px;
        font-size: 1.2rem;
    }

    .tool-circle i {
        font-size: 1.4rem;
    }
}

/* Innovation Section */
.about-innovation {
    background: #ffffff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    color: #000;
}

.grid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.innovation-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.innovation-img {
    flex: 1;
    perspective: 1000px;
    display: flex;
    justify-content: center;
}

.innovation-img .img-wrapper {
    width: 100%;
    max-width: 350px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.innovation-img.left .img-wrapper {
    transform: rotateY(20deg) rotateX(10deg);
}

.innovation-img.right .img-wrapper {
    transform: rotateY(-20deg) rotateX(10deg);
}

.innovation-img:hover .img-wrapper {
    transform: rotateY(0) rotateX(0) scale(1.05);
}

.innovation-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.innovation-content {
    flex: 1.5;
    text-align: center;
    padding: 0 20px;
}

.innovation-content .sub-heading {
    color: #888;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.innovation-content h2 {
    color: #111;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.innovation-content p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-innovation .primary-btn {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #96751c, #e3b433);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(227, 180, 51, 0.2);
}

.about-innovation .primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(227, 180, 51, 0.3);
    background: linear-gradient(135deg, #96751c, #e3b433);
}

/* Responsive */
@media (max-width: 1100px) {
    .innovation-grid {
        flex-direction: column;
        text-align: center;
    }

    .innovation-img {
        order: 2;
    }

    .innovation-content {
        order: 1;
        margin-bottom: 50px;
    }

    .innovation-img.right {
        order: 3;
    }

    .innovation-img.left .img-wrapper,
    .innovation-img.right .img-wrapper {
        transform: none;
    }
}

/* Growth Process Section */
.growth-process {
    background: #000000;
    padding: 120px 0 0;
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center;
}

.stars-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(1px 1px at 20px 30px, #eee, rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 40px 70px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 50px 160px, #ddd, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 90px 40px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 130px 80px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 160px 120px, #ddd, rgba(0, 0, 0, 0));
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 0.3;
    pointer-events: none;
}

.growth-process .section-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.process-wrapper {
    position: relative;
    min-height: 600px;
}

.process-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.process-item {
    transition: transform 0.4s ease;
}

.process-item:hover {
    transform: translateY(-10px);
}

.process-icon {
    width: 80px;
    height: 80px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.process-item:hover .process-icon {
    background: linear-gradient(135deg, #96751c, #e3b433);
    border-color: #e3b433;
    box-shadow: 0 0 20px rgba(227, 180, 51, 0.4);
}

.process-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.process-item p {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.6;
    max-width: 250px;
    margin: 0 auto;
}

.globe-container {
    position: absolute;
    bottom: -350px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    z-index: 1;
}

.globe-glow {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.25) 0%, transparent 60%);
    filter: blur(40px);
    border-radius: 50%;
}

.rotating-globe {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 50%;
    overflow: hidden;
    position: relative;

}

.globe-wireframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    animation: rotateGlobe 20s linear infinite;
    filter: brightness(1.2);
}

@keyframes rotateGlobe {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .process-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .globe-container {
        width: 600px;
        height: 600px;
        bottom: -250px;
    }
}

@media (max-width: 600px) {
    .process-items {
        grid-template-columns: 1fr;
    }

    .globe-container {
        width: 400px;
        height: 400px;
        bottom: -150px;
    }
}

/* Stats Counter Section */
.stats-counter {
    background: linear-gradient(135deg, #96751c, #e3b433);
    padding: 60px 0;
    color: #fff;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    flex: 1;
}

.stat-num-box {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 5px;
}

.stat-number {
    font-size: clamp(2.5rem, 6vw, 3.8rem);
    font-weight: 800;
    line-height: 1;
}

.stat-suffix {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-left: 2px;
}

.stat-item p {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    text-transform: capitalize;
}

.stat-divider {
    width: 2px;
    height: 80px;
    background: rgba(255, 255, 255, 0.4);
    margin: 0 20px;
}

/* Responsive */
@media (max-width: 991px) {
    .stats-grid {
        flex-wrap: wrap;
        gap: 30px;
    }

    .stat-item {
        flex: 0 0 45%;
    }

    .stat-divider {
        display: none;
    }
}

@media (max-width: 500px) {
    .stat-item {
        flex: 0 0 100%;
    }
}

/* Digital Trends Section */
.digital-trends {
    background: #000000;
    padding: 120px 0;
    color: #fff;
}

.digital-trends .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.digital-trends .section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
}

.trends-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.trend-card {
    background: transparent;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-align: center;
}

.trend-card:hover {
    transform: translateY(-15px);
}

.trend-image {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
    background: #111;
}

.trend-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.trend-card:hover .trend-image img {
    transform: scale(1.1);
}

.trend-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #fff;
    padding: 0 10px;
}

.trend-content p {
    font-size: 1rem;
    color: #aaa;
    line-height: 1.6;
    padding: 0 15px;
}

/* Responsive */
@media (max-width: 991px) {
    .trends-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .trends-grid {
        grid-template-columns: 1fr;
    }

    .trend-card {
        max-width: 450px;
        margin: 0 auto;
    }
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #96751c, #e3b433);
    padding: 100px 0;
    color: #fff;
}

.contact-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-form-side {
    flex: 1.2;
}

.appointment-tag {
    background: linear-gradient(135deg, #96751c, #e3b433);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 25px;
}

.contact-form-side h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 15px;
}

.contact-sub {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 25px;
    border-radius: 12px;
    border: none;
    background: #fff;
    font-family: inherit;
    font-size: 1rem;
    color: #333;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #e3b433;
    background: rgba(255, 255, 255, 0.05);
}

.contact-form textarea {
    resize: none;
}

.captcha-mock {
    background: #f9f9f9;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 300px;
    margin-bottom: 30px;
    border: 1px solid #ddd;
    color: #555;
}

.captcha-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.captcha-logo {
    text-align: center;
    font-size: 0.7rem;
    opacity: 0.6;
}

.captcha-logo i {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 2px;
    color: #4c8bf5;
}

.submit-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 16px 50px;
    background: linear-gradient(135deg, #96751c, #e3b433);
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(150, 117, 28, 0.3);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.submit-btn:hover {
    color: #96751c;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(150, 117, 28, 0.4);
}

.submit-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Calendly Side */
.contact-calendly-side {
    flex: 1;
}

.calendly-mock {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    color: #111;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.calendly-header {
    padding: 30px;
    border-bottom: 1px solid #eee;
}

.calendly-logo {
    font-weight: 800;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.meeting-type {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.duration {
    color: #666;
    font-weight: 600;
}

.calendly-calendar {
    padding: 30px;
}

.calendly-calendar h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    gap: 15px 5px;
}

.day-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: #888;
    margin-bottom: 10px;
}

.calendar-grid div:not(.day-label) {
    font-size: 0.95rem;
    font-weight: 600;
    padding: 8px 0;
    cursor: pointer;
}

.calendar-grid div.active {
    background: linear-gradient(135deg, #96751c, #e3b433);
    color: #fff;
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 50px;
    }
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Footer Section */
.main-footer {
    background: #000000;
    padding: 80px 0 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 5;
}

.footer-col h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: #e3b433;
    padding-left: 5px;
}

.info-col .footer-logo img {
    height: 45px;
    margin-bottom: 25px;
}

.contact-info p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    display: flex;
    gap: 12px;
}

.contact-info i {
    color: #e3b433;
    margin-top: 5px;
}

.contact-info a {
    color: inherit;
    text-decoration: none;
}

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

.footer-socials a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: linear-gradient(135deg, #96751c, #e3b433);
    transform: translateY(-3px);
}

.footer-bg-text {
    font-size: clamp(5rem, 15vw, 13rem);
    font-weight: 900;
    color: #e3b4336e;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
    text-align: center;
    line-height: 0.8;
    margin-top: 40px;
    text-transform: uppercase;
    pointer-events: none;
    letter-spacing: 5px;
    position: relative;
}

/* Background Glow */
.main-footer::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(227, 180, 51, 0.08) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 1;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
    background: #000;
    /* Ensure visibility */
}

.footer-policies a {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-policies a:hover {
    color: #fff;
}

.footer-policies .sep {
    color: #444;
    margin: 0 10px;
}

.footer-copyright {
    color: #888;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bg-text {
        font-size: 4rem;
    }
}

/* ---------------------------------
   ANIMATIONS
------------------------------------ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Contact Styles Consolidated */

/* Locations Section */
.locations-section {
    background: #fff;
    padding: 100px 0;
    color: #000;
}

.locations-section .sub-heading {
    display: block;
    text-align: center;
    color: #666;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
}

.locations-section .section-header h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #000;
    margin-bottom: 60px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.location-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.location-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.loc-icon {
    width: 60px;
    height: auto;
    margin-bottom: 20px;
    opacity: 0.8;
}

.location-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.location-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Contact Page Form Section */
.contact-page-form-section {
    padding: 120px 0;
    background: url('media/dark_office_bg.png') no-repeat center center/cover;
    position: relative;
}

.contact-page-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 10, 0.7);
    z-index: 1;
}

.form-box-wrapper {
    background: linear-gradient(135deg, #96751c, #e3b433);
    border-radius: 10px;
    padding: 60px;
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.form-box-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-us-tag {
    font-weight: 700;
    font-size: 1rem;
    display: block;
    margin-bottom: 10px;
}

.form-box-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
}

.contact-form-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-inner input,
.contact-form-inner textarea {
    width: 100%;
    padding: 15px 20px;
    border-radius: 5px;
    border: none;
    background: #fff;
    font-family: inherit;
    font-size: 1rem;
    color: #333;
}

.contact-form-inner input:focus,
.contact-form-inner textarea:focus {
    outline: 2px solid #fff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.captcha-mockup {
    background: #f9f9f9;
    color: #333;
    padding: 15px 20px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 300px;
    border: 1px solid #ccc;
}

.captcha-mockup label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.9rem;
}

.captcha-mockup input[type="checkbox"] {
    width: 24px;
    height: 24px;
    padding: 0;
    margin: 0;
}

.captcha-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.65rem;
    color: #555;
}

.captcha-logo i {
    font-size: 1.5rem;
    color: #4285F4;
    margin-bottom: 2px;
}

.form-submit {
    align-self: center;
    margin-top: 10px;
    width: auto;
}

@media (max-width: 992px) {
    .contact-page-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-hero-content p {
        margin: 0 auto 35px;
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .form-box-wrapper {
        padding: 40px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }
}

/* About Styles Consolidated */

/* ---------------------------------
   ABOUT PAGE STYLES
------------------------------------ */
.about-page-hero {
    padding: 180px 0 100px;
    background: #0f1016;
    color: #fff;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.about-page-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 90%;
}

.about-hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Mission & Vision Section */
.mission-section {
    padding: 80px 0;
    background: #050505;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(150, 117, 28, 0.2), rgba(227, 180, 51, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.mission-card:hover {
    transform: translateY(-10px);
    border-color: rgba(227, 180, 51, 0.3);
}

.mission-card:hover::before {
    opacity: 1;
}

.mission-card i {
    font-size: 3rem;
    color: #e3b433;
    margin-bottom: 20px;
}

.mission-card h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.mission-card p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: #fff;
    color: #000;
}

.values-section .sub-heading {
    display: block;
    text-align: center;
    color: #666;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
}

.values-section .section-header h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #000;
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: #f9f9fa;
    border: 1px solid #eee;
    padding: 40px 20px;
    text-align: center;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.value-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
    border-color: #e3b433;
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #96751c, #e3b433);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.value-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .about-page-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-hero-content p {
        margin: 0 auto 35px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Impact Grid Section */
.story-impact-section {
    padding: 100px 0;
    background: #000;
    text-align: center;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.impact-item {
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.impact-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.impact-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }

    .impact-item {
        aspect-ratio: 16/9;
    }
}

/* --- About Page Global Responsiveness --- */
@media (max-width: 992px) {
    .about-hero-custom .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .about-hero-custom h1 {
        font-size: 3.5rem;
    }

    .about-hero-custom::before {
        font-size: 25vw;
        top: 20%;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-custom {
        padding: 150px 0 80px !important;
    }

    .about-hero-custom h1 {
        font-size: 2.8rem;
    }

    .about-hero-custom p {
        margin: 0 auto 30px;
        font-size: 1rem;
    }

    .about-hero-custom .contact-hero-image::before {
        display: none;
        /* Hide floating border on mobile for cleaner look */
    }

    .impact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .mission-card {
        padding: 30px;
    }

    .mission-card h2 {
        font-size: 1.6rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-divider {
        display: none;
    }

    .about-btns {
        flex-direction: column;
        width: 100%;
    }

    .about-btns .primary-btn,
    .about-btns .outline-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-hero-custom h1 {
        font-size: 2.2rem;
    }

    .about-hero-custom::before {
        display: none;
    }
}

/* --- Home Page Global Responsiveness --- */
@media (max-width: 992px) {
    .header-container {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .innovation-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .innovation-img {
        display: none;
        /* Hide side images on tablet for better focus */
    }

    .innovation-img.left {
        display: block;
        /* Show only one image */
        order: 2;
    }

    .innovation-content {
        order: 1;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content {
        text-align: center;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    .hero-btns .primary-btn {
        width: 100%;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .process-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .process-items {
        grid-template-columns: 1fr;
    }

    .globe-container {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }

    .trends-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        gap: 40px;
    }

    .calendly-mock {
        padding: 15px;
    }

    .meeting-type {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .footer-col h3 {
        font-size: 1.3rem;
    }
}

/* ==========================================================================
   Portfolio Page Styles
   ========================================================================== */

.portfolio-hero,
.about-hero-custom,
.contact-page-hero {
    padding: 220px 0 120px;
    background: #000;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Ensure container is centered in all flex heroes */
.portfolio-hero .container,
.about-hero-custom .container,
.contact-page-hero .container {
    width: 100%;
    max-width: 1000px;
    /* Constrain width for better centering of text */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
    /* Base opacity */
    z-index: 0;
    pointer-events: none;
    letter-spacing: 1.5vw;
    text-transform: uppercase;
    white-space: nowrap;
    animation: watermarkFloat 15s ease-in-out infinite;
}

@keyframes watermarkFloat {

    0%,
    100% {
        opacity: 0.15;
        letter-spacing: 1.5vw;
    }

    50% {
        opacity: 0.25;
        letter-spacing: 2.5vw;
    }
}

.hero-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(at 0% 0%, rgba(227, 180, 51, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(227, 180, 51, 0.03) 0px, transparent 50%);
    z-index: 0;
    opacity: 0.8;
}

.hero-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(227, 180, 51, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.portfolio-hero .hero-content {
    position: relative;
    z-index: 1;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    max-width: 900px;
    margin: 0 auto !important;
}

.portfolio-hero .sub-heading {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    margin-bottom: 20px !important;
    width: 100% !important;
}

.portfolio-hero h1 {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    line-height: 1.1;
    margin-top: 10px;
    color: #fff;
    text-align: center;
}

.portfolio-hero p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 20px auto 0;
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 30%, #e3b433 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* VIP Filter Tabs Design */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 0 auto 60px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: 100px;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.filter-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    font-family: 'Outfit', sans-serif;
    position: relative;
    z-index: 1;
}

.filter-btn:hover {
    color: #fff;
}

.filter-btn.active {
    background: #e3b433;
    color: #000;
    box-shadow: 0 10px 20px rgba(227, 180, 51, 0.3);
    transform: scale(1.05);
}

/* Add a glowing effect for active button */
.filter-btn.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #e3b433;
    filter: blur(15px);
    opacity: 0.3;
    z-index: -1;
    border-radius: inherit;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 100px;
}

.portfolio-item {
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: #111;
    cursor: pointer;
}

.project-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 60%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    opacity: 0;
    transition: all 0.5s ease;
}

.project-info {
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-info .category {
    color: #e3b433;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.project-info h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
}

.project-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.view-project {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
}

.view-project:hover {
    gap: 15px;
    color: #e3b433;
}

/* Project Card Hover */
.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover .project-info {
    transform: translateY(0);
}

/* CTA Section - VIP Upgrade with Gradient */
.cta-section {
    padding: 100px 0;
}

.cta-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 50%, #1a1a1a 100%);
    background-size: 200% 200%;
    animation: gradientFlow 10s ease infinite;
    border-radius: 50px;
    padding: 100px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(227, 180, 51, 0.3);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), 0 0 20px rgba(227, 180, 51, 0.1);
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(227, 180, 51, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(227, 180, 51, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.cta-card .cta-content {
    position: relative;
    z-index: 2;
}

.cta-card h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 800;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.cta-card p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.25rem;
    line-height: 1.6;
}

.cta-card .primary-btn {
    padding: 22px 65px;
    font-size: 1.2rem;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #e3b433, #96751c);
    border: none;
    box-shadow: 0 15px 40px rgba(227, 180, 51, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta-card .primary-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(227, 180, 51, 0.7);
}

/* Responsive Portfolio */
@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .project-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
    }

    .project-info {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .testimonials-wrapper { flex-direction: column; text-align: center; gap: 50px; }
    .testimonial-card-wrapper { width: 100%; }
    .testimonial-card { padding: 40px 25px; }
    .innovation-grid { grid-template-columns: 1fr; gap: 40px; }
    .innovation-img { display: none; }
    .innovation-content { text-align: center; }
    
    /* Hide Orbit System on Mobile */
    .orbit-section { display: none !important; }
    
    .tool-circle { width: 80px; height: 80px; font-size: 1.2rem; }
}
