* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

::-webkit-scrollbar {
    width: 0px;
}

.navbar {
    position: fixed;
    top: 0;
    left: -0px;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.2);
}

.navbar-maps{
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0);
}

.navbar a:nth-child(1), .navbar a:nth-child(2), .navbar a:nth-child(3) {
    left: 2%;
}

.navbar nav {
    display: flex;
    justify-content: center;
    gap: 90px;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 400;
    position: relative;
    padding-bottom: 5px;
}

.navbar a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #414141;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease-out;
}

.navbar a:hover::after {
    transform: scaleX(1);
}

.nav-btn {
    position: absolute;
    right: -27%;
    transition: 0.3s;
}

/* TYPEWRITER CURSOR EFFECT */
.tagline::after {
    content: '|';
    animation: blink 1s infinite;
    color: #4caf4f00; /* Green cursor matching your theme */
    font-weight: bold;
    margin-left: 5px;
}

/* Keyframes for blinking */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-section {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0)100%),
        url('../assets/image/road.png') no-repeat center center/cover;
    z-index: -1;
    animation: slowZoom 10s infinite alternate linear;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.2);
    }
}

.logo-text {
    font-size: 10rem;
    line-height: 0.9;
    text-indent: 50;
    font-weight: bold;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-out;
}

.tagline {
    font-size: 2.5rem;
    margin: 0 auto;
    text-align: left;
    position: absolute;
    bottom: 5%;
    left: 25%;
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
    }
}


/* HERO SECTION 2 STYLE */


.hero-section2 {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-section2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    background: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0)100%),
        url('../assets/image/vehicle.png') no-repeat center center/cover;
    z-index: -1;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.2);
    }
}

.headline {
    position: absolute;
    left: 23%;
    top: 25%;
    font-size: 6rem;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    opacity: 0;
}

.desc {
    font-size: 1.3rem;
    max-width: 430px;
    position: absolute;
    bottom: 17%;
    left: 33%;
    color: #e4e1e1;
    opacity: 0;
}

.hero-section2.active .headline {
    animation: fadeIn 1s ease-out forwards;
}

.hero-section2.active .desc {
    animation: fadeIn 1.5s ease-out forwards;
}

.hero-section2.active::before {
    animation: slowZoom 10s infinite alternate linear;
}



/* HERO SECTION 3 STYLE */


.hero-section3 {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-section3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0)100%),
        url('../assets/image/building.png') no-repeat center center/cover;
    z-index: -1;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.2);
    }
}

.desc3 {
    font-size: 2rem;
    width: 75%;
    position: absolute;
    left: 14%;
    color: #e4e1e1;
    opacity: 0;
    top: 25%;
}

.hero-section3.active .headline {
    animation: fadeIn 1s ease-out forwards;
}

.hero-section3.active .desc3 {
    animation: fadeIn 1.5s ease-out forwards;
}

.hero-section3.active::before {
    animation: slowZoom 10s infinite alternate linear;
}

.register_btn {
    display: flex;
    position: absolute;
    bottom: 10%;
    left: 90%;
    transform: translateX(-50%);
    background-color: #4f9909b6;
    color: #fff;
    width: 150px;
    height: 50px;
    padding: 10px 30px;
    border-radius: 20px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.register_btn:hover {
    background-color: #367206;
    scale: 1.05;
    transition: 0.3s;
    transform: translateY(1);
    box-shadow: 5px 6px 15px #0c49049c;
}



/* CONTACT US STYLE */


.contact {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%),
        url('../assets/image/road2.png') no-repeat center center/cover;
    z-index: -1;
    animation: slowZoom 10s infinite alternate linear;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.2);
    }
}

.headline_contact {
    position: absolute;
    left: 2%;
    top: 12%;
    font-size: 6rem;
    line-height: 0.9;
    text-indent: 50;
    font-weight: bold;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-out;
}

.tagline {
    font-size: 2.5rem;
    margin: 0 auto;
    text-align: left;
    position: absolute;
    bottom: 5%;
    left: 25%;
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
    }
}

