/* ===========================
   Google Font
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ===========================
   Global
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
   
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#f7f9fb;
    color:#333;
    line-height:1.6;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* ===========================
   Header
=========================== */

header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.navbar{
    width:90%;
    max-width:1300px;
    margin:auto;
    height:80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    width:150px;
}

.nav-links{
    display:flex;
    gap:50px;
}

.nav-links a{
    color:#333;
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover{
    color:#1bb54a;
}

.btn{
    background:#1bb54a;
    color:#fff;
    padding:5px 20px;
    border-radius:30px;
    transition:.3s;
    font-weight:600;
}

.btn:hover{
    background:#0d8c34;
}
/* Navigation Button */
.nav-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 22px;
    background: linear-gradient(135deg, #28a745, #1e7e34);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(40, 167, 69, 0.25);
    white-space: nowrap;
}

.nav-btn:hover{
    background: linear-gradient(135deg, #1e7e34, #28a745);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(40, 167, 69, 0.35);
}

.nav-btn:active{
    transform: translateY(0);
}
/* ===============================
   Google Font
================================*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
}

/* ===============================
   HERO
================================*/

.hero{
    width:100%;
    height:100vh;
    position:relative;
    overflow:hidden;
}

/* ===============================
   SLIDES
================================*/

.slider{
    width:100%;
    height:100%;
    position:relative;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity 2s ease-in-out;
}

.slide.active{
    opacity:1;
    z-index:1;
}
.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Dark Overlay */

.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(255, 255, 255, 0);
}

/* ===============================
   CONTENT
================================*/

.hero-content{
    position:absolute;
    top:30%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#196727;
    width:90%;
    max-width:900px;
}

.hero-content h1{
    font-size:40px;
    font-weight:800;
    margin-bottom:20px;
}

.hero-content p{
    font-size:20px;
    margin-bottom:35px;
    font-weight:400;
}

.hero-btn{
    display:inline-block;
    padding:16px 40px;
    background:#22c55e;
    color:#fff;
    border-radius:40px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.hero-btn:hover{
    background:#15803d;
    transform:translateY(-3px);
}

/* ===============================
   DOTS
================================*/

.dots{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:12px;
    z-index:10;
}

.dot{
    width:14px;
    height:14px;
    border-radius:50%;
    background:#ffffff70;
    cursor:pointer;
    transition:.3s;
}

.dot.active{
    background:#22c55e;
    transform:scale(1.2);
}

/* ===============================
   RESPONSIVE
================================*/

@media(max-width:992px){

.hero-content h1{
    font-size:45px;
}

.hero-content p{
    font-size:18px;
}

}

@media(max-width:768px){

.hero{
    height:75vh;
}

.hero-content h1{
    font-size:34px;
}

.hero-content p{
    font-size:16px;
}

.hero-btn{
    padding:14px 30px;
}

}


/* ===========================
   Services
=========================== */

.services{
    width:90%;
    max-width:1300px;
    margin:100px auto;
}

.services h2{
    text-align:center;
    font-size:42px;
    margin-bottom:50px;
    color:#1bb54a;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.card:hover{
    transform:translateY(-10px);
}

.card img{
    height:220px;
    object-fit:cover;
}

.card h3{
    padding:25px;
    text-align:center;
    font-size:22px;
}

/* ===========================
   About
=========================== */

.about{
    width:90%;
    max-width:1300px;
    margin:100px auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.left img{
    border-radius:20px;
}

.right h2{
    font-size:42px;
    margin-bottom:20px;
    color:#1bb54a;
}

.right p{
    margin-bottom:30px;
    font-size:17px;
}

.right a{
    display:inline-block;
    background:#1bb54a;
    color:#fff;
    padding:15px 35px;
    border-radius:30px;
    font-weight:600;
}

/* ===========================
   Statistics
=========================== */

.stats{
    background:#1bb54a;
    color:#fff;
    padding:80px 8%;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    text-align:center;
}

.box{
    background:rgba(255,255,255,.15);
    border-radius:15px;
    padding:40px;
}

.box h2{
    font-size:50px;
    margin-bottom:10px;
}

.box p{
    font-size:18px;
}

/* ===========================
   Pickup Form
=========================== */

.pickup{
    width:90%;
    max-width:700px;
    margin:100px auto;
    background:#fff;
    padding:50px;
    border-radius:20px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.pickup h2{
    text-align:center;
    color:#1bb54a;
    margin-bottom:35px;
    font-size:38px;
}

.pickup form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.pickup input{
    padding:18px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
}

.pickup input:focus{
    outline:none;
    border-color:#1bb54a;
}

.pickup button{
    background:#1bb54a;
    color:#fff;
    border:none;
    padding:18px;
    border-radius:10px;
    cursor:pointer;
    font-size:18px;
    font-weight:700;
    transition:.3s;
}

.pickup button:hover{
    background:#0d8c34;
}
/* ==========================
   OUR JOURNEY
========================== */

.journey{
    padding:100px 8%;
    background:#f8faf8;
}

.journey-container{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.journey-image{
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.journey-image img{
    width:100%;
    display:block;
    transition:.5s;
}

.journey-image:hover img{
    transform:scale(1.05);
}

.section-tag{
    display:inline-block;
    background:#d9f7e5;
    color:#15803d;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    margin-bottom:18px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.journey-content h2{
    font-size:46px;
    color:#1b4332;
    margin-bottom:25px;
}

.journey-content p{
    font-size:17px;
    color:#555;
    line-height:1.9;
    margin-bottom:18px;
    text-align:justify;
}

.journey-btn{
    display:inline-block;
    margin-top:20px;
    padding:15px 35px;
    background:#22c55e;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    border-radius:50px;
    transition:.3s;
}

.journey-btn:hover{
    background:#15803d;
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(34,197,94,.35);
}

/* ==========================
   Responsive
========================== */

@media(max-width:992px){

.journey-container{
    grid-template-columns:1fr;
}

.journey-content{
    text-align:center;
}

.journey-content p{
    text-align:left;
}

}

@media(max-width:768px){

.journey{
    padding:70px 20px;
}

.journey-content h2{
    font-size:34px;
}

.journey-content p{
    font-size:16px;
}

}
/* ===========================
   Awards
=========================== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f5f5f5;
}

.awards{
    width:90%;
    max-width:1200px;
    margin:60px auto;
    text-align:center;
}

.awards h2{
    font-size:40px;
    color:#1d3557;
    margin-bottom:30px;
}

.award p{
    color:#555;
    line-height:1.8;
    margin-bottom:18px;
    font-size:17px;
}




.awards{
    padding:80px 8%;
    background:#f7faf8;
    overflow:hidden;
}

.awards h2{
    text-align:center;
    font-size:42px;
    color:#1b4332;
    margin-bottom:50px;
}

/* Slider */

.slider{
    position:relative;
    width:100%;
    overflow:hidden;
}

.slider-track{
    display:flex;
    gap:30px;
    width:max-content;
    overflow-x:hidden;
    animation:scroll 20s linear infinite;
}

.slider-track:hover{
    animation-play-state: paused;
}

.award-card{
    width:340px;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    flex-shrink:0;
}

.award-card:hover{
    transform:translateY(-8px);
}

.award-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}


.award-content{
    padding:25px;
}

.award-content h3{
    color:#15803d;
    margin-bottom:15px;
    font-size:22px;
}

.award-content p{
    color:#666;
    line-height:1.7;
    margin-bottom:20px;
    text-align:justify;
}

.award-content a{
    color:#22c55e;
    font-weight:700;
    text-decoration:none;
}

.award-content a:hover{
    color:#15803d;
}

@keyframes scroll{

0%{
    transform:translateX(0);
}

100%{
    transform:translateX(-50%);
}

}



/* =========================
   Arrows
========================= */

.arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.9);
    color:#166534;
    font-size:28px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
    box-shadow:0 5px 15px rgba(0,0,0,.25);
    z-index:100;
}

.arrow:hover{
    background:#16a34a;
    color:#fff;
    transform:translateY(-50%) scale(1.1);
}

.prev{
    left:20px;
}

.next{
    right:20px;
}

/* =========================
   Dots
========================= */

.dots{
    margin-top:20px;
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#ccc;
    display:inline-block;
    margin:5px;
    cursor:pointer;
    transition:.3s;
}

.dot.active{
    background:#16a34a;
    transform:scale(1.2);
}

/* =========================
   Responsive
========================= */

@media(max-width:768px){

.awards h2{
    font-size:30px;
}

.award-card{
    height:180px;
    font-size:24px;
}

.arrow{
    width:45px;
    height:45px;
    font-size:22px;
}

}

/* Buttons */

.btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.9);
    font-size:22px;
    cursor:pointer;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
}

.prev{
    left:15px;
}

.next{
    right:15px;
}

.btn:hover{
    background:#fff;
}

/* Dots */



@media(max-width:768px){

.awards h2{
    font-size:30px;
}

.award-card{
    height:180px;
    font-size:24px;
}

}

/* ===========================
   Footer
=========================== */

footer{
    background:#111;
    color:#fff;
    text-align:center;
    padding:35px;
    margin-top:80px;
}

/* ===========================
   Responsive
=========================== */

@media(max-width:992px){

.hero h1{
    font-size:42px;
}

.about{
    grid-template-columns:1fr;
}

.nav-links{
    gap:20px;
}

}

@media(max-width:768px){

.navbar{
    flex-direction:column;
    height:auto;
    padding:20px 0;
}

.nav-links{
    flex-wrap:wrap;
    justify-content:center;
    margin:20px 0;
}

.hero{
    margin-top:120px;
    height:80vh;
}

.hero h1{
    font-size:34px;
}

.hero p{
    font-size:17px;
}

.services h2,
.about h2,
.awards h2,
.pickup h2{
    font-size:32px;
}

.pickup{
    padding:30px;
}

}

@media(max-width:500px){

.hero h1{
    font-size:28px;
}

.hero-btn,
.btn{
    padding:14px 24px;
}

.stats{
    padding:50px 20px;
}

.box h2{
    font-size:36px;
}

}
.cwm{

font-family: 'Anton', sans-serif;
font-size: 20px;
font-weight: 300;
text-align: center;
color: #137b32;

   
}




/* ===========================
   Trophy Slider
=========================== */

.trophy-section{
    width:90%;
    max-width:1200px;
    margin:60px auto;
    text-align:center;
}

.trophy-title{
    font-size:42px;
    color:#166534;
    margin-bottom:30px;
}

.trophy-slider{
    position:relative;
    overflow:hidden;
    border-radius:15px;
}

.trophy-track{
    display:flex;
    transition:transform .7s ease-in-out;
}

.trophy-item{
    min-width:100%;
    height:420px;
    background:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    padding:30px;
}

.trophy-item img{
    width:220px;
    height:220px;
    object-fit:contain;
    transition:.3s;
}

.trophy-item img:hover{
    transform:scale(1.08);
}

.trophy-item h3{
    margin-top:25px;
    font-size:28px;
    color:#166534;
}

/* Arrows */

.trophy-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.9);
    color:#166534;
    font-size:28px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
}

