* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0px 60px;
  background:#ffffff;


border-bottom:2px solid #EB7034;

    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* ===== LOGO ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    
}

.logo img {
height: 180px;
width: 180px;

}





/* ===== MENU ===== */
.menu {
    list-style: none;
    display: flex;
    gap: 40px;
    

}

.menu li {
    position: relative;
}

.menu a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color:#111;
    padding: 5px 0;
    transition: 0.3s;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: black;
    transition: 0.3s;
}

.menu a:hover {
    color:  #EB7034;
}

.menu a:hover::after {
    width: 100%;
}

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background:  #EB7034;;
    border-radius: 3px;
    transition: 0.3s;
}

.quote-btn{
    background:#EB7034;

    color:white;
    padding:10px 22px;
    border-radius:25px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.quote-btn:hover{
background:#111;
color:white;
}





.hero{
position:relative;
height:90vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
overflow:hidden;
}

/* VIDEO BACKGROUND */

.bg-video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:-2;
}

/* DARK OVERLAY */

.hero::after{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
z-index:-1;
}

.hero-content{
max-width:700px;
}

.hero h1{
font-size:48px;
margin-bottom:20px;
}

.hero span{
color:#EB7034;;
}

.hero p{
margin-bottom:30px;
line-height:1.6;
}

/* BUTTONS */

.hero-buttons a{
padding:12px 25px;
margin:10px;
text-decoration:none;
border-radius:6px;
font-size:16px;
}

.btn1{
background: #EB7034;;
color:white;
}
.btn1:hover{
background:#ff8a50;
}



.btn2{
border:1px solid white;
color:white;
}
.btn2:hover{
background:#EB7034;
border:none;
}









.why-choose {
    padding: 80px 8%;
    background:#f5f5f5;

    text-align: center;
}

/* HEADING */
.why-choose h2 {
    color: #EB7034;;  /* Orange */
    font-size: 36px;
    margin-bottom: 50px;
}

/* CARD CONTAINER */
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* CARDS */
.card {
    background:#111;
/* Dark Gray */
    padding: 30px;
    border-radius: 10px;
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

/* CARD HOVER EFFECT */
.card:hover {
    transform: translateY(-10px);
    border: 1px solid #EB7034;;
}

/* CARD TITLE */
.card h3 {
    color:  #EB7034;;   /* Orange */
    margin-bottom: 15px;
}

/* CARD TEXT */
.card p {
    color: #ffffff;   /* White */
    line-height: 1.6;
}







.accessories-section {
    padding: 80px 8%;
    background:#111;

}

/* ROW */
.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 80px;
}

/* REVERSE ROW */
.row.reverse {
    flex-direction: row-reverse;
}




/* IMAGE */
.image img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* CONTENT */
.content1 {
    flex: 1;
}

.content1 h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #EB7034;;   /* Orange */
}

.content1 p {
    font-size: 16px;
    line-height: 1.8;
    color: #cecccc;
    margin-bottom: 15px;
}

/* CONTENT */
.content2 {
    flex: 1;
}

.content2 h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #EB7034;   /* Orange */
}

.content2 p {
    font-size: 16px;
    line-height: 1.8;
    color: #cecccc;
    margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .row {
        flex-direction: column;
        text-align: center;
    }

    .row.reverse {
        flex-direction: column;
    }

    .image img {
        max-width: 100%;
    }
}





.terms-section{
    padding:80px 10%;
   background:#f5f5f5;
    font-family:Arial, Helvetica, sans-serif;
}

.terms-title{
    text-align:center;
    font-size:40px;
    font-weight:700;
    margin-bottom:10px;
    color: #EB7034;;
}

.terms-subtitle{
    text-align:center;
    color:black;
    margin-bottom:50px;
}

/* TERMS BOX */
.terms-box{
    background:#fff;
    padding:25px;
    margin-bottom:20px;
    border-radius:10px;
    border-left:5px solid  #EB7034;;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    transition:0.3s;
}

.terms-box:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.terms-box h3{
    margin-bottom:10px;
    color:#111;
}

.terms-box p{
    color:#555;
    line-height:1.6;
}







/* STATS SECTION */

.stats{
background:#111;
padding:60px 0;
overflow:hidden;
}

/* marquee container */

