/* ==========================
   GENERAL
========================== */

:root{
    --primary:#198754;
    --primary-light:#25D366;
    --dark:#07241c;
    --light:#f8f9fa;
    --text:#444;
    --radius:18px;
    --transition:.35s ease;
}


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

html{

scroll-behavior:smooth;

scroll-padding-top:90px;

}

body{
    font-family: "Poppins", sans-serif;
    color:var(--dark);
    overflow-x:hidden;
}
h1{
    font-size:56px;
    font-weight:700;
    line-height:1.2;
}

h2{
    font-size:42px;
    font-weight:700;
}

h3{
    font-size:28px;
    font-weight:600;
}

p{
    font-size:17px;
    line-height:1.9;
}

section{

    padding:110px 0;

}
.container{

    max-width:1200px;

}
.btn{

padding:14px 34px;

font-weight:600;

transition:.35s;

border-radius:50px;

}

.btn:hover{

transform:translateY(-4px);

box-shadow:0 10px 30px rgba(0,0,0,.18);

}
.bi{

transition:.3s;

}

.bi:hover{

transform:scale(1.2);

}
.card{

border:none;

transition:.4s;

}

.card:hover{

background:#fff;

transform:translateY(-8px);

}
.form-control{

padding:14px 18px;

border-radius:12px;

}

.form-control:focus{

border-color:#198754;

box-shadow:none;

}

/* ==========================
   NAVBAR
========================== */

/*================================
        NAVBAR
================================*/

.navbar{

    background:#ffffff;
    padding:18px 0;
    transition:all .4s ease;
    z-index:999;

}


.navbar.shadow{

    box-shadow:0 8px 25px rgba(0,0,0,0.12);
    padding:12px 0;

}


/*================================
        LOGO
================================*/

.navbar-brand{

    font-size:28px;
    font-weight:700;
    color:#07241c !important;
    letter-spacing:.5px;
    transition:.3s ease;

}


.navbar-brand:hover{

    color:#198754 !important;

}



/*================================
        NAV LINKS
================================*/

.navbar-nav .nav-link{

    color:#405047 !important;
    font-size:15px;
    font-weight:500;

    margin:0 12px;
    padding:10px 0 !important;

    position:relative;
    transition:.35s ease;

}


/* Animated underline */

.navbar-nav .nav-link::after{

    content:"";

    position:absolute;
    left:50%;
    bottom:0;

    width:0;
    height:3px;

    background:#198754;
    border-radius:10px;

    transform:translateX(-50%);
    transition:.35s ease;

}



.navbar-nav .nav-link:hover{

    color:#198754 !important;
    transform:translateY(-2px);

}



.navbar-nav .nav-link:hover::after{

    width:80%;

}



/* Active link */

.navbar-nav .nav-link.active{

    color:#198754 !important;

}


.navbar-nav .nav-link.active::after{

    width:80%;

}



/*================================
        DROPDOWN MENU
================================*/


/*================================
        PREMIUM DROPDOWN MENU
================================*/

.nav-item.dropdown{
    position:relative;
}


.dropdown-menu{

    display:block;
    opacity:0;
    visibility:hidden;

    position:absolute;
    top:45px;
    left:0;

    min-width:240px;

    background:#ffffff;

    border:none;
    border-radius:18px;

    padding:12px 0;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.15);

    transform:translateY(15px);

    transition:all .35s ease;

}



/* Show dropdown on hover */

.nav-item.dropdown:hover .dropdown-menu{

    opacity:1;
    visibility:visible;

    transform:translateY(0);

}



/* Dropdown items */

.dropdown-item{

    display:flex;
    align-items:center;

    padding:14px 24px;

    color:#3f4f46;

    font-size:15px;

    font-weight:500;

    background:transparent;

    transition:.3s ease;

}



/* Hover effect */

.dropdown-item:hover{

    background:#f1faf5;

    color:#198754;

    padding-left:32px;

}



/* Remove Bootstrap arrow background */

.dropdown-toggle::after{

    margin-left:8px;

    vertical-align:middle;

    border-top:.35em solid #198754;

}



/* Add small top green line */

.dropdown-menu::before{

    content:"";

    position:absolute;

    top:-6px;
    left:35px;

    width:12px;
    height:12px;

    background:#ffffff;

    transform:rotate(45deg);

    box-shadow:-2px -2px 5px rgba(0,0,0,.03);

}
/*==============================
Navbar WhatsApp Button
==============================*/

.nav-whatsapp{

    display:flex;

    align-items:center;

    gap:8px;

    padding:10px 18px;

    background:#25D366;

    color:#fff !important;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.nav-whatsapp:hover{

    background:#1EBE5D;

    color:#fff !important;

    transform:translateY(-2px);

    box-shadow:0 10px 20px rgba(37,211,102,.25);

}

.nav-whatsapp i{

    font-size:18px;

}

@media(max-width:991px){

.nav-whatsapp{

    margin-top:15px;

    justify-content:center;

}

}


/* Mobile fix */

@media(max-width:991px){

    .dropdown-menu{

        display:none;

        position:static;

        opacity:1;

        visibility:visible;

        transform:none;

        box-shadow:none;

        background:#f8fdf9;

        margin-top:10px;

    }


    .nav-item.dropdown:hover .dropdown-menu{

        display:block;

    }

}




/* Dropdown animation */

@keyframes dropdownFade{

    from{

        opacity:0;
        transform:translateY(10px);

    }


    to{

        opacity:1;
        transform:translateY(0);

    }

}



/*================================
        CONTACT BUTTON
================================*/


.nav-btn{

    background:#198754;

    color:#ffffff !important;

    padding:11px 28px !important;

    border-radius:50px;

    margin-left:15px;

    transition:.35s ease;

}



.nav-btn:hover{

    background:#25D366;

    color:#ffffff !important;

    transform:translateY(-3px);

}




/*================================
        MOBILE NAVBAR
================================*/


.navbar-toggler{

    border:none;

    outline:none;

}


.navbar-toggler:focus{

    box-shadow:none;

}



