:root {
    /* COLORS */
    --primary: #FFD700;
    /* Yellow */
    --secondary: #1E7F3F;
    /* Green */
    --black: #000000;
    --dark: #111111;
    --white: #ffffff;
    --gray: #777;

    /* FONTS */
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Open Sans', sans-serif;

    /* FONT SIZES */
    --h1: 48px;
    --h2: 36px;
    --h3: 28px;
    --p: 16px;

    /* SPACING */
    --section-padding: 80px 0;

    /* TRANSITION */
    --transition: 0.3s ease;
}



.btn-custom {
    background: var(--primary);
    color: var(--black);
    padding: 10px 25px;
    transition: var(--transition);
}

.btn-custom:hover {
    background: var(--secondary);
    color: var(--white);
}

/* 🔥 TOP BAR - GREEN PREMIUM */
.top-bar {
    background: linear-gradient(90deg, #1E7F3F, #2bbf6a);
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
    font-weight: 500;
}

/* ICON STYLE */
.top-bar i {
    color: #FFD700;
    margin-right: 6px;
}

/* TEXT SPACING */
.top-bar div {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* 🔥 NAVBAR BASE */
.custom-navbar {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    transition: 0.4s;
    padding: 15px 0;
}

/* LOGO TEXT */
.logo-text {
    color: var(--primary);
    font-weight: 700;
    margin-left: 8px;
}

/* NAV LINKS */
.nav-link {
    color: #fff !important;
    margin-left: 20px;
    position: relative;
    font-weight: 500;
    transition: 0.3s;
}

/* 🔥 UNDERLINE EFFECT */
.nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--primary);
    left: 0;
    bottom: -5px;
    transition: 0.4s;
}

/* HOVER */
.nav-link:hover::after {
    width: 100%;
}

/* ACTIVE LINK */
.nav-link.active {
    color: var(--primary) !important;
}

.nav-link.active::after {
    width: 100%;
}

/* 🔥 NAVBAR SCROLL EFFECT */
.navbar.scrolled {
    background: #000;
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

/* TOGGLER */
.navbar-toggler {
    border: none;
    color: #fff;
    font-size: 24px;
}


/* HERO SECTION */
.hero-section {
    width: 100%;
    height: 100vh;
}

/* SWIPER FULL HEIGHT */
.heroSwiper,
.swiper-wrapper,
.hero-slide {
    height: 100%;
}

/* SLIDE BACKGROUND */
.hero-slide {
    background-size: cover;
    background-position: center;
    position: relative;
}



/* CONTENT ALIGN CENTER */
.hero-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;

    color: #fff;
    position: relative;
    z-index: 2;
}

/* TEXT */
.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #FFD700;
}

.hero-content p {
    font-size: 18px;
    margin: 15px 0;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* light black */
}

/* BUTTON */
.hero-btn {
    background: #FFD700;
    color: #000;
    padding: 10px 25px;
    border-radius: 30px;
    transition: 0.3s;
    width: fit-content;
}

.hero-btn:hover {
    background: #1E7F3F;
    color: #fff;
}

/* PAGINATION */
.swiper-pagination-bullet {
    background: #fff;
}

.swiper-pagination-bullet-active {
    background: #FFD700;
}

/* 📱 MOBILE FIX */
@media (max-width: 768px) {

    .hero-section {
        height: 90vh;
    }

    .hero-content {
        text-align: center;
        align-items: center;
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-btn {
        font-size: 14px;
        padding: 8px 20px;
    }
}

/* ABOUT SECTION */
.about-section {
    background: #f9f9f9;
}

/* TITLE */
.about-title {
    font-size: 36px;
    font-weight: 700;
    color: #1E7F3F !important;
}

/* TEXT */
.about-text {
    color: #555;
    margin-top: 15px;
    line-height: 1.7;
}

/* INFO */
.about-info p {
    margin: 5px 0;
    font-size: 15px;
}

/* BUTTON */
.about-btn {
    background: #FFD700;
    color: #000;
    padding: 10px 25px;
    border-radius: 30px;
    transition: 0.3s;
}

.about-btn:hover {
    background: #1E7F3F;
    color: #fff;
}

/* IMAGE EFFECT */
.about-img img {
    transition: 0.4s;
}

.about-img:hover img {
    transform: scale(1.05);
}

/* SERVICES SECTION */
.services-section {
    background: #000;
    color: #fff;
}

/* TITLE */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #FFD700;
}

.section-sub {
    color: #aaa;
}

/* CARD */
.service-card {
    background: #111;
    padding: 30px 20px;
    border-radius: 15px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

/* ICON */
.service-card i {
    font-size: 40px;
    color: var(--secondary) !important;
    margin-bottom: 15px;
}

/* TITLE */
.service-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* HOVER EFFECT 🔥 */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* GLOW LINE EFFECT */
.service-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: #FFD700;
    left: 0;
    bottom: 0;
    transform: scaleX(0);
    transition: 0.4s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* BRANDS SECTION */
.brands-section {
    background: #f9f9f9;
}

/* LOGO */
.brand-logo {
    max-width: 120px;


    transition: 0.3s;
}

/* HOVER EFFECT */
.brand-logo:hover {

    opacity: 1;
    transform: scale(1.1);
}



/* SECTION */
.category-section {
    background: #ffffff;
}

/* CARD */
.category-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding: 10px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* IMAGE */
.category-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
}

