:root {
    --v2-primary: #FF6B35;
    --v2-accent: #E85D2C;
    --v2-success: #10B981;
    --v2-bg-pure: #FFFFFF;
    --v2-bg-soft: #FFF7F4;
    --v2-bg-glass: rgba(255, 255, 255, 0.7);
    --v2-text-dark: #100602;
    --v2-text-muted: #100602;
    --v2-border: #FFDED4;
    --v2-gradient-text: linear-gradient(135deg, var(--v2-primary), #FF9E64);
    --v2-gradient-bg: linear-gradient(135deg, #FFF0EB 0%, var(--v2-bg-soft) 100%);
    --v2-font-display: 'Outfit', sans-serif;
    --v2-font-body: 'Plus Jakarta Sans', sans-serif;
    --v2-radius-sm: 12px;
    --v2-radius-md: 24px;
    --v2-radius-lg: 40px;
    --v2-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --v2-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    --v2-shadow-glass: 0 25px 50px -12px rgba(15, 23, 42, 0.08);
}

/* 2. Base Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.theme-light-premium {
    font-family: var(--v2-font-body);
    background-color: var(--v2-bg-pure);
    color: var(--v2-text-muted);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.no-scroll {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--v2-font-display);
    color: var(--v2-text-dark);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

p {
    font-size: 18px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Text Utilities */
.text-accent {
    color: var(--v2-accent);
}

.text-success {
    color: var(--v2-success);
}

.text-gradient-v2 {
    background: var(--v2-gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Background Utilities */
.bg-success-light {
    background: rgba(16, 185, 129, 0.1);
}

.bg-accent-light {
    background: rgba(59, 130, 246, 0.1);
}

/* Buttons */
.btn-primary-v2 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--v2-primary);
    color: white;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: var(--v2-font-display);
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline-v2 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: var(--v2-text-dark);
    padding: 14px 28px;
    border-radius: 100px;
    font-family: var(--v2-font-display);
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--v2-border);
    transition: all 0.3s ease;
}

.btn-outline-v2:hover {
    border-color: var(--v2-text-dark);
    background: var(--v2-bg-soft);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}

/* Utilities */
.bg-soft-v2 {
    background-color: var(--v2-bg-soft);
}

.center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* .mb-3 {
    margin-bottom: 1rem;
} */

.mt-5 {
    margin-top: 3rem;
}

.max-w-700 {
    max-width: 700px;
}

/* Premium Glass Component */
.glass {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--v2-shadow-md);
    transition: all 0.3s ease;
}

.glass:hover {
    transform: translateY(-5px);
    box-shadow: var(--v2-shadow-glass);
    background: rgba(255, 255, 255, 0.8);
}

/* 3. Header */
.header-v2 {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    /* background: var(--v2-bg-glass); */
    background-color: #ffffff;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo-v2-wrapper {
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    padding: 0;
    border-radius: 10px;
    max-width: 240px;
}

.header-v2 .nav-btn-mobile {
    display: none;
}

.nav-logo {
    /* height: 45px; */
    height: 60px;
    width: auto;
    display: block;
}

.footer-logo-v2 {
    height: 80px;
    border-radius: 10px;
    width: auto;
    display: block;
}

.footer-v2 .logo-v2-wrapper {
    background-color: transparent;
    padding: 0;
}

.nav-v2 {
    display: flex;
    gap: 40px;
}

.nav-btn-mobile {
    display: none;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--v2-text-dark);
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-nav-toggle i {
    width: 28px;
    height: 28px;
}

/* Mobile Middle Phone */
.mobile-middle-phone {
    display: none;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    background-color: var(--v2-primary);
    padding: 5px 10px;
    border-radius: 100px;
    text-decoration: none;
    margin: 0 auto;
    white-space: nowrap;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.2);
}

.mobile-middle-phone i {
    width: 16px;
    height: 16px;
    color: #ffffff;
}

@media (max-width: 991px) {
    .mobile-middle-phone {
        display: flex;
    }

    .mobile-nav-toggle {
        display: block;
    }
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 23, 8, 0.4);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}


.nav-link {
    font-family: var(--v2-font-body);
    font-weight: 500;
    font-size: 15px;
    color: var(--v2-text-muted);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--v2-text-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--v2-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 20px;
}

/* 4. Hero Section */
.hero-v2 {
    padding: 200px 0 120px;
    position: relative;
    background: var(--v2-bg-soft);
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}


/* .shape-2 {
    width: 500px;
    height: 500px;
    background: #EBF4FF;
    bottom: -100px;
    left: -200px;
} */

.hero-grid-v2 {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge-glass {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid var(--v2-border);
    font-weight: 600;
    font-size: 13px;
    color: var(--v2-text-dark);
    /* margin-bottom: 30px; */
    box-shadow: var(--v2-shadow-sm);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--v2-primary);
    border-radius: 50%;
    animation: pulse-v2 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes pulse-v2 {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 94, 39, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(229, 123, 84, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.hero-title-v2 {
    font-size: clamp(48px, 6vw, 76px);
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.hero-subtitle-v2 {
    font-size: 18px;
    max-width: 540px;
    margin-bottom: 40px;
}

.hero-actions-v2 {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.hero-trust-metrics {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--v2-border);
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric strong {
    font-family: var(--v2-font-display);
    font-size: 24px;
    color: var(--v2-text-dark);
    font-weight: 700;
}

.metric span {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-divider {
    width: 1px;
    height: 30px;
    background: var(--v2-border);
}

/* Hero Visual - Circle & Rings */
.hero-visual-v2 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-circle-container {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Rotating Rings */
.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed var(--v2-primary);
    opacity: 0.3;
}

.ring-outer {
    width: 550px;
    height: 550px;
    animation: rotate-ring 40s linear infinite;
}

.ring-inner {
    width: 420px;
    height: 420px;
    border: 1px solid var(--v2-border);
    animation: rotate-ring 30s linear infinite reverse;
    opacity: 0.6;
}

@keyframes rotate-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Orbiting Icons */
.orbit-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--v2-bg-pure);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--v2-shadow-md);
    border: 1px solid var(--v2-border);
    z-index: 10;
}

.icon-1 {
    top: 10px;
    left: 80px;
    animation: float-v2 4s ease-in-out infinite alternate;
}

.icon-2 {
    bottom: 50px;
    right: -10px;
    animation: float-v2 5s ease-in-out infinite alternate-reverse;
}

.icon-3 {
    top: 180px;
    right: -20px;
    animation: float-v2 6s ease-in-out infinite alternate;
}

.icon-4 {
    bottom: 120px;
    left: -10px;
    animation: float-v2 4.5s ease-in-out infinite alternate-reverse;
}

/* Main Circle Frame */
.circle-frame {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 5;
    background: var(--v2-bg-glass);
    border: 4px solid var(--v2-bg-pure);
    box-shadow: var(--v2-shadow-glass);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    mix-blend-mode: darken;
    /* Ensures the white background blends nicely */
}

.float-card {
    position: absolute;
    background: var(--v2-bg-pure);
    padding: 16px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--v2-shadow-glass);
    border: 1px solid var(--v2-border);
    animation: float-v2 6s ease-in-out infinite alternate;
}

@keyframes float-v2 {
    to {
        transform: translateY(-15px);
    }
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-label {
    font-size: 13px;
    font-weight: 600;
}

.card-value {
    font-family: var(--v2-font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--v2-text-dark);
}

.card-revenue {
    bottom: -20px;
    left: -40px;
    z-index: 20;
}

/* 5. Process Section */
.process-v2 {
    padding: 60px 0;
    background: var(--v2-bg-pure);
}

.section-head-v2 {
    max-width: 600px;
    /* margin-bottom: 70px; */
}

.section-head-v2.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.eyebrow-v2 {
    display: inline-block;
    color: var(--v2-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 16px;
}

.section-head-v2 h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.process-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.process-card-v2 {
    background: var(--v2-bg-soft);
    padding: 40px 30px;
    border-radius: var(--v2-radius-md);
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.process-card-v2:hover {
    background: var(--v2-bg-pure);
    border-color: var(--v2-border);
    box-shadow: var(--v2-shadow-glass);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-family: var(--v2-font-display);
    font-weight: 900;
    font-size: 40px;
    color: var(--v2-primary);
    /* opacity: 0.5; */
    transition: all 0.4s ease;
}

.process-card-v2:hover .step-number {
    color: var(--v2-primary);
    opacity: 0.1;
    transform: scale(1.2);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--v2-bg-pure);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--v2-primary);
    margin-bottom: 24px;
    box-shadow: var(--v2-shadow-sm);
    transition: all 0.4s ease;
}

.process-card-v2:hover .icon-wrapper {
    background: var(--v2-primary);
    color: white;
}

.process-card-v2 h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

/* 5b. Process Section - Timeline v3 (Adapted for Light Premium) */
.process-section-v3 {
    background: var(--v2-bg-pure);
    padding: 100px 0;
    overflow: hidden;
}

.timeline-container-v3 {
    position: relative;
    padding: 40px 0;
    margin-top: 60px;
    z-index: 1;
}

.timeline-track-v3 {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--v2-border);
    border-radius: 2px;
    z-index: 1;
}

.timeline-progress-v3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    /* First step is active by default */
    height: 100%;
    background: linear-gradient(90deg, var(--v2-primary), var(--v2-accent));
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
    transition: width 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    border-radius: 2px;
}

.timeline-progress-v3::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--v2-primary);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--v2-primary);
    border: 4px solid var(--v2-bg-pure);
}

.timeline-steps-v3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 2;
}

.process-step-v3 {
    text-align: center;
    padding: 0 20px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.step-icon-wrap-v3 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.step-icon-v3 {
    width: 72px;
    height: 72px;
    background: var(--v2-bg-pure);
    border: 3px solid var(--v2-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--v2-text-muted);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--v2-shadow-md);
}

.step-icon-v3 i {
    width: 28px;
    height: 28px;
}

.step-content-v3 {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-content-v3 h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--v2-text-dark);
    font-family: var(--v2-font-display);
}

.step-content-v3 p {
    font-size: 15px;
    color: var(--v2-text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.step-visual-v3 {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--v2-border);
    background: var(--v2-bg-pure);
    box-shadow: var(--v2-shadow-glass);
}

.step-visual-v3 img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1s ease;
}

/* Active State Styles */
.process-step-v3.active .step-icon-v3 {
    border-color: var(--v2-primary);
    color: var(--v2-primary);
    background: var(--v2-bg-pure);
    transform: scale(1.15);
}

.process-step-v3.active .step-content-v3 {
    max-height: 600px;
    opacity: 1;
    transform: translateY(0);
    padding-bottom: 40px;
}

.process-step-v3.active .step-visual-v3 {
    transform: scale(1);
    opacity: 1;
}

.process-step-v3.active:hover .step-visual-v3 img {
    transform: scale(1.05);
}

.process-step-v3:hover .step-icon-v3 {
    border-color: var(--v2-primary);
    transform: translateY(-5px);
}

