* { 
margin: 0; 
padding: 0; 
font-family: "Poppins", sans-serif; 
} 


body 
{
 background:white; color: #333; 
} 

/* Navbar */ /* Navbar */ 
.navbar { 
display: flex; 
justify-content: space-between; 
align-items: center; 
background: rgba(255, 254, 254, 0.9); 
box-shadow: 0 4px 10px rgba(0,0,0,0.05);
 padding: 10px 30px;
 }

 /* Logo */ 
.logo { height: 6rem; 
width: auto; 
} 

/* Nav links */ 
.nav-list ul
 { position: relative; 
left: 90px; 
list-style: none; 
display: flex; 
gap: 25px; 
margin: 0; 
padding: 0;
 } 

.nav-list ul li a { 
text-decoration: none; 
color: #3E3C38; 
font-weight: 600; 
font-family: "Poppins", sans-serif;
 transition: color 0.3s; 
} 

.nav-list ul li a:hover { 
color: #FF9900; 
} 

/* Contact Us Button */ 
.contact-button { 
background-color: #02A0A0; 
color: white; 
padding: 10px 25px; 
border-radius: 20px; 
text-decoration: none; 
font-weight: 600; 
font-family: "Poppins", sans-serif; 
transition: 0.3s; 
} 
.contact-button:hover { 
background-color: white; 
background:linear-gradient(to bottom, #FF9900 0%, #FF7700 100%); 
box-shadow: 0 0 6px rgba(231, 144, 15, 0.4); 
border: 2px solid #FF9900; 
} 

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    margin-left: 15px;
}

.side-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 230px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.4s ease;
    padding: 20px;
    z-index: 1000;
}

.side-panel.active {
    right: 0;
}

.side-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.side-logo {
    height: 50px;
}

.close-btn {
    font-weight: 600;
    font-size: 26px;
    cursor: pointer;
}
.close-btn:hover{
    cursor: pointer;
    color: #FF9900;
}

.side-menu {
    list-style: none;
    padding: 30px 0;
}

.side-menu li {
    margin-bottom: 20px;
}

