
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: #000;
            color: #fff;
            overflow-x: hidden;
            line-height: 1.6;
        }

        .bg-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background: radial-gradient(circle at 20% 80%, #680034 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, #47018d 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, #005c2e 0%, transparent 50%),
                linear-gradient(135deg, #000428 0%, #00203b 100%);
            animation: backgroundPulse 20s ease-in-out infinite;
        }

        @keyframes backgroundPulse {

            0%,
            100% {
                filter: hue-rotate(0deg) brightness(1);
            }

            25% {
                filter: hue-rotate(90deg) brightness(1.2);
            }

            50% {
                filter: hue-rotate(180deg) brightness(0.9);
            }

            75% {
                filter: hue-rotate(270deg) brightness(1.1);
            }
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 5%;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(30px) saturate(180%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(50px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(45deg, #ff0080, #8000ff, #00ff80, #ff0080);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: logoGradient 4s ease-in-out infinite;
            text-shadow: 0 0 30px rgba(255, 0, 128, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.1) rotate(5deg);
            filter: drop-shadow(0 0 20px rgba(255, 0, 128, 0.8));
        }

        @keyframes logoGradient {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        .nav-menu {
            display: flex;
            align-items: center;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            position: relative;
            transition: all 0.3s ease;
            padding: 10px 0;
            display: block;
        }

        /* .nav-links a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: linear-gradient(45deg, #ff0080, #00ff80);
            transform: translateX(-50%);
            transition: width 0.3s ease;
            border-radius: 2px;
        } */

        .nav-links a:hover::before {
            width: 100%;
        }

        .nav-links a:hover {
            color: #ff0080;
            transform: translateY(-3px);
        }

        /* Dropdown Menus */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 15px 0;
            min-width: 220px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            opacity: 0;
            visibility: hidden;
            transform-origin: top center;
            transform: translateY(10px) translateX(-50%) scale(0.95);
            transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
            z-index: 1001;
        }

        .nav-links li:hover>.dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) translateX(-50%) scale(1);
        }

        .dropdown-menu li {
            padding: 0;
            margin: 0;
            list-style: none;
        }

        .dropdown-menu a {
            color: rgba(255, 255, 255, 0.8);
            padding: 12px 25px;
            font-size: 0.95rem;
            text-align: left;
            white-space: nowrap;
            transition: all 0.2s ease;
        }

        .dropdown-menu a:hover {
            background: linear-gradient(90deg, rgba(255, 0, 128, 0.2), transparent);
            color: #ff0080;
            transform: translateX(5px);
        }

        .dropdown-menu a::before {
            display: none;
        }

        /* Hamburger Menu Toggle */
        .menu-toggle {
            display: none;
            font-size: 2rem;
            color: #fff;
            cursor: pointer;
            z-index: 1001;
        }

        .hero {
            /* height: 60vh; */
            height:55vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            padding: 0 20px;
        }

        .hero-bg-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
            filter: brightness(0.3) contrast(1.2);
            animation: kenBurns 20s ease-in-out infinite;
        }

        @keyframes kenBurns {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255, 0, 128, 0.3), rgba(128, 0, 255, 0.2), rgba(0, 255, 128, 0.1));
            backdrop-filter: blur(2px);
        }

        .hero-content {
            z-index: 10;
            max-width: 1000px;
            animation: heroEntrance 2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @keyframes heroEntrance {
            0% {
                opacity: 0;
                transform: translateY(100px) scale(0.8);
            }

            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .hero-subtitle {
            font-family: 'Dancing Script', cursive;
            font-size: 2rem;
            color: #00ff80;
            margin-bottom: 20px;
            animation: subtitleFloat 3s ease-in-out infinite;
        }

        @keyframes subtitleFloat {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 5rem;
            font-weight: 700;
            margin-bottom: 30px;
            background: linear-gradient(45deg, #fff, #ff0080, #8000ff, #00ff80);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: textGradient 6s ease-in-out infinite, textFloat 4s ease-in-out infinite;
            text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
            line-height: 1.2;
        }

        @keyframes textGradient {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        @keyframes textFloat {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        /* Contact Section Styles */
        .contact-section {
            padding: 100px 5%;
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #ff0080, #8000ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #ff0080, #00ff80);
            border-radius: 2px;
        }

        .section-header p {
            color: rgba(255, 255, 255, 0.8);
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .contact-info {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .contact-info:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .contact-info h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            margin-bottom: 30px;
            color: #fff;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .info-icon {
            font-size: 1.5rem;
            margin-right: 20px;
            color: #ff0080;
            min-width: 30px;
        }

        .info-content h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: #fff;
        }

        .info-content p,
        .info-content a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .info-content a:hover {
            color: #00ff80;
        }

        /* Contact Form */
        .contact-form {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .contact-form:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: #fff;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            color: #fff;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: #ff0080;
            background: rgba(255, 255, 255, 0.15);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(45deg, #ff0080, #8000ff);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 0, 128, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 0, 128, 0.4);
            background: linear-gradient(45deg, #8000ff, #ff0080);
        }

        /* Map Section */
        .map-section {
            margin: 40px 0;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            height: 500px;
        }

        .map-section iframe {
            width: 100%;
            height: 100%;
            border: none;
            filter: grayscale(50%) contrast(1.2) brightness(0.8);
            transition: filter 0.5s ease;
        }

        .map-section iframe:hover {
            filter: grayscale(0%) contrast(1) brightness(0.9);
        }

        /* Support Section */
        .support-section {
            padding: 80px 5%;
            text-align: center;
            background: linear-gradient(135deg, rgba(255, 0, 128, 0.1), rgba(128, 0, 255, 0.1));
            border-radius: 20px;
            margin: 80px auto;
            max-width: 1200px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .support-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #fff;
        }

        .support-section p {
            color: rgba(255, 255, 255, 0.8);
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
        }

        .support-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .support-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 40px 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
        }

        .support-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .support-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #ff0080, #8000ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .support-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #fff;
        }

        .support-card p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
            font-size: 1rem;
        }

        .support-card a {
            display: inline-block;
            padding: 10px 25px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .support-card a:hover {
            background: linear-gradient(45deg, #ff0080, #8000ff);
            transform: translateY(-3px);
        }

        footer {
            padding: 80px 5% 40px;
            background: linear-gradient(135deg, #000, #1a1a2e);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-section h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: #ff0080;
        }

        .footer-section p,
        .footer-section li {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            margin-bottom: 10px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #00ff80;
        }

        .social-links {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #ff0080, #8000ff);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.4s ease;
        }

        .social-links a:hover {
            transform: translateY(-5px) rotate(360deg);
            box-shadow: 0 15px 30px rgba(255, 0, 128, 0.4);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 4rem;
            }

            .section-header h2 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 992px) {
            .nav-menu {
                display: block;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background: rgba(0, 0, 0, 0.95);
                backdrop-filter: blur(30px);
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                overflow: hidden;
                max-height: 0;
                transition: max-height 0.5s ease-in-out;
            }

            .nav-menu.active {
                max-height: 600px;
            }

            .nav-links {
                flex-direction: column;
                gap: 0;
                padding: 20px 0;
                text-align: center;
            }

            .nav-links li {
                padding: 10px 0;
            }

            .nav-links a {
                padding: 10px 20px;
                display: block;
                font-size: 1.2rem;
            }

            .nav-links a::before {
                display: none;
            }

            .dropdown-menu {
                position: static;
                transform: none;
                box-shadow: none;
                background: rgba(255, 255, 255, 0.05);
                border: none;
                border-radius: 0;
                min-width: unset;
                padding: 0;
                max-height: 0;
                transition: max-height 0.3s ease-in-out;
            }

            .nav-links li.has-dropdown.active>.dropdown-menu {
                max-height: 400px;
            }

            .dropdown-menu a {
                padding: 8px 35px;
                font-size: 1rem;
            }

            .menu-toggle {
                display: block;
            }

            .has-dropdown.active>.dropdown-menu {
                max-height: 500px;
                overflow: visible;
                opacity: 1;
                transform: translateY(0);
                visibility: visible;
                position: relative;
                box-shadow: none;
                background: rgba(255, 255, 255, 0.05);
                border: none;
            }

            .dropdown-menu {
                max-height: 0;
                overflow: hidden;
                opacity: 0;
                transform: translateY(-10px);
                visibility: hidden;
                transition: all 0.3s ease;
                position: relative;
                width: 100%;
                box-shadow: none;
                background: transparent;
                padding: 0;
            }

            .dropdown-menu li {
                padding: 0;
            }

            .dropdown-menu a {
                padding: 10px 20px 10px 40px !important;
                font-size: 0.9rem;
                color: rgba(255, 255, 255, 0.8);
            }

            .hero {
                height: 50vh;
            }

            .map-section {
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 15px 5%;
            }

            .hero h1 {
                font-size: 3rem;
                margin-bottom: 20px;
            }

            .hero-subtitle {
                font-size: 1.5rem;
            }

            .contact-info,
            .contact-form {
                padding: 30px;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }

            .support-cards {
                grid-template-columns: 1fr;
            }

            .map-section {
                height: 350px;
            }

            .hero-content {
                margin-top: 50px;
            }
        }

        @media (max-width: 480px) {
            .logo {
                font-size: 2rem;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero {
                height: 40vh;
            }

            .contact-info,
            .contact-form {
                padding: 20px;
            }

            .section-header h2 {
                font-size: 1.8rem;
            }

            .support-section h2 {
                font-size: 2rem;
            }

            .map-section {
                height: 300px;
            }
        }
