
        :root {
            --primary: #3b82f6;
            --dark: #0f172a;
            --darker: #020617;
            --light-bg: #f8fafc;
            --card-bg: #ffffff;
            --text-main: #334155;
            --text-muted: #64748b;
            --radius: 16px;
            --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--light-bg);
            color: var(--text-main);
            overflow-x: hidden;
        }

        @media (min-width: 1400px) {
            .container {
                max-width: 1400px;
            }
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            color: var(--dark);
            letter-spacing: -0.02em;
        }

        /* --- 1. MODERN NAVIGATION --- */
        .modern-nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.4s ease;
            padding: 15px 0;
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-brand-text {
            font-size: 1.5rem;
            font-weight: 800;
            color: #fff;
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.8) !important;
            font-weight: 500;
            margin-left: 20px;
            position: relative;
        }

        .nav-link:hover {
            color: var(--primary) !important;
        }

        .btn-subscribe {
            background: var(--primary);
            color: white !important;
            border-radius: 50px;
            padding: 8px 25px !important;
            box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.39);
        }

        .btn-subscribe:hover {
            background-color: #ffffff;
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
        }

        /* --- CONTACT PAGE SPECIFIC STYLES --- */
        .page-header {
            margin-top: 120px;
            margin-bottom: 50px;
            text-align: center;
        }

        .guidelines-box {
            background: #fff;
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
            border-left: 5px solid var(--primary);
            margin-bottom: 40px;
        }

        .guidelines-list {
            list-style: none;
            padding: 0;
        }

        .guidelines-list li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 15px;
            color: var(--text-main);
            font-size: 0.95rem;
        }

        .guidelines-list li::before {
            content: '\f00c';
            /* FontAwesome Check */
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--primary);
        }

        .contact-form-box {
            background: #fff;
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
        }

        .form-control {
            background-color: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            padding: 12px 1px;
            margin-bottom: 20px;
        }

        .form-control:focus {
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
            border-color: var(--primary);
        }

        .contact-info-card {
            background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
            /* Premium Gradient */
            color: white;
            padding: 133px 30px;
            border-radius: var(--radius);
            margin-bottom: 30px;
            box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.3);
            position: relative;
            overflow: hidden;

        }

        /* Decorative Circle */
        .contact-info-card::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 150px;
            height: 150px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }

        /* Bottom-Left Circle ke liye */
        .contact-info-card::after {
            content: '';
            position: absolute;
            bottom: -50px;
            /* Niche laane ke liye */
            left: -50px;
            /* Left side laane ke liye */
            width: 150px;
            height: 150px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            z-index: 0;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 35px;
            position: relative;
            z-index: 1;
        }

        /* Icon Styling */
        .icon-box {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            margin-right: 20px;
            font-size: 1.2rem;
            flex-shrink: 0;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .info-item:hover .icon-box {
            background: var(--primary);
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
        }

        .info-content h5 {
            color: white;
            margin-bottom: 8px;
            font-size: 1.1rem;
            font-weight: 700;
        }

        .info-content p,
        .info-content a {
            color: #94a3b8;
            margin: 0;
            font-size: 0.95rem;
            display: block;
            line-height: 1.5;
            text-decoration: none;
            transition: 0.3s;
        }

        .info-content a:hover {
            color: white;
            padding-left: 5px;
        }

        /* --- 5. MEGA FOOTER --- */
        .modern-footer {
            background: var(--darker);
            color: #94a3b8;
            padding: 80px 0 30px;
            margin-top: 80px;
        }

        .footer-brand {
            color: white;
            font-size: 2rem;
            font-weight: 800;
            display: block;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: 0.3s;
        }

        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }

        .newsletter-box h5 {
            color: white;
            margin-bottom: 15px;
        }


        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .contact-info-box {
                margin-top: 30px;
            }
        }