/* Customize the scrollbar track */
::-webkit-scrollbar {
  width: 12px;
  background-color: #2c2f33;
}

/* Customize the scrollbar thumb */
::-webkit-scrollbar-thumb {
  background-color: #3498db;
  border-radius: 6px;
  border: 2px solid #1a1d21;
  transition: background-color 0.3s ease;
}

/* Hover style for the scrollbar thumb */
::-webkit-scrollbar-thumb:hover {
  background-color: #2980b9;
}

/* Customize the scrollbar corner */
::-webkit-scrollbar-corner {
  background-color: #1a1d21;
}        
:root {
            --color-primary: #3498db;
            --color-secondary: #39FF14;
            --color-background: #1a1d21;
            --color-surface: #2c2f33;
            --color-text: #ffffff;
            --color-text-secondary: #b3b3b3;
            --color-border: #3498db;
            --color-success: #2ecc71;
            --transition-normal: 300ms ease;
            --radius-lg: 20px;
            --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
            --font-primary: 'Montserrat', sans-serif;
            --font-secondary: 'Fira Sans Condensed', sans-serif;
}
/* Base Navigation Styles */
nav {
    z-index: 1000;
    position: fixed;
    width: 98%;
    top: 0;
    left: 0;
    background: rgba(44, 47, 51, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(57, 255, 20, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1.5rem;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    border-bottom: 2px solid rgba(57, 255, 20, 0.7);
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
    height: 80px;
    min-height: 80px;
    margin: 0 1%;
}

/* Logo Container */
.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 100px;
    height: 60px;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Header Titles */
.headingTitle, .headingTitle1 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 5px;
    text-align: left;
    min-height: 60px;
    z-index: 999;
}

.headingTitle {
    width: 60%;
    padding: 25px 0 5px 200px;
    font-family: 'Fira Sans Condensed', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.5px;
}

.headingTitle1 {
    width: 10%;
    padding: 5px 0 5px 200px;
    font-family: "Montserrat", sans-serif;
    color: #39FF14;
    text-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
    font-size: 22px;
    font-weight: 600;
}

/* Navigation Links */
.nav-links {
    flex: 1;
    text-align: right;
    padding-right: 2%;
    font-family: 'Fira Sans Condensed', sans-serif;
}

.nav-links ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    gap: 0.8rem;
}
.nav-links ul li a.auth-button {
    margin-bottom: 0.4rem;
    cursor: pointer;
}
.nav-links ul li {
    list-style: none;
    padding: 0.4rem 0.8rem;
    position: relative;
    border-radius: 25px;
    transition: all 0.3s ease;
}

/* Secondary Links */
.secondary-links {
    display: flex;
    justify-content: flex-end;
    bottom: 10px;
    padding-right: 2%;
    position: relative;  /* Added to ensure proper stacking */
    z-index: 1;  /* Added to maintain link clickability */
}

.secondary-links li {
    list-style: none;
    display: inline-block;
    margin-left: 10px;
}

