/* ==========================================
   EGESA MABATI
   Main Stylesheet
   ========================================== */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   ROOT VARIABLES
========================================== */

:root{

    --primary:#037530;
    --accent:#E85D1A;
    --white:#FFFFFF;
    --light:#F8F9FA;
    --dark:#222222;
    --border:#E9ECEF;

}

/* ==========================================
   RESET
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    background:var(--white);
    color:var(--dark);
    overflow-x:hidden;
    line-height:1.6;

}

/* ==========================================
   LINKS
========================================== */

a{
    text-decoration:none;
    transition:.3s ease;

}

/* ==========================================
   NAVBAR
========================================== */
.navbar{
    background:#fff !important;
    padding:16px 0;
    box-shadow:0 4px 20px rgba(0,0,0,.06);
    transition:.3s;
    z-index:999;

}

/* Logo */
.logo{
    height: 50px;   /* adjust size */
    width: auto;
}

/* Navigation */
.navbar-nav{
    gap:10px;

}

.navbar-nav .nav-link{
    position:relative;
    display:inline-block;
    color:var(--dark) !important;
    font-size:16px;
    font-weight:600;
    margin:0 8px;
    padding:10px 2px !important;
    transition:color .3s ease;

}

/* Hover */
.navbar-nav .nav-link:hover{
    color:var(--accent) !important;

}

/* Active */
.navbar-nav .nav-link.active{
    color:var(--primary) !important;
}

/* Underline */
.navbar-nav .nav-link::before{
    content:"";
    position:absolute;
    left:50%;
    bottom:-2px;
    width:0;
    height:1px;
    background:var(--primary);
    border-radius:30px;
    transform:translateX(-50%);
    transition:.3s;

}

/* Hover Underline */
.navbar-nav .nav-link:hover::before{
    width:100%;

}

/* Active Underline */
.navbar-nav .nav-link.active::before{
    width:100%;

}

/* Dropdown */
.dropdown-menu{
    border:none;
    border-radius:12px;
    padding:8px 0;
    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.dropdown-item{
    font-size:15px;
    font-weight:500;
    padding:12px 20px;
    transition:.3s;

}

.dropdown-item:hover{
    background:var(--primary);
    color:#fff;

}

/* Cart */

.nav-icon{
    color:var(--dark);
    font-size:22px;
    transition:.3s;

}

.nav-icon:hover{
    color:var(--accent);

}

.badge{
    font-size:10px;
    font-weight:600;

}

/* MOBILE CART + HAMBURGER */
.mobile-actions{
    display:none !important;
}


/* DESKTOP CART */
.desktop-cart{
    display:flex;
}


/* MOBILE ONLY */
@media(max-width:991px){

    .mobile-actions{
        display:flex !important;
    }

    .desktop-cart{
        display:none;
    }

}

/* ==========================================
   BUTTONS
========================================== */
.btn-primary-custom{
    background:var(--primary);
    color:#fff;
    border:none;
    border-radius:8px;
    padding:10px 24px;
    font-weight:600;
    transition:.3s;

}

.btn-primary-custom:hover{
    background:#025d26;
    color:#fff;

}

.btn-accent{
    background:var(--accent);
    color:#fff;
    border:none;
    border-radius:8px;
    padding:10px 24px;
    font-weight:600;
    transition:.3s;

}

.btn-accent:hover{
    background:#c94c12;
    color:#fff;

}

/* ==========================================
   CARDS
========================================== */
.card{
    border:none;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.06);
    transition:.35s;

}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

/* ==========================================
   SECTION TITLES
========================================== */
.section-title{
    font-size:34px;
    font-weight:700;
    margin-bottom:15px;

}

.section-subtitle{
    color:#666;
    margin-bottom:50px;

}

/* ==========================================
   LANDING PAGE
========================================== */
.hero-slider{
    position: relative;
    height: 68vh; /* 🔥 reduced height */
    overflow: hidden;
}

.slide{
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: 1s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active{
    opacity: 1;
}

.overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1);
}

.hero-content{
    position: relative;
    color: white;
    max-width: 600px;
    z-index: 2;
}

.hero-content h1{
    font-size: 42px;
    font-weight: 700;
}

