
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }


        body {
            font-family: 'Lato', sans-serif;
            background: #000;
            color: #fff;
            overflow-x: hidden;
            position: relative;
        }

        /* Animated Background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
        }

        .bubble {
            position: absolute;
            bottom: -100px;
            background: radial-gradient(circle, rgba(218, 165, 32, 0.3), transparent);
            border-radius: 50%;
            animation: rise 15s infinite ease-in;
        }

        @keyframes rise {
            0% {
                bottom: -100px;
                opacity: 0;
            }
            50% {
                opacity: 0.6;
            }
            100% {
                bottom: 110%;
                opacity: 0;
            }
        }

        .star {
            position: absolute;
            background: #DAA520;
            width: 2px;
            height: 2px;
            border-radius: 50%;
            animation: twinkle 3s infinite;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        /* Header */
        header {
            background: rgba(0, 0, 0, 0.95);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #DAA520;
            box-shadow: 0 4px 20px rgba(218, 165, 32, 0.3);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

    

        .logo-text h1 {
            font-size: 28px;
            color: #DAA520;
            font-weight: 900;
        }

        .logo-text p {
            font-size: 12px;
            color: #999;
        }

        .header-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .header-btn {
            padding: 12px 25px;
            background: linear-gradient(135deg, #DAA520, #FFD700);
            color: #000;
            border: none;
            border-radius: 25px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            font-size: 14px;
        }

        .header-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(218, 165, 32, 0.5);
        }

        /* Main Content */
        .content {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        /* Hero Section */
        .hero {
            text-align: center;
            padding: 60px 20px;
            background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), rgba(0, 0, 0, 0.5));
            border-radius: 20px;
            margin-bottom: 50px;
            border: 1px solid rgba(218, 165, 32, 0.3);
        }

        .hero h1 {
            font-size: 48px;
            color: #DAA520;
            margin-bottom: 20px;
            font-weight: 900;
        }

        .hero p {
            font-size: 18px;
            color: #ccc;
            max-width: 800px;
            margin: 0 auto 20px;
            line-height: 1.6;
        }

        .alert-box {
            background: rgba(255, 215, 0, 0.1);
            border-left: 4px solid #DAA520;
            padding: 15px 20px;
            margin: 20px auto;
            max-width: 600px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .alert-box i {
            font-size: 24px;
            color: #DAA520;
        }

        /* Section Styling */
        .section {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(218, 165, 32, 0.3);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 40px;
            backdrop-filter: blur(10px);
        }

        .section-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
        }

        .section-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #DAA520, #FFD700);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: #000;
        }

        .section h2 {
            font-size: 32px;
            color: #DAA520;
            font-weight: 700;
        }

        .section p {
            color: #ccc;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .section ul {
            list-style: none;
            margin: 20px 0;
        }

        .section ul li {
            padding: 10px 0;
            color: #ccc;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section ul li i {
            color: #DAA520;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 15px 35px;
            background: linear-gradient(135deg, #DAA520, #FFD700);
            color: #000;
            border: none;
            border-radius: 30px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            margin: 10px 10px 10px 0;
            animation: blink 2s infinite;
        }

        @keyframes blink {
            0%, 100% {
                box-shadow: 0 0 10px rgba(218, 165, 32, 0.5);
            }
            50% {
                box-shadow: 0 0 25px rgba(218, 165, 32, 1), 0 0 50px rgba(255, 215, 0, 0.5);
            }
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(218, 165, 32, 0.6);
            animation: none;
        }

        .btn-secondary {
            background: transparent;
            border: 2px solid #DAA520;
            color: #DAA520;
        }

        .btn-secondary:hover {
            background: linear-gradient(135deg, #DAA520, #FFD700);
            color: #000;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .feature-card {
            background: rgba(0, 0, 0, 0.5);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid rgba(218, 165, 32, 0.3);
            text-align: center;
            transition: all 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: #DAA520;
            box-shadow: 0 10px 30px rgba(218, 165, 32, 0.3);
        }

        .feature-card i {
            font-size: 40px;
            color: #DAA520;
            margin-bottom: 15px;
        }

        .feature-card h3 {
            color: #DAA520;
            margin-bottom: 10px;
            font-size: 20px;
        }

        /* Contact Form */
        .contact-form {
            background: rgba(0, 0, 0, 0.6);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(218, 165, 32, 0.3);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            color: #DAA520;
            margin-bottom: 8px;
            font-weight: 700;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(218, 165, 32, 0.3);
            border-radius: 10px;
            color: #fff;
            font-family: 'Lato', sans-serif;
            font-size: 16px;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #DAA520;
            box-shadow: 0 0 15px rgba(218, 165, 32, 0.3);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        /* Info Box */
        .info-box {
            background: rgba(218, 165, 32, 0.1);
            border-left: 4px solid #DAA520;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
        }

        .info-box h3 {
            color: #DAA520;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .contact-card {
            background: rgba(0, 0, 0, 0.5);
            padding: 25px;
            border-radius: 15px;
            border: 1px solid rgba(218, 165, 32, 0.3);
        }

        .contact-card i {
            font-size: 30px;
            color: #DAA520;
            margin-bottom: 15px;
        }

        .contact-card h3 {
            color: #DAA520;
            margin-bottom: 10px;
        }

        .contact-card p, .contact-card a {
            color: #ccc;
            text-decoration: none;
            display: block;
            margin: 5px 0;
        }

        .contact-card a:hover {
            color: #DAA520;
        }

        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.95);
            border-top: 2px solid #DAA520;
            padding: 50px 20px 20px;
            margin-top: 60px;
            position: relative;
            z-index: 1;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            color: #DAA520;
            margin-bottom: 20px;
            font-size: 20px;
        }

        .footer-section p, .footer-section a {
            color: #ccc;
            text-decoration: none;
            display: block;
            margin: 10px 0;
            line-height: 1.6;
        }

        .footer-section a:hover {
            color: #DAA520;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #DAA520, #FFD700);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            font-size: 18px;
            transition: all 0.3s;
        }

        .social-links a:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(218, 165, 32, 0.5);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(218, 165, 32, 0.3);
            color: #999;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 32px;
            }

            .section {
                padding: 25px;
            }

            .section h2 {
                font-size: 24px;
            }

            .header-container {
                justify-content: center;
                gap: 20px;
            }

            .logo-text h1 {
                font-size: 22px;
            }

            .contact-form {
                padding: 25px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }
        }

        /* Feedback Buttons */
        .feedback-section {
            text-align: center;
            margin: 40px 0;
        }

        .feedback-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }

        .feedback-btn {
            padding: 15px 40px;
            font-size: 18px;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 700;
        }

        .feedback-btn.yes {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: #fff;
        }

        .feedback-btn.no {
            background: linear-gradient(135deg, #dc3545, #c82333);
            color: #fff;
        }

        .feedback-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }


        /* =========================
   MOBILE OPTIMIZATION FIX
   ========================= */
