:root {
    --deep-navy: #072C50;
    --electric-blue: #0057FF;
    --teal-blue: #358597;
    --vivid-orange: #FF9500;
    --coral-red: #EE4E34;
    --light-gray: #F5F6F5;
    --glow-blue: rgba(0, 87, 255, 0.5);
    --glow-orange: rgba(255, 149, 0, 0.5);
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--deep-navy) 0%, #0A3A66 100%);
    color: var(--light-gray);
    overflow-x: hidden;
    padding-top: 80px;
}

/* Navbar Styles */
#eotpNavbar {
    background: linear-gradient(90deg, var(--deep-navy) 0%, #0A3A66 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    padding: 15px 0;
    transition: background 0.5s ease;
}

    #eotpNavbar.scrolled {
        background: rgba(7, 44, 80, 0.9);
        backdrop-filter: blur(10px);
    }

.navbar-brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--electric-blue);
    text-shadow: 0 0 10px var(--glow-blue);
    position: relative;
    transition: transform 0.3s ease;
}

    .navbar-brand:hover {
        transform: scale(1.05);
        text-shadow: 0 0 20px var(--glow-blue);
    }

    .navbar-brand .e-orange {
        color: var(--vivid-orange);
        text-shadow: 0 0 10px var(--glow-orange);
    }

.nav-link {
    color: var(--light-gray);
    font-weight: 600;
    padding: 10px 20px;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--vivid-orange);
        transition: width 0.3s ease;
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .nav-link:hover {
        color: var(--vivid-orange);
    }

.btn-login {
    background: var(--vivid-orange);
    border-radius: 25px;
    padding: 8px 25px;
    color: white;
    box-shadow: 0 0 10px var(--glow-orange);
    transition: all 0.3s ease;
}

    .btn-login:hover {
        background: var(--coral-red);
        color: white;
        box-shadow: 0 0 20px var(--glow-orange);
    }

.navbar-toggler {
    border-color: var(--teal-blue);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23358597' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Hero Styles */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 20px; /* Add padding for mobile */
    background: linear-gradient(135deg, var(--deep-navy) 0%, #0A3A66 100%);
}
.hero-content {
    display: flex;
    flex-direction: row; /* Default: text left, image right */
    align-items: center;
    justify-content: space-between; /* Spread text and image apart */
    max-width: 1200px;
    width: 100%;
    padding: 0 15px;
    gap: 40px; /* Space between text and image */
}

.hero-text {
    flex: 1;
    text-align: left; /* Align text left when beside image */
}

.hero-text {
    flex: 1; /* Takes up available space */
    text-align: left; /* Text aligned left */
    color: var(--light-gray);
}

.hero-image {
    flex: 1; /* Takes up available space */
    max-width: 500px; /* Limits image width */
    display: flex;
    justify-content: flex-end; /* Pushes image to the right */
}

    .hero-image img {
        width: 100%;
        max-width: 100%; /* Ensures image doesn’t overflow */
        height: auto;
       /* border-radius: 12px;
        box-shadow: 0 0 20px var(--glow-blue);*/
    }
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, var(--glow-blue) 10%, transparent 70%);
        opacity: 0.3;
        animation: pulse 4s infinite;
    }

    .hero h1 {
        font-family: 'Orbitron', sans-serif;
        font-size: 5rem;
        color: var(--electric-blue);
        text-shadow: 0 0 20px var(--glow-blue);
        animation: neon 2s infinite alternate;
    }

        .hero h1 .e-orange {
            color: var(--vivid-orange);
            text-shadow: 0 0 20px var(--glow-orange);
        }

    .hero p {
        font-size: 1.5rem;
        max-width: 700px;
        margin: 20px auto;
        color: var(--teal-blue);
    }

.tooltip-inner {
    background: var(--deep-navy);
    color: var(--light-gray);
    font-family: 'Inter', sans-serif;
    padding: 8px 12px;
    border-radius: 6px;
    box-shadow: 0 0 10px var(--glow-orange);
}

.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: var(--deep-navy);
}