/* Timeline Responsive */
@media (max-width: 991px) {
    .timeline-track-v3 {
        left: 36px;
        top: 0;
        width: 4px;
        height: 100%;
    }

    .timeline-progress-v3 {
        width: 100% !important;
        height: 25%;
        /* Default active on mobile too */
        transition: height 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    }

    .timeline-progress-v3::after {
        right: auto;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-steps-v3 {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .process-step-v3 {
        display: flex;
        text-align: left;
        align-items: flex-start;
        gap: 30px;
        padding: 0;
    }

    .step-icon-wrap-v3 {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .process-step-v3.active .step-content-v3 {
        max-height: 1000px;
    }

    .step-visual-v3 {
        max-width: 500px;
    }
}

/* 6. CTA Section */
.cta-v2 {
    padding: 60px 0;
    /* Increased padding */
    background: var(--v2-bg-pure);
}

.cta-box-glass {
    padding: 20px 0;
    /* Minimal vertical padding */
    text-align: left;
    position: relative;
    overflow: hidden;
    background: transparent;
    border: none;
    box-shadow: none;
}

.cta-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    /* Adjusted for form width */
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-form-col {
    position: relative;
}

.badge-glass.dark {
    background: rgba(30, 41, 59, 0.05);
    border-color: rgba(30, 41, 59, 0.1);
    color: var(--v2-text-dark);
}

.cta-content-inner {
    position: relative;
    z-index: 2;
}

.cta-content-inner h2 {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.cta-content-inner p {
    font-size: 20px;
    /* margin-bottom: 40px; */
    color: var(--v2-text-muted);
}

.cta-actions-v2 {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}

/* Datepicker Icon Styling */
.input-icon-wrapper {
    position: relative;
    width: 100%;
}

.input-icon-v2 {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--v2-primary);
    pointer-events: none;
    width: 20px;
    height: 20px;
}

.discovery-form .btn-primary-v2 {
    background: var(--v2-primary);
    color: #ffffff;
    border: none !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.discovery-form .btn-primary-v2:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.input-icon-wrapper input {
    padding-right: 50px !important;
}

/* 6a. About Strip v2 */
.about-v2 {
    padding: 60px 0;
}

.about-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content-v2 h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.about-content-v2 h1 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.about-content-v2 p {
    margin-bottom: 20px;
    font-size: 18px;
}

.lead-v2 {
    font-size: 18px !important;
    color: var(--v2-text-dark);
    font-weight: 500;
}

.highlight-box-v2 {
    padding: 24px;
    background: var(--v2-bg-soft);
    border-left: 4px solid var(--v2-primary);
    border-radius: 6px;
    font-style: italic;
    /* color: var(--v2-primary) !important; */
    font-weight: 500;
}

.link-arrow-v2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    /* margin-top: 30px; */
    padding: 12px 28px;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--v2-accent);
    color: white;
    border-color: var(--v2-accent);
    padding-right: 32px;
    box-shadow: 0 10px 20px rgba(232, 93, 44, 0.2);
}


.link-arrow-v2 i {
    transition: transform 0.4s ease;
}

.link-arrow-v2:hover i {
    transform: translateX(5px);
}

.image-glass-frame {
    padding: 20px;
    /* background: rgba(255, 255, 255, 0.4); */
    backdrop-filter: blur(10px);
    border-radius: var(--v2-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.6);
    /* box-shadow: var(--v2-shadow-glass); */
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.rounded-lg {
    border-radius: var(--v2-radius-md);
}

/* 6b. Services v2 - Stunning Image-Based Design */
.services-v2 {
    padding: 100px 0;
    background: var(--v2-bg-pure);
}

.services-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-card-v3 {
    position: relative;
    /* height: 400px; */
    height: auto;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 30px;
    background: var(--v2-bg-soft);
    border: 1px solid var(--v2-border);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.service-card-v3::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.95), rgba(232, 93, 44, 0.95));
    opacity: 0;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card-v3:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -15px rgba(255, 107, 53, 0.3);
    border-color: transparent;
}

.service-card-v3:hover::after {
    opacity: 1;
}

.s-visual-v3 {
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
    position: relative;
    z-index: 3;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.s-image-v3 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--v2-shadow-md);
    transition: all 0.6s ease;
}

.service-card-v3:hover .s-visual-v3 {
    transform: translateY(-10px) scale(1.05);
}

.s-content-v3 {
    position: relative;
    z-index: 3;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card-v3 h3 {
    color: var(--v2-text-dark);
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
    transition: all 0.4s ease;
    position: relative;
    z-index: 3;
}

.service-card-v3:hover h3 {
    color: white;
    transform: translateY(-5px);
}

.s-description-v3 {
    color: var(--v2-text-muted);
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.8;
    transition: all 0.4s ease;
    position: relative;
    z-index: 3;
}

.service-card-v3:hover .s-description-v3 {
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-5px);
    opacity: 1;
}

.s-icon-v3 {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: var(--v2-primary);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(255, 107, 53, 0.2);
    transition: all 0.4s ease;
}

.service-card-v3:hover .s-icon-v3 {
    background: white;
    color: var(--v2-primary);
    /* transform: rotate(15deg) scale(1.1); */
}

/* Remove sc- classes background if any */
.sc-marketing,
.sc-seo,
.sc-branding,
.sc-webdev,
.sc-ppc,
.sc-mobile {
    background-image: none !important;
}

@media (max-width: 1024px) {
    .services-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .image-glass-frame {
        padding: 0;
    }
}

/* 6c. Clients v2 */
.clients-v2 {
    padding: 60px 0;
    border-top: 1px solid var(--v2-border);
    border-bottom: 1px solid var(--v2-border);

}

.clients-v2 h2 {
    font-size: 48px;
    max-width: 700px;
    /* line-height: 57px; */
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.client-logos-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    opacity: 0.7;
}

.client-logo-glass {
    padding: 15px 30px;
    background: var(--v2-bg-soft);
    border-radius: 8px;
    font-weight: 700;
    font-family: var(--v2-font-display);
    font-size: 20px;
    color: var(--v2-text-muted);
}

/* Logo Ticker Styles */
.logo-ticker {
    overflow: hidden;
    background: var(--v2-bg-pure);
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 30px;
    width: max-content;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-track-1 {
    animation: scroll-right 60s linear infinite;
}

.logo-track-2 {
    animation: scroll-left 60s linear infinite;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 40px;
    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: scale(1.1);
}

.logo-item img {
    max-width: 180px;
    height: auto;
    max-height: 65px;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* 6d. Why Choose Us v2 */
.why-v3 {
    padding-top: 60px;
    overflow: hidden;
    background: var(--v2-bg-pure);
}

.why-split-v3 {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 50px;
}

.why-image-collage {
    flex: 1;
    position: relative;
    min-height: 600px;
}

.why-img-main {
    width: 80%;
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--v2-shadow-lg);
    position: relative;
    z-index: 2;
}

.why-img-sub {
    width: 50%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--v2-shadow-md);
    position: absolute;
    z-index: 3;
    border: 8px solid var(--v2-bg-pure);
}

.why-img-sub-1 {
    bottom: 20px;
    right: 0;
}

.why-img-sub-2 {
    top: -30px;
    right: 10%;
    width: 40%;
    height: 250px;
    z-index: 1;
}

.exp-badge {
    position: absolute;
    bottom: 80px;
    left: -30px;
    background: var(--v2-primary);
    color: white;
    padding: 20px 30px;
    border-radius: 16px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}

.exp-badge strong {
    font-size: 36px;
    line-height: 1;
    font-family: var(--v2-font-display);
    font-weight: 700;
}

.exp-badge span {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
}

.why-features-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
}

.why-feature-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 24px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.why-feature-item:hover {
    background: var(--v2-bg-soft);
    border-color: var(--v2-border);
    transform: translateX(10px);
}

.wf-icon {
    width: 50px;
    height: 50px;
    background: var(--v2-primary);
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
}

.wf-icon i {
    width: 24px;
    height: 24px;
}

.wf-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--v2-text-dark);
    font-weight: 700;
}

.wf-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--v2-text-muted);
    margin: 0;
}

@media (max-width: 1024px) {
    .why-split-v3 {
        flex-direction: column;
        gap: 10px;
    }

    .why-image-collage {
        width: 100%;
        min-height: 500px;
        margin-bottom: 20px;
    }

    .exp-badge {
        left: 20px;
    }
}

/* 6e. Testimonials v2 */
.testimonials-v2 {
    padding-bottom: 60px;
}

/* Carousel Structure */
.testimonial-carousel-v2 {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-track-container {
    overflow: hidden;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--v2-bg-pure);
    border: 1px solid var(--v2-border);
    color: var(--v2-text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--v2-shadow-sm);
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--v2-primary);
    color: white;
    transform: scale(1.05);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--v2-border);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--v2-primary);
    transform: scale(1.3);
}

.testimonial-premium-v2 {
    background: var(--v2-bg-soft);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(42, 23, 8, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 20px 0;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.tp-content {
    flex-grow: 1;
    position: relative;
    /* padding-bottom: 30px; */
    border-bottom: 1px solid var(--v2-border);
    margin-bottom: 30px;
}

.tp-quote-icon {
    color: var(--v2-primary);
    width: 32px;
    height: 32px;
    margin-bottom: 20px;
}

.tp-text {
    font-size: 20px;
    line-height: 1.6;
    color: var(--v2-text-dark);
    font-family: var(--v2-font-display);
    font-weight: 500;
    margin: 0;
}

.tp-footer {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tp-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--v2-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    font-family: var(--v2-font-display);
    flex-shrink: 0;
}

.tp-avatar.tp-bg-accent {
    background: var(--v2-accent);
}


.tp-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tp-author strong {
    font-size: 18px;
    color: var(--v2-text-dark);
    font-family: var(--v2-font-display);
    font-weight: 700;
}

.tp-author span {
    font-size: 14px;
    color: var(--v2-text-muted);
}

.tp-stars {
    display: flex;
    gap: 2px;
    margin-top: 4px;
}

.star-filled-sm {
    width: 14px;
    height: 14px;
    color: #FFB800;
    fill: #FFB800;
}

/* 6f. FAQ v2 */
.faq-v2 {
    padding: 60px 0;
}

.faq-grid-v2 {
    max-width: 1200px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: left;
}

.faq-item {
    background: var(--v2-bg-glass);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--v2-border);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    height: fit-content;
}

.faq-item:hover {
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
    background: var(--v2-bg-pure);
    border-color: var(--v2-primary);
    transform: translateY(-5px);
}

.faq-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 24px 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--v2-font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--v2-text-dark);
    transition: all 0.3s ease;
}

.faq-item:hover .faq-trigger {
    color: var(--v2-primary);
}

.faq-trigger i,
.faq-trigger svg {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--v2-primary);
    background: rgba(255, 107, 53, 0.1);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 6px;
}

.faq-item.active .faq-trigger i,
.faq-item.active .faq-trigger svg {
    /* transform: rotate(45deg); */
    background: var(--v2-primary);
    color: white;
}

.faq-content {
    display: none;
    padding: 0 30px 24px 30px;
}

.faq-content p {
    margin: 0;
    font-size: 16px;
    color: var(--v2-text-muted);
    line-height: 1.7;
}

@media (max-width: 991px) {
    .faq-grid-v2 {
        grid-template-columns: 1fr;
        max-width: 800px;
    }
}

/* 7. Footer */
.footer-v2 {
    background: var(--v2-bg-soft);
    padding: 60px 0 0;
    border-top: 1px solid var(--v2-border);
}

