@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&display=swap');

* {
    font-family: "Fira Code";
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    background-color: #0a0a0a;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Floating animation for the banner */
@keyframes float {
    0%, 100% {
        background-position: 0% 0%;
    }
    25% {
        background-position: 10% 10%;
    }
    50% {
        background-position: 20% 5%;
    }
    75% {
        background-position: 10% 15%;
    }
}

/* Site overlay should cover everything */
.site-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(110, 69, 226, 0.2) 0%, rgba(136, 211, 206, 0.2) 100%);
    z-index: -1; /* Behind all content */
    opacity: 0;
    transition: opacity 1s ease;
}

/* Dark base layer behind overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(img/banner.png);
    z-index: -2; /* Behind overlay */
}

/* Mobile Menu Styles */
.hamburger {
    display: none; /* Hidden by default on desktop */
    padding: 15px;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 1000;
    position: absolute;
    right: 20px;
    top: 20px;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    width: 100%;
    height: 2px;
    background-color: white;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: '';
    width: 100%;
    height: 2px;
    background-color: white;
    position: absolute;
    left: 0;
    transition: transform 0.3s ease;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

/* Mobile Menu Panel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(67, 2, 2, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    transition: right 0.4s ease;
    padding: 80px 20px 20px;
    box-sizing: border-box;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-menu-content a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.mobile-menu-content a:hover {
    color: #88d3ce;
}

/* Hamburger Animation */
.hamburger.active .hamburger-inner {
    background-color: transparent;
}

.hamburger.active .hamburger-inner::before {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .hamburger-inner::after {
    transform: translateY(-8px) rotate(-45deg);
}

/* About section should NOT have its own background */
.about-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    color: white;
    position: relative;
    /* Remove: background-color: #0a0a0a; */
}


body:hover .site-overlay {
    opacity: 1;
}

/* Remove the banner::after styles since we're using site-wide overlay now */



.about-content {
    max-width: 800px;
    margin: 0 auto;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1s;
}

.about-section h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, #fff, #88d3ce);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.about-section p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #ccc;
}




/* Navbar styling with glass morphism effect */
.nav {
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    z-index: 100;
    transition: all 0.5s ease;
}

.nav.scrolled {
    padding: 15px 40px;
    background: rgba(0, 0, 0, 0.6);
}

.company-name img {
    height: 90px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.company-name img:hover {
    transform: scale(1.05) rotate(-5deg);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    position: relative;
    padding: 5px 0;
    transition: all 0.4s ease;
}

.nav-links a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #6e45e2, #88d3ce);
    transition: width 0.4s ease;
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}


.contact-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(110, 69, 226, 0.2);
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-intro h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #fff, #88d3ce);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-intro p {
    color: #ccc;
    line-height: 1.6;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.direct-contact {
    margin-top: 2rem;
}

.direct-contact a {
    color: #88d3ce;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.direct-contact a:hover {
    text-decoration: underline;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #88d3ce;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(136, 211, 206, 0.2);
    border-radius: 8px;
    color: white;
    font-family: "Fira Code", monospace;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6e45e2;
    box-shadow: 0 0 0 2px rgba(110, 69, 226, 0.3);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.hint {
    font-size: 0.85rem;
    color: #888;
    margin-top: 0.5rem;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #6e45e2 0%, #88d3ce 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 1rem;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(110, 69, 226, 0.3);
}

.submit-btn .btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}



/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #0a0a0a;
    padding: 3rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    border: 1px solid rgba(110, 69, 226, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

.modal h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.modal p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.modal-close-btn {
    background: #6e45e2;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background: #88d3ce;
    transform: translateY(-2px);
}

/* Add these styles to your existing CSS */

/* Custom Select Styles */
.custom-select {
    position: relative;
    width: 100%;
}

.custom-select select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(136, 211, 206, 0.2);
    border-radius: 8px;
    color: white;
    font-family: "Fira Code", monospace;
    transition: all 0.3s ease;
    cursor: pointer;
    padding-right: 2.5rem; /* Make space for arrow */
}

.custom-select select:focus {
    outline: none;
    border-color: #6e45e2;
    box-shadow: 0 0 0 2px rgba(110, 69, 226, 0.3);
}

