/* Base Styles */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #7c3aed;
    --accent: #ec4899;
    --dark: #1e293b;
    --darker: #0f172a;
    --light: #f8fafc;
    --gray: #94a3b8;
    --gray-light: #e2e8f0;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --radius-sm: 0.25rem;
    --radius: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;
    
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--dark);
    line-height: 1.6;
    background-color: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--gray);
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    color: var(--darker);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 50%;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: var(--radius-full);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: white;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    gap: 0.5rem;
}

.btn-link:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 60px;
    width: 120px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    gap: 1.5rem;
}

.nav-list a {
    font-weight: 500;
    color: var(--darker);
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-list a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--darker);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

:root {
            --primary: #6C63FF;
            --primary-light: #8A85FF;
            --secondary: #00D4FF;
            --dark: #121212;
            --dark-light: #1E1E1E;
            --text: #FFFFFF;
            --text-secondary: #B0B0B0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            background-color: var(--dark);
            color: var(--text);
            overflow-x: hidden;
        }
        
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 10%;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            flex: 1;
            max-width: 600px;
            z-index: 2;
        }
        
        .hero-visual {
            flex: 1;
            position: relative;
            height: 600px;
            z-index: 1;
        }
        
        .hero-headline {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.8s ease forwards;
        }
        
        .hero-subheadline {
            font-size: 1.1rem;
            line-height: 1.6;
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.8s ease 0.2s forwards;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.8s ease 0.4s forwards;
            justify-content: center;
        }
        
        .btn {
            padding: 0.9rem 2rem;
            border-radius: 50px;
            font-weight: 500;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(108, 99, 255, 0.4);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--text);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.3);
        }
        
        .hero-tagline {
            font-size: 0.9rem;
            color: var(--text-secondary);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.8s ease 0.6s forwards;
        }
        
        .tagline-highlight {
            color: var(--secondary);
            font-weight: 500;
        }
        
        /* Web UI Elements Animation */
        .web-ui-container {
            position: absolute;
            width: 100%;
            height: 100%;
            perspective: 1000px;
        }
        
        .ui-element {
            position: absolute;
            background: var(--dark-light);
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .ui-header {
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            padding: 0 15px;
        }
        
        .ui-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin-right: 8px;
        }
        
        .ui-dot:nth-child(1) { background: #FF5F57; }
        .ui-dot:nth-child(2) { background: #FFBD2E; }
        .ui-dot:nth-child(3) { background: #28CA42; }
        
        .ui-content {
            padding: 20px;
            height: calc(100% - 40px);
        }
        
        .ui-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 15px;
        }
        
        .ui-grid-item {
            height: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
        }
        
        .ui-line {
            height: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            margin-bottom: 10px;
        }
        
        .ui-line.short {
            width: 60%;
        }
        
        .ui-line.medium {
            width: 80%;
        }
        
        /* Individual UI Elements */
        .ui-1 {
            width: 300px;
            height: 200px;
            top: 10%;
            right: 5%;
            animation: float 8s ease-in-out infinite;
        }
        
        .ui-2 {
            width: 250px;
            height: 180px;
            top: 50%;
            right: 15%;
            animation: float 10s ease-in-out 1s infinite;
        }
        
        .ui-3 {
            width: 280px;
            height: 220px;
            bottom: 10%;
            right: 25%;
            animation: float 9s ease-in-out 0.5s infinite;
        }
        
        .ui-4 {
            width: 200px;
            height: 150px;
            top: 20%;
            right: 30%;
            animation: float 7s ease-in-out 1.5s infinite;
        }
        
        .ui-5 {
            width: 320px;
            height: 240px;
            bottom: 20%;
            right: 5%;
            animation: float 11s ease-in-out 0.8s infinite;
        }
        
        /* Background Elements */
        .bg-circle {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.15;
            z-index: 0;
        }
        
        .circle-1 {
            width: 400px;
            height: 400px;
            background: var(--primary);
            top: -100px;
            right: -100px;
        }
        
        .circle-2 {
            width: 300px;
            height: 300px;
            background: var(--secondary);
            bottom: -100px;
            right: 200px;
        }
        
        
        /* Animations */
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(1deg);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-section {
                padding: 0 5%;
            }
            
            .hero-headline {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 992px) {
            .hero-section {
                flex-direction: column;
                text-align: center;
                padding-top: 100px;
                padding-bottom: 100px;
            }
            
            .hero-content {
                max-width: 100%;
                margin-bottom: 50px;
            }
            
            .hero-visual {
                width: 100%;
                height: 400px;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .ui-1, .ui-2, .ui-3, .ui-4, .ui-5 {
                transform: scale(0.8);
            }
        }
        
        @media (max-width: 576px) {
            .hero-headline {
                font-size: 2.5rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 250px;
            }
            
            .hero-visual {
                height: 300px;
            }
            
            .ui-1, .ui-2, .ui-3, .ui-4, .ui-5 {
                transform: scale(0.6);
            }
        }
        
        /* Client Showcase */
        .client-showcase {
            padding: 5rem 2rem;
            background-color: white;
        }
        
        .client-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .client-card {
            background-color: var(--light);
            padding: 2rem;
            border-radius: var(--radius-lg);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .client-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .client-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary), var(--secondary));
        }
        
        .client-name {
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--darker);
        }
        
        .client-description {
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        .status-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background-color: var(--primary);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            font-size: 0.7rem;
            font-weight: 600;
        }



