
.hero-visual {
    position: relative;
    height: 500px;
    animation: slideInRight 1s ease-out;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 2rem;
    border-radius: 5px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 2.5rem;
    color: #4CAF50;
}

.floating-card span {
    font-weight: bold;
    color: #000000;
}

.card-1 {
    top: 50px;
    left: 50px;
    animation-delay: 0s;
}

.card-2 {
    top: 200px;
    right: 50px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 100px;
    left: 100px;
    animation-delay: 4s;
}



        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: #e2e8f0;
            background: #0f172a;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        ul {
            list-style: none;
        }
        
        button {
            border: none;
            background: none;
            cursor: pointer;
            font-family: inherit;
        }
        
        /* Header Styles */
        .header {
            background: #1e293b;
            box-shadow: 0 2px 10px rgba(0,0,0,0.5);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #334155;
            transition: all 0.3s ease;
        }
        
        .nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 2rem;
            font-weight: 900;
            color: #f1c40f;
            text-decoration: none;
        }
        
        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
        }
        
        .nav-links a {
            color: #e2e8f0;
            font-weight: 500;
            transition: color 0.3s ease;
            padding: 0.5rem 0;
        }
        
        .nav-links a:hover {
            color: #f1c40f;
        }
        
        .cta-nav {
            background: #f1c40f;
            color: #0f172a;
            padding: 0.5rem 1.5rem;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        
        .cta-nav:hover {
            background: #f39c12;
            transform: translateY(-1px);
        }
        
        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
        }
        
        .mobile-menu-btn span {
            width: 25px;
            height: 3px;
            background: #e2e8f0;
            margin: 3px 0;
            transition: 0.3s;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            color: white;
            padding: 8rem 2rem 6rem;
            text-align: center;
            margin-top: 80px;
        }
        
        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        
        .hero .tagline {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .stats {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }
        
        .stat {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: 900;
            display: block;
        }
        
        .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        /* SEO Types Section */
        .seo-types {
            padding: 6rem 2rem;
            background: #1e293b;
            overflow: hidden;
        }
        
        .seo-types-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .seo-types-intro {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .seo-types-intro h2 {
            font-size: 2.5rem;
            font-weight: 900;
            color: #f8fafc;
            margin-bottom: 1rem;
        }
        
        .seo-types-intro p {
            font-size: 1.1rem;
            color: #cbd5e1;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .seo-diagram {
            position: relative;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(2, 1fr);
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto;
            min-height: 600px;
        }
        
        .seo-circle {
            width: 280px;
            height: 280px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem 1.5rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            position: relative;
            margin: 0 auto;
        }
        
        .seo-circle:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
        }
        
        .seo-circle h3 {
            font-size: 1.4rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: white;
        }
        
        .seo-circle ul {
            font-size: 0.9rem;
            line-height: 1.4;
            color: white;
            opacity: 0.95;
        }
        
        .seo-circle ul li {
            margin-bottom: 0.3rem;
            text-align: left;
        }
        
        /* Individual circle colors matching the original image */
        .on-page-seo {
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
            grid-column: 2;
            grid-row: 1;
        }
        
        .local-seo {
            background: linear-gradient(135deg, #0ea5e9, #0284c7);
            grid-column: 3;
            grid-row: 1;
        }
        
        .image-seo {
            background: linear-gradient(135deg, #10b981, #059669);
            grid-column: 1;
            grid-row: 1;
        }
        
        .video-seo {
            background: linear-gradient(135deg, #dc2626, #b91c1c);
            grid-column: 2;
            grid-row: 2;
            z-index: 10;
            margin-top: -50px;
        }
        
        .technical-seo {
            background: linear-gradient(135deg, #65a30d, #4d7c0f);
            grid-column: 1;
            grid-row: 2;
        }
        
        .off-page-seo {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            grid-column: 3;
            grid-row: 2;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .seo-diagram {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(3, 1fr);
                gap: 1.5rem;
            }
            
            .seo-circle {
                width: 250px;
                height: 250px;
            }
            
            .on-page-seo {
                grid-column: 1;
                grid-row: 1;
            }
            
            .local-seo {
                grid-column: 2;
                grid-row: 1;
            }
            
            .image-seo {
                grid-column: 1;
                grid-row: 2;
            }
            
            .video-seo {
                grid-column: 2;
                grid-row: 2;
                margin-top: 0;
            }
            
            .technical-seo {
                grid-column: 1;
                grid-row: 3;
            }
            
            .off-page-seo {
                grid-column: 2;
                grid-row: 3;
            }
        }
        
        @media (max-width: 768px) {
            .seo-diagram {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(6, auto);
                gap: 1rem;
            }
            
            .seo-circle {
                width: 220px;
                height: 220px;
                grid-column: 1;
            }
            
            .on-page-seo { grid-row: 1; }
            .local-seo { grid-row: 2; }
            .image-seo { grid-row: 3; }
            .video-seo { grid-row: 4; margin-top: 0; }
            .technical-seo { grid-row: 5; }
            .off-page-seo { grid-row: 6; }
        }

        /* Services Showcase */
        .services-showcase {
            padding: 6rem 2rem;
            background: #0f172a;
        }
        
        .services-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .services-intro {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .services-intro h2 {
            font-size: 2.5rem;
            font-weight: 900;
            color: #f8fafc;
            margin-bottom: 1rem;
        }
        
        .services-intro p {
            font-size: 1.1rem;
            color: #cbd5e1;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .service-card {
            background: #1e293b;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            border: 1px solid #334155;
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #f1c40f, #f39c12);
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.4);
            border-color: #f1c40f;
        }
        
        .service-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #f1c40f, #f39c12);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .service-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #f8fafc;
        }
        
        .service-card p {
            color: #cbd5e1;
            margin-bottom: 1.5rem;
        }
        
        .service-link {
            color: #f1c40f;
            font-weight: 600;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }
        
        .service-link:hover {
            color: #f39c12;
        }
        
        /* Trust Section */
        .trust-section {
            padding: 4rem 2rem;
            background: #1e293b;
            text-align: center;
        }
        
        .trust-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .trust-badges {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
            opacity: 0.7;
            margin-bottom: 3rem;
        }
        
        .trust-badge {
            padding: 0.5rem 1rem;
            border-radius: 4px;
            font-weight: bold;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .trust-badge:nth-child(1) { background: #0066cc; color: white; }
        .trust-badge:nth-child(2) { background: #1877f2; color: white; }
        .trust-badge:nth-child(3) { background: #ff6600; color: white; }
        .trust-badge:nth-child(4) { background: #00a3e0; color: white; }
        
        .trust-badge:hover {
            opacity: 1;
            transform: translateY(-2px);
        }
        
        .trust-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .trust-stat {
            padding: 2rem;
            background: #0f172a;
            border-radius: 12px;
            border: 2px solid #334155;
            transition: all 0.3s ease;
        }
        
        .trust-stat:hover {
            border-color: #f1c40f;
        }
        
        .trust-stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: #f1c40f;
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .trust-stat-label {
            color: #cbd5e1;
            font-size: 0.9rem;
        }
        
        /* Value Props */
        .value-props {
            padding: 6rem 2rem;
            background: #0f172a;
        }
        
        .value-props-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }
        
        .value-prop {
            text-align: center;
        }
        
        .value-prop-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #f1c40f, #f39c12);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 2rem;
        }
        
        .value-prop h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #f8fafc;
        }
        
        .value-prop p {
            color: #cbd5e1;
            line-height: 1.7;
        }
        
        /* Testimonials */
        .testimonials {
            padding: 6rem 2rem;
            background: #1e293b;
        }
        
        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 900;
            color: #f8fafc;
            margin-bottom: 3rem;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }
        
        .testimonial {
            background: #0f172a;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            border: 1px solid #334155;
            transition: all 0.3s ease;
        }
        
        .testimonial:hover {
            border-color: #f1c40f;
            transform: translateY(-2px);
        }
        
        .testimonial-content {
            font-style: italic;
            margin-bottom: 1.5rem;
            color: #cbd5e1;
            line-height: 1.7;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #f1c40f, #f39c12);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0f172a;
            font-weight: bold;
        }
        
        .author-info h4 {
            font-weight: 600;
            color: #f8fafc;
        }
        
        .author-info p {
            color: #cbd5e1;
            font-size: 0.9rem;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%);
            color: #0f172a;
            text-align: center;
        }
        
        .cta-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
        }
        
        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .cta-primary,
        .cta-secondary {
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid transparent;
        }
        
        .cta-primary {
            background: #0f172a;
            color: #f1c40f;
        }
        
        .cta-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(15,23,42,0.3);
            background: #1e293b;
        }
        
        .cta-secondary {
            background: transparent;
            color: #0f172a;
            border-color: #0f172a;
        }
        
        .cta-secondary:hover {
            background: #0f172a;
            color: #f1c40f;
        }
        
        /* Footer */
        .footer {
            background: #0f172a;
            color: #e2e8f0;
            padding: 3rem 2rem 2rem;
            border-top: 1px solid #334155;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .footer-section h3 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            color: #f8fafc;
        }
        
        .footer-section ul li {
            margin-bottom: 0.5rem;
        }
        
        .footer-section ul li a {
            color: #cbd5e1;
            transition: color 0.3s ease;
        }
        
        .footer-section ul li a:hover {
            color: #f1c40f;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #334155;
            color: #cbd5e1;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: flex;
            }
            
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #1e293b;
                flex-direction: column;
                padding: 2rem;
                box-shadow: 0 4px 20px rgba(0,0,0,0.5);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .hero {
                padding: 6rem 1rem 4rem;
            }
            
            .stats {
                gap: 2rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .trust-badges {
                gap: 1rem;
            }
            
            .value-props-container {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .services-intro h2,
            .section-title,
            .cta-section h2 {
                font-size: 2rem;
            }
            
            .nav {
                padding: 1rem;
            }
        }