.hero-content p{
    margin-bottom: 15px;
    opacity: 0.9;
}


.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0px;
    margin-bottom: 40px;
    color: #222;
    position: relative;
}

/* Small underline */
.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #037530; /* change color as needed */
    margin: 12px auto 0;
    border-radius: 5px;
}

.card {
    border-radius: 0px;
    height: auto;
    display: flex;
    flex-direction: column;
}

.product-img {
    width: 100%;
    height: auto;
    display: block;
}

.card-body {
    flex: 1;
}

/* =========================================
   FOOTER
========================================= */

.footer{
    background:var(--primary);
    color:#fff;
    padding:80px 0 35px;
}

/* =========================================
   LAYOUT
========================================= */

.footer-row{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:60px;
    flex-wrap:wrap;
}

/* =========================================
   LEFT
========================================= */

.footer-left{
    flex:1;
    min-width:300px;
    max-width:380px;
}

.footer-logo{
    height:70px;
    margin-bottom:15px;
}

.footer-left h4{
    font-size:28px;
    font-weight:700;
    margin-bottom:15px;
}

.footer-left p{
    font-size:17px;
    line-height:1.8;
    color:rgba(255,255,255,.82);
}

/* =========================================
   CENTER
========================================= */

.footer-center{
    flex:1;
    min-width:330px;
    display:flex;
    justify-content:space-between;
    gap:60px;
}

/* Titles */

.footer-links h5,
.footer-contact h5,
.footer-right h5{
    font-size:21px;
    font-weight:700;
    margin-bottom:18px;
}

/* =========================================
   LINKS
========================================= */

.footer-links ul{
    margin:0;
    padding:0;
    list-style:none;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:rgba(255,255,255,.82);
    text-decoration:none;
    font-size:17px;
    transition:.3s;
}

.footer-links a:hover{
    color:var(--accent);
    padding-left:6px;
}

/* =========================================
   CONTACT
========================================= */

.footer-contact p{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:12px;
    font-size:17px;
    color:rgba(255,255,255,.82);
}

.footer-contact i{
    color:var(--accent);
    width:22px;
    text-align:center;
}

.footer-contact a{
    color:rgba(255,255,255,.82);
    text-decoration:none;
    transition:.3s;
}

.footer-contact a:hover{
    color:var(--accent);
}

/* =========================================
   RIGHT
========================================= */

.footer-right{
    flex:1;
    min-width:260px;
    text-align:center; /* CENTER FOLLOW US */
}

.footer-right h5{
    font-size:22px;
    font-weight:700;
    color:#fff;
    margin-bottom:18px;
}

/* =========================================
   SOCIAL ICONS
========================================= */

.social-icons{
    display:flex;
    justify-content:center; /* CENTER ICONS */
    align-items:center;
    gap:15px;
    margin-top:10px;
}

.social-btn{
    width:58px;
    height:58px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    color:#fff !important;
    text-decoration:none;
    transition:.35s ease;
}

.social-btn i{
    font-size:24px;
}

.social-btn:hover{
    transform:translateY(-5px);
    color:#fff !important;
}

/* BRAND COLORS */

.social-btn.facebook:hover{
    background:#1877F2;
}

.social-btn.instagram:hover{
    background:#E4405F;
}

.social-btn.tiktok:hover{
    background:#000;
}

.social-btn.whatsapp:hover{
    background:#25D366;
}

.social-btn.youtube:hover{
    background:#FF0000;
}


/* MOBILE */

@media(max-width:768px){

    .footer-right{
        text-align:left;
    }

    .social-icons{
        justify-content:flex-start;
    }

}
/* =========================================
   BOTTOM
========================================= */

.footer-bottom{
    margin-top:50px;
    padding-top:20px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.15);
}

.footer-bottom p{
    margin:0;
    font-size:15px;
    color:rgba(255,255,255,.75);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:992px){

    .footer-row{
        gap:40px;
    }

    .footer-center{
        gap:40px;
    }

}

@media(max-width:768px){

    .footer{
        padding:60px 0 30px;
    }

    .footer-row{
        flex-direction:column;
        gap:35px;
    }

    .footer-center{
        flex-direction:column;
        gap:30px;
    }

    .footer-right{
        text-align:left;
    }

    .social-icons{
        justify-content:flex-start;
    }

    .footer-left,
    .footer-center,
    .footer-right{
        min-width:100%;
    }

}
/* ==========================================
   DESKTOP HOVER DROPDOWN
========================================== */

