:root {
    --primary-color: #3eb440;
    --secondary-color: #1799c1;
    --text-color: #1f2937;
    --light-bg: #f8f9fa;
    --white-color: #ffffff;
}

body {
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 100px;
    padding: 6px 20px;
}

.btn-primary:hover {
    background-color: #1799c1;
    border-color: #1799c1;
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: #e68517;
    border-color: #e68517;
}

.btn-view-more {
    background: var(--primary-color);
    color: #fff;
    padding: 0.75rem 2.5rem;
    font-weight: 500;
    border-radius: 2rem;
    transition: background 0.2s, box-shadow 0.2s;
    display: inline-block;
    font-size: 1.1rem;
    border: none;
    margin-top: 10px;
    margin-bottom: 10px;
}

.btn-view-more:hover, .btn-view-more:focus {
    background: #ff6600;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(255,136,0,0.15);
}

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/hero-bg.jpeg') center/cover;
    height: 100vh;
    color: white;
}
.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
}
.hero-section .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-radius: 25px;
}
.app-screen {
    position: relative;
    margin-top: -300px;
    padding-bottom: 50px;
    z-index: 999;
}
/* .hero-screen-img {
    max-width: 100%;
    height: auto;
} */

#features {
    padding: 80px 0;
}
.feature-card {
    border: none;
    transition: all 0.4s ease;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    padding: 2rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(121, 184, 51, 0.1), rgba(247, 148, 30, 0.1));
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 3rem;
    color: var(--white-color);
    margin-bottom: 1.5rem;
    background: rgba(121, 184, 51, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    color: white;
    transform: rotateY(360deg);
}

.feature-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-card ul li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--white-color);
}

#features {
    background: linear-gradient(135deg, #1b99c1 0%, #1797b1 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
#faq {
    background: #3eb440;
    position: relative;
}
#faq::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 30px 30px;
    top: 0;
    left: 0;
    animation: patternMove 15s linear infinite;
}

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 30px 30px; }
}

#faq .section-heading {
    color: white;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.accordion-button {
    background: transparent;
    color: white;
    border-radius: 15px !important;
    font-weight: 500;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: rgba(121, 184, 51, 0.1);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2379B833'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    color: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    line-height: 1.6;
}

.faq-floating-icon {
    position: absolute;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.05);
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.faq-icon-1 { top: 10%; left: 5%; animation-delay: 0s; }
.faq-icon-2 { top: 30%; right: 5%; animation-delay: 2s; }
.faq-icon-3 { bottom: 20%; left: 10%; animation-delay: 4s; }

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

#features .section-heading::after {
    background: linear-gradient(90deg, var(--white-color), var(--secondary-color));
}