/* TEXT */
.category-card h6 {
    margin-top: 10px;
    font-weight: 600;
    color: #333;
}

/* HOVER EFFECT 🔥 */
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.category-card:hover img {
    transform: scale(1.05);
}

.section-title {
    color: #1E7F3F;
    /* green */
}


/* SECTION */
.gallery-section {
    background: #000;
    color: #fff;
}

/* ITEM */
.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    height: 220px;
}

/* IMAGE */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

/* OVERLAY */
.gallery-item .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

/* ICON */
.gallery-item .overlay i {
    font-size: 30px;
    color: var(--primary);
    transform: scale(0);
    transition: 0.4s;
}

/* HOVER */
.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item:hover .overlay i {
    transform: scale(1);
}

/* MOBILE */
@media(max-width:768px) {
    .gallery-item {
        height: 160px;
    }
}

/* SECTION */
.testi-section {
    background: #fff;
    color: #222;
}

/* TITLE (if using section-title) */
.section-title {
    color: var(--secondary) !important;
}

/* CARD */
.testi-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

/* HOVER */
.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* TEXT */
.testi-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.testi-card h6 {
    margin-top: 10px;
    color: var(--primary);
}

/* BUTTON */
.btn-review {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: var(--secondary);
    color: #ffffff;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
}

/* ARROWS */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary);
}

/* OPTIONAL (ARROW BG FOR BETTER LOOK) */
.swiper-button-next::after,
.swiper-button-prev::after {
    background: #f5f5f5;
    padding: 10px;
    border-radius: 50%;
}

/* SECTION */
.contact-clean {
    background: #fff;
    color: #222;
}

/* BOX */
.contact-box {
    padding: 20px;
}

/* TITLE */
.section-title {
    color: #000;
    margin-bottom: 10px;
}

/* TEXT */
.contact-box p {
    color: #666;
    margin-bottom: 20px;
}

/* ITEM */
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    background: #f9f9f9;
    transition: 0.3s;
}

/* ICON */
.contact-item i {
    color: var(--primary);
    font-size: 18px;
}

/* HOVER */
.contact-item:hover {
    background: #f1f1f1;
}

/* BUTTON */
.btn-review {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: var(--secondary);
    color: #ffffff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
}

/* MAP */
.map-box iframe {
    width: 100%;
    height: 350px;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* MOBILE */
@media(max-width:768px) {

    .map-box iframe {
        height: 250px;
    }

    .contact-box {
        text-align: center;
    }

    .contact-item {
        justify-content: center;
        text-align: center;
    }

}

/* SECTION */
.faq-pro {
    background: #fff;
    color: #222;
}

/* LIST */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

/* ITEM */
.faq-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: box-shadow .3s, border-color .3s, transform .2s;
}

/* HOVER */
.faq-item:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

/* QUESTION */
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-weight: 600;
    text-align: left;
}

/* ICON */
.faq-q i {
    color: var(--primary);
    transition: transform .25s ease;
}

/* ANSWER WRAP */
.faq-a {
    height: 0;
    overflow: hidden;
    transition: height .35s ease;
}

/* INNER (for padding control) */
.faq-a-inner {
    padding: 0 20px 18px;
    color: #555;
    line-height: 1.7;
}

/* ACTIVE STATE */
.faq-item.active {
    border-color: var(--primary);
}

.faq-item.active .faq-q i {
    transform: rotate(45deg);
    /* + → × */
}

/* OPTIONAL ACCENT BAR */
.faq-item::before {
    content: "";
    display: block;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}

.faq-item.active::before {
    transform: scaleX(1);
}

/* MOBILE */
@media (max-width:768px) {
    .faq-q {
        padding: 16px;
    }

    .faq-a-inner {
        padding: 0 16px 16px;
    }
}

/* FOOTER */
.footer-pro {
    background: #0d0d0d;
    color: #fff;
    padding: 60px 0 20px;
}

/* LOGO */
.footer-logo {
    width: 250px;
    margin-bottom: 15px;
}

/* TEXT */
.footer-box p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

/* TITLE */
.footer-box h5 {
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
}

/* LINKS */
.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li {
    margin-bottom: 10px;
}

.footer-box ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-box ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* SOCIAL */
.footer-social a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #fff;
    transition: 0.3s;
}

.footer-social a:hover {
    color: var(--primary);
    transform: scale(1.2);
}

/* ICON */
.footer-box i {
    color: var(--primary);
    margin-right: 5px;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 14px;
    color: #aaa;
}

.footer-bottom a {
    color: var(--primary);
    text-decoration: none;
}

