/* Light Theme Variables */
:root {
    /* Light Theme Colors */
    --primary-color: #1e4ca9;
    /* Blue Royal */
    --primary-hover: #14397e;
    /* Deeper Blue */
    --background-primary: #f4faff;
    /* Very light blue */
    --background-secondary: #eaf3fc;
    /* Subtle light blue-gray */
    --text-primary: #0b2a4a;
    /* Deep Blue */
    --text-secondary: #5d789a;
    /* Muted Blue-Gray */
    --border-color: #c3d9f1;
    /* Soft blue border */
    --shadow-color: rgba(30, 76, 169, 0.05);
    --card-shadow-hover: rgba(30, 76, 169, 0.08);

    --gradient-primary: linear-gradient(135deg, #eaf3fc, #f4faff);
    --gradient-secondary: linear-gradient(135deg, #d4e8fc, #eaf3fc);
    --gradient-hover: linear-gradient(135deg, #b6dbff, #d4e8fc);
    --gradient-border: linear-gradient(90deg, #b6dbff, #eaf3fc);
    --pulse-glow: rgba(30, 76, 169, 0.3);
    /* default for light */
}

[data-theme="dark"] {
    /* Dark Theme Inspired by Image */
    --primary-color: #57a8ff;
    /* Bright Blue for accents */
    --primary-hover: #89c2ff;
    --background-primary: #041627;
    /* Dark Navy Blue */
    --background-secondary: #0a2236;
    /* Slightly lighter blue */
    --text-primary: #e1f0ff;
    /* Very light blue text */
    --text-secondary: #90b4d4;
    /* Muted blue-gray */
    --border-color: #204060;
    /* Deep steel blue */
    --shadow-color: rgba(255, 255, 255, 0.05);
    --card-shadow-hover: rgba(255, 255, 255, 0.08);

    --gradient-primary: linear-gradient(135deg, #0a2236, #04335f);
    --gradient-secondary: linear-gradient(135deg, #153251, #0a2236);
    --gradient-hover: linear-gradient(135deg, #215d8c, #0a2236);
    --gradient-border: linear-gradient(90deg, #215d8c, #0a2236);
    --pulse-glow: rgba(87, 168, 255, 0.15);
    /* dimmer for dark */
}

@font-face {
    font-family: safira_march;
    src: url('./fonts/Safira\ March\ Personal\ Use\ Only.ttf');
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
    background: var(--gradient-primary);
}

/* General styles for the container - you can adjust these as needed */
.container {
    max-width: 100%;
    margin: 0 auto;
}

/* --- IMAGE FEATURE SECTION --- */
.feature-showcase {
    width: 80%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    margin: 5% auto;

    @media screen and (max-width: 990px) {
        width: 100%;
        margin: 2%;
        padding: 2%;
    }

    @media screen and (max-width: 768px) {
        display: block;
        width: 100%;
        gap: 1rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
        grid-template-columns: repeat(1, 1fr);
    }
}

.feature-showcase-text h2 {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.highlight {
    color: #12fd67e0;
    font-weight: 700;
    display: inline-block;
    transition: opacity 0.5s ease;
}

.feature-showcase-text p {
    max-width: 100%;
    margin-bottom: 2rem;
    text-align: left;
}


.image-placeholder-wrapper {
    position: relative;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    margin-left: 30%;

    @media screen and (max-width: 990px) {
        margin-left: 0rem;
    }

    @media screen and (max-width: 768px) {
        margin-left: 0rem;
    }
}

.image-placeholder {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    object-fit: cover;
    z-index: 5;
    margin-top: -5rem;
}

/* ICON ROTATOR */
#icon-rotator {
    /* position: absolute; */
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
}

.icon-frame {
    position: absolute;
    width: 80px;
    height: 80px;
    padding: 10px;
    border-radius: 50%;
    background: var(--gradient-secondary, #ffffff);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.icon-frame.active {
    opacity: 1;
    transform: scale(1);
    z-index: 10;
}

/* Responsive */
@media (max-width: 768px) {
    .feature-showcase {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-showcase-text h2 {
        text-align: center;
        font-size: 2rem;
    }

    .image-placeholder-wrapper {
        transform: scale(0.9);
    }

    #icon-rotator {
        top: -20px;
    }
}


section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.section-ptitle {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 2rem auto;
}

.our-services-section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    max-width: 650px;
    margin: 0 auto 2rem auto;
    color: #e1f0ff;
}

.cta-button {
    /* background: var(--gradient-primary);
    color: var(--text-primary); */
    border: 1px solid var(--border-color);
    padding: 0.5em 1em;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    text-align: center;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out,
        transform 0.3s ease-in-out;
    background-color: var(--primary-color);
    color: #FFFFFF;
    text-decoration: none;

}

.cta-button:hover {
    /* background: var(--gradient-hover);
    transform: translateY(-2px); */

    background-color: var(--primary-hover);
    box-shadow: 0px 5px 20px color-mix(in srgb, var(--primary-color) 40%, transparent);

}

/* Header */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 10%;
    margin: 0 auto;
    transition: background-color 0.3s ease;
    background: var(--background-secondary);

    @media screen and (max-width: 768px) {
        padding: 1rem;
    }
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--text-primary);
    text-decoration: none;
}

.nav-logo span {
    color: var(--primary-blue);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-links a {
    font-family: safira_march;
    color: var(--text-primary);
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 700;
    transition: color 0.3s ease;
    letter-spacing: 2px;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

.theme-toggle-button {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.4rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 5px;
}

.theme-toggle-button:hover {
    color: var(--primary-blue);
}

.theme-toggle-button .fa-sun {
    display: none;
}

[data-theme="dark"] .theme-toggle-button .fa-sun {
    display: inline-block;
}

[data-theme="dark"] .theme-toggle-button .fa-moon {
    display: none;
}

/* Hero Section */
.hero {
    width: 80%;
    margin: 2rem auto auto auto;
    padding-top: 4rem;
    padding-bottom: 2rem;

    @media screen and (max-width: 768px) {
        padding-top: 2rem;
        margin-top: 1rem;
        width: 90%;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
}

.hero-text h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.hero-text h1 span {
    color: var(--primary-blue);
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Results Section */
/* Section Titles */
.section-ptitle {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}



.results {
    width: 100%;
    background: var(--gradient-hover);
}

/* --- 3D Grid and Card Styles --- */
.results-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    width: 80%;
    margin: 0 auto;

    @media screen and (max-width: 768px) {
        width: 90%;
    }
}

/* Set up the 3D space for each card */
.result-card {
    perspective: 1500px;
    flex: 0 1 300px;
    /* Responsive 3 per row max */
}

.result-card-inner {
    background: var(--gradient-primary);
    padding: 2rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    /* This is critical for the parallax effect */
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

/* Apply a drop shadow when the card is tilted */
.result-card-inner:hover {
    filter: drop-shadow(0 15px 15px var(--shadow-color));
}

/* Position the content elements in 3D space */
.result-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    /* Lifts the heading 50px towards the viewer */
    transform: translateZ(50px);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.result-card p {
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--text-color);
    /* Lifts the paragraph 30px towards the viewer */
    transform: translateZ(30px);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Services Section */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    /* Set up the 3D space */
    perspective: 1500px;
}

/* The main card wrapper - this is what we'll apply perspective to */
.service-card {
    flex: 0 1 300px;
    /* This transition is for when the mouse leaves */
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}

/* An inner container to hold the content, image, and glare */
.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
    background: var(--gradient-secondary);
    display: flex;
    /* Using flex to structure the card content */
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
    /* Push the image back to create depth */
    transform: translateZ(20px);
}

.service-content {
    padding: 1.5rem;
    text-align: left;
    /* Push the content forward, above the image */
    transform: translateZ(50px);
}

.service-content h3 {
    margin: 0 0 0.8rem;
    font-size: 1.3rem;
    color: var(--text-primary);
}

.service-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
}


.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}



.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}



#industries-we-serve {
    padding: 4rem 1rem;
    position: relative;
    z-index: 1;
}

.client-showcase {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.marquee-wrapper {
    position: relative;
    overflow: hidden;
}

.marquee {
    display: inline-flex;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
}

.marquee-item {
    display: inline-block;
    padding: 0 2.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.marquee-item:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.marquee-fade {
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-fade.left {
    left: 0;
    background: linear-gradient(to right,
            var(--background-secondary),
            transparent);
}

.marquee-fade.right {
    right: 0;
    background: linear-gradient(to left,
            var(--background-secondary),
            transparent);
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .marquee-item {
        padding: 0 1.2rem;
        font-size: 1rem;
    }
}

/* Testimonials Section */
#testimonials {
    background-color: var(--gradient-secondary);
    transition: background-color 0.3s ease;
    width: 80%;
    margin: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--gradient-primary);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.testimonial-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-card-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1.1rem;
}

.testimonial-card>p {
    font-style: italic;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: flex-start;
    width: 80%;
    margin: auto;
}

.contact-form-container {
    background: var(--gradient-secondary);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.contact-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-input {
    width: 100%;
    padding: 14px 12px 10px 12px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--gradient-primary);
    color: var(--text-primary);
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-label {
    position: absolute;
    left: 13px;
    top: 14px;
    color: var(--text-secondary);
    pointer-events: none;
    transition: all 0.2s ease-out;
    background-color: var(--gradient-primary);
    padding: 0 4px;
}



.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding-bottom: 2rem;
}

.calendly-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 500px;
}


.form-loader {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 10px auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 var(--card-shadow-hover);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(75, 0, 130, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(75, 0, 130, 0);
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a2236, #041627);
    color: #fff;
    padding: 2rem 0 2rem 0;
}

.footer-grid {
    width: 80%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;

    @media screen and (max-width:990px) {
        width: 90%;
    }
}

.footer-column .nav-logo {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-column p {
    /* max-width: 280px; */
}

.footer-column h4 {
    /* color: var(--text-primary); */
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 1rem;
}

.footer-column a {
    /* color: var(--text-primary); */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    /* color: var(--primary-blue); */
}

.footer-column .social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-column a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-column .social-link i {
    color: var(--primary-color);
    font-size: 1rem;
}

.quick-contact {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.quick-contact a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.cool-hr {
    position: relative;
    width: 75%;
    margin: 2rem auto;
    height: 2px;
    border: none;
    background: linear-gradient(to right,
            transparent,
            #aaa,
            #0587b6,
            #aaa,
            transparent);
    border-radius: 1px;
    overflow: hidden;
    box-shadow: 0 0 6px rgba(200, 200, 200, 0.5);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.cool-hr::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 200%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.7),
            transparent);
    animation: shine 2s infinite linear;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
    .cool-hr {
        background: linear-gradient(to right,
                transparent,
                cyan,
                white,
                cyan,
                transparent);
        box-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
    }

    .cool-hr::after {
        background: linear-gradient(90deg,
                transparent,
                rgba(0, 255, 255, 0.6),
                transparent);
    }
}

/* Responsive */
@media (max-width: 992px) {

    .hero-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-image {
        grid-row: 1;
        margin-bottom: 2rem;
    }

    .hero-text {
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        height: 100%;
        right: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: var(--gradient-primary);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        box-shadow: -4px 0px 15px var(--shadow-color);
        transition: right 0.4s ease-in-out;
    }

    .nav-menu.active {
        right: 0;
        top: 0;
        height: 100%;
        background: var(--gradient-secondary);
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .nav-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-actions .cta-button {
        display: none;
    }

    .image-placeholder {
        margin-top: 0rem;
    }

    .image-placeholder {
        width: 350px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .contact-grid {
        width: 90%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-column p {
        margin: 0 auto 1.5rem auto;
    }
}



.services-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    background: linear-gradient(135deg, #061868 0% 0%, #128194 100%);
    padding: 2rem;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    opacity: 0;
    transform: translateY(50px);
}

.our-services-section-title {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #e1f0ff;
}

.services-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 120px;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(100px) scale(0.8);
    width: 100%;
    max-width: 350px;
    z-index: 2;
    height: fit-content;
}

.service-card:nth-child(even) {
    align-self: flex-end;
    margin-right: 50px;
}

.service-card:nth-child(odd) {
    align-self: flex-start;
    margin-left: 50px;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transform: scale(0);
}

.line-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.zigzag-path {
    fill: none;
    stroke: url(#gradient);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.connection-dot {
    fill: #00d4ff;
    stroke: #fff;
    stroke-width: 2;
    r: 6;
    opacity: 0;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.6));
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 100px;
    height: 100px;
    background: #ff6b6b;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.circle-2 {
    width: 60px;
    height: 60px;
    background: #4ecdc4;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.circle-3 {
    width: 80px;
    height: 80px;
    background: #feca57;
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .services-container {
        gap: 80px;
    }

    .service-card {
        max-width: 280px;
    }

    .service-card:nth-child(even),
    .service-card:nth-child(odd) {
        align-self: center;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .services-container {
        gap: 60px;
    }

    .service-card {
        max-width: 250px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .service-title {
        font-size: 1.3rem;
    }
}


/* ========================================= */
/* Shopify Forced-Focus Showcase Section     */
/* ========================================= */

.forced-focus-showcase {
    background: var(--background-primary);
    padding: 0;
}

.focus-wrapper {
    display: flex;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

/* --- Left Sticky Column --- */
.focus-sticky-column {
    width: 45%;
    height: 100vh;
    position: sticky;
    top: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0 5%;
}

.sticky-content {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
}

.sticky-title {
    position: absolute;
    width: 100%;
    text-align: left;
    transition: opacity 0.5s ease-in-out;
}

.sticky-title .emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.sticky-title h2 {
    font-size: 2.8rem;
    color: var(--text-primary);
    line-height: 1.2;
}

#results-title {
    opacity: 0;
}

/* --- Right Scrolling Column --- */
.focus-scroll-column {
    width: 55%;
    padding: 15vh 0;
}

.focus-step {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 10%;
}

/* --- Content Cards --- */
.reason-item,
.result-focus-card {
    background: var(--gradient-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 0.3;
    /* Dimmed state for DESKTOP ONLY */
    transform: scale(0.98);
}

.reason-item.is-active,
.result-focus-card.is-active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 10px 30px var(--card-shadow-hover);
}

.reason-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0 0 8px;
}

.reason-item p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin: 0;
}

.result-focus-card h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
}

.result-focus-card .stat {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 10px 0;
}

.result-focus-card .detail {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
}

/* --- Header Section --- */
.shopify-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.shopify-header {
    background: var(--gradient-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px var(--shadow-color);
    text-align: center;
}

.shopify-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.shopify-header .subtitle {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 25px;
}



.whatsapp-marketing-container {
    background-color: var(--background-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;

}

/* --- CORE COMPONENT STYLES --- */
.whatsapp-marketing-section {
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
}

.whatsapp-marketing-section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.whatsapp-marketing-section-title .whatsapp-marketing-highlight {
    color: var(--primary-color);
    /* Removed gradient text to support solid color from theme */
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    text-fill-color: unset;
}

.whatsapp-marketing-card {
    background: var(--gradient-secondary);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px var(--shadow-color);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
    border-color: var(--primary-color);
}

.whatsapp-marketing-card:hover {
    transform: translateY(-8px);
    background: var(--gradient-hover);
    box-shadow: 0 8px 20px var(--card-shadow-hover);
}

.whatsapp-marketing-cta-button {
    padding: 15px 35px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.whatsapp-marketing-primary-cta {
    background-color: var(--primary-color);
    color: #FFFFFF;
    text-decoration: none;
}

.whatsapp-marketing-primary-cta:hover {
    background-color: var(--primary-hover);
    box-shadow: 0px 5px 20px color-mix(in srgb, var(--primary-color) 40%, transparent);
}

.whatsapp-marketing-secondary-cta {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    text-decoration: none;
}

.whatsapp-marketing-secondary-cta:hover {
    background-color: color-mix(in srgb, var(--text-primary) 10%, transparent);
    border-color: var(--primary-color);
}

.whatsapp-marketing-icon {
    font-size: 32px;
    margin-right: 22px;
    margin-bottom: 0px;
    color: var(--primary-color);
}

/* --- SECTION-SPECIFIC STYLES --- */
#whatsapp-marketing-hero .whatsapp-marketing-subtitle {
    font-size: 38px;
    font-weight: 700;
    margin-top: -15px;
    color: var(--text-primary);
}

#whatsapp-marketing-hero p {
    max-width: 700px;
    margin: 20px 0 40px;
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.6;
}

#whatsapp-marketing-hero .whatsapp-marketing-stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    width: 90%;
}

#whatsapp-marketing-hero .whatsapp-marketing-stat-card {
    flex-basis: 220px;
    text-align: center;
}

#whatsapp-marketing-why-us .whatsapp-marketing-flex-container,
#whatsapp-marketing-use-cases .whatsapp-marketing-flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    width: 100%;
}

#whatsapp-marketing-why-us .whatsapp-marketing-reason-card {
    text-align: left;
    flex-basis: 300px;
    flex-grow: 1;
    max-width: 400px;
}

#whatsapp-marketing-use-cases .whatsapp-marketing-use-case-card {
    flex-basis: 300px;
    flex-grow: 1;
    max-width: 350px;
}

.whatsapp-marketing-highlight-card {
    border-color: var(--primary-color) !important;
}

#whatsapp-marketing-offer .whatsapp-marketing-offer-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 900px;
}

