* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

/* Header Styles */
.top-header {
    background-color: #f8f9fa;
    padding: 10px 0;
    font-size: 14px;
}

.top-header .contact-item {
    display: inline-flex;
    align-items: center;
    margin-right: 30px;
}

.top-header .contact-item i {
    color: #6eb50c;
    margin-right: 8px;
    font-size: 16px;
}

.top-header .contact-item a {
    color: #333;
    text-decoration: none;
}

.logo-section {
    padding: 15px 0;
}

.logo-section img {
    height: 60px;
}

.navbar {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 0;
}

.navbar-nav {
    width: 100%;
    justify-content: center;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    padding: 20px 20px;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #6eb50c;
}

.navbar-nav .nav-link.active {
    color: #6eb50c;
}

.btn-quote {
    background-color: #6eb50c;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-quote:hover {
    background-color: #689f38;
    color: white;
}

/* =================================
   Hero Carousel Section
================================= */
.hero-carousel-section {
    position: relative;
    overflow: hidden;
}

#heroCarousel {
    width: 100%;
    height: 550px;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
}

.hero-slide {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    z-index: 10;
    position: relative;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
    opacity: 0;
}

.carousel-item.active .hero-subtitle {
    animation: fadeInDown 1s ease forwards;
    animation-delay: 0.2s;
}

.hero-title {
    font-size: 62px;
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 35px;
    text-transform: uppercase;
    line-height: 1.2;
    opacity: 0;
}

.carousel-item.active .hero-title {
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.4s;
}

.hero-contact-box {
    background-color: #6eb50c;
    padding: 16px 40px;
    display: inline-block;
    border-radius: 5px;
    opacity: 0;
}

.carousel-item.active .hero-contact-box {
    animation: zoomIn 1s ease forwards;
    animation-delay: 0.6s;
}

.hero-contact-text {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.hero-divider {
    color: #ffffff;
    margin: 0 15px;
    font-weight: 300;
}

.hero-email {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-email:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 55px;
    height: 55px;
    background-color: rgba(51, 51, 51, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.4s ease;
}

.hero-carousel-section:hover .carousel-control-prev,
.hero-carousel-section:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: #6eb50c;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 30px;
    margin: 0;
    z-index: 15;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ffffff;
    opacity: 0.5;
    margin: 0 6px;
    border: none;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    opacity: 1;
    background-color: #6eb50c;
    transform: scale(1.3);
}

/* Carousel Fade Effect */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.7);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-content h5 {
    color: #6eb50c;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.about-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.btn-more {
    background-color: #333;
    color: white;
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-more:hover {
    background-color: #6eb50c;
}

.about-badge-section {
    background-color: #6eb50c;
    padding: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.badge-item {
    text-align: center;
}

.badge-item img {
   
    
    background: white;
    border-radius: 50%;
    padding: 15px;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h5 {
    color: #6eb50c;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
}

.product-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.product-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #6eb50c;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-badge {
    opacity: 1;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.product-navigation {
    text-align: center;
    margin-top: 30px;
}

.product-navigation button {
    background-color: #333;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-navigation button:hover {
    background-color: #6eb50c;
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonial-card {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}

.testimonial-card p {
    font-style: italic;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-card h5 {
    font-weight: 600;
    color: #333;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #333;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-nav:hover {
    background-color: #6eb50c;
}

.testimonial-nav.prev {
    left: -60px;
}

.testimonial-nav.next {
    right: -60px;
}

/* Contact Section */
.contact-section {
    display: flex;
    min-height: 400px;
}

.contact-info {
    background-color: #333;
    color: white;
    padding: 50px;
    flex: 1;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-info h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
}

.contact-info p {
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-detail {
    margin-bottom: 20px;
}

.contact-detail h5 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    color: white;
}

.contact-detail p {
    color: #ccc;
    margin: 0;
}

.contact-detail a {
    color: #ccc;
    text-decoration: none;
}

.contact-form-section {
    background-color: #6eb50c;
    padding: 50px;
    flex: 1;
}

.contact-form-section h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-form-section p {
    color: white;
    margin-bottom: 30px;
}

.contact-form-section .form-control {
    border: none;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.contact-form-section textarea.form-control {
    height: 120px;
}

.btn-submit {
    background-color: white;
    color: #6eb50c;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #333;
    color: white;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: white;
}

.top-button {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 120px;
    right: 45px;
    background-color: #f5f5f5;
    color: #6eb50c;
    border-radius: 50%;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.top-button:hover {
    background-color: #6eb50c;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .about-badge-section {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-section {
        flex-direction: column;
    }
    
    .testimonial-nav {
        display: none;
    }
    
    .top-header .contact-item {
        display: block;
        margin-bottom: 10px;
    }
}