.footer-grid-v2 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand-v2 p {
    margin-top: 20px;
    max-width: 300px;
    font-size: 16px;
}

.footer-links-col h4,
.footer-newsletter-v2 h4 {
    font-family: var(--v2-font-display);
    color: var(--v2-text-dark);
    font-size: 16px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links-col h4::after,
.footer-newsletter-v2 h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--v2-primary);
    border-radius: 2px;
}

.footer-links-col ul {
    list-style: none;
    padding-left: 0;
}

.footer-bottom-v2 p {
    font-size: 16px;
}

.footer-links-col li {
    margin-bottom: 16px;
}

.footer-links-col a {
    color: var(--v2-text-muted);
    font-size: 16px;
}

.footer-links-col a:hover {
    color: var(--v2-primary);
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--v2-text-muted);
    font-size: 15px;
    margin-bottom: 16px;
}

.footer-contact-info i,
.footer-contact-info svg {
    width: 16px !important;
    height: 16px !important;
    color: var(--v2-primary) !important;
    margin-top: 4px;
}

.footer-contact-info .lucide-map-pin,
.footer-contact-info i[data-lucide="map-pin"] {
    width: 30px !important;
    height: 30px !important;
    margin-top: -2px;
}

.newsletter-form-v2 {
    display: flex;
    gap: 8px;
    margin: 20px 0;
}

.newsletter-form-v2 input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid var(--v2-border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
}

.newsletter-form-v2 button {
    background: var(--v2-text-dark);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form-v2 button:hover {
    background: var(--v2-primary);
}

.social-links-v2 {
    display: flex;
    gap: 12px;
}

.social-links-v2 a {
    width: 40px;
    height: 40px;
    background: var(--v2-bg-pure);
    border: 1px solid var(--v2-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--v2-primary);
}

.social-links-v2 a i,
.social-links-v2 a svg {
    width: 20px !important;
    height: 20px !important;
    display: inline-block !important;
    color: inherit !important;
    stroke: currentColor !important;
    stroke-width: 2px !important;
    fill: none !important;
    visibility: visible !important;
}

.social-links-v2 a:hover {
    background: var(--v2-primary);
    color: white;
    border-color: var(--v2-primary);
}

.footer-bottom-v2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid var(--v2-border);
    font-size: 14px;
}

.legal-v2 {
    display: flex;
    gap: 24px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid-v2 {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0;
    }

    .hero-subtitle-v2 {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions-v2,
    .hero-trust-metrics {
        justify-content: center;
    }

    .process-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid-v2,
    .cta-grid-v2 {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0;
    }

    .clients-v2 {
        padding: 20px 0;
    }

    /* .cta-box-glass {
        padding: 40px 0;
    } */

    .cta-actions-v2 {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    /* .cta-form-col {
        margin-top: 40px;
    } */

    .about-visual-v2 {
        order: 0;
    }

    .footer-grid-v2 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-inner {
        height: 70px;
    }

    .header-actions {
        display: flex !important;
        align-items: center;
        gap: 15px;
    }

    .logo-v2-wrapper {
        padding: 0;
        max-width: 180px;
    }

    .nav-logo {
        height: 40px;
    }

    .header-actions>.btn-primary-v2 {
        display: none;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .nav-v2 {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 40px;
        gap: 30px;
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-v2.active {
        right: 0;
    }

    .nav-btn-mobile {
        display: flex !important;
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }

    /* Small Mobile Buttons */
    .hero-actions-v2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-primary-v2,
    .btn-outline-v2 {
        padding: 10px 22px;
        font-size: 14px;
        width: fit-content;
        min-width: 180px;
        justify-content: center;
    }

    .btn-lg {
        padding: 10px 40px;
        font-size: 15px;
    }

    .process-grid-v2,
    .services-grid-v2 {
        grid-template-columns: 1fr;
    }

    .footer-grid-v2 {
        grid-template-columns: 1fr;
    }

    .footer-bottom-v2 {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    /* Ultra-Mobile Hero Refinements (<480px) */
    .hero-v2-ref {
        padding-top: 130px;
        /* Push below header */
    }

    .hero-title-v2 {
        font-size: 40px !important;
    }

    .hero-v2-ref .hero-title-v2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .hero-v2-ref .hero-subtitle-v2 {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .hero-trust-metrics {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 30px;
        padding-top: 25px;
        margin-top: 20px;
    }

    .metric strong {
        font-size: 20px;
    }

    .metric span {
        font-size: 11px;
    }

    .metric-divider {
        display: none;
        /* Hide dividers when wrapping */
    }
}

/* 10. Theme-Consistent Premium Hero Layout (Ref Design - Portal Style) */
.hero-v2-ref {
    padding: 100px 0 0px;
    background-color: #FFF7F4;
    /* Light Peach Background as requested */
    position: relative;
    overflow: hidden;
}

.hero-v2-ref .hero-bg-shapes {
    opacity: 0.1;
}

.hero-v2-ref .hero-title-v2 {
    font-size: clamp(38px, 5.5vw, 68px);
    line-height: 1.1;
    margin: 24px 0;
}

/* The "Portal" Arch Backdrop */
.hero-visual-v5 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* Align elements to the bottom */
    width: 100%;
    height: 600px;
    overflow: hidden;
    /* Prevent arches from bleeding out */
}

.portal-backdrop {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    pointer-events: none;
}

.arch-v5 {
    position: absolute;
    bottom: 0px;
    border-radius: 400px 400px 0 0;
    border: 1.5px solid rgba(255, 107, 53, 0.15);
    /* Slightly more visible */
    background: rgba(255, 107, 53, 0.04);
    box-shadow: inset 0 20px 40px rgba(255, 107, 53, 0.02);
    transition: all 0.6s ease;
}

.arch-1 {
    width: 420px;
    height: 480px;
    z-index: 1;
    background: rgba(255, 107, 53, 0.03);
}

.arch-2 {
    width: 320px;
    height: 380px;
    z-index: 2;
    background: rgba(255, 107, 53, 0.06);
    border-width: 2px;
}

.arch-3 {
    width: 240px;
    height: 300px;
    z-index: 3;
    background: radial-gradient(circle at bottom, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
}

.arch-4 {
    width: 160px;
    height: 240px;
    z-index: 4;
    background: rgba(255, 107, 53, 0.08);
    border: none;
}

.arch-5 {
    width: 100px;
    height: 180px;
    z-index: 5;
    background: rgba(255, 107, 53, 0.1);
    border: none;
}

.focal-image-wrap-v5 {
    position: relative;
    z-index: 10;
    width: 550px;
    height: auto;
    /* Reduced height for close-up */
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.focal-image-v5 {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Glowing Doodle Icons (Megaphone, Lightbulb) */
.doodle-v5 {
    position: absolute;
    z-index: 15;
    color: var(--v2-primary);
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.4));
    animation: float-v5 4s ease-in-out infinite alternate;
}

@keyframes float-v5 {
    from {
        transform: translateY(0) rotate(0deg);
    }

    to {
        transform: translateY(-15px) rotate(5deg);
    }
}

.doodle-megaphone {
    top: 15%;
    left: 10%;
    transform: rotate(-15deg);
}

.doodle-lightbulb {
    top: 25%;
    right: 5%;
    transform: rotate(15deg);
}

.doodle-v5 i {
    width: 64px;
    height: 64px;
    stroke-width: 1.5;
}

/* Colorful Orbiting Particle Icons */
.particle-icon {
    position: absolute;
    z-index: 25;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    animation: orbit-float 6s infinite ease-in-out;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.particle-icon img,
.particle-icon i {
    width: 22px;
    height: 22px;
}

@keyframes orbit-float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(5px, -10px);
    }
}

/* Specific Particle Positions & Colors - Grouped Left and Right (4+4 Layout) */

/* Left Group: Web Design & Development */
.p-html {
    top: 15%;
    left: 10%;
    border-color: #E34F26;
    animation-delay: 0.5s;
}

.p-css {
    top: 50%;
    left: 5%;
    border-color: #1572B6;
    animation-delay: 1.2s;
}

.p-js {
    top: 70%;
    left: 8%;
    border-color: #F7DF1E;
    animation-delay: 0.8s;
}

.p-react {
    top: 30%;
    left: 20%;
    border-color: #61DAFB;
    animation-delay: 1.8s;
}

/* Right Group: Digital Marketing & Social */
.p-ig {
    top: 15%;
    right: 10%;
    border-color: #E4405F;
    animation-delay: 0s;
}

.p-fb {
    top: 50%;
    right: 5%;
    border-color: #1877F2;
    animation-delay: 1s;
}

.p-yt {
    top: 70%;
    right: 8%;
    border-color: #FF0000;
    animation-delay: 2.5s;
}

.p-go {
    top: 30%;
    right: 20%;
    border-color: #4285F4;
    animation-delay: 3s;
}

@media (max-width: 768px) {
    .hero-visual-v5 {
        height: 450px;
    }

    .particle-icon {
        width: 32px;
        height: 32px;
    }

    .particle-icon img,
    .particle-icon i {
        width: 18px;
        height: 18px;
    }

    .p-html {
        top: 10%;
        left: 5%;
    }

    .p-css {
        top: 30%;
        left: 2%;
    }

    .p-js {
        top: 55%;
        left: 5%;
    }

    .p-react {
        top: 75%;
        left: 10%;
    }

    .p-ig {
        top: 10%;
        right: 5%;
    }

    .p-fb {
        top: 30%;
        right: 2%;
    }

    .p-yt {
        top: 55%;
        right: 5%;
    }

    .p-go {
        top: 75%;
        right: 10%;
    }
}

/* Web Design Icons */


.ui-orbit-v5 {
    position: absolute;
    z-index: 20;
    background: white;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 10px 25px rgba(42, 23, 8, 0.15);
    border: 1.5px solid var(--v2-primary);
    /* Use primary color for UI borders */
    transition: all 0.3s ease;
}

.ui-orbit-v5:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.ui-1 {
    bottom: 35%;
    right: 15%;
}

.ui-2 {
    top: 45%;
    left: 5%;
}

/* Floating Badge V5 */
.floating-badge-v5 {
    position: absolute;
    bottom: 40px;
    left: 20px;
    background: white;
    padding: 12px 20px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 40px rgba(42, 23, 8, 0.15);
    z-index: 30;
    border: 1px solid var(--v2-border);
}

.badge-avatars-v5 {
    display: flex;
}

.badge-avatars-v5 img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
}

.badge-avatars-v5 img:first-child {
    margin-left: 0;
}

.badge-plus-v5 {
    width: 32px;
    height: 32px;
    background: var(--v2-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
    border: 2px solid white;
    color: white;
    font-weight: bold;
}

.badge-info-v5 h4 {
    font-size: 13px;
    margin: 0;
    line-height: 1.2;
    color: var(--v2-text-dark);
}

@media (max-width: 991px) {
    .hero-visual-v5 {
        height: 450px;
    }

    .arch-1 {
        width: 350px;
        height: 350px;
    }

    .arch-2 {
        width: 300px;
        height: 300px;
    }

    .arch-3 {
        width: 250px;
        height: 250px;
    }

    .focal-image-wrap-v5 {
        width: 330px;
        height: 350px;
    }

    .doodle-v5 i {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 991px) {
    .about-hero-v2 h1 {
        font-size: 3rem;
    }

}

/* About Us Stunning Refinement */
.about-hero-v2 {
    padding: 160px 0 120px;
    background: var(--v2-soft-peach);
    position: relative;
    overflow: hidden;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-hero-text {
    text-align: left;
}

.about-hero-text h1 {
    font-size: 4.8rem;
    line-height: 1.1;
    margin: 20px 0 30px;
    font-weight: 700;
}

.hero-quote-v2 {
    margin-top: 40px;
    padding: 30px;
    background: white;
    border-radius: 24px;
    border-left: 5px solid var(--v2-primary);
    box-shadow: var(--v2-shadow-md);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--v2-primary);
    color: white;
    width: 35px;
    height: 35px;
    padding: 8px;
    border-radius: 50%;
}

.hero-quote-v2 p {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--v2-dark-espresso);
    margin: 0;
}

/* About Portal Visual */
.about-hero-visual {
    position: relative;
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.portal-visual-about {
    position: relative;
    width: 100%;
    height: 100%;
}

.portal-backdrop-v2 {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.arch-v2-ref {
    position: absolute;
    bottom: -20px;
    border-radius: 300px 300px 0 0;
    border: 2px solid rgba(255, 107, 53, 0.15);
    background: rgba(255, 107, 53, 0.03);
}

.a-1 {
    width: 450px;
    height: 500px;
    z-index: 1;
}

.a-2 {
    width: 350px;
    height: 400px;
    z-index: 2;
    background: rgba(255, 107, 53, 0.05);
}

.a-3 {
    width: 250px;
    height: 300px;
    z-index: 3;
    background: var(--v2-soft-peach);
    border: none;
}

.story-img-wrap {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 380px;
}

.story-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.story-badge {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--v2-shadow-lg);
    font-weight: 700;
    z-index: 20;
    border: 1px solid var(--v2-border);
}

.sb-1 {
    top: 30%;
    left: -40px;
    color: #E4405F;
    animation: float-v5 4s infinite ease-in-out;
}

.sb-2 {
    bottom: 20%;
    right: -40px;
    color: var(--v2-primary);
    animation: float-v5 4s infinite ease-in-out 1s;
}

/* Mission Section Stunning Refinement */
.mission-section-v2 {
    position: relative;
    padding: 60px 0;
}

.mission-bg-accent {
    position: absolute;
    top: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.mission-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.mission-frame-v2 {
    position: relative;
    padding: 20px;
}

.frame-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 60%;
    border-top: 2px solid var(--v2-primary-light);
    border-left: 2px solid var(--v2-primary-light);
    z-index: 0;
}

.main-mission-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--v2-shadow-lg);
    position: relative;
    z-index: 2;
}

.mission-overlay-card {
    position: absolute;
    bottom: 50px;
    left: -30px;
    background: white;
    padding: 24px 30px;
    border-radius: 20px;
    box-shadow: var(--v2-shadow-md);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    border: 1px solid var(--v2-border);
}

.overlay-icon {
    width: 45px;
    height: 45px;
    background: var(--v2-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-title {
    display: block;
    font-size: 0.8rem;
    color: var(--v2-text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.overlay-val {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--v2-text-dark);
}

.mission-title {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.mission-lead-box {
    background: transparent;
    padding: 0;
    border: none;
    margin-bottom: 25px;
    box-shadow: none;
}

.mission-lead-box p {
    font-size: 18px;
    font-weight: 500;
    color: var(--v2-text-dark);
    margin: 0;
    line-height: 1.6;
}

.mission-list-v2 {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.mission-list-v2 li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 18px;
    color: var(--v2-text-dark);
}

.mission-list-v2 li svg {
    color: var(--v2-primary);
    width: 20px;
    flex-shrink: 0;
}

.mission-price-note {
    padding-top: 20px;
    border-top: 1px solid var(--v2-border);
    font-style: italic;
    font-weight: 500;
}

@media (max-width: 991px) {
    .main-mission-img {
        height: 300px !important;
    }

    .mission-overlay-card {
        padding: 10px 15px;
        left: -10px;
    }
}

/* Values Section Stunning Refinement */
.values-section-v2 {
    position: relative;
    background: var(--v2-bg-soft);
    padding: 60px 0;
    /* Neatness: Center section level */
}

.values-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.section-header-v2.center {
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.values-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.glass-card {
    background: #ffffff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.value-card-v2 {
    padding: 20px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.value-card-v2:hover {
    background: white;
    box-shadow: var(--v2-shadow-lg);
}

.value-icon-wrap {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 30px;
}


.icon-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--v2-bg-soft);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--v2-primary);
    z-index: 2;
    transition: all 0.4s ease;
}

.value-card-v2:hover .icon-inner {
    background: var(--v2-primary);
    color: white;
}

.value-card-v2 h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--v2-dark-espresso);
    /* Ensure consistent color */
}

.value-card-v2 p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--v2-text-muted);
}

.section-header-v2 h2,
.team-flex-v2 h2 {
    font-size: 48px;
}

/* Team Section Stunning Refinement */
.team-section-v2 {
    background: white;
}

.team-bg-accent {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.team-flex-v2 {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 120px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.team-bullet-list {
    list-style: none;
    padding: 0;
    margin: 35px 0;
}

.team-flex-v2 h2 {
    margin-bottom: 20px !important;
}

.team-bullet-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-weight: 700;
    color: var(--v2-text-dark);
}

.team-bullet-list li svg {
    color: var(--v2-primary);
}

.team-visual-wrap {
    position: relative;
    padding: 40px;
}

.team-portal-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-top: 3px solid var(--v2-primary-light);
    border-right: 3px solid var(--v2-primary-light);
    border-radius: 0 100px 0 0;
    z-index: 0;
}

.team-image-collage {
    position: relative;
    z-index: 2;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--v2-shadow-lg);
    border: 8px solid white;
}

.team-image-collage img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-image-collage:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .team-image-collage img {
        height: 330px;
        margin-top: 20px;
    }
}

/* Journey Zigzag Timeline Stunning Refinement */
.journey-section-v2 {
    background: var(--v2-bg-soft);
    padding-top: 60px;
}

.zigzag-timeline-v2 {
    position: relative;
    max-width: 1000px;
    margin: 80px auto 0;
    padding: 20px 0;
}

.center-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--v2-primary), var(--v2-primary-light), transparent);
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-item-v5 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    margin-bottom: 80px;
    width: 50%;
}