#whatsapp-marketing-offer .whatsapp-marketing-offer-card {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 25px 30px;
}

#whatsapp-marketing-offer .whatsapp-marketing-offer-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

/* Timeline Section */
#whatsapp-marketing-how .whatsapp-marketing-process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1000px;
    margin-top: 50px;
    position: relative;
}

#whatsapp-marketing-how .whatsapp-marketing-process-timeline::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
    transition: background-color 0.3s ease;
}

#whatsapp-marketing-how .whatsapp-marketing-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25%;
    position: relative;
    z-index: 2;
}

#whatsapp-marketing-how .whatsapp-marketing-step-icon-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    background-color: var(--background-primary);
    transition: background-color 0.3s ease;
}

#whatsapp-marketing-how .whatsapp-marketing-step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 36px;
}

#whatsapp-marketing-how .whatsapp-marketing-step-number {
    position: absolute;
    top: -10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--text-primary);
    color: var(--background-primary);
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#whatsapp-marketing-how .whatsapp-marketing-step p {
    max-width: 200px;
    font-size: 16px;
    color: var(--text-secondary);
}

/* Final CTA */
.arrow-down {
    display: none;
}

#whatsapp-marketing-cta .whatsapp-marketing-flow {
    font-size: 24px;
    font-weight: 600;
    margin: 25px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: var(--text-primary);
}