/* About Section */
.about-section {
    padding: 6rem 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    max-width: 600px;
}

.about-description {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.7;
}

.founder-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    background-color: rgba(37, 99, 235, 0.05);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.founder-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 3px solid var(--primary);
}

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

.founder-info h4 {
    margin-bottom: 0.25rem;
    color: var(--darker);
}

.founder-info p {
    color: var(--gray);
    font-size: 0.9375rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.stat-divider {
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    margin: 0 auto 1rem;
    border-radius: var(--radius-full);
}

.stat-label {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
}

/* Animation Classes */
[data-aos] {
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
    opacity: 0;
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
    opacity: 1;
}

[data-aos="fade-left"] {
    transform: translateX(50px);
    opacity: 0;
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
    opacity: 1;
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
    opacity: 0;
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
    opacity: 1;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-content {
        max-width: 100%;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
}






/* Services Overview */
.services-overview {
    padding: 6rem 0;
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding-bottom: 2rem;
}

.service-card {
    background-color: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-full);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--darker);
}

.service-card p {
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

/* Trusted Brands Section */
.trusted-brands {
    padding: 4rem 0;
    background-color: #f8fafc;
    overflow: hidden;
    position: relative;
}

.brands-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 2rem 0;
}

.brands-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: max-content;
    animation: scroll 30s linear infinite;
    will-change: transform;
}

.brand-logo {
    flex-shrink: 0;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.brand-logo img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 2));
    }
}

/* Pause animation on hover */
.brands-marquee:hover .brands-track {
    animation-play-state: paused;
}

/* Gradient fade effect on sides */
.brands-marquee::before,
.brands-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.brands-marquee::before {
    left: 0;
    background: linear-gradient(to right, #f8fafc, rgba(248, 250, 252, 0));
}

.brands-marquee::after {
    right: 0;
    background: linear-gradient(to left, #f8fafc, rgba(248, 250, 252, 0));
}

@media (max-width: 768px) {
    .brands-track {
        gap: 2rem;
    }
    
    .brand-logo {
        width: 100px;
    }
    
    .brands-marquee::before,
    .brands-marquee::after {
        width: 50px;
    }
}


/* Why Choose Us Section */
.why-choose-us {
    padding: 6rem 0;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.05) 0%, transparent 20%);
    z-index: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.5);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    animation: rotate 20s linear infinite;
}

.icon-main {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--darker);
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--gray);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.tech-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.tech-dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--gray-light);
    transition: var(--transition);
}

