:root{
    --primary-color:#006B2F;
    --secondary-color:#0B8A43;
    --accent-color:#22C55E;
    --dark:#1E1E1E;
    --light:#ffffff;
    --gray:#f8f9fa;
}

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

/* Remove Underline from All Links */

a{
    text-decoration: none !important;
}

a:hover{
    text-decoration: none !important;
}

a:focus{
    text-decoration: none !important;
}

a:visited{
    text-decoration: none !important;
}
/*====================================
            PREMIUM NAVBAR
====================================*/

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.navbar{

    background:linear-gradient(135deg,#005d29,#00843d,#00a54b);

    padding:16px 0;

    transition:.45s ease;

    box-shadow:0 10px 40px rgba(0,0,0,.15);

}

.navbar.sticky{

    padding:10px 0;

    background:rgba(0,90,40,.97);

    backdrop-filter:blur(15px);

    box-shadow:0 12px 35px rgba(0,0,0,.25);

}

/*======================
        LOGO
======================*/

/* Logo Container */

.navbar-brand{

    background:#fff;

    padding:8px 18px;

    border-radius:15px;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 8px 20px rgba(0,0,0,.15);

    transition:.4s ease;

}

.navbar-brand:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 28px rgba(0,0,0,.2);

}

/* Logo Image */

.navbar-brand img{

    height:72px;

    width:auto;

    display:block;

    transition:.4s ease;

}

/* Sticky Navbar */

.navbar.sticky .navbar-brand{

    padding:6px 16px;

}

.navbar.sticky .navbar-brand img{

    height:62px;

}

/* Responsive */

@media (max-width:991px){

    .navbar-brand{

        padding:6px 14px;

    }

    .navbar-brand img{

        height:56px;

    }

}

/*======================
      MENU
======================*/

.navbar-nav{

    gap:8px;

}

.nav-link{

    position:relative;

    color:#fff;

    font-size:16px;

    font-weight:600;

    padding:12px 18px!important;

    letter-spacing:.5px;

    transition:.4s;

    overflow:hidden;

}

.nav-link:hover{

    color:#fff;

}

/* Animated Underline */

.nav-link::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:6px;

    width:0;

    height:3px;

    background:#fff;

    border-radius:50px;

    transform:translateX(-50%);

    transition:.4s;

}

.nav-link:hover::after{

    width:75%;

}

.nav-link.active::after{

    width:75%;

}

/* Glow Line */

.nav-link::before{

    content:"";

    position:absolute;

    left:50%;

    bottom:5px;

    width:0;

    height:8px;

    background:rgba(255,255,255,.35);

    filter:blur(8px);

    transform:translateX(-50%);

    transition:.4s;

}

.nav-link:hover::before,

.nav-link.active::before{

    width:75%;

}

/* Hover Effect */

.nav-link:hover{

    transform:translateY(-2px);

}

/*======================
      CALL BUTTON
======================*/

.call-btn{

    position:relative;

    overflow:hidden;

    display:flex;

    align-items:center;

    gap:10px;

    padding:13px 28px;

    border-radius:50px;

    color:#006B2F;

    background:#fff;

    font-weight:700;

    transition:.45s;

    box-shadow:0 12px 25px rgba(255,255,255,.18);

}

.call-btn i{

    font-size:18px;

}

.call-btn:hover{

    color:#fff;

    transform:translateY(-4px);

    box-shadow:0 18px 35px rgba(255,255,255,.2);

}

.call-btn::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(90deg,#00a54b,#009944);

    transform:translateX(-100%);

    transition:.45s;

    z-index:-1;

}

.call-btn:hover::before{

    transform:translateX(0);

}

/*======================
    TOGGLER
======================*/

.navbar-toggler{

    border:none;

    box-shadow:none!important;

    color:#fff;

    font-size:36px;

}

/*======================
    OFFCANVAS
======================*/