/* Ensure tooltip complements btn-ignite */
.btn-ignite {
    background: var(--vivid-orange);
    border: 2px solid var(--coral-red);
    padding: 15px 40px;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    box-shadow: 0 0 15px var(--glow-orange);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative; /* Helps with tooltip positioning */
}

    .btn-ignite:hover {
        transform: scale(1.1);
        box-shadow: 0 0 25px var(--glow-orange);
        background: var(--coral-red);
    }

/* Features Styles */
.features {
    padding: 100px 0;
    position: relative;
}
.feature-orbit {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--teal-blue);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
}

    .feature-orbit i {
        text-shadow: 0 0 10px var(--glow-blue); /* Adds a subtle glow to icons */
        transition: transform 0.3s ease;
    }

    .feature-orbit:hover i {
        transform: scale(1.1); /* Slight scale-up on hover for interactivity */
    }

    .feature-orbit h3 {
        color: var(--vivid-orange);
        font-size: 2rem;
        font-family: 'Orbitron', sans-serif;
        margin-bottom: 15px;
    }

    .feature-orbit p {
        color: var(--light-gray);
        font-size: 1.1rem;
    }

/* Code Galaxy Styles */
.code-galaxy {
    background: var(--deep-navy);
    padding: 60px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

    .code-galaxy::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, var(--glow-orange) 10%, transparent 50%);
        animation: spin 10s linear infinite;
    }

.code-snippet {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.8);
    color: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
}

/* Footer Styles */
footer {
    background: var(--deep-navy);
    padding: 50px 0;
    text-align: center;
    position: relative;
}

    footer a {
        color: var(--coral-red);
        font-weight: 600;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        footer a:hover {
            color: var(--vivid-orange);
        }
/*modal
*/
/*.modal-content {*/
  /*  background: var(--teal-blue);*/
  /*  border: 1px solid var(--teal-blue);
    border-radius: 12px;*/
    /*color: var(--light-gray);*/
    /* box-shadow: 0 0 20px var(--glow-blue);*/
/*}*/

.modal-header {
    /*border-bottom: 1px solid var(--teal-blue);*/
    background: var(--deep-navy); /* Slightly lighter navy */
    padding: 15px 20px;
}

.modal-title {
    /*color: var(--electric-blue);*/
   
    font-size: 1.5rem;
}

.modal-body {
    padding: 20px 30px;
    /*background: var(--teal-blue);*/
}

.form-floating .form-control {
    background: var(--light-gray);
    border: 2px solid var(--deep-nav);
    color: var(--deep-navy);
    border-radius: 6px;
    height: calc(3.5rem + 2px); /* Matches Bootstrap default */
}

    .form-floating .form-control:focus {
        border-color: var(--vivid-orange);
        box-shadow: 0 0 10px var(--glow-orange);
        background: var(--light-gray);
        color: var(--deep-navy);
    }

.form-floating label {
  /*  color: var(--deep-nav);*/
    padding-left: 2.5rem; /* Space for icons */
    opacity: 0.8;
}

.form-floating .form-control:placeholder-shown + label {
    opacity: 0.6;
}

.form-floating .form-control:focus + label,
.form-floating .form-control:not(:placeholder-shown) + label {
    color: var(--vivid-orange);
    opacity: 1;
}

.btn-submit {
    background: var(--vivid-orange);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-submit:hover {
        background: var(--coral-red);
        box-shadow: 0 0 15px var(--glow-orange);
    }

.error-text {
    color: var(--coral-red);
    font-size: 0.9rem;
    margin-top: 5px;
    display: none;
}

/* Bootstrap Icons */
.bi {
    vertical-align: middle;
}
/* Animations */
@keyframes flicker {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

@keyframes neon {
    0% {
        text-shadow: 0 0 10px var(--glow-blue);
    }

    100% {
        text-shadow: 0 0 30px var(--glow-blue);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column; /* Stack vertically on mobile */
        gap: 20px;
    }

    .hero-text {
        text-align: center; /* Center text on mobile */
    }

    .hero-image {
        max-width: 300px; /* Smaller image on mobile */
        justify-content: center; /* Center image on mobile */
    }

    .hero h1 {
        font-size: 3rem; /* Smaller heading on mobile */
    }

    .hero p {
        font-size: 1.2rem; /* Smaller paragraph on mobile */
    }

    .btn-ignite {
        padding: 10px 30px;
        font-size: 1.1rem;
    }
}

/* Ensure navbar remains mobile-friendly */
@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.5rem;
    }

    .nav-link {
        padding: 8px 15px;
    }

    .btn-login {
        padding: 6px 20px;
    }
}

.login-galaxy {
    min-height: 100vh;
  
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
}



.login-container {
    position: relative;
    z-index: 1;
    max-width: 450px;
    width: 100%;
    padding: 0 15px;
}

.login-form {
    background: rgba(7, 44, 80, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--teal-blue);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 0 30px rgba(0, 87, 255, 0.3);
    transition: transform 0.3s ease;
}

    .login-form:hover {
        transform: scale(1.02);
    }

.login-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: var(--electric-blue);
    text-shadow: 0 0 15px var(--glow-blue);
    text-align: center;
    margin-bottom: 10px;
}
.e-orange {
    color: var(--vivid-orange);
    text-shadow: 0 0 20px var(--glow-orange);
}
.login-subtitle {
    font-size: 1.5rem;
    color: var(--teal-blue);
    text-shadow: none;
}