#whatsapp-marketing-cta .whatsapp-marketing-flow span {
    color: var(--primary-color);
}

#whatsapp-marketing-cta .whatsapp-marketing-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}


@media (max-width: 1024px) {

    .whatsapp-marketing-section-title,
    #whatsapp-marketing-hero .whatsapp-marketing-subtitle {
        font-size: 28px;
    }

    #whatsapp-marketing-why-us .whatsapp-marketing-reason-card,
    #whatsapp-marketing-use-cases .whatsapp-marketing-use-case-card {
        flex-basis: 45%;
    }

    #whatsapp-marketing-how .whatsapp-marketing-step {
        width: 50%;
        margin-bottom: 40px;
    }

    #whatsapp-marketing-how .whatsapp-marketing-process-timeline::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .whatsapp-marketing-section {
        padding: 60px 5%;
    }

    #whatsapp-marketing-hero .whatsapp-marketing-stats-container {
        flex-direction: column;
    }

    #whatsapp-marketing-hero .whatsapp-marketing-stat-card {
        width: 100%;
        max-width: 350px;
    }

    #whatsapp-marketing-why-us .whatsapp-marketing-reason-card,
    #whatsapp-marketing-use-cases .whatsapp-marketing-use-case-card {
        flex-basis: 100%;
    }

    #whatsapp-marketing-how .whatsapp-marketing-step {
        width: 100%;
    }

    #whatsapp-marketing-cta .whatsapp-marketing-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        align-items: stretch;
    }
}