.timeline-item-v5.right {
    margin-left: 50%;
    justify-content: flex-start;
}

.timeline-content-v5 {
    background: white;
    padding: 30px;
    border-radius: 24px;
    width: 85%;
    box-shadow: var(--v2-shadow-md);
    border: 1px solid var(--v2-border);
    transition: all 0.4s ease;
    position: relative;
}

.timeline-item-v5.left .timeline-content-v5 {
    margin-right: 40px;
}

.timeline-item-v5.right .timeline-content-v5 {
    margin-left: 40px;
}

.timeline-content-v5:hover {
    transform: translateY(-8px);
    box-shadow: var(--v2-shadow-lg);

}

.year-badge-v5 {
    display: inline-block;
    padding: 6px 15px;
    background: var(--v2-primary);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.timeline-content-v5 p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--v2-text-dark);
    font-weight: 500;
    line-height: 1.6;
}

.timeline-dot-v5 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: white;
    border: 3px solid var(--v2-primary);
    border-radius: 50%;
    z-index: 10;
}

.timeline-item-v5.left .timeline-dot-v5 {
    right: -10px;
}

.timeline-item-v5.right .timeline-dot-v5 {
    left: -10px;
}

.dot-inner-v5 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--v2-primary);
    border-radius: 50%;
    animation: pulse-v5 2s infinite;
}

@keyframes pulse-v5 {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

/* Journey Prism Flow (Concept V5 - Precision Sync V6.1) */
.journey-prism-v5 {
    background: var(--v2-bg-soft);
    /* Using theme soft peach background */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    color: var(--v2-text-dark);
}

.prism-light-leak {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.prism-flow-wrapper {
    position: relative;
    padding: 200px 0;
    margin-top: 60px;
}

.prism-beam-axis {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 107, 53, 0.2),
            rgba(255, 184, 140, 0.2),
            rgba(255, 215, 0, 0.2),
            rgba(255, 107, 107, 0.2),
            transparent);
    transform: translateY(-50%);
    z-index: 1;
}

.beam-energy {
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.95), transparent);
    filter: blur(10px);
    opacity: 0.9;
    transform: translateX(-50%);
    /* Center the glow */
    animation: beam-sweep-precise 6s linear infinite;
}

@keyframes beam-sweep-precise {
    0% {
        left: 0%;
    }

    100% {
        left: 100%;
    }
}

.prism-grid-v5 {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.prism-item-v5 {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: all 0.5s ease;
}

.prism-node-v5 {
    width: 50px;
    height: 50px;
    background: white;
    backdrop-filter: blur(10px);
    border: 2px solid var(--v2-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    z-index: 10;
    box-shadow: var(--v2-shadow-sm);
    animation: node-pulse-sync-precise 6s infinite;
}

/* Super Precision Staggered Sync (Peak at Card Center) */
.prism-item-v5:nth-child(1) .prism-node-v5,
.prism-item-v5:nth-child(1) .prism-card-v5 {
    animation-delay: -0.1s;
}

.prism-item-v5:nth-child(2) .prism-node-v5,
.prism-item-v5:nth-child(2) .prism-card-v5 {
    animation-delay: 0.9s;
}

.prism-item-v5:nth-child(3) .prism-node-v5,
.prism-item-v5:nth-child(3) .prism-card-v5 {
    animation-delay: 1.9s;
}

.prism-item-v5:nth-child(4) .prism-node-v5,
.prism-item-v5:nth-child(4) .prism-card-v5 {
    animation-delay: 2.9s;
}

.prism-item-v5:nth-child(5) .prism-node-v5,
.prism-item-v5:nth-child(5) .prism-card-v5 {
    animation-delay: 3.9s;
}

.prism-item-v5:nth-child(6) .prism-node-v5,
.prism-item-v5:nth-child(6) .prism-card-v5 {
    animation-delay: 4.9s;
}

@keyframes node-pulse-sync-precise {

    0%,
    20%,
    100% {
        transform: scale(1);
        border-color: var(--v2-border);
        background: white;
        color: var(--v2-text-dark);
        box-shadow: var(--v2-shadow-sm);
    }

    10% {
        transform: scale(1.4);
        border-color: var(--prism-color);
        background: var(--prism-color);
        color: white;
        box-shadow: 0 0 40px var(--prism-color);
    }
}

.prism-year {
    font-family: var(--v2-font-display);
    font-weight: 700;
    font-size: 0.85rem;
    color: inherit;
    z-index: 2;
}

.node-refraction {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    filter: blur(15px);
    opacity: 0;
    transition: all 0.4s ease;
}

/* Spectrum Colors */
.spectrum-orange {
    --prism-color: #ff6b35;
}

.spectrum-peach {
    --prism-color: #ffb88c;
}

.spectrum-gold {
    --prism-color: #ffd700;
}

.spectrum-rose {
    --prism-color: #ff6b6b;
}

.spectrum-amber {
    --prism-color: #ffbf00;
}

.spectrum-sunset {
    --prism-color: #ff4e50;
}

.prism-item-v5:hover .node-refraction {
    opacity: 0.4;
    background: var(--prism-color);
    transform: translate(-50%, -50%) scale(1.6);
}

.prism-item-v5:hover .prism-node-v5 {
    border-color: var(--prism-color);
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.4);
    animation: none !important;
    /* Pause sync on hover */
    background: var(--prism-color) !important;
    color: white !important;
}

.prism-item-v5:hover .prism-year {
    color: white !important;
}

.prism-card-v5 {
    position: absolute;
    width: 220px;
    background: white;
    backdrop-filter: blur(20px);
    padding: 25px;
    border-radius: 24px;
    border: 1px solid var(--v2-border);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0.7;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    animation: card-shimmer-sync-precise 6s infinite;
}

@keyframes card-shimmer-sync-precise {

    0%,
    20%,
    100% {
        transform: translateY(var(--base-y, 25px));
        opacity: 0.7;
        border-color: var(--v2-border);
        box-shadow: none;
    }

    10% {
        transform: translateY(0);
        opacity: 1;
        border-color: var(--prism-color);
        box-shadow: 0 20px 50px rgba(42, 23, 8, 0.15);
    }
}

.item-top .prism-card-v5 {
    --base-y: 25px;
    bottom: 85px;
}

.item-bottom .prism-card-v5 {
    --base-y: -25px;
    top: 85px;
}

.prism-item-v5:hover .prism-card-v5 {
    opacity: 1;
    transform: translateY(0) !important;
    border-color: var(--prism-color);
    box-shadow: 0 20px 50px rgba(42, 23, 8, 0.15), 0 0 15px rgba(255, 107, 53, 0.1);
    animation: none !important;
    /* Pause sync on hover */
}

.prism-icon-v5 {
    width: 44px;
    height: 44px;
    background: var(--v2-bg-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--prism-color);
    transition: all 0.4s ease;
    border: 1px solid var(--v2-border);
}

.prism-item-v5:hover .prism-icon-v5 {
    background: var(--prism-color);
    color: white;
    transform: rotate(10deg);
    border-color: transparent;
}

.prism-content-v5 p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--v2-text-muted);
    margin: 0;
    font-weight: 700;
}

