/* Navigation Styles */
 .navbar {
     background-color: rgba(255, 255, 255, 0.95);
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
 }

 .navbar-brand {
     font-weight: 700;
     color: #0d6efd !important;
 }

 .nav-link {
     font-weight: 500;
     margin: 0 8px;
     position: relative;
 }

 .nav-link:after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     background: #0d6efd;
     bottom: 0;
     left: 0;
     transition: width 0.3s ease;
 }

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

 /* Hero Carousel */
 .hero-carousel img {
     height: 400px;
     object-fit: cover;
     object-position: center;
 }

 .carousel-caption {
     background-color: rgba(0, 0, 0, 0.6);
     border-radius: 10px;
     padding: 20px;
     bottom: 40px;
 }

 /* Product Cards */
 .product-card {
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     border-radius: 10px;
     overflow: hidden;
     border: none;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
     margin-bottom: 25px;
     opacity: 0;
     transform: translateY(30px);
 }

 .product-card.animate {
     opacity: 1;
     transform: translateY(0);
 }

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

 .product-card:hover {
     transform: translateY(-10px) !important;
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
 }

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

 .product-badge {
     position: absolute;
     top: 15px;
     right: 15px;
     padding: 5px 12px;
     border-radius: 20px;
     font-size: 0.75rem;
     font-weight: bold;
     z-index: 1;
 }

 /* Section Styles */
 .section-title {
     position: relative;
     display: inline-block;
     margin-bottom: 2rem;
     font-weight: 700;
 }

 .section-title:after {
     content: '';
     position: absolute;
     width: 60px;
     height: 4px;
     background: #0d6efd;
     bottom: -12px;
     left: 50%;
     transform: translateX(-50%);
     border-radius: 2px;
 }

 .brochure-section {
     background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
     border-radius: 15px;
     position: relative;
     overflow: hidden;
 }

 .brochure-section:before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: radial-gradient(circle, rgba(13, 110, 253, 0.1) 0%, transparent 70%);
     animation: pulse 8s infinite linear;
 }

 /* Animations */
 @keyframes pulse {
     0% {
         transform: rotate(0deg);
     }

     100% {
         transform: rotate(360deg);
     }
 }

 .fade-in {
     animation: fadeIn 1s ease forwards;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }
/* Products Section with Animated Product Background */
#products {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    border-radius: 1rem;
    padding: 4rem 2rem;
    z-index: 1;
}

/* Common style for floating product images */
.floating-product {
    position: absolute;
    width: 120px;
    opacity: 0.15;
    animation: float 15s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
    /* don't block clicks */
}

/* Place a few product images */
.floating-product.one {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-product.two {
    bottom: 15%;
    right: 10%;
    animation-delay: 4s;
}

.floating-product.three {
    top: 40%;
    right: 30%;
    animation-delay: 8s;
}

/* Floating animation */
@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    50% {
        transform: translateY(-30px) rotate(8deg) scale(1.05);
    }

    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
}

/* Product cards stay on top */
.product-card {
    position: relative;
    z-index: 2;
}

.bg-success {
    --bs-bg-opacity: 1;
    background-color: rgb(201, 225, 113) !important;
}

/* Hero Section Styling with Color Overlay */
#home {
    position: relative;
    overflow: hidden;
}

#home::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-45deg, #0d6efd, #6610f2, #20c997, #ffc107);
    background-size: 400% 400%;
    animation: gradientShift 12s ease infinite;
    opacity: 0.6;
    /* adjust transparency */
    z-index: 1;
}

/* Ensure carousel content stays above overlay */
#home .carousel-inner,
#home .carousel-caption {
    position: relative;
    z-index: 2;
}

/* Text styling */
#home h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

#home p {
    font-size: 1.2rem;
    color: #f8f9fa;
}

/* Gradient animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Section Title Styling */
#products .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0d6efd;
    /* Bootstrap primary blue */
    margin-bottom: 0.5rem;
}

#products p.text-muted {
    font-size: 1.1rem;
    color: #6c757d;
}

