/*====================================
  GOOGLE FONT
====================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*====================================
  RESET CSS
====================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    font-size:16px;
    line-height:1.7;
    color:#333;
    background:#ffffff;
    overflow-x:hidden;
}

/*====================================
  ROOT COLORS
====================================*/

:root{

    --primary:#15803d;
    --secondary:#0f172a;
    --accent:#22c55e;
    --white:#ffffff;
    --black:#111827;
    --gray:#6b7280;
    --light:#f8fafc;
    --border:#e5e7eb;

    --shadow:0 15px 40px rgba(0,0,0,.08);

    --radius:18px;

    --transition:.35s ease;

}

/*====================================
  COMMON
====================================*/

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    transition:var(--transition);
}

ul{
    list-style:none;
    padding:0;
    margin:0;
}

section{
    padding:100px 0;
}

.container{
    max-width:1320px;
}

/*====================================
  HEADINGS
====================================*/

.section-subtitle{

    display:inline-block;

    color:var(--accent);

    font-size:15px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:2px;

    margin-bottom:15px;

}

.section-title{

    font-size:46px;

    font-weight:800;

    color:var(--secondary);

    line-height:1.2;

    margin-bottom:20px;

}

.section-description{

    color:var(--gray);

    font-size:17px;

    max-width:700px;

    margin:auto;

}

/*====================================
  BUTTONS
====================================*/

.btn-primary-custom{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 35px;

    border-radius:50px;

    background:var(--primary);

    color:#fff;

    font-weight:600;

}

.btn-primary-custom:hover{

    background:#166534;

    color:#fff;

    transform:translateY(-4px);

}

.btn-outline-custom{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 35px;

    border-radius:50px;

    border:2px solid #fff;

    color:#fff;

    font-weight:600;

}

.btn-outline-custom:hover{

    background:#fff;

    color:var(--primary);

}

/*==================================
        PREMIUM NAVBAR
==================================*/

.custom-navbar{

    padding:18px 0;

    background:rgba(8,18,13,.15);

    backdrop-filter:blur(14px);

    transition:.4s ease;

}

.custom-navbar.scrolled{

    background:#ffffff;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.navbar-brand img{

    height:60px;

}

.navbar-nav{

    gap:18px;

}

.nav-link{

    position:relative;

    color:#ffffff !important;

    font-size:16px;

    font-weight:600;

    transition:.35s;

}

.custom-navbar.scrolled .nav-link{

    color:#222 !important;

}

.nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    background:#22c55e;

    transition:.35s;

}

.nav-link:hover::after,
.nav-link.active::after{

    width:100%;

}

.nav-link:hover{

    color:#22c55e !important;

}

.nav-btn{

    padding:14px 32px;

    background:#15803d;

    color:#fff;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.nav-btn:hover{

    background:#166534;

    color:#fff;

    transform:translateY(-3px);

}

.navbar-toggler{

    border:none;

    background:#fff;

    padding:8px 12px;

}

.navbar-toggler:focus{

    box-shadow:none;

}

/*==================================
        HERO SECTION
==================================*/

.hero{
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(6,18,10,0.88),
        rgba(12,45,22,0.55),
        rgba(0,0,0,0.20)
    );
}

.hero .container{
    position: relative;
    z-index: 2;
}

/* Hero Tag */

