        /* 🟥 Color Variables */
        :root {
            --primary-color: #ff3c3c;
            --dark-bg: #0c0c22;
            --light-bg: #fefeff;
            --text-light: #f9f9f9;
            --text-color: #000;
            --bg-color: #fff;

        }

       

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


        header {
            position: fixed;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            background: var(--bg-color);
            padding: 1rem 5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 30px;
            z-index: 11000;
            transition: all 0.3s ease;
            /* border-top: 2px solid black;
            border-bottom: 2px solid black; */
        }

        /* Logo */
        .logo img {
            height: 40px;
        }


        /* Nav Links */
        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-links a {
            position: relative;
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
            padding: 4px 0;
            transition: color 0.3s ease;
            font-size: 18px;


        }



        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            height: 2px;
            width: 100%;
            background-color: var(--primary-color);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease-in-out;
        }

        .nav-links a:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .nav-links a:not(:hover)::after {
            transform-origin: right;
        }

        /* CTA Button */
        .cta-btn {
            padding: 8px 16px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 500;
            font-size: 16px;

            /* Add these transition properties */
            transition: all 0.3s ease-in-out;
            transform: scale(1);
            /* Initial state */
        }

        .cta-btn:hover {
            transform: scale(1.05);
            /* Slightly larger on hover */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            /* Subtle shadow on hover */
            background-color: var(--primary-hover-color);
            /* Optional: slightly darker shade */
            color: var(--primary-color);
            outline: 1px solid var(--primary-color);
        }

        /* Hamburger Icon */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .hamburger div {
            width: 25px;
            height: 3px;
            background: var(--text-color);
        }

        /* Mobile Sidebar */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 250px;
                background: var(--bg-color);
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
                align-items: flex-start;
                box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
                transition: right 0.3s ease;
            }

            .nav-links.active {
                right: 0;
            }

            .hamburger {
                display: flex;
            }
        }

        /* 🔻 Sidebar */
        .sidebar {
            position: fixed;
            top: 0;
            right: -100%;
            width: 70%;
            height: 100%;
            background: var(--dark-bg);
            /* background-color: gray; */
            color: var(--text-light);
            display: flex;
            flex-direction: column;
            padding: 2rem;
            transition: right 0.3s ease;
            z-index: 11000;
        }

        .sidebar.active {
            right: 0;
        }

        .sidebar a {
            margin: 1rem 0;
            color: white;
            font-size: 1.2rem;
            text-decoration: none;
        }

        .sidebar .close-btn {
            align-self: flex-end;
            font-size: 1.5rem;
            cursor: pointer;
            margin-bottom: 1rem;
        }

        /* 🔻 Responsive */
        @media (max-width: 768px) {

            header {
                padding: 1rem 3rem;
            }

            nav {
                display: none;
            }

            .hamburger {
                display: flex;
            }
        }





































        /* Footer */



        
/* Animated Footer */
.animated-footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 4rem 6rem 2rem;
    position: relative;
    overflow: hidden;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-column:hover .footer-title::after {
    width: 80px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

/* Social Links Animation */
.social-link {
    padding-left: 30px;
}

.social-link i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.social-link:hover {
    color: white;
    padding-left: 35px;
}

.social-link:hover i {
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.2);
}

/* Service Links Animation */
.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.service-link:hover {
    color: white;
}

.service-link:hover::after {
    width: 100%;
}

/* Quick Links Animation */
.quick-link {
    padding: 5px 0;
}

.quick-link::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.quick-link:hover {
    color: white;
    transform: translateX(10px);
}

.quick-link:hover::before {
    opacity: 1;
    left: -15px;
}

/* Contact Info */
.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

.contact-info i {
    color: var(--primary-color);
    margin-top: 3px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--primary-color);
}

/* Floating Elements */
.footer-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 60, 60, 0.05);
    filter: blur(30px);
    z-index: 1;
}

.bubble-1 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    right: -100px;
    animation: float 15s ease-in-out infinite;
}

.bubble-2 {
    width: 200px;
    height: 200px;
    top: 50px;
    left: -50px;
    animation: float 12s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 20px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .animated-footer {
        padding: 3rem 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
}











@media (max-width: 768px) {
    .animated-footer {
        padding: 3rem 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-column {
        margin-bottom: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .footer-title {
        font-size: 1.1rem;
    }

    .footer-links a {
        font-size: 0.95rem;
    }

    .contact-info p {
        font-size: 0.95rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom {
        font-size: 0.85rem;
    }

    .legal-links a {
        font-size: 0.85rem;
    }
}