/* Product Card Styling */
.product-card {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

/* Product Image */
.product-img {
    border-bottom: 4px solid #0d6efd;
    transition: transform 0.4s ease;
}

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

/* Badge Styling */
.product-badge {
    position: absolute;
    top: 2px;
    left: 2px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    border-radius: 20px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.product-badge.bg-success {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.product-badge.bg-primary {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
}

.product-badge.bg-warning {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
}

/* Card Body */
/* Products Section */
#products {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 1rem;
    padding: 4rem 2rem;
}

/* Section Title */
#products .section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #343a40;
    letter-spacing: -0.5px;
}

#products p.text-muted {
    font-size: 1.1rem;
    color: #495057;
}

/* Product Card */
.product-card {
    border: none;
    border-radius: 1.2rem;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff, #f1f3f5);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Product Image */
.product-img {
    border-radius: 1.2rem 1.2rem 0 0;
    transition: transform 0.4s ease;
}

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

/* Badge */
.product-badge {
    position: absolute;
    top: 2px;
    left: 157px;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    border-radius: 30px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    z-index: 2;
    background: linear-gradient(135deg, #ff7eb3, #ff758c);
}

/* Alternate badge colors */
.product-card:nth-child(2) .product-badge {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.product-card:nth-child(3) .product-badge {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.product-card:nth-child(4) .product-badge {
    background: linear-gradient(135deg, #fa709a, #fee140);
}

/* Card Title */
.product-card .card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #212529;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
}

/* Products Section Background with Animated Shapes */
#products {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    /* light base */
    border-radius: 1rem;
    padding: 4rem 2rem;
    z-index: 1;
}

/* Floating background shapes */
#products::before,
#products::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
    animation: float 12s ease-in-out infinite;
    z-index: 0;
}

/* First shape */
#products::before {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    top: -80px;
    left: -80px;
    animation-delay: 0s;
}

/* Second shape */
#products::after {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #20c997, #0dcaf0);
    bottom: -100px;
    right: -100px;
    animation-delay: 4s;
}

/* Float animation */
@keyframes float {
    0% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

/* Ensure product cards are above shapes */
.product-card {
    position: relative;
    z-index: 2;
}

.hero-carousel img {
    height: 340px;
    object-fit: cover;
    object-position: center;
}

#bannerCarousel .carousel-item img {
    width: 100%;
    height: auto;
}
<style>.bg-light-blue {
    background-color: #f8f9fa;
}

.contact-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.contact-list li:last-child {
    border-bottom: none;
}

.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: #007bff;
    transform: translateY(-3px);
}

.rounded-lg {
    border-radius: 15px;
}

/* General Section Styling */
#contact {
    position: relative;
    background: linear-gradient(135deg, #f9fbfd, #eef3f8);
    border-radius: 1rem;
    padding: 4rem 2rem;
    overflow: hidden;
}

/* Decorative Gradient Background Blobs */
#contact::before,
#contact::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.15;
    z-index: 0;
}

#contact::before {
    width: 400px;
    height: 400px;
    background: #0d6efd;
    top: -100px;
    left: -120px;
    animation: float 16s ease-in-out infinite;
}

#contact::after {
    width: 350px;
    height: 350px;
    background: #20c997;
    bottom: -120px;
    right: -100px;
    animation: float 18s ease-in-out infinite reverse;
}

@keyframes float {
    0% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

/* Contact Section Box */
.contact-section {
    position: relative;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

/* Section Title */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0d6efd;
    text-transform: capitalize;
}

/* Contact Cards */
.bg-light-blue {
    background: linear-gradient(135deg, #e9f3ff, #f4faff);
}

.contact-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #212529;
}

.contact-list li {
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-list a {
    text-decoration: none;
    color: #212529;
    transition: color 0.3s;
}

.contact-list a:hover {
    color: #0d6efd;
}

/* Map */
.contact-map iframe {
    border-radius: 0.75rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Business Hours */
.bg-light {
    background: #f8f9fa !important;
}

#contact h5 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* ===== Footer ===== */
footer {
    background: #111827;
    /* dark slate */
    color: #fff;
    font-size: 0.95rem;
}

footer h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0d6efd;
}

footer a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #0d6efd;
}

footer .social-icons a {
    font-size: 1.2rem;
    transition: transform 0.3s, color 0.3s;
}

footer .social-icons a:hover {
    color: #0d6efd;
    transform: translateY(-3px);
}

footer .btn-outline-light {
    border-radius: 30px;
    padding: 6px 18px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

footer .btn-outline-light:hover {
    background: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
}

footer hr {
    border-color: rgba(255, 255, 255, 0.15);
}