.why-choose-us .card-body {
    background-color: #ff661a;
    color: #ffffff; /* Set text color to white for better contrast */
    border-radius: 15px; /* Add rounded corners to the card body */
}

.why-choose-us .card-body .card-title {
    font-size: 1.2em; /* Increase font size for better readability */
    font-weight: bold; /* Make the title bold */
    margin-bottom: 10px; /* Add space below the title */
}

.why-choose-us .card-body .card-text {
    font-size: 1em; /* Standard font size for the text */
    line-height: 1.5; /* Improve line spacing for readability */
    font-style: italic; /* Italicize the text for emphasis */
}

.our-story {
    border: 2px solid #ff661a; /* Re-adding the border to our-story */
    padding: 2rem;
    border-radius: .3rem;
}

.why-choose-us {
    border-bottom: 2px solid #ff661a; /* Adding bottom border to why-choose-us */
    padding-bottom: 2rem; /* Add some padding so content doesn't touch the border */
    margin-bottom: 2rem; /* Add some margin below the section */
}

/* Stylish and Professional Animated Hero Section */
@keyframes slide-gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.welcome-hero-section {
    background: linear-gradient(-45deg, #ff661a, #ffaf7b, #f8f9fa, #ff8c42);
    background-size: 400% 400%;
    animation: slide-gradient 15s ease infinite;
    color: #343a40; /* Darker text for contrast against lighter gradient */
    padding: 4rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    margin-bottom: 3rem;
}

.welcome-hero-section .jumbotron-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    max-width: 100%; /* Ensure it respects container width */
}

@media (max-width: 768px) {
    .welcome-hero-section .jumbotron-heading {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .welcome-hero-section .jumbotron-heading {
        font-size: 1.8rem;
    }
}

.welcome-hero-section .lead {
    color: #212529; /* A slightly softer dark color for the subtitle */
    font-size: 1.25rem;
}

.welcome-hero-section .btn-primary {
    background-color: #ff661a;
    color: #ffffff;
    border: 2px solid #ff661a;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.welcome-hero-section .btn-primary:hover {
    background-color: transparent;
    color: #ff661a;
    border: 2px solid #ff661a;
}

/* New Arrivals Carousel Section Styling */
#newArrivalsCarousel .hero-image {
    max-width: 40%; /* Reduce image size by 20% from previous 50% */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Ensure block level for margin auto */
    margin: 0 auto; /* Center the image */
}

#newArrivalsCarousel .jumbotron-heading {
    color: #ff661a; /* Set heading text color */
}

#newArrivalsCarousel .lead {
    color: #ff661a; /* Set lead text color */
    font-weight: bold; /* Make the description bold */
}

#newArrivalsCarousel .carousel-control-prev,
#newArrivalsCarousel .carousel-control-next {
    color: #ff661a; /* Set carousel control icon color */
    filter: drop-shadow(0px 0px 5px rgba(255, 102, 26, 0.5)); /* Add a subtle glow */
}

#newArrivalsCarousel .hero-section-row > div {
    padding: 2rem;
    height: 100%;
}

#newArrivalsCarousel .hero-section-row .col-md-7 {
    background-color: #f8f9fa; /* Light gray for the image block */
}

#newArrivalsCarousel .hero-section-row .col-md-5 {
    background-color: #fff8f2; /* Light cream for the text block */
}

#newArrivalsCarousel .carousel-item {
    border-radius: 15px; /* Rounded corners for the entire item */
    overflow: hidden; /* Ensure background doesn't bleed out */
}

/* Navbar Menu Hover Effect */
.main-navbar .nav-link {
    position: relative;
    color: #ffffff; /* Default text color */
    transition: color 0.3s ease, transform 0.3s ease; /* Smooth transition for color and transform */
}

.main-navbar .nav-link:hover {
    color: #ff661a; /* Highlight color on hover */
    transform: translateY(-2px); /* Slight lift effect */
}

/* Optional: Add a subtle underline effect on hover */
.main-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #ff661a; /* Underline color */
    transition: width 0.3s ease-out, left 0.3s ease-out;
}

.main-navbar .nav-link:hover::after {
    width: 80%; /* Expand width on hover */
    left: 10%; /* Center the underline */
}

/* Navbar Dropdown on Hover */
.main-navbar .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* Remove default margin from Bootstrap */
    animation: fadeIn 0.3s ease-out; /* Add a subtle fade-in animation */
}

/* Highlight the dropdown toggle link on hover */
.main-navbar .nav-item.dropdown:hover > .nav-link {
    color: #ff661a;
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Highlight dropdown menu items on hover */
.main-navbar .dropdown-menu .dropdown-item:hover {
    background-color: #b1450f; /* Highlight background color */
    color: #ffffff; /* Text color on hover */
    transform: translateX(5px); /* Subtle slide effect */
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

/* Social Share Icons in Footer */
.social-icons {
    text-align: center;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 10px;
    font-size: 1.2rem;
    color: #343a40; /* Dark gray color */
    background-color: #f8f9fa; /* Light background */
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #ffffff;
    background-color: #ff661a; /* Highlight color on hover */
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