.feature-card:hover .tech-dots span {
    background-color: var(--primary);
}

.feature-card:hover .tech-dots span:nth-child(2) {
    background-color: var(--secondary);
    transition-delay: 0.1s;
}

.feature-card:hover .tech-dots span:nth-child(3) {
    background-color: var(--accent);
    transition-delay: 0.2s;
}

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

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

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



/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background-color: white;
}

.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.testimonial {
    display: none;
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow);
    text-align: center;
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-content {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--darker);
    position: relative;
}

.testimonial-content::before,
.testimonial-content::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
}

.testimonial-content::before {
    top: -1.5rem;
    left: -1rem;
}

.testimonial-content::after {
    bottom: -3rem;
    right: -1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 0.25rem;
    color: var(--darker);
}

.testimonial-author p {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 0;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-prev,
.carousel-next {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background-color: var(--gray-light);
    color: var(--darker);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.carousel-prev:hover,
.carousel-next:hover {
    background-color: var(--primary);
    color: white;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background-color: var(--gray-light);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary);
    width: 24px;
}

.google-review {
    display: flex;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    gap: 2rem;
}

.review-content {
    flex: 1;
}

.stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.review-content p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--darker);
}

.review-content span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray);
}

.review-source {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.review-source span {
    font-size: 0.875rem;
    color: var(--gray);
}

/* Portfolio */
.portfolio {
    padding: 6rem 0;
    background-color: #f8fafc;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: var(--transition);
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay h3 {
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.portfolio-cta {
    text-align: center;
    
}

/* Digital Audit Section */
.digital-audit {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    position: relative;
    overflow: hidden;
}

.digital-audit::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 70% 70%, rgba(124, 58, 237, 0.03) 0%, transparent 20%);
    animation: rotate-bg 60s linear infinite;
    z-index: 0;
}

@keyframes rotate-bg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.audit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.audit-form-container {
    max-width: 500px;
}

.text-gradient {
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.audit-form {
    margin-top: 2rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--darker);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    font-family: var(--font-main);
    background-color: white;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.input-decoration,
.textarea-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: all 0.3s ease;
}

.form-group input:focus ~ .input-decoration,
.form-group textarea:focus ~ .textarea-decoration {
    width: 100%;
}

.select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--gray);
    pointer-events: none;
}

.form-footer {
    margin-top: 2rem;
}

.btn-primary {
    /* display: flex; */
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.3);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-note {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 1rem;
    text-align: center;
}

/* Audit Visual */
.audit-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tech-circle {
    position: relative;
    width: 300px;
    height: 300px;
    margin-bottom: 2rem;
}

.circle-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        rgba(37, 99, 235, 0.1) 0%,
        rgba(124, 58, 237, 0.1) 100%
    );
    animation: rotate 20s linear infinite;
}

.circle-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.radar-animation {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid rgba(37, 99, 235, 0.2);
}

.radar-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--primary), transparent);
    transform-origin: bottom center;
    animation: radar-sweep 4s linear infinite;
}

.radar-dots {
    position: absolute;
    width: 100%;
    height: 100%;
}

.radar-dots .dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary);
    opacity: 0;
}

.dot-1 {
    top: 30%;
    left: 40%;
    animation: dot-appear 4s 0.5s infinite;
}

.dot-2 {
    top: 50%;
    left: 70%;
    animation: dot-appear 4s 1s infinite;
}

.dot-3 {
    top: 70%;
    left: 30%;
    animation: dot-appear 4s 1.5s infinite;
}

.dot-4 {
    top: 20%;
    left: 60%;
    animation: dot-appear 4s 2s infinite;
}

.dot-5 {
    top: 60%;
    left: 50%;
    animation: dot-appear 4s 2.5s infinite;
}

@keyframes radar-sweep {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes dot-appear {
    0%, 100% { opacity: 0; transform: scale(0); }
    10%, 90% { opacity: 1; transform: scale(1); }
}

.audit-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray);
}