@media (max-width: 768px) {

    /* Global */
    body {
        font-size: 14px;
        line-height: 1.6;
    }

    .content {
        padding: 18px 12px;
    }

    /* Header */
    header {
        padding: 14px 0;
    }

    .header-container {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    .logo {
        justify-content: center;
        gap: 10px;
    }

 
    .logo-text h1 {
        font-size: 20px;
    }

    .logo-text p {
        font-size: 11px;
    }

    .header-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .header-btn {
        width: 100%;
        max-width: 280px;
        font-size: 14px;
        padding: 12px;
    }

    /* Hero */
    .hero {
        padding: 35px 15px;
    }

    .hero h1 {
        font-size: 26px;
        line-height: 1.3;
    }

    .hero p {
        font-size: 14px;
    }

    .alert-box {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        font-size: 13px;
    }

    .alert-box i {
        font-size: 20px;
    }

    /* Sections */
    .section {
        padding: 22px 16px;
        margin-bottom: 30px;
    }

    .section-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .section-icon {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }

    .section h2 {
        font-size: 22px;
    }

    .section p {
        font-size: 14px;
    }

    /* Feature Cards */
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 22px;
    }

    .feature-card i {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    /* Lists with Icons */
    .section ul li {
        align-items: flex-start;
        font-size: 14px;
    }

    .section ul li i {
        min-width: 18px;
        font-size: 14px;
        margin-top: 4px;
    }

    /* Buttons */
    .btn {
        width: 100%;
        max-width: 300px;
        font-size: 14px;
        padding: 13px 18px;
        margin: 8px auto;
        display: block;
    }

    .btn i {
        font-size: 14px;
        margin-right: 6px;
    }

    /* Contact Cards */
    .contact-details {
        grid-template-columns: 1fr;
    }

    .contact-card {
        text-align: center;
        padding: 20px;
    }

    .contact-card i {
        font-size: 24px;
        margin-bottom: 8px;
    }

    /* Forms */
    .contact-form {
        padding: 20px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 14px;
        padding: 12px;
    }

    /* Feedback Buttons */
    .feedback-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .feedback-btn {
        width: 100%;
        max-width: 280px;
        font-size: 15px;
        padding: 12px;
    }

    .feedback-btn i {
        font-size: 16px;
    }

    /* Footer */
    footer {
        padding: 40px 15px 20px;
    }

    .footer-content {
        text-align: center;
        gap: 30px;
    }

    .footer-section h3 {
        font-size: 18px;
    }

    .footer-section p,
    .footer-section a {
        font-size: 13px;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

 