
        html {
            scroll-behavior: smooth;
        }

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

        body {
            font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            overflow-x: hidden;
        }

        .hero {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background-image: url('../images/hero_bg_section.jpg');
            background-size: cover;
            overflow: hidden;
        }

        .hero-logo {
            margin-bottom: 20px;
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: black;
            opacity: 0.7; /* adjust transparency */
            z-index: 1;
            }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(120, 113, 108, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(167, 139, 250, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 1;
        }

        .floating-shape {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
            backdrop-filter: blur(1px);
            animation: float 20s infinite linear;
        }

        .floating-shape:nth-child(1) {
            width: 120px;
            height: 120px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-shape:nth-child(2) {
            width: 80px;
            height: 80px;
            top: 70%;
            right: 15%;
            animation-delay: -5s;
        }

        .floating-shape:nth-child(3) {
            width: 100px;
            height: 100px;
            top: 30%;
            right: 30%;
            animation-delay: -10s;
        }

        .floating-shape:nth-child(4) {
            width: 60px;
            height: 60px;
            bottom: 20%;
            left: 20%;
            animation-delay: -15s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            25% { transform: translateY(-20px) rotate(90deg); }
            50% { transform: translateY(-10px) rotate(180deg); }
            75% { transform: translateY(-30px) rotate(270deg); }
        }

        .hero-content {
            text-align: center;
            max-width: 900px;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(255,255,255,0.9);
            border: 1px solid rgba(226,232,240,0.8);
            border-radius: 50px;
            font-size: 0.85rem;
            max-width: 400px;
            font-weight: 500;
            color: #64748b;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .hero-badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px -5px rgba(0,0,0,0.1);
        }

        .hero-title {
            font-size: clamp(1.6rem, 7vw, 5rem);
            font-weight: 700;
            line-height: 1.1;
            color: #fff;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .hero-title .gradient-text {
            background: linear-gradient(135deg, #43A856, #F8991E);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 3vw, 1.3rem);
            color: #fff;
            margin-bottom: 3rem;
            line-height: 1.6;
            font-weight: 400;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-cta {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

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

        .cta-primary, .cta-secondary {
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .cta-primary {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: white;
            box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.3);
        }

        .cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px 0 rgba(59, 130, 246, 0.4);
        }

        .cta-primary::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;
        }

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

        .cta-secondary {
            background: rgba(255,255,255,0.9);
            color: #475569;
            border: 1px solid rgba(226,232,240,0.8);
            backdrop-filter: blur(10px);
        }

        .cta-secondary:hover {
            transform: translateY(-2px);
            background: rgba(255,255,255,1);
            box-shadow: 0 8px 25px -5px rgba(0,0,0,0.1);
        }

        .hero-features {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 1rem;
            flex-wrap: wrap;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #fff;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .feature-icon {
            width: 16px;
            height: 16px;
            background: linear-gradient(135deg, #10b981, #059669);
            border-radius: 50%;
            position: relative;
        }

        .feature-icon::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 10px;
            font-weight: bold;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            color: #fff;
            font-size: 0.8rem;
            animation: bounce 2s infinite;
            cursor: pointer;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .scroll-indicator:hover {
            color: #fff;
            transform: translateX(-50%) translateY(-2px);
        }

        .scroll-arrow {
            width: 24px;
            height: 24px;
            border: 2px solid #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .scroll-arrow::after {
            content: '↓';
            font-size: 12px;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }

        @media (max-width: 768px) {
            .hero-content {
                padding: 0 1rem;
            }
            
            .hero-features {
                gap: 1.5rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                width: 100%;
                max-width: 300px;
            }
            
            .cta-primary, .cta-secondary {
                width: 100%;
                text-align: center;
            }
        }

        /* About Section Styles */
        .about-section {
            padding: 6rem 0;
            background: #ffffff;
            position: relative;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.02) 0%, transparent 50%);
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

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

        .section-badge {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(59, 130, 246, 0.1);
            color: #3b82f6;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .about-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            line-height: 1.2;
            color: #1e293b;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
            display: flex;              /* Puts logo + text side by side */
            align-items: center;        /* Aligns them vertically */
            gap: 20px;                  /* Space between logo and text */
            font-size: 34px;   
        }

        .about-logo {
            height: 140px;               /* Adjust logo size */
            width: auto;                /* Keep aspect ratio */
        }

        .about-description {
            font-size: 1.1rem;
            color: #64748b;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .success-metrics {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
        }

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

        .metric-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #3b82f6;
            margin-bottom: 0.5rem;
        }

        .metric-label {
            font-size: 0.9rem;
            color: #64748b;
            font-weight: 500;
        }

        .about-image {
            display: flex;
            justify-content: center;
            align-items: center;
    
        }

        .image-placeholder {
            width: 100%;
            max-width: 500px;
            height: 350px;
            background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
            border: 2px dashed #cbd5e1;
            border-radius: 16px;
            display: flex;
               
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #64748b;
            text-align: center;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .image-placeholder.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        .image-placeholder:hover {
            background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
            border-color: #94a3b8;
        }

        .image-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            opacity: 0.7;
        }

        .reviews-section {
            background: rgba(248, 250, 252, 0.8);
            border-radius: 24px;
            padding: 3rem;
            backdrop-filter: blur(10px);
        }

        .reviews-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 3rem;
        }

        .reviews-platforms {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .platform-reviews {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .platform-reviews:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 25px -5px rgba(0,0,0,0.1);
        }

        .platform-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .platform-logo {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.5rem;
        }

        .google-logo {
            background: linear-gradient(135deg, #4285f4, #34a853);
        }

        .angi-logo {
            background: linear-gradient(135deg, #ff6900, #ff8533);
        }

        .platform-info h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 0.5rem;
        }

        .rating-display {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .stars {
            color: #fbbf24;
            font-size: 1.2rem;
        }

        .rating-number {
            font-weight: 600;
            color: #1e293b;
        }

        .review-count {
            color: #64748b;
            font-size: 0.9rem;
        }

        .review-placeholder {
            font-style: italic;
            color: #475569;
            line-height: 1.6;
        }

        .reviewer-name {
            margin-top: 1rem;
            font-weight: 600;
            color: #1e293b;
            font-style: normal;
        }

        .reviews-cta {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(226, 232, 240, 0.8);
        }

        .reviews-note {
            color: #64748b;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            font-style: italic;
        }

        .reviews-link {
            color: #3b82f6;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .reviews-link:hover {
            color: #2563eb;
        }

        @media (max-width: 768px) {
            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }
            
            .success-metrics {
                justify-content: center;
                flex-wrap: wrap;
                gap: 1.5rem;
            }
            
            .reviews-platforms {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .reviews-section {
                padding: 2rem 1.5rem;
            }
            
            .about-container {
                padding: 0 1rem;
            }
        }

        /* Services Section Styles */
        .services-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            position: relative;
        }

        .services-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .services-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .services-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            line-height: 1.2;
            color: #1e293b;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .services-subtitle {
            font-size: 1.1rem;
            color: #64748b;
            line-height: 1.7;
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 5rem;
        }

        .service-category {
            background: rgba(255, 255, 255, 0.8);
            border-radius: 24px;
            padding: 2.5rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(226, 232, 240, 0.8);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-category:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px -5px rgba(0,0,0,0.1);
        }

        .category-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(226, 232, 240, 0.8);
        }

        .category-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
        }

        .kitchen-icon {
            background: linear-gradient(135deg, #f59e0b, #d97706);
        }

        .bathroom-icon {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
        }

        .category-header h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e293b;
        }

        .services-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .service-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem;
            border-radius: 12px;
            transition: background-color 0.3s ease;
        }

        .service-item:hover {
            background: rgba(248, 250, 252, 0.8);
        }

        .service-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .service-content h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 0.5rem;
        }

        .service-content p {
            font-size: 0.95rem;
            color: #64748b;
            line-height: 1.5;
        }

        /* Process Section */
        .process-section {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 24px;
            padding: 3rem;
            margin-bottom: 3rem;
            backdrop-filter: blur(10px);
        }

        .process-title {
            text-align: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 2.5rem;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 25px;
            right: -1rem;
            width: 2rem;
            height: 2px;
            background: linear-gradient(90deg, #3b82f6, transparent);
        }

        .step-number {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            margin: 0 auto 1rem;
        }

        .step-content h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 0.5rem;
        }

        .step-content p {
            font-size: 0.9rem;
            color: #64748b;
            line-height: 1.5;
        }

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

        @media (max-width: 968px) {
            .services-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .process-steps {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
            
            .process-step:nth-child(2n):not(:last-child)::after {
                display: none;
            }
            
            .process-step:nth-child(odd):not(:nth-last-child(-n+2))::after {
                content: '';
                position: absolute;
                top: 65px;
                left: 50%;
                transform: translateX(-50%);
                width: 2px;
                height: 2rem;
                background: linear-gradient(180deg, #3b82f6, transparent);
            }
        }

        @media (max-width: 640px) {
            .process-steps {
                grid-template-columns: 1fr;
            }
            
            .process-step::after {
                display: none !important;
            }
            
            .process-step:not(:last-child)::after {
                content: '';
                position: absolute;
                top: 65px;
                left: 50%;
                transform: translateX(-50%);
                width: 2px;
                height: 2rem;
                background: linear-gradient(180deg, #3b82f6, transparent);
                display: block !important;
            }
            
            .services-container {
                padding: 0 1rem;
            }
            
            .service-category {
                padding: 2rem 1.5rem;
            }
            
            .process-section {
                padding: 2rem 1.5rem;
            }
        }

        /* Project Preview Section Styles */
        .project-preview-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .project-preview-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
        }

        .preview-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .preview-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .preview-header .section-badge {
            background: rgba(59, 130, 246, 0.2);
            color: #93c5fd;
            border: 1px solid rgba(59, 130, 246, 0.3);
        }

        .preview-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            line-height: 1.2;
            color: white;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .preview-subtitle {
            font-size: 1.1rem;
            color: #cbd5e1;
            line-height: 1.7;
            max-width: 600px;
            margin: 0 auto;
        }

        .packages-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .project-package {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 24px;
            padding: 2rem;
            color: #1e293b;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .project-package:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px -10px rgba(0,0,0,0.3);
        }

        .package-header {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(226, 232, 240, 0.8);
        }

        .package-icon {
            width: 70px;
            height: 70px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            background: linear-gradient(135deg, #3b82f6, #2563eb);
        }

        .kitchen-package .package-icon {
            background: linear-gradient(135deg, #f59e0b, #d97706);
        }

        .package-info h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 0.5rem;
        }

        .package-price {
            font-size: 1rem;
            color: #64748b;
        }

        .price {
            font-size: 1.8rem;
            font-weight: 700;
            color: #3b82f6;
        }

        .package-images {
            margin-bottom: 2rem;
        }

        .before-after {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 1rem;
            align-items: center;
        }

        .image-placeholder {
            height: 600px;
            border: 2px dashed #cbd5e1;

           background-image: url('../images/kitchen_rennovation_innovattekb.jpeg');
            background-size: cover;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #64748b;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
            overflow: hidden;
        }

        .image-placeholder.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        .image-placeholder:hover {
            background-image: url('../images/kitchen_rennovation_innovattekb.jpeg');
            background-size: cover;
            border-color: #94a3b8;
        }

        .image-placeholder::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
    
      
            background-size: cover;

            border-radius: 14px;
            z-index: -1;
            opacity: 0;
            animation: snake-light-small 2.5s linear infinite;
        }

        .image-placeholder.animate-in::before {
            opacity: 1;
        }

        /* Additional Animation Styles */
        .service-category,
        .project-package,
        .contact-form-container {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .section-visible .service-category,
        .section-visible .project-package,
        .section-visible .contact-form-container {
            opacity: 1;
            transform: translateY(0);
        }

        .section-visible .service-category:nth-child(1) { transition-delay: 0.1s; }
        .section-visible .service-category:nth-child(2) { transition-delay: 0.2s; }
        .section-visible .project-package:nth-child(1) { transition-delay: 0.1s; }
        .section-visible .project-package:nth-child(2) { transition-delay: 0.3s; }

        /* Stagger animation for multiple elements */
        .stagger {
            transition-delay: 0ms;
        }

        .animate-in.stagger:nth-child(1) { transition-delay: 0ms; }
        .animate-in.stagger:nth-child(2) { transition-delay: 200ms; }
        .animate-in.stagger:nth-child(3) { transition-delay: 400ms; }
        .animate-in.stagger:nth-child(4) { transition-delay: 600ms; }

        .image-label {
            position: absolute;
            top: 0.5rem;
            left: 0.5rem;
            background: rgba(59, 130, 246, 0.9);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .after-image .image-label {
            background: rgba(16, 185, 129, 0.9);
        }

        .image-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            opacity: 0.7;
        }

        .comparison-arrow {
            font-size: 2rem;
            color: #3b82f6;
            font-weight: bold;
            text-align: center;
        }

        .package-details {
            margin-bottom: 2rem;
        }

        .what-included {
            margin-bottom: 2rem;
        }

        .what-included h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 1rem;
        }

        .included-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem;
        }

        .included-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .check-icon {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: bold;
            flex-shrink: 0;
        }

        .included-item span {
            font-size: 0.95rem;
            color: #475569;
        }

        .package-timeline h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 1rem;
        }

        .timeline-steps {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .timeline-step {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem;
            background: rgba(248, 250, 252, 0.8);
            border-radius: 8px;
        }

        .step-day {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: white;
            padding: 0.5rem 0.75rem;
            border-radius: 6px;
            font-size: 0.8rem;
            font-weight: 600;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .step-desc {
            font-size: 0.9rem;
            color: #64748b;
        }

        .package-cta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(226, 232, 240, 0.8);
        }

        .view-details {
            color: #3b82f6;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .view-details:hover {
            color: #2563eb;
        }

        .preview-footer {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 2rem;
            backdrop-filter: blur(10px);
        }

        .financing-info, .guarantee-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .financing-icon, .guarantee-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: rgba(59, 130, 246, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .financing-content h4, .guarantee-content h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: white;
            margin-bottom: 0.25rem;
        }

        .financing-content p, .guarantee-content p {
            font-size: 0.9rem;
            color: #cbd5e1;
        }

        @media (max-width: 968px) {
            .packages-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .before-after {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .comparison-arrow {
                transform: rotate(90deg);
                order: 2;
            }
            
            .after-image {
                order: 3;
            }
            
            .included-grid {
                grid-template-columns: 1fr;
            }
            
            .timeline-steps {
                grid-template-columns: 1fr;
            }
            
            .preview-footer {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

        @media (max-width: 640px) {
            .package-header {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
            
            .package-cta {
                flex-direction: column;
                gap: 1rem;
            }
            
            .cta-primary {
                width: 100%;
                text-align: center;
            }
            
            .preview-container {
                padding: 0 1rem;
            }
            
            .project-package {
                padding: 1.5rem;
            }
        }

        /* Contact Section Styles */
        .contact-section {
            padding: 6rem 0;
            background: #ffffff;
            position: relative;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 70%, rgba(59, 130, 246, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.02) 0%, transparent 50%);
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .contact-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            line-height: 1.2;
            color: #1e293b;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .contact-subtitle {
            font-size: 1.1rem;
            color: #64748b;
            line-height: 1.7;
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .contact-form-container {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 24px;
            padding: 3rem;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
            border: 1px solid rgba(226, 232, 240, 0.8);
            backdrop-filter: blur(10px);
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }

        .form-section {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-section-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 0.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid rgba(59, 130, 246, 0.1);
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

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

        .form-group label {
            font-weight: 500;
            color: #374151;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 0.875rem 1rem;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        .form-group.focused label {
            color: #3b82f6;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }

        .checkbox-grid {
            display: grid;
            gap: 1rem;
        }

        .elements-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        .checkbox-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: white;
        }

        .checkbox-item:hover {
            border-color: #3b82f6;
            background: rgba(59, 130, 246, 0.02);
        }

        .checkbox-item.small {
            padding: 0.75rem;
            font-size: 0.95rem;
        }

        .checkbox-custom {
            width: 20px;
            height: 20px;
            border: 2px solid #d1d5db;
            border-radius: 4px;
            position: relative;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .checkbox-item input[type="checkbox"] {
            display: block;
        }

        .checkbox-item input[type="checkbox"]:checked + .checkbox-custom {
            background: #3b82f6;
            border-color: #3b82f6;
        }

        .checkbox-item input[type="checkbox"]:checked + .checkbox-custom::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 12px;
            font-weight: bold;
        }

        .checkbox-content {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .checkbox-icon {
            font-size: 1.2rem;
        }

        .form-submit {
            text-align: center;
            margin-top: 1rem;
        }

        .form-submit-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1.25rem 3rem;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .form-submit-btn:hover .btn-icon {
            transform: translateX(4px);
        }

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

        .form-disclaimer {
            margin-top: 1rem;
            font-size: 0.85rem;
            color: #6b7280;
            line-height: 1.5;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-card {
            background: rgba(248, 250, 252, 0.8);
            border-radius: 16px;
            padding: 2rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(226, 232, 240, 0.8);
        }

        .contact-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 1.5rem;
        }

        .benefit-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.95rem;
            color: #475569;
        }

        .benefit-icon {
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .direct-contact {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-method {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .contact-method div strong {
            color: #1e293b;
            font-weight: 600;
            display: block;
            margin-bottom: 0.25rem;
        }

        .contact-method div p {
            color: #64748b;
            font-size: 0.9rem;
            line-height: 1.4;
            margin: 0;
        }

        @media (max-width: 968px) {
            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .form-row {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .elements-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .contact-form-container {
                padding: 2rem;
            }
        }

        @media (max-width: 640px) {
            .elements-grid {
                grid-template-columns: 1fr;
            }
            
            .contact-container {
                padding: 0 1rem;
            }
            
            .contact-form-container {
                padding: 1.5rem;
            }
            
            .form-submit-btn {
                width: 100%;
                justify-content: center;
            }
        }

        /* Footer Section Styles */
        .footer-section {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            color: white;
            position: relative;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 4rem;
            padding: 4rem 0 3rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .footer-logo {
            margin-bottom: 0.5rem;
        }

        .logo-placeholder {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .logo-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
        }

        .footer-description {
            color: #cbd5e1;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .footer-contact-quick {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .quick-contact-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: #e2e8f0;
            font-size: 0.9rem;
        }

        .quick-contact-icon {
            width: 24px;
            height: 24px;
            background: rgba(59, 130, 246, 0.2);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            flex-shrink: 0;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

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

        .footer-column-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: white;
            margin-bottom: 0.5rem;
        }

        .footer-links-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-links-list li a {
            color: #cbd5e1;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            display: block;
            padding: 0.25rem 0;
        }

        .footer-links-list li a:hover {
            color: #93c5fd;
        }

        .newsletter-text {
            color: #cbd5e1;
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 1rem;
        }

        .newsletter-form {
            margin-bottom: 1.5rem;
        }

        .newsletter-input-group {
            display: flex;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .newsletter-input {
            flex: 1;
            padding: 0.75rem 1rem;
            border: none;
            background: transparent;
            color: white;
            font-size: 0.9rem;
        }

        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .newsletter-input:focus {
            outline: none;
        }

        .newsletter-btn {
            padding: 0.75rem 1rem;
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            border: none;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .newsletter-btn:hover {
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
        }

        .social-links {
            display: flex;
            gap: 0.75rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .social-link.facebook {
            background: rgba(59, 89, 152, 0.2);
            color: #4267b2;
            border: 1px solid rgba(59, 89, 152, 0.3);
        }

        .social-link.instagram {
            background: rgba(225, 48, 108, 0.2);
            color: #e1306c;
            border: 1px solid rgba(225, 48, 108, 0.3);
        }

        .social-link.linkedin {
            background: rgba(0, 119, 181, 0.2);
            color: #0077b5;
            border: 1px solid rgba(0, 119, 181, 0.3);
        }

        .social-link.youtube {
            background: rgba(255, 0, 0, 0.2);
            color: #ff0000;
            border: 1px solid rgba(255, 0, 0, 0.3);
        }

        .social-link:hover {
            transform: translateY(-2px);
            filter: brightness(1.2);
        }

        .footer-certifications {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            padding: 2rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .certification-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .cert-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .cert-text {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .cert-text strong {
            color: white;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .cert-text span {
            color: #cbd5e1;
            font-size: 0.8rem;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2rem 0;
            gap: 2rem;
        }

        .footer-bottom-left {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .copyright {
            color: #94a3b8;
            font-size: 0.9rem;
            margin: 0;
        }

        .legal-links {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .legal-links a {
            color: #cbd5e1;
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s ease;
        }

        .legal-links a:hover {
            color: #93c5fd;
        }

        .separator {
            color: #64748b;
            font-size: 0.8rem;
        }

        .footer-bottom-right {
            text-align: right;
        }

        .footer-tagline {
            color: #94a3b8;
            font-size: 0.9rem;
            margin: 0;
        }

        .footer-tagline strong {
            color: #e2e8f0;
        }

        @media (max-width: 968px) {
            .footer-main {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
            
            .footer-certifications {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
            
            .footer-bottom-left {
                flex-direction: column;
                gap: 1rem;
            }
            
            .footer-bottom-right {
                text-align: center;
            }
        }

        @media (max-width: 640px) {
            .footer-links {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .footer-certifications {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .footer-container {
                padding: 0 1rem;
            }
            
            .social-links {
                justify-content: center;
            }
            
            .legal-links {
                flex-wrap: wrap;
                justify-content: center;
            }
        }








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







                .filter-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 60px;
            gap: 30px;
            opacity: 0;
            transform: translateY(20px);
        }

        .filter-tab {
            background: transparent;
            border: 2px solid #dee2e6;
            color: #6c757d;
            padding: 12px 30px;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        .filter-tab:hover,
        .filter-tab.active {
            background: #2c3e50;
            color: white;
            border-color: #2c3e50;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(44, 62, 80, 0.2);
        }


.kb-gallery-item {
            position: relative;
            aspect-ratio: 1;
            overflow: hidden;
            cursor: pointer;
            background: #e0e0e0;
        }

        .kb-gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .kb-project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 26, 26, 0.85);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px;
            opacity: 0;
            visibility: hidden;
        }

        .kb-project-overlay h3 {
            font-size: 1.8rem;
            font-weight: 300;
            margin-bottom: 12px;
            color: #fff;
            letter-spacing: 0.5px;
            transform: translateY(20px);
            opacity: 0;
        }

        .kb-project-overlay p {
            font-size: 0.95rem;
            color: #ccc;
            font-weight: 300;
            text-align: center;
            max-width: 280px;
            transform: translateY(20px);
            opacity: 0;
        }

        .kb-project-tag {
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #fff;
            background: rgba(26, 26, 26, 0.6);
            padding: 8px 16px;
            font-weight: 400;
            z-index: 10;
            backdrop-filter: blur(10px);
        }

        @media (max-width: 768px) {
            .kb-project-overlay {
                padding: 20px;
            }

            .kb-project-overlay h3 {
                font-size: 1.3rem;
            }

            .kb-project-overlay p {
                font-size: 0.85rem;
            }
        }

        .modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.95);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            padding: 20px;
        }

        .modal-content {
            max-width: 90vw;
            max-height: 90vh;
            position: relative;
        }

        .modal img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .modal-close {
            position: absolute;
            top: -50px;
            right: 0;
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .modal-close:hover {
            opacity: 1;
        }

        .cta-section {
            text-align: center;
            margin-top: 80px;
            padding: 60px 40px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            opacity: 0;
            transform: translateY(30px);
        }

        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 300;
            color: #2c3e50;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.1rem;
            color: #6c757d;
            margin-bottom: 40px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
            color: white;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(52, 152, 219, 0.4);
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.5rem;
            }
            
            .filter-tabs {
                flex-wrap: wrap;
                gap: 15px;
            }
            
            .gallery {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .gallery-item img {
                height: 250px;
            }
            
            .cta-section h2 {
                font-size: 2rem;
            }
        }

            audio, canvas, embed, iframe, img, object, svg, video {
                display:inline !important;
            }