* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html{
    scroll-behavior: smooth;
}
:root {
    --primary-color: #2E4A7D;
    --primary-light: #4C6AA3;
    --secondary-color: #E6F3FF;
    --dark-text: #1E1E1E;
    --light-text: #fff;
    --blue-transparent: rgba(76, 106, 163, 0.75);
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    --hover-shadow: 0 8px 25px rgba(0,0,0,0.2);
    --header-height: 75px;
    --container-padding: 5%;
}

body {
    font-family: 'Reddit Sans', sans-serif;
    color: var(--dark-text);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* General Utility Classes */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
}

.section-title {
    font-family: 'Righteous', sans-serif;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 0.5rem;
    text-align: center;
    position: relative;
    display: inline-block;
}

.section-divider {
    width: 120px;
    height: 8px;
    background-color: var(--primary-color);
    margin: 0 auto 2rem;
    border-radius: 4px;
}
.section-divider-abt{
    width: 120px;
    height: 8px;
    background-color: var(--primary-color);
    margin: 0 0 2rem 0;
    border-radius: 4px;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(253, 253, 253, 0.95);
    box-shadow: 0px 2px 10px rgba(52, 52, 52, 0.1);
    border-radius: 0px 0px 10px 10px;
    padding: 0.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(253, 253, 253, 1);
    height: calc(var(--header-height) - 5px);
    box-shadow: 0px 2px 15px rgba(52, 52, 52, 0.15);
}

.logo-main-icon {
    width: 140px;
    height: auto;
    transition: var(--transition);
    filter: brightness(0);
    margin-left: clamp(10px, 5vw, 80px);
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-icon {
    width: 30px;
    height: 24px;
    position: relative;
    transition: var(--transition);
}

.hamburger-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--primary-color);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: var(--transition);
}

.hamburger-icon span:nth-child(1) {
    top: 0px;
}

.hamburger-icon span:nth-child(2) {
    top: 10px;
}

.hamburger-icon span:nth-child(3) {
    top: 20px;
}

.hamburger-icon.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

.hamburger-icon.active span:nth-child(2) {
    opacity: 0;
    width: 0%;
}

.hamburger-icon.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 40px);
    transition: var(--transition);
    margin-right: clamp(10px, 3vw, 50px);
}

.home-parent {
    display: flex;
    gap: clamp(8px, 1vw, 15px);
}

.help {
    padding: 10px 15px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.help::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.help:hover {
    color: var(--primary-color);
}

.help:hover::after {
    width: 70%;
}

.login {
    width: 100px;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(46, 74, 125, 0.2);
    text-align: center;
}

.login:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 74, 125, 0.3);
}

/* Home Section */
.home {
    background: url('images/main2.png') no-repeat center/cover;
    width: 100%;
    min-height: 100vh;
    padding: calc(var(--header-height) + 45px) var(--container-padding) 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    text-align: left;
}
.home .container {
    position: relative;
    z-index: 1;
}