.offcanvas{

    background:linear-gradient(180deg,#005d29,#00843d);

    color:#fff;

    width:300px;

}

.offcanvas-header{

    border-bottom:1px solid rgba(255,255,255,.15);

    padding:20px;

}

.offcanvas-header img{

    height:60px;

}

.btn-close{

    filter:invert(1);

}

/*======================
    MOBILE MENU
======================*/

.mobile-nav{

    list-style:none;

    padding:0;

    margin-top:25px;

}

.mobile-nav li{

    margin-bottom:15px;

}

.mobile-nav a{

    display:flex;

    align-items:center;

    gap:15px;

    color:#fff;

    padding:15px 18px;

    border-radius:15px;

    background:rgba(255,255,255,.08);

    transition:.4s;

    font-weight:600;

}

.mobile-nav a i{

    font-size:20px;

}

.mobile-nav a:hover{

    background:#fff;

    color:#006B2F;

    transform:translateX(10px);

}

.mobile-call{

    margin-top:35px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    padding:15px;

    background:#fff;

    color:#006B2F;

    border-radius:50px;

    font-weight:700;

    transition:.4s;

}

.mobile-call:hover{

    background:#00c853;

    color:#fff;

}

/*======================
    RESPONSIVE
======================*/

@media(max-width:991px){

.navbar{

padding:12px 0;

}

.navbar-brand img{

height:58px;

}

}

@media(max-width:576px){

.navbar-brand img{

height:52px;

}

.call-btn{

display:none;

}

}


.hero-section,
.heroSlider,
.heroSlider .swiper-slide{
    height:100vh;
}

.heroSlider .swiper-slide{
    background-size:cover;
    background-position:center;
    position:relative;
    display:flex;
    align-items:center;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.60);
}

.hero-content{
    position:relative;
    z-index:2;
    color:#fff;
    max-width:650px;
}

.hero-content span{
    display:inline-block;
    background:rgba(255,255,255,.15);
    padding:8px 22px;
    border-radius:30px;
    margin-bottom:20px;
    font-weight:600;
    backdrop-filter:blur(10px);
}

.hero-content h1{
    font-size:68px;
    font-weight:800;
    margin-bottom:20px;
}

.hero-content p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-btn{
    background:#00A651;
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    margin-right:15px;
    font-weight:600;
}

.hero-btn2{
    border:2px solid #fff;
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
}

.hero-btn:hover{
    background:#fff;
    color:#006B2F;
}

.hero-btn2:hover{
    background:#fff;
    color:#006B2F;
}

.swiper-button-next,
.swiper-button-prev{
    width:60px;
    height:60px;
    border-radius:50%;
    background:rgba(255,255,255,.18);
    backdrop-filter:blur(10px);
    color:#fff;
}

.swiper-button-next::after,
.swiper-button-prev::after{
    font-size:20px;
    font-weight:bold;
}

.swiper-pagination-bullet{
    width:12px;
    height:12px;
    background:#fff;
    opacity:.5;
}

.swiper-pagination-bullet-active{
    width:35px;
    border-radius:20px;
    background:#00C853;
    opacity:1;
}

@media(max-width:768px){

.hero-content{
    text-align:center;
}

.hero-content h1{
    font-size:42px;
}

.hero-content p{
    font-size:16px;
}

.swiper-button-next,
.swiper-button-prev{
    display:none;
}

}




/*==============================
        ABOUT SECTION
==============================*/

.about-section{
    padding:100px 0;
    background:#f8fbf8;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.experience-box{
    position:absolute;
    bottom:25px;
    right:-20px;
    width:170px;
    height:170px;
    background:linear-gradient(135deg,#006B2F,#00A651);
    border-radius:20px;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    box-shadow:0 15px 30px rgba(0,0,0,.25);
}

.experience-box h2{
    font-size:52px;
    font-weight:800;
    margin:0;
}

.experience-box p{
    margin:0;
    text-align:center;
    color:#fff;
}

.about-subtitle{
    display:inline-block;
    background:#e9f8ef;
    color:#006B2F;
    padding:10px 20px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:20px;
}

.about-subtitle i{
    margin-right:8px;
}

.about-title{
    font-size:42px;
    font-weight:700;
    color:#222;
    margin-bottom:20px;
}

.about-description{
    color:#666;
    line-height:1.9;
    margin-bottom:25px;
}

.about-feature{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:18px;
    font-weight:600;
}

.about-feature i{
    color:#00A651;
    font-size:20px;
}

.about-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#006B2F;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.about-btn:hover{
    background:#00A651;
    color:#fff;
    transform:translateY(-5px);
}