@media(max-width:991px){


    .navbar{

        padding:15px 20px;

    }



    .navbar-nav{

        background:#ffffff;

        padding:20px;

        margin-top:15px;

        border-radius:15px;

        box-shadow:0 10px 30px rgba(0,0,0,.1);

    }



    .navbar-nav .nav-link{

        margin:5px 0;

    }



    .dropdown-menu{

        box-shadow:none;

        margin-top:5px;

        border-radius:10px;

    }



    .nav-btn{

        display:inline-block;

        margin-top:15px;

        margin-left:0;

        text-align:center;

    }


}

/* Desktop & Large Screens */
@media (min-width: 992px){

    .navbar-brand img{

        height: 100px;   /* Increase from 55px */

        width: auto;

        transition: .3s ease;

    }

}

/* Tablet */
@media (max-width: 991px){

    .navbar-brand img{

        height: 60px;

        width: auto;

    }

}

/* Mobile */
@media (max-width: 576px){

    .navbar-brand img{

        height: 50px;

        width: auto;

    }

}
@media (min-width:992px){

    .navbar{

        padding: 10px 0;

    }

}

/* ==========================
   HERO
========================== */

.hero{

    position: relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    background:
        linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
        url("../images/hero-bg.png");

    background-size:cover;

    background-position:center center;

    background-repeat:no-repeat;

    overflow:hidden;

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.35);

    pointer-events:none;

}
.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,.65) 0%,
        rgba(0,0,0,.45) 45%,
        rgba(0,0,0,.15) 100%
    );

    pointer-events:none;

}

.hero .container{

    position:relative;

    z-index:2;

}

.hero-content{

    max-width:650px;

}

.hero h1{

    color:#fff;

    font-size:60px;

    font-weight:700;

    line-height:1.2;

    margin-bottom:25px;

}

.hero p{

    color:#f1f1f1;

    font-size:19px;

    line-height:1.8;

    margin-bottom:35px;

}

.hero .btn{

    padding:15px 36px;

    border-radius:50px;

}
/* Hero Buttons */

.hero-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-top:35px;

}

.hero-buttons .btn{

    padding:14px 34px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.hero-buttons .btn-outline-success{

    border:2px solid #198754;

    color:#198754;

    background:transparent;

}

.hero-buttons .btn-outline-success:hover{

    background:#198754;

    color:#fff;

}



@media(max-width:768px){

.hero-buttons{

justify-content:center;

}

.hero-buttons .btn{

width:100%;

}

}



@media(max-width:991px){

.hero{

text-align:center;

padding:120px 0 80px;

}

.hero h1{

font-size:38px;

}

.hero p{

font-size:17px;

}

.hero-content{

margin:auto;

}

}

















/*====================================
ABOUT
====================================*/

.section-padding{
    padding:100px 0;
}

.section-subtitle{

    color:#198754;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:2px;

    margin-bottom:12px;

}

.section-title{

    font-size:40px;

    font-weight:700;

    margin-bottom:25px;

}

.about p{

    color:#666;

    line-height:1.9;

}

.feature-box{

    background:#fff;

    border-radius:12px;

    padding:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

    transition:.3s;

    display:flex;

    align-items:center;

    gap:12px;

    height:100%;

}
.about-img{

    width:100%;

    height:620px;

    object-fit:cover;

    border-radius:30px;

    border:8px solid #fff;

    box-shadow:
    0 35px 80px rgba(0,0,0,.12);

    transition:.45s;

}

.about-img:hover{

    transform:translateY(-8px);

    box-shadow:
    0 45px 90px rgba(25,135,84,.20);

}

.feature-box:hover{

    transform:translateY(-6px);

}

.feature-box i{

    color:#198754;

    font-size:24px;

}

@media(max-width:991px){

.section-title{

font-size:32px;

}

}
/*=================================
        ABOUT FEATURE CARDS
==================================*/

.about-card{

    background:#fff;

    border-radius:20px;

    padding:28px 24px;

    height:100%;

    text-align:center;

    border:1px solid rgba(25,135,84,.12);

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.35s ease;

    position:relative;

    overflow:hidden;

}

.about-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,#198754,#25D366);

}

.about-card:hover{

    transform:translateY(-10px);

    box-shadow:0 22px 50px rgba(25,135,84,.18);

}

.about-icon{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#198754,#25D366);

    color:#fff;

    font-size:34px;

    margin-bottom:20px;

    transition:.35s ease;

}

.about-card:hover .about-icon{

    transform:rotate(8deg) scale(1.08);

}

.about-card h5{

    font-size:22px;

    font-weight:700;

    color:#07241c;

    margin-bottom:12px;

}

.about-card p{

    margin:0;

    color:#666;

    line-height:1.8;

    font-size:15px;

}







/*=================================
      MISSION & VISION
==================================*/

.mission{

    background:#f8faf9;

}

.mission-card{

    background:#fff;

    border-radius:24px;

    padding:45px 35px;

    text-align:center;

    height:100%;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

    transition:.35s ease;

    border-top:5px solid var(--primary);

}

.mission-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(25,135,84,.18);

}

.mission-icon{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:linear-gradient(135deg,#198754,#25D366);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:38px;

}

.mission-card h3{

    font-weight:700;

    color:#07241c;

    margin-bottom:18px;

}

.mission-card p{

    color:#666;

    line-height:1.9;

}









/*=================================
         CORE VALUES
==================================*/

.values{

    background:#ffffff;

}

.value-card{

    background:#fff;

    border-radius:22px;

    padding:35px 28px;

    text-align:center;

    height:100%;

    border:1px solid #e8ecef;

    transition:.35s ease;

    box-shadow:0 10px 35px rgba(0,0,0,.06);

}

.value-card:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

    box-shadow:0 25px 55px rgba(25,135,84,.15);

}

.value-card i{

    font-size:42px;

    color:var(--primary);

    margin-bottom:20px;

}

.value-card h4{

    font-weight:700;

    margin-bottom:15px;

    color:#07241c;

}

.value-card p{

    color:#666;

    line-height:1.8;

    margin:0;

}










/*=========================
WHY CHOOSE US
=========================*/

.why-us{

background:#f7faf8;

}

