
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background: #fff;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header Specific CSS */
        .header-section {
            position: fixed;
            top: 0;
            width: 100%;
            background: linear-gradient(90deg, #6A0DAD, #9B59B6);
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            animation: slideGradient 5s infinite alternate;
        }

        .header-section.scrolled {
            background: linear-gradient(90deg, #5A0C9D, #8A4DA6);
        }

        .header-section h1 {
            color: #fff;
            font-size: 1.5rem;
            font-weight: 600;
        }

        .header-section h1 i {
            margin-right: 10px;
            color: #e0e0e0;
        }

        .header-section nav {
            display: flex;
            align-items: center;
        }

        .header-section nav a {
            color: #fff;
            text-decoration: none;
            margin-left: 25px;
            font-weight: 500;
            position: relative;
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .header-section nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: #e0e0e0;
            transition: width 0.3s ease;
        }

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

        .header-section nav a:hover {
            color: #e0e0e0;
            transform: scale(1.05);
        }

        .header-section nav a.active {
            color: #e0e0e0;
            transform: scale(1.1);
        }

        .header-section nav a i {
            margin-right: 5px;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #fff;
            cursor: pointer;
        }

        #menu-toggle {
            display: none;
        }

        /* Gradient Animation */
        @keyframes slideGradient {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }

        /* Hero Section with Animated Gradient and Particles */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 100px 40px;
            text-align: center;
            background: linear-gradient(135deg, #6A0DAD, #9B59B6);
            background-size: 200% 200%;
            animation: gradientShift 15s ease infinite;
            overflow: hidden;
            width: 100vw;
            margin: 0;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.3)"/><circle cx="90" cy="20" r="3" fill="rgba(255,255,255,0.2)"/><circle cx="30" cy="80" r="2" fill="rgba(255,255,255,0.4)"/><circle cx="70" cy="60" r="3" fill="rgba(255,255,255,0.3)"/></svg>');
            background-size: 50px 50px;
            animation: particleFloat 20s linear infinite;
            opacity: 0.3;
        }

        @keyframes particleFloat {
            0% { background-position: 0 0; }
            100% { background-position: 100px 100px; }
        }

        .hero .content {
            position: relative;
            z-index: 1;
            color: #fff;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 15px;
            animation: slideInLeft 1s ease;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }

        .hero p {
            font-size: 1.3rem;
            animation: slideInLeft 1s ease 0.3s;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
        }

        /* Contact Section */
        .contact-section {
            padding: 80px 40px;
            background: #f5f5f5;
        }

        .contact-section h2 {
            font-size: 2.8rem;
            color: #6A0DAD;
            text-align: center;
            margin-bottom: 50px;
        }

        .contact-section h2 i {
            margin-right: 10px;
        }

        .contact-list {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }

        .contact-card {
            background: #fff;
            padding: 30px;
            border-radius: 15px;
            width: calc(20% - 24px);
            min-width: 200px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            opacity: 0;
        }

        .contact-card.show {
            opacity: 1;
            animation: scaleIn 0.5s ease forwards;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .contact-card i {
            font-size: 2.5rem;
            color: #6A0DAD;
            margin-bottom: 15px;
        }

        .contact-card h3 {
            font-size: 1.3rem;
            color: #6A0DAD;
            margin-bottom: 10px;
        }

        .contact-card p {
            color: #666;
            margin-bottom: 15px;
        }

        .contact-card a {
            display: inline-block;
            background: #6A0DAD;
            color: #fff;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            transition: background 0.3s ease, transform 0.3s ease;
        }

        .contact-card a:hover {
            background: #5A0C9D;
            transform: scale(1.05);
        }

        /* Map Section */
        .map-section {
            padding: 80px 40px;
            background: #fff;
            text-align: center;
        }

        .map-section h2 {
            font-size: 2.8rem;
            color: #6A0DAD;
            margin-bottom: 20px;
            animation: fadeIn 1s ease;
        }

        .map-section h2 i {
            margin-right: 10px;
        }

        .map-section p {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 40px;
            animation: fadeIn 1s ease 0.3s;
        }

        .map-section iframe {
            width: 100%;
            max-width: 800px;
            height: 400px;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            animation: fadeIn 1s ease 0.6s;
        }

        /* WhatsApp Chat Icon (Updated) */
        .whatsapp-chat {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }

        .whatsapp-chat-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: #25D366; /* WhatsApp green */
            color: #fff;
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, background 0.3s ease;
            animation: pulse 2s infinite;
            text-decoration: none; /* Remove any underline */
        }

        .whatsapp-chat-link:hover {
            background: #20b356;
            transform: scale(1.1);
        }

        .whatsapp-chat-link i {
            font-size: 2rem;
        }

        /* Ensure no pseudo-elements interfere */
        .whatsapp-chat-link::before,
        .whatsapp-chat-link::after {
            content: none !important;
        }

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

        /* Footer */
        footer {
            background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
            color: #fff;
            padding: 60px 40px 20px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
            border-top: 4px solid #6A0DAD;
            position: relative;
        }

        footer .footer-column {
            flex: 1;
            min-width: 200px;
        }

        footer h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        footer h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: #6A0DAD;
        }

        footer h3 i {
            margin-right: 8px;
        }

        footer a {
            color: #e0e0e0;
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        footer a:hover {
            color: #6A0DAD;
            transform: translateX(5px);
        }

        footer a i {
            margin-right: 8px;
        }

        footer .social-icons a {
            display: inline-block;
            margin-right: 15px;
            font-size: 1.5rem;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        footer .social-icons a:hover {
            color: #6A0DAD;
            transform: scale(1.2);
        }

        footer .copyright {
            width: 100%;
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #bbb;
        }

        /* Animations */
        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }

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

        @keyframes scaleIn {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            /* Header */
            .header-section {
                padding: 15px 20px;
                position: relative;
            }

            .header-section nav a {
                display: none;
            }

            .header-section .hamburger {
                display: block;
                position: absolute;
                right: 20px;
                top: 50%;
                transform: translateY(-50%);
            }

            #menu-toggle:checked ~ nav {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 60px;
                left: 0;
                width: 100%;
                background: #6A0DAD;
                padding: 20px;
            }

            #menu-toggle:checked ~ nav a {
                display: block;
                margin: 10px 0;
                text-align: left;
                padding-left: 20px;
            }

            .header-section nav a::after {
                display: none;
            }

            /* Hero Section */
            .hero {
                padding: 80px 20px;
                min-height: 80vh;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1rem;
            }

            /* Contact Section */
            .contact-card {
                width: calc(50% - 15px);
            }

            .contact-section h2 {
                font-size: 2rem;
            }

            /* Map Section */
            .map-section iframe {
                height: 300px;
            }

            .map-section h2 {
                font-size: 2rem;
            }

            /* Footer */
            footer {
                flex-direction: column;
                text-align: center;
            }

            footer .footer-column {
                margin-bottom: 20px;
            }

            /* WhatsApp Chat Icon for Mobile */
            .whatsapp-chat-link {
                width: 50px;
                height: 50px;
            }

            .whatsapp-chat-link i {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .contact-card {
                width: 100%;
            }
        }