/********** Template CSS **********/
:root {
    --primary: #88B44E;
    --secondary: #FB9F38;
    --light: #F5F8F2;
    --dark: #252C30;
}
/* New Slider Styles */
.new-slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 800px;
    overflow: hidden;
}
@media (max-width: 768px) {
    .display-6 {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }
}

@media (max-width: 576px) {
    .display-6 {
        font-size: 1.6rem !important;
    }
}
.new-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.new-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    /* Updated for left alignment - Align content to the left side */
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Changed from center to flex-start */
}

.new-slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    /* Ken Burns Effect (Zoom-Pan) */
    transform: scale(1.1); /* Start zoomed in slightly */
    transition: transform 6s linear; /* Smooth, long transition for the effect */
}

/* Apply the Ken Burns effect on the active slide */
.new-slide.active .slide-bg {
    transform: scale(1); /* End zoomed out slightly/to normal */
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.5;
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 4;
    /* Updated for left alignment */
    text-align: left; /* Changed from center to left */
    color: #ffffff;
    max-width: 800px;
    padding: 0 10%; /* Use percentage or a fixed value for left padding */
    margin-left: 0; /* Ensures content starts from the left of its container */
    width: 100%; /* Important for left-aligning the content box itself */
}

/* Animation setup - Initially hide and position for the slide-up effect */
.slide-content > * {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Animation on active slide */
.new-slide.active .slide-subtitle,
.new-slide.active .slide-title,
.new-slide.active .slide-text,
.new-slide.active .slide-button {
    opacity: 1;
    transform: translateY(0);
}

/* Sequential timing for text animation */
.new-slide.active .slide-subtitle {
    transition-delay: 0.2s;
}
.new-slide.active .slide-title {
    transition-delay: 0.4s;
}
.new-slide.active .slide-text {
    transition-delay: 0.6s;
}
.new-slide.active .slide-button {
    transition-delay: 0.8s;
}

/* Adjustments for left-aligned content */
.slide-heading {
    margin-bottom: 20px;
    /* No change needed, children will inherit or be explicitly aligned */
}

.slide-subtitle {
    font-size: 1.5rem; /* Increased from typical 1.125-1.25rem */
    margin-bottom: 10px;
    font-weight: 500;
}

.horizontal-divider {
    width: 50px;
    height: 2px;
    background-color: #ffffff;
    /* Updated for left alignment */
    margin: 0; /* Changed from 0 auto to 0 */
}

.slide-title {
    font-size: 3.5rem; /* Increased from typical 2.5-3rem */
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.slide-text {
    font-size: 1.22rem; /* Increased from typical 1rem */
    margin-bottom: 30px;
    line-height: 1.6;
}

.slide-button {
    font-size: 1.125rem; /* Increased button text size */
    padding: 12px 30px; /* Slightly increased padding for larger text */
    /* Updated for left alignment: center button content but align button left */
    margin: 0; 
}

/* Navigation Arrows and Dots styles (Keep as is) */
/* ... (Your original navigation and dots styles follow here) ... */
/*
.slider-nav { ... }
.prev-slide { ... }
.next-slide { ... }
.slider-dots { ... }
.dot { ... }
*/

/* Responsive Design - Updated font sizes for mobile */
@media (max-width: 768px) {
    .slide-content {
        padding: 0 30px; /* Adjust padding for smaller screens */
    }
    
    .slide-subtitle {
        font-size: 1.25rem; /* Slightly smaller on tablet */
    }
    
    .slide-title {
        font-size: 2.75rem; /* Slightly smaller on tablet */
    }
    
    .slide-text {
        font-size: 1.125rem; /* Slightly smaller on tablet */
    }
    
    .slide-button {
        font-size: 1rem; /* Slightly smaller on tablet */
    }
}

@media (max-width: 576px) {
    .slide-content {
        padding: 0 20px; /* Adjust padding for small mobile screens */
    }
    
    .slide-subtitle {
        font-size: 1.125rem; /* Smaller for mobile */
    }
    
    .slide-title {
        font-size: 2.25rem; /* Smaller for mobile */
    }
    
    .slide-text {
        font-size: 1rem; /* Smaller for mobile */
    }
    
    .slide-button {
        font-size: 0.95rem; /* Smaller for mobile */
        padding: 10px 25px; /* Slightly reduced padding for mobile */
    }
}/* Navigation Arrows Styles */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.slider-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.prev-slide {
    left: 20px;
}

.next-slide {
    right: 20px;
}

.nav-arrow {
    color: white;
    font-size: 24px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

/* Dots Indicator Styles */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Learn More Button Styles */
.learn-more {
    display: inline-block;
    background: #88b44e; /* Your brand green color */
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #88b44e;
}

.learn-more:hover {
    background: transparent;
    color: #88b44e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(136, 180, 78, 0.3);
}
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 600;
}

.fw-bold {
    font-weight: 700;
}

.fw-black {
    font-weight: 900;
}
.info-bar {
    background: linear-gradient(135deg, 
                rgba(0, 0, 0, 0.85) 0%, 
                rgba(20, 20, 20, 0.9) 50%, 
                rgba(0, 0, 0, 0.85) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.contact-info {
    display: flex;
    gap: 30px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}

.contact-item i {
    color: #ffffff;
    font-size: 12px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
}

.contact-item span {
    display: inline-block;
}

.social-media {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.social-icon i {
    font-size: 14px;
}
/* ========== MOBILE RESPONSIVE STYLES ========== */

/* Desktop (769px and above) */
@media (min-width: 769px) {
    .contact-item:nth-child(2) {
        align-items: flex-start;
    }
    
    .contact-item:nth-child(2) i {
        margin-top: 3px;
    }
    
    .contact-item:not(:nth-child(2)) {
        align-items: center;
    }
    
    .contact-item:not(:nth-child(2)) i {
        margin-top: 0;
    }
}

/* Tablet and smaller desktop (1024px and below) */
@media (max-width: 1024px) {
    .contact-info {
        gap: 20px;
    }
    
    .contact-item {
        font-size: 13px;
    }
    
    .social-media {
        gap: 12px;
    }
}

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .info-container {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        align-items: center;
        text-align: center;
    }
    
    .contact-item {
        display: flex;
        flex-direction: row;
        gap: 10px;
        width: 100%;
        justify-content: center;
    }
    
    .contact-item i {
        flex-shrink: 0;
        font-size: 13px;
        width: 14px;
        margin: 0;
    }
    
    /* Special fix for multi-line address */
    .contact-item.address {
        align-items: flex-start;
    }
    
    .contact-item.address i {
        margin-top: 2px;
    }
    
    .social-media {
        justify-content: center;
        width: 100%;
        gap: 20px;
        margin-top: 10px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .social-icon i {
        font-size: 16px;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .info-bar {
        padding: 15px 0;
    }
    
    .info-container {
        gap: 15px;
        padding: 0 10px;
    }
    
    .contact-info {
        gap: 12px;
        align-items: center;
        text-align: center;
    }
    
    .contact-item {
        font-size: 12px;
        line-height: 1.4;
        gap: 8px;
        justify-content: center;
    }
    
    .contact-item i {
        font-size: 12px;
        width: 13px;
        margin: 0;
    }
    
    /* Address icon fix */
    .contact-item.address {
        align-items: flex-start;
    }
    
    .contact-item.address i {
        margin-top: 2px;
    }
    
    .social-media {
        gap: 15px;
        margin-top: 8px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
    }
    
    .social-icon i {
        font-size: 14px;
    }
}

/* Small Mobile (360px and below) */
@media (max-width: 360px) {
    .contact-info {
        gap: 10px;
        align-items: center;
        text-align: center;
    }
    
    .contact-item {
        font-size: 11px;
        gap: 6px;
        justify-content: center;
    }
    
    .contact-item i {
        font-size: 11px;
        width: 12px;
        margin: 0;
    }
    
    /* Address icon fix */
    .contact-item.address {
        align-items: flex-start;
    }
    
    .contact-item.address i {
        margin-top: 1px;
    }
    
    .social-media {
        gap: 12px;
        margin-top: 5px;
    }
    
    .social-icon {
        width: 30px;
        height: 30px;
    }
    
    .social-icon i {
        font-size: 13px;
    }
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
.navbar-brands img {
    width: auto;
    height: 80px; /* Fixed height, auto width maintains aspect ratio */
    max-width: 300px; /* Prevent too wide on desktop */
    object-fit: contain;
    margin-top: 2px;
}
/* Mobile adjustments */
@media (max-width: 991.98px) {
    .navbar .navbar-brand {
        width: auto;
        height: auto;
    }
    
    .navbar-brands img {
        height: 80px; /* Smaller on mobile */
        max-width: 260px;
    }
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar .navbar-brand {
    position: absolute;
    padding: 0;
    width: 170px;
    height: 135px;
    top: 0;
    left: 0;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 600;
    outline: none;
    text-transform: none;
}


.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #88B44E; /* SaddleBrown */
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand {
        width: 126px;
        height: 100px;
    }

    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 75px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(136, 180, 78, .7);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    background-color: var(--dark);
    border: 15px solid var(--dark);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/sp.png) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}
.page-header .breadcrumb .breadcrumb-item a {
    color:#88B44E !important;   /* green link */
}

.page-header .breadcrumb .breadcrumb-item.text-dark {
    color:#88B44E!important;   /* current page text also green */
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color:#88B44E !important;   /* arrow divider also green */
}
.page-header h1 {
    color:#fff !important;
}

/*** Section Title ***/
.section-title {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    text-align: center; /* Add this to center the text content */
}

.section-title::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 2px;
    bottom: 0;
    left: 25%; /* Changed from left: 0 to center the line */
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 28px;
    height: 28px;
    bottom: -13px;
    left: calc(50% - 14px); /* Changed to center the dot perfectly */
    background: var(--dark);
    border: 10px solid #FFFFFF;
    border-radius: 28px;
}

/* Remove or modify these since we're centering all section titles */
.section-title.text-center::before {
    left: 25%; /* Keep this the same */
}

.section-title.text-center::after {
    left: calc(50% - 14px); /* Keep this the same */
}

/*** Products ***/
.product {
    background: linear-gradient(rgba(136, 180, 78, .1), rgba(136, 180, 78, .1)), url(../img/product-bg.png) left bottom no-repeat;
    background-size: auto;
}

.product-carousel .owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.product-carousel .owl-nav .owl-prev,
.product-carousel .owl-nav .owl-next {
    margin: 0 10px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.product-carousel .owl-nav .owl-prev:hover,
.product-carousel .owl-nav .owl-next:hover {
    background: #FFFFFF;
    color: var(--primary);
}


/*** About ***/
.video {
    background: linear-gradient(rgba(136, 180, 78, .85), rgba(136, 180, 78, .85)), url(../img/video-bg.jpg) center center no-repeat;
    background-size: cover;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 65px;
    height: 75px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 28px 30px 30px 38px;
    background: #FFFFFF;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 13px;
    border-left: 40px solid var(--primary);
    border-top: 28px solid transparent;
    border-bottom: 28px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Store ***/
.store-item .store-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(138, 180, 78, .3);
    opacity: 0;
    transition: .5s;
}

.store-item:hover .store-overlay {
    opacity: 1;
}


/*** Contact ***/
.contact .btn-square {
    width: 100px;
    height: 100px;
    border: 20px solid var(--light);
    background: var(--primary);
    border-radius: 50px;
}

/*** Testimonial - Revised for Transparent/Clean Design ***/
.testimonial {
    /* Keep the dark overlay on the background image for contrast */
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/testimonial-bg.jpg) center center no-repeat;
    background-size: cover;
    padding: 60px 0; /* Add some vertical padding to the section */
}

.testimonial-item {
    margin: 0 auto;
    max-width: 800px; /* Slightly wider for modern feel */
    text-align: center;
    /* --- Key Changes for Transparency and Clean Look --- */
    background: rgba(255, 255, 255, 0.1); /* Subtle, slightly transparent white background */
    border: none; /* Removed thick black border */
    border-radius: 10px; /* Added rounded corners for a softer look */
    padding: 30px; /* Increased padding for better spacing */
    min-height: auto;
    color: #FFFFFF; /* Ensure text is white for contrast against the dark background */
    backdrop-filter: blur(5px); /* Optional: Adds a cool 'frosted glass' effect */
}

.testimonial-item p {
    color: #f0f0f0; /* Slightly off-white for body text */
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-item h5 {
    color: white; /* Use a primary brand color for the name */
    margin-bottom: 5px;
}

.testimonial-item img {
    width: 60px !important; /* Slightly larger */
    height: 60px !important; /* Slightly larger */
    border-radius: 50%; /* Use 50% for a perfect circle */
    border: 3px solid #FFFFFF; /* White border around the image */
    margin-bottom: 15px;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px; /* Increased spacing */
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/* Updated dot styles for better visibility on dark background */
.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 7px; /* More space between dots */
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5); /* Semi-transparent white */
    border-radius: 50%; /* Use 50% for a perfect circle dot */
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 25px; /* Shorter active length for a cleaner look */
    height: 12px;
    background: var(--primary); /* Use a primary brand color */
    border-radius: 12px;
}/*** Footer ***/
.footer {
    color: #B0B9AE;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: #B0B9AE;
}

.copyright {
    background: #252525;
}

.copyright a:hover {
    color: #FFFFFF !important;
}