.social-icon img {
    width: 25px;
    height: 25px;
    transition: all 0.3s ease;
    filter: opacity(0.7);
    position: absolute;
    top: 58%;
    left: 2%;
    font-size: 1.5rem;
    left: 2%;
}

.insta:hover img {
    filter: grayscale(0) opacity(1) drop-shadow(0 0 8px #f09433);
    transform: translateY(-3px);
}


.form-card {
    width: 500px;
    background: #ffffff00;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

input,
textarea {
    width: 100%;
    padding: 12px 20px;
    border-radius: 12px;
    border: 1.5px solid #eee;
    background: #f9f9fb00;
    font-size: 16px;
    transition: 0.3s;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
}

.btn-submit {
    background: #000;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
}




/* =========================================
   ABOUT PAGE 
   ========================================= */

.content-wrapper {
    max-width: 1200px;
    padding: 0 5%;
    z-index: 2;
    position: relative;
}

/* --- SECTION 1: Why Us --- */
.about-section-1 {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    padding-top: 80px;
}

.about-section-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0)),
        url('../assets/image/road4.png') no-repeat center center/cover;
    z-index: 0;
}

.main-title {
    font-size: 5rem;
    font-weight: bold;
    margin-right: 670px;
    margin-top: -250px;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
}

/* --- SECTION 2: What We Do & Impact --- */
.about-section-2 {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    padding: 50px 0;
}

.about-section-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0), rgb(0, 0, 0)),
        url('../assets/image/road3.png') no-repeat center center/cover;
    z-index: 0;
}

/* --- SECTION 3: Founders --- */
.founders-section {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    padding: 50px 0;
}

.founders-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.89)),
        url('../assets/image/founder_bg.png') no-repeat center center/cover;
    z-index: 0;
}

.info-block {
    margin-bottom: 40px;
    text-align: left;
}

.info-block h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

.info-block p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #e0e0e0;
}

.founders-title {
    font-size: 5rem;
    margin-left: 150px;
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Montserrat', sans-serif;
}

.founders-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.founder-item h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.founder-item p {
    font-size: 1.4rem;
    color: #ccc;
}

.register-btn-small {
    display: inline-flex;
    align-items: center;
    background-color: rgba(79, 153, 9, 0.9);
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    width: fit-content;
    margin-top: 10px;
}

.register-btn-small:hover {
    background-color: #4f9909;
    transform: scale(1.05);
}

