
:root{
    --primary:#007F48;
    --primary-dark:#005c34;
    --accent:#ffcc33;
    --white:#ffffff;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{background:#fff;
overflow-x: hidden;}



/* NAVBAR */
.navbar{
    position:sticky;
    width:100%;
    top:0;
    left:0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
    background:#FFF8E5;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
    z-index:1000;
}

/* LOGO */
.logo img{
    height:50px;   /* logo size control */
    width:auto;
    display:block;
}

/* NAV LINKS */
.nav-links{
    display:flex;
    gap:35px;
}

.nav-links a{
    text-decoration:none;
    color:#18291F;
    font-weight:500;
    font-size:15px;
    position:relative;
    transition:0.3s;
}

/* Modern underline animation */
.nav-links a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:#18291F;
    transition:0.3s ease;
}

.nav-links a:hover::after{
    width:100%;
}

/* BUTTON */
.catalog-btn{
    padding:10px 22px;
    background:#18291F;
    color:#fff;
    border-radius:40px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:0.3s ease;
}

.catalog-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(0,0,0,0.2);
}

/* MOBILE */
.menu-toggle{
    display:none;
    font-size:26px;
    cursor:pointer;
    color:#18291F;
}

@media(max-width:900px){

    .nav-links{
        position:fixed;
        top:0;
        right:-100%;
        width:260px;
        height:100vh;
        background:#FFF8E5;
        flex-direction:column;
        padding-top:100px;
        text-align:center;
        transition:0.4s ease;
        box-shadow:-5px 0 20px rgba(0,0,0,0.1);
    }

    .nav-links.active{
        right:0;
    }

    .menu-toggle{
        display:block;
    }

    .catalog-btn{
        display:none;
    }
}




/* HERO */
.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:90px 20px;
    background:linear-gradient(140deg,var(--primary-dark),var(--primary));
    overflow:hidden;
    color:#fff;
}

.hero-wrapper{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    width:100%;
    
}

.hero-content{
    flex:1;
    z-index:2;
    margin-top:-100px;
}

.tag{
    display:inline-block;
    background:rgba(255,204,51,0.15);
    color:var(--accent);
    padding:8px 18px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    border-radius:30px;
    margin-bottom:20px;
}

