* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
            height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Header */
        .header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 8px 0;
            border-bottom: 1px solid #e0e0e0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-top {
            background: #f8f9fa;
            font-size: 13px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .header-top-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .contact-info {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #666;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .nav-links a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #ff6b35;
        }

        /* Main Navigation */
        .main-nav {
            padding: 12px 0;
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #2c3e50;
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 25px;
            flex-wrap: wrap;
        }

        .nav-menu a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-menu a:hover {
            color: #ff6b35;
        }

        /* Hero Section */
        .hero {
            flex: 1;
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="desert" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23D2691E"/><stop offset="50%" style="stop-color:%23CD853F"/><stop offset="100%" style="stop-color:%23F4A460"/></linearGradient></defs><rect width="1200" height="600" fill="url(%23desert)"/><circle cx="200" cy="150" r="80" fill="%23DEB887" opacity="0.8"/><circle cx="800" cy="200" r="60" fill="%23DEB887" opacity="0.6"/><circle cx="1000" cy="100" r="100" fill="%23DEB887" opacity="0.7"/><path d="M0,400 Q300,350 600,400 T1200,420 L1200,600 L0,600 Z" fill="%23D2691E"/><path d="M0,450 Q400,420 800,450 T1200,470 L1200,600 L0,600 Z" fill="%23CD853F"/></svg>');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            /* min-height: calc(100vh - 140px); */
        }

        .hero-content {
            max-width: 800px;
            padding: 20px;
            animation: fadeInUp 1s ease-out;
        }

        .hero h1 {
            /* font-size: clamp(2.5rem, 5vw, 4rem); */
            margin-top: 5vh;
            /* margin-bottom: 20px; */
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .cta-button {
            background: #25D366;
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            margin-top: 20px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        }

        /* Breadcrumb */
        .breadcrumb {
            background: #f8f9fa;
            padding: 10px 0;
            font-size: 14px;
        }

        .breadcrumb-content {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .breadcrumb a {
            color: #666;
            text-decoration: none;
        }

        .breadcrumb a:hover {
            color: #ff6b35;
        }

        /* Content Section */
        .content-section {
            padding: 40px 0;
            background: white;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            align-items: start;
        }

        .main-content h2 {
            /* font-size: clamp(1.8rem, 3vw, 2.5rem); */
            color: #2c3e50;
            margin-bottom: 20px;
        }

        .main-content p {
            margin-bottom: 15px;
            color: #555;

            @media screen and (max-width: 480px) {
                font-size: small;
            }

        }

        /* Sidebar */
        .sidebar {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            position: sticky;
            top: 160px;
        }

        .contact-box {
            background: #25D366;
            color: white;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            margin-bottom: 20px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            /* margin: 10px 0;
            padding: 8px 0; */
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .contact-item:last-child {
            border-bottom: none;
        }

        .contact-item a {
            color: white;
            text-decoration: none;
        }

        .timing-box {
            background: white;
            padding: 20px;
            border-radius: 10px;
            border: 1px solid #e0e0e0;
        }

        .timing-box h3 {
            color: #2c3e50;
            margin-bottom: 10px;
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #333;
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            padding: 20px;
        }

        .mobile-nav.active {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .mobile-nav a {
            color: white;
            font-size: 24px;
            margin: 15px 0;
            text-decoration: none;
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 30px;
            cursor: pointer;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-top-content {
                display: none;
            }

            .contact-info {
                justify-content: center;
                gap: 15px;
            }

            .nav-content {
                justify-content: space-between;
            }

            .nav-menu {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero {
                /* min-height: calc(100vh - 120px); */
                background-attachment: scroll;
            }

            .hero-content {
                padding: 15px;
            }

            .content-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .main-content {
                order: 1;
            }

            .sidebar {
                position: static;
                order: 2;
            }

            .cta-button {
                padding: 12px 25px;
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 10px;
            }

            .hero-content {
                padding: 10px;
            }

            .contact-info {
                flex-direction: column;
                gap: 8px;
            }

            .nav-links {
                justify-content: center;
                gap: 15px;
            }

            .content-section {
                padding: 20px 0;
            }

            .sidebar {
                padding: 15px;
            }
        }

        /* Performance Optimizations */
        .hero {
            will-change: transform;
        }



        /* WhatsApp Icon */
        .whatsapp-icon-1::before {
            content: "\f232";
            font-family: "Font Awesome 5 Brands";
            font-weight: 400;
            font-style: normal;
            display: inline-block;
            font-size: 1em;
            vertical-align: middle;
            margin-right: 5px;
        }

        .phone-icon::before {
            content: "\f095";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            margin-right: 5px;
        }

        .email-icon::before {
            content: "✉️";
            margin-right: 5px;
        }

        .clock-icon::before {
            content: "🕐";
            margin-right: 5px;
        }
        /* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    width: 60px !important;
    height: 60px !important;
    background: #25d366 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4) !important;
    z-index: 9999 !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
}

.whatsapp-float:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6) !important;
    text-decoration: none !important;
}

.whatsapp-float i {
    font-size: 28px !important;
    color: white !important;
    line-height: 1 !important;
    font-family: 'Font Awesome 6 Brands' !important;
}

/* Tooltip styles */
.whatsapp-float .tooltip {
    position: absolute !important;
    right: 70px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: #333 !important;
    color: white !important;
    padding: 8px 12px !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    white-space: nowrap !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
    font-family: 'Poppins', sans-serif !important;
}

.whatsapp-float .tooltip::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 100% !important;
    margin-top: -5px !important;
    border: 5px solid transparent !important;
    border-left-color: #333 !important;
}

.whatsapp-float:hover .tooltip {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure floating buttons container doesn't interfere */
.floating-buttons {
    position: relative !important;
    z-index: 9999 !important;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px !important;
        height: 50px !important;
        bottom: 15px !important;
        right: 15px !important;
    }

    .whatsapp-float i {
        font-size: 24px !important;
    }

    .whatsapp-float .tooltip {
        font-size: 12px !important;
        padding: 6px 10px !important;
        right: 60px !important;
    }
}