/* Connecting Stems (Light Refraction) */
.prism-card-v5::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 45px;
    background: linear-gradient(to top, var(--prism-color), transparent);
    left: 50%;
    transform: translateX(-50%);
}

.item-top .prism-card-v5::before {
    bottom: -45px;
}

.item-bottom .prism-card-v5::before {
    top: -45px;
    transform: translateX(-50%) rotate(180deg);
}

@media (max-width: 1100px) {
    .prism-card-v5 {
        width: 170px;
        padding: 20px;
    }

    .prism-content-v5 p {
        font-size: 0.85rem;
    }
}

@media (max-width: 991px) {
    .prism-card-v5 {
        width: 140px;
    }
}

@media (max-width: 768px) {
    .journey-prism-v5 {
        padding: 40px 0;
    }

    .prism-flow-wrapper {
        padding: 40px 0;
    }

    .prism-grid-v5 {
        flex-direction: column;
        gap: 60px;
        padding-left: 50px;
        padding-right: 20px;
    }

    .prism-beam-axis {
        width: 2px;
        height: 100%;
        left: 74px;
        top: 0;
        transform: none;
        background: linear-gradient(to bottom, transparent, var(--v2-primary), var(--v2-accent), transparent);
    }

    .beam-energy {
        width: 100%;
        height: 300px;
        left: 0 !important;
        transform: translateY(-50%);
        background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.9), transparent);
        animation: beam-sweep-mobile 6s linear infinite;
    }

    @keyframes beam-sweep-mobile {
        0% {
            top: 0%;
        }

        100% {
            top: 100%;
        }
    }

    .prism-item-v5 {
        flex-direction: row;
        width: 100%;
        justify-content: flex-start;
        align-items: center;
    }

    .prism-item-v5:nth-child(1) .prism-node-v5,
    .prism-item-v5:nth-child(1) .prism-card-v5 {
        animation-delay: 0.5s;
    }

    .prism-item-v5:nth-child(2) .prism-node-v5,
    .prism-item-v5:nth-child(2) .prism-card-v5 {
        animation-delay: 1.5s;
    }

    .prism-item-v5:nth-child(3) .prism-node-v5,
    .prism-item-v5:nth-child(3) .prism-card-v5 {
        animation-delay: 2.5s;
    }

    .prism-item-v5:nth-child(4) .prism-node-v5,
    .prism-item-v5:nth-child(4) .prism-card-v5 {
        animation-delay: 3.5s;
    }

    .prism-item-v5:nth-child(5) .prism-node-v5,
    .prism-item-v5:nth-child(5) .prism-card-v5 {
        animation-delay: 4.5s;
    }

    .prism-item-v5:nth-child(6) .prism-node-v5,
    .prism-item-v5:nth-child(6) .prism-card-v5 {
        animation-delay: 5.5s;
    }

    .prism-card-v5 {
        position: static;
        flex: 1;
        width: auto;
        margin-left: 25px;
        transform: none !important;
        opacity: 0.7;
        box-shadow: var(--v2-shadow-sm);
        animation: card-shimmer-sync-mobile 6s infinite;
        padding: 20px;
    }

    @keyframes card-shimmer-sync-mobile {

        0%,
        20%,
        100% {
            opacity: 0.7;
            border-color: var(--v2-border);
            transform: translateX(0);
        }

        10% {
            opacity: 1;
            border-color: var(--prism-color);
            transform: translateX(10px);
        }
    }

    .prism-card-v5::before {
        display: none;
    }
}

/* CTA Stunning Refinement */
.about-cta-v2 {
    background: white;
}

.cta-bg-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 60%);
    z-index: 0;
}

.cta-card-v2 {
    background: var(--v2-dark-espresso);
    padding: 80px;
    border-radius: 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(42, 23, 8, 0.2);
}

.stunning-cta-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-text-v2 h2 {
    color: white;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.cta-text-v2 p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    margin-bottom: 40px;
}

.btn-white-v2 {
    background: white;
    color: var(--v2-dark-espresso) !important;
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-white-v2:hover {
    background: var(--v2-primary);
    color: white !important;
}

.cta-visual-v2 {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-cta-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 25px;
    border-radius: 100px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: float-v5 4s infinite ease-in-out;
}

@media (max-width: 968px) {
    .stunning-cta-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-card-v2 {
        padding: 50px 30px;
    }

    .cta-text-v2 h2 {
        font-size: 2.5rem;
    }

    .cta-visual-v2 {
        display: none;
        align-items: center !important;
        justify-content: center !important;
    }

}

@media (max-width: 768px) {

    .mission-grid-v2,
    .team-flex-v2 {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 40px;
    }

    .about-hero-v2 h1 {
        font-size: 2.5rem;
    }

    .cta-card-v2 {
        padding: 40px 20px;
    }

    .cta-card-v2 h2 {
        font-size: 2rem;
    }
}

/* Page Background Accents */
.relative-overflow {
    position: relative;
    overflow: hidden;
}

.blob-accent {
    position: absolute;
    width: 600px;
    height: 600px;
    filter: blur(120px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.blob-1 {
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, var(--v2-primary) 0%, transparent 70%);
    animation: drift-v5 15s infinite alternate;
}

.blob-2 {
    top: 20%;
    left: -200px;
    background: radial-gradient(circle, #FFB88C 0%, transparent 70%);
    animation: drift-v5 20s infinite alternate-reverse;
}

@keyframes drift-v5 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 100px) scale(1.2);
    }
}

/* Eyebrow Refinement */
.eyebrow-v2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--v2-primary);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.bg-warm .eyebrow-v2 {
    background: white;
    box-shadow: var(--v2-shadow-sm);
}

/* About Banner V3 */
.about-banner-v3 {
    height: 60vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: white;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(42, 23, 8, 0.4), rgba(42, 23, 8, 0.2));
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-content h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.banner-lead {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    font-weight: 500;
}

.white-glass {
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(5px);
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* About Story V3 */
.story-text-center {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-text-center h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 30px;
}

.hero-quote-v3 {
    margin-top: 40px;
    padding: 20px 0px;
    background: var(--v2-bg-soft);
    border-radius: var(--v2-radius-md);
    box-shadow: var(--v2-shadow-md);
    border-left: 5px solid var(--v2-primary);

}

.hero-quote-v3 p {
    font-size: 20px;
    color: var(--v2-text-dark);
    margin: 0;
    font-style: italic;
}



/* Discovery Fit CTA Section */
.discovery-fit-v1 {
    padding: 60px 0 60px;
    position: relative;
    overflow: hidden;
}

.discovery-fit-v1::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.discovery-glass-card {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--v2-radius-lg);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(42, 23, 8, 0.1);
    overflow: hidden;
}

.discovery-glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/cta-bg.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.8;
}

.discovery-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%); */
    z-index: 0;
    background: linear-gradient(to bottom, rgba(42, 23, 8, 0.4), rgba(42, 23, 8, 0.2));
}

.discovery-content {
    position: relative;
    z-index: 3;
}

.discovery-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 24px;
    color: #ffffff;
}

.discovery-content p {
    font-size: 1.25rem;
    color: #ffffff;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.discovery-actions {
    display: flex;
    justify-content: center;
}