.login-tagline {
    font-size: 1.2rem;
    color: var(--light-gray);
    text-align: center;
    margin-bottom: 30px;
}

/* Cosmic Form Styles */
.cosmic-form {
    position: relative;
}

.cosmic-input {
    background: rgba(245, 246, 245, 0.1);
    border: 1px solid var(--teal-blue);
    color: var(--light-gray);
    border-radius: 8px;
    padding-left: 3rem; /* Space for icons */
    transition: all 0.3s ease;
}

    .cosmic-input:focus {
        border-color: var(--vivid-orange);
        box-shadow: 0 0 15px var(--glow-orange);
        background: rgba(245, 246, 245, 0.2);
        color: var(--light-gray);
    }

.form-floating label {
    color: var(--teal-blue);
    padding-left: 2.5rem;
    opacity: 0.8;
}

.form-floating .cosmic-input:focus + label,
.form-floating .cosmic-input:not(:placeholder-shown) + label {
    color: var(--vivid-orange);
    opacity: 1;
}

.input-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--glow-orange);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: -1;
}

    .input-glow.active {
        width: 200%;
        height: 200%;
        opacity: 0.3;
    }

.cosmic-check {
    border-color: var(--teal-blue);
    background: transparent;
}

    .cosmic-check:checked {
        background-color: var(--vivid-orange);
        border-color: var(--vivid-orange);
    }

.btn-cosmic {
    background: var(--vivid-orange);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 0 20px var(--glow-orange);
    transition: all 0.3s ease;
}

    .btn-cosmic:hover {
        background: var(--coral-red);
        box-shadow: 0 0 40px var(--glow-orange);
        transform: scale(1.05);
    }

.cosmic-error {
    background: rgba(238, 78, 52, 0.2);
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: center;
}

.login-links {
    text-align: center;
}

.cosmic-link {
    color: var(--electric-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .cosmic-link:hover {
        color: var(--vivid-orange);
        text-shadow: 0 0 10px var(--glow-orange);
    }

/* Animations */
@keyframes cosmic-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes cosmic-pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}
/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--deep-navy) 0%, #0A3A66 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
  
}

.about-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4.5rem;
    color: var(--electric-blue);
    text-shadow: 0 0 20px var(--glow-blue);
}

.about-subtitle {
    font-size: 1.5rem;
    color: var(--teal-blue);
    max-width: 800px;
    margin: 20px auto;
}

/* Use Cases Section */
.use-cases {
    background: rgba(7, 44, 80, 0.2);
    padding: 80px 0;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--light-gray);
    text-shadow: 0 0 10px var(--glow-orange);
    
}