.why-list{

display:grid;
grid-template-columns:repeat(2,1fr);
gap:28px;
margin-top:60px;

}

.why-item{

position:relative;

display:flex;
align-items:center;
gap:22px;

background:#fff;

padding:28px;

border-radius:20px;

border:1px solid rgba(25,135,84,.12);

box-shadow:0 10px 30px rgba(0,0,0,.05);

overflow:hidden;

transition:.35s;

}

.why-item::before{

content:"";

position:absolute;

left:0;
top:0;

width:6px;
height:100%;

background:linear-gradient(180deg,#198754,#25D366);

}

.why-item:hover{

transform:translateY(-8px);

box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.why-icon{

width:72px;
height:72px;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

background:linear-gradient(135deg,#198754,#25D366);

color:#fff;

font-size:30px;

flex-shrink:0;

transition:.35s;

}

.why-item:hover .why-icon{

transform:rotate(10deg) scale(1.08);

}

.why-content h5{

font-size:22px;

font-weight:700;

color:#07241c;

margin-bottom:8px;

}

.why-content p{

margin:0;

color:#666;

line-height:1.7;

font-size:15px;

}

/* Responsive */

@media(max-width:992px){

.why-list{

grid-template-columns:1fr;

}

}

@media(max-width:576px){

.why-item{

padding:22px;

gap:18px;

}

.why-icon{

width:60px;
height:60px;

font-size:24px;

}

.why-content h5{

font-size:18px;

}

.why-content p{

font-size:14px;

}

}








/*==========================================
PRODUCTS
==========================================*/

.products{

    background:#f7faf8;
    position:relative;
    overflow:hidden;

}

.products::before{

    content:"";

    position:absolute;

    top:-180px;
    right:-180px;

    width:380px;
    height:380px;

    border-radius:50%;

    background:rgba(25,135,84,.05);

}

.products::after{

    content:"";

    position:absolute;

    bottom:-180px;
    left:-180px;

    width:350px;
    height:350px;

    border-radius:50%;

    background:rgba(37,211,102,.05);

}

/*==========================
GRID
==========================*/

.products-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

    position:relative;

    z-index:2;

}

/*==========================
CARD
==========================*/

.product-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.45s ease;

    display:flex;

    flex-direction:column;

    height:100%;

    border-top:6px solid var(--primary);

    position:relative;

}

.product-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 55px rgba(0,0,0,.15);

}

/*==========================
IMAGE
==========================*/

.product-image{

    overflow:hidden;

    background:#fff;

}

.product-image img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.6s ease;

}

.product-card:hover .product-image img{

    transform:scale(1.08);

}

/*==========================
BODY
==========================*/

.product-body{

    padding:30px;

    display:flex;

    flex-direction:column;

    flex:1;

}

.product-body h3{

    font-size:26px;

    color:var(--dark);

    font-weight:700;

    margin-bottom:15px;

}

.product-body p{

    color:#666;

    line-height:1.8;

    margin-bottom:22px;

    min-height:60px;

}

/*==========================
FEATURES
==========================*/

.product-features{

    list-style:none;

    padding:0;

    margin:0 0 30px;

}

.product-features li{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:14px;

    color:#555;

    transition:.3s;

}

.product-features li:hover{

    transform:translateX(6px);

}

.product-features i{

    color:var(--primary);

    font-size:18px;

}

/*==========================
BUTTON
==========================*/

.product-btn{

    margin-top:auto;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:14px 26px;

    background:linear-gradient(135deg,#198754,#25D366);

    color:#fff;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

    width:max-content;

}

.product-btn:hover{

    color:#fff;

    transform:translateY(-3px);

    box-shadow:0 12px 25px rgba(25,135,84,.35);

}

.product-btn i{

    transition:.35s;

}

.product-btn:hover i{

    transform:translateX(6px);

}

/*==========================
CENTER LAST CARD
==========================*/

.product-card-center{

    grid-column:span 1;

}

/*==========================
ANIMATION
==========================*/

.product-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:0;

    height:5px;

    background:linear-gradient(90deg,#198754,#25D366);

    transition:.6s;

}

.product-card:hover::before{

    width:100%;

}

/*==========================
TABLET
==========================*/

@media(max-width:991px){

.products-grid{

grid-template-columns:repeat(2,1fr);

}

.product-body{

padding:25px;

}

.product-body h3{

font-size:23px;

}

}

/*==========================
MOBILE
==========================*/

@media(max-width:767px){

.products-grid{

grid-template-columns:1fr;

}

.product-image img{

height:230px;

}

.product-body{

padding:22px;

}

.product-body h3{

font-size:22px;

}

.product-body p{

font-size:15px;

min-height:auto;

}

.product-btn{

width:100%;

justify-content:center;

}

}

/*==========================
SMALL MOBILE
==========================*/

@media(max-width:480px){

.product-image img{

height:210px;

}

.product-body{

padding:20px;

}

.product-body h3{

font-size:20px;

}

.product-features li{

font-size:14px;

}

}







/*=====================================
EXPORT MARKETS
=====================================*/

.markets{

    background:#f8f9fa;

}

.market-card{

    background:#fff;

    border-radius:18px;

    padding:35px;

    text-align:center;

    height:100%;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.market-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.market-card i{

    font-size:50px;

    color:#198754;

    margin-bottom:20px;

}

.market-card h4{

    margin-bottom:15px;

    font-weight:600;

}

.market-card p{

    color:#666;

    line-height:1.8;

    margin:0;

}












/*=========================================
        EXPORT PROCESS
=========================================*/

.export-process{

    background:#fff;
    position:relative;
    overflow:hidden;

}

.export-process::before{

    content:"";

    position:absolute;

    top:-180px;
    left:-180px;

    width:380px;
    height:380px;

    background:rgba(25,135,84,.05);

    border-radius:50%;

}

.export-process::after{

    content:"";

    position:absolute;

    bottom:-180px;
    right:-180px;

    width:350px;
    height:350px;

    background:rgba(37,211,102,.05);

    border-radius:50%;

}
.export-process{

    position:relative;

    overflow:hidden;

    background:#f8fbf9;

}

.process-bg{

    position:absolute;

    inset:0;

    z-index:1;

    opacity:.08;

}

.process-bg img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.export-process .container{

    position:relative;

    z-index:5;

}

/*==========================
TIMELINE
==========================*/

.process-timeline{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

    margin-top:70px;

    position:relative;

    z-index:2;

}


/*==========================
CARD
==========================*/

.process-step{

    background:#fff;

    border-radius:22px;

    padding:35px 25px;

    text-align:center;

    position:relative;

    transition:.4s ease;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    border:1px solid rgba(25,135,84,.08);

    overflow:hidden;

}

.process-step:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(0,0,0,.15);

}

/* Green Accent */

.process-step::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,#198754,#25D366);

}