@media(max-width:991px){

.about-section{
    text-align:center;
}

.experience-box{
    position:relative;
    right:0;
    bottom:0;
    margin:20px auto;
}

.about-feature{
    justify-content:center;
}

.about-title{
    font-size:34px;
}

}

@media(max-width:576px){

.about-title{
    font-size:28px;
}

.about-section{
    padding:70px 0;
}

}

/*==============================
        SERVICES
==============================*/

.services-section{
    padding:100px 0;
    background:#f8fbf8;
}

.service-tag{
    display:inline-block;
    padding:10px 22px;
    background:#e8f8ef;
    color:#006B2F;
    border-radius:30px;
    font-weight:600;
    margin-bottom:20px;
}

.service-title{
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
}

.service-text{
    color:#666;
    max-width:700px;
    margin:auto;
}

.service-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    height:100%;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.service-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.service-body{
    padding:30px;
    text-align:center;
}

.service-body i{
    width:70px;
    height:70px;
    background:#006B2F;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:-65px auto 20px;
    border-radius:50%;
    border:5px solid #fff;
    font-size:30px;
}

.service-body h4{
    font-weight:700;
    margin-bottom:15px;
}

.service-body p{
    color:#666;
    line-height:1.8;
}

@media(max-width:768px){

.service-title{
    font-size:30px;
}

.service-card img{
    height:220px;
}

}

/*==============================
        WHY CHOOSE US
==============================*/

.why-section{

    padding:100px 0;

    background:#ffffff;

}

.why-tag{

    display:inline-block;

    padding:10px 22px;

    background:#e8f8ef;

    color:#006B2F;

    border-radius:30px;

    font-weight:600;

    margin-bottom:20px;

}

.why-title{

    font-size:42px;

    font-weight:700;

    margin-bottom:15px;

}

.why-desc{

    max-width:700px;

    margin:auto;

    color:#666;

}

.why-card{

    background:#fff;

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    transition:.4s;

    border:1px solid #eee;

    height:100%;

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 15px 40px rgba(0,0,0,.10);

}

.why-icon{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:linear-gradient(135deg,#006B2F,#00A651);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

}

.why-card h4{

    font-weight:700;

    margin-bottom:15px;

}

.why-card p{

    color:#666;

    line-height:1.8;

}

@media(max-width:768px){

.why-title{

font-size:30px;

}

}

/*==============================
      PARALLAX SECTION
==============================*/

.parallax-section{

    position:relative;

    padding:140px 0;

    background:url("./img/banner.png") center center/cover no-repeat;

    background-attachment:fixed;

    overflow:hidden;

}

.parallax-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.65);

}

.parallax-section .container{

    position:relative;

    z-index:2;

}

.parallax-tag{

    display:inline-block;

    padding:10px 22px;

    border-radius:30px;

    background:rgba(255,255,255,.15);

    color:#fff;

    font-weight:600;

    margin-bottom:20px;

    backdrop-filter:blur(10px);

}

.parallax-tag i{

    margin-right:8px;

}

.parallax-section h2{

    color:#fff;

    font-size:52px;

    font-weight:700;

    margin-bottom:20px;

}

.parallax-section p{

    color:#ddd;

    font-size:18px;

    line-height:1.8;

    max-width:800px;

    margin:auto;

}

.parallax-btn{

    display:inline-block;

    background:#00A651;

    color:#fff;

    padding:15px 38px;

    border-radius:50px;

    margin-right:15px;

    font-weight:600;

    transition:.4s;

}