/* ========================================= */
/*           RESPONSIVE STYLES               */
/* ========================================= */

/* --- Tablet & Smaller Desktop --- */
@media (max-width: 1200px) {
    .sticky-title h2 {
        font-size: 2.5rem;
    }
}

/* Responsive: Stack layout on smaller screens */
@media (max-width: 900px) {
    .focus-wrapper {
        flex-direction: column;
    }

    .focus-sticky-column,
    .focus-scroll-column {
        width: 100%;
        position: static;
        height: auto;
    }

    .focus-sticky-column {
        height: auto;
        padding: 80px 20px 40px;
        text-align: center;
    }

    .sticky-title h2 {
        font-size: 2.2rem;
    }

    #results-title {
        display: none;
    }

    /* Hide second title on mobile for simplicity */

    .focus-scroll-column {
        padding: 0 20px 80px;
    }

    .focus-step {
        min-height: auto;
        padding: 0;
    }

    .reason-item,
    .result-focus-card {
        opacity: 1;
        transform: none;
    }

    /* Disable focus effect */
}

/* --- Stacked Layout for Tablets & Mobile --- */
@media (max-width: 900px) {
    .focus-wrapper {
        flex-direction: column;
    }

    .focus-sticky-column,
    .focus-scroll-column {
        width: 100%;
        position: static;
        height: auto;
    }

    .focus-sticky-column {
        padding: 80px 20px 40px;
    }

    .sticky-content {
        height: auto;
        justify-content: center;
    }

    .sticky-title {
        position: static;
        text-align: center;
        opacity: 1 !important;
    }

    #results-title {
        display: none;
    }

    .focus-scroll-column {
        padding: 0 20px 80px;
    }

    .focus-step {
        min-height: auto;
        padding: 0;
    }

    /* THIS IS THE KEY FIX: Makes cards visible on mobile */
    .reason-item,
    .result-focus-card {
        opacity: 1;
        transform: none;
        margin-bottom: 20px;
    }
}