/*==========================
ICON
==========================*/

.process-icon{

    width:110px;

    height:110px;

    margin:auto;

    border-radius:50%;

    background:#fff;

    border:4px solid rgba(25,135,84,.15);

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;

    transition:.4s;

}

.process-step:hover .process-icon{

    transform:scale(1.08);

    border-color:#198754;

}

.process-icon i{

    font-size:46px;

    color:#198754;

}

/*==========================
STEP NUMBER
==========================*/

.step-number{

    position:absolute;

    top:-12px;

    right:-12px;

    width:36px;

    height:36px;

    border-radius:50%;

    background:linear-gradient(135deg,#198754,#25D366);

    color:#fff;

    font-size:14px;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 10px 20px rgba(25,135,84,.25);

}

/*==========================
TEXT
==========================*/

.process-step h4{

    font-size:22px;

    margin-top:28px;

    margin-bottom:15px;

    color:var(--dark);

    font-weight:700;

    line-height:1.3;

}

.process-step p{

    color:#666;

    line-height:1.7;

    margin:0;

    font-size:15px;

}

.process-timeline{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:45px;

    position:relative;

    margin-top:70px;

}

/* Horizontal Line */

.process-step{

    position:relative;

}

/* Dashed Line */

.process-step::after{

    content:"";

    position:absolute;

    top:55px;

    right:-46px;

    width:46px;

    border-top:3px dashed #25D366;

}

/* Arrow */

.process-step::before{

    content:"";

    position:absolute;

    top:48px;

    right:-14px;

    width:12px;

    height:12px;

    border-top:3px solid #198754;

    border-right:3px solid #198754;

    transform:rotate(45deg);

}

/* Remove last item in row */

.process-step:nth-child(4)::after,
.process-step:nth-child(4)::before,
.process-step:nth-child(8)::after,
.process-step:nth-child(8)::before{

    display:none;

}
/*==========================
TABLET
==========================*/

@media(max-width:991px){

.process-timeline{

grid-template-columns:repeat(2,1fr);

gap:30px;

}

.process-step:nth-child(even)::after{

display:none;

}

}

/*==========================
MOBILE
==========================*/

@media(max-width:767px){

.process-timeline{

grid-template-columns:1fr;

}

.process-step{

padding:30px 20px;

}

.process-step::after{

display:none;

}

.process-icon{

width:90px;
height:90px;

}

.process-icon i{

font-size:38px;

}

.process-step h4{

font-size:20px;

}

}

/*==========================
HOVER
==========================*/

.process-step:hover h4{

color:#198754;

}

.process-step:hover .step-number{

transform:rotate(360deg);

transition:.6s;

}










/*=====================================
        INDUSTRIES WE SERVE
=====================================*/

.industries{
    background:#f8f9fa;
    position:relative;
    overflow:hidden;
}

.industries::before{
    content:"";
    position:absolute;
    top:-180px;
    right:-180px;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(25,135,84,.05);
}

.industries::after{
    content:"";
    position:absolute;
    bottom:-180px;
    left:-180px;
    width:380px;
    height:380px;
    border-radius:50%;
    background:rgba(37,211,102,.05);
}

.industries .container{
    position:relative;
    z-index:2;
}

/* Card */

.industry-card{
    background:#ffffff;
    border-radius:20px;
    overflow:hidden;
    height:100%;
    transition:.4s ease;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    border:1px solid rgba(25,135,84,.08);
}

.industry-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

/* Image */

.industry-image{
    overflow:hidden;
    position:relative;
}

.industry-image img{
    width:100%;
    height:230px;
    object-fit:cover;
    transition:.6s;
}

.industry-card:hover .industry-image img{
    transform:scale(1.08);
}

/* Green Overlay */

.industry-image::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(0,0,0,0),
        rgba(0,0,0,.15)
    );
}

/* Content */

.industry-content{
    padding:30px;
    text-align:center;
}


.industry-card:hover .industry-icon{
    background:#25D366;
    transform:rotateY(180deg);
}

.industry-content h4{
    font-size:23px;
    font-weight:700;
    margin-bottom:15px;
    color:#07241c;
}

.industry-content p{
    color:#666;
    line-height:1.8;
    font-size:15px;
    margin:0;
}

/* Decorative Line */

.industry-content::after{
    content:"";
    display:block;
    width:55px;
    height:3px;
    background:#198754;
    margin:22px auto 0;
    border-radius:50px;
    transition:.35s;
}

.industry-card:hover .industry-content::after{
    width:90px;
    background:#25D366;
}
/*=====================================
    INDUSTRIES WE SERVE
    PREMIUM EFFECTS
======================================*/

/* Smooth Animation */

.industry-card,
.industry-image img,
.industry-icon,
.industry-content::after{
    transition:all .4s ease;
}

/* Floating Effect */

.industry-card:hover{

    transform:translateY(-12px);

}

.industry-card:hover .industry-content h4{

    color:var(--primary);

}

/* Image Dark Overlay */

.industry-image::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(7,36,28,.45),
        transparent 65%
    );

    opacity:0;

    transition:.4s;

    z-index:1;

}

.industry-card:hover .industry-image::before{

    opacity:1;

}

/* Icon Pulse */

.industry-card:hover .industry-icon{

    box-shadow:
        0 0 0 8px rgba(25,135,84,.10),
        0 15px 35px rgba(25,135,84,.35);

}

/* Soft Border Glow */