.use-case-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--teal-blue);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

    .use-case-card.visible {
        opacity: 1;
    }

    .use-case-card:hover {
        transform: rotate(3deg) scale(1.05);
        box-shadow: 0 0 25px var(--glow-blue);
    }

    .use-case-card h3 {
        font-family: 'Orbitron', sans-serif;
        font-size: 1.8rem;
        color: var(--vivid-orange);
    }

    .use-case-card p {
        color: var(--light-gray);
    }

/* Delivery Methods Section */
.delivery-methods {
    background: var(--deep-navy);
    padding: 80px 0;
}

.delivery-orbit {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--teal-blue);
    border-radius: 12px;
    padding: 30px;
   
}

    .delivery-orbit.visible {
        opacity: 1;
    }

    .delivery-orbit:hover {
        box-shadow: 0 0 20px var(--glow-orange);
        transform: scale(1.02);
    }

.delivery-list {
    list-style: none;
    padding: 0;
    color: var(--light-gray);
}

    .delivery-list li {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

/* Simplicity of Setup Section */
.setup-simplicity {
    background: linear-gradient(135deg, #0A3A66 0%, var(--deep-navy) 100%);
    padding: 80px 0;
}

.setup-tagline {
    font-size: 1.4rem;
    color: var(--teal-blue);
    max-width: 600px;
    margin: 0 auto 30px;
}

.code-galaxy {
    max-width: 600px;
   
}

    .code-galaxy.visible {
        opacity: 1;
    }

/* Image Placeholders */
.image-placeholder {
   
    height: 180px;
    width: 100%;
    margin-top: 20px;
    display: flex;
    align-items: normal;
    justify-content: center;
    color: var(--light-gray);
    font-size: 0.9rem;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

    .image-placeholder:hover {
        outline: 2px solid var(--vivid-orange);
    }

    /* Image inside placeholder */
    .image-placeholder img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
        z-index: 0;
    }
.large-placeholder {
    height: 300px;
    max-width: 500px;
    margin: 0 auto;
}



/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .use-case-card h3 {
        font-size: 1.5rem;
    }

    .delivery-list li {
        font-size: 1rem;
    }

    .setup-tagline {
        font-size: 1.2rem;
    }
}
/* Pricing Hero Section */
.pricing-hero {
    background: var(--deep-navy);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}


.pricing-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    color: var(--electric-blue);
    text-shadow: 0 0 20px var(--glow-blue);
}

.pricing-subtitle {
    font-size: 1.5rem;
    color: var(--teal-blue);
    max-width: 700px;
    margin: 20px auto;
}

/* Pricing Tiers Section */
.pricing-tiers {
    background: rgba(7, 44, 80, 0.2);
    padding: 80px 0;
}

.tier-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--teal-blue);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
 ;
}

    .tier-card.visible {
        opacity: 1;
    }

    .tier-card:hover {
        transform: scale(1.05);
        box-shadow: 0 0 25px var(--glow-blue);
    }

.tier-featured {
    background: rgba(255, 149, 0, 0.1);
    border: 2px solid var(--vivid-orange);
    box-shadow: 0 0 30px var(--glow-orange);
}

.tier-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--vivid-orange);
}

.tier-desc {
    color: var(--light-gray);
    margin-bottom: 20px;
}

.tier-price {
    font-size: 2.5rem;
    color: var(--electric-blue);
    font-weight: 600;
    margin-bottom: 20px;
}

/* Features Table Section */
.features-table {
    background: var(--deep-navy);
    padding: 80px 0;
}

.cosmic-table {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--teal-blue);
    color: var(--light-gray);
   
    transition: opacity 0.5s ease;
}

    .cosmic-table.visible {
        opacity: 1;
    }

    .cosmic-table th {
        background: rgba(7, 44, 80, 0.8);
        color: var(--electric-blue);
        font-family: 'Orbitron', sans-serif;
        padding: 15px;
    }

        .cosmic-table th.featured {
            background: rgba(255, 149, 0, 0.3);
            color: var(--vivid-orange);
        }

    .cosmic-table td {
        padding: 15px;
        vertical-align: middle;
    }

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, #0A3A66 0%, var(--deep-navy) 100%);
    padding: 80px 0;
}