.hero-tag{
    display: inline-block;
    padding: 12px 28px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(12px);
    border-radius: 50px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

/* Main Heading */

.hero-title{
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    color: #fff;
}

.hero-title span{
    color: #39d353;
}

/* Subtitle */

.hero-subtitle{
    font-size: 34px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
}

/* Description */

.hero-description{
    max-width: 650px;
    color: rgba(255,255,255,0.90);
    font-size: 19px;
    line-height: 1.9;
    margin-bottom: 40px;
}

/* Buttons */

.hero-buttons{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Primary Button */

.btn-green{
    display: inline-block;
    background: #15803d;
    color: #fff;
    padding: 16px 38px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: .35s ease;
}

.btn-green:hover{
    background: #166534;
    color: #fff;
    transform: translateY(-4px);
}

/* Outline Button */

.btn-white{
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    padding: 16px 38px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: .35s ease;
}

.btn-white:hover{
    background: #fff;
    color: #15803d;
}

/* Responsive */

@media (max-width:991px){

.hero{
    text-align: center;
}

.hero-title{
    font-size: 48px;
}

.hero-subtitle{
    font-size: 26px;
}

.hero-description{
    font-size: 17px;
    margin: 0 auto 35px;
}

.hero-buttons{
    justify-content: center;
}

}

@media (max-width:576px){

.hero-title{
    font-size: 38px;
}

.hero-subtitle{
    font-size: 22px;
}

.hero-tag{
    font-size: 13px;
}

.btn-green,
.btn-white{
    width: 100%;
    text-align: center;
}

}

/*==================================
      SERVICES SECTION
==================================*/

.services-section{
    padding:110px 0;
    background:#f8fafc;
}

.section-header{
    max-width:760px;
    margin:0 auto 70px;
}

.section-subtitle{
    display:inline-block;
    color:#16a34a;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.section-title{
    font-size:48px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:20px;
}

.section-title span{
    color:#16a34a;
}

.section-description{
    color:#64748b;
    font-size:18px;
    line-height:1.8;
}


.feature-content{
    width:100%;
}

.feature-content h5{
    margin-bottom:5px;
    font-size:18px;
    font-weight:600;
}

.view-more{
    color:#198754;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
}

.view-more:hover{
    text-decoration:underline;
}

.feature-content p{
    margin-top:10px;
    color:#666;
    line-height:1.8;
}


/*==================================
      PREMIUM SERVICE TABS
==================================*/

.service-tabs{

    gap:20px;

}

.service-tabs .nav-link{

    display:flex;

    align-items:center;

    gap:12px;

    background:#ffffff !important;

    color:#0f172a !important;

    border:1px solid #e5e7eb !important;

    border-radius:50px;

    padding:15px 35px;

    font-size:17px;

    font-weight:600;

    transition:.35s;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.service-tabs .nav-link i{

    color:#16a34a;

    font-size:18px;

}

.service-tabs .nav-link:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(0,0,0,.10);

}

.service-tabs .nav-link.active{

    background:#15803d !important;

    color:#fff !important;

    border-color:#15803d !important;

}

.service-tabs .nav-link.active i{

    color:#fff;

}

@media(max-width:768px){

.service-tabs{

    flex-direction:column;

}

.service-tabs .nav-link{

    width:100%;

    justify-content:center;

}

}


/*==================================
      SERVICE CONTENT
==================================*/

.service-content{

    background:#fff;

    padding:45px;

    border-radius:20px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.service-plan{

    display:inline-block;

    background:#e8f8ed;

    color:#15803d;

    padding:8px 18px;

    border-radius:30px;

    font-weight:600;

    margin-bottom:18px;

}

.service-content h2{

    font-size:42px;

    font-weight:700;

    color:#0f172a;

    margin-bottom:20px;

}

.service-content>p{

    color:#64748b;

    margin-bottom:35px;

    line-height:1.8;

}

.service-list{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.service-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

}

.service-item i{

    width:55px;

    height:55px;

    background:#16a34a;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

    flex-shrink:0;

}

.service-item h5{

    margin-bottom:6px;

    font-weight:700;

}

.service-item p{

    margin:0;

    color:#64748b;

}

.service-btn{

    display:inline-block;

    margin-top:35px;

    background:#15803d;

    color:#fff;

    padding:15px 35px;

    border-radius:50px;

    font-weight:600;

    text-decoration:none;

    transition:.3s;

}

.service-btn:hover{

    background:#166534;

    color:#fff;

    transform:translateY(-4px);

}

/*==================================
      WHY CHOOSE US
==================================*/

.why-us-section{
    padding:110px 0;
    background:#fff;
}

.why-video{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

/* HTML5 Video */
.why-video video{
    width:100%;
    height:auto;
    max-height:520px;
    object-fit:contain;
    background:#000;
    display:block;
    border-radius:20px;
}

.why-text{
    margin:25px 0 35px;
    font-size:17px;
    line-height:1.9;
    color:#64748b;
}

.why-list{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.why-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
}

.why-item i{
    width:55px;
    height:55px;
    background:#16a34a;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    flex-shrink:0;
}

.why-item h5{
    margin-bottom:6px;
    font-size:20px;
    font-weight:700;
    color:#0f172a;
}

.why-item p{
    margin:0;
    color:#64748b;
    line-height:1.7;
}

.why-btn{
    display:inline-block;
    margin-top:35px;
    padding:15px 35px;
    background:#16a34a;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.why-btn:hover{
    background:#15803d;
    color:#fff;
    transform:translateY(-3px);
}

@media (max-width:991px){

    .why-video video{
        height:350px;
    }

    .why-us-section{
        padding:80px 0;
    }

}


.why-video-content{
    margin-top:30px;
    padding:25px;
    background:#f8fafc;
    border-top:5px solid #16a34a;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.why-video-title{
    font-size:28px;
    font-weight:700;
    color:#0f172a;
    margin:10px 0 15px;
}

.why-video-text{
    color:#64748b;
    line-height:1.9;
    font-size:16px;
    margin:0;
}

.stats-section{
    padding:110px 0;
    background:#f8fafc;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.stat-card{
    background:#166534;
    color:#fff;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.10);
    transition:.4s ease;
}

.stat-card:hover{
    transform:translateY(-8px);
    background:#198754;
}

.stat-card h2{
    font-size:30px;
    font-weight:700;
    margin-bottom:10px;
    color:#fff;
}

.stat-card p{
    font-size:15px;
    margin:0;
    color:#fff;
}

@media(max-width:992px){
    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .stats-grid{
        grid-template-columns:1fr;
    }
}
/*==============================
        GALLERY
==============================*/

.gallery-section{
    padding:110px 0;
    background:#f8fafc;
}

.gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.10);
    transition:.4s ease;
    cursor:pointer;
    background:#fff;
}

.gallery-card img{
    width:100%;
    height:300px;
    object-fit:cover;
    display:block;
    transition:transform .5s ease;
}

.gallery-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.18);
}