.hero-content h1{
    font-size:52px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-content p{
    font-size:17px;
    margin-bottom:35px;
    max-width:520px;
}

.hero-btns{display:flex;gap:18px;margin-bottom:35px;}

/* ===== PREMIUM BUTTON ===== */

/* ===== HERO BUTTONS ===== */

.hero-btn{
    padding:13px 28px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    letter-spacing:.3px;
    position:relative;
    display:inline-block;
    transition:all .35s cubic-bezier(.22,1,.36,1);
}

/* CATALOG */
.hero-main{
    background:#ffcc33;
    color:#000;
    border:2px solid #ffcc33;
}

.hero-main:hover{
    transform:translateY(-4px);
    background:#ffd84d;
    box-shadow:0 14px 30px rgba(0,0,0,.30);
}

/* CALL NOW */
.hero-outline{
    border:2px solid #ffcc33;
    color:#fff;
    background:transparent;
}

.hero-outline:hover{
    background:#ffcc33;
    color:#000;
    transform:translateY(-4px);
    box-shadow:0 14px 30px rgba(0,0,0,.25);
}
.hero-features{display:flex;gap:14px;flex-wrap:nowrap;}

.fbox{
    background:rgba(255,255,255,0.12);
    padding:8px 17px;
    border-radius:30px;
    font-size:14px;
    backdrop-filter:blur(6px);
    border:1px solid rgba(255,255,255,0.18);
    white-space:nowrap;
        /* SMOOTH TRANSITION */
    transition: 
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.4s ease,
        border 0.3s ease;
}

.fbox:hover{
    background:#ffcc33;
    color:#000;
    transform:translateY(-6px) scale(1.05);
    border:1px solid #ffcc33;
    box-shadow:0 12px 25px rgba(0,0,0,0.25);
    cursor:pointer;
}
/* IMAGE AREA */
.hero-visual{
    flex:1;
    position:relative;
    text-align:center;
    overflow:visible;
    height:650px;
}

.hero-visual img{
    position:absolute;
    top:100px;
    left:50%;
    transform:translateX(-50%) scale(1.65);
    max-width:550px;
    width:100%;
    z-index:2;
    animation:float 6s ease-in-out infinite;
}

.circle-bg{
    position:absolute;
    width:620px;
    height:620px;
    background:radial-gradient(circle at center, rgba(255,255,255,0.18), rgba(255,255,255,0.03));
    border-radius:50%;
    top:45%;
    left:60%;
    transform:translate(-50%,-50%);
    z-index:1;
}

@keyframes float{
    0%{transform:translateX(-50%) translateY(0) scale(1.65);}
    50%{transform:translateX(-50%) translateY(-15px) scale(1.65);}
    100%{transform:translateX(-50%) translateY(0) scale(1.65);}
}

/* ================= MOBILE ================= */

@media(max-width:992px){
.hero-features{
    display:none;
}
.hero{
    padding:40px 18px 40px;
}
.hero-wrapper{
    flex-direction:column;
    text-align:center;
    gap:25px;
}

.hero-content h1{font-size:30px;line-height:1.25;}
.hero-content p{font-size:15px;max-width:100%;margin-bottom:25px;}

.hero-btns{justify-content:center;flex-wrap:wrap;gap:12px;}
.btn{padding:12px 22px;font-size:14px;}

.hero-features{justify-content:center;flex-wrap:wrap;gap:10px;}
.fbox{font-size:13px;padding:7px 14px;}

.hero-visual{height:auto;margin-bottom:10px;}

.hero-visual img{
    position:relative;
    top:auto;
    left:auto;
    transform:none;
    animation:none;
    max-width:100%;
    width:100%;
    margin:auto;
}

.circle-bg{
    width:280px;
    height:280px;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

}

@media(max-width:480px){

.hero-content h1{
    font-size:26px;
}

.circle-bg{
    width:300px;
    height:300px;
}

/* IMAGE BADI */
.hero-visual img{
    position:relative;
    top:auto;
    left:40%;
    transform:translateX(-50%) scale(1.38);
    animation:none;
    max-width:100%;
    width:100%;
    margin:auto;
}

}







/* ===== Section ===== */
.services-section{
    padding:100px 0 50px;
}

/* ===== Top Area ===== */
.services-top{
    background:linear-gradient(135deg,var(--primary-dark),var(--primary));
    padding:60px 50px 130px;
    border-radius:25px;
    color:#fff9f9;
    position:relative;
    overflow:hidden;
}

.services-top h2{
    font-size:34px;
    font-weight:700;
}

.services-top p{
    opacity:0.95;
}

.services-btn{
    background:var(--accent);
    color:#000;
    border:none;
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
    transition:all 0.4s ease;
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.services-btn:hover{
    background:#ffd84d;
    transform:translateY(-5px);
    box-shadow:0 18px 35px rgba(0,0,0,0.25);
}

/* ===== Cards Wrapper ===== */
.cards-wrapper{
    margin-top:-85px;
    position:relative;
    z-index:2;
}

/* ===== Card ===== */
.service-card{
    background:#ffffff;
    padding:30px 25px;
    border-radius:20px;
    height:100%;
    position:relative;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
    transition: all 0.45s cubic-bezier(.22,1,.36,1);
    z-index:1;
}

/* Bottom smooth fill layer */
.service-card::before{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:0%;
    background:var(--primary-dark);
    transition:height 0.45s cubic-bezier(.22,1,.36,1);
    z-index:0;
}

/* Keep content above background */
.service-card > *{
    position:relative;
    z-index:2;
}

/* Hover effect */
.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.service-card:hover::before{
    height:100%;
}

.service-card:hover h5,
.service-card:hover p{
    color:#fff;
}

/* Icon */
.icon-box{
    width:65px;
    height:65px;
    border-radius:50%;
    background:rgba(255, 204, 51, 0.266);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    color:var(--primary-dark);
    margin-bottom:20px;
    transition: all 0.35s ease;
}

.service-card:hover .icon-box{
    background:var(--accent);
    color:#000;
    transform:scale(1.08);
}

/* Text */
.service-card h5{
    font-weight:700;
    margin-bottom:12px;
    color:var(--primary-dark);
    transition:0.3s;
}

.service-card p{
    font-size:14px;
    color:#555;
    line-height:1.7;
    transition:0.3s;
}

/* ===== Responsive ===== */
@media(max-width:768px){
    .services-top{
        text-align:center;
        padding:40px 25px 120px;
    }
}





/* Section */
.about-section{
  padding:100px 0;
  overflow:hidden;
}

/* Small Label */
.about-label{
  text-transform:uppercase;
  font-size:14px;
  font-weight:700;
  letter-spacing:2px;
  color:#007F48;
  margin-bottom:15px;
}

/* Heading */
.about-heading{
  font-size:48px;
  font-weight:800;
  color:#005C34;
  line-height:1.2;
}

.about-heading span{
  color:#FFCC33;
}

/* Paragraph */
.about-text{
  margin-top:20px;
  font-size:17px;
  line-height:1.9;
  color:#555;
}

/* Button */
.about-btn{
  display:inline-block;
  margin-top:35px;
  padding:12px 35px;
  background:#007F48;
  color:#fff;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.about-btn:hover{
  background:#004d2c;
  transform:translateY(-3px);
}

/* Image */
.about-image{
  width:100%;
}

.about-image img{
  width:100%;
  max-width:520px;
  height:auto;
  border-radius:30px;
  transition:0.4s;
  transform:scaleX(-1);
}

.about-image img:hover{
  transform:scaleX(-1) scale(1.03);
}

/* Responsive */
@media(max-width:991px){

  .about-section{
    padding:70px 15px;
  }

  .about-heading{
    font-size:32px;
  }

  .about-text{
    font-size:16px;
  }

  .about-image img{
    max-width:100%;
    margin-bottom:20px;
  }

}




.rickshaw-section{
  padding:100px 0 60px 0;
  background: #fff1ca7c;
}

/* ===== Title ===== */
.section-title{
  margin-bottom:60px;
}

.section-title h2{
  font-size:36px;
  font-weight:800;
  color:var(--primary-dark);
  text-transform: uppercase;
  letter-spacing:1px;
  margin-bottom:10px;
}

.section-title h2  span{
  color:var(--accent);
}

.section-title p{
  color:#444;
  font-size:16px;
  max-width:600px;
  margin:0 auto;
  line-height:1.6;
  font-weight:500;
  letter-spacing:0.3px;
  text-align:center;
}

/* ===== Card ===== */
.rickshaw-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  transition:0.5s ease;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
  cursor:pointer;
  position:relative;
}

/* Yellow top strip */
.rickshaw-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:6px;
  background:var(--accent);
  transition:0.4s;
}

.rickshaw-card img{
  width:100%;
  height:240px;
  object-fit:cover;
  transition:0.5s;
}

.card-content{
  padding:22px;
}

.card-content h5{
  font-size:22px;
  font-weight:700;
  color:var(--primary-dark);
  margin-bottom:12px;
  letter-spacing:0.5px;
}

.card-content p{
  font-size:14px;
  color:#555;
  line-height:1.7;
}

/* ===== Hover Effect ===== */
.rickshaw-card:hover{
  transform:translateY(-15px) scale(1.02);
  box-shadow:0 25px 50px rgba(0,0,0,0.2);
}

.rickshaw-card:hover img{
  transform:scale(1.1);
}

.rickshaw-card:hover::before{
  height:100%;
  opacity:0.05;
}

/* ===== Responsive ===== */
@media(max-width:768px){
  .section-title h2{
    font-size:32px;
  }
  .card-content h5{
    font-size:16px;
  }
  .card-content p{
    font-size:13px;
  }
}






/* ===== Section ===== */
.why-section{
  padding:80px 0;
  background:linear-gradient(to right,#f8fbf9,#ffffff);
  position:relative;
  overflow:hidden;
}

/* ===== Heading ===== */
.why-heading h2{
  font-size:44px;
  font-weight:800;
  color:#005c34;
}

.why-heading span{
  color:#ffcc33;
}

.why-heading p{
  margin-top:15px;
  color:#555;
  font-size:16px;
  max-width:600px;
}

/* ===== Feature Box ===== */
.why-feature{
  display:flex;
  align-items:flex-start;
  margin-bottom:30px;
  transition:0.3s ease;
}

.why-feature:hover{
  transform:translateX(10px);
}

/* Icon */
.why-icon{
  min-width:60px;
  height:60px;
  background:#ffcc33;
  color:#000;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:15px;
  font-size:24px;
  margin-right:20px;
  transition:0.3s;
}

.why-feature:hover .why-icon{
  background:#007F48;
  color:#fff;
}

/* Text */
.why-feature h5{
  font-weight:700;
  margin-bottom:6px;
  color:#005c34;
}

.why-feature p{
  margin:0;
  font-size:14px;
  color:#666;
}

/* ===== Image ===== */
.why-img{
  position:relative;
}

.why-img img{
  width:90%;
  border-radius:25px;
  transform:scaleX(-1); /* 🔥 Rickshaw face opposite side */
  transition:0.4s ease;
  /* box-shadow:0 30px 70px rgba(0,0,0,0.15); */
}

.why-img:hover img{
  transform:scaleX(-1) scale(1.03);
}

/* Responsive */
@media(max-width:991px){
  .why-section{
    padding:0px 0;
  }
  .why-heading h2{
    font-size:32px;
  }
}



.premium-footer {
    position: relative;
    background: linear-gradient(135deg,#0d3b2e,#08261d);
    color: #fff;
    padding: 80px 0 40px;
    overflow: hidden;
}

/* Floating Yellow Circle */
.premium-footer::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 300px;
    height: 300px;
    background: #ffcc33;
    border-radius: 50%;
    opacity: 0.05;
}

/* Footer Titles */
.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.footer-title::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #ffcc33;
    position: absolute;
    left: 0;
    bottom: -8px;
    border-radius: 2px;
}

/* Footer Info */
.footer-info {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    transition: all 0.3s;
}

.footer-info:hover p {
    color: #ffcc33;
}

.footer-info i {
    color: #ffcc33;
    font-size: 18px;
    margin-top: 4px;
}

.footer-info p a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-info p a:hover {
    color: #ffcc33;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: #ddd;
    transition: 0.3s;
    font-size: 14px;
}

.footer-links a:hover {
    color: #ffcc33;
    padding-left: 8px;
}

/* About Text */
.footer-about {
    font-size: 14px;
    color: #ddd;
    line-height: 1.8;
}

/* Bottom Bar */
.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 14px;
    color: #aaa;
}