.parallax-btn:hover{

    background:#fff;

    color:#006B2F;

}

.parallax-btn2{

    display:inline-block;

    border:2px solid #fff;

    color:#fff;

    padding:15px 38px;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

}

.parallax-btn2:hover{

    background:#fff;

    color:#006B2F;

}

@media(max-width:768px){

.parallax-section{

background-attachment:scroll;

padding:90px 0;

}

.parallax-section h2{

font-size:34px;

}

.parallax-btn,

.parallax-btn2{

display:block;

margin:10px auto;

width:250px;

}

}

/*==============================
        BANNER SECTION
==============================*/

.banner-section{

    width:100%;

    overflow:hidden;

    background:#fff;

}

.banner-section img{

    width:100%;

    height:auto;

    display:block;

    object-fit:cover;

    transition:.5s;

}

.banner-section:hover img{

    transform:scale(1.03);

}

/* Mobile */

@media(max-width:768px){

.banner-section img{

    min-height:220px;

    object-fit:cover;

}

}

/*=================================
        WORKING PROCESS
==================================*/

.process-section{

    padding:100px 0;

    background:#f8fbf8;

}

.process-tag{

    display:inline-block;

    padding:10px 22px;

    background:#EAF8EF;

    color:#006B2F;

    border-radius:30px;

    font-weight:600;

    margin-bottom:20px;

}

.process-title{

    font-size:42px;

    font-weight:700;

    margin-bottom:15px;

}

.process-desc{

    max-width:700px;

    margin:auto;

    color:#666;

}

.process-card{

    background:#fff;

    padding:40px 30px;

    text-align:center;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

    position:relative;

}

.process-card:hover{

    transform:translateY(-10px);

}

