        * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Exo 2', sans-serif;
        }

        :root {
        --primary: #00f3ff;
        --secondary: #7b42f5;
        --accent: #ff2a6d;.nav-cta
        --dark: #0a0e17;
        --darker: #050811;
        --light: #d1f7ff;
        --card-bg: rgba(16, 23, 41, 0.8);
        }

        body {
        background-color: var(--darker);
        color: var(--light);
        overflow-x: hidden;
        min-height: 100vh;
        background-image:
        radial-gradient(circle at 10% 20%, rgba(28, 58, 112, 0.2) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(123, 66, 245, 0.15) 0%, transparent 20%);
        }

        /* Background Animation */
        #particles-js {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -1;
        }

        /* Navigation Styles */
        .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 5%;
        background: rgba(10, 14, 23, 0.9);
        backdrop-filter: blur(10px);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        border-bottom: 1px solid rgba(0, 243, 255, 0.2);
        }

        .logo {
        display: flex;
        align-items: center;
        font-family: 'Orbitron', sans-serif;
        font-weight: 900;
        font-size: 1.8rem;
        }

        .logo i {
        color: var(--primary);
        margin-right: 10px;
        font-size: 2rem;
        text-shadow: 0 0 10px var(--primary);
        animation: pulse 2s infinite;
        }

        .logo-text {
        background: linear-gradient(to right, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
        }

        .nav-links {
        display: flex;
        list-style: none;
        }

        .nav-links li {
        margin-left: 30px;
        }

        .nav-links a {
        color: var(--light);
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        position: relative;
        padding: 5px 0;
        transition: color 0.3s;
        }

        .nav-links a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(to right, var(--primary), var(--secondary));
        transition: width 0.3s;
        }

        .nav-links a:hover {
        color: var(--primary);
        }

        .nav-links a:hover::after {
        width: 100%;
        }

        .nav-cta {
        background: linear-gradient(45deg, var(--secondary), var(--primary));
        color: var(--dark);
        padding: 10px 20px;
        border-radius: 30px;
        font-weight: 700;
        text-decoration: none;
        transition: transform 0.3s, box-shadow 0.3s;
        box-shadow: 0 0 15px rgba(123, 66, 245, 0.5);
        }

        .nav-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 20px rgba(123, 66, 245, 0.7);
        }
        /* Hide nav-cta on small screens */
        @media (max-width: 768px) {
        .nav-cta {
        display: none;
        }
        }


        .mobile-menu {
        display: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--primary);
        }

        /* Page Container */
        .page-container {
        min-height: 100vh;
        padding-top: 100px;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.8s forwards;
        }

        /* Home Page Styles */
        .hero {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 100px 5% 80px;
        min-height: 80vh;
        margin-top: -200px !important;

        }

        .hero-content {
        flex: 1;
        max-width: 600px;
        }

        .hero h1 {
        font-family: 'Orbitron', sans-serif;
        font-size: 3.5rem;
        margin-bottom: 20px;
        background: linear-gradient(to right, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        line-height: 1.2;
        }

        .hero p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        line-height: 1.6;
        color: #a0b3c9;
        }

        .hero-btns {
        display: flex;
        gap: 20px;
        }

        .btn {
        padding: 12px 30px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s;
        display: inline-block;
        }

        .btn-primary {
        background: linear-gradient(45deg, var(--secondary), var(--primary));
        color: var(--dark);
        box-shadow: 0 5px 15px rgba(123, 66, 245, 0.4);
        }

        .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(123, 66, 245, 0.6);
        }

        .btn-secondary {
        border: 2px solid var(--primary);
        color: var(--primary);
        background: transparent;
        }

        .btn-secondary:hover {
        background: rgba(0, 243, 255, 0.1);
        box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
        }

        .hero-visual {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        }

        .floating-card {
        width: 300px;
        height: 400px;
        background: var(--card-bg);
        border-radius: 20px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(0, 243, 255, 0.2);
        backdrop-filter: blur(10px);
        position: relative;
        overflow: hidden;
        animation: float 6s ease-in-out infinite;
        }

        .floating-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(0, 243, 255, 0.1), transparent);
        transform: rotate(45deg);
        animation: shine 3s infinite;
        }

        .card-content {
        position: relative;
        z-index: 1;
        text-align: center;
        }

        .card-content i {
        font-size: 4rem;
        color: var(--primary);
        margin-bottom: 20px;
        text-shadow: 0 0 10px var(--primary);
        }

        .card-content h3 {
        font-family: 'Orbitron', sans-serif;
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: var(--light);
        }

        .card-content p {
        color: #a0b3c9;
        font-size: 0.9rem;
        }

        /* Features Section */
        .section-title {
        text-align: center;
        margin: 80px 0 50px;
        }

        .section-title h2 {
        font-family: 'Orbitron', sans-serif;
        font-size: 2.5rem;
        margin-bottom: 15px;
        background: linear-gradient(to right, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        }

        .section-title p {
        color: #a0b3c9;
        max-width: 600px;
        margin: 0 auto;
        font-size: 1.1rem;
        }

        .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        padding: 0 5% 80px;
        }

        .feature-card {
        background: var(--card-bg);
        border-radius: 15px;
        padding: 30px;
        text-align: center;
        border: 1px solid rgba(0, 243, 255, 0.1);
        transition: transform 0.3s, box-shadow 0.3s;
        position: relative;
        overflow: hidden;
        }

        .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(to right, var(--primary), var(--secondary));
        }

        .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }

        .feature-icon {
        width: 80px;
        height: 80px;
        background: rgba(0, 243, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 2rem;
        color: var(--primary);
        }

        .feature-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: var(--light);
        }

        .feature-card p {
        color: #a0b3c9;
        line-height: 1.6;
        }

        /* Footer */
        footer {
        background: rgba(5, 8, 17, 0.9);
        padding: 60px 5% 30px;
        border-top: 1px solid rgba(0, 243, 255, 0.2);
        }

        .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
        }

        .footer-column h3 {
        font-family: 'Orbitron', sans-serif;
        font-size: 1.5rem;
        margin-bottom: 20px;
        color: var(--primary);
        }

        .footer-links {
        list-style: none;
        }

        .footer-links li {
        margin-bottom: 10px;
        }

        .footer-links a {
        color: #a0b3c9;
        text-decoration: none;
        transition: color 0.3s;
        }

        .footer-links a:hover {
        color: var(--primary);
        }

        .social-links {
        display: flex;
        gap: 15px;
        margin-top: 20px;
        }

        .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(0, 243, 255, 0.1);
        border-radius: 50%;
        color: var(--primary);
        transition: all 0.3s;
        }

        .social-links a:hover {
        background: var(--primary);
        color: var(--dark);
        transform: translateY(-3px);
        }

        .copyright {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: #a0b3c9;
        font-size: 0.9rem;
        }

        /* Page-specific styles */
        .page {
        display: none;
        padding: 100px 5% 80px;
        min-height: 80vh;
        }

        .page.active {
        display: block;
        }

        /* Animations */
        @keyframes float {
        0% {
        transform: translateY(0px);
        }

        50% {
        transform: translateY(-20px);
        }

        100% {
        transform: translateY(0px);
        }
        }

        @keyframes pulse {
        0% {
        text-shadow: 0 0 5px var(--primary);
        }

        50% {
        text-shadow: 0 0 20px var(--primary), 0 0 30px var(--primary);
        }

        100% {
        text-shadow: 0 0 5px var(--primary);
        }
        }

        @keyframes fadeInUp {
        to {
        opacity: 1;
        transform: translateY(0);
        }
        }

        @keyframes shine {
        0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        }

        100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
        .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 5% 60px;
        }

        .hero-content {
        margin-bottom: 50px;
        }

        .hero h1 {
        font-size: 2.8rem;
        }
        }

        @media (max-width: 768px) {
        .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 14, 23, 0.95);
        flex-direction: column;
        padding: 20px;
        text-align: center;
        }

        .nav-links.active {
        display: flex;
        }

        .nav-links li {
        margin: 15px 0;
        }

        .mobile-menu {
        display: block;
        }

        .hero h1 {
        font-size: 2.2rem;
        }

        .hero-btns {
        flex-direction: column;
        align-items: center;
        }

        .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
        }
        }

        /* Contact Page Styles */
        .contact-hero {
        text-align: center;
        padding: 80px 5% 60px;
        background: linear-gradient(135deg, rgba(10, 14, 23, 0.9) 0%, rgba(16, 23, 41, 0.7) 100%);
        border-radius: 20px;
        margin: 0 5% 40px;
        border: 1px solid rgba(0, 243, 255, 0.2);
        position: relative;
        overflow: hidden;
        }

        .contact-hero::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(0, 243, 255, 0.05), transparent);
        transform: rotate(45deg);
        animation: shine 6s infinite;
        }

        .contact-hero h1 {
        font-family: 'Orbitron', sans-serif;
        font-size: 3.5rem;
        margin-bottom: 20px;
        background: linear-gradient(to right, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        position: relative;
        z-index: 2;
        }

        .contact-hero p {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto;
        color: #a0b3c9;
        position: relative;
        z-index: 2;
        }

        .contact-content {
        display: flex;
        gap: 40px;
        padding: 0 5% 80px;
        flex-wrap: wrap;
        }

        .contact-info {
        flex: 1;
        min-width: 300px;
        }

        .contact-form-container {
        flex: 2;
        min-width: 300px;
        }

        .info-card {
        background: var(--card-bg);
        border-radius: 15px;
        padding: 30px;
        margin-bottom: 30px;
        border: 1px solid rgba(0, 243, 255, 0.1);
        transition: transform 0.3s, box-shadow 0.3s;
        position: relative;
        overflow: hidden;
        }

        .info-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(to right, var(--primary), var(--secondary));
        }

        .info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .info-header {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        }

        .info-icon {
        width: 60px;
        height: 60px;
        background: rgba(0, 243, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        font-size: 1.5rem;
        color: var(--primary);
        }

        .info-header h3 {
        font-size: 1.5rem;
        color: var(--light);
        }

        .info-content p {
        color: #a0b3c9;
        margin-bottom: 10px;
        line-height: 1.6;
        }

        .social-links-contact {
        display: flex;
        gap: 15px;
        margin-top: 20px;
        }

        .social-links-contact a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: rgba(0, 243, 255, 0.1);
        border-radius: 50%;
        color: var(--primary);
        transition: all 0.3s;
        font-size: 1.2rem;
        }

        .social-links-contact a:hover {
        background: var(--primary);
        color: var(--dark);
        transform: translateY(-3px);
        }

        .form-title {
        font-family: 'Orbitron', sans-serif;
        font-size: 2rem;
        margin-bottom: 30px;
        color: var(--primary);
        text-align: center;
        }

        .contact-form {
        background: var(--card-bg);
        border-radius: 15px;
        padding: 40px;
        border: 1px solid rgba(0, 243, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .form-group {
        margin-bottom: 25px;
        position: relative;
        }

        .form-group label {
        display: block;
        margin-bottom: 8px;
        color: var(--light);
        font-weight: 600;
        }

        .form-control {
        width: 100%;
        padding: 15px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(0, 243, 255, 0.3);
        border-radius: 8px;
        color: var(--light);
        font-size: 1rem;
        transition: all 0.3s;
        }

        .form-control:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
        }

        textarea.form-control {
        min-height: 150px;
        resize: vertical;
        }

        .submit-btn {
        background: linear-gradient(45deg, var(--secondary), var(--primary));
        color: var(--dark);
        border: none;
        padding: 15px 40px;
        border-radius: 30px;
        font-weight: 700;
        font-size: 1.1rem;
        cursor: pointer;
        transition: transform 0.3s, box-shadow 0.3s;
        display: block;
        margin: 0 auto;
        width: 100%;
        max-width: 250px;
        }

        .submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(123, 66, 245, 0.5);
        }

        .map-container {
        margin-top: 40px;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(0, 243, 255, 0.2);
        }

        .map-placeholder {
        height: 300px;
        background: linear-gradient(45deg, var(--card-bg), rgba(16, 23, 41, 0.9));
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-family: 'Orbitron', sans-serif;
        text-align: center;
        padding: 20px;
        }

        .map-placeholder i {
        font-size: 4rem;
        margin-bottom: 20px;
        text-shadow: 0 0 10px var(--primary);
        }

        .map-placeholder h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
        }

        /* FAQ Section */
        .faq-section {
        padding: 0 5% 80px;
        }

        .section-title {
        text-align: center;
        margin-bottom: 50px;
        }

        .section-title h2 {
        font-family: 'Orbitron', sans-serif;
        font-size: 2.5rem;
        margin-bottom: 15px;
        background: linear-gradient(to right, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        }

        .section-title p {
        color: #a0b3c9;
        max-width: 600px;
        margin: 0 auto;
        font-size: 1.1rem;
        }

        .faq-container {
        max-width: 800px;
        margin: 0 auto;
        }

        .faq-item {
        background: var(--card-bg);
        border-radius: 10px;
        margin-bottom: 15px;
        border: 1px solid rgba(0, 243, 255, 0.1);
        overflow: hidden;
        }

        .faq-question {
        padding: 20px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
        color: var(--light);
        transition: background 0.3s;
        }

        .faq-question:hover {
        background: rgba(0, 243, 255, 0.05);
        }

        .faq-question i {
        color: var(--primary);
        transition: transform 0.3s;
        }

        .faq-answer {
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s, padding 0.3s;
        color: #a0b3c9;
        }

        .faq-item.active .faq-answer {
        padding: 0 20px 20px;
        max-height: 200px;
        }

        .faq-item.active .faq-question i {
        transform: rotate(180deg);
        }