.footer-bottom span {
    font-weight: 500;
    color: #ffcc33;
}

/* Responsive */
@media(max-width:768px){
    .premium-footer{
        text-align:center;
    }
    .footer-info{
        justify-content:center;
    }
    .footer-title::after{
        left:50%;
        transform:translateX(-50%);
    }
    .premium-footer::after{
        display:none;
    }
}



.section{
    width:90%;
    max-width:1200px;
    margin:100px auto;
    overflow: hidden;
}

.title{
    text-align:center;
    font-size:38px;
    font-weight:700;
    color:var(--primary-dark);
}

.title span{
    color:var(--accent);
}

.subtitle{
    text-align:center;
    margin-top:15px;
    color:#555;
    font-size:15px;
}

.containerrr{
    display:flex;
    gap:60px;
    margin-top:70px;
    flex-wrap:wrap;
        align-items:flex-start;   /* 🔥 ye add karo */
}

/* LEFT */
.left{
    flex:0.9;   /* thoda chhota */
    min-width:260px;
}

/* INFO CARD SMALL */
.info-card{
    background:#fff;
    padding:12px 15px;   /* padding kam */
    border-radius:12px;
    margin-bottom:12px;  /* gap kam */
    display:flex;
    gap:12px;
    align-items:flex-start;
    border-left:5px solid var(--accent);
    box-shadow:0 6px 20px rgba(0,0,0,0.05);
    transition:0.3s;
}

