  /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: #1a202c;
            background-color: #f8fafc;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 60px 0;
        }

        /* Header */
        .header {
            background: white;
            border-bottom: 1px solid #e2e8f0;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 24px;
            font-weight: 700;
            color: #0ea5e9;
            height:60px;
            width:200px;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            font-weight: 500;
            color: #4a5568;
            transition: color 0.3s;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #0ea5e9;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: #4a5568;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            padding: 80px 0;
            text-align: center;
        }

        .hero h1 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #1a202c;
        }

        .hero p {
            font-size: 18px;
            color: #4a5568;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            gap: 8px;
        }

        .btn-primary {
            background: #0ea5e9;
            color: white;
        }

        .btn-primary:hover {
            background: #0284c7;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(14, 165, 233, 0.2);
        }

        .btn-secondary {
            background: white;
            color: #0ea5e9;
            border: 2px solid #0ea5e9;
        }

        .btn-secondary:hover {
            background: #0ea5e9;
            color: white;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .service-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid #e2e8f0;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .service-image {
            height: 200px;
            background: #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #64748b;
            font-size: 48px;
        }

        .service-content {
            padding: 30px;
        }

        .service-icon {
            font-size: 40px;
            margin-bottom: 20px;
            color: #0ea5e9;
        }

        .service-card h3 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #1a202c;
        }

        .service-card p {
            color: #4a5568;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .service-features {
            list-style: none;
            margin-bottom: 25px;
        }

        .service-features li {
            padding: 5px 0;
            color: #4a5568;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .service-features li:before {
            content: "✓";
            color: #0ea5e9;
            font-weight: bold;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #0ea5e9;
            font-weight: 600;
            transition: gap 0.3s;
        }

        .service-link:hover {
            gap: 12px;
        }

        /* Why Choose Us */
        .why-us {
            background: #f0f9ff;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #1a202c;
        }

        .section-title p {
            font-size: 18px;
            color: #4a5568;
            max-width: 700px;
            margin: 0 auto;
        }

        .reasons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .reason-card {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .reason-icon {
            font-size: 40px;
            color: #0ea5e9;
            margin-bottom: 20px;
        }

        .reason-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #1a202c;
        }

        .reason-card p {
            color: #4a5568;
            line-height: 1.6;
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
            color: white;
            text-align: center;
            padding: 80px 0;
        }

        .cta h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .cta p {
            font-size: 18px;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
        }

        .cta .btn-primary {
            background: white;
            color: #0ea5e9;
        }

        .cta .btn-primary:hover {
            background: #f8fafc;
        }

      /* Footer */
.tv-footer {
    background-color: #13343b;
    color: rgba(255, 255, 255, 0.9);
    padding: 32px 16px;
    margin-bottom: 0;
}

.tv-footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.tv-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.tv-footer-section h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
}

.tv-footer-logo {
    font-size: 30px;
    font-weight: 600;
    color: #32b8c6;
    margin-bottom: 16px;
}

.tv-footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 16px;
}

.tv-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tv-footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.tv-footer-links a:hover {
    color: #32b8c6;
}

.tv-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tv-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tv-contact-item svg {
    width: 20px;
    height: 20px;
    stroke: #32b8c6;
    flex-shrink: 0;
}

.tv-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.tv-contact-item a:hover {
    color: #32b8c6;
}

.tv-footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.tv-footer-bottom a {
    color: #32b8c6;
    text-decoration: underline;
}

        /* WhatsApp Float */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 30px;
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
            z-index: 100;
            transition: all 0.3s;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        }
        
        /* Mobile Bottom Navigation */
.tv-mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fffcfd;
    border-top: 2px solid #20808d;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.tv-mobile-nav-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    padding: 0;
}

.tv-mobile-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #626c71;
    transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 12px 8px;
    cursor: pointer;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 500;
    gap: 4px;
}

.tv-mobile-nav-link svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 1.5;
    transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.tv-mobile-nav-link:active,
.tv-mobile-nav-link:hover {
    color: #20808d;
    background-color: rgba(32, 128, 141, 0.08);
}

.tv-mobile-nav-link:active svg,
.tv-mobile-nav-link:hover svg {
    stroke-width: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Body padding for mobile nav */
    body {
        padding-bottom: 70px;
    }
    
    /* Show mobile nav */
    .tv-mobile-nav {
        display: block;
    }
    
    /* Hide desktop nav items on mobile */
    .tv-nav-links {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        background-color: #fffcfd;
        flex-direction: column;
        padding: 24px;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        pointer-events: none;
        z-index: 999;
        border-bottom: 1px solid rgba(94, 82, 64, 0.2);
    }
    
    .tv-nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .tv-menu-toggle {
        display: block;
    }


        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-buttons .btn {
                width: 100%;
                max-width: 300px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .cta h2 {
                font-size: 28px;
            }
            
            .cta p {
                font-size: 16px;
            }
            
            .whatsapp-float {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
                font-size: 24px;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 60px 0;
            }
            
            .hero h1 {
                font-size: 28px;
            }
            
            .section-padding {
                padding: 40px 0;
            }
            
            .service-content {
                padding: 20px;
            }
            
            .reason-card {
                padding: 20px 15px;
            }
            
            .footer {
                padding: 40px 0 20px;
            }
        }