.secondary-links li a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.secondary-links li a:hover {
    color: #39FF14 !important;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}

.secondary-links li::after {
    content: '';
    width: 0%;
    height: 3px;
    background: rgba(57, 255, 20, 0.7);
    display: block;
    margin: auto;
    transition: 0.5s;
}

.secondary-links li:hover::after {
    width: 100%;
}

/* Header Section & Search Area */
.header-section {
    padding-top: 120px;
    min-height: 100vh;
    background: linear-gradient(
        to bottom,
        rgba(44, 47, 51, 0.7) 30%,
        rgba(44, 47, 51, 0.9) 70%,
        #2c2f33
    );
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.search-bar {
    flex-grow: 1;
    padding: 1rem 1.5rem;
    padding-left: 50px !important; /* Make room for the icon */
    border-radius: 30px;
    border: 2px solid rgba(57, 255, 20, 0.3);
    /* New background with slight transparency for depth */
    background: #2c2f33;
    /* Optional: Add a subtle gradient for more depth */
    background: linear-gradient(
        145deg,
        rgba(44, 47, 51, 0.95) 0%,
        rgba(44, 47, 51, 0.98) 100%
    );
    backdrop-filter: blur(5px);
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-right: 1rem;
}

.search-bar::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-bar:focus {
    outline: none;
    border-color: rgba(57, 255, 20, 0.7);
    background: #33363b; /* Slightly lighter on focus */
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
    transform: translateY(-1px);
}

/* Enhanced wrapper styles */
.search-wrapper {
    position: relative;
    width: 100%;
    border-radius: 30px;
    /* Add subtle glow effect */
    box-shadow: 0 4px 20px rgba(57, 255, 20, 0.05);
    transition: all 0.3s ease;
}

.search-wrapper:hover {
    box-shadow: 0 4px 25px rgba(57, 255, 20, 0.1);
}

/* Enhanced icon styles */
.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.search-wrapper:hover .search-icon,
.search-bar:focus + .search-icon {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(57, 255, 20, 0.4));
}

/* Action Buttons */
.order-now-button, .sign-up-button {
    padding: 0.9rem 2.2rem;
    border-radius: 12px;
    background: rgba(57, 255, 20, 0.05);
    border: 1px solid rgba(57, 255, 20, 0.3);
    color: #39FF14 !important;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(57, 255, 20, 0.07);
}

.order-now-button {
    min-width: 180px;
}

/* Hover State */
.order-now-button:hover, .sign-up-button:hover {
    background: rgba(57, 255, 20, 0.1);
    border-color: rgba(57, 255, 20, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(57, 255, 20, 0.12);
}

/* Active/Pressed State */
.order-now-button:active, .sign-up-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(57, 255, 20, 0.08);
}

/* Focus State */
.order-now-button:focus, .sign-up-button:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(57, 255, 20, 0.2),
                0 2px 12px rgba(57, 255, 20, 0.07);
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .order-now-button, .sign-up-button {
        padding: 0.8rem 1.8rem;
        font-size: 0.85rem;
    }
    
    .order-now-button {
        min-width: 160px;
    }
}

.sign-up-button {
    margin-top: 2rem;
}