.industry-card:hover{

    border-color:rgba(25,135,84,.35);

}

/*=====================================
        TABLET
======================================*/

@media (max-width:991px){

    .industry-image img{

        height:220px;

    }

    .industry-content{

        padding:24px;

    }

    .industry-content h4{

        font-size:21px;

    }

    .industry-icon{

        width:66px;

        height:66px;

        font-size:28px;

        margin-top:-55px;

    }

}

/*=====================================
        MOBILE
======================================*/

@media (max-width:767px){

    .industries{

        padding:80px 0;

    }

    .industry-card{

        margin-bottom:10px;

    }

    .industry-image img{

        height:210px;

    }

    .industry-content{

        padding:22px;

    }

    .industry-content h4{

        font-size:20px;

    }

    .industry-content p{

        font-size:15px;

        line-height:1.7;

    }

    .industry-icon{

        width:62px;

        height:62px;

        font-size:26px;

        margin-top:-52px;

    }

}

/*=====================================
      SMALL MOBILE
======================================*/

@media (max-width:576px){

    .industry-image img{

        height:200px;

    }

    .industry-content{

        padding:20px;

    }

    .industry-content h4{

        font-size:19px;

    }

    .industry-content p{

        font-size:14px;

    }

    .industry-icon{

        width:58px;

        height:58px;

        font-size:24px;

        margin-top:-48px;

    }

}

/*=====================================
ACCESSIBILITY
======================================*/

.industry-card:focus-within{

    outline:2px solid var(--primary);

    outline-offset:4px;

}

/*=====================================
FINAL POLISH
======================================*/

.industry-card{

    will-change:transform;

    backface-visibility:hidden;

}

.industry-card:hover .industry-image img{

    filter:brightness(.96) saturate(1.08);

}















/*=====================================
QUALITY ASSURANCE
=====================================*/

.quality{

    background:#f8f9fa;
    overflow:hidden;

}

.quality-content{

    padding-left:40px;

}

/* Image */

.quality-image{

    position:relative;
    max-width:560px;
    margin:auto;

}

.quality-image img{
    width:100%;
    max-width:560px;
    height:680px;              /* Increased height */
    object-fit:cover;
    border-radius:24px;
    transform:rotate(-4deg);
    border:8px solid #fff;
    box-shadow:0 30px 60px rgba(0,0,0,.18);
    transition:all .4s ease;
}

.quality-image img:hover{
    transform:rotate(0deg) scale(1.03);
    box-shadow:0 40px 70px rgba(0,0,0,.25);
}

.quality-image:hover img{

    transform:rotate(0deg) scale(1.03);

}

/* Floating Badge */

.quality-badge{

    position:absolute;

    bottom:25px;
    right:-30px;

    background:#198754;
    color:#fff;

    padding:16px 22px;

    border-radius:50px;

    display:flex;
    align-items:center;
    gap:12px;

    font-weight:600;

    box-shadow:0 15px 35px rgba(0,0,0,.18);

    animation:qualityFloat 3s ease-in-out infinite;

}

.quality-badge i{

    font-size:22px;
    color:#fff;

}

@keyframes qualityFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0);

    }

}

/* Description */

.quality-content p{

    color:#666;
    line-height:1.9;
    margin-bottom:35px;

}

/* Feature Box */

.quality-feature{

    display:flex;
    align-items:flex-start;

    gap:22px;

    background:#ffffff;

    padding:22px 24px;

    margin-bottom:22px;

    border-radius:18px;

    border-left:5px solid #198754;

    box-shadow:0 12px 30px rgba(0,0,0,.07);

    transition:.35s ease;

}