.btn-primary-v2 {
    background: var(--v2-gradient-text);
    background: linear-gradient(101.27deg, #FF6B35 0%, #FF9E64 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: none;
}


@media (max-width: 768px) {
    .discovery-fit-v1 {
        padding: 60px 0 60px;
    }

    .discovery-glass-card {
        padding: 50px 24px;
        border-radius: var(--v2-radius-md);
    }

    .discovery-content p {
        font-size: 1.1rem;
    }

    .btn-primary-v2 {
        justify-content: center;
    }
}

/* Index3-Style Services Adaptation */
.services-section-alt {
    padding: 60px 0;
    background: var(--v2-bg-soft);
}

.services-grid-alt {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.service-card-alt {
    background: var(--v2-bg-pure);
    padding: 48px;
    border-radius: var(--v2-radius-md);
    border: 1px solid var(--v2-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

/* .service-card-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--v2-primary);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
} */

.service-card-alt:hover::before {
    height: 100%;
}

/* .service-card-alt:hover {
    border-color: var(--v2-primary);
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.2);
} */

/* .service-card-alt:hover h3,
.service-card-alt:hover p {
    color: white !important;
} */

.service-card-alt .card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--v2-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

/* .service-card-alt:hover .card-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: scale(1.1);
} */

.service-card-alt h3 {
    font-size: 24px;
    margin-bottom: 16px;
    transition: color 0.4s ease;
}

.service-card-alt p {
    font-size: 18px;
    line-height: 1.6;
    transition: color 0.4s ease;
}

@media (max-width: 768px) {
    .services-grid-alt {
        grid-template-columns: 1fr;
    }

    .nav-link::after {
        display: none;
    }

    .about-grid-v2 {
        gap: 40px;
        text-align: left;
    }

    .highlight-box-v2 {
        margin-top: 30px;
    }

    .clients-v2 h2 {
        font-size: 32px;
    }

    .footer-grid-v2 {
        margin-bottom: 30px;
        gap: 30px;
    }

    h2 {
        font-size: 34px !important;
    }

    .team-section-v2 {
        padding: 40px 0;
    }

    .team-flex-v2 {
        gap: 0px;
    }

    .team-visual-wrap {
        padding: 0;
    }

    .team-flex-v2 h2 {
        margin-bottom: 20px !important;
    }

    .mission-section-v2 {
        padding: 30px 0;
    }

    .footer-contact-info .lucide-map-pin,
    .footer-contact-info i[data-lucide="map-pin"] {
        width: 24px !important;
        height: 24px !important;
    }

    /* Mobile Logo Ticker */
    .logo-ticker {
        padding: 10px 0;
        gap: 15px;
    }

    .logo-track {
        display: flex;
        gap: 20px;
    }

    .logo-item {
        padding: 5px 20px;
    }

    .logo-item img {
        max-height: 40px;
        max-width: 120px;
        opacity: 1;
    }
}

/* Small Button Utility */
/* Small Button Utility */
.btn-sm {
    padding: 10px 24px !important;
    font-size: 14px !important;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.contact-form-card {
    background: #ffffff;
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--v2-primary), var(--v2-secondary));
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--v2-text-dark);
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    background: var(--v2-bg-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    font-size: 15px;
    color: var(--v2-text-dark);
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--v2-primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
    background: #ffffff;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 767px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.contact-info-block {
    padding-top: 10px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--v2-primary);
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 18px;
    margin-bottom: 4px;
    font-weight: 700;
    color: var(--v2-text-dark);
}

.info-content p a,
.info-content a {
    color: var(--v2-text-muted);
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a {
    color: var(--v2-primary);
}

.info-content a:hover {
    color: var(--v2-primary);
}

.social-links-contact {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.social-link-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--v2-bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--v2-text-dark);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link-icon:hover {
    background: var(--v2-primary);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 500px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.success-message {
    display: none;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.5);
    color: #27ae60;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Thank You Page Styles */
.thank-you-section {
    padding: 100px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-card {
    max-width: 700px;
    padding: 60px;
    margin-top: 60px !important;
    background-color: var(--v2-bg-soft);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.success-icon-v2 {
    width: 80px;
    height: 80px;
    background: rgba(46, 204, 113, 0.1);
    color: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thank-you-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.thank-you-card p {
    font-size: 18px;
    color: var(--v2-text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

@media (max-width: 576px) {
    .thank-you-actions {
        flex-direction: column;
    }

    .thank-you-card {
        padding: 40px 20px;
    }
}

/* Lucide Icons Baseline */
svg.lucide,
i[data-lucide] {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    display: inline-block;
    vertical-align: middle;
}

.card-learn-more {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-top: auto;
    padding-top: 20px;
}

.learn-text {
    font-weight: 600;
    font-size: 16px;
    color: var(--v2-primary);
    transition: color 0.4s ease;
}

.learn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--v2-primary);
    color: #ffffff;
    transition: all 0.4s ease;
}

.learn-arrow svg {
    width: 20px;
    height: 20px;
}

/* .service-card-alt:hover .learn-text {
    color: white;
}

.service-card-alt:hover .learn-arrow {
    background: white;
    color: var(--v2-primary);
}

.service-card-alt .learn-arrow:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
} */

.s-star {
    width: 20px;
    height: 20px;
    fill: #FFB800;
    stroke: #FFB800;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.s-star-empty {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #FFB800;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.s-star-half-container {
    position: relative;
    display: inline-flex;
    width: 20px;
    height: 20px;
}

.s-star-half-container .s-star {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px !important;
    height: 20px !important;
}

.s-star-half-container .s-star-empty {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px !important;
    height: 20px !important;
}

.star-fg-crop {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

@media screen and (max-width: 768px) {

    svg.lucide,
    i[data-lucide] {
        width: 20px;
        height: 20px;
    }

    .services-section-alt {
        padding: 20px 0;
    }
}

/* ==========================================================================
   Discovery Form Section
   ========================================================================== */
/* ==========================================================================
   Discovery Form Section (Simple Design)
   ========================================================================== */


.discovery-form-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Minimalist Professional Card */
.discovery-form-card {
    background: var(--v2-bg-soft);
    border: none;
    border-radius: var(--v2-radius-md);
    padding: 50px;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.2);
    color: #000;
}

.discovery-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-row-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group-v2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.label-v2 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #000;
    margin-left: 4px;
    margin-bottom: 8px;
}

.discovery-form input,
.discovery-form select {
    width: 100%;
    padding: 14px 20px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-radius: var(--v2-radius-sm) !important;
    font-family: var(--v2-font-body);
    font-size: 1rem;
    color: var(--v2-text-dark);
    transition: all 0.3s ease;
}

/* Separate rule for Phone Input to support half-and-half */
.iti__input {
    width: 100%;
    padding: 14px 20px 14px 105px !important;
    /* Offset for grey area */
    background: transparent !important;
    border: none !important;
    border-radius: var(--v2-radius-sm) !important;
    font-family: var(--v2-font-body);
    font-size: 1rem;
    color: var(--v2-text-dark);
    transition: all 0.3s ease;
}

.discovery-form input:focus,
.discovery-form select:focus,
.iti--focus .iti__input {
    outline: none !important;
    border-color: var(--v2-primary) !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.iti__input {
    padding-left: 105px !important;
    /* Offset for fixed-width flag area */
}

/* Intl-Tel-Input Overrides */
.iti {
    width: 100%;
    display: block;
    background: linear-gradient(to right, #f5f5f5 95px, #ffffff 95px) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-radius: var(--v2-radius-sm) !important;
}

.iti__selected-country {
    background-color: #f5f5f5 !important;
    padding: 0 5px !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    border-radius: 10px 0px 0px 10px !important;
    border-right: 1px solid #e0e0e0 !important;
    width: 95px !important;
    z-index: 10 !important;
}

.iti__selected-flag {
    padding: 0 12px !important;
    background-color: transparent !important;
    /* Managed by .iti gradient */
    border-radius: 12px 0 0 12px !important;
    border-right: 1px solid #e0e0e0 !important;
    width: 95px !important;
    display: flex !important;
    align-items: center !important;
    z-index: 10 !important;
}

.iti__flag-container {
    z-index: 11 !important;
    padding: 1px !important;
    /* Inset from input border */
}

.iti__selected-dial-code {
    font-weight: 600;
    color: var(--v2-text-dark);
}

.iti__country-list {
    border-radius: var(--v2-radius-sm) !important;
    border: 1px solid var(--v2-border) !important;
    box-shadow: var(--v2-shadow-glass) !important;
}

.discovery-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23FF6B35' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.flatpickr-calendar {
    border-radius: var(--v2-radius-sm) !important;
    border: 1px solid var(--v2-border) !important;
    box-shadow: var(--v2-shadow-glass) !important;
    font-family: var(--v2-font-body) !important;
}

.flatpickr-day.selected {
    background: var(--v2-primary) !important;
    border-color: var(--v2-primary) !important;
}

.flatpickr-time input:focus {
    background: var(--v2-bg-soft) !important;
}

input[type="datetime-local"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-height: 52px;
}

input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    color: transparent;
    background: transparent;
    cursor: pointer;
    z-index: 5;
}

/* Ensure placeholder-like behavior for native picker */
input[type="datetime-local"]:before {
    content: attr(placeholder);
    width: 100%;
}

input[type="datetime-local"]:focus:before,
input[type="datetime-local"]:valid:before {
    content: "";
    display: none;
}

/* --- Dual Icon Placement --- */
.input-icon-wrapper {
    position: relative;
    width: 100%;
}

.input-icon-v2 {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--v2-text-muted);
    pointer-events: none;
    width: 18px;
    height: 18px;
}

.icon-orange {
    color: var(--v2-primary) !important;
}

/* --- About Section Features List --- */
.about-features-v2 {
    list-style: none;
    padding: 0;
    margin: 28px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-features-v2 li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--v2-text-dark);
}

.about-features-v2 li i,
.about-features-v2 li svg {
    width: 22px !important;
    height: 22px !important;
    stroke-width: 2.5px !important;
    flex-shrink: 0 !important;
    color: var(--v2-primary) !important;
    margin-top: 2px;
}

.form-submit-v2 {
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .discovery-form-card {
        padding: 40px 20px;
    }

    .form-row-v2 {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: left;
    }

    .form-group-v2 {
        text-align: left;
    }

}

/* ---------------------------------------------------------
   Industries We Serve & Results Delivered (Card Design)
   --------------------------------------------------------- */
.industries-v2 {
    padding: 60px 0;
    background: var(--v2-bg-pure);
    position: relative;
}

.ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.section-desc-v2 {
    max-width: 800px;
    margin: 20px auto 0;
    font-size: 1.1rem;
    color: var(--v2-text-muted);
    line-height: 1.6;
}

.half-line {
    width: 60px;
    height: 4px;
    background: var(--v2-primary);
    margin: 30px auto 0;
    border-radius: 4px;
}

.half-line-about {
    width: 50%;
    height: 1px;
    background: var(--v2-border);
    margin: 25px 0;
}

.ind-card {
    padding: 40px 30px;
    border-radius: var(--v2-radius-md);
    background: var(--v2-bg-pure);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--v2-shadow-glass);
    border: 1px solid var(--v2-primary);
}


.ind-icon-box {
    width: 60px;
    height: 60px;
    background: var(--v2-primary);
    color: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.ind-card:hover .ind-icon-box {
    background: var(--v2-primary);
    color: #fff;
}

.ind-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--v2-text-dark);
    font-weight: 700;
}

.ind-card p {
    font-size: 15px;
    color: var(--v2-text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.5;
}

.ind-result-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(16, 185, 129, 0.08);
    padding: 15px;
    border-radius: 12px;
    border: 1px dashed var(--v2-success);
}

.ind-result-icon {
    color: var(--v2-success);
    display: flex;
    align-items: center;
    margin-top: 3px;
}

.ind-result-text {
    font-size: 14px;
    font-weight: 700;
    color: #065f46;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .ind-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .ind-grid {
        grid-template-columns: 1fr;
    }

    .industries-v2 {
        padding: 60px 0;
    }
}

/* ---------------------------------------------------------
   6g. Sticky Contact Sidebar
   --------------------------------------------------------- */
.sticky-contact-sidebar {
    position: fixed;
    left: 10px;
    bottom: 0%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.sticky-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    background: white;
}

.sticky-icon svg {
    width: 20px;
    height: 20px;
}

.sticky-icon i {
    width: 20px;
    height: 20px;
}

.sticky-icon.phone {
    background: var(--v2-primary);
}

.sticky-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 18px;
    /* Rounded square like screenshot */
}

.sticky-icon:hover {
    transform: scale(1.15) translateX(0px);
}