.order-now-button:hover,
.sign-up-button:hover {
    background: rgba(57, 255, 20, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(57, 255, 20, 0.2);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: white;
    transition: transform 0.3s ease;
    z-index: 1002;
    padding: 10px;
}

/* Animations */
@keyframes fadeIn {
    from { 
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 800px) {
    nav {
        height: 70px;
        min-height: 70px;
    }

    .hamburger {
        display: block;
        margin-right: 15px;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 250px;
        background: rgba(44, 47, 51, 0.98);
        backdrop-filter: blur(10px);
        padding: 20px;
        border-radius: 15px;
        border: 2px solid rgba(57, 255, 20, 0.7);
        transition: all 0.3s ease-in-out;
        box-shadow: 0 4px 20px rgba(57, 255, 20, 0.15);
        z-index: 1000;
    }

    .nav-links.active {
        right: 20px;
    }

    .nav-links ul {
        flex-direction: column;
        align-items: center;
    }

    .nav-links ul li {
        width: 100%;
        margin: 10px 0;
        text-align: center;
    }

    .hamburger.rotate {
        transform: rotate(90deg);
    }

    .headingTitle {
        font-size: 16px;
        padding-left: 100px;
    }
    
    .headingTitle1 {
        padding-left: 100px;
    }

    .header-container {
        flex-direction: column;
        padding: 0 15px;
    }

    .search-bar {
        width: 100%;
        margin: 0 0 1rem 0;
    }

    .order-now-button {
        width: 100%;
    }
}



body {
    text-align: left;
    background-color: #2c2f33;
    font-family: Arial, sans-serif;
    color: #ffffff;
    max-width: 100%;
    padding-right: 10px;
    padding-left: 10px;
    opacity: 1;
    transition: opacity 0.5s ease;
    margin-left: 2%;
    margin-right: 2%;
}
/* Container Styles */
.container {
    margin-top: 25px;
    margin-bottom: 25px;
    padding: 0 20px;
}
.t1 {
    color: #39FF14;
    font-size: 3.5rem;
    margin: 2rem 0 0 0; /* Update margin to remove left and right margins */
    position: relative;
    z-index: 2;
    text-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
    text-align: left;
}
.myp1 {
    font-family: 'Exo 2', sans-serif;
    font-weight: 300;
    margin: 1rem 0 2rem 0;
    font-size: 24px;
    color: #ffffff;
    background: transparent; /* Change background to transparent */
    display: inline-block;
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 0.5rem 0; /* Update padding to only have top and bottom padding */
    opacity: 0.9;
}
/* Enhanced Typing Animation */
.typing-wrapper {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    padding-right: 10px;
    width: 0;
    border-right: 2px solid transparent;
    animation: initial-blink 1.5s steps(1) forwards,  /* 3 blinks taking 1.5s total */
               typing 4s steps(50, end) forwards 1.5s, /* Start typing after blinks */
               blink-caret 0.75s step-end 5.3s;       /* Final blink after typing */
}
.typing-text {
    display: inline-block;
    white-space: normal;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Modal Styling */
.modal-content {
    background: rgba(44, 47, 51, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(57, 255, 20, 0.7);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(57, 255, 20, 0.2);
    color: #ffffff;
    transition: all 0.3s ease;
}

.modal-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(57, 255, 20, 0.3);
}

.modal-header {
    border-bottom: 1px solid rgba(57, 255, 20, 0.3);
    padding: 1.5rem;
}

.modal-footer {
    border-top: 1px solid rgba(57, 255, 20, 0.3);
    padding: 1.5rem;
}

.modal-title {
    color: #39FF14;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.close {
    color: #39ff14;
    text-shadow: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.close:hover {
    color: #ff3b3b;
    opacity: 1;
}
/* Form Controls */
.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(57, 255, 20, 0.3);
    border-radius: 10px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(57, 255, 20, 0.7);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.2);
    color: #ffffff;
}

/* Button Styling */
.btn-primary {
    background: rgba(57, 255, 20, 0.1);
    border: 2px solid rgba(57, 255, 20, 0.7);
    color: #39FF14;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(57, 255, 20, 0.1);
}

.btn-primary:hover {
    background: rgba(57, 255, 20, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(57, 255, 20, 0.2);
}
/* Animations */
@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
    }
    to {
        text-shadow: 0 0 20px rgba(57, 255, 20, 0.5),
                     0 0 30px rgba(57, 255, 20, 0.3);
    }
}

@keyframes initial-blink {
    0%, 25%, 75% { border-right-color: transparent; }  /* Off state */
    12.5%, 37.5%, 87.5% { border-right-color: #39ff14; }  /* On state */
    100% { border-right-color: #39ff14; }  /* Ensures caret is visible when typing starts */
}

/* Typing animation */
@keyframes typing {
    from { width: 0 }
    to { 
        width: 100%;
        border-right: transparent;
    }
}

/* Final caret blink */
@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #39ff14 }
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Animation Classes */
.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.zoom-in {
  animation: zoomInEffect 0.75s ease-out forwards;
  opacity: 0; /* Start invisible */
}

@keyframes zoomInEffect {
  0% {
    transform: scale(0.9); /* Start a bit smaller */
    opacity: 0; /* Start invisible */
  }
  100% {
    transform: scale(1); /* End at normal size */
    opacity: 1; /* Fully visible */
  }
}




/* Responsive Design */
@media screen and (max-width: 800px) {
    .t1 {
        font-size: 2.5rem;
        margin: 1.5rem 0;
    }

    .myp1 {
        font-size: 18px;
        margin: 1rem 0;
    }

    .typing-wrapper {
        font-size: 16px;
    }

    .modal-dialog {
        margin: 0.5rem;
    }

    .btn-primary {
        width: 100%;
        margin: 0.5rem 0;
    }

    .container {
        padding: 0 15px;
    }

    .footerNote {
        width: 90%;
    }
}

/* Additional Utility Classes */
.text-glow {
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Login Modal Specific Styles */
#loginModal .modal-content {
    background: rgba(44, 47, 51, 0.98);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(57, 255, 20, 0.7);
}

#loginModal .alert {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(57, 255, 20, 0.3);
    color: #ffffff;
}

#loginModal .alert-danger {
    border-color: rgba(255, 0, 0, 0.3);
}

#loginModal .alert-success {
    border-color: rgba(57, 255, 20, 0.7);
}

#loginModal .form-group label {
    color: #ffffff;
    font-weight: 500;
}

#loginModal .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(57, 255, 20, 0.3);
    color: #ffffff;
    transition: all 0.3s ease;
}

#loginModal .form-control:focus {
    border-color: rgba(57, 255, 20, 0.7);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.2);
}

#loginModal .btn-primary {
    background: rgba(57, 255, 20, 0.1);
    border: 2px solid rgba(57, 255, 20, 0.7);
    color: #39FF14;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

#loginModal .btn-primary:hover {
    background: rgba(57, 255, 20, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(57, 255, 20, 0.2);
}

#loginModal .modal-header {
    border-bottom: 1px solid rgba(57, 255, 20, 0.3);
}