.quality-feature:hover{

    transform:translateX(10px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

    border-left-color:#25D366;

}

/* Icon */

.quality-icon{

    width:68px;
    height:68px;

    min-width:68px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(135deg,#198754,#25D366);

    border-radius:18px;

    color:#fff;

    font-size:28px;

    transition:.35s ease;

}

.quality-feature:hover .quality-icon{

    transform:rotate(-8deg) scale(1.08);

}

/* Text */

.quality-info h4{

    font-size:22px;

    font-weight:700;

    margin-bottom:8px;

    color:#07241c;

}

.quality-info p{

    margin:0;

    color:#666;

    line-height:1.8;

    font-size:15px;

}

/*==========================
Tablet
==========================*/

@media(max-width:991px){

    .quality{

        text-align:center;

    }

    .quality-content{

        padding-left:0;
        margin-top:20px;

    }

    .quality-image{

        max-width:500px;

    }

    .quality-image img{

        transform:rotate(-2deg);

    }

    .quality-badge{

        right:50%;
        transform:translateX(50%);
        bottom:-20px;

    }

    .quality-feature{

        text-align:left;

    }

}

/*==========================
Mobile
==========================*/

@media(max-width:767px){

    .quality{

        padding:80px 0;

    }

    .quality-image{

        max-width:100%;

    }

    .quality-image img{

        transform:none;

        border-width:6px;

    }

    .quality-badge{

        position:relative;

        right:auto;
        bottom:auto;

        transform:none;

        margin:20px auto 0;

        width:fit-content;

    }

    .quality-feature{

        flex-direction:column;

        text-align:center;

        align-items:center;

        padding:25px 20px;

    }

    .quality-icon{

        margin-bottom:5px;

    }

    .quality-feature:hover{

        transform:translateY(-6px);

    }

}

/*==========================
Small Mobile
==========================*/

@media(max-width:480px){

    .quality-info h4{

        font-size:20px;

    }

    .quality-info p{

        font-size:14px;

    }

    .quality-badge{

        padding:14px 18px;

        font-size:14px;

    }

    .quality-badge i{

        font-size:18px;

    }

}










/*=====================================
BLOG SECTION
=====================================*/

.blog{
    background:#f8f9fa;
}

.featured-blog{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.featured-blog:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.blog-image{
    position:relative;
    overflow:hidden;
}

.blog-image img{
    width:100%;
    height:360px;
    object-fit:cover;
    transition:.5s;
}

.featured-blog:hover .blog-image img{
    transform:scale(1.08);
}

.blog-category{
    position:absolute;
    top:20px;
    left:20px;
    background:#198754;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    letter-spacing:.5px;
}

.blog-content{
    padding:35px;
}

.blog-meta{
    display:flex;
    gap:25px;
    margin-bottom:18px;
    color:#777;
    font-size:14px;
}

.blog-meta i{
    color:#198754;
    margin-right:6px;
}

.blog-content h3{
    font-size:30px;
    font-weight:700;
    margin-bottom:18px;
    line-height:1.4;
    color:#123226;
}

.blog-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:25px;
}

.read-more{
    display:inline-flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    color:#198754;
    font-weight:600;
    transition:.3s;
}

.read-more:hover{
    color:#25D366;
    gap:14px;
}

/*==========================
Mini Blog Cards
==========================*/

.mini-blog{
    display:flex;
    align-items:center;
    gap:20px;
    background:#fff;
    padding:18px;
    border-radius:18px;
    margin-bottom:22px;
    box-shadow:0 10px 25px rgba(0,0,0,.07);
    transition:.35s;
}

.mini-blog:last-child{
    margin-bottom:0;
}

.mini-blog:hover{
    transform:translateX(10px);
    box-shadow:0 20px 40px rgba(0,0,0,.13);
}

.mini-blog img{
    width:170px;
    height:130px;
    object-fit:cover;
    border-radius:15px;
    flex-shrink:0;
    transition:.4s;
}

.mini-blog:hover img{
    transform:scale(1.05);
}

.blog-category-small{
    display:inline-block;
    background:#eaf7f1;
    color:#198754;
    padding:6px 14px;
    border-radius:25px;
    font-size:13px;
    font-weight:600;
    margin-bottom:12px;
}

.mini-blog h5{
    font-size:22px;
    font-weight:600;
    color:#123226;
    margin-bottom:15px;
    line-height:1.45;
}

.read-link{
    color:#198754;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.read-link:hover{
    color:#25D366;
    padding-left:8px;
}

/*==========================
View All Button
==========================*/

.blog .btn-success{
    padding:15px 40px;
    border-radius:50px;
    font-weight:600;
    transition:.35s;
}

.blog .btn-success:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(25,135,84,.30);
}

/*==========================
Tablet
==========================*/

@media(max-width:991px){

.blog-image img{
    height:300px;
}

.blog-content{
    padding:28px;
}

.blog-content h3{
    font-size:26px;
}

.mini-blog{
    flex-direction:column;
    text-align:center;
}

.mini-blog img{
    width:100%;
    height:220px;
}

}

/*==========================
Mobile
==========================*/

@media(max-width:767px){

.blog{
    padding:80px 0;
}

.blog-image img{
    height:240px;
}

.blog-content{
    padding:22px;
}

.blog-content h3{
    font-size:24px;
}

.blog-meta{
    flex-direction:column;
    gap:8px;
}

.mini-blog img{
    height:200px;
}

.mini-blog h5{
    font-size:20px;
}

.blog .btn-success{
    width:100%;
}

}

/*==========================
Small Mobile
==========================*/

@media(max-width:480px){

.blog-image img{
    height:210px;
}

.blog-content{
    padding:20px;
}

.blog-content h3{
    font-size:22px;
}

.mini-blog{
    padding:15px;
}

.mini-blog img{
    height:180px;
}

}




/*=====================================
GALLERY
=====================================*/

.gallery{

    background:#fff;

}

.gallery-item{

    overflow:hidden;

    border-radius:18px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.gallery-item img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.5s;

    display:block;

}

.gallery-item:hover img{

    transform:scale(1.08);

filter:brightness(.8);

}







/*=====================================
COMPANY STATISTICS
=====================================*/

.statistics{

    background:#ffffff;

}

.stat-card{

    background:#fff;

    padding:40px 25px;

    text-align:center;

    border-radius:18px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.stat-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.stat-card i{

    font-size:48px;

    color:#198754;

    margin-bottom:20px;

}

.stat-card h2{

    font-size:48px;

    font-weight:700;

    color:#198754;

    margin-bottom:10px;

}

.stat-card p{

    color:#666;

    margin:0;

    font-size:17px;

}



/*=====================================
CALL TO ACTION
=====================================*/

.cta{

    padding:120px 0;

    position:relative;

    background:
    linear-gradient(rgba(0,0,0,.65),
    rgba(0,0,0,.65)),
    url("../images/cta.png");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

.cta h2{

    color:#fff;

    font-size:48px;

    font-weight:700;

    margin-bottom:20px;

}

.cta p{

    color:#f5f5f5;

    font-size:18px;

    line-height:1.8;

    max-width:750px;

    margin:0 auto 40px;

}

.cta-btn{

    display:flex;

    justify-content:center;

}

.cta .btn{

    padding:15px 40px;

    border-radius:50px;

    font-size:17px;

    font-weight:600;

}
.btn-cta{
    display:inline-block;
    padding:14px 35px;
    background:var(--primary);
    color:#fff;
    border-radius:50px;
    font-weight:600;
    text-decoration:none;
    transition:0.35s ease;
    border:2px solid var(--primary);
}

.btn-cta:hover{
    background:transparent;
    color:var(--primary);
    transform:translateY(-3px);
}
@media(max-width:991px){

.cta{

padding:90px 0;

}

.cta h2{

font-size:34px;

}

.cta p{

font-size:16px;

}

}






/*=====================================
        PREMIUM FOOTER
=====================================*/

.footer{

    position:relative;

    overflow:hidden;

    padding:90px 0 30px;

    color:#ffffff;

    background:
    linear-gradient(
    135deg,
    #07241c 0%,
    #0f5132 45%,
    #14532d 100%);

    border-top:4px solid #25D366;

}

/*=====================================
World Map Overlay
=====================================*/

.footer::before{

    content:"";

    position:absolute;

    inset:0;

    background:url("../images/dotted-world-map.svg")
    center center;

    background-repeat:no-repeat;

    background-size:70%;

    opacity:.08;

    pointer-events:none;

}

/*=====================================
Green Glow Effect
=====================================*/

.footer::after{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    top:-280px;

    right:-220px;

    border-radius:50%;

    background:radial-gradient(

        rgba(37,211,102,.08),

        transparent 70%

    );

    pointer-events:none;

}

/*=====================================
Container
=====================================*/

.footer .container{

    position:relative;

    z-index:2;

}

/*=====================================
Floating Particles
=====================================*/

.footer-particles{

    position:absolute;

    inset:0;

    pointer-events:none;

    overflow:hidden;

}

.footer-particles span{

    position:absolute;

    width:8px;

    height:8px;

    border-radius:50%;

    background:rgba(124,252,0,.35);

    animation:floatParticle linear infinite;

}

/* Particle Positions */

.footer-particles span:nth-child(1){

left:8%;
bottom:-30px;
animation-duration:12s;

}

.footer-particles span:nth-child(2){

left:20%;
bottom:-60px;
animation-duration:15s;

}

.footer-particles span:nth-child(3){

left:40%;
bottom:-40px;
animation-duration:18s;

}

.footer-particles span:nth-child(4){

left:60%;
bottom:-20px;
animation-duration:14s;

}

.footer-particles span:nth-child(5){

left:78%;
bottom:-60px;
animation-duration:17s;

}

.footer-particles span:nth-child(6){

left:92%;
bottom:-40px;
animation-duration:13s;

}

/* Animation */

@keyframes floatParticle{

0%{

transform:translateY(0) scale(.6);

opacity:0;

}

25%{

opacity:.6;

}

100%{

transform:translateY(-650px) scale(1.4);

opacity:0;

}

}

/*=====================================
Footer Logo
=====================================*/

.footer-logo{

    height:72px;

    transition:.4s ease;

}

.footer-logo:hover{

    transform:scale(1.08);

    filter:drop-shadow(0 0 15px rgba(124,252,0,.45));

}

/*=====================================
Company About
=====================================*/

.footer-about{

    margin-top:25px;

    color:#d8d8d8;

    line-height:1.9;

    font-size:16px;

    max-width:340px;

}
/*=====================================
        FOOTER HEADINGS
=====================================*/

.footer h5{

    position:relative;

    font-size:22px;

    font-weight:700;

    color:#ffffff;

    margin-bottom:35px;

    letter-spacing:.5px;

}

.footer h5::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-12px;

    width:55px;

    height:3px;

    background:#25D366;

    border-radius:30px;

    box-shadow:0 0 10px rgba(37,211,102,.45);

}

/*=====================================
Quick Links & Products
=====================================*/

.footer-links{

    list-style:none;

    margin:0;

    padding:0;

}

.footer-links li{

    margin-bottom:15px;

}

.footer-links a{

    display:inline-block;

    color:#d8d8d8;

    text-decoration:none;

    transition:.35s ease;

    font-size:16px;

}

.footer-links a:hover{

    color:#7CFC00;

    transform:translateX(8px);

}

.footer-links li:not(:has(a)){

    color:#d8d8d8;

    font-size:16px;

    transition:.35s;

    cursor:default;

}

.footer-links li:not(:has(a)):hover{

    color:#7CFC00;

    transform:translateX(8px);

}

/*=====================================
Office Section
=====================================*/

.office-box{

    position:relative;

    padding-left:22px;

    margin-bottom:28px;

    border-left:3px solid #25D366;

    transition:.35s ease;

}

.office-box:hover{

    transform:translateY(-6px);

    border-left-color:#7CFC00;

}

.office-box h6{

    font-size:18px;

    font-weight:600;

    color:#ffffff;

    margin-bottom:15px;

    transition:.35s;

}

.office-box:hover h6{

    color:#7CFC00;

}

.office-box p{

    color:#d8d8d8;

    line-height:1.8;

    margin-bottom:10px;

    font-size:15px;

}

.office-box i{

    color:#25D366;

    width:22px;

    margin-right:8px;

    transition:.35s;

}

.office-box:hover i{

    color:#7CFC00;

}

/*=====================================
Footer Email
=====================================*/

.footer-email{

    display:flex;

    align-items:center;

    margin-top:30px;

}

.footer-email i{

    color:#25D366;

    font-size:18px;

    margin-right:12px;

}

.footer-email a{

    color:#d8d8d8;

    text-decoration:none;

    transition:.35s;

    word-break:break-word;

}

.footer-email a:hover{

    color:#7CFC00;

}

/*=====================================
Divider
=====================================*/

.footer-divider{

    border:none;

    height:1px;

    margin:60px 0 30px;

    background:linear-gradient(

        to right,

        transparent,

        rgba(255,255,255,.25),

        transparent

    );

}

/*=====================================
SOCIAL ICONS
=====================================*/

.social-links{

    display:flex;

    justify-content:flex-end;

    align-items:center;

    gap:14px;

}

.social-links a{

    width:48px;

    height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    border-radius:50%;

    color:#ffffff;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    transition:.4s ease;

}

/* Hover */

.social-links a:hover{

    background:#25D366;

    transform:translateY(-6px) scale(1.1);

    box-shadow:0 10px 30px rgba(37,211,102,.35);

}

.social-links i{

    font-size:18px;

}

/*=====================================
COPYRIGHT
=====================================*/

.copyright{

    color:#cfcfcf;

    font-size:15px;

    margin:0;

    letter-spacing:.3px;

}

.copyright span{

    color:#7CFC00;

    font-weight:600;

}

/*=====================================
BOTTOM ROW
=====================================*/

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

/*=====================================
SMOOTH HOVER EFFECTS
=====================================*/

.footer h5{

    transition:.35s;

}

.footer h5:hover{

    color:#7CFC00;

}

.footer-about{

    transition:.35s;

}

.footer-about:hover{

    color:#ffffff;

}

/*=====================================
ICON ANIMATION
=====================================*/

.office-box i{

    transition:.35s;

}

.office-box:hover i{

    transform:scale(1.2);

}

/*=====================================
EMAIL ICON
=====================================*/

.footer-email i{

    transition:.35s;

}

.footer-email:hover i{

    transform:rotate(-15deg) scale(1.2);

}

/*=====================================
FOOTER FADE EFFECT
=====================================*/

.footer{

    animation:footerFade .8s ease;

}

@keyframes footerFade{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}
@media (max-width:767px){

.footer-logo{

    height:60px;

    background:#ffffff;

    padding:12px 18px;

    border-radius:50px;

    display:inline-block;

    box-shadow:
        0 10px 25px rgba(0,0,0,.15),
        0 0 0 1px rgba(255,255,255,.3);

}

}

/*=====================================
BONUS
SCROLL TO TOP BUTTON
=====================================*/

.back-to-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    border-radius:50%;

    background:#198754;

    color:#ffffff;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    font-size:24px;

    opacity:0;

    visibility:hidden;

    transition:.4s;

    z-index:999;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

}

.back-to-top.active{

    opacity:1;

    visibility:visible;

}

.back-to-top:hover{

    background:#25D366;

    transform:translateY(-6px);

}


/*=====================================
TABLET RESPONSIVE
=====================================*/

@media (max-width:991px){

.footer{

    padding:70px 0 25px;

    text-align:center;

}

.footer-logo{

    margin:0 auto;

    display:block;

}

.footer-about{

    max-width:100%;

    margin:25px auto 35px;

}

.footer h5{

    margin-top:20px;

}

.footer h5::after{

    left:50%;

    transform:translateX(-50%);

}

.footer-links{

    margin-bottom:30px;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a:hover{

    transform:none;

}

.office-box{

    border-left:none;

    border-top:3px solid #25D366;

    padding:20px 0 0;

    margin-top:25px;

    text-align:center;

}

.office-box:hover{

    transform:none;

    background:rgba(255,255,255,.04);

}

.footer-email{

    justify-content:center;

}

.footer-bottom{

    flex-direction:column;

    text-align:center;

}

.social-links{

    justify-content:center;

    margin-top:15px;

}

.footer::before{

    background-size:120%;

}

}

/*=====================================
MOBILE RESPONSIVE
=====================================*/

@media (max-width:767px){

.footer{

    padding:60px 0 20px;

}

.footer-logo{

    height:60px;

}

.footer h5{

    font-size:20px;

    margin-bottom:25px;

}

.footer-about{

    font-size:15px;

    line-height:1.8;

}

.footer-links a{

    font-size:15px;

}

.office-box h6{

    font-size:17px;

}

.office-box p{

    font-size:14px;

}

.footer-email{

    flex-direction:column;

    gap:10px;

}

.footer-email i{

    margin-right:0;

}

.social-links{

    gap:10px;

}

.social-links a{

    width:44px;

    height:44px;

}

.copyright{

    font-size:14px;

    line-height:1.8;

}

.footer-particles{

    display:none;

}

}

/*=====================================
SMALL MOBILE
=====================================*/

@media (max-width:480px){

.footer{

    padding:50px 0 20px;

}

.footer-logo{

    height:55px;

}

.footer h5{

    font-size:18px;

}

.office-box{

    padding-top:18px;

}

.office-box h6{

    font-size:16px;

}

.office-box p{

    font-size:13px;

}

.social-links a{

    width:40px;

    height:40px;

}

.social-links i{

    font-size:16px;

}

}

/*=====================================
TEXT SELECTION
=====================================*/

.footer ::selection{

    background:#25D366;

    color:#fff;

}

/*=====================================
SMOOTH SCROLL
=====================================*/

html{

    scroll-behavior:smooth;

}

/*=====================================
FOCUS STATES
=====================================*/

.footer a:focus{

    outline:2px solid #25D366;

    outline-offset:4px;

    border-radius:4px;

}

/*=====================================
FINAL POLISH
=====================================*/

.footer *{

    transition:

        color .3s ease,

        background .3s ease,

        border-color .3s ease,

        transform .3s ease,

        box-shadow .3s ease;

}






/*=====================================
FLOATING BUTTONS
=====================================*/

.floating-btn{

    position:fixed;

    right:25px;

    width:60px;

    height:60px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    color:#fff;

    font-size:28px;

    z-index:9999;

    transition:.35s ease;

    box-shadow:0 12px 30px rgba(0,0,0,.25);

}

/*==============================
WHATSAPP
==============================*/

.whatsapp-btn{

    bottom:25px;

    background:#25D366;

    animation:whatsappPulse 2s infinite;

}

.whatsapp-btn:hover{

    background:#1EBE5D;

    color:#fff;

    transform:translateY(-6px) scale(1.08);

}

/*==============================
BACK TO TOP
==============================*/

.back-to-top{

    bottom:100px;

    background:#198754;

    opacity:0;

    visibility:hidden;

}

.back-to-top.active{

    opacity:1;

    visibility:visible;

}

.back-to-top:hover{

    background:#146c43;

    color:#fff;

    transform:translateY(-6px);

}

/*==============================
WHATSAPP PULSE
==============================*/

@keyframes whatsappPulse{

0%{

box-shadow:0 0 0 0 rgba(37,211,102,.45);

}

70%{

box-shadow:0 0 0 18px rgba(37,211,102,0);

}

100%{

box-shadow:0 0 0 0 rgba(37,211,102,0);

}

}

/*==============================
TABLET
==============================*/

@media(max-width:991px){

.floating-btn{

width:56px;

height:56px;

font-size:26px;

right:20px;

}

.whatsapp-btn{

bottom:20px;

}

.back-to-top{

bottom:90px;

}

}

/*==============================
MOBILE
==============================*/

@media(max-width:576px){

.floating-btn{

width:52px;

height:52px;

font-size:24px;

right:16px;

}

.whatsapp-btn{

bottom:18px;

}

.back-to-top{

bottom:82px;

}

}





/* ==========================
   RTL Support (Arabic)
========================== */

html[dir="rtl"] {
    direction: rtl;
}

html[dir="rtl"] body {
    text-align: right;
}

html[dir="rtl"] .navbar-nav {
    margin-right: auto;
    margin-left: 0;
}

html[dir="rtl"] .hero-content,
html[dir="rtl"] .section-title,
html[dir="rtl"] .section-description,
html[dir="rtl"] .footer {
    text-align: right;
}