.audit-benefits {
    margin-top: 2rem;
    width: 100%;
    max-width: 350px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: var(--radius);
}

.benefit-text {
    font-size: 0.9375rem;
    color: var(--darker);
}

@media (max-width: 1024px) {
    .audit-grid {
        grid-template-columns: 1fr;
    }
    
    .audit-form-container {
        max-width: 100%;
    }
    
    .audit-visual {
        margin-top: 3rem;
    }
}

@media (max-width: 480px) {
    .tech-circle {
        width: 250px;
        height: 250px;
    }
    
    .radar-animation {
        width: 180px;
        height: 180px;
    }
    
    .audit-stats {
        flex-direction: column;
        gap: 1rem;
    }
}


/* Tools Section */
.tools-section {
    position: relative;
    padding: 6rem 0;
    background-color: #f8fafc;
    overflow: hidden;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tool-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.tool-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-icon img {
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.tool-card:hover .tool-icon img {
    transform: scale(1.1);
}

.tool-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
    z-index: 1;
    animation: pulse 6s infinite ease-in-out;
}

.tool-card:hover .tool-circle {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(124, 58, 237, 0.2));
}

.tool-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--darker);
}

.tool-card p {
    font-size: 0.875rem;
    color: var(--gray);
    margin: 0;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* Background Elements */
.tools-bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    z-index: 0;
}

.tools-bg-circle.circle-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary), transparent);
    top: -100px;
    right: -100px;
    animation: float 8s infinite ease-in-out;
}

.tools-bg-circle.circle-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--secondary), transparent);
    bottom: -150px;
    left: -150px;
    animation: float 10s infinite ease-in-out 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-20px) translateX(20px); }
}

@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .tool-icon {
        width: 60px;
        height: 60px;
    }
    
    .tool-card {
        padding: 1.5rem 1rem;
    }
    
    .tool-card h3 {
        font-size: 1.1rem;
    }
}

/* Hiring Section */
.hiring-section {
    padding: 8rem 0;
    background-color: #f9fafb;
    position: relative;
}

.hiring-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(59, 130, 246, 0) 100%);
    z-index: 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.6;
}

.hiring-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.hiring-model h3,
.hiring-roles h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #111827;
    position: relative;
    font-weight: 600;
}

.hiring-model h3::after,
.hiring-roles h3::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #3b82f6, #8b5cf6);
    border-radius: 9999px;
}

.model-feature-card {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.model-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: #3b82f6;
}

.feature-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    transition: all 0.3s ease;
}

.model-feature-card:hover .feature-card-icon {
    background-color: rgba(59, 130, 246, 0.2);
    transform: scale(1.05);
}

.feature-card-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.feature-card-content p {
    color: #4b5563;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.hiring-cta {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: 0.375rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 1rem;
    line-height: 1.5;
}

.btn-primary {
    background-color: #3b82f6;
    color: white;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.btn-primary:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-secondary {
    background-color: white;
    color: #3b82f6;
    border: 1px solid #d1d5db;
}

.btn-secondary:hover {
    background-color: #0053fa;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

.btn-arrow, .download-icon {
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(3px);
}

.btn:hover .download-icon {
    transform: translateY(2px);
}

.role-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.role-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.role-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #3b82f6;
}

.role-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #3b82f6;
    transition: all 0.3s ease;
}

.role-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #111827;
    font-weight: 600;
}

.role-card p {
    color: #4b5563;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.role-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    list-style: none;
}