.info-card:hover{
    transform:translateY(-3px);
}

.info-card i{
    font-size:16px;   /* icon small */
    color:var(--accent);
    margin-top:4px;
}

.info-card strong{
    display:block;
    color:var(--primary-dark);
    margin-bottom:3px;
    font-size:14px;   /* heading small */
}

.info-card a,
.info-card div{
    font-size:15px;   /* text small */
    color:#080505;
    line-height:1.5;
    text-decoration: none;
    font-weight: 500;
}

.info-card a:hover{
    color:var(--primary-dark);
}


/* RIGHT FORM */
.right{
    flex:1;
    min-width:300px;
    background:#fff;
  padding:35px;   /* 45 se kam karo */
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

form input, form textarea{
    width:100%;
    padding:14px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:14px;
    transition:0.3s;
}

form input:focus, form textarea:focus{
    border-color:var(--primary-dark);
    box-shadow:0 0 0 3px rgba(15,81,50,0.1);
    outline:none;
}

button{
    width:100%;
    padding:15px;
    background:var(--primary-dark);
    color:#fff;
    border:none;
    border-radius:10px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}


.map-section{
    width: 100%;
    max-width: 1100px;   /* bada container */
    margin: 20px auto 80px;
}

.map-container{
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.map-container iframe{
    width: 100%;
    height: 200px;   /* yaha fixed height do */
    border: 0;
}
button:hover{
    background:var(--accent);
    color:#000;
}

@media(max-width:900px){
    .container{
        flex-direction:column;
    }
}




.about-herooo{
width:100%;
height:250px;
background:url("../img/premium_photo-1682144748274-add3d8ed04ea.jpg") center/cover no-repeat;
position:relative;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

/* DARK OVERLAY */

.about-herooo::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0, 0, 0, 0.782);
}

/* HERO CONTENT */

.herooo-content{
position:relative;
color:#fff;
}

/* TITLE */

.herooo-content h1{
font-size:70px;
font-weight:700;
letter-spacing:1px;
margin-bottom:10px;
}

/* YELLOW LINE */

.herooo-line{
width:90px;
height:4px;
background:#FFCC33;
margin:15px auto;
border-radius:5px;
}

/* BREADCRUMB */

.breadcrumb{
font-size:16px;
color:#ddd;
}

.breadcrumb a{
color:#FFCC33;
text-decoration:none;
font-weight:500;
margin-left: 100px;
}

.breadcrumb a:hover{
text-decoration:underline;
}

/* MOBILE */

@media(max-width:768px){
    .breadcrumb a{
color:#FFCC33;
text-decoration:none;
font-weight:500;
margin-left: 40px;
}


.about-herooo{
height:200px;
padding:20px;
}

.herooo-content h1{
font-size:40px;
}

.herooo-line{
width:60px;
}

.breadcrumb{
font-size:14px;
}

}




/* product section */






.product-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:35px;
margin-top: 50px;

}

