/* ===========================
           CSS VARIABLES
        =========================== */
        :root {
            --bg: #EDEDED;
            --base: #E5E5E5;
            --inner-dark: rgba(13, 39, 80, 0.16);
            --inner-light: rgba(255, 255, 255, 0.70);
            --drop-dark: rgba(0, 0, 0, 0.25);
            --drop-light: rgba(255, 255, 255, 0.70);
            --text-dark: #333;
            --text-medium: #555;
            --text-light: #777;
            --accent: #f57600;
        }

        /* ===========================
           GLOBAL RESET
        =========================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ===========================
           HERO SECTION
        =========================== */
        .hero {
            position: relative;
            width: 100%;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            background-image: 
                url('background.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            z-index: 1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0.15) 100%);
            z-index: 2;
        }

        .geometric-overlay {
            position: absolute;
            width: 120%;
            height: 80%;
            background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
            transform: rotate(-15deg);
            top: -20%;
            left: -10%;
            z-index: 3;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            padding: 20px;
            max-width: 900px;
        }

        .hero h1 {
            font-size: clamp(2rem, 6vw, 3.5rem);
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
            letter-spacing: 2px;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }

        .hero h2 {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            font-weight: 700;
            color: rgba(255,255,255,0.9);
            margin-bottom: 20px;
            letter-spacing: 1px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        .hero-subtitle {
            font-size: clamp(0.9rem, 2.5vw, 1.2rem);
            font-weight: 300;
            color: rgba(255,255,255,0.95);
            margin-bottom: 40px;
            line-height: 1.8;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
            padding: 0 20px;
        }

        .hero-subtitle a {
            color: rgba(255,255,255,1);
            text-decoration: none;
            font-weight: 500;
            border-bottom: 2px solid rgba(255,255,255,0.5);
            transition: all 0.3s ease;
        }

        .hero-subtitle a:hover {
            border-bottom-color: rgba(255,255,255,1);
            color: #fff;
        }
		
		.hero-logo {
    		width: 120px;
    		height: auto;
    		margin-bottom: 30px;
    		filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
		}

        /* ===========================
           SOCIAL BUTTONS (DROP SHADOW)
        =========================== */
        .social-container {
            display: inline-block;
            background: rgba(255, 255, 255, 0.95);
            padding: 30px 40px;
            border-radius: 20px;
            box-shadow: 
                -20px -20px 40px rgba(255, 255, 255, 0.3),
                20px 20px 40px rgba(0, 0, 0, 0.2);
        }

        .social-title {
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--text-dark);
            margin-bottom: 20px;
            text-align: center;
        }

        .social-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .social-btn {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            background: var(--base);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: var(--text-medium);
            font-size: 1.5rem;
            transition: all 0.3s ease;
            
            /* Drop Shadow from css.html */
            box-shadow: 
                -30px -30px 48px var(--drop-light),
                30px 30px 48px var(--drop-dark);
        }

        .social-btn:hover {
            transform: translateY(-5px);
            color: var(--accent);
            box-shadow: 
                -35px -35px 55px var(--drop-light),
                35px 35px 55px var(--drop-dark);
        }

        .social-btn i {
            transition: transform 0.3s ease;
        }

        .social-btn:hover i {
            transform: scale(1.1);
        }

        /* ===========================
           CONTENT SECTIONS
        =========================== */
        .content-section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 30px;
            text-align: center;
        }

        .section-text {
            font-size: clamp(1rem, 2vw, 1.1rem);
            color: var(--text-medium);
            line-height: 1.8;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 40px;
        }

        .section-text a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 500;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .section-text a:hover {
            border-bottom-color: var(--accent);
        }

        /* ===========================
           INTEREST CARDS
        =========================== */
        .interests-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .interest-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 
                -8px -8px 16px rgba(255, 255, 255, 0.5),
                8px 8px 16px rgba(0, 0, 0, 0.1);
        }

        .interest-card:hover {
            transform: translateY(-10px);
            box-shadow: 
                -12px -12px 24px rgba(255, 255, 255, 0.6),
                12px 12px 24px rgba(0, 0, 0, 0.15);
        }

        .interest-icon {
            font-size: 3rem;
            color: var(--accent);
            margin-bottom: 20px;
        }

        .interest-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .interest-description {
            font-size: 0.95rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        .interest-description a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 500;
            border-bottom: 1px solid transparent;
            transition: all 0.3s ease;
        }

        .interest-description a:hover {
            border-bottom-color: var(--accent);
        }

        /* ===========================
           CTA BUTTON (DROP SHADOW)
        =========================== */
        .cta-button {
            display: inline-block;
            padding: 18px 45px;
            background: var(--base);
            color: var(--text-dark);
            text-decoration: none;
            border-radius: 16px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            margin-top: 30px;
            
            /* Drop Shadow from css.html */
            box-shadow: 
                -30px -30px 48px var(--drop-light),
                30px 30px 48px var(--drop-dark);
        }

        .cta-button:hover {
            transform: translateY(-5px);
            color: var(--accent);
            box-shadow: 
                -35px -35px 55px var(--drop-light),
                35px 35px 55px var(--drop-dark);
        }

        /* ===========================
           FOOTER
        =========================== */
        .footer {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 40px 20px;
            text-align: center;
            color: white;
        }

        .footer-text {
            font-size: 0.95rem;
            margin-bottom: 15px;
            opacity: 0.9;
        }

        .footer-links {
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .footer-link {
            color: white;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 400;
            opacity: 0.8;
            transition: all 0.3s ease;
            border-bottom: 1px solid transparent;
        }

        .footer-link:hover {
            opacity: 1;
            border-bottom-color: white;
        }

        /* ===========================
           RESPONSIVE ADJUSTMENTS
        =========================== */
        @media (max-width: 768px) {
            .hero h1 {
                letter-spacing: 1px;
            }

            .social-container {
                padding: 25px 30px;
            }

            .social-title {
                font-size: 1rem;
            }

            .content-section {
                padding: 60px 20px;
            }

            .social-btn {
                width: 55px;
                height: 55px;
                font-size: 1.3rem;
            }

            .interests-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .geometric-overlay {
                transform: rotate(-20deg);
            }
        }

        @media (max-width: 480px) {
            .hero-subtitle {
                font-size: 0.85rem;
            }

            .social-buttons {
                gap: 15px;
            }

            .footer-links {
                gap: 20px;
            }
        }