#loginModal .modal-title {
    color: #39FF14;
    font-weight: 600;
}

#loginModal .close {
    color: #39FF14;
    opacity: 0.8;
    transition: all 0.3s ease;
}

#loginModal .close:hover {
    color: #ff3b3b;
    opacity: 1;
}

/* Signup Modal Specific Styles */
#signupModal .modal-content {
    background: rgba(44, 47, 51, 0.98);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(57, 255, 20, 0.7);
}

#signupModal .alert {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(57, 255, 20, 0.3);
    color: #ffffff;
    padding: 1rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

#signupModal .alert-danger {
    border-color: rgba(255, 0, 0, 0.3);
}

#signupModal .alert-success {
    border-color: rgba(57, 255, 20, 0.7);
}

#signupModal .form-group label {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

#signupModal .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(57, 255, 20, 0.3);
    color: #ffffff;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

#signupModal .form-control:focus {
    border-color: rgba(57, 255, 20, 0.7);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.2);
}

#signupModal .btn-primary {
    background: rgba(57, 255, 20, 0.1);
    border: 2px solid rgba(57, 255, 20, 0.7);
    color: #39FF14;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

#signupModal .btn-primary:hover {
    background: rgba(57, 255, 20, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(57, 255, 20, 0.2);
}

.nav__company {
    color: var(--color-secondary);
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}

.nav__page {
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0;
    opacity: 0.9;
    font-family: var(--font-secondary);
}
        .nav__brand {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .nav__logo {
            height: 60px;
            width: auto;
            border-radius: 2px;
        }


.join-future-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1.5rem;
    width: 100%;
    max-width: 800px;
    margin: 1.5rem auto;
    background: #2c2f33;
}

.join-future-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 600px;
    padding: 0 1rem;
}