.select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: rgba(136, 211, 206, 0.7);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.custom-select:hover .select-arrow {
    color: #88d3ce;
}

.custom-select select:focus + .select-arrow {
    transform: translateY(-50%) rotate(180deg);
    color: #6e45e2;
}

/* Dropdown options styling */
.custom-select select option {
    background: #1a1a1a;
    color: #fff;
    padding: 10px;
}

/* Hover state for options */
.custom-select select option:hover {
    background: #6e45e2 !important;
}

/* Focus state for options */
.custom-select select option:checked,
.custom-select select option:focus {
    background: rgba(110, 69, 226, 0.5);
}

/* For Firefox */
@-moz-document url-prefix() {
    .custom-select select {
        padding-right: 1rem;
        text-indent: 0.01px;
        text-overflow: '';
    }
    .select-arrow {
        display: none;
    }
}

/* For IE10+ */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .custom-select select {
        padding-right: 1rem;
    }
    .select-arrow {
        display: none;
    }
}

/* Animation for dropdown */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Add this to make sure dropdowns animate when opened */
.custom-select select:focus {
    animation: fadeIn 0.3s ease;
}

/* Footer Styles */
.main-footer {
    padding: 2rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    color: #ccc;
    font-size: 0.9rem;
}



.footer-left,
.footer-center,
.footer-right {
    padding: 0.5rem 1rem;
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.footer-center {
    font-size: 1.1rem;
    color: #88d3ce;
    font-weight: 500;
}

.footer-right {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-right a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.footer-right a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: #88d3ce;
    transition: width 0.3s ease;
}

.footer-right a:hover {
    color: #88d3ce;
}

.footer-right a:hover::after {
    width: 100%;
}

.footer-logo {
    color: #88d3ce;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-logo:hover {
    color: #fff;
    transform: scale(1.05);
}

.footer-logo::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: #fff;
    transition: width 0.3s ease;
}

.footer-logo:hover::after {
    width: 100%;
}
/* Mobile-First Responsive Adjustments */
@media (max-width: 768px) {
    /* Base Layout Adjustments */
    body {
        overflow-x: hidden;
    }

    /* Navigation */
    .nav {
        padding: 15px 20px;
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-links {
        width: 100%;
        justify-content: space-between;
        gap: 1rem;
    }

   
    .hamburger {
        display: block;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav {
        padding: 15px 20px;
    }
    .mobile-menu {
        display: block !important; /* Force show the mobile menu */
    }

    .question-buttons {
        flex-direction: column;
        align-items: center;
    }
    

    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-left,
    .footer-center,
    .footer-right {
        text-align: center;
        width: 100%;
    }
    
    .footer-right {
        justify-content: center;
        flex-wrap: wrap;
    }
    .contact-container {
        padding: 2rem;
    }
    
    .contact-intro h1 {
        font-size: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .submit-btn {
        max-width: 100%;
    }
}

/* Form error states */
.form-group input:invalid,
.form-group textarea:invalid {
    border-color: #ff7e5f;
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.error-details {
    background: rgba(0,0,0,0.1);
    padding: 0.5rem;
    border-radius: 5px;
    margin: 0.5rem 0;
}

/* Cute Notification Styles */
.cute-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 107, 107, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    max-width: 300px;
    display: none;
    color: white;
    border-left: 5px solid #ff7e5f;
}

.cute-notification.show {
    transform: translateY(0);
    opacity: 1;
    display: block;
}

.notification-emoji {
    font-size: 2rem;
    text-align: center;
    margin: 0.5rem 0;
    animation: wobble 0.5s ease;
}

@keyframes wobble {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.notification-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.retry-btn, .email-btn {
    flex: 1;
    padding: 0.5rem;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.retry-btn {
    background: white;
    color: #ff6b6b;
    border: none;
}



.email-btn {
    background: transparent;
    color: white;
    border: 1px solid white;
    text-align: center;
    text-decoration: none;
    font-size: 0.9rem;
}

.retry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.email-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 480px) {
    /* Extra Small Devices */
    .banner-content h1 {
        font-size: 2rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

   

}