.trophy-arrow:hover{
    background:#16a34a;
    color:#fff;
}

.trophy-prev{
    left:20px;
}

.trophy-next{
    right:20px;
}

/* Dots */

.trophy-indicators{
    margin-top:20px;
}

.trophy-dot{
    width:12px;
    height:12px;
    display:inline-block;
    background:#ccc;
    border-radius:50%;
    margin:5px;
    cursor:pointer;
    transition:.3s;
}

.trophy-dot.active{
    background:#16a34a;
    transform:scale(1.2);
}

/* Responsive */

@media(max-width:768px){

.trophy-title{
    font-size:30px;
}

.trophy-item{
    height:320px;
}

.trophy-item img{
    width:150px;
    height:150px;
}

.trophy-item h3{
    font-size:22px;
}

.trophy-arrow{
    width:45px;
    height:45px;
    font-size:22px;
}

}

/* ==========================
   DROPDOWN
========================== */

.dropdown{
    position:relative;
}

.dropdown-menu{
    position:absolute;
    top:100%;          /* Directly below About Us */
    left:0;            /* Align with left edge of About Us */

    width:250px;
    background:#fff;
    list-style:none;

    border-radius:8px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);

    opacity:0;
    visibility:hidden;
    transform:translateY(8px);
    transition:all .3s ease;

    z-index:999;
}

