﻿@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700&family=Poppins:wght@300;400;500&display=swap');
* {
    margin:0;
    padding:0;
    box-sizing:border-box;
}
/* Topbar */
.topbar {
    background: #000;
    padding: 8px 20px;
    font-size: 14px;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.topbar a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

    .topbar a:hover {
        color: #ffcc00;
    }

.topbar i {
    margin-right: 6px;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .topbar-content {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}
/* Navbar */
.navbar {
    padding: 12px 0;
}



.nav-link {
    font-size: 16px;
    font-weight: 700;
    margin: 0 10px;
    color: #004526 !important;
    transition: 0.3s;
}

    .nav-link:hover {
        color: #198754 !important;
    }

.nav-icon {
    color: #004526;
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s;
}

    .nav-icon:hover {
        color: #198754;
    }

.dropdown-menu {
    border-radius: 10px;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.video-banner {
    position: relative;
    width: 100%;
    height: 70vh;
    /*overflow: hidden;*/
}

    .video-banner video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

    .video-content h1 {
        font-size: 60px;
        font-weight: bold;
    }

    .video-content p {
        font-size: 22px;
    }
/* About Section */
.about-section {
    position: relative;
    background: #f4fff4;
    padding: 120px 0 80px;
    overflow: hidden;
}

/* Curve */
.curve-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

    .curve-top svg {
        display: block;
        width: 100%;
        height: 100px;
    }

/* Image */
.about-img img {
    border-radius: 20px;
    width: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Content */
.sub-title {
    color: #198754;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.about-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .about-section {
        padding: 90px 0 60px;
        text-align: center;
    }

    .about-content h2 {
        font-size: 30px;
    }

    .curve-top svg {
        height: 70px;
    }
}
/* Guarantee Section */
.guarantee-section {
    padding: 90px 0;
    background: #f8f8f8;
}

/* Title */
.section-title h2 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #111;
}

.section-title p {
    max-width: 900px;
    margin: auto;
    font-size: 17px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 70px;
}

/* Box */
.guarantee-box {
    padding: 20px;
    transition: 0.3s;
}

    .guarantee-box img {
        width: 120px;
        margin-bottom: 30px;
    }

    .guarantee-box h3 {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #111;
        font-family: serif;
    }

    .guarantee-box p {
        font-size: 16px;
        line-height: 1.9;
        color: #666;
    }

    /* Hover */
    .guarantee-box:hover {
        transform: translateY(-8px);
    }

/* Responsive */
@media (max-width: 768px) {

    .guarantee-section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 34px;
    }

    .section-title p {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .guarantee-box img {
        width: 90px;
    }

    .guarantee-box h3 {
        font-size: 24px;
    }
}
/* Products Section */
.products-section {
    padding: 90px 0;
    background: #fff;
}

.product-title {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.product-subtitle {
    color: #666;
    font-size: 16px;
}

/* Product Card */
.product-card {
    overflow: hidden;
    transition: 0.3s;
}

.product-img {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

    .product-img img {
        width: 100%;
        height: 350px;
        object-fit: cover;
        transition: 0.5s;
    }

/* Overlay */
.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.cart-btn {
    background: #fff;
    color: #000;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.3s;
}

    .cart-btn:hover {
        background: #198754;
        color: #fff;
    }

/* Hover Effect */
.product-card:hover .product-overlay {
    opacity: 1;
}

.product-card:hover img {
    transform: scale(1.1);
}

/* Content */
.product-content {
    text-align: center;
    padding-top: 18px;
}

    .product-content h4 {
        font-size: 24px;
        font-weight: 600;
        color: #111;
    }

/* Responsive */
@media (max-width: 768px) {

    .products-section {
        padding: 60px 0;
    }

    .product-title {
        font-size: 34px;
    }

    .product-img img {
        height: 280px;
    }

    .product-content h4 {
        font-size: 20px;
    }
}
/* View All Button */
.view-all-btn{
    display:inline-block;
    background:#198754;
    color:#fff;
    padding:14px;
    border-radius:50px;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:0.3s;
}

.view-all-btn:hover{
    background:#000;
    color:#fff;
    transform:translateY(-3px);
}
/* How We Work */
.work-section{
    padding:20px 0;
    background:#f9f9f9;
}

.work-title{
    font-size:45px;
    font-weight:700;
    color:#111;
    margin-bottom:10px;
}

.work-subtitle{
    max-width:750px;
    margin:auto;
    color:#666;
    font-size:16px;
    line-height:1.8;
}

/* Work Box */
.work-box{
    background:#fff;
    padding:20px 25px;
    border-radius:20px;
    text-align:center;
    position:relative;
    transition:0.4s;
    height:100%;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.work-box:hover{
    transform:translateY(-10px);
}

/* Number */
.work-number{
    position:absolute;
    top:15px;
    right:20px;
    font-size:50px;
    font-weight:700;
    color:rgba(25,135,84,0.1);
}



/* Heading */
.work-box h4{
    font-size:24px;
    font-weight:600;
    margin-bottom:15px;
    color:#111;
}

/* Text */
.work-box p{
    color:#666;
    line-height:1.8;
    font-size:15px;
}

/* Responsive */
@media (max-width:768px){

    .work-section{
        padding:60px 0;
    }

    .work-title{
        font-size:34px;
    }

    .work-box{
        padding:30px 20px;
    }

    .work-box h4{
        font-size:21px;
    }
}
.work-img img{
    width:60%;
    height:auto;
   margin-top:-30px;
    display:block;
    /*border-radius:15px;*/
}

/* Mobile Responsive */
@media (max-width:768px){

    .work-img img{
        width:100%;
        height:auto;
    }

}
/* Footer */
.footer-section{
    background:#111;
    padding:70px 0 20px;
    color:#fff;
}

.footer-box h3{
    font-size:28px;
    margin-bottom:25px;
    font-weight:600;
}

.footer-box p{
    color:#ccc;
    line-height:1.9;
    font-size:15px;
}

/* Links */
.footer-links{
    padding:0;
    margin:0;
    list-style:none;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#ccc;
    text-decoration:none;
    transition:0.3s;
}

.footer-links a:hover{
    color:#198754;
    padding-left:5px;
}

/* Social */
.footer-social{
    margin-top:20px;
}

.footer-social a{
    width:40px;
    height:40px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#222;
    color:#fff;
    border-radius:50%;
    margin-right:10px;
    text-decoration:none;
    transition:0.3s;
}

.footer-social a:hover{
    background:#198754;
}

/* Bottom */
.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    margin-top:50px;
    padding-top:20px;
    text-align:center;
}

.footer-bottom p{
    color:#aaa;
    margin:0;
    font-size:14px;
}

/* Responsive */
@media (max-width:768px){

    .footer-section{
        padding:50px 0 20px;
        text-align:center;
    }

    .footer-box h3{
        font-size:24px;
    }

    .footer-social{
        justify-content:center;
    }

}
/* CTA Section */
.cta-section{
    background:url('img/cta-bg.jpg') center center/cover no-repeat;
    padding:120px 0;
    position:relative;
    overflow:hidden;
}

/* Dark Overlay */
.cta-section::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}

/* Content */
.cta-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
    max-width:800px;
    margin:auto;
}

.cta-content h2{
    font-size:52px;
    font-weight:700;
    margin-bottom:20px;
}

.cta-content p{
    font-size:18px;
    line-height:1.9;
    margin-bottom:35px;
    color:#eee;
}

/* Button */
.cta-btn{
    display:inline-block;
    background:#198754;
    color:#fff;
    padding:15px 40px;
    border-radius:50px;
    text-decoration:none;
    font-size:17px;
    font-weight:600;
    transition:0.3s;
}

.cta-btn:hover{
    background:#fff;
    color:#000;
    transform:translateY(-4px);
}

/* Mobile Responsive */
@media (max-width:768px){

    .cta-section{
        padding:80px 20px;
    }

    .cta-content h2{
        font-size:34px;
    }

    .cta-content p{
        font-size:15px;
    }

    .cta-btn{
        padding:13px 30px;
        font-size:15px;
    }
}
.section-heading{
    font-family: 'Cinzel', serif;
    font-size: 54px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #111;
    text-align: center;
    position: relative;
    margin-bottom: 30px;
}

/* Underline Design */
.section-heading::before{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: #198754;
    border-radius: 10px;
}

.section-heading::after{
    content: '❦';
    position: absolute;
    left: 50%;
    bottom: -28px;
    transform: translateX(-50%);
    font-size: 18px;
    color: #198754;
    background: #fff;
    padding: 0 10px;
}

/* Mobile */
@media (max-width:768px){

    .section-heading{
        font-size: 34px;
        letter-spacing: 2px;
    }

    .section-heading::before{
        width: 80px;
    }

}