.register-btn-small span {
    margin-left: 10px;
    font-size: 1.2rem;
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

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

.about-section-1 .info-block,
.about-section-2 .info-block,
.about-section-2 .register-btn-small,
.founders-list .founder-item {
    opacity: 0;
}

.about-section-1.active .info-block,
.about-section-2.active .info-block,
.about-section-2.active .register-btn-small,
.founders-section.active .founder-item {
    animation: slideUpFade 0.8s ease-out forwards;
}

.about-section-1.active .info-block {
    animation-delay: 0.2s;
}

.about-section-2.active .info-block:nth-child(1) {
    animation-delay: 0.2s;
}

.about-section-2.active .info-block:nth-child(2) {
    animation-delay: 0.5s;
}

.about-section-2.active .register-btn-small {
    animation-delay: 0.8s;
}

.founders-section.active .founder-item:nth-child(1) {
    animation-delay: 0.2s;
}

.founders-section.active .founder-item:nth-child(2) {
    animation-delay: 0.5s;
}

.founders-section.active .founder-item:nth-child(3) {
    animation-delay: 0.8s;
}



.typewriter-cursor::after {
    content: '|';
    animation: blink 1s infinite;
    color: #4caf4f00; 
    font-weight: bold;
    margin-left: 5px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.typewriter-target {
    min-height: 1em; 
    margin-right: 200px;
    display: inline-block;
}

button, .register_btn, .nav-btn, .submit-btn {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

button:hover, .register_btn:hover, .nav-btn:hover, .submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

button:active {
    transform: translateY(-1px);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.floating-anim {
    animation: float 4s ease-in-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* --- BOTTOM LEFT LOGOUT BUTTON --- */
#fixed-logout {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 0, 0, 0.2); /* Subtle Red */
    border: 1px solid rgba(255, 0, 0, 0.4);
    color: #ff6b6b;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    backdrop-filter: blur(5px);
    z-index: 1000;
    transition: 0.3s;
    display: none; /* Hidden by default */
}

#fixed-logout:hover {
    background: rgba(255, 0, 0, 0.8);
    color: white;
    transform: translateY(-2px);
}

/* --- USER ICON IN NAVBAR --- */
.user-icon-container {
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
}

.user-icon {
    font-size: 1.8rem;
    color: #4CAF50; /* Green */
    cursor: pointer;
    transition: transform 0.3s;
}

.user-icon:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 5px rgba(76, 175, 80, 0.5));
}

/* --- FLOATING LOGOUT BUTTON (Bottom Left) --- */
.floating-logout-btn {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 20px;
    left: 10px;
    background: rgba(255, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff4d4d;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 9999;
    transition: all 0.3s ease;
    align-items: center;
    gap: 8px;
}

.floating-logout-btn:hover {
    background: rgba(255, 0, 0, 0.8);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}


::-webkit-scrollbar {
    width: 0px;
}
::-webkit-scrollbar-track {
    background: #0a0a0a; 
}
::-webkit-scrollbar-thumb {
    background: #333; 
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #4CAF50;
}

/* 2. PAGE FADE-IN TRANSITION */
.fade-in-page {
    animation: pageFadeIn 0.8s ease-out;
}
@keyframes pageFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 3. INPUT ICONS IN MAPS */
.input-with-icon {
    position: relative;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.input-with-icon i {
    position: absolute;
    left: 12px;
    z-index: 2;
}
.input-with-icon input {
    padding-left: 35px !important; /* Make room for icon */
}

/* 4. LOADING BUTTON STATE */
.loading-btn {
    background-color: #777 !important;
    cursor: wait !important;
    pointer-events: none;
}

/* --- MOBILE RESPONSIVENESS (Add to bottom of style.css) --- */
@media (max-width: 768px) {
    /* Navbar fixes */
    .navbar {
        background: rgba(0,0,0,0.8);
        padding: 15px;
    }
    .navbar nav {
        gap: 20px;
        justify-content: space-between;
    }
    .navbar a {
        font-size: 0.9rem;
    }
    .nav-btn {
        position: static; /* Reset absolute position */
        padding: 5px 10px;
        background: #4CAF50;
        border-radius: 5px;
    }
    .user-icon {
        font-size: 1.4rem;
    }

    /* Hero Section Text Scaling */
    .logo-text {
        font-size: 4rem; /* Reduced from 10rem */
        text-indent: 0;
        line-height: 1.1;
    }
    .tagline {
        font-size: 1.2rem;
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 20px;
        text-align: center;
        padding: 0 20px;
    }

    /* Fix Absolute Positioning in Section 2 & 3 */
    .hero-section2, .hero-section3, .contact {
        flex-direction: column;
        justify-content: center;
        padding: 20px;
    }

    .hero-content2, .hero-content3, .contact-content {
        position: relative;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* Headline Fixes */
    .headline, .desc, .desc3, .headline_contact {
        position: relative;
        left: auto;
        top: auto;
        bottom: auto;
        right: auto;
        opacity: 1 !important; /* Force visible for safety */
        text-align: center;
        width: 100%;
        transform: none !important; /* Reset animations that might hide text */
    }

    .headline, .headline_contact {
        font-size: 3rem;
        margin-bottom: 20px;
        text-indent: 0;
    }

    .desc, .desc3 {
        font-size: 1rem;
        max-width: 90%;
        margin-bottom: 30px;
    }

    /* Register Button */
    .register_btn {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        margin-top: 30px;
    }

    /* Contact Section Layout */
    .contact-content p, .contact-content h1 {
        position: relative;
        left: auto !important;
        top: auto !important;
        bottom: auto !important;
        font-size: 1.1rem !important;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .social-icon img {
        position: relative;
        left: auto;
        top: auto;
        margin-top: 20px;
        width: 40px;
        height: 40px;
    }
    
    /* Footer Text */
    .typewriter-target[style*="font-size: 8rem"] {
        font-size: 2.5rem !important;
        position: relative !important;
        margin-top: 40px;
    }
}