
        :root {
            --primary-green: #004D00;
            --secondary-brown: #442C1E;
            --accent-brown: #8D6E63;
            --light-green: #E8F5E9;
            --dark-green: #1B5E20;
            --light-brown: #D7CCC8;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
        }

.navbar-expand-lg .navbar-nav {
    justify-content: center;
    align-items: center;
  }
.navbar-brand{
  width:400px;
}
        
        /* Hero Carousel */
        .hero-carousel .carousel-item {
            height: 90vh;
            min-height: 500px;
        }
        
        .hero-carousel img {
            object-fit: cover;
            height: 100%;
        }
        
        .hero-carousel .carousel-caption {
            bottom: 30%;
            background: rgba(0, 0, 0, 0.5);
            padding: 2rem;
            border-radius: 10px;
        }
        
        .hero-carousel h1 {
            font-size: 3.5rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        }
        
        @media (max-width: 768px) {
            .hero-carousel h1 {
                font-size: 2.2rem;
            }
            .hero-carousel .carousel-item {
                height: 70vh;
            }
        }

.hero-banner {
  padding: 100px 0;
  color: white;
  background-image: linear-gradient(rgba(0, 77, 0, 0.9), rgba(0, 77, 0, 0.95)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23004D00"/><path d="M0,50 Q50,30 100,50 L100,100 L0,100 Z" fill="%23003a00"/></svg>');
  background-size: cover;
}
        
        /* About Section */
        .about-section {
            background-color: var(--light-green);
            padding: 5rem 0;
        }
        
        .about-section h2 {
            color: var(--dark-green);
            font-weight: 700;
        }
        
        .feature-icon {
            font-size: 1.8rem;
            color: var(--primary-green);
            margin-right: 15px;
        }
        
        /* Product Slider */
        .product-slider {
            background: linear-gradient(to right, #f8fff8, #e8f5e9);
            padding: 5rem 0;
        }
        
        .product-slider h2 {
            color: var(--dark-green);
            font-weight: 700;
            margin-bottom: 3rem;
            text-align: center;
        }
        
        .product-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
            height: 100%;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
        }
        
        .product-img {
            height: 300px;
            object-fit: cover;
        }
        
        .product-price {
            color: var(--primary-green);
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        /* Category Section */
        .category-section {
            padding: 5rem 0;
        }
        
        .category-card {
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            padding: 2rem 1rem;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .category-card:hover {
            border-color: var(--secondary-green);
            box-shadow: 0 5px 15px rgba(76, 175, 80, 0.1);
        }
        
        .category-icon {
            font-size: 3rem;
            color: var(--primary-green);
            margin-bottom: 1rem;
        }
        
        /* Testimonial Section */
        .testimonial-section {
            background-color: var(--light-brown);
            padding: 5rem 0;
        }
        
        .testimonial-card {
            background-color: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
        }
        
        .testimonial-text {
            font-style: italic;
            line-height: 1.7;
        }
        
        .star-rating {
            color: #FFC107;
            font-size: 1.2rem;
        }
        
        /* CTA Banner */
        .cta-banner {
            background: linear-gradient(rgba(68, 44, 30, 0.9), rgba(74, 45, 31, 0.9)), url('../images/product/cinnamon-sticks-bg.jpg');
            background-size: cover;
            background-position: center;
            padding: 6rem 0;
            color: white;
        }
        
        .cta-banner h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        /* Buttons */
        .btn-primary {
            background-color: var(--secondary-brown);
            border-color: var(--secondary-brown);
            padding: 0.75rem 2rem;
            font-weight: 600;
        }
        
        .btn-primary:hover {
            background-color: var(--dark-green);
            border-color: var(--dark-green);
        }
        
        .btn-outline-primary {
            color: var(--secondary-brown);
            border-color: var(--secondary-brown);
            padding: 0.75rem 2rem;
            font-weight: 600;
        }
        
        .btn-outline-primary:hover {
            background-color: var(--primary-green);
            border-color: var(--primary-green);
        }
        
        .btn-whatsapp {
            background-color: #25D366;
            color: white;
            padding: 0.75rem 2rem;
            font-weight: 600;
        }
        
        .btn-whatsapp:hover {
            background-color: #128C7E;
            color: white;
        }
        
        /* Section Headers */

        section {
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-header h2 {
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-header h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
            background-color: var(--primary-green);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-green);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        /* Main Product Slider */
        .main-product-slider {
            padding: 5rem 0;
            background-color: white;
        }
        
        .main-product-slide {
            padding: 2rem;
        }
        
        .main-product-img {
            border-radius: 15px;
            height: 400px;
            object-fit: cover;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .product-benefits {
            list-style-type: none;
            padding-left: 0;
        }
        
        .product-benefits li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
        }
        
        .product-benefits li:before {
            content: "✓";
            color: var(--primary-green);
            font-weight: bold;
            margin-right: 10px;
        }
        
        /* Carousel Controls */
        .carousel-control-prev-icon, 
        .carousel-control-next-icon {
            background-color: var(--primary-green);
            border-radius: 50%;
            padding: 20px;
        }


/* About */

/* Card Styling */
        .value-card {
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease;
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
        }
        
        .value-card .card-header {
            background-color: var(--secondary-brown);
            color: white;
            border: none;
            padding: 20px;
            font-weight: 600;
        }
        
        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        /* Hero Section */
        .hero-section {
            padding: 100px 0;
            background-color: var(--primary-green);
            color: white;
            background-image: linear-gradient(rgba(0, 77, 0, 0.9), rgba(0, 77, 0, 0.95)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23004D00"/><path d="M0,50 Q50,30 100,50 L100,100 L0,100 Z" fill="%23003a00"/></svg>');
            background-size: cover;
        }

/* Image Placeholder Styling */
        .img-placeholder {
            background-color: #e9ecef;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            min-height: 300px;
        }
        
        .img-placeholder i {
            font-size: 4rem;
            color: #adb5bd;
        }


/* Product */

 /* Product Section Styling */
        .product-section {
            padding: 80px 0;
        }
        
        .product-section:nth-child(even) {
            background-color: white;
        }
        
        .product-section:nth-child(odd) {
            background-color: var(--light-green-tint);
        }
        
        /* Product Image Styling */
        .product-image-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            height: 100%;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f8f9fa;
        }
        
        .product-image-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #adb5bd;
        }
        
        .product-image-placeholder i {
            font-size: 5rem;
            margin-bottom: 20px;
        }
        
        /* Product Info Styling */
        .product-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        
        .product-summary {
            font-size: 1.1rem;
            margin-bottom: 25px;
            color: #555;
        }
        
        .benefits-list {
            list-style-type: none;
            padding-left: 0;
        }
        
        .benefits-list li {
            padding: 8px 0;
            padding-left: 30px;
            position: relative;
        }
        
        .benefits-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary-green);
            font-weight: bold;
        }
        
        /* Trust Indicators */
        .trust-indicators {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px dashed #dee2e6;
        }
        
        .trust-indicator {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #555;
        }
        
        .trust-indicator i {
            color: var(--primary-green);
        }
        
        /* Packaging Options */
        .packaging-options {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
        }
        
        .packaging-badge {
            padding: 8px 15px;
            background-color: white;
            border: 1px solid #dee2e6;
            border-radius: 50px;
            font-size: 0.9rem;
        }
        
        .packaging-badge.active {
            background-color: var(--primary-green);
            color: white;
            border-color: var(--primary-green);
        }
        
        /* Price Styling */
        .price {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-green);
            margin: 20px 0;
        }

 /* Responsive Adjustments */
        @media (max-width: 992px) {
            .product-section {
                padding: 60px 0;
            }
            
            .product-title {
                font-size: 1.8rem;
            }
            
            .hero-banner {
                padding: 80px 0;
            }
        }
        
        @media (max-width: 768px) {
            .product-section {
                padding: 50px 0;
            }
            
            .product-image-container {
                min-height: 300px;
                margin-bottom: 30px;
            }
            
            .cta-section {
                padding: 60px 0;
            }
        }