.sticky-icon::before {
    content: attr(title);
    position: absolute;
    left: 100%;
    margin-left: 20px;
    background: var(--v2-text-dark);
    color: white;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.sticky-icon:hover::before {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 991px) {
    .sticky-contact-sidebar {
        left: 20px;
        bottom: 30px;
        top: auto;
        transform: none;
        gap: 10px;
    }

    .sticky-icon {
        width: 50px;
        height: 50px;
    }

    .sticky-icon i,
    .sticky-icon svg {
        width: 22px;
        height: 22px;
    }

    .sticky-icon::before {
        display: none;
    }
}

/* Google Ads Hero Section Styles */
.hero-google-ads {
    padding: 120px 0 30px;
    background: linear-gradient(180deg, rgba(249, 74, 41, 0.15) 0%, rgba(249, 74, 41, 0.025) 100%);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.hero-google-ads .hero-container {
    position: relative;
    z-index: 2;
}

.hero-row {
    display: flex;
    align-items: center;
    gap: 0;
}

.hero-left {
    flex: 1.4;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.badge-google-ads {
    display: inline-block;
    background: linear-gradient(90deg, #F94A29 0%, rgba(249, 74, 41, 0.2) 100%);
    color: #ffffff;
    padding: 5px 10px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    /* letter-spacing: 1px; */
    margin-bottom: 30px;
}

.hero-heading {
    font-size: 60px;
    /* line-height: 79.2px; */
    color: #100602;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.hero-paragraph {
    font-size: 20px;
    color: rgba(16, 6, 2, 0.8);
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.6;
}

.portal-frame {
    position: relative;
    width: 600px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.portal-frame::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    /* width: 50%;
    height: 110%; */
    background: #FDF2F0;
    z-index: 5;
    transform: translateY(-50%);
    pointer-events: none;
}



.portal-img-popout {
    position: absolute;
    width: 520px;
    /* Synchronized with .portal-img-container */
    height: 520px;
    z-index: 15;
    pointer-events: none;
    overflow: visible;
    /* Allow laptop/head to stick out */
}

.portal-img-popout .main-hero-img {
    height: 108%;
    /* EXACT same scale as background copy */
    width: auto;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    /* Clip everything below the laptop base */
    clip-path: inset(-500px -500px 240px -500px);
    object-fit: contain;
}

.bg-circle-dec {
    position: absolute;
    width: 411px;
    height: 431px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    display: block;
    z-index: -1;
    pointer-events: none;
    top: 60%;
    left: 63%;
    transform: translate(-50%, -50%);
}

.google-rating-badge {
    position: absolute;
    top: 100px;
    left: 100px;
    z-index: 20;
    background: #ffffff;
    padding: 14px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #F0F0F0;
    animation: float-slow 6s ease-in-out infinite;
}

.client-review-summary {
    position: absolute;
    bottom: 100px;
    left: -100px;
    z-index: 20;
    background: #ffffff;
    padding: 12px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #F0F0F0;
    animation: float-slow 7s ease-in-out infinite reverse;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-group img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-left: -10px;
}

.avatar-group img:first-child {
    margin-left: 0;
}

.review-text-box {
    display: flex;
    flex-direction: column;
}

.client-label {
    font-size: 13px;
    font-weight: 700;
    color: #100602;
    white-space: nowrap;
}

.star-rating,
.tiny-stars {
    display: flex;
    gap: 2px;
    color: #FBBF24;
}

.star-rating i,
.tiny-stars i {
    width: 14px;
    height: 14px;
    fill: #FBBF24 !important;
    color: #FBBF24 !important;
    stroke: #FBBF24;
}

.badge-title {
    font-weight: 700;
    color: #100602;
    font-size: 14px;
    margin-bottom: 2px;
    display: block;
    white-space: nowrap;
}

/* Icons Cluster */
.icons-cluster {
    position: absolute;
    top: 100px;
    right: -60px;
    z-index: 10;
    animation: float-v2 5s ease-in-out infinite alternate;
}

.icons-img {
    width: 100%;
    height: auto;
}

/* Section Below Hero */
.text-primary-v2 {
    color: #F55E27 !important;
}

.fs-clamp-hl {
    font-size: clamp(32px, 4.5vw, 48px);
    /* line-height: 46px; */
    letter-spacing: -0.72px;
    font-weight: 700;
    color: #100602;
}

.text-muted-v2 {
    color: #100602;
    /* line-height: 1.8; */
    font-size: 18px;
}

.fs-13 {
    font-size: 13px;
}

.ls-1 {
    letter-spacing: 1.5px;
}

.fw-700 {
    font-weight: 700;
}

.section-padding {
    padding: 100px 0;
    background-color: #ffffff;
    /* White background for lower sections */
}

.color-dark {
    color: #100602;
}

/* ==========================================================================
   GOOGLE ADS LANDING PAGE - UNIQUE STYLES (Ref 593)
   ========================================================================== */
.approach-padding {
    padding: 60px 0;
}

/* Why Google Ads Section */
.gads-why {
    padding: 60px 0 !important;
    background-color: #FDF9F7 !important;
}

.gads-dual-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 30px !important;
    align-items: center !important;
}

.gads-eyebrow {
    color: #F55E27 !important;
    font-size: 14px !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
}

.rounded-premium {
    border-radius: 24px !important;
}

.gads-checklist {
    margin: 30px 0;
    list-style: none !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}

.gads-checklist li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 15px !important;
    font-size: 15px !important;
    color: #100602 !important;
    font-weight: 500 !important;
}

.gads-checklist li i,
.gads-checklist li svg {
    color: #F55E27 !important;
    width: 22px !important;
    height: 22px !important;
    flex-shrink: 0 !important;
    margin-top: 2px !important;
    stroke-width: 2 !important;
}

@media (max-width: 991px) {
    .gads-dual-row {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
        text-align: center !important;
    }

    .gads-checklist li {
        justify-content: left !important;
        text-align: left !important;
        padding: 0 20px;
    }
}

/* Our Google Ads Services Section */
.gads-services {
    padding: 60px 0 !important;
    background-color: #ffffff !important;
}

.gads-tabs-nav-wrapper {
    margin: 40px 0 !important;
    /* padding: 0 15px !important; */
}

.gads-tabs-nav {
    display: flex !important;
    justify-content: center !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
}

.gads-tab-btn {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    padding: 10px 15px !important;
    background: #ffffff !important;
    border: 1px solid #E0E0E0;
    border-radius: 8px !important;
    font-weight: 400 !important;
    color: #FF6B35 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-size: 18px !important;
    box-shadow: none !important;
  
}

.gads-tab-btn img {
    width: 16px !important;
    height: 16px !important;
    object-fit: contain !important;
    filter: invert(48%) sepia(87%) saturate(2465%) hue-rotate(345deg) brightness(97%) contrast(92%) !important;
}

.gads-tab-btn:hover {
    border-color: #F55E27 !important;
    background: rgba(245, 94, 39, 0.05) !important;
}

.gads-tab-btn.active {
    background: #FF6B35 !important;
    border-color: #FF6B35 !important;
    color: #ffffff !important;
}

.gads-tab-btn.active img {
    filter: brightness(0) invert(1) !important;
}

/* 
.gads-tabs-container {
    max-width: 1000px !important;
    margin: 0 40px !important;
} */

.gads-tab-pane {
    display: none !important;
    animation: gadsFadeIn 0.4s ease-out !important;
}

.gads-tab-pane.active {
    display: block !important;
}

.gads-tab-card {
    background: #ffffff !important;
    padding: 50px !important;
    border-radius: 40px !important;
    text-align: left !important;
    /* box-shadow: 0 50px 120px rgba(0, 0, 0, 0.04) !important; */
    border: 1px solid #F0F0F0 !important;
    margin-top: 20px !important;
}

.gads-tab-card h4 {
    font-size: 20px;
    font-weight: 500;
    margin-top: 20px;
}

.gads-benefits-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    column-gap: 100px !important;
    row-gap: 15px !important;
    margin-top: 30px !important;
}

.gads-benefit-item {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    color: #333333 !important;
    font-size: 18px !important;
}

.youtub-para {
    margin-top: 20px;
}

.gads-benefit-item svg {
    background-color: #F55E27 !important;
    color: #ffffff !important;
    width: 32px !important;
    height: 32px !important;
    padding: 8px !important;
    border-radius: 50% !important;
    stroke-width: 4 !important;
    flex-shrink: 0 !important;
}

@keyframes gadsFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .gads-benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        column-gap: 0 !important;
    }

    .gads-tab-card {
        padding: 40px 25px !important;
    }
}

@media (max-width: 768px) {
    .gads-tabs-nav {
        gap: 10px !important;
    }

    .gads-tab-btn {
        padding: 12px 18px !important;
        font-size: 14px !important;
        width: 100%;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }
}

/* What Makes Us Different Section (Step Id 647) */
.gads-features {
    padding: 60px 0 !important;
    background-color: #ffffff !important;
}

.gads-features-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    margin-top: 50px !important;
}

.gads-feature-card {
    background: #ffffff !important;
    border: 1px solid #FFDED4;
    border-radius: 40px !important;
    padding: 30px 25px 0 !important;
    box-shadow: 0px 4px 6px -2px #0000000D;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

.gads-feature-card h3 {
    margin-bottom: 15px !important;
    font-size: 24px !important;
}

.gads-feature-card p {
    font-size: 17px !important;
    color: #100602 !important;
    line-height: 1.8 !important;
}

.gads-feature-icon {
    width: 60px !important;
    height: 60px !important;
    background-color: rgba(245, 94, 39, 0.08) !important;
    color: #F55E27 !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 20px !important;
}

.gads-feature-icon i,
.gads-feature-icon svg {
    width: 26px !important;
    height: 26px !important;
    stroke-width: 2.5 !important;
}

.gads-feature-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.gads-feature-list li {
    position: relative !important;
    padding-left: 20px !important;
    margin-bottom: 10px !important;
    color: #100602CC !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
}

.gads-feature-list li::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 9px !important;
    width: 5px !important;
    height: 5px !important;
    background-color: #000 !important;
    border-radius: 50% !important;
    /* Round dots (Ref 755) */
}

@media (max-width: 1100px) {
    .gads-features-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}

@media (max-width: 768px) {
    .gads-features-grid {
        grid-template-columns: 1fr !important;
    }

    .gads-feature-card {
        padding: 40px 25px !important;
    }

    .gads-features {
        padding: 60px 0 !important;
    }
}

/* Shared Google Ads Section Header Styles (Ref 727) */
.gads-section-header {
    text-align: center !important;
}

.gads-section-header h2 {
    font-size: clamp(32px, 5vw, 48px) !important;
    line-height: 1.2 !important;
    max-width: 800px;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}

.gads-section-header p {
    font-size: 18px !important;
    line-height: 1.8 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    color: #100602 !important;
    /* Soft grey */
}

/* Benefits of Hiring an Agency Section (Ref 811) */
.gads-benefits {
    padding: 60px 0 !important;
    background: #E1E1E133;
}

.gads-benefits-row {
    display: grid !important;
    grid-template-columns: 1.2fr 1fr !important;
    gap: 80px !important;
    align-items: center !important;
}

.gads-benefits-check-grid {
    display: grid !important;
    margin: 20px 0 !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px 30px !important;
}

.gads-check-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    color: #100602CC !important;
    font-weight: 600 !important;
    font-size: 16px !important;
}

.gads-check-item i,
.gads-check-item svg {
    color: #F55E27 !important;
    width: 20px !important;
    height: 20px !important;
    stroke-width: 2.5 !important;
    flex-shrink: 0 !important;
}

.gads-benefits-visual img {
    width: 100% !important;
    height: auto !important;
    border-radius: 10px;
}