.cosmic-accordion {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--teal-blue);
    border-radius: 8px;
    margin-bottom: 15px;
   
    transition: opacity 0.5s ease;
}

    .cosmic-accordion.visible {
        opacity: 1;
    }

    .cosmic-accordion .accordion-button {
        background: rgba(7, 44, 80, 0.8);
        color: var(--light-gray);
        font-family: 'Inter', sans-serif;
        box-shadow: none;
    }

        .cosmic-accordion .accordion-button:not(.collapsed) {
            background: rgba(255, 149, 0, 0.2);
            color: var(--vivid-orange);
        }

    .cosmic-accordion .accordion-body {
        background: rgba(255, 255, 255, 0.05);
        color: var(--light-gray);
    }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .pricing-title {
        font-size: 3rem;
    }

    .tier-title {
        font-size: 1.8rem;
    }

    .tier-price {
        font-size: 2rem;
    }

    .cosmic-table th, .cosmic-table td {
        font-size: 0.9rem;
    }
}
/* Docs Header */
.docs-header {
    background: var(--deep-navy);
    padding: 60px 0;
    border-bottom: 1px solid var(--teal-blue);
    position: relative;
 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
 
}

.docs-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: var(--electric-blue);
    margin-bottom: 10px;
}

.docs-subtitle {
    font-size: 1.2rem;
    color: var(--light-gray);
}

/* Docs Content */
.docs-content {
    background: #0A3A66;
    color: var(--light-gray);
}

.docs-section {
    margin-bottom: 40px;
}

.docs-section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--vivid-orange);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--teal-blue);
    padding-bottom: 10px;
}

.docs-subsection {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: var(--electric-blue);
    margin-top: 30px;
    margin-bottom: 15px;
}

.docs-list {
    padding-left: 20px;
    margin-bottom: 20px;
}

    .docs-list li {
        margin-bottom: 10px;
        font-size: 1.1rem;
    }

.docs-link {
    color: var(--electric-blue);
    text-decoration: none;
}

    .docs-link:hover {
        color: var(--vivid-orange);
        text-decoration: underline;
    }

.docs-note {
    background: rgba(255, 149, 0, 0.1);
    border-left: 4px solid var(--vivid-orange);
    padding: 15px;
    font-size: 0.95rem;
    color: var(--light-gray);
    margin-top: 20px;
}

/* Code Blocks */
.docs-code {
    background: var(--deep-navy);
    border: 1px solid var(--teal-blue);
    border-radius: 6px;
    padding: 15px;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    color: var(--light-gray);
    white-space: pre-wrap;
    overflow-x: auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .docs-title {
        font-size: 2.5rem;
    }

    .docs-section-title {
        font-size: 1.8rem;
    }

    .docs-subsection {
        font-size: 1.3rem;
    }

    .docs-code {
        font-size: 0.85rem;
    }
}
/* Forgot Password Section */
.forgot-password {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--deep-navy) 0%, #0A3A66 80%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.forgot-password-container {
    max-width: 450px;
    width: 100%;
    background: rgba(7, 44, 80, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--teal-blue);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 0 30px rgba(0, 87, 255, 0.3);
}

.forgot-password-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--electric-blue);
    text-shadow: 0 0 15px var(--glow-blue);
    text-align: center;
    margin-bottom: 10px;
}

.forgot-password-subtitle {
    font-size: 1.2rem;
    color: var(--light-gray);
    text-align: center;
    margin-bottom: 30px;
}

/* Reusing Existing Form Styles */
.cosmic-form .cosmic-input {
    background: rgba(245, 246, 245, 0.1);
    border: 1px solid var(--teal-blue);
    color: var(--light-gray);
    border-radius: 8px;
    padding-left: 3rem;
    transition: all 0.3s ease;
}

    .cosmic-form .cosmic-input:focus {
        border-color: var(--vivid-orange);
        box-shadow: 0 0 15px var(--glow-orange);
        background: rgba(245, 246, 245, 0.2);
    }

