:root {
            --theme-pink: #df1b70;
            --theme-pink-hover: #c51763;
            --theme-blue: #3da1d2;
            --theme-blue-hover: #358db8;
             --snk-bg: #0b1120;
            --snk-card: #111827;
            --snk-pink: #ec4899;
            --snk-pink-hover: #db2777;
            --text-main: #ffffff;
            --text-muted: #9ca3af;
            --border-gray: #1f2937;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            /* Kept your font preference, but added sans-serif fallback for UI elements */
            font-family: 'Times New Roman', Times, serif;
            background-color: #f8f9fa;
            margin: 0;
        }

        /* --- Header Styles --- */
        #head {
            transition: all 0.4s ease-in-out;
            font-size: 18px; /* Adjusted from 25px for better balance */
        }

        /* State when page is scrolled */
        header.scrolled {
            background-color: rgba(255, 255, 255, 0.95);
            /* backdrop-blur: 10px; */
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 0.5rem 1rem;
        }

        header.scrolled .nav-link, 
        header.scrolled span {
            color: #1a202c !important; /* Dark text on white background */
        }

        /* --- Buttons --- */
        .btn-theme-blue {
            background-color: var(--theme-blue);
            color: white;
            transition: all 0.3s ease;
        }
        .btn-theme-blue:hover {
            background-color: var(--theme-blue-hover);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(61, 161, 210, 0.3);
        }

        /* --- Navigation Links & Underline --- */
        .nav-link {
            color: #ffffff; /* Default for transparent header */
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: var(--theme-pink);
            transition: width 0.3s ease-in-out;
        }

        .nav-link:hover {
            color: var(--theme-pink) !important;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Nav container animation on load */
        #navcss {
            animation: navFade 0.8s ease forwards;
        }

        @keyframes navFade {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile Menu Transitions */
        #mobile-menu {
            transition: transform 0.3s ease-in-out;
            transform: translateX(100%);
        }
        #mobile-menu.open {
            transform: translateX(0);
        }


           /* Footer Container */
        #snk-footer {
            background-color: var(--snk-bg);
            color: var(--text-main);
            padding: 80px 24px 40px;
            line-height: 1.6;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Grid Layout */
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 640px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }
            #snk-footer {
                padding-top: 60px;
            }
        }

        /* Column Headings */
        .footer-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 24px;
            position: relative;
            color: #fff;
            display: inline-block;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 30px;
            height: 2px;
            background: var(--snk-pink);
        }

        /* Logo Section */
        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .logo-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-wrapper img {
            width: 48px;
            height: 48px;
            background: #fff;
            border-radius: 10px;
            padding: 6px;
            object-fit: contain;
        }

        .logo-wrapper h3 {
            font-size: 1.25rem;
            font-weight: 800;
            letter-spacing: -0.025em;
        }

        .footer-desc {
            color: var(--text-muted);
            font-size: 0.95rem;
            max-width: 320px;
        }

        /* Links List */
        .footer-links {
            list-style: none;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 1rem;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
        }

        .footer-links a:hover {
            color: var(--snk-pink);
            transform: translateX(5px);
        }

        /* Contact Items */
        .contact-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .contact-item {
            display: flex;
            gap: 12px;
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .contact-item svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            color: var(--snk-pink);
            margin-top: 3px;
        }

        .contact-item a {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s;
        }

        .contact-item a:hover {
            color: #fff;
        }

        /* Social Section */
        .social-wrapper {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .social-icons {
            display: flex;
            gap: 12px;
            margin-top: 8px;
        }

        .social-btn {
            width: 44px;
            height: 44px;
            background: var(--snk-card);
            border: 1px solid var(--border-gray);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            cursor: pointer;
        }

        .social-btn svg {
            width: 20px;
            height: 20px;
            fill: var(--text-muted);
            transition: var(--transition);
        }

        /* Brand Colors on Hover */
        .social-btn.facebook:hover { background: #1877f2; border-color: #1877f2; }
        .social-btn.instagram:hover { 
            background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
            border-color: transparent;
        }
        .social-btn.youtube:hover { background: #ff0000; border-color: #ff0000; }

        .social-btn:hover svg {
            fill: #fff;
            transform: scale(1.1);
        }

        /* Footer Bottom */
        .footer-bottom {
            padding-top: 32px;
            border-top: 1px solid var(--border-gray);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright {
            font-size: 0.875rem;
            color: #6b7280;
        }

        .legal-links {
            display: flex;
            gap: 24px;
        }

        .legal-links a {
            font-size: 0.75rem;
            color: #4b5563;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: color 0.2s;
        }

        .legal-links a:hover {
            color: var(--text-muted);
        }

        @media (max-width: 640px) {
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .legal-links {
                justify-content: center;
            }
        }



        @media (max-width: 640px) {

    /* -------- Body -------- */
    body {
        font-size: 15px;
        line-height: 1.5;
    }

    /* -------- Header -------- */
    #head {
        font-size: 16px;
        padding: 12px 16px;
    }

    header.scrolled {
        padding: 10px 16px;
    }

    /* -------- Navigation -------- */
    #navcss {
        flex-direction: column;
        gap: 12px;
    }

    .nav-link {
        font-size: 16px;
        padding: 8px 0;
        display: block;
        width: 100%;
        text-align: center;
    }

    .nav-link::after {
        bottom: -2px;
    }

    /* -------- Mobile Menu -------- */
    #mobile-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: #0b1120;
        padding: 80px 24px;
        z-index: 999;
    }

    #mobile-menu a {
        font-size: 18px;
        margin-bottom: 16px;
    }

    /* -------- Buttons -------- */
    .btn-theme-blue {
        width: 100%;
        padding: 12px 16px;
        font-size: 16px;
    }

    /* -------- Footer -------- */
    #snk-footer {
        padding: 60px 20px 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-title {
        font-size: 1rem;
    }

    .footer-desc {
        font-size: 0.9rem;
        max-width: 100%;
    }

    /* -------- Logo -------- */
    .logo-wrapper {
        gap: 10px;
    }

    .logo-wrapper img {
        width: 42px;
        height: 42px;
    }

    .logo-wrapper h3 {
        font-size: 1.1rem;
    }

    /* -------- Footer Links -------- */
    .footer-links a {
        font-size: 0.95rem;
    }

    /* -------- Contact -------- */
    .contact-item {
        font-size: 0.9rem;
    }

    /* -------- Social Icons -------- */
    .social-icons {
        gap: 10px;
    }

    .social-btn {
        width: 40px;
        height: 40px;
    }

    .social-btn svg {
        width: 18px;
        height: 18px;
    }

    /* -------- Footer Bottom -------- */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .copyright {
        font-size: 0.8rem;
    }

    .legal-links {
        justify-content: center;
        gap: 16px;
    }
}




@media (max-width: 1024px) {

    #head {
        font-size: 17px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }

    .footer-desc {
        max-width: 100%;
    }

    .btn-theme-blue {
        padding: 10px 14px;
        font-size: 15px;
    }
}
/* testimonials */