.process-icon{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(135deg,#006B2F,#00A651);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:34px;

    margin-bottom:20px;

}

.process-card span{

    position:absolute;

    top:20px;

    right:20px;

    font-size:45px;

    font-weight:800;

    color:#EAF8EF;

}

.process-card h4{

    font-weight:700;

    margin-bottom:15px;

}

.process-card p{

    color:#666;

    line-height:1.8;

}

@media(max-width:768px){

.process-title{

font-size:30px;

}

}

.testimonial-section{
    padding:100px 0;
    background:#fff;
}

.testimonial-card{

    background:#fff;

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

}

.testimonial-card:hover{

    transform:translateY(-10px);

}

.testimonial-card img{

    width:90px;

    height:90px;

    border-radius:50%;

    object-fit:cover;

    margin-bottom:20px;

    border:5px solid #00A651;

}

.testimonial-card h5{

    font-weight:700;

}

.testimonial-card small{

    color:#777;

}

.stars{

    color:#FFC107;

    margin:15px 0;

    font-size:18px;

}

.testimonial-card p{

    color:#666;

    line-height:1.8;

}

.testimonial-pagination{

    margin-top:40px;

    position:relative;

}


/*==============================
        CONTACT
==============================*/

.contact-section{

    padding:100px 0;

    background:#f8fbf8;

}

.contact-info{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    height:100%;

}

.info-box{

    display:flex;

    gap:20px;

    margin-bottom:30px;

}

.info-box i{

    width:60px;

    height:60px;

    background:#006B2F;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    flex-shrink:0;

}

.info-box h5{

    font-weight:700;

    margin-bottom:8px;

}

.contact-form{

    background:#fff;

    padding:40px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.form-control{

    height:55px;

    border-radius:10px;

}

textarea.form-control{

    height:auto;

}

.contact-btn{

    background:#00A651;

    color:#fff;

    border:none;

    padding:15px 40px;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

}

.contact-btn:hover{

    background:#006B2F;

}

@media(max-width:768px){

.contact-form{

padding:25px;

}

}

/*==============================
        SECTION TAG
==============================*/

.section-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 28px;

    background:linear-gradient(135deg,#006B2F,#00A651);

    color:#fff;

    font-size:16px;

    font-weight:600;

    border-radius:50px;

    margin-bottom:20px;

    box-shadow:0 10px 25px rgba(0,107,47,.25);

    transition:.4s;

}

.section-tag i{

    width:38px;

    height:38px;

    background:rgba(255,255,255,.20);

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

    transition:.4s;

}

.section-tag:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(0,107,47,.35);

}

.section-tag:hover i{

    transform:rotate(360deg);

    background:#fff;

    color:#006B2F;

}

/*==================================
          PREMIUM FAQ
===================================*/

.faq-area{

    padding:100px 0;

    background:#f8fbf8;

}

.faq-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:linear-gradient(135deg,#006B2F,#00A651);

    color:#fff;

    padding:10px 24px;

    border-radius:40px;

    font-weight:600;

    margin-bottom:20px;

}

.faq-heading{

    font-size:46px;

    font-weight:700;

    margin-bottom:20px;

    color:#222;

}

.faq-text{

    color:#666;

    line-height:1.9;

    margin-bottom:35px;

}

.faq-image{

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.faq-accordion .accordion-item{

    border:none;

    border-radius:18px;

    overflow:hidden;

    margin-bottom:20px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.faq-accordion .accordion-button{

    padding:22px 25px;

    font-weight:600;

    font-size:18px;

    background:#fff;

    color:#222;

    box-shadow:none;

}

.faq-accordion .accordion-button:not(.collapsed){

    background:linear-gradient(135deg,#006B2F,#00A651);

    color:#fff;

}

.faq-accordion .accordion-button:focus{

    box-shadow:none;

}

.faq-accordion .accordion-body{

    padding:22px 25px;

    line-height:1.9;

    color:#666;

    background:#fff;

}

.faq-accordion .accordion-button::after{

    background-size:18px;

}

.faq-accordion .accordion-button:not(.collapsed)::after{

    filter:brightness(0) invert(1);

}

@media(max-width:991px){

.faq-area{

text-align:center;

}

.faq-heading{

font-size:34px;

}

.faq-image{

margin-bottom:40px;

}

}

@media(max-width:576px){

.faq-area{

padding:70px 0;

}

.faq-heading{

font-size:28px;

}

.faq-accordion .accordion-button{

font-size:16px;

}

}

/*==================================
            FOOTER
===================================*/

.footer{

    background:#0f1720;

    color:#fff;

    padding-top:80px;

}

.footer-logo{

    height:85px;

    background:#fff;

    padding:8px;

    border-radius:12px;

    margin-bottom:25px;

}

.footer-about{

    color:#cfcfcf;

    line-height:1.9;

    margin-bottom:25px;

}

.footer h4{

    font-size:22px;

    font-weight:700;

    margin-bottom:25px;

    position:relative;

}

.footer h4::after{

    content:"";

    width:55px;

    height:3px;

    background:#00A651;

    position:absolute;

    left:0;

    bottom:-10px;

}

.footer ul{

    padding:0;

    margin:0;

    list-style:none;

}

.footer ul li{

    margin-bottom:15px;

}

.footer ul li a{

    color:#cfcfcf;

    transition:.4s;

}

.footer ul li a:hover{

    color:#00A651;

    padding-left:8px;

}

.footer-contact p{

    color:#cfcfcf;

    margin-bottom:18px;

    display:flex;

    gap:12px;

    align-items:flex-start;

}

.footer-contact i{

    color:#00A651;

    font-size:18px;

    margin-top:4px;

}

.footer-social{

    display:flex;

    gap:15px;

}

.footer-social a{

    width:45px;

    height:45px;

    background:#1d2a36;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.4s;

    font-size:18px;

}

.footer-social a:hover{

    background:#00A651;

    transform:translateY(-5px);

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.10);

    margin-top:60px;

    padding:25px 0;

    color:#cfcfcf;

}

.footer-bottom a{

    color:#00A651;

    font-weight:700;

}

.footer-bottom a:hover{

    color:#fff;

}

@media(max-width:768px){

.footer{

text-align:center;

}

.footer h4::after{

left:50%;

transform:translateX(-50%);

}

.footer-contact p{

justify-content:center;

}

.footer-social{

justify-content:center;

}

.footer-logo{

margin:auto auto 25px;

display:block;

}

}


/*==================================
        PAGE HEADER
===================================*/

.page-header{

    position:relative;

    width:100%;

    height:600px;

    background:url("./img/banner2.png") center center/cover no-repeat;

    background-attachment:fixed;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

}

.page-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65));

}