.side-menu li a {
    text-decoration: none;
    color: #3E3C38;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}
.side-menu li a:hover{
    color: #FF9900;
}


/* Hero */
.hero {
    margin-top: 20px;
    height: 86vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.text-side{
    width: 100%;
    display: flex;
    justify-content:center;
    flex-direction:column;
    text-align: left;
    position: relative;
    left: 120px;
    bottom: 70px;
}
.hero-heading{
    font-weight: 800;
    font-size: 50px;
    color:#3E3C38;
}
.hero-para{
    font-weight: 500;
    font-size: 16px;
    color:#605e5a;
}
.image-side{
    position: relative;
    bottom: 20px;
    right:50px;
    width: 100%;
    display: flex;
    align-items: center;
}
.tiffin-box{
    width: 90%;
    height:85%;
}
.hero-button{
    margin-top: 20px;
    width:13rem;
    height:2.5rem;
    text-align: center;
    background:linear-gradient(to bottom, #FF9900 0%, #FF7700 100%);
    box-shadow: 0 0 6px rgba(231, 144, 15, 0.4);
    font-weight: 600;
    font-size: 13px;
    border-radius: 20px;
}
a{
    color: white;
    text-decoration: none;
    text-align: center;
    align-content: center;
}
.section2{
    margin-top:30px;
}
.heading2{
    font-weight: 700;
    font-size: 32px;
    color:#3E3C38; 
    text-align: center;
}

.section2-para{
    text-align: center;
    line-height: 2rem;
    padding-left: 60px;
    padding-right: 60px;
}
.card-container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    padding: 50px 100px 40px 100px;
}
.card{
    display: flex;
    flex-direction: column; 
    box-shadow: 0 5px 20px rgba(0.5,1,0.6,0.05);
    border-radius: 10px;
    text-align: left;
    padding-bottom: 20px;
}
.bike-img{
    align-self: center;
    margin-top: 20px;
    width: 180px;
    height: 180px;
    padding: 0;
    align-content: center;
    padding-bottom: 10px;
}
.heading3{
    margin-top: 1rem;
    padding-left: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-align: left;
    color:#3E3C38; 
    line-height: 2rem;
}
.para3{
padding-left:10px;
 color:#3E3C38;
 font-size: 0.8rem; 
}
.section3-container{
    padding: 50px 100px 10px 100px; 
    margin: 15px;
}
.section3{
    padding: 20px 100px 40px 100px; 
    margin: 15px;
}
.blankspace{
    width: 100%;
    height: 40vh;
    background-color:#02A0A0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.headinglast{
    align-content: flex-start;
    font-weight: 700;
    font-size: 1.4rem;
    text-align: center;
    color:white; 
    line-height: 2rem;
}
.blankbutton{
    margin-top: 20px;
    width:13rem;
    height:2.5rem;
    text-align: center;
    background:linear-gradient(to bottom, #FF9900 0%, #FF7700 100%);
    box-shadow: 0 0 6px rgba(231, 144, 15, 0.4);
    font-weight: 600;
    font-size: 13px;
    border-radius: 20px; 
    align-content: center;
}
.blankbutton:hover{
    background-color: white;
    background:linear-gradient(to bottom, #FF9900 0%, #f97706 100%);
    box-shadow: 0 0 6px rgba(198, 125, 16, 0.4);
    border: 2px solid #FF9900;
}

/* footer {
    display: flex;
    justify-content: space-between;
    padding: 60px 60px;
    height: 14vh;
    background:#333;
    color:white;
}
.footerpara{
    font-size: 13px;
    line-height:1.5rem;
    padding: 0;
}
.footerpara1 {
    font-size: 13px;
    line-height:1.5rem;
    padding-top: 0.5rem;
    padding-bottom: 10px;
    margin: 0;
}
.footer-logos{
display: flex;
margin-top: 2px;
}

.instalogo{
    margin-top:2px;
    margin-left: 2px;
    width: 28px;
    height: 25px;
}
.bexoinsta{
    margin-top: 1px;
} */

footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px 80px;
    background: #333;
    color: white;
}

/* Left & Right Sections */
.footer-left {
    width: 50%;
}

.footer-right {
    width: 40%;
    text-align: right;
}

/* Instagram section */
.footer-logos {
    display: flex;
    justify-content: flex-end;
    align-items:center;
    text-align: center;
    gap: 8px;
    margin-top: 8px;
}

.instalogo {
    width: 30px;
    height: 30px;
}

.bexoinsta {
    margin: 0;
    padding-bottom: 10px;
}

/* terms and conditions */

.termsheading{
    font-size: 28px;
    text-align: center;
    padding-top: 30px;
    color:#3E3C38;
}
.terms-para{
    padding-top: 0.5rem;
    text-align: center;
    font-size: 14px;
    line-height:1.4rem;
    padding-left: 60px;
    padding-right: 60px;
}
.main-sec{
    padding-top: 30px;  
    padding-left: 60px;
    padding-bottom: 40px; 
    margin-top: 20px; 
    font-weight: 600;
    font-size: 13px; 
}
.terms-section{
    padding: 0px 60px 80px 60px;
}
.termsh3{
    font-size: 15px;
    color: #3E3C38;
    padding-top: 10px;
    font-weight: 600;
}
.termsdescription{
    font-size:14px;
    line-height: 2rem;
}
.termslist{
    padding-left: 30px;
    font-size: 13px;

}
.sublist{
    padding-left: 30px;
}

/* responsive */

/* Mobile Responsiveness */

@media screen and (max-width: 768px) {

     html, body {
        overflow-x: hidden;
    }

    .nav-list {
        display: none !important;
    }

    .hamburger {
        display: block !important;
    }
    .hamburger:hover{
        color:#FF9900;
    }

    .nav-right {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .navbar {
        padding: 10px 20px;
    }

    .logo {
        height: 4rem;
    }

    .contact-button {
        margin-left: 60px;
        padding: 6px 14px;
        font-size: 10px;
    }

    /* HERO SECTION */
    .hero {
        grid-template-columns: 1fr;
        height: auto;
        padding: 20px;
        gap: 30px;
    }

    .text-side {
        position: static !important;
        left: 0 !important;
        bottom: 0;
        text-align: center;
        align-items: center;
    }


    .hero-heading {
        margin-top: 20px;
        font-size: 50px;
    }

    .hero-para {
        padding-top: 15px;
        font-size: 15px;
    }
    .hero-button{
        margin-top: 25px;
        margin-bottom: 20px;
    }

    .image-side {
        position: static;
        right: 0;
        bottom: 0;
        justify-content: center;
    }

    .tiffin-box {
        width: 100%;
        height: auto;
        margin-bottom: 25px;
    }

    .hero-button {
        width: 11rem;
        height: 2.3rem;
        font-size: 12px;
    }

    /* SECTION HEADINGS */
    .heading2 {
        font-size: 22px;
        padding: 0 20px;
    }

    .section2-para {
        padding: 0 20px;
        font-size: 12px;
        line-height: 1.6rem;
    }

    /* CARDS */
    .card-container,
    .section3-container,
    .section3 {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        margin: 0;
    }

    .card {
        padding: 20px;
    }

    .bike-img {
        width: 140px;
        height: 140px;
    }

    .heading3 {
        font-size: 16px;
    }

    .para3 {
        font-size: 12px;
    }

    /* CTA SECTION */
    .blankspace {
        height: auto;
        padding: 40px 20px;
    }

    .headinglast {
        font-size: 17px;
        padding-left: 0;
        padding-right: 0;    
    }

    .blankbutton {
        width: 10rem;
        height: 2.3rem;
        font-size: 13px;
        margin-top: 10px;
    }

    /* FOOTER */
        footer {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 40px 10px;
        gap: 10px;
    }

    .footer-left,
    .footer-right {
        width: 100%;
        text-align: center;
    }

    .footer-logos {
        justify-content: center;
        margin-left: 20px;
    }
    .footerheading{
        font-size: 18px;
    }
    .footerpara{ 
        font-size: 13px;
    }
    .footerpara1{
        font-size: 13px;
        margin-top: 10px;
        padding-bottom: 0px;
    }
    /* terms and conditions page */
    .termsheading{
        font-size: 35px;
        padding-top: 40px;
    }
    .terms-para{
        font-size: 13px;
        padding-left:15px;
        padding-right: 15px;
        padding-top: 20px;
        text-align: center;
    }
    .main-sec{
        padding-left: 15px;
        padding-bottom: 20px;
        padding-top: 20px;
        margin-top: 20px;
    }
    .terms-section{
        padding-left: 20px;
    }
    .termsdescription{
        font-size: 12px;
    }
    .termsh3{
        font-size: 15px;
    }
    .termslist{
        font-size: 11px;
    }
    .instalogo{
        width: 22px;
        height: 20px;
    }
    .bexoinsta{
        margin-right:20px;
    }
}