/* --- Mobile Text Sizes --- */
@media (max-width: 768px) {
    .shopify-header h2 {
        font-size: 2rem;
    }

    .shopify-header .subtitle {
        font-size: 1.2rem;
    }

    .sticky-title h2 {
        font-size: 2.2rem;
    }

    .result-focus-card .stat {
        font-size: 3rem;
    }

    #whatsapp-marketing-cta .whatsapp-marketing-flow {
        flex-direction: column;
    }

    .arrow-right {
        display: none;
    }

    .arrow-down {
        display: block;
    }

    .section-subtitle {
        max-width: 350px;
    }



}

/* --- Small Mobile --- */
@media (max-width: 480px) {
    .shopify-header h2 {
        font-size: 1.6rem;
    }

    .shopify-header .subtitle {
        font-size: 1.05rem;
    }

    .sticky-title h2 {
        font-size: 1.8rem;
    }

    .result-focus-card .stat {
        font-size: 2.5rem;
    }
}



/* ========== PORTRAIT VIDEO SHOWCASE ========== */
.video-showcase-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.section-header {
    text-align: center;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

/* .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
} */

/* Horizontal Scroll Container */
.video-scroll-container {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-scroll-wrapper {
    position: relative;
    height: 80vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.video-track {
    display: flex;
    align-items: center;
    height: 100%;
    width: max-content;
    gap: 60px;
    padding: 0 50vw;
    will-change: transform;
    margin-bottom: 40px;
}

.video-item {
    position: relative;
    flex-shrink: 0;
    width: 320px;
    height: 70vh;
    transform-origin: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    margin-top: 200px;
    margin-bottom: 200px;
    transform: scale(0.85);
    opacity: 0.7;
}

.video-item.active {
    transform: scale(1);
    opacity: 1;
    z-index: 10;
}

.video-item.adjacent {
    transform: scale(0.9);
    opacity: 0.8;
}

.video-frame {
    width: 100%;
    height: 100%;
    background: var(--background-primary);
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 25px 50px -12px var(--shadow-color),
        0 10px 20px -5px var(--shadow-color);
    border: 3px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
}

.video-item.active .video-frame {
    border-color: var(--primary-color);
    box-shadow:
        0 25px 50px -12px var(--card-shadow-hover),
        0 10px 20px -5px var(--card-shadow-hover);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.video-placeholder::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-45%, -50%);
    width: 0;
    height: 0;
    border-left: 20px solid rgba(255, 255, 255, 0.9);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.video-info {
    left: 50%;
    text-align: center;
    opacity: 0;
    transition: all 0.4s ease;
    white-space: nowrap;
    pointer-events: none;
}

.video-item.active .video-info {
    opacity: 1;
    bottom: -60px;
}

.video-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.video-description {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 280px;
    line-height: 1.4;
}

/* Navigation dots */
.video-navigation {
    position: absolute;
    bottom: 5vh;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 20;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Progress bar */
.scroll-progress {
    position: absolute;
    bottom: 10vh;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 1px;
    overflow: hidden;
    z-index: 20;
}

.progress-fill {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    transition: width 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .video-showcase-section {
        padding: 60px 0;
    }

    .video-scroll-wrapper {
        height: 70vh;
    }

    .video-item {
        width: 280px;
        height: 60vh;
    }

    .video-track {
        gap: 40px;
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .video-info {
        bottom: -100px;
    }

    .video-item.active .video-info {
        bottom: -80px;
    }
}

/* Background decoration */
.bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, var(--primary-color) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--primary-hover) 0%, transparent 50%);
    opacity: 0.05;
    pointer-events: none;
}

.portfolio-section {
    padding: 4rem 2rem;
    background: var(--background-primary);
    text-align: center;
}

.section-title {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.company-card {
    background: var(--background-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 12px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 160px;
}

.company-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px var(--card-shadow-hover);
}

.company-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 0.5rem;
    height: 80px;
}

.company-card p {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
}

.logo-wrapper {
    background: #ffffff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    display: inline-block;
}

.social-div {
    @media screen and (max-width:768px) {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}


.featured-on-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #eaf3fc, #f4faff);
    /* Light mode default */
    position: relative;
    overflow: hidden;
}

.featured-on-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--pulse-glow) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
}

.featured-on-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
}

.featured-on-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-on-item {
    padding: 0.5rem;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: transparent;
    opacity: 0;
    transform: translateY(20px);
}

.featured-on-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.featured-on-item img {
    max-width: 140px;
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

html[data-theme='dark'] .featured-on-section {
    background: linear-gradient(135deg, #0f1a2c, #1b2c45);
    /* Dark blue gradient */
}

html[data-theme='dark'] .featured-on-title {
    color: #ffffff;
}

html[data-theme='dark'] .featured-on-item  img {
    filter: brightness(100%) invert(0.85);
    /* Lighten logos with dark text */
}

/* 
//developed by Deepak Kumar Mahaseth and Vikki Kumar Chaudhary

//https://www.linkedin.com/in/deepak-mahaseth/
//https://www.linkedin.com/in/vikki-kumar/
//our website www.zovinity.com */