.stats-marquee{
width:100%;
overflow:hidden;
position:relative;
}

/* moving track */

.stats-track{
display:flex;
gap:40px;
width:max-content;
animation:scrollStats 18s linear infinite;
}

/* stat cards */

.stat-box{
background:#1a1a1a;
padding:35px 45px;
border-radius:12px;
text-align:center;
min-width:220px;
border:1px solid #222;
transition:0.4s;
}



/* hover effect */

.stat-box:hover{
transform:translateY(-8px);
box-shadow:0 10px 30px rgba(235,112,52,0.4);
border-color:#EB7034;
}

.stats-marquee:hover .stats-track{
animation-play-state: paused;
}
/* numbers */

.stat-box h2{
color:#EB7034;
font-size:38px;
margin-bottom:5px;
}

/* text */

.stat-box p{
color:#ddd;
font-size:15px;
}

/* animation */

@keyframes scrollStats{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}








.footer {
    background: linear-gradient(135deg, #111111, #000000);
    color: #ffffff;
    padding: 80px 8% 20px;
    
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    color: #EB7034;;
    margin-bottom: 20px;
}

.footer-logo span {
    color: #EB7034;
}

.footer-col p,
.footer-col ul li a {
    color: #ccc;
    font-size: 18px;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #EB7034;;
    padding-left: 6px;
}
.last{
    border-top: 1px solid #e2dfdf;
    margin-top: 40px;
    padding-top: 15px;
    text-align: center;
    color: #aaa;
    font-size: 16px;
}













@media (max-width:1024px){

nav{
padding:10px 5%;
height:90px;
}

nav ul li{
margin-left:1rem;
}

.hero h1{
font-size:38px;
}

.hero p{
font-size:15px;
}

.card-container{
grid-template-columns:repeat(2,1fr);
}

.row{
gap:40px;
overflow-x: hidden;
}

/* REVERSE ROW */
.row.reverse {
    flex-direction: row-reverse;
    overflow-x: hidden;
}


.content1 {
    flex: 1;
    overflow-x: hidden;
}
.content1 h2{
font-size:28px;
}


.content2 {
    flex: 1;
    overflow-x: hidden;
}
.content2 h2{
font-size:28px;
}




.stats{
padding:50px 0;
}

.stat-box{
min-width:200px;
padding:30px 35px;
}

.stat-box h2{
font-size:34px;
}

.stat-box p{
font-size:14px;
}



}






@media (max-width:768px){

/* HAMBURGER MENU SHOW */
.navbar {
        padding:12px 20px;
        
    }

    .hamburger {
        display: flex;
    }

    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 20px 0;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .menu.active {
        display: flex;
    }

    .menu li {
        margin: 12px 0;
    }



/* HERO */

.hero{
height:80vh;
padding:0 20px;
}

.hero h1{
font-size:32px;
}

.hero p{
font-size:14px;
}

/* WHY CHOOSE */

.card-container{
grid-template-columns:1fr;
}

/* ACCESSORIES */

.row{
flex-direction:column;
text-align:center;
gap:30px;
}

.row.reverse{
flex-direction:column;
}

.image img{
max-width:100%;
}


.stats-track{
gap:25px;
}

.stat-box{
min-width:180px;
padding:25px 30px;
}

.stat-box h2{
font-size:30px;
}

.stat-box p{
font-size:13px;
}

}




@media (max-width:680px){

.navbar {
        padding: 10px 15px;
        height: 70px;
    }

    .logo img {
        width: 140px;
        height: auto;
        
        
    }

.hero{
height:75vh;
}

.hero h1{
font-size:26px;
line-height:1.4;
}

.hero p{
font-size:13px;
}

.hero-buttons a{
padding:10px 18px;
font-size:14px;
}

/* TERMS */

.terms-title{
font-size:30px;
}

.terms-box{
padding:20px;
}

.stats{
padding:40px 0;
}

.stats-track{
gap:20px;
}

.stat-box{
min-width:150px;
padding:20px 25px;
}

.stat-box h2{
font-size:26px;
}

.stat-box p{
font-size:12px;
}

/* FOOTER */

.footer{
padding:60px 6% 20px;
}

.footer-container{
grid-template-columns:1fr;
text-align:center;
}

}