@media (min-width: 992px){

    .navbar .dropdown{
        position: relative;
    }

    .navbar .dropdown-menu{
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all .3s ease;
        margin-top: 0;
    }

    .navbar .dropdown:hover > .dropdown-menu{
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

}

/* ==========================================
   SHOP PAGE
========================================== */
.category-list{
    display:flex;
    flex-direction:column;
    gap:5px;
}

.category-item{
    display:block;
    padding:10px 15px;
    background:#fff;
    border:1px solid #e9ecef;
    border-radius:8px;
    color:var(--dark);
    font-size:15px;
    font-weight:500;
    transition:all .3s ease;
}

.category-item:hover{
    background:var(--primary);
    color:#fff;
    transform:translateX(4px);
}

.category-item.active{
    background:var(--primary);
    color:#fff;
    border-color:var(--primary);

}

/* ==========================================
   PRODUCT CARDS (SHOP RIGHT SIDE)
========================================== */
.product-card{
    border: none;
    border-radius: 1px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: 0.3s ease;

    height: 440px;
    display: flex;
    flex-direction: column;
}

.product-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,.08);
}

/* IMAGE */
.product-img{
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

/* BODY */
.product-body{
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* TITLE */
.product-title{
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
}

/* PRICE */
.product-price{
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
}

/* RATING */
.product-rating{
    font-size: 13px;
    color: #f5a623;
    margin-bottom: 10px;
}

/* ACTIONS (MORE CONTROLLED LIFT) */
.product-actions{
    margin-top: auto;

    display: flex;
    justify-content: center;
    align-items: flex-start;   /* pulls button slightly upward */

    padding-bottom: 18px;      /* creates controlled lift effect */
}

/* BUTTON */
.btn-add{
    display: inline-block;
    width: auto;

    background: var(--primary);
    color: #fff;
    border: none;

    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;

    text-align: center;
    text-decoration: none;

    transition: 0.3s ease;
}

.btn-add:hover{
    background: #025d26;
}

/* WISHLIST */
.wishlist{
    font-size: 18px;
    color: #999;
    cursor: pointer;
    transition: 0.3s;
}

.wishlist:hover{
    color: var(--accent);
}

.cart-sidebar{
    position: fixed;
    top: 0;
    right: -420px;
    width: 380px;
    height: 100%;
    background: #fff;
    box-shadow: -10px 0 30px rgba(0,0,0,0.18);
    transition: right 0.35s ease;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    border-left: 1px solid #eee;
}

/* OPEN STATE */
.cart-sidebar.open{
    right: 0;
}

/* HEADER */
/* HEADER */
.cart-header{
    padding: 16px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}

/* TITLE */
.cart-title{
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* BADGE */
.cart-badge{
    font-size: 12px;
    background: #0a8f3c; /* GREEN */
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
}

/* CLOSE BUTTON */
.cart-close{
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #f3f3f3;
    color: #111;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
}

/* HOVER (ORANGE THEME) */
.cart-close:hover{
    background: #ff9800;
    color: #fff;
    transform: rotate(90deg);
    box-shadow: 0 4px 10px rgba(255,152,0,0.3);
}

/* CLICK EFFECT */
.cart-close:active{
    transform: scale(0.9) rotate(90deg);
}

.cart-header h4{
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

/* BODY */
.cart-body{
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #fafafa;
}

/* FOOTER */
.cart-footer{
    padding: 15px;
    border-top: 1px solid #eee;
    background: #fff;
}

/* OVERLAY */
#cartOverlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    display: none;
    z-index: 9998;
}

/* CART ITEM */
.cart-item{
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: 0.2s ease;
}

.cart-item:hover{
    transform: translateY(-2px);
}

/* IMAGE */
.cart-img{
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #eee;
}

/* INFO */
.cart-info{
    flex: 1;
}

.cart-name{
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
}

/* CONTROLS */
.cart-controls{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}

/* + and - BUTTONS */
.qty-btn{
    width: 28px;
    height: 28px;
    border: none;
    background: #f1f1f1;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.qty-btn:hover{
    background: #ff9800;
    color: #fff;
}

/* QTY TEXT */
.qty{
    min-width: 20px;
    text-align: center;
    font-weight: 600;
}

/* REMOVE BUTTON */
.remove-btn{
    margin-left: auto;
    border: none;
    background: #e74c3c;
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: 0.2s;
}

.remove-btn:hover{
    background: #c0392b;
}

/* SUBTOTAL */
.cart-subtotal{
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-top: 1px solid #eee;
    font-size: 16px;
    font-weight: 600;
}

/* ================= CART OFFICE SLIDE ================= */
.office-slide{
    background:#fff;
    border-radius:20px 20px 0 0;
    padding:25px;
    margin-top:15px;
    position:relative;
    overflow:hidden;
    max-height:0;
    opacity:0;
    transform:translateY(100%);
    transition:all .35s ease;
}

/* SHOW OFFICE SLIDE */
.office-slide.active{
    max-height:250px;
    opacity:1;
    transform:translateY(0);
}

/* CLOSE BUTTON */
.office-close{
    position:absolute;
    top:8px;
    right:15px;
    border:none;
    background:none;
    font-size:28px;
    line-height:1;
    cursor:pointer;
    color:#333;
}

/*================ PAGINATION ================*/

.pagination{
    margin-top:50px;
    gap:10px;
}

.pagination .page-link{
    width:45px;
    height:45px;
    border-radius:12px;
    border:1px solid #e5e5e5;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
    color:var(--primary);
    background:#fff;
    transition:0.3s;
    box-shadow:0 3px 10px rgba(0,0,0,.05);
}

.pagination .page-link:hover{
    background:var(--primary);
    color:#fff;
    border-color:var(--primary);
    transform:translateY(-2px);
}

.pagination .page-item.active .page-link{
    background:var(--primary);
    color:#fff;
    border-color:var(--primary);
}

.pagination .page-item.disabled .page-link{
    opacity:.5;
    pointer-events:none;
}


/*================ 
     PRODUCT PAGE 
================*/
.variant-btn{
    padding:8px 14px;
    border:1px solid;   /* ORANGE border */
    border-radius:25px;
    background:#fff;
    cursor:pointer;
    transition:0.25s ease;
    font-size:14px;
    color:#333;
    font-weight:500;
}

/* HOVER STATE (ORANGE highlight) */
.variant-btn:hover{
    color: #fff;
    background-color:#ff9800;
    transform: translateY(-1px);
}

/* SELECTED STATE (GREEN ACTIVE) */
.variant-btn.active{
    background:#28a745;   /* GREEN */
    color:#fff;
    border-color:#28a745;
    box-shadow:0 4px 10px rgba(40,167,69,0.25);
}

/* optional smooth feel */
.variant-btn:active{
    transform: scale(0.96);
}

.back-btn{
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:8px 14px;
    border-radius:25px;
    background:#037530;
    border:1px solid;
    color:#fff;
    font-weight:600;
    font-size:14px;
    text-decoration:none;
    transition:0.25s ease;
    box-shadow:0 2px 8px rgba(0,0,0,0.05);
}

/* hover effect */
.back-btn:hover{
    background:#ff9800;
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 6px 15px rgba(255,152,0,0.25);
}

/* click effect */
.back-btn:active{
    transform:scale(0.97);
}

/* ADD TO CART BUTTON */
.add-cart-btn{
    background:#037530;
    border:2px solid #037530;
    color:#fff;
    font-weight:600;
    font-size:15px;
    padding:10px 22px;
    border-radius:8px;
    transition:.3s ease;
}

.add-cart-btn:hover{
    background:#025d27;
    border-color:#025d27;
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 6px 15px rgba(3,117,48,.25);
}

.add-cart-btn:active{
    transform:scale(.98);
}

.add-cart-btn:focus{
    box-shadow:none;
}


/* ==========================
   CONTACT PAGE
========================== */

.contact-hero{
    height:420px;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    display:flex;
    align-items:center;
}

.contact-overlay{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(0,0,0,.45);
}

.contact-hero h1{
    display: none;
    color:#fff;
    font-size:52px;
    font-weight:800;
}

.contact-hero p{
    display: none;
    color:#fff;
    font-size:18px;
}

.contact-card{
background:#fff;
border-radius:25px;
padding:45px 35px;
height:100%;
text-align:center;
border:1px solid rgba(3,117,48,.12);
transition:.45s ease;
box-shadow:
0 15px 35px rgba(0,0,0,.08);
}

.contact-card:hover{
transform:translateY(-10px);
box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.contact-icon{
width:75px;
height:75px;
margin:auto;
margin-bottom:25px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:rgba(3,117,48,.1);
font-size:35px;
color:#037530!important;
}

.contact-card h3{
font-weight:700;
margin-bottom:25px;
}

.contact-card p{
color:#555;
line-height:1.8;
font-size:16px;
}

.contact-card i{
color:#037530;
margin-right:8px;
}

/* MAP */
.map-container{
width:100%;
border-radius:25px;
overflow:hidden;
border:8px solid #fff;
box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.map-container iframe{
display:block;
}

/* DIRECTIONS BUTTON */
.direction-btn{
display:inline-flex;
align-items:center;
gap:10px;
padding:15px 35px;
background:var(--primary);
color:#fff;
border-radius:50px;
font-weight:700;
text-decoration:none;
transition:.3s ease;
}

.direction-btn:hover{
background:var(--accent);
color:#fff;
transform:translateY(-4px);
}

/* FORM */
.contact-form{
background:#fff;
padding:45px;
border-radius:25px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.contact-form .form-control{
padding:15px;
border-radius:12px;
}

.contact-form button{
background:var(--primary);
border:none;
padding:15px;
border-radius:50px;
font-weight:700;
}

.contact-form button:hover{
background:var(--accent);
}

/* Clickable Phone Number */
.phone-link{
    color:#037530;
    font-weight:700;
    text-decoration:none;
    transition:.3s ease;
}

.phone-link:hover{
    color:#037530;
    text-decoration:none;
}

.phone-link:visited{
    color:#037530;
}

.phone-link:active{
    color:#037530;
}


/* =========================================
   BLOG PAGE - KIDANI STYLE
========================================= */
.blog-section{
    background:#fff;

}

.blog-section h1{
    color:#037530;
    font-size:38px;
    font-weight:800;
    margin-bottom:50px;
}

/* =========================================
   BLOG ITEM
========================================= */
.blog-card{
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 55px;
    background: #fcfcfc;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* =========================================
   IMAGE SIDE
========================================= */
.blog-image{
    width:380px;
    height:300px;
    flex-shrink:0;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    background:transparent;
}

.blog-image img{
    width:100%;
    height:100%;
    object-fit:contain;

}

/* =========================================
   CONTENT SIDE
========================================= */

.blog-content{
    flex:1;
    max-width:650px;
}

/* CATEGORY */
.blog-category{
    color:#037530;
    font-size:15px;
    font-weight:500;
    margin-bottom:15px;
}

/* TITLE */
.blog-content h4{
    font-family:Georgia, "Times New Roman", serif;
    color:#111;
    font-size:29px;
    line-height:1.2;
    font-weight:700;
    margin:0 0 18px;
    max-width:700px;
}

.blog-content h4:hover{
    color:#037530;
}

/* DESCRIPTION */
.blog-content p{
    color:#000000;
    font-size:15px;
    line-height:1;
    max-width:600px;
    margin-bottom:20px;
}

/* AUTHOR */
.author{
    font-size:15px;
    font-weight:600;
    color:#111;
}

/* DATE */
.article-date{
    font-size:14px;
    color:#555;
    margin-top:5px;
}

/* READ MORE */
.blog-btn{
    display:inline-block;
    margin-top:18px;
    background:#037530;
    color:#fff;
    padding:9px 25px;
    border-radius:30px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:.3s ease;
}

.blog-btn:hover{
    background:#E85D1A;
    color:#fff;
    transform:translateY(-3px);
}

/* =========================================
   SINGLE ARTICLE PAGE
========================================= */
.article-page{
    background:#fff;
}

.article-page img{
    width:100%;
    height:400px;
    object-fit:contain;
    border-radius:20px;
}

.article-page h1{
    color:#037530;
    font-size:42px;
    font-weight:800;
}

.article-content{
    font-size:16px;
    line-height:1.8;
    color:#000;
}

.article-page .blog-btn{
   margin-top:20px;
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */
@media(max-width:768px){
    .blog-card{
        display:block;
        margin-bottom:45px;
    }
    .blog-image{
        width:100%;
        height:260px;
        margin-bottom:25px;
    }

    .blog-content{
        max-width:100%;
    }

    .blog-content h4{
        font-size:28px;
    }

    .blog-content p{
        font-size:15px;
    }
}

/*=============================
ABOUT HERO
=============================*/
.about-hero{
    position:relative;
    background:url('../uploads/asset/about-banner.jpg') center/cover;
    min-height:70vh;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.about-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.60);
}

.about-hero-content{
    position:relative;
    z-index:2;
    max-width:700px;
    color:#fff;
}

.about-hero span{
    display:inline-block;
    color:#ffc107;
    letter-spacing:2px;
    font-weight:600;
    margin-bottom:15px;
}

.about-hero h1{
    font-size:55px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;
}

.about-hero p{
    font-size:18px;
    line-height:1.8;
}

/*============================*/

.section-tag{
    color:#198754;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:10px;
    display:block;
}

.about-section h2{
    font-weight:800;
    margin-bottom:25px;
}

.about-section p{
    line-height:1.9;
    color:#666;
}

/*============================*/

.mission-section{
    background:#f8f9fa;
}

.mission-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    text-align:center;
    height:100%;
    transition:.4s;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.mission-card:hover{
    transform:translateY(-10px);
}

.mission-card i{
    font-size:55px;
    color:#198754;
    margin-bottom:25px;
}

.mission-card h3{
    font-weight:700;
    margin-bottom:20px;
}

/*============================*/

.why-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    text-align:center;
    transition:.35s;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.07);
}

.why-card:hover{
    transform:translateY(-8px);
}

.why-card i{
    font-size:48px;
    color:#198754;
    margin-bottom:20px;
}

.why-card h5{
    font-weight:700;
    margin-bottom:15px;
}

.why-card p{
    color:#666;
}

/*============================*/

.stats-section{
    background:#198754;
    color:#fff;
    padding:80px 0;
}

.stats-section h2{
    font-size:50px;
    font-weight:800;
}

.stats-section p{
    margin-top:10px;
    font-size:18px;
}

/*============================*/

.about-cta{
    padding:90px 0;
    background:#fff;
}

.about-cta h2{
    font-weight:800;
    margin-bottom:20px;
}

.about-cta p{
    color:#666;
    margin-bottom:30px;
}

[data-animate] {
    opacity: 0;
    will-change: transform, opacity;
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Slide Up ---- */
[data-animate="slide-up"] {
    transform: translateY(40px);
}

/* ---- Slide Down ---- */
[data-animate="slide-down"] {
    transform: translateY(-40px);
}

/* ---- Slide Left (enters from the left) ---- */
[data-animate="slide-left"] {
    transform: translateX(-60px);
}

/* ---- Slide Right (enters from the right) ---- */
[data-animate="slide-right"] {
    transform: translateX(60px);
}

/* ---- Pop (scale + fade) ---- */
[data-animate="pop"] {
    transform: scale(0.85);
}

/* ---- Fade only ---- */
[data-animate="fade"] {
    transform: none;
}

/* ---- Final state once visible ---- */
[data-animate].is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* ---- Optional stagger delays (add alongside data-animate) ---- */
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }

/* ---- Respect users who prefer reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
    [data-animate] {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

/*============================*/

@media(max-width:768px){

.about-hero{
    min-height:60vh;
    text-align:center;
}

.about-hero h1{
    font-size:35px;
}

.about-hero p{
    font-size:16px;
}

.stats-section h2{
    font-size:36px;
    margin-top:20px;
}



}
/* ==========================================
   GLOBAL MOBILE SIDE MARGINS
   (Does NOT reduce height)
========================================== */
@media (max-width: 768px) {

    body{
        overflow-x: hidden;
    }

    .container,
    .container-fluid{
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .row{
        --bs-gutter-x: 1.25rem;
    }

}