.role-tags li {
    background-color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    color: #3b82f6;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.role-tags li:hover {
    background-color: #3b82f6;
    color: white;
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .hiring-details {
        grid-template-columns: 1fr;
    }
    
    .hiring-cta {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .hiring-section {
        padding: 5rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hiring-cta {
        flex-direction: column;
    }
    
    .hiring-cta .btn {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .hiring-model h3,
    .hiring-roles h3 {
        font-size: 1.5rem;
    }
    
    .model-feature-card {
        flex-direction: column;
        gap: 1rem;
    }
}


/* Blog Preview */
.blog-preview {
    padding: 6rem 0;
    background-color: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    margin-bottom: 0.75rem;
}

.blog-content h3 a:hover {
    color: var(--primary);
}

.blog-excerpt {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: var(--gray);
}

.blog-date,
.blog-author {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-date::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url("img/calendar-icon.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

.blog-author::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url("img/user-icon.svg");
    background-repeat: no-repeat;
    background-size: contain;
}


/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background-color: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.faq-card:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: white;
}

.faq-question h3 {
    font-size: 1.125rem;
    color: var(--darker);
    margin: 0;
    flex: 1;
}

.faq-icon {
    width: 24px;
    height: 24px;
    margin-left: 1rem;
    transition: var(--transition);
}

.faq-card.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #f8fafc;
}

.faq-card.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 1000px;
}

.faq-answer p {
    margin-bottom: 1rem;
    color: var(--gray);
}

.faq-answer ul,
.faq-answer ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    color: var(--gray);
}

.seo-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.seo-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
}

.seo-icon {
    width: 24px;
    height: 24px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
}

.faq-cta p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .seo-features {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}




/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(to right, var(--darker), var(--dark));
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-section p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Ensure both buttons have same size */
.cta-buttons .btn {
    min-width: 200px;
    padding: 0.875rem 1.75rem;
    text-align: center;
}

/* WhatsApp button specific styles */
.btn-whatsapp {
    position: relative;
    overflow: hidden;
    background-color: #25D366;
    border-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    border-color: #128C7E;
}

/* WhatsApp animation effects */
.btn-whatsapp::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: 0.5s;
}

.btn-whatsapp:hover::before {
    left: 100%;
}

/* WhatsApp icon animation */
.btn-whatsapp .whatsapp-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-whatsapp:hover .whatsapp-icon {
    transform: scale(1.2);
}






/* Footer */
.footer {
    background-color: var(--darker);
    color: white;
    padding: 5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about {
    max-width: 300px;
}

.footer-logo img {
    margin-bottom: 1.5rem;
    height: 100px;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.footer-social a:hover {
    transform: translateY(-5px);
}

.footer-links h3 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 0.25rem;
}

.footer-contact address {
    font-style: normal;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer-legal a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-legal a:hover {
    color: white;
}

/* Contact Buttons Container */
.contact-buttons-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 998;
}

/* Contact Buttons */
.contact-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
}

.gmail-btn {
    background-color: #EA4335;
    color: white;
}

.contact-button svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.contact-button:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-button:hover svg {
    transform: scale(1.2);
}

/* Pulse Animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.whatsapp-btn {
    animation: pulse 2.5s infinite;
}

.gmail-btn {
    animation: pulse 2.5s infinite 0.5s;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-buttons-container {
        bottom: 90px;
        right: 20px;
    }
    
    .contact-button {
        width: 50px;
        height: 50px;
    }
    
    .contact-button svg {
        width: 24px;
        height: 24px;
    }
    
    .back-to-top {
        width: 50px;
        height: 50px;
        right: 20px;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .lead-magnet .container {
        grid-template-columns: 1fr;
    }
    
    .lead-content {
        text-align: center;
    }
    
    .lead-content ul {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: var(--transition);
        z-index: 1000;
    }
    
    .nav-list.active {
        transform: translateX(0);
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        padding: 8rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .google-review {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .testimonial {
        padding: 2rem 1.5rem;
    }
    
    .lead-form {
        padding: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-about {
        max-width: 100%;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links ul {
        align-items: center;
    }
    
    .footer-contact address {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* the extra code */

/* Base Styles */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #7c3aed;
    --accent: #ec4899;
    --dark: #1e293b;
    --darker: #0f172a;
    --light: #f8fafc;
    --gray: #94a3b8;
    --gray-light: #e2e8f0;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --radius-sm: 0.25rem;
    --radius: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;
    
    --transition: all 0.3s ease;
}

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

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

