/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    color: #111;
    line-height: 1.6;
}

/* ================= NAVBAR ================= */
.navbar {
    height: 72px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    width:260px;
    height:auto;
}

/* Tablet */
@media (max-width:768px){
    .logo img{
        width:130px;
    }
}

/* Mobile */
@media (max-width:480px){
    .logo img{
        width:100px;
    }
}
.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 22px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-links a.active,
.nav-links a:hover {
    color: #2aa845;
}

/* ================= HERO ================= */


.hero {
    position: relative;
    background-image: url("images/Front\ page\ background.jpeg"); /* your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 20px;
    color: white;
}

/* Dark overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.55);
}

/* Content above overlay */
.hero-content {
    position: relative;
    max-width: 900px;
    margin: auto;
    text-align: center;
    z-index: 2;
}

.hero-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
}


/* ================= WHY CHOOSE US ================= */

.why-choose-us{
    position: relative;
    background-image: url("images/why choose us Background.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 20px;
    color: #fff;
}

/* overlay */

.why-choose-us .overlay{
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background: rgba(0,0,0,0.6);
    z-index:1;
}

/* content */

.why-content{
    position: relative;
    z-index:2;
    max-width:1000px;
    margin:auto;
}

/* heading */

.why-choose-us h2{
    text-align:center;
    font-size:36px;
    margin-bottom:40px;
}

.why-choose-us h2 span{
    color:#3ecf8e;
}

/* list */

.why-list{
    list-style:none;
    padding:0;
}

.why-list li{
    display:flex;
    gap:20px;
    margin-bottom:25px;
    align-items:flex-start;
}

.why-list i{
    font-size:26px;
    color:#3ecf8e;
}

.why-list h4{
    margin:0;
    font-size:20px;
}

.why-list p{
    margin:5px 0 0;
    font-size:16px;
    line-height:1.6;
}

/* buttons */

.buttons{
    text-align:center;
    margin-top:40px;
}

.btn-primary{
    background:#3ecf8e;
    padding:12px 25px;
    color:#fff;
    text-decoration:none;
    border-radius:5px;
    margin-right:15px;
}

.btn-outline{
    border:2px solid #fff;
    padding:12px 25px;
    color:#fff;
    text-decoration:none;
    border-radius:5px;
}

/* ================= MOBILE ================= */

@media (max-width:768px){

.why-choose-us{
    padding:70px 20px;
}

.why-choose-us h2{
    font-size:28px;
}

.why-list li{
    flex-direction:column;
    gap:10px;
}

.why-list i{
    font-size:22px;
}

.why-list h4{
    font-size:18px;
}

.why-list p{
    font-size:14px;
}

.buttons a{
    display:block;
    margin:10px auto;
    width:200px;
}

}

/* ================= HERO BUTTONS ================= */
.buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn-primary {
    background: #2aa845;
    color: #fff;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
}

.btn-outline {
    border: 2px solid #2aa845;
    color: #2aa845;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
}

/* ================= VALUE SECTION ================= */

.value-section{
    background:#f8fafc;
    padding:100px 20px;
    text-align:center;
}

.value-container{
    max-width:1000px;
    margin:auto;
}

.icon-circle{
    width:70px;
    height:70px;
    background:#22c55e;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin:auto;
    margin-bottom:25px;
}

.value-section h2{
    font-size:32px;
    line-height:1.4;
    margin-bottom:20px;
}

.value-desc{
    font-size:17px;
    color:#555;
    margin-bottom:40px;
}

/* stats */

.stats{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.stat-card{
    background:#fff;
    padding:25px 40px;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.stat-card h3{
    font-size:28px;
    margin-bottom:5px;
}

.purple{color:#8b5cf6;}
.blue{color:#3b82f6;}
.green{color:#22c55e;}

/* button */

.learn-btn{
    display:inline-block;
    margin-top:40px;
    padding:12px 28px;
    background:#22c55e;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
}



/* ================= WHO WE SERVE ================= */

.who-we-serve{
    padding:100px 20px;
    background:#ffffff;
    text-align:center;
}

.serve-container{
    max-width:1100px;
    margin:auto;
}

.who-we-serve h2{
    font-size:32px;
    margin-bottom:15px;
}

.who-we-serve span{
    color:#22c55e;
}

.who-desc{
    font-size:16px;
    color:#666;
    margin-bottom:40px;
}

/* slider */

.serve-slider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
}

.serve-viewport{
    overflow:hidden;
    width:100%;
}

.serve-track{
    display:flex;
    gap:20px;
    transition:0.4s;
}

/* card */

.serve-card{
    background:#f8fafc;
    padding:30px;
    border-radius:10px;
    min-width:300px;
    text-align:left;
    box-shadow:0 10px 20px rgba(0,0,0,0.08);
}

.serve-icon{
    font-size:26px;
    color:#22c55e;
    margin-bottom:15px;
}

.serve-tag{
    font-size:12px;
    color:#999;
    letter-spacing:1px;
}

.serve-card h3{
    margin:8px 0;
}

.arrow{
    background:#22c55e;
    border:none;
    color:#fff;
    width:40px;
    height:40px;
    border-radius:50%;
    cursor:pointer;
}

/* indicator */

.slider-indicator{
    margin-top:20px;
    color:#777;
}

/* partner button */

.partner-btn{
    display:inline-block;
    margin-top:30px;
    padding:12px 28px;
    background:#22c55e;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
}



/* ================= FOOTER ================= */

.footer{
    background:#111;
    color:#fff;
    text-align:center;
    padding:20px;
}



/* ================= MOBILE ================= */

@media (max-width:768px){

.value-section{
padding:70px 20px;
}

.value-section h2{
font-size:24px;
}

.value-desc{
font-size:15px;
}

.stats{
flex-direction:column;
align-items:center;
}

.stat-card{
width:80%;
}

.who-we-serve{
padding:70px 20px;
}

.who-we-serve h2{
font-size:24px;
}

.serve-slider{
flex-direction:column;
}

.arrow{
display:none;
}

.serve-card{
min-width:100%;
}

}