/* MOBILE */
@media(max-width:768px) {

    .footer-bottom {
        text-align: center;
        flex-direction: column;
        gap: 5px;
    }

}


/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    font-size: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    z-index: 999;

    transition: 0.3s;
}

/* HOVER */
.whatsapp-float:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}

/* PULSE ANIMATION 🔥 */
.whatsapp-float::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.5);
    animation: pulse 2s infinite;
}

/* ANIMATION */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* SCROLL TO TOP BUTTON */
#scrollTopBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;

    background: #FFD700;
    color: #000;
    border: none;
    border-radius: 50%;

    font-size: 20px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 8px 20px rgba(0,0,0,0.3);

    opacity: 0;
    visibility: hidden;
    transition: 0.3s;

    z-index: 999;
}

/* SHOW BUTTON */
#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
}

/* HOVER */
#scrollTopBtn:hover {
    background: #1E7F3F;
    color: #fff;
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    #scrollTopBtn {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 20px;
        right: 20px;
    }
}

/* PAGE HEADER */
.page-header {
    position: relative;
    height: 60vh;
    background: url('./img/h1.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* OVERLAY */
.page-header .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

/* CONTENT */
.header-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

/* TITLE */
.header-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #FFD700;
}

/* TEXT */
.header-content p {
    margin-top: 10px;
    font-size: 16px;
}

/* BREADCRUMB */
.breadcrumb {
    margin-top: 10px;
}

.breadcrumb a {
    color: #FFD700;
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 5px;
    color: #fff;
}

/* SECTION */
.about-details {
    background: #fff;
}

/* TEXT */
.about-details p {
    color: #555;
    line-height: 1.7;
    margin-top: 10px;
}

/* FEATURES */
.about-features {
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

/* ICON */
.feature-item i {
    color: #1E7F3F;
    font-size: 18px;
}

/* BUTTON */
.about-btn {
    background: #FFD700;
    color: #000;
    padding: 10px 25px;
    border-radius: 25px;
    transition: 0.3s;
}

.about-btn:hover {
    background: #1E7F3F;
    color: #fff;
}

/* IMAGE HOVER */
.about-img img {
    transition: 0.4s;
}

.about-img:hover img {
    transform: scale(1.05);
}

/* SECTION */
.mission-vision {
    background: #f9f9f9;
}

/* CARD */
.mv-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* ICON */
.mv-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #1E7F3F;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* TITLE */
.mv-card h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* TEXT */
.mv-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* HOVER EFFECT 🔥 */
.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ICON HOVER */
.mv-card:hover .mv-icon {
    background: #FFD700;
    color: #000;
}

/* SECTION */
.services-details {
    background: #fff;
}

/* TITLE */
.services-details h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* TEXT */
.services-details p {
    color: #555;
    line-height: 1.6;
}

/* BUTTON */
.srv-btn {
    background: #FFD700;
    color: #000;
    padding: 10px 25px;
    border-radius: 25px;
    transition: 0.3s;
}

.srv-btn:hover {
    background: #1E7F3F;
    color: #fff;
}

/* IMAGE */
.services-details img {
    transition: 0.4s;
}

.services-details img:hover {
    transform: scale(1.05);
}

/* SECTION */
.contact-main {
    background: #f9f9f9;
}

/* FORM BOX */
.contact-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* INPUT */
.contact-form-box .form-control {
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #ddd;
}

/* BUTTON */
.contact-btn {
    background: #FFD700;
    color: #000;
    padding: 10px 25px;
    border-radius: 25px;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #1E7F3F;
    color: #fff;
}

/* INFO BOX */
.contact-info-box {
    background: #000;
    color: #fff;
    padding: 30px;
    border-radius: 15px;
}

/* ITEMS */
.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 15px 0;
}

.info-item i {
    color: #FFD700;
    font-size: 20px;
}

@media (max-width: 768px) {

    .contact-form-box,
    .contact-info-box {
        padding: 20px;
    }

    .contact-main {
        text-align: center;
    }

    .info-item {
        justify-content: center;
    }
}

/* MAP CONTAINER */
.map-box {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

/* IFRAME FULL FIT */
.map-box iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 0;
}

/* SECTION */
.product-gallery {
    background: #fff;
}

/* CARD */
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* IMAGE */
.product-card img {
    width: 100%;
    height: auto; /* ✅ AUTO HEIGHT */
    display: block;
    transition: 0.4s;
}

/* HOVER EFFECT */
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-card:hover img {
    transform: scale(1.05);
}

/* SECTION */
.running-text {
    background: #000;
    color: #FFD700;
    overflow: hidden;
    padding: 12px 0;
    font-weight: 600;
}

/* TRACK */
.loop-track {
    display: flex;
    width: max-content;
    animation: scrollText 20s linear infinite;
}

/* TEXT */
.loop-content {
    white-space: nowrap;
    font-size: 18px;
    padding-right: 50px;
}

/* ANIMATION */
@keyframes scrollText {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}