/* ============================================
   ENGINEER'S POINT - COMPLETE STYLESHEET
   Combined HTML + Blade Design
============================================ */

/* ============================================
   1. CSS VARIABLES
============================================ */
:root {
    /* Primary Colors */
    --primary-color: #2f6f4e;
    --primary-dark: #1e4d35;
    --primary-light: #3e8e6b;

    /* Secondary Colors */
    --secondary-color: #e6b566;
    --secondary-dark: #d4a558;

    /* Neutral Colors */
    --dark-color: #1a1a2e;
    --text-color: #333333;
    --text-muted: #6c757d;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #e9ecef;

    /* Gradients */
    --gradient-primary: linear-gradient(
        135deg,
        var(--primary-color),
        var(--primary-light)
    );
    --gradient-dark: linear-gradient(135deg, #1a1a2e, #16213e);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition: all 0.3s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50%;
}

/* ============================================
   2. BASE STYLES
============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: 80px 0;
}
/* ============================================
   3. TOP BAR
============================================ */
.top-bar {
    background: var(--dark-color) !important;
    padding: 10px 0;
    font-size: 14px;
    display: block !important;
}

.top-bar .container {
    display: block !important;
}

.top-bar .row {
    display: flex !important;
    align-items: center;
}

.top-bar-left {
    display: flex !important;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
}

.top-bar-left span {
    color: rgba(255, 255, 255, 0.8) !important;
    display: inline-flex !important;
    align-items: center;
    gap: 5px;
}

.top-bar-left span i {
    color: var(--secondary-color) !important;
    margin-right: 8px;
    font-size: 1rem;
}

.top-bar-right {
    display: flex !important;
    justify-content: flex-end;
    gap: 12px;
    align-items: center;
}

.top-bar-right a {
    color: rgba(255, 255, 255, 0.8) !important;
    width: 32px;
    height: 32px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
}

.top-bar-right a:hover {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
}

/* Hide Topbar on Mobile */
@media (max-width: 991.98px) {
    .top-bar {
        display: none !important;
    }
}

/* Force Show Topbar on Desktop */
@media (min-width: 992px) {
    .top-bar.d-none.d-lg-block {
        display: block !important;
    }
}

/* ============================================
   4. HEADER & NAVIGATION
============================================ */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.main-header .navbar {
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.02);
}

/* Logo Styles */
.brand-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--primary-light)
    );
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 10px rgba(47, 111, 78, 0.3);
}

.brand-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-main {
    font-family: "Poppins", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
}

.brand-tagline {
    font-size: 0.65rem;
    color: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation Links */
.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 18px !important;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 30px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Get Quote Button */
.btn-quote {
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--primary-light)
    );
    color: var(--white) !important;
    padding: 10px 25px !important;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(47, 111, 78, 0.4);
}

.btn-quote::after {
    display: none !important;
}

/* Hamburger Icon Animation */
.navbar-toggler {
    border: 2px solid var(--primary-color);
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(47, 111, 78, 0.25);
}

.navbar-toggler.collapsed .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232f6f4e' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232f6f4e' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6L24 24M24 6L6 24'/%3e%3c/svg%3e");
}

/* ============================================
   5. MOBILE SIDEBAR - LEFT SLIDE ANIMATION
============================================ */

/* Mobile Sidebar Header Container */
.mobile-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--secondary-color);
}

/* Mobile Brand Section */
.mobile-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Mobile Logo Image */
.mobile-logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

/* Mobile Logo Icon (Fallback) */
.mobile-logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--primary-light)
    );
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 3px 8px rgba(47, 111, 78, 0.3);
}

/* Mobile Brand Text */
.mobile-brand-text {
    display: flex;
    flex-direction: column;
}

.mobile-brand-name {
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
}

/* Mobile Close Button */
.mobile-close-btn {
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.mobile-close-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(90deg);
}

.mobile-close-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(47, 111, 78, 0.2);
}

.mobile-close-btn i {
    font-weight: bold;
}

