.gradient-header {
    background: linear-gradient(135deg, #008000, #FFFF00, #FF0000);
    padding: 10px 0;
}
/* Navbar Logo */
.navbar-brand img {
    height: 50px;
}

/* Navbar Links */
.navbar-nav .nav-link {
    color: white !important;
    font-weight: bold;
    transition: 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
    color: #222 !important;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    padding: 5px 10px;
}

.navbar-nav .nav-link.active {
    color: #ff5733 !important;
    background: rgba(255, 87, 51, 0.2);
    border-radius: 5px;
    padding: 5px 10px;
}

/* Custom Menu Button */
.navbar-toggler {
    border: none;
    background: none;
    outline: none;
}

.navbar-toggler-icon {
    width: 30px;
    height: 3px;
    background: white;
    display: block;
    transition: 0.3s ease-in-out;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    width: 30px;
    height: 3px;
    background: white;
    display: block;
    transition: 0.3s ease-in-out;
}

.navbar-toggler-icon::before {
    transform: translateY(-10px);
}

.navbar-toggler-icon::after {
    transform: translateY(7px);
}

/* Open State */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg) translateY(5px);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg) translateY(-5px);
}

.navbar-brand img {
    height: 50px;
    /* Adjust logo size */
}

.carousel-item img {
    height: auto;
}

.category-section {
    padding: 40px 0;
    background: white;
}

.category-card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* Ensure the card takes full height */
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card img {
    max-width: 100%;
    height: 150px; /* Set a uniform height for all images */
    object-fit: contain; /* Ensure the image is fully visible */
    border-radius: 5px;
    margin-bottom: 10px;
}

.testimonial-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.testimonial-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-img {
    width: 180px;
    height: 180px;
    border-radius: 5%;
    object-fit: cover;
    border: 3px solid #ffcc00;
}

.testimonial-text {
    font-style: italic;
    color: #555;
}

.testimonial-name {
    font-weight: bold;
    margin-top: 10px;
    color: #333;
}


.product-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.see-all-btn {
    background: #ff5733;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease-in-out;
}

.see-all-btn:hover {
    background: #e64a2e;
}

.product-card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* Ensure the card takes full height */
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    max-width: 100%;
    height: 150px; /* Set a uniform height for all images */
    object-fit: contain; /* Ensure the image is fully visible */
    border-radius: 5px;
}

.product-title {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    padding: 5px;
    background: #f8f9fa;
    border-radius: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 3em; /* Adjust height to fit larger text */
}

.product-price {
    color: #ff5733;
    font-weight: bold;
    font-size: 16px;
    margin-top: 5px;
}

.services-section {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}

.service-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 50px;
    color: #ff5733;
    margin-bottom: 15px;
}

.service-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.service-text {
    color: #555;
    font-size: 16px;
}

.blog-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.see-all-btn {
    background: #ff5733;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease-in-out;
}

.see-all-btn:hover {
    background: #e64a2e;
}

.blog-card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.blog-title {
    font-size: 18px;
    font-weight: bold;
    margin-top: 15px;
}

.blog-text {
    font-size: 15px;
    color: #555;
    margin-top: 8px;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    color: #ff5733;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.read-more:hover {
    color: #e64a2e;
}

.contact-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-info {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-info h4 {
    color: #ff5733;
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 16px;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
}

.btn-submit {
    background: linear-gradient(135deg, #008000, #FFFF00, #FF0000);
    color: #333333;
    font-weight: bold;
    padding: 10px;
    border-radius: 5px;
    border: none;
    transition: 0.3s ease-in-out;
}

.btn-submit:hover {
    background: #e64a2e;
    color: white;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.footer {
    background: #222;
    color: #fff;
    padding: 50px 0;
}

.footer a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.footer a:hover {
    color: #ff5733;
}

.footer h5 {
    color: #ff5733;
    margin-bottom: 20px;
}

.social-icons a {
    margin-right: 10px;
    font-size: 20px;
    transition: 0.3s ease-in-out;
}

.social-icons a:hover {
    color: #ff5733;
}

.copyright {
    background: #111;
    color: #aaa;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
}
.card img {
    object-fit: contain;
    max-height: 208px;
    max-width: 100%;
    margin-top: 5px;
}

.card {
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: scale(1.05);
}

.social-icons a {
    font-size: 20px;
    color: #007bff;
    margin-right: 10px;
}

.social-icons a:hover {
    color: #ff5733;
}
.category-section {
    background: #f8f9fa;
    padding: 50px 0;
}
.blog-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.blog-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}
.blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.carousel-fade .carousel-item {
    transition: opacity 0.5s ease-in-out;
}

.carousel-caption.bg-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 10px;
}

#carouselPlayPause {
    z-index: 1050;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#carouselPlayPauseIcon {
    font-size: 1.5rem;
}