.gallery-card:hover img{
    transform:scale(1.08);
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.10)
    );
    display:flex;
    justify-content:flex-end;
    flex-direction:column;
    padding:25px;
    opacity:0;
    transition:.4s ease;
}

.gallery-card:hover .gallery-overlay{
    opacity:1;
}

.gallery-overlay h5{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin:0;
}

.gallery-overlay p{
    color:#f1f1f1;
    margin-top:8px;
    margin-bottom:0;
    font-size:14px;
}

/* Image Link */

.gallery-card a{
    display:block;
    text-decoration:none;
    color:inherit;
}

/* Mobile */

@media(max-width:991px){

    .gallery-section{
        padding:80px 0;
    }

    .gallery-card img{
        height:250px;
    }

}

@media(max-width:576px){

    .gallery-card img{
        height:220px;
    }

    .gallery-overlay{
        padding:18px;
    }

    .gallery-overlay h5{
        font-size:18px;
    }

}
/*=========================
      TESTIMONIALS
=========================*/

/*==========================
      TESTIMONIAL
===========================*/
.rating i{
    color:#FFC107;
    font-size:16px;
    margin-right:2px;
}

.testimonial-top{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:15px;
}

.testimonial-top img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #16a34a;
}

.testimonial-top h5{
    margin:0;
    font-weight:700;
}

.testimonial-top small{
    color:#777;
}
/*==================================
        PRICING SECTION
==================================*/

.pricing-section{
    padding:110px 0;
    background:#f8fafc;
}

.pricing-card{

    position:relative;
    background:#fff;
    border-radius:24px;
    padding:50px 40px;
    text-align:center;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    transition:.35s;
    overflow:hidden;
}

.pricing-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 70px rgba(0,0,0,.12);

}

.pricing-badge{

    position:absolute;
    top:20px;
    right:-45px;

    background:#16a34a;
    color:#fff;

    padding:10px 55px;

    font-size:13px;
    font-weight:600;

    transform:rotate(45deg);
}

.pricing-card h4{

    font-size:30px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:30px;

}

.price{

    margin-bottom:10px;

}

.currency{

    font-size:34px;
    color:#16a34a;
    font-weight:700;
    vertical-align:top;

}

.amount{

    font-size:72px;
    font-weight:800;
    color:#16a34a;

}