.join-future-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.icon-wrapper {
    background: transparent;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.join-future-button:hover {
    transform: translateY(-2px);
}

.join-future-button:hover .icon-wrapper {
    transform: scale(1.1);
}

.join-future-button span {
    margin-top: 0.75rem;
    color: #ffffff;
    font-size: 0.9rem;
    opacity: 0.9;
}

.sign-up-button {
    background: rgba(57, 255, 20, 0.1);
    border: 2px solid rgba(57, 255, 20, 0.7);
    color: #39FF14;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(57, 255, 20, 0.1);
    margin-top: 1rem;
}

.sign-up-button:hover {
    background: rgba(57, 255, 20, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(57, 255, 20, 0.2);
}

.discover-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px; /* Reduced gap between text and icon */
    padding: 0.7rem 1.4rem; /* Reduced padding */
    background: rgba(44, 47, 51, 0.95);
    border: 1px solid rgba(57, 255, 20, 0.4);
    border-radius: 30px; /* Slightly reduced border radius */
    color: #39FF14 !important;
    font-size: 0.95rem; /* Slightly smaller font */
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(57, 255, 20, 0.1),
                inset 0 0 20px rgba(57, 255, 20, 0.05);
    min-width: 180px; /* Reduced minimum width */
}

.discover-icon {
    width: 30px; /* Slightly smaller icon */
    height: 30px; /* Slightly smaller icon */
    transition: transform 0.4s ease;
    margin-left: 2px;
}



.discover-button:hover .discover-icon {
    transform: translateX(4px);
    filter: drop-shadow(0 0 8px rgba(57, 255, 20, 0.4));
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .discover-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        min-width: 160px;
    }
    
    .discover-icon {
        width: 18px;
        height: 18px;
    }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .join-future-buttons {
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .join-future-button {
        padding: 0.25rem;
    }

    .join-future-button span {
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }
}

@media (max-width: 400px) {
    .join-future-buttons {
        gap: 0.5rem;
    }
}


.global-control-banner {
    width: 100%;
    margin: 3rem auto;
    padding: 2rem;
    background: rgba(20, 22, 25, 0.95);
    border-radius: 1rem;
    border: 1px solid rgba(57, 255, 20, 0.3);
    box-shadow: 0 4px 30px rgba(57, 255, 20, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.global-control-banner:hover {
    transform: translateY(-2px);
    border-color: rgba(57, 255, 20, 0.5);
    box-shadow: 0 8px 40px rgba(57, 255, 20, 0.2);
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.icon-container {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: rgba(57, 255, 20, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #39FF14;
    border: 2px solid rgba(57, 255, 20, 0.3);
    transition: all 0.3s ease;
}

.global-control-banner:hover .icon-container {
    transform: rotate(180deg);
    border-color: rgba(57, 255, 20, 0.7);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.2);
}

.banner-text {
    flex-grow: 1;
}

.banner-text h3 {
    color: #39FF14;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.2);
}

.banner-text p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .banner-text h3 {
        font-size: 1.5rem;
    }

    .banner-text p {
        font-size: 1rem;
    }
}

.char-counter {
    display: block;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
    color: #39FF14;
    font-family: 'Montserrat', sans-serif;
}

.form-group {
    margin-bottom: 1.5rem;
}
.beta-note {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    opacity: 0.85;
}

.beta-tag {
    position: relative;
    color: #39FF14;
    background: rgba(57, 255, 20, 0.1);
    padding: 4px 24px;
    border-radius: 12px;
    border: 1px solid rgba(57, 255, 20, 0.3);
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.line-left, .line-right {
    display: inline-block;
    height: 1px;
    width: 20px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(57, 255, 20, 0.3) 50%,
        rgba(57, 255, 20, 0.6)
    );
}

.line-right {
    background: linear-gradient(
        to left,
        transparent,
        rgba(57, 255, 20, 0.3) 50%,
        rgba(57, 255, 20, 0.6)
    );
}

.beta-tag:hover {
    background: rgba(57, 255, 20, 0.15);
    border-color: rgba(57, 255, 20, 0.4);
    transform: translateY(-1px);
}

.beta-tag:hover .line-left,
.beta-tag:hover .line-right {
    background: linear-gradient(
        to right,
        transparent,
        rgba(57, 255, 20, 0.4) 50%,
        rgba(57, 255, 20, 0.8)
    );
}

.beta-tag:hover .line-right {
    background: linear-gradient(
        to left,
        transparent,
        rgba(57, 255, 20, 0.4) 50%,
        rgba(57, 255, 20, 0.8)
    );
}
.complete-platform-tagline {
    max-width: 900px;
    margin: 2rem auto 3rem auto;
    padding: 0 1rem;
    text-align: center;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.5s forwards;
}

.complete-platform-tagline p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .complete-platform-tagline p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .complete-platform-tagline {
        margin: 1.5rem auto 2.5rem auto;
    }
    
    .complete-platform-tagline p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

.mission-critical-statement {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    padding: 1.5rem 2rem;
    text-align: center;
    background: rgba(57, 255, 20, 0.05);
    border: 1px solid rgba(57, 255, 20, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(57, 255, 20, 0.1);
    opacity: 0;
    animation: fadeIn 0.8s ease 1s forwards;
    transition: all 0.3s ease;
}

.mission-critical-statement:hover {
    background: rgba(57, 255, 20, 0.08);
    border-color: rgba(57, 255, 20, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(57, 255, 20, 0.15);
}

.mission-critical-statement p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    line-height: 1.6;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0;
}

@media (max-width: 768px) {
    .mission-critical-statement {
        padding: 1.25rem 1.5rem;
        margin: 0 1rem 2.5rem 1rem;
    }
    
    .mission-critical-statement p {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .mission-critical-statement {
        padding: 1rem 1.25rem;
        margin: 0 0.5rem 2rem 0.5rem;
    }
    
    .mission-critical-statement p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}


.complete-platform-tagline {
    max-width: 1000px;
    margin: 2rem auto 3rem auto;
    padding: 0 1rem;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.5s forwards;
}

.tagline-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.tagline-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(57, 255, 20, 0.05);
    border: 1px solid rgba(57, 255, 20, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.tagline-point:hover {
    background: rgba(57, 255, 20, 0.08);
    border-color: rgba(57, 255, 20, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(57, 255, 20, 0.15);
}

.tagline-icon {
    flex-shrink: 0;
    margin-top: 2px;
    filter: drop-shadow(0 0 8px rgba(57, 255, 20, 0.3));
    transition: all 0.3s ease;
}

.tagline-point:hover .tagline-icon {
    filter: drop-shadow(0 0 12px rgba(57, 255, 20, 0.5));
    transform: scale(1.1);
}

.tagline-point p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 0.3px;
    margin: 0;
}

@media (max-width: 768px) {
    .tagline-points {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tagline-point {
        padding: 1rem;
    }
    
    .tagline-point p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .tagline-point {
        padding: 0.875rem;
        gap: 0.75rem;
    }
    
    .tagline-icon {
        width: 20px;
        height: 20px;
    }
    
    .tagline-point p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}