/* Hide mobile sidebar header on desktop */
@media (min-width: 992px) {
    .mobile-sidebar-header {
        display: none !important;
    }
}

/* Mobile Navbar Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 340px;
        height: 100vh;
        background: #ffffff !important; /* Pure white background */
        z-index: 9999;
        padding: 1.5rem;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        transition: left 0.5s ease-in-out; /* Smooth slow transition */
    }

    .navbar-collapse.show {
        left: 0;
    }

    .navbar-collapse.collapsing {
        left: -100%;
        transition: left 0.5s ease-in-out; /* Smooth slow transition */
        height: auto;
    }

    /* Dark Overlay Behind Menu */
    .navbar-collapse.show::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(255, 255, 255, 0.6);
        z-index: -1;
        animation: fadeIn 0.4s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    /* Mobile Menu Items */
    .navbar-nav {
        margin-top: 0;
    }

    .navbar-nav .nav-item {
        border-bottom: 1px solid var(--border-color);
        opacity: 0;
    }

    .navbar-collapse.show .navbar-nav .nav-item {
        animation: slideInLeft 0.5s ease forwards;
    }

    .navbar-collapse.show .navbar-nav .nav-item:nth-child(1) {
        animation-delay: 0.1s;
    }
    .navbar-collapse.show .navbar-nav .nav-item:nth-child(2) {
        animation-delay: 0.2s;
    }
    .navbar-collapse.show .navbar-nav .nav-item:nth-child(3) {
        animation-delay: 0.3s;
    }
    .navbar-collapse.show .navbar-nav .nav-item:nth-child(4) {
        animation-delay: 0.4s;
    }
    .navbar-collapse.show .navbar-nav .nav-item:nth-child(5) {
        animation-delay: 0.5s;
    }
    .navbar-collapse.show .navbar-nav .nav-item:nth-child(6) {
        animation-delay: 0.6s;
    }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Mobile Menu Links with Icons */
    .navbar-nav .nav-link {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 1rem 0 !important;
        color: var(--dark-color);
        font-size: 1.05rem;
        font-weight: 500;
    }

    .navbar-nav .nav-link i {
        font-size: 1.1rem;
        color: var(--primary-color);
        width: 20px;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-nav .nav-link.active {
        color: var(--primary-color);
        font-weight: 600;
        background: var(--light-bg);
        padding-left: 10px !important;
        border-radius: 8px;
        margin: 0 -10px;
        padding-right: 10px !important;
    }

    .navbar-nav .nav-link:hover {
        color: var(--primary-color);
        padding-left: 10px !important;
    }

    .btn-quote {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
        padding: 1rem !important;
        font-size: 1rem;
    }
}

/* Desktop View - Reset Mobile Styles */
@media (min-width: 992px) {
    .navbar-collapse {
        position: static !important;
        width: auto !important;
        max-width: none !important;
        height: auto !important;
        background: transparent !important;
        padding: 0 !important;
        box-shadow: none !important;
        overflow-y: visible !important;
        transition: none !important;
        left: auto !important;
    }

    .navbar-collapse.show::before {
        display: none !important;
    }
}

/* ============================================
   UPDATED: HERO SLIDER SECTION (HTML Design Match)
============================================ */
.hero-slider-section {
    position: relative;
}

.carousel-item {
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(47, 111, 78, 0.85),
        rgba(62, 142, 107, 0.75)
    );
    z-index: 1;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    z-index: 2;
    bottom: 50%;
    transform: translateY(50%);
    left: 0;
    right: 0;
    text-align: left;
    padding: 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(230, 181, 102, 0.2);
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 2px solid var(--secondary-color);
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInLeft 1s ease;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--secondary-color);
    animation: fadeInLeft 1.2s ease;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 650px;
    animation: fadeInLeft 1.4s ease;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.6s ease;
}

.btn-hero-primary {
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 181, 102, 0.4);
    color: var(--dark-color);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(47, 111, 78, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary-color);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 25px;
    height: 25px;
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators button.active {
    background-color: var(--secondary-color);
}