.fbs-why-img{
    height: 760px !important; 
    width: 100% !important; 
    object-fit: cover !important;
    border-radius: 10px !important;
}

@media (max-width: 1100px) {
    .gads-benefits-row {
        gap: 50px !important;
    }
}

@media (max-width: 991px) {
    .gads-benefits-row {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }

    .gads-benefits-content {
        order: 1 !important;
    }

    .gads-benefits-visual {
        order: 2 !important;
        max-width: 600px !important;
        margin: 0 auto !important;
    }

    .gads-benefits-check-grid {
        text-align: left !important;
        max-width: 500px !important;
        margin: 30px auto 30px !important;
    }
}

@media (max-width: 576px) {
    .gads-benefits-check-grid {
        grid-template-columns: 1fr !important;
    }
    .fbs-why-img{
        height:100% !important;
    }
}

/* Our Google Ads Process Section (Ref 816) */
.gads-process {
    padding-top: 60px !important;
}

.gads-process-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    margin-top: 50px !important;
}

.gads-process-card {
    background: #ffffff !important;
    border: 1px solid #FFDED4;
    border-radius: 40px !important;
    padding: 30px !important;
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.03) !important;
    transition: all 0.4s ease !important;
    position: relative !important;
}

.gads-step-badge {
    width: 40px !important;
    height: 40px !important;
    background-color: #F55E27 !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 800 !important;
    font-size: 18px !important;
    margin-bottom: 25px !important;
}

.gads-process-card h3 {
    font-size: 22px !important;
    margin-bottom: 20px !important;
}

.gads-process-card p {
    font-size: 18px !important;
    color: #100602 !important;
}

@media (max-width: 1100px) {
    .gads-process-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}

@media (max-width: 768px) {
    .gads-process-grid {
        grid-template-columns: 1fr !important;
    }

    .gads-process-card {
        padding: 40px 25px !important;
    }

}

/* Industries We Work With Section (Ref 743) */
.gads-industries {
    padding-bottom: 60px !important;
    background-color: #ffffff !important;
}

.gads-industries-slider-wrapper {
    position: relative !important;
    max-width: 1111px !important;
    margin: 10px auto 0 !important;
    padding: 0 60px !important;
}

.gads-slider-btn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 45px !important;
    height: 45px !important;
    background: #ffffff !important;
    border: 1px solid #FFDED4 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #F55E27 !important;
    cursor: pointer !important;
    z-index: 10 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
}

.gads-slider-btn:hover {
    background-color: #F55E27 !important;
    color: #ffffff !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.gads-slider-btn.prev {
    left: 0 !important;
}

.gads-slider-btn.next {
    right: 0 !important;
}

.gads-slider-btn i,
.gads-slider-btn svg {
    width: 20px !important;
    height: 20px !important;
    stroke-width: 3 !important;
}

#industry-slider-container {
    overflow-x: auto !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    scroll-behavior: smooth !important;
    padding: 20px 0 !important;
    scroll-snap-type: x mandatory !important;
    margin: 0 auto !important;
    width: 820px !important;
    max-width: 100% !important;
}

@media (max-width: 950px) {
    #industry-slider-container {
        width: 540px !important;
    }
}

@media (max-width: 650px) {
    #industry-slider-container {
        width: 260px !important;
    }
}

#industry-slider-container::-webkit-scrollbar {
    display: none !important;
    /* Chrome/Safari */
}

.gads-industry-track {
    /* Removed animation for manual control */
    display: flex !important;
    gap: 20px !important;
    width: max-content !important;
}

.gads-industry-card {
    background: #F94A290D !important;
    border-radius: 20px !important;
    width: 260px !important;
    height: 130px !important;
    padding: 10px;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
    scroll-snap-align: center !important;
}



.gads-industry-icon {
    color: #F55E27 !important;
    width: 42px !important;
    height: 42px !important;
    transition: color 0.3s ease !important;
}

.gads-industry-icon i,
.gads-industry-icon svg {
    width: 40px !important;
    height: 40px !important;
    stroke-width: 2 !important;
}

.gads-industry-name {
    font-weight: 400 !important;
    color: #100602 !important;
    font-size: 18px !important;
    line-height: 1.3 !important;
    transition: color 0.3s ease !important;
}

@media (max-width: 768px) {
    .gads-industries-slider-wrapper {
        padding: 0 40px !important;
    }

    .gads-slider-btn {
        width: 35px !important;
        height: 35px !important;
    }

    .gads-industry-card {
        width: calc(100vw - 120px) !important;
        padding: 20px !important;
    }

    .gads-industry-name {
        font-size: 15px !important;
    }
}

/* Management Packages Section (Ref 859) */
.gads-pricing {
    padding-bottom: 60px !important;
    background-color: #ffffff !important;
}

.gads-pricing-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    align-items: center !important;
    margin-top: 50px !important;
}

.gads-pricing-card {
    background: #ffffff !important;
    border-radius: 40px !important;
    padding: 50px 40px !important;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.04) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
    transition: all 0.4s ease !important;
    border: 1.5px solid #F3F4F6 !important;
    box-shadow: 0px 25px 50px -12px #00000040;

}

.gads-pricing-card.featured {
    background-color: #FF6B35 !important;
    color: #ffffff !important;
    transform: scale(1.05) !important;
    box-shadow: 0px 25px 50px -12px #00000040 !important;
    border: none !important;
}

.gads-package-name {
    font-size: 18px !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    color: inherit !important;
}

.gads-price {
    font-size: 42px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    margin-bottom: 10px !important;
    display: flex !important;
    align-items: baseline !important;
    gap: 5px !important;
}

.gads-currency {
    font-size: 42px !important;
    font-weight: 800 !important;
}

.gads-suffix {
    font-size: 14px !important;
    font-weight: 800 !important;
    opacity: 0.8 !important;
}

.gads-tagline {
    font-size: 16px !important;
    line-height: 1.5 !important;
    opacity: 0.9 !important;
    margin-bottom: 0 !important;
}

.gads-price-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}

.gads-price-list li {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    color: inherit !important;
}

.gads-price-list li i,
.gads-price-list li svg {
    width: 20px !important;
    height: 20px !important;
    stroke-width: 3 !important;
    color: #F55E27 !important;
    flex-shrink: 0 !important;
}

.featured .gads-price-list li i,
.featured .gads-price-list li svg {
    color: #ffffff !important;
}

.gads-ad-spend {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    font-size: 15px !important;
    font-weight: 700;
    margin-top: 20px !important;
    opacity: 0.9 !important;
}

.gads-ad-spend i {
    width: 18px !important;
    height: 18px !important;
    margin-top: 3px !important;
    flex-shrink: 0 !important;
}

.gads-btn-outline {
    display: block !important;
    width: 100% !important;
    padding: 18px !important;
    border: 2px solid #100602 !important;
    border-radius: 16px !important;
    text-align: center !important;
    color: #100602 !important;
    font-weight: 800 !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.gads-btn-solid {
    display: block !important;
    width: 100% !important;
    padding: 18px !important;
    background-color: #ffffff !important;
    color: #000 !important;
    border-radius: 16px !important;
    text-align: center !important;
    font-weight: 800 !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}


@media (max-width: 1100px) {
    .gads-pricing-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .gads-pricing-card.featured {
        grid-column: span 2 !important;
        transform: none !important;
    }
}

@media (max-width: 768px) {
    .gads-pricing-grid {
        grid-template-columns: 1fr !important;
    }

    .gads-pricing-card.featured {
        grid-column: span 1 !important;
    }

    .gads-pricing-card {
        padding: 40px 25px !important;
    }

    .gads-pricing-card {
        height: auto;
    }
}

/* Why Choose Us Grid Section (Ref 934) */
.gads-why-grid {
    padding: 60px 0 !important;
    background-color: #ffffff !important;
}

.gads-why-container {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
    margin-top: 50px !important;
}

.gads-why-container-fbs {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    margin-top: 50px !important;
}

.gads-why-card {
    background-color: #FFF7F4 !important;
    border-radius: 8px !important;
    padding: 35px 30px !important;
    display: flex !important;
    align-items: center !important;
    gap: 25px !important;
    transition: all 0.3s ease !important;
}

.gads-why-icon-box {
    width: 48px !important;
    height: 48px !important;
    background-color: #ffffff !important;
    border-radius: 6px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0px 4px 12px 0px #0000000D;
    flex-shrink: 0 !important;
}

.gads-why-icon-box i,
.gads-why-icon-box svg {
    color: #F55E27 !important;
    width: 20px !important;
    height: 20px !important;
    stroke-width: 2 !important;
}

.gads-why-text {
    font-size: 18px !important;
    line-height: 1.6 !important;
    color: #100602 !important;
    font-weight: 500 !important;
}

.tiny-stars svg,
.star-rating svg {
    width: 10px;
    height: 10px;
}

.google-stars {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #e4e2df;
    padding: 3px;
}

@media (max-width: 991px) {
    .gads-why-container {
        grid-template-columns: 1fr !important;
    }

    .gads-why-container-fbs {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .gads-why-grid {
        padding: 60px 0 !important;
    }
}

@media (max-width: 576px) {
    .gads-why-card {
        padding: 25px 20px !important;
        gap: 15px !important;
    }

    .gads-why-icon-box {
        width: 60px !important;
        height: 60px !important;
    }

    .gads-why-icon-box i,
    .gads-why-icon-box svg {
        width: 24px !important;
        height: 24px !important;
    }
}

/* Google Ads Hero Responsive */
@media (max-width: 768px) {
    .hero-google-ads {
        padding: 120px 0 60px !important;
    }

    .hero-row {
        flex-direction: column !important;
        text-align: center !important;
        gap: 40px !important;
    }

    .hero-paragraph {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-cta-wrapper {
        justify-content: center !important;
        display: flex !important;
    }

    .visual-wrapper {
        max-width: 400px !important;
        height: 400px !important;
        margin: 0 auto !important;
    }

    .bg-circle-outline,
    .bg-circle-dec {
        width: 100% !important;
        height: 100% !important;
        bottom: 0 !important;
        right: 0 !important;
    }

    .main-hero-img {
        height: 400px !important;
        margin-right: 0 !important;
    }

    .google-rating-badge {
        top: 20px !important;
        left: 10px !important;
    }

    .client-review-summary {
        bottom: 0px !important;
        left: 20px !important;
    }

    .icons-cluster {
        display: none !important;
    }

    .portal-frame {
        width: 100%;
        height: 100%;
    }

    .bg-circle-dec {
        display: none;
    }
}

.gads-simple-success {
    padding: 60px 0;
    background-color: #FDF9F7 !important;
}

.gads-benefits-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.gads-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 20px 60px;
    /* margin-top: 30px; */
    text-align: left;
}

.gads-benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: #100602;
    font-weight: 500;
}

.gads-benefit-item i {
    width: 20px;
    height: 20px;
    color: var(--v2-primary);
}

@media (max-width: 576px) {
    .gads-benefits-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Testimonial Stars Fill (Hero & Testimonials) */
.tp-stars i,
.tp-stars svg,
.star-rating i,
.star-rating svg,
.tiny-stars i,
.tiny-stars svg {
    fill: #FFB800 !important;
    color: #FFB800 !important;
    width: 11px !important;
    height: 10px !important;
}