body {
    font-family: var(--font-main);
    color: var(--dark);
    line-height: 1.6;
    background-color: #ffffff;
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--gray);
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    color: var(--darker);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 50%;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: var(--radius-full);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: white;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    gap: 0.5rem;
}

.btn-link:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 60px;
    width: 120px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    gap: 1.5rem;
}

.nav-list a {
    font-weight: 500;
    color: var(--darker);
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-list a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--darker);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* Premium Hero Section */
.premium-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    overflow: hidden;
    padding-top: 80px; /* Account for fixed header */
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.premium-tagline {
    font-size: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--darker);
}

.hero-subheading {
    font-size: 1.5rem;
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2.5rem;
    background-color: var(--primary);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: none;
    font-size: 0.9rem;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.3);
}

.cta-button::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: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.badges-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stars {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 0.2em;
}

.award-badge {
    display: flex;
    align-items: center;
    background-color: var(--darker);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
}

/* 3D Elements */
.floating-cube {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(37, 99, 235, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(37, 99, 235, 0.2);
    animation: float 8s infinite ease-in-out;
}

.floating-sphere {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--accent), transparent);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.2);
    animation: float 6s infinite ease-in-out;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
}
/* Contact Buttons */
.contact-buttons-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 998;
}

.contact-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
}

.gmail-btn {
    background-color: #EA4335;
    color: white;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .audit-grid {
        grid-template-columns: 1fr;
    }
    
    .audit-visual {
        margin-top: 3rem;
    }
    
    .hiring-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: var(--transition);
        z-index: 1000;
    }
    
    .nav-list.active {
        transform: translateX(0);
    }
    
    .hamburger {
        display: flex;
    }
    
    .premium-hero {
        padding-top: 70px;
    }
    
    .tools-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .feature-card, .service-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-heading {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .testimonial {
        padding: 2rem 1.5rem;
    }
    
    .contact-buttons-container {
        bottom: 90px;
        right: 20px;
    }
    
    .contact-button {
        width: 50px;
        height: 50px;
    }
    
    .back-to-top {
        width: 50px;
        height: 50px;
        right: 20px;
    }
    .radar-animation{
        visibility: hidden;
    }
    .radar-line{
        visibility: visible;
    }
}




/* Dark Mode Toggle */
.theme-toggle {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 1.5rem;
}

#darkmode-toggle{
    visibility: hidden;
}

.toggle-label {
  width: 60px;
  height: 30px;
  background: linear-gradient(135deg, #3a1c71, #d76d77, #ffaf7b);
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.toggle-ball {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 26px;
  height: 26px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.stars::before, .stars::after {
  content: '';
  position: absolute;
  background: white;
  border-radius: 50%;
  transition: all 0.3s ease;
  opacity: 0;
}

.stars::before {
  width: 3px;
  height: 3px;
  top: 10px;
  left: 15px;
  box-shadow: 
    20px 5px 0 white,
    40px 5px 0 white,
    10px 15px 0 white,
    30px 15px 0 white;
}

.stars::after {
  width: 2px;
  height: 2px;
  top: 5px;
  left: 25px;
  box-shadow: 
    15px 10px 0 white,
    35px 10px 0 white,
    5px 15px 0 white,
    25px 15px 0 white;
}

#darkmode-toggle:checked + .toggle-label .toggle-ball {
  transform: translateX(30px);
  background: #f8fafc;
}

#darkmode-toggle:checked + .toggle-label {
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
}

#darkmode-toggle:checked + .toggle-label .stars::before,
#darkmode-toggle:checked + .toggle-label .stars::after {
  opacity: 0.8;
  animation: twinkle 2s infinite alternate;
}

#darkmode-toggle:checked + .toggle-label .stars::before {
  animation-delay: 0.5s;
}

@keyframes twinkle {
  0% { opacity: 0.3; }
  100% { opacity: 1; }
}