.dropdown-menu li{
    width:100%;
}

.dropdown-menu li a{
    display:block;
    padding:14px 18px !important;
    color:#444;
    text-decoration:none;
    border-bottom:1px solid #eee;
    transition:.3s;
}

.dropdown-menu li:last-child a{
    border-bottom:none;
}

.dropdown-menu li a:hover{
    background:#22c55e;
    color:#fff;
}

/* Show Dropdown */

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}




.footer{
    background:#0f3d2e;
    color:#fff;
    margin-top:80px;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;
    padding:70px 20px;
}

.footer-logo{
    width:110px;
    height:110px;
    background:#fff;
    border-radius:28px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:20px;
}

.footer-logo img{
    width:80px;
}

.footer h3{
    margin-bottom:15px;
}

.footer h4{
    margin-bottom:20px;
    color:#8df0b2;
}

.footer-links ul{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#ddd;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#57d38c;
    padding-left:6px;
}

.footer-contact p{
    margin-bottom:12px;
}

.social-icons{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.social-icons a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#1d5b47;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    color:#fff;
    transition:.3s;
}

.social-icons a:hover{
    background:#57d38c;
    transform:translateY(-4px);
}

.footer-bottom{
    text-align:center;
    padding:20px;
    border-top:1px solid rgba(255,255,255,.15);
    font-size:14px;
}

@media(max-width:900px){

.footer-container{
    grid-template-columns:1fr;
    text-align:center;
}

.footer-logo{
    margin:auto auto 20px;
}

.social-icons{
    justify-content:center;
}

}