.travease {
    font-size: clamp(3rem, 8vw, 7rem);
    font-family: 'Righteous', sans-serif;
    margin-bottom: clamp(1.5rem, 3vw, 3rem);
    color:var(--dark-text);
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.india-is-riding {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--dark-text);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.travease-makes-sure-container {
    max-width: 900px;
    margin-bottom: 2rem;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.5;
    color: var(--dark-text);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.easy-parent {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 3rem;
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--dark-text);
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
    flex-wrap: wrap;
}

.ride-now {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: clamp(10px, 2vw, 15px) clamp(20px, 3vw, 30px);
    border-radius: 30px;
    cursor: pointer;
    width: fit-content;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.ride-now:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.frame-inner, .line-div {
    width: 3px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
}

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

/* About Section */
.abouts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: clamp(30px, 5vw, 50px);
    padding: clamp(80px, 10vw, 120px) var(--container-padding) clamp(60px, 8vw, 80px);
    background-color: #f9fbff;
}

.abt1 {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    padding: 0 clamp(10px, 2vw, 20px);
}

.heading {
    margin-bottom: 2rem;
    text-align: left;
}

.travease-is-your, .whether-youre-a {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
}

.abt-img-icon {
    flex: 1;
    max-width: 600px;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
}

/* Working Section */
.working {
    background-color: var(--secondary-color);
    padding: clamp(30px, 5vw, 50px) var(--container-padding) clamp(20px, 3vw, 30px);
    border-radius: 50px;
    box-shadow: 0px -5px 15px rgba(192, 192, 192, 0.2);
    overflow: hidden;
    margin-top: clamp(20px, 3vw, 40px);
    margin-bottom: 10px;
}

.work-head {
    text-align: center;
    margin-bottom: 1.5rem;
}

.work-main-1-parent {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: clamp(20px, 5vw, 40px);
}

.work-main-1-icon {
    max-width: min(55%, 600px);
    width: 100%;
    height: auto;
    object-fit: contain;
}

.line-parent {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: clamp(15px, 3vw, 30px);
    max-width: 500px;
    width: 42%;
    margin-left: 0;
}

.working-1, .working-2, .working-3, .working-4 {
    padding: clamp(15px, 2vw, 25px);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    font-size: clamp(0.8rem, 1.5vw, 1rem);
}

.work-img1-icon, .work-img2-icon, .work-img3-icon, .work-img4-icon {
    width: clamp(50px, 6vw, 80px);
    height: clamp(50px, 6vw, 80px);
    margin-bottom: 20px;
}

.frame-child, .frame-item {
    position: absolute;
    background-color: var(--primary-color);
    opacity: 0.6;
}

.frame-child {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.frame-item {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

/* Features Section */
.features {
    padding: clamp(80px, 10vw, 120px) var(--container-padding) clamp(60px, 8vw, 100px);
    background-color: #fff;
}

.feat-head {
    text-align: center;
    margin-bottom: clamp(3rem, 4vw, 5rem);
}

.feat-container {
    display: flex;
    flex-direction: column;
    gap: clamp(30px, 5vw, 60px);
}

.features1, .features2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(25px, 5vw, 65px);
}

.feat-1, .feat-2, .feat-3, .feat-4, .feat-5, .feat-6 {
    width: clamp(280px, 28vw, 330px);
    min-height: 300px;
    border-radius: 20px;
    padding: clamp(20px, 3vw, 30px) clamp(15px, 2vw, 25px);
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feat-1:hover, .feat-2:hover, .feat-3:hover, .feat-4:hover, .feat-5:hover, .feat-6:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.feature-icon-wrapper {
    width: clamp(80px, 10vw, 110px);
    height: clamp(80px, 10vw, 110px);
    background-color: rgba(230, 243, 255, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.feat-1 .feature-icon-wrapper, .feat-3 .feature-icon-wrapper, .feat-5 .feature-icon-wrapper {
    background-color: rgba(255, 255, 255, 0.2);
}

.feat-1:hover .feature-icon-wrapper, 
.feat-2:hover .feature-icon-wrapper,
.feat-3:hover .feature-icon-wrapper,
.feat-4:hover .feature-icon-wrapper,
.feat-5:hover .feature-icon-wrapper,
.feat-6:hover .feature-icon-wrapper {
    transform: scale(1.1);
}

.feat-1, .feat-3, .feat-5 {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: var(--light-text);
}

.feat-2, .feat-4, .feat-6 {
    background-color: #fff;
}

.feat-img1-icon, .feat-img2-icon, .feat-img3-icon, 
.feat-img4-icon, .feat-img5-icon, .feat-img6-icon {
    width: clamp(50px, 7vw, 70px);
    height: clamp(50px, 7vw, 70px);
    transition: var(--transition);
}

.cost-sharing, .interest-matching, .notification-system,
.auto-pooling, .secured, .in-app-communication {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    margin-bottom: 1.2rem;
}

.transparent-cost-splitting, .ai-match-users, .real-time-ride-updates,
.dynamically-forms-ride, .the-app-includes, .users-can-chat {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    line-height: 1.6;
}

/* Download Section */
.download {
    position: relative;
    padding: clamp(30px, 4vw, 45px) var(--container-padding) clamp(250px, 30vw, 350px);
    text-align: center;
    background-color: #f5f8ff;
    overflow: hidden;
    margin-bottom: 0;
}

.dwld-img-1-icon {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(90%, 1200px);
    height: auto;
    max-height: 500px;
    object-fit: contain;
    z-index: 1;
}

.download .container {
    position: relative;
    z-index: 2;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(245, 248, 255, 0.9) 40%, rgba(245, 248, 255, 0.5) 70%, rgba(245, 248, 255, 0));
    z-index: 1;
}

.travel-easily-and-container {
    position: relative;
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    margin-bottom: 2.5rem;
    z-index: 1;
}

.travel {
    font-family: 'Righteous', sans-serif;
    color: var(--primary-color);
}

.easily {
    font-family: 'Satisfy', cursive;
    color: #72c641;
}

.download-the-app {
    position: relative;
    font-size: clamp(1.3rem, 3vw, 2.5rem);
    margin-bottom: 3.5rem;
    z-index: 1;
    color: var(--dark-text);
}

.dwld-buttons {
    margin-top: 40px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(15px, 3vw, 30px);
    margin-bottom: 2rem;
    z-index: 1;
}

.dwld-apple, .dwld-android {
    width: clamp(185px, 11em, 160px);
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #1e1e1e;
    color: var(--light-text);
    padding: clamp(10px, 2vw, 15px) clamp(15px, 2.5vw, 25px);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.dwld-apple:hover, .dwld-android:hover {
    transform: scale(1.03) translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.android-1-icon {
    width: 30px;
    height: auto;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color), #1a3664);
    color: var(--light-text);
    padding: clamp(50px, 7vw, 80px) var(--container-padding) clamp(20px, 3vw, 30px);
    border-radius: 30px 30px 0 0;
    position: relative;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: clamp(30px, 4vw, 40px);
    margin-bottom: 50px;
}

.footer-1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    margin-left: clamp(10px, 4vw, 70px);
    margin-top: 25px;
}

.travease-logo-1 {
    width: clamp(150px, 15vw, 200px);
    height: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.div, .traveasegmailcom {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.div::before {
    content: '\f095';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.traveasegmailcom::before {
    content: '\f0e0';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.social-handles {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facebook-icon {
    width: 25px;
    height: 25px;
}

.travease-all-rights {
    text-align: center;
    font-size: 0.95rem;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* Contact Form */
.contact-form {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    margin-right: clamp(10px, 4vw, 70px);
}

.contact-title {
    font-size: clamp(1.5rem, 2.5vw, 1.8rem);
    margin-bottom: 20px;
    color: var(--light-text);
    font-weight: 500;
}

.contact-form-elements {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border-radius: 8px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    font-family: 'Reddit Sans', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.submit-btn {
    background-color: var(--light-text);
    color: var(--primary-color);
    padding: 12px 20px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    align-self: flex-start;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #e6e6e6;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Media Queries */
@media screen and (max-width: 1200px) {
    :root {
        --container-padding: 4%;
    }
    
    .dwld-img-1-icon {
        width: 100%;
        max-height: 400px;
    }
}

@media screen and (max-width: 1024px) {
    :root {
        --container-padding: 3%;
        --header-height: 70px;
    }
    
    .home {
        padding-top: calc(var(--header-height) + 30px);
    }
    
    .work-main-1-icon {
        max-width: 50%;
    }
    
    .line-parent {
        width: 45%;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --container-padding: 3%;
    }
    
    .header {
        padding: 0.5rem 1.5rem;
    }
    
    .hamburger-menu {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 65%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        padding: 10px 20px 100px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 1000;
        margin-right: 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .login{
        width: 150px;
        margin-top: 15px;
    }

    .home-parent {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .help {
        width: 100%;
        text-align: center;
    }
    
    .abouts, .work-main-1-parent {
        flex-direction: column;
        gap: 40px;
    }
    
    .heading {
        margin-bottom: 2.2rem;
        text-align: center;
    }
    .section-divider-abt {
        margin: auto;
        border-radius: 3px;
    }
    .travease-is-your-smart-compani-parent {
        text-align: center;
    }
    .line-parent {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        gap: 25px;
        width: 100%;
        max-width: 500px;
    }
    
    .frame-item, .frame-child {
        display: none;
    }
    
    .download {
        padding-bottom: 230px;
    }
    
    .dwld-img-1-icon {
        max-height: 320px;
    }
    
    .work-main-1-parent {
        flex-direction: column;
        gap: 40px;
    }
    
    .work-main-1-icon {
        max-width: 85%;
        order: 2;
        display: none;
    }
    
    .line-parent {
        width: 100%;
        max-width: 600px;
        order: 1;
    }
    
    .footer-1, .contact-form {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }
}

@media screen and (max-width: 576px) {
    :root {
        --container-padding: 3%;
        --header-height: 65px;
    }
    
    .header {
        padding: 0.5rem 1rem;
    }
    
    .logo-main-icon {
        width: 120px;
        margin-left: 10px;
    }
    
    .nav-menu {
        width: 65%;
    }

    .home {
        padding-top: calc(var(--header-height) + 25px);
    }
    
    .ride-now {
        padding: 10px 15px;
    }
    .frame-inner{
        height: 31px;
    }
    
    .feat-1, .feat-2, .feat-3, .feat-4, .feat-5, .feat-6 {
        width: 90%;
        max-width: 320px;
    }
    
    .download {
        padding-bottom: 180px;
    }
    
    .dwld-img-1-icon {
        max-height: 260px;
    }
    
    .dwld-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .dwld-apple, .dwld-android {
        width: 160px;
    }
    
    .footer {
        padding-top: 50px;
    }
    
    .footer-content {
        justify-content: center;
        text-align: center;
    }
    
    .footer-1 {
        align-items: center;
    }
    
    .contact-form {
        width: 100%;
        padding: 0px 10px;
    }
    
    .submit-btn {
        align-self: center;
    }
}

@media screen and (max-width: 480px) {
    :root {
        --container-padding: 3%;
        --header-height: 60px;
    }
    
    .home {
        text-align: center;
    }

    .easy-parent {
        font-size: 13pt;
        justify-content: center;
        margin-left: 10px;
    }
    .frame-inner{
        width: 3px;
        height: 25px;
        background-color: rgba(0, 0, 0, 0.7);
        border-radius: 5px;
    }
    
    .ride-now {
        margin: 0 auto;
    }
    
    .download {
        padding-bottom: 145px;
    }
    
    .dwld-img-1-icon {
        max-height: 220px;
    }
    
    .working {
        border-radius: 30px;
    }
}

@media screen and (min-width: 1441px) {
    :root {
        --container-padding: 5%;
    }
    
    .container {
        max-width: 1600px;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .feat-1, .feat-2, .feat-3, .feat-4, .feat-5, .feat-6 {
        width: 360px;
        min-height: 380px;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* AOS Animation Custom Styles */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

[data-aos="fade-up"] {
    transform: translate3d(0, 30px, 0);
}

[data-aos="fade-up"].aos-animate {
    transform: translate3d(0, 0, 0);
}

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0s !important;
    }
}



