.hero-section {
            background: linear-gradient(135deg, #1a0033 0%, #0a0a0a 100%);
            padding: 150px 0 80px;
            text-align: center;
            position: relative;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
            filter: blur(100px);
        }

        /* h1 {
            font-family: 'Bebas Neue', cursive;
            font-size: 3.5rem;
            background: linear-gradient(90deg, #8B5CF6, #A855F7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
        }

        .subtitle {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.2rem;
        } */
            .hero-title {
            /* font-family: 'Rye', serif; */
             font-family: "Kalnia Glaze", serif;
            font-size: 2.5rem;
            line-height: 0.9;
            letter-spacing: 3px;
            background: linear-gradient(45deg, var(--dark-orange), var(--dark-orange), var(--dark-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: var(--orange-glow);
            animation: glowPulse 3s ease-in-out infinite;
        }

        .hero-subtitle {
            /* font-family: 'Cinzel', serif; */
           color: rgba(255, 255, 255, 0.8);
            font-size: 1.2rem;

        }


        .welcome-section{
             background-color: #000;
    background-image: radial-gradient(circle at 50% 50%, rgba(83, 70, 199, 0.5) 0%, rgba(20, 20, 40, 0.7) 50%, rgba(0, 0, 0, 1) 100%);
        }
        .section-two{
             background-color: #000;
    background-image: radial-gradient(circle at 50% 50%, rgba(83, 70, 199, 0.5) 0%, rgba(20, 20, 40, 0.7) 50%, rgba(0, 0, 0, 1) 100%);
        }
        /* .section-three{
             background-color: #000;
    background-image: radial-gradient(circle at 50% 50%, rgba(83, 70, 199, 0.5) 0%, rgba(20, 20, 40, 0.7) 50%, rgba(0, 0, 0, 1) 100%);
        } */
        /* Content Sections */
        .content-section {
            padding: 80px 0;
            position: relative;
            
        }
       

        /* .content-section:nth-child(even) {
            background: rgba(139, 92, 246, 0.03);
        } */

        h2 {
           font-family: "DM Serif Text", serif;
           letter-spacing: 1.5px;
            font-size: 2.5rem;
            color: #FFA866;
            margin-bottom: 30px;
        }
        .white-h2{
            color: white;
        }
        .section-text {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
            margin-bottom: 20px;
        }

        /* Image Placeholders */
        .image-box {
            width: 100%;
            height: 400px;
            /* background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.05)); */
            /* border: 1px solid rgba(139, 92, 246, 0.3);
            border-radius: 15px; */
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(139, 92, 246, 0.5);
            font-size: 1.2rem;
            margin-bottom: 30px;
            overflow: hidden;
        }

        .image-box img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .image-box2 {
            width: 100%;
            height: 400px;
            /* background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.05)); */
            /* border: 1px solid rgba(139, 92, 246, 0.3);
            border-radius: 15px; */
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(139, 92, 246, 0.5);
            font-size: 1.2rem;
            margin-bottom: 30px;
            overflow: hidden;
        }

        .image-box2 img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        /* Cards */
        .info-card {
            background: rgba(139, 92, 246, 0.05);
            border: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: 15px;
            padding: 30px;
            height: 100%;
            transition: all 0.3s ease;
        }

        .info-card:hover {
            background: rgba(139, 92, 246, 0.08);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
        }

        .info-card h3 {
            color: #8B5CF6;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        /* Stats */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }

        .stat-box {
            text-align: center;
            padding: 20px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            background: linear-gradient(90deg, #8B5CF6, #A855F7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.7);
            margin-top: 5px;
        }

        /* Lists */
        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
            color: rgba(255, 255, 255, 0.8);
        }

        .feature-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #8B5CF6;
            font-weight: bold;
        }

        /* Timeline */
        .timeline-item {
            padding: 10px 0;
            border-left: 2px solid rgba(139, 92, 246, 0.3);
            padding-left: 30px;
            margin-left: 20px;
            position: relative;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -7px;
            top: 20px;
            width: 12px;
            height: 12px;
            background: #8B5CF6;
            border-radius: 50%;
        }

        .timeline-year {
            color: #A855F7;
            font-weight: bold;
            margin-bottom: 5px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .content-section { padding: 50px 0; }
            .image-box { height: 250px; }
        }


        /* contact------------------ */

          /* Contact Section */
    .get-in-touch {
        
        padding: 60px 0;
    }

    .touch-heading {
        font-family: 'Bebas Neue', cursive;
        font-size: 3rem;
        text-align: center;
        margin-bottom: 40px;
        background: linear-gradient(90deg, #8B5CF6, #A855F7);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* Form Container */
    .inquiry-box {
        background: rgba(139, 92, 246, 0.03);
        padding: 35px;
        border-radius: 15px;
        height: 100%;
    }

    .inquiry-title {
        color: #fff;
        font-size: 1.3rem;
        margin-bottom: 25px;
        font-weight: 600;
    }

    /* Simplified Input Fields */
    .line-input {
        width: 100%;
        padding: 8px 0;
        margin-bottom: 15px;
        background: transparent;
        border: none;
        border-bottom: 1px solid rgba(139, 92, 246, 0.3);
        color: white;
        font-size: 0.95rem;
        transition: border-color 0.3s ease;
        outline: none;
    }

    .line-input:focus {
        border-bottom-color: #8B5CF6;
    }

    .line-input::placeholder {
        color: rgba(255, 255, 255, 0.4);
    }

    /* Dropdown styling */
    .line-input option {
        background: #1a0033;
        color: white;
    }

    /* Submit Button */
    .send-msg-btn {
        background: linear-gradient(90deg, #8B5CF6, #A855F7);
        color: white;
        border: none;
        padding: 12px 35px;
        border-radius: 30px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 10px;
    }

    .send-msg-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
    }

    /* Image Container */
    .contact-visual {
        height: 100%;
        min-height: 400px;
        border-radius: 15px;
        overflow: hidden;
    }

    .contact-visual img {
        width: 75%;
        height: 100%;
        object-fit: contain;
    }

    /* Alerts - Simplified */
    .alert {
        padding: 10px 15px;
        margin-bottom: 15px;
        border-radius: 5px;
        font-size: 0.9rem;
    }

    .alert-success {
        background: rgba(34, 197, 94, 0.15);
        color: #22c55e;
    }

    .alert-danger {
        background: rgba(239, 68, 68, 0.15);
        color: #ef4444;
    }

    .btn-close {
        float: right;
        background: none;
        border: none;
        color: inherit;
        cursor: pointer;
        font-size: 1.2rem;
        line-height: 1;
        opacity: 0.7;
    }

    .btn-close:hover {
        opacity: 1;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .get-in-touch {
            padding: 40px 0;
        }
        
        .touch-heading {
            font-size: 2rem;
            margin-bottom: 30px;
        }
        
        .inquiry-box {
            padding: 25px;
        }
        
        .contact-visual {
            min-height: 250px;
            margin-bottom: 30px;
        }
    }