.feature-card {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card::before {
    background: linear-gradient(135deg, #2196F3, #36a2c7);
}

.feature-icon {
    color: var(--primary-color);
    background: rgba(121, 184, 51, 0.15);
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    color: white;
    transform: rotateY(360deg);
}

.bg-dark-subtle {
    background-color: rgba(255, 255, 255, 0.05) !important;
}
.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 3rem;
    color: var(--white-color);
    margin-bottom: 1.5rem;
    background: rgba(121, 184, 51, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--secondary-color);
    color: white;
    transform: rotateY(360deg);
}

.feature-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-card ul li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--white-color);
}
.feature-card ul li i.text-success {
    color: white !important;
}
.benefits-section {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.pricing-card {
    border-radius: 15px;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.navbar {
    background-color: white;
    margin: 0 auto;
    max-width: 1320px;
    left: 0;
    right: 0;
    transform: translateX(0%);
    border-radius: 0 0 15px 15px;
    padding: 0.5rem 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-section {
    padding-top: 300px;
    padding-bottom: 500px;
    /* margin-top: -90px; */
}

@media (max-width: 991.98px) {
    .navbar {
        margin: 0;
        max-width: 100%;
        border-radius: 0;
    }
    
    .hero-section {
        margin-top: 0;
        padding-top: 390px;
        padding-bottom: 600px;
        margin-bottom: 40px;
    }
    .hero-section .btn {
        margin-bottom: 10px;
    }
    .btn {
        margin-bottom: 10px;
    }
}

.section-heading {
    position: relative;
    margin-bottom: 3rem;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--white-color);
}

.navbar-brand img {
    height: 70px;
    width: auto;
}

.section-badge {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.floating-shapes i {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 { top: 0; left: 10%; color: var(--primary-color); }
.shape-2 { top: 50%; right: 10%; color: var(--secondary-color); }
.shape-3 { bottom: 0; left: 50%; color: var(--primary-color); }

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.testimonial-card:hover {
    transform: translateY(0px);
    box-shadow: 0 4px 4px rgba(0,0,0,0.1);
}

.testimonial-quote {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.testimonial-avatar {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.avatar-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    border: 2px solid white;
}

.testimonial-rating {
    color: #ffc107;
}

.location {
    font-size: 0.9rem;
    color: #666;
}

.location i {
    color: var(--primary-color);
    margin-right: 5px;
}

.testimonial-avatar img {
    border: 3px solid var(--primary-color);
    padding: 3px;
}

.accordion-button:not(.collapsed) {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

.accordion-button:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(121, 184, 51, 0.25);
}

.social-icons a {
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color) !important;
}

#cta {
    background: url('../images/cta-bg.jpg') center/cover;
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

#cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(121, 184, 51, 0.95), rgba(247, 148, 30, 0.95));
    z-index: 1;
    background: #00000078;
}

.cta-content {
    position: relative;
    z-index: 2;
    padding: 4rem;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 1000px;
    margin: 0 auto;
}

.cta-badge {
    background: rgba(255, 255, 255, 0.25);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    color: white;
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    margin-top: 40px;
}

.cta-features {
    margin: 3rem 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.cta-features span {
    font-size: 1.1rem;
    font-weight: 500;
}

.cta-features i {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.cta-buttons {
    margin-top: 3rem;
}

.cta-buttons .btn {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0 1rem;
    border-radius: 50px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2.5rem;
    }

    .cta-features {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-content {
        padding: 2rem;
    }

    .cta-buttons .btn {
        display: block;
        margin: 1rem 0;
    }
}

.btn {
    font-size: 1rem;
}

.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.benefit-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.benefit-icon {
    font-size: 2rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.benefit-card:hover .benefit-icon {
    color: var(--secondary-color);
}

.benefit-text {
    flex-grow: 1;
}

.benefit-text h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-text p {
    margin-bottom: 0;
    color: #666;
}

#pricing {
    background: linear-gradient(135deg, #e3fbca 0%, #fde9d1 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

#pricing::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, rgba(121, 184, 51, 0.1), rgba(247, 148, 30, 0.1));
    border-radius: 50%;
    top: -200px;
    right: -200px;
    z-index: 0;
}

.pricing-card {
    background: white;
    border-radius: 30px;
    border: none;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(121, 184, 51, 0.05), rgba(247, 148, 30, 0.05));
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card .card-body {
    padding: 3rem 2rem;
}

.pricing-card h3 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.pricing-card .lead {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 2rem;
}

.pricing-card ul li {
    padding: 1rem 0;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.pricing-card ul li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 1rem;
}

.pricing-card .btn {
    padding: 1rem 3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2rem;
    box-shadow: 0 10px 20px rgba(121, 184, 51, 0.2);
}

.pricing-card .small {
    color: #666;
    margin-top: 1.5rem;
}
footer {
    background: linear-gradient(135deg, #005e7a, #014f66);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 100px 0 40px;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/footer-pattern.png') center/cover;
    opacity: 0.05;
}

.footer-wave {
    position: absolute;
    top: -3px;
    left: 0;
    width: 100%;
    background: url('../images/wave.svg') repeat-x;
    height: 50px;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    height: 70px;
    /* filter: brightness(0) invert(1); */
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-heading {
    color: var(--white-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--white-color), transparent);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(10px);
}

.footer-links i {
    font-size: 0.8rem;
}

.footer-contact {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    min-width: 40px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

/* Add new sticky contact icons */
.sticky-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.sticky-contact a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sticky-contact .call-icon {
    background: #1799c1;
}

.sticky-contact .whatsapp-icon {
    background: #25D366;
}

.sticky-contact a:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .footer-content > div {
        margin-bottom: 40px;
    }
    
    .footer-heading {
        margin-top: 20px;
    }
}

.swiper-pagination-bullet-active {
    opacity: var(--secondary-color, 1);
    background: var(--secondary-color, 1);
    width: 30px;
    border-radius: 10px;
}
.swiper-pagination {
    position: relative;
    margin-top: 20px;
}
#faq .section-heading {
    margin-bottom: 30px;
}
#faq .section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0%;
    transform: translateX(0%);
    width: 50px;
    height: 3px;
    background-color: var(--light-bg);
}

.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.modal-header {
    border-radius: 15px 15px 0 0;
    border: none;
}

.modal-body {
    padding: 2rem;
}

.form-control, .form-select {
    padding: 0.8rem;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.1);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(121, 184, 51, 0.25);
}






.breadcrumb-section {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 120px 0 30px 0;
}
.breadcrumb-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
}
.breadcrumb {
    background: transparent;
    margin-bottom: 0;
    text-align: center;
    display: flex;
    justify-content: center;
}
.breadcrumb .breadcrumb-item a, .breadcrumb .breadcrumb-item {
    text-decoration: none;
    color: white;
}
.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: var(--bs-breadcrumb-item-padding-x);
    color: white;
    content: var(--bs-breadcrumb-divider, "/");
}
.products-tabs {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
}
.nav-pills .nav-link {
    border-radius: 0;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1rem;
    padding: 1.2rem 1rem;
    border-left: 4px solid transparent;
    transition: all 0.2s;
    width: 100%;
    text-align: left;
}
.nav-pills .nav-link.active, .nav-pills .nav-link:hover {
    background: #f8f9fa;
    color: var(--secondary-color);
    border-left: 4px solid var(--secondary-color);
}
.product-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 1.5rem;
    margin-bottom: 2rem;
    transition: box-shadow 0.3s, transform 0.3s;
    text-align: center;
}
.product-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.10);
    transform: translateY(-8px);
}
.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}
.product-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.product-card p {
    color: #666;
    font-size: 0.98rem;
}
.enquiry-btn {
    background: var(--secondary-color);
    color: #fff;
    border-radius: 2rem;
    padding: 0.6rem 2rem;
    font-weight: 500;
    border: none;
    margin-top: 0.2rem;
    transition: background 0.2s, box-shadow 0.2s;
}
.enquiry-btn:hover {
    background: #ff6600;
    box-shadow: 0 2px 8px rgba(255,136,0,0.15);
}
/* Enquiry Modal */
.modal-content.enquiry-modal {
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.modal-header.enquiry-header {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border-radius: 20px 20px 0 0;
    border: none;
}
.modal-title {
    font-weight: 600;
}
.modal-body.enquiry-body {
    padding: 2rem;
}
.form-control, .form-select {
    border-radius: 10px;
    margin-bottom: 1rem;
}
@media (max-width: 991.98px) {
    .products-tabs {
        flex-direction: column;
    }
    .nav-pills {
        flex-direction: row !important;
        border-right: none;
        border-bottom: 1px solid #eee;
    }
}
/* --- HERO SWIPER SLIDER OVERLAY & BEAUTIFUL ARROWS --- */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,rgba(0,0,0,0.55) 60%,rgba(121,184,51,0.18) 100%);
  z-index: 1;
  pointer-events: none;
  transition: background 0.3s;
}
.hero-section .hero-swiper-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 10;
  pointer-events: none;
  transform: translateY(-50%);
}
.hero-section .hero-swiper-btn {
  background: rgba(255,255,255,0.18);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
  pointer-events: all;
  margin: 0 18px;
  opacity: 0.92;
}
.hero-section .hero-swiper-btn:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--secondary-color);
  box-shadow: 0 8px 24px rgba(121,184,51,0.18);
  opacity: 1;
}
@media (max-width: 767px) {
  .hero-section .hero-swiper-btn {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
    margin: 0 6px;
  }
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: 'next';
    display: none;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: 'next';
    display: none;
}
.offcanvas {
    height: 100vh;
}