         @import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,700;0,900;1,700;1,900&display=swap');

        :root {
            --primary: #2563eb;
            --primary-dark: #1e40af;
            --primary-light: #93c5fd;
            --text: #1e293b;
            --text-light: #64748b;
            --background: #F2f2f2;
            --white: #ffffff;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --section-spacing: 4rem;
            
        }
        
         

        html {
            scroll-behavior: smooth;
        }

        
        /* Hero Section */
        .hero {
           background: #0a0a0a; /* or any dark color */
            color: var(--white);
            padding: 8rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-bottom: var(--section-spacing);
        }
        
        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('');
            background-size: cover;
            opacity: 0.1;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
            animation: fadeInUp 1s ease;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.25rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }
        
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .hero {
                padding: 6rem 0;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section {
                padding: 2rem;
            }
            
            .features {
                grid-template-columns: 1fr;
            }
            
            .about-image {
                height: 300px;
            }
        }
        
        @media (max-width: 576px) {
            
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .section {
                padding: 1.5rem;
            }
            
            .stats {
                grid-template-columns: 1fr 1fr;
            }
            
            .back-to-top {
                width: 40px;
                height: 40px;
                bottom: 20px;
                right: 20px;
            }
        }

            h2{
                font-family: 'Playfair Display', serif;
            
            }

            :root {
            --primary: #2c3e50;
            --secondary: #3498db;
            --accent: #9b59b6;
            --text: #333;
            --light-text: #7f8c8d;
            --white: #ffffff;
            --gray-bg: #f8fafc;
            --whatsapp: #25D366;
            --telegram: #0088cc;
            --facebook: #1877f2;
            --youtube: #ff0000;
            --instagram: #e44079;
            --tiktok: #000000;
            --email: #d44638;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            }


            /* ===== Section Header Styles ===== */
            .section-header {
            text-align: center;
            margin-bottom: 40px;
            }

            .section-subtitle {
            display: block;
            font-size: 1rem;
            color: var(--light-text);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
            }

            .section-header h2 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            }

            .divider {
            width: 80px;
            height: 3px;
            background: linear-gradient(to right, var(--secondary), var(--accent));
            margin: 0 auto;
            border-radius: 3px;
            }

            /* ===== Scoped Contact Section ===== */
            .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
            }

            .contact-grid .contact-card {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 25px;
            display: flex;
            align-items: center;
            text-decoration: none;
            color: inherit;
            border-left: 5px solid;
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            transition: all 0.45s ease;
            transform-style: preserve-3d;

            /* Initial hidden for animation */
            opacity: 0;
            transform: translateY(20px);
            }

            .contact-grid .contact-card::before {
            content: '';
            position: absolute;
            top: -80%;
            left: -80%;
            width: 260%;
            height: 260%;
            background: linear-gradient(135deg, rgba(255,255,255,0.35), rgba(255,255,255,0));
            opacity: 0;
            transform: rotate(15deg);
            transition: opacity 0.45s ease, transform 0.45s ease;
            z-index: -1;
            }

            /* Visible state for scroll animation */
            .contact-grid .contact-card.visible {
            opacity: 1;
            transform: translateY(0);
            }

            /* Hover Effects */
            .contact-grid .contact-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.22);
            }

            .contact-grid .contact-card:hover::before {
            opacity: 1;
            transform: rotate(15deg) translate(15px, -15px);
            }

            /* Icon */
            .contact-grid .contact-card .contact-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-right: 20px;
            flex-shrink: 0;
            color: #fff;
            transition: transform 0.45s ease, box-shadow 0.45s ease;
            }

            .contact-grid .contact-card:hover .contact-icon {
            transform: scale(1.15);
            box-shadow: 0 5px 20px rgba(0,0,0,0.25);
            }

            /* Info Text */
            .contact-grid .contact-card .contact-info h3 {
            font-size: 1.22rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 5px;
            }

            .contact-grid .contact-card .contact-info p {
            font-size: 0.95rem;
            color: var(--light-text);
            margin-bottom: 10px;
            }

            /* Button */
            .contact-grid .contact-card .contact-btn {
            display: inline-block;
            padding: 7px 16px;
            font-size: 0.85rem;
            border-radius: 22px;
            background: rgba(0,0,0,0.07);
            color: var(--primary);
            font-weight: 500;
            transition: all 0.3s ease;
            }

            .contact-grid .contact-card:hover .contact-btn {
            background: rgba(0,0,0,0.12);
            }

            /* Card Colors */
            .contact-grid .contact-card.whatsapp { 
            border-color: var(--whatsapp); 
            background-color: rgba(37, 211, 102, 0.05);
            }
            .contact-grid .contact-card.whatsapp .contact-icon { 
            background: linear-gradient(135deg, var(--whatsapp), #128C7E);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
            }

            .contact-grid .contact-card.telegram { 
            border-color: var(--telegram); 
            background-color: rgba(0, 136, 204, 0.05);
            }
            .contact-grid .contact-card.telegram .contact-icon { 
            background: linear-gradient(135deg, var(--telegram), #34AADF);
            box-shadow: 0 6px 20px rgba(0, 136, 204, 0.25);
            }

            .contact-grid .contact-card.email { 
            border-color: var(--email); 
            background-color: rgba(234, 67, 53, 0.05);
            }
            .contact-grid .contact-card.email .contact-icon { 
            background: linear-gradient(135deg, var(--email), #FBBC05);
            box-shadow: 0 6px 20px rgba(234, 67, 53, 0.25);
            }


            /* ==== Social Grid ==== */
            .social-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 22px;
            }

            /* ==== Social Card ==== */
            .social-card {
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(8px);
            border-radius: 16px;
            padding: 28px 18px;
            text-align: center;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.45);
            transition: all 0.35s ease;
            text-decoration: none;
            color: inherit;
            position: relative;
            overflow: hidden;
            }

            /* Light shine overlay */
            .social-card::before {
            content: '';
            position: absolute;
            top: -80%;
            left: -80%;
            width: 260%;
            height: 260%;
            background: linear-gradient(
                135deg,
                rgba(255,255,255,0.35),
                rgba(255,255,255,0.0)
            );
            opacity: 0;
            transform: rotate(15deg);
            transition: opacity 0.4s ease, transform 0.4s ease;
            }

            /* Hover Effect — Glow + Lift */
            .social-card:hover {
            transform: translateY(-6px) scale(1.03);
            box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
            }

            /* Hover Shine */
            .social-card:hover::before {
            opacity: 1;
            transform: rotate(15deg) translate(10px, -10px);
            }

            /* Icon */
            .social-card i {
            font-size: 2.3rem;
            margin-bottom: 14px;
            display: block;
            transition: transform 0.35s ease;
            }

            /* Icon hover */
            .social-card:hover i {
            transform: scale(1.15);
            }

            /* Card title */
            .social-card h3 {
            font-size: 1.15rem;
            color: var(--primary);
            font-weight: 600;
            }

            /* Social Colors */
            .whatsapp-channel { color: var(--whatsapp); }
            .telegram-channel { color: var(--telegram); }
            .facebook { color: var(--facebook); }
            .youtube { color: var(--youtube); }
            .instagram { color: var(--instagram); }
            .tiktok { color: var(--tiktok); }

            /* ===== Responsive Design ===== */
            @media (max-width: 992px) {
            .contact-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
            
            .social-grid {
                grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            }
            }

            @media (max-width: 768px) {
            .section-header h2 {
                font-size: 1.8rem;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .contact-card {
                padding: 20px;
            }
            
            .contact-icon {
                width: 50px;
                height: 50px;
                font-size: 1.6rem;
                margin-right: 15px;
            }
            }

            @media (max-width: 576px) {
            .social-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .section-subtitle {
                font-size: 0.9rem;
            }
            
            .section-header h2 {
                font-size: 1.6rem;
            }
            
            .divider {
                width: 60px;
            }
            }

            /* ===== Animations ===== */
            @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
            }

            .contact-card, .social-card {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
            }

            .contact-card:nth-child(1) { animation-delay: 0.1s; }
            .contact-card:nth-child(2) { animation-delay: 0.2s; }
            .contact-card:nth-child(3) { animation-delay: 0.3s; }

            .social-card:nth-child(1) { animation-delay: 0.1s; }
            .social-card:nth-child(2) { animation-delay: 0.2s; }
            .social-card:nth-child(3) { animation-delay: 0.3s; }
            .social-card:nth-child(4) { animation-delay: 0.4s; }
            .social-card:nth-child(5) { animation-delay: 0.5s; }
            .social-card:nth-child(6) { animation-delay: 0.6s; }
            .section-header {
                text-align: center;
                margin-bottom: 40px;
            }

            /* Section Styling */


            .section-subtitle {

            font-weight: bold;
            }

            .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            }

            .divider {
            width: 100px;
            height: 4px;
            background: #0088cc;
            margin: 0 auto;
            border-radius: 2px;
            }


            section {
                margin-bottom: 80px;
            }

            h2 , h1 {
                font-family: 'Playfair Display', serif;
                font-weight: 600;
                line-height: 1.3;
            


            }