.cosmic-form .form-floating label {
    color: var(--teal-blue);
    padding-left: 2.5rem;
    opacity: 0.8;
}

.cosmic-form .form-floating .cosmic-input:focus + label,
.cosmic-form .form-floating .cosmic-input:not(:placeholder-shown) + label {
    color: var(--vivid-orange);
    opacity: 1;
}

.cosmic-form .input-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--glow-orange);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: -1;
}

.cosmic-form .cosmic-input:focus + .input-glow {
    width: 200%;
    height: 200%;
    opacity: 0.3;
}

.cosmic-form .cosmic-error {
    background: rgba(238, 78, 52, 0.2);
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: center;
}

.forgot-password-links .cosmic-link {
    color: var(--electric-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .forgot-password-links .cosmic-link:hover {
        color: var(--vivid-orange);
        text-shadow: 0 0 10px var(--glow-orange);
    }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .forgot-password-title {
        font-size: 2rem;
    }

    .forgot-password-subtitle {
        font-size: 1rem;
    }
}
/* Contact Us Section */
.contact-us {
    background: linear-gradient(135deg, var(--deep-navy) 0%, #0A3A66 100%);
    padding: 80px 0;
}

.contact-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: var(--electric-blue);
    text-shadow: 0 0 15px var(--glow-blue);
    text-align: center;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--light-gray);
    text-align: center;
    margin-bottom: 40px;
}

/* Contact Form Container */
.contact-form-container {
    background: rgba(7, 44, 80, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--teal-blue);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 0 30px rgba(0, 87, 255, 0.3);
}

/* Reusing Form Styles */
.cosmic-form .cosmic-input {
    background: rgba(245, 246, 245, 0.1);
    border: 1px solid var(--teal-blue);
    color: var(--light-gray);
    border-radius: 8px;
    padding-left: 3rem;
    transition: all 0.3s ease;
}

    .cosmic-form .cosmic-input:focus {
        border-color: var(--vivid-orange);
        box-shadow: 0 0 15px var(--glow-orange);
        background: rgba(245, 246, 245, 0.2);
    }

.cosmic-form textarea.cosmic-input {
    height: auto;
    resize: vertical;
}

.cosmic-form .form-floating label {
    color: var(--teal-blue);
    padding-left: 2.5rem;
    opacity: 0.8;
}

.cosmic-form .form-floating .cosmic-input:focus + label,
.cosmic-form .form-floating .cosmic-input:not(:placeholder-shown) + label {
    color: var(--vivid-orange);
    opacity: 1;
}

.cosmic-form .input-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--glow-orange);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: -1;
}

.cosmic-form .cosmic-input:focus + .input-glow {
    width: 200%;
    height: 200%;
    opacity: 0.3;
}

.cosmic-form .cosmic-error {
    background: rgba(238, 78, 52, 0.2);
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 20px;
}

/* Contact Info Container */
.contact-info-container {
    background: rgba(255, 149, 0, 0.1);
    border: 1px solid var(--vivid-orange);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 0 20px var(--glow-orange);
}

.contact-info-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--vivid-orange);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--teal-blue);
    padding-bottom: 10px;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    color: var(--light-gray);
}

    .contact-info-list li {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        font-size: 1.1rem;
    }

    .contact-info-list i {
        font-size: 1.5rem;
    }

    .contact-info-list span {
        margin-left: 10px;
    }

    .contact-info-list a.cosmic-link {
        color: var(--electric-blue);
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .contact-info-list a.cosmic-link:hover {
            color: var(--vivid-orange);
            text-shadow: 0 0 10px var(--glow-orange);
        }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-title {
        font-size: 2.5rem;
    }

    .contact-subtitle {
        font-size: 1rem;
    }

    .contact-info-title {
        font-size: 1.8rem;
    }

    .contact-info-list li {
        font-size: 1rem;
    }
}