/* Hero Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE: MOBILE OPTIMIZATION
============================================ */
@media (max-width: 991.98px) {
    /* .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem;
        background: var(--light-bg);
        border-radius: 10px;
    } */

    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }

    .carousel-control-prev {
        left: 15px;
    }

    .carousel-control-next {
        right: 15px;
    }
}

@media (max-width: 768px) {
    /* .top-bar {
        display: none;
    } */

    .carousel-item {
        height: 85vh;
        min-height: 520px;
    }

    .carousel-caption {
        bottom: auto;
        top: 50%;
        transform: translateY(-50%);
        text-align: center;
        padding: 0 1rem;
    }

    .brand-logo {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .brand-main {
        font-size: 1.2rem;
    }

    .brand-tagline {
        font-size: 0.6rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.9rem;
        margin-bottom: 0.8rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 0.6rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        align-items: stretch;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
        justify-content: center;
    }

    /* Hide carousel arrows on mobile */
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width: 480px) {
    .carousel-item {
        height: 80vh;
        min-height: 480px;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    /* .brand-text {
        display: none;
    } */
}

/* ============================================
   6. FEATURES SECTION
============================================ */
.features-section {
    background: var(--white);
    padding: 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.8rem;
}

.feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

/* ============================================
   7. SECTION HEADERS
============================================ */
.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   8. ABOUT PREVIEW SECTION
============================================ */
.about-image-wrapper {
    position: relative;
}

.about-main-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 25px 35px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .years {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.about-content .lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* ============================================
   9. CATEGORY CARDS
============================================ */
.category-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.category-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.category-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-placeholder {
    width: 100%;
    height: 100%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--border-color);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-content {
    padding: 20px;
}

.category-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.category-content h4 a {
    color: var(--dark-color);
}

.category-content h4 a:hover {
    color: var(--primary-color);
}

.category-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.category-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.product-count {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.product-count i {
    color: var(--primary-color);
}

.view-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.view-link:hover {
    color: var(--primary-dark);
}

/* ============================================
   10. PRODUCT CARDS
============================================ */
.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 5;
}

.product-featured {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 5;
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-placeholder {
    width: 100%;
    height: 100%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--border-color);
}

.product-actions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
}

.product-content {
    padding: 20px;
}

.product-category {
    display: inline-block;
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-title a {
    color: var(--dark-color);
}

.product-title a:hover {
    color: var(--primary-color);
}

.product-excerpt {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-footer {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
/* ============================================
   11. STATS SECTION
============================================ */
.stats-section {
    background: url("../images/stats-bg.jpg") center/cover fixed;
    padding: 80px 0;
    position: relative;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(47, 111, 78, 0.9);
}

.stat-item {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: "Poppins", sans-serif;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--white);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ============================================
   12. CTA SECTION
============================================ */
.cta-section {
    background: var(--light-bg);
}

.cta-box {
    background: var(--gradient-primary);
    padding: 50px;
    border-radius: var(--radius-lg);
    color: var(--white);
}

.cta-box h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta-box p {
    opacity: 0.9;
    margin: 0;
    font-size: 1.1rem;
}

/* ============================================
   13. WHY CHOOSE US
============================================ */
.why-choose-section {
    background: var(--white);
}

.why-us-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border-bottom: 4px solid transparent;
}

.why-us-card:hover {
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--primary-color);
    transform: translateY(-5px);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    /* background: var(--light-bg); */
    background: var(--gradient-primary);

    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.why-us-card:hover .why-us-icon {
    /* background: var(--gradient-primary); */
    /* background: #e6b566; */
    color: #e6b566;
}

.why-us-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.why-us-card p {
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   14. SERVICES SECTION
============================================ */
.services-section {
    background: var(--light-bg);
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-card img {
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* ============================================
   15. TESTIMONIALS SECTION
============================================ */
.testimonials-section {
    background: var(--gradient-dark);
    color: var(--white);
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    height: 100%;
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    font-size: 1.1rem;
}

.testimonial-message {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.testimonial-author h6 {
    margin: 0;
    font-size: 1rem;
    color: var(--dark-color);
}

.testimonial-author small {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================================
   16. PAGE HEADER
============================================ */
.page-header {
    background: url("../images/page-header-bg.jpg") center/cover;
    padding: 100px 0;
    position: relative;
}

.page-header-sm {
    padding: 60px 0;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.85);
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.breadcrumb {
    /* justify-content: center; */
    margin: 0;
    background: transparent;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   17. FOOTER
============================================ */
.main-footer {
    background: var(--gradient-dark);
    color: var(--white);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 50px;
    filter: brightness(0) invert(1);
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.footer-brand h4 {
    color: var(--white);
    margin: 0;
    font-size: 1.3rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-title {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-links a i {
    font-size: 0.8rem;
}

.footer-contact {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-bottom a {
    color: var(--secondary-color);
}

/* ============================================
   18. BUTTONS
============================================ */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 28px;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--primary-color);
    font-weight: 600;
}

.btn-light:hover {
    background: var(--light-bg);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-success {
    background: #25d366;
    border: none;
}

.btn-success:hover {
    background: #1ea952;
}

/* ============================================
   19. FORMS
============================================ */
.form-control,
.form-select {
    padding: 12px 18px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(47, 111, 78, 0.1);
}

.form-label {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 8px;
}

/* ============================================
   20. CONTACT PAGE
============================================ */
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-info-wrapper {
    background: var(--gradient-primary);
    padding: 40px;
    border-radius: var(--radius-lg);
    color: var(--white);
    height: 100%;
}

.contact-info-wrapper h3 {
    color: var(--white);
}

.contact-info-list {
    margin-top: 30px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info-item .icon.whatsapp {
    background: #25d366;
}

.contact-info-item .content h5 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-info-item .content p,
.contact-info-item .content a {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.contact-info-item .content a:hover {
    color: var(--white);
}

.contact-social h5 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--white);
    color: var(--primary-color);
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ============================================
   21. GALLERY PAGE
============================================ */
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    height: 280px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(47, 111, 78, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.gallery-overlay h5 {
    color: var(--white);
    margin: 0;
}

/* ============================================
   22. PRODUCT DETAIL PAGE
============================================ */
.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--light-bg);
}

.main-image-wrapper .main-image {
    width: 100%;
    height: 450px;
    object-fit: contain;
}

.product-badge-large {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    z-index: 5;
}

.zoom-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--white);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.zoom-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.thumbnail-wrapper {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.thumbnail-item {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
}

.thumbnail-item.active,
.thumbnail-item:hover {
    border-color: var(--primary-color);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding-left: 20px;
}

.product-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.product-info .product-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.product-short-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.product-specs {
    background: var(--light-bg);
    padding: 25px;
    border-radius: var(--radius-md);
    margin-bottom: 25px;
}

.product-specs h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.specs-table {
    width: 100%;
}

.specs-table tr {
    border-bottom: 1px solid var(--border-color);
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table td {
    padding: 12px 0;
}

.specs-table td:first-child {
    color: var(--text-muted);
    width: 40%;
}

.specs-table td:first-child i {
    color: var(--primary-color);
    margin-right: 10px;
}

.specs-table td:last-child {
    font-weight: 600;
    color: var(--dark-color);
}

.product-features {
    margin-bottom: 30px;
}

.product-features h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.features-list li i {
    color: var(--primary-color);
    margin-top: 3px;
}

.product-actions-box {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.product-description-section .card {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.product-description-section .card-header {
    background: var(--light-bg);
    border: none;
    padding: 20px 25px;
}

.product-description-section .card-header h4 {
    margin: 0;
    font-size: 1.2rem;
}

.product-description-section .card-body {
    padding: 25px;
}

.description-content {
    color: var(--text-color);
    line-height: 1.9;
}

/* ============================================
   23. ABOUT PAGE
============================================ */
.about-images {
    position: relative;
}

.about-img-1 {
    width: 80%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-img-2 {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 50%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

.about-experience {
    position: absolute;
    top: 20px;
    right: 40px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius-md);
    text-align: center;
}

.about-experience .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.about-experience .text {
    font-size: 0.9rem;
}

.about-text {
    color: var(--text-muted);
    line-height: 1.9;
}

.about-text p {
    margin-bottom: 15px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
}

.about-feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.mission-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 20px;
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.mission-card p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.8;
}

/* ============================================
   24. EMPTY STATE
============================================ */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
}

.empty-state i {
    font-size: 4rem;
    color: var(--border-color);
    margin-bottom: 20px;
}

.empty-state h4 {
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* ============================================
   25. PAGINATION
============================================ */
.pagination-wrapper {
    display: flex;
    justify-content: center;
}

.pagination {
    gap: 5px;
}

.page-link {
    border: none;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    color: var(--text-color);
    font-weight: 500;
}

.page-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

.page-item.active .page-link {
    background: var(--primary-color);
}

/* ============================================
   26. WHATSAPP & BACK TO TOP
============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ============================================
   27. ALERTS
============================================ */
.alert {
    border: none;
    border-radius: var(--radius-sm);
    padding: 15px 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
}

/* ============================================
   28. RESPONSIVE STYLES
============================================ */
@media (max-width: 991.98px) {
    .hero-slide {
        height: 500px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .features-section {
        margin-top: 0;
        padding: 40px 0;
    }

    .experience-badge {
        position: static;
        margin-top: 20px;
        display: inline-block;
    }

    .product-info {
        padding-left: 0;
        margin-top: 30px;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .about-img-2 {
        display: none;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .hero-slide {
        height: 450px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 25px;
    }

    .product-actions-box {
        flex-direction: column;
    }

    .product-actions-box .btn {
        width: 100%;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .back-to-top {
        bottom: 85px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .cta-box {
        padding: 30px;
        text-align: center;
    }

    .main-image-wrapper .main-image {
        height: 300px;
    }
    /*
    .navbar-brand .brand-text {
        display: none;
    } */

    .navbar-toggler {
        border: 2px solid var(--primary-color);
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section-padding {
        padding: 40px 0;
    }

    .feature-card {
        padding: 20px;
    }

    .category-image,
    .product-image {
        height: 180px;
    }
}

/* ============================================
   29. MEGA MENU (Enhanced Myntra-style)
============================================ */
.mega-dropdown {
    position: static;
}

/* Hover indicator line */
.mega-dropdown > .nav-link {
    position: relative;
}

.mega-dropdown > .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.mega-dropdown:hover > .nav-link::after {
    width: 100%;
}

.mega-menu {
    width: 100%;
    left: 0;
    right: 0;
    padding: 0;
    border: none;
    border-top: 3px solid var(--primary-color);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    margin-top: 0 !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.mega-dropdown:hover .mega-menu,
.mega-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
    pointer-events: auto;
}

.mega-menu-inner {
    padding: 35px 50px;
    background: var(--white);
    max-width: 1200px;
    margin: 0 auto;
}

.mega-col {
    padding: 15px 20px;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.mega-col:last-child {
    border-right: none;
}

.mega-category {
    height: 100%;
}

.mega-category-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-category-title a {
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.mega-category-title a:hover {
    color: var(--dark-color);
}

.mega-category-title i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.mega-product-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-product-list li {
    margin-bottom: 0;
}

.mega-product-list li a {
    color: #555;
    font-size: 0.88rem;
    display: block;
    padding: 8px 0;
    padding-left: 0;
    transition: all 0.25s ease;
    border-left: 2px solid transparent;
    text-decoration: none;
}

.mega-product-list li a:hover {
    color: var(--primary-color);
    padding-left: 12px;
    border-left-color: var(--secondary-color);
    background: linear-gradient(90deg, rgba(47, 111, 78, 0.05), transparent);
}

.mega-product-list li.view-all {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.mega-product-list li.view-all a {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-product-list li.view-all a:hover {
    color: var(--dark-color);
}

.mega-product-list li.view-all a i {
    transition: transform 0.3s ease;
}

.mega-product-list li.view-all a:hover i {
    transform: translateX(5px);
}

.mega-menu-footer {
    padding: 20px 0 0;
    margin-top: 25px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    background: linear-gradient(180deg, transparent, rgba(47, 111, 78, 0.03));
}

.mega-menu-footer .btn {
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Mega Menu */
@media (max-width: 991.98px) {
    .mega-dropdown > .nav-link::after {
        display: none;
    }

    .mega-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        border-radius: 0;
        border-top: none;
        background: var(--light-bg);
        margin: 10px -15px;
        padding: 15px;
        pointer-events: auto;
    }

    .mega-menu-inner {
        padding: 0;
    }

    .mega-col {
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
        border-right: none;
    }

    .mega-col:last-child {
        border-bottom: none;
    }

    .mega-category-title {
        margin-bottom: 10px;
        padding-bottom: 8px;
    }

    .mega-product-list li a {
        padding: 6px 0;
    }

    .mega-menu-footer {
        display: none;
    }
}

/* ============================================
   30. SECTION BADGE
============================================ */
.section-badge {
    display: inline-block;
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
}

/* ============================================
   31. IMPROVED STATS SECTION
============================================ */
.stats-wrapper {
    background: var(--gradient-primary);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.stats-wrapper::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.stat-card {
    text-align: center;
    position: relative;
    z-index: 2;
    color: var(--white);
}

.stat-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
}

.stat-icon-wrapper i {
    color: var(--secondary-color) !important;
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    font-family: "Poppins", sans-serif;
}

.stat-card .stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

/* Stats Section Mobile Responsive */
@media (max-width: 767.98px) {
    .stats-wrapper {
        padding: 30px 20px;
        border-radius: var(--radius-md);
    }

    .stat-card .stat-number {
        font-size: 1.8rem;
    }

    .stat-card .stat-label {
        font-size: 0.8rem;
    }

    .stat-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
}

@media (max-width: 575.98px) {
    .stats-section {
        padding: 30px 0;
    }

    .stats-wrapper {
        padding: 25px 15px;
        margin: 0 -5px;
    }

    .stat-card {
        padding: 10px 5px;
    }

    .stat-card .stat-number {
        font-size: 1.5rem;
        margin-bottom: 3px;
    }

    .stat-card .stat-label {
        font-size: 0.7rem;
        line-height: 1.3;
    }

    .stat-icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
}

/* ============================================
   32. ABOUT SECTION IMPROVEMENTS
============================================ */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: var(--light-bg);
    border-radius: var(--radius-sm);
}

.about-feature-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

@media (max-width: 575.98px) {
    .about-features-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   33. CAROUSEL WRAPPER STYLES
============================================ */
.categories-carousel-wrapper,
.products-carousel-wrapper,
.testimonials-carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

.swiper-nav-btns {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.swiper-btn-prev,
.swiper-btn-next {
    width: 45px;
    height: 45px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.swiper-btn-prev:hover,
.swiper-btn-next:hover {
    background: var(--primary-color);
    color: var(--white);
}

.swiper-pagination {
    position: relative;
    margin-top: 30px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--border-color);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 767.98px) {
    .categories-carousel-wrapper,
    .products-carousel-wrapper,
    .testimonials-carousel-wrapper {
        padding: 0;
    }

    .swiper-nav-btns {
        display: none;
    }
}

/* ============================================
   34. MODERN CATEGORY CARDS
============================================ */
.category-card-modern {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

.category-card-modern:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.category-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card-modern:hover .category-img {
    transform: scale(1.1);
}

.category-image-wrapper .category-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--border-color);
}

.category-image-wrapper .category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(47, 111, 78, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card-modern:hover .category-overlay {
    opacity: 1;
}

.category-info {
    padding: 20px;
}

.category-name {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.category-name a {
    color: var(--dark-color);
}

.category-name a:hover {
    color: var(--primary-color);
}

.category-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.category-meta {
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.category-meta .product-count {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.category-meta .product-count i {
    color: var(--primary-color);
}

/* ============================================
   35. MODERN PRODUCT CARDS
============================================ */
.product-card-modern {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.product-card-modern:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.product-card-modern .product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 5;
}

.product-card-modern .product-featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
    z-index: 5;
}

.product-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-modern:hover .product-img {
    transform: scale(1.1);
}

.product-image-wrapper .product-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--border-color);
}

.product-image-wrapper .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-modern:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 20px;
}

.product-category-tag {
    display: inline-block;
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-name {
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-name a {
    color: var(--dark-color);
}

.product-name a:hover {
    color: var(--primary-color);
}

.product-excerpt {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* ============================================
   36. WHY CHOOSE US MODERN CARDS
============================================ */
.why-us-card-modern {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.why-us-card-modern:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.why-us-card-modern .why-us-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0;
}

.why-us-card-modern .why-us-content h5 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 5px;
}

.why-us-card-modern .why-us-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   37. MODERN TESTIMONIAL CARDS
============================================ */
.testimonial-card-modern {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card-modern:hover {
    box-shadow: var(--shadow-lg);
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: var(--light-bg);
    line-height: 1;
}

.testimonial-card-modern .testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-card-modern .testimonial-rating i {
    font-size: 0.9rem;
}

.testimonial-card-modern .testimonial-message {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card-modern .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.testimonial-card-modern .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.testimonial-card-modern .author-avatar-placeholder {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
}

.testimonial-card-modern .author-info h6 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--dark-color);
}

.testimonial-card-modern .author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
}

.testimonial-card-modern .author-info .company {
    color: var(--primary-color);
}

/* ============================================
   38. TESTIMONIALS SECTION BACKGROUND FIX
============================================ */
.testimonials-section {
    background: var(--white);
}

/* ============================================
   39. MOBILE DROPDOWN FIX
============================================ */
@media (max-width: 991.98px) {
    .dropdown-toggle::after {
        margin-left: auto;
    }

    .navbar-nav .dropdown-menu {
        border: none;
        padding-left: 15px;
    }
}

/* ============================================
   40. PREMIUM PRODUCT CARDS
============================================ */
.product-card-premium {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(47, 111, 78, 0.15);
}

.product-card-premium .product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--secondary-color), #d4a558);
    color: var(--dark-color);
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card-premium .product-featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(47, 111, 78, 0.3);
}

.product-card-premium .product-image-box {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.product-card-premium .product-image-box .product-category-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(47, 111, 78, 0.9);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 5;
    backdrop-filter: blur(5px);
}

.product-card-premium .product-image-box .product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-premium:hover .product-image-box .product-img {
    transform: scale(1.1);
}

.product-card-premium .product-image-box .product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #dee2e6;
}

.product-card-premium .product-image-box .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-premium:hover .product-image-box .product-overlay {
    opacity: 1;
}

.product-card-premium .product-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-premium .product-content .product-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-card-premium .product-content .product-title a {
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.product-card-premium .product-content .product-title a:hover {
    color: var(--primary-color);
}

.product-card-premium .product-content .product-excerpt {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.product-card-premium .product-content .product-footer {
    margin-top: auto;
}

.product-card-premium .product-content .product-footer .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.product-card-premium .product-content .product-footer .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(47, 111, 78, 0.3);
}

/* ============================================
   41. PREMIUM CTA SECTION
============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 181, 102, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.cta-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.cta-box .btn-light {
    background: var(--white);
    color: var(--primary-color);
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: none;
}

.cta-box .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-box .btn-success {
    background: #25d366;
    border: none;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.cta-box .btn-success:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

@media (max-width: 991.98px) {
    .cta-box {
        padding: 30px;
        text-align: center;
    }

    .cta-box h3 {
        font-size: 1.4rem;
    }

    .cta-box .btn {
        display: block;
        width: 100%;
        margin: 10px 0 !important;
    }
}