.page-content{

    position:relative;

    z-index:2;

    color:#fff;

}

.page-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 25px;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    border-radius:50px;

    font-weight:600;

    margin-bottom:25px;

}

.page-tag i{

    color:#00C853;

}

.page-content h1{

    font-size:70px;

    font-weight:800;

    margin-bottom:20px;

    text-transform:uppercase;

}

.page-content p{

    font-size:20px;

    color:#f2f2f2;

    line-height:1.8;

    margin-bottom:25px;

}

.breadcrumb{

    background:transparent;

    margin:0;

}

.breadcrumb-item{

    color:#fff;

    font-weight:600;

}

.breadcrumb-item a{

    color:#00C853;

    transition:.4s;

}

.breadcrumb-item a:hover{

    color:#fff;

}

.breadcrumb-item+.breadcrumb-item::before{

    color:#fff;

}

@media(max-width:991px){

.page-header{

height:520px;

background-attachment:scroll;

}

.page-content h1{

font-size:48px;

}

.page-content p{

font-size:17px;

}

}

@media(max-width:576px){

.page-header{

height:550px;

}

.page-content h1{

font-size:36px;

}

.page-content p{

font-size:15px;

}

.page-tag{

font-size:14px;

padding:10px 20px;

}

}

/*==================================
        ABOUT COMPANY
===================================*/

.about-company{

    padding:100px 0;

    background:#fff;

}

.about-company-img{

    position:relative;

}

.about-company-img img{

    width:100%;

    border-radius:20px;

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.experience-box{

    position:absolute;

    bottom:25px;

    right:-20px;

    width:170px;

    height:170px;

    background:linear-gradient(135deg,#006B2F,#00A651);

    color:#fff;

    border-radius:20px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

}

.experience-box h2{

    font-size:52px;

    font-weight:800;

    margin:0;

}

.about-label{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#EAF8EF;

    color:#006B2F;

    padding:10px 22px;

    border-radius:30px;

    font-weight:600;

    margin-bottom:20px;

}

.about-company h2{

    font-size:42px;

    font-weight:700;

    margin-bottom:20px;

}

.about-company p{

    color:#666;

    line-height:1.9;

    margin-bottom:18px;

}

.about-feature{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:18px;

    font-weight:600;

}

.about-feature i{

    color:#00A651;

}

.about-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#006B2F;

    color:#fff;

    padding:15px 35px;

    border-radius:50px;

    transition:.4s;

}

.about-btn:hover{

    background:#00A651;

    color:#fff;

}

@media(max-width:991px){

.about-company{

text-align:center;

}

.experience-box{

position:relative;

right:0;

bottom:0;

margin:20px auto;

}

.about-feature{

justify-content:center;

}

}

@media(max-width:576px){

.about-company{

padding:70px 0;

}

.about-company h2{

font-size:30px;

}

}


/*==================================
        MISSION & VISION
===================================*/

.mission-vision{

    padding:100px 0;

    background:#f8fbf8;

}

.mv-card{

    background:#fff;

    padding:45px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

    position:relative;

    overflow:hidden;

}

.mv-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.mv-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:6px;

    height:100%;

    background:#00A651;

}