.unit{

    font-size:24px;
    font-weight:600;
    color:#334155;

}

.or-text{

    font-size:22px;
    font-weight:700;
    margin:15px 0;
    color:#64748b;

}

.minimum-price{

    font-size:34px;
    font-weight:700;
    color:#0f172a;

}

.pricing-note{

    margin-top:10px;
    color:#64748b;
    font-size:17px;

}

.gst-note{

    color:#ef4444;
    font-weight:600;
    margin-bottom:35px;

}

.pricing-features{

    list-style:none;
    padding:0;
    margin:0 0 40px;

}

.pricing-features li{

    padding:14px 0;
    border-bottom:1px solid #e5e7eb;
    font-size:18px;

}

.pricing-features li:last-child{

    border-bottom:none;

}

.pricing-features i{

    color:#16a34a;
    margin-right:10px;

}

.pricing-btn{

    display:inline-block;

    padding:16px 45px;

    background:#16a34a;
    color:#fff;

    text-decoration:none;

    border-radius:50px;

    font-size:18px;
    font-weight:600;

    transition:.3s;

}

.pricing-btn:hover{

    background:#15803d;
    color:#fff;
    transform:translateY(-3px);

}

@media(max-width:768px){

    .pricing-card{

        padding:40px 25px;

    }

    .amount{

        font-size:56px;

    }

    .minimum-price{

        font-size:28px;

    }

}


/*==================================
        CONTACT
==================================*/

.contact-section{
    padding:110px 0;
    background:#f8fafc;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.contact-box{
    display:flex;
    gap:20px;
    background:#fff;
    padding:25px;
    border-radius:18px;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
}

.contact-box i{
    width:60px;
    height:60px;
    background:#16a34a;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.contact-box h5{
    font-weight:700;
    margin-bottom:6px;
}

.contact-box p{
    margin:0;
    color:#64748b;
}

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}

.contact-form .form-control{
    border-radius:12px;
    padding:15px;
    border:1px solid #e5e7eb;
    box-shadow:none;
}

.contact-form .form-control:focus{
    border-color:#16a34a;
    box-shadow:0 0 0 .2rem rgba(22,163,74,.15);
}

.btn-submit{
    background:#16a34a;
    color:#fff;
    padding:15px 40px;
    border:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn-submit:hover{
    background:#15803d;
}

/*==================================
            FOOTER
==================================*/

.footer{
    background:#0f172a;
    color:#cbd5e1;
    padding:80px 0 20px;
    position:relative;
}

.footer-logo{
    max-width:180px;
    margin-bottom:25px;
}

.footer-text{
    line-height:1.9;
    margin-bottom:25px;
}

.footer h4{
    color:#fff;
    margin-bottom:25px;
    font-size:20px;
    font-weight:700;
}

.footer ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer ul li{
    margin-bottom:15px;
}

.footer ul li a{
    color:#cbd5e1;
    text-decoration:none;
    transition:.3s;
}

.footer ul li a:hover{
    color:#22c55e;
    padding-left:6px;
}

.footer-contact li{
    display:flex;
    gap:12px;
    align-items:flex-start;
}

.footer-contact i{
    color:#22c55e;
    margin-top:4px;
}

.footer-social{
    display:flex;
    gap:12px;
}

.footer-social a{
    width:45px;
    height:45px;
    background:#1e293b;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:.3s;
}

.footer-social a:hover{
    background:#22c55e;
    transform:translateY(-4px);
}

.footer hr{
    border-color:#334155;
    margin:45px 0 25px;
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}

.footer-bottom p{
    margin:0;
}

.back-top{
    position:fixed;
    right:25px;
    bottom:25px;
    width:50px;
    height:50px;
    background:#16a34a;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    transition:.3s;
    z-index:999;
}

.back-top:hover{
    background:#15803d;
    color:#fff;
    transform:translateY(-5px);
}

@media (max-width:768px){

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

}


.visitor-counter{
    background:#0f172a;
    color:#fff;
    border-radius:8px;
    padding:15px;
    margin-bottom:20px;
    font-size:16px;
    font-weight:600;
}

.visitor-counter i{
    margin-right:6px;
}