.product-card{
background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
transition:0.35s;
}

.product-card:hover{
transform:translateY(-10px);
box-shadow:0 25px 50px rgba(0,0,0,0.12);
}




.product-img{
background:#e9c5575d;
padding:20px;
text-align:center;
}

.product-img img{
width:100%;
max-width:260px;
transition:0.4s;
}

.product-card:hover img{
transform:scale(1.05);
}

.product-content{
padding:20px 22px 25px;
text-align:center;
}

.product-title{
font-size:22px;
font-weight:700;
color:#023b22;
margin-bottom:18px;
}

.product-buttons{
display:flex;
gap:10px;
}

.product-buttons a{
flex:1;
padding:11px;
border-radius:40px;
font-size:14px;
font-weight:600;
text-decoration:none;
display:flex;
align-items:center;
justify-content:center;
gap:6px;
}
.catalogg-section{
text-align:center;
margin-top:50px;
}

.catalogg-btn{
display:inline-block;
padding:14px 30px;
border-radius:40px;
font-size:16px;
font-weight:600;
text-decoration:none;
background:#004D2C;
color:#fff;
transition:.3s;
margin-bottom: 50px;
}

.catalogg-btn:hover{
background:#024729;
transform:translateY(-2px);
}
.call-btn{
background:#005C34;
color:#fff;
}

.whatsapp-btn{
background:#25D366;
color:#fff;
}

@media(max-width:900px){
.product-container{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.product-container{
grid-template-columns:1fr;
}
}