.mv-icon{

    width:90px;

    height:90px;

    background:linear-gradient(135deg,#006B2F,#00A651);

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:38px;

    margin-bottom:25px;

}

.mv-icon.vision{

    background:linear-gradient(135deg,#0B8A43,#22C55E);

}

.mv-card h3{

    font-size:30px;

    font-weight:700;

    margin-bottom:20px;

}

.mv-card p{

    color:#666;

    line-height:1.9;

    margin-bottom:25px;

}

.mv-card ul{

    list-style:none;

    padding:0;

    margin:0;

}

.mv-card ul li{

    margin-bottom:15px;

    font-weight:600;

}

.mv-card ul li i{

    color:#00A651;

    margin-right:10px;

}

@media(max-width:991px){

.mv-card{

text-align:center;

padding:35px;

}

.mv-icon{

margin:auto auto 25px;

}

}


/*==================================
        CONTACT INFO
===================================*/

.contact-info-section{

    padding:100px 0;

    background:#f8fbf8;

}

.contact-card{

    background:#fff;

    padding:40px 30px;

    text-align:center;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

}

.contact-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.contact-icon{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:linear-gradient(135deg,#006B2F,#00A651);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

}

.contact-card h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;

}

.contact-card p{

    color:#666;

    line-height:1.8;

}

@media(max-width:768px){

.contact-info-section{

padding:70px 0;

}

}


.enquiry-section{

    padding:100px 0;

    background:#f8fbf8;

}

.enquiry-box{

    background:#fff;

    padding:45px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.10);

}

.enquiry-img{

    border-radius:20px;

}

.enquiry-box h2{

    font-size:38px;

    font-weight:700;

    margin:15px 0;

}

.enquiry-box p{

    color:#666;

    margin-bottom:30px;

}

.form-control,
.form-select{

    height:55px;

    border-radius:12px;

    border:1px solid #ddd;

}

textarea.form-control{

    height:auto;

}

.submit-btn{

    width:100%;

    height:58px;

    border:none;

    border-radius:50px;

    background:linear-gradient(135deg,#006B2F,#00A651);

    color:#fff;

    font-size:18px;

    font-weight:600;

    transition:.4s;

}

.submit-btn:hover{

    transform:translateY(-4px);

}


/*==============================
        GOOGLE MAP
==============================*/

.map-section{

    width:100%;

    overflow:hidden;

}

.map-section iframe{

    width:100%;

    height:500px;

    display:block;

    border:0;

}

@media(max-width:768px){

.map-section iframe{

    height:350px;

}

}

/*==================================
      FLOATING WHATSAPP
===================================*/

.whatsapp-float{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    background:#25D366;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    z-index:99999;

    box-shadow:0 10px 30px rgba(37,211,102,.45);

    animation:whatsappPulse 2s infinite;

    transition:.4s;

}

.whatsapp-float:hover{

    color:#fff;

    background:#128C7E;

    transform:scale(1.12);

}

@keyframes whatsappPulse{

    0%{

        box-shadow:0 0 0 0 rgba(37,211,102,.7);

    }

    70%{

        box-shadow:0 0 0 20px rgba(37,211,102,0);

    }

    100%{

        box-shadow:0 0 0 0 rgba(37,211,102,0);

    }

}

@media(max-width:768px){

.whatsapp-float{

    width:58px;

    height:58px;

    font-size:30px;

    right:18px;

    bottom:18px;

}

}


/*==================================
        SCROLL TOP
===================================*/

#scrollTop{

    position:fixed;

    right:25px;

    bottom:100px;

    width:60px;

    height:60px;

    border:none;

    outline:none;

    border-radius:50%;

    background:linear-gradient(135deg,#006B2F,#00A651);

    color:#fff;

    font-size:24px;

    cursor:pointer;

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:.4s;

    z-index:9999;

    box-shadow:0 10px 30px rgba(0,107,47,.35);

}

#scrollTop.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

#scrollTop:hover{

    transform:translateY(-5px);

    background:linear-gradient(135deg,#00A651,#006B2F);

    box-shadow:0 15px 35px rgba(0,107,47,.45);

}

#scrollTop i{

    transition:.4s;

}

#scrollTop:hover i{

    transform:translateY(-3px);

}

@media(max-width:768px){

#scrollTop{

    width:55px;

    height:55px;

    right:18px;

    bottom:90px;

    font-size:22px;

}

}