/* Contact */

 /* Contact Cards */
        .contact-card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
            height: 100%;
            padding: 30px 25px;
            text-align: center;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .contact-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--primary-green);
        }
        
        /* Contact Form */
        .contact-form {
            background-color: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }
        
        .form-control, .form-select {
            padding: 12px 15px;
            border: 1px solid #dee2e6;
            border-radius: 8px;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-green);
            box-shadow: 0 0 0 0.25rem rgba(0, 77, 0, 0.25);
        }
        
        .form-label {
            font-weight: 600;
            color: #555;
            margin-bottom: 8px;
        }
        
        /* Countries Section */
        .country-item {
            display: flex;
            align-items: center;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 10px;
            background-color: white;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            border-left: 4px solid transparent;
            transition: all 0.3s ease;
        }
        
        .country-item:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        
        .country-item.primary {
            border-left-color: var(--secondary-brown);
            background-color: rgba(75, 45, 33, 0.05);
        }
        
        .country-flag {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f1f3f4;
        }
        
        .country-flag i {
            font-size: 1.5rem;
            color: #555;
        }
        
        /* Map Section */
        #serviceMap {
            height: 500px;
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            border: 1px solid #dee2e6;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 80px 0;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            section {
                padding: 60px 0;
            }
            
            .hero-banner {
                padding: 80px 0;
            }
            
            .contact-form {
                padding: 30px;
            }
        }
        
        @media (max-width: 768px) {
            section {
                padding: 50px 0;
            }
            
            .cta-section {
                padding: 60px 0;
            }
            
            #serviceMap {
                height: 400px;
            }
        }
        
        @media (max-width: 576px) {
            .contact-form {
                padding: 25px 20px;
            }
            
            .country-item {
                padding: 12px;
            }
            
            #serviceMap {
                height: 350px;
            }
        }
        
        /* Custom marker icon for map */
        .custom-marker-icon {
            background-color: var(--primary-green);
            border: 3px solid white;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }
        
        .service-region {
            fill: rgba(0, 77, 0, 0.1);
            stroke: var(--primary-green);
            stroke-width: 1;
            stroke-dasharray: 5,5;
        }