.title {
    width: 100%;
    height: auto;
    border-radius: 8px;
    max-width: 1%; /* Ensure image does not exceed container width */
    max-height: 3%; /* Ensure image does not exceed container height */
}
.title-container {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: 200px; /* Adjust the height as needed */
    margin-top: 2px; /* Adjust the top margin as needed */
    margin-bottom: 2px;
}

.content {
    padding-top: 70px; /* Adjust top padding to create space between navbar and content */
}

/* Style for the navbar icon */
.navbar-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff; /* Icon color */
    cursor: pointer;
}
.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 80px; /* Adjust width as needed */
    height: auto; /* Maintain aspect ratio */
}

#carouselExampleIndicators {
    margin-bottom: 60px;
}
.rounded-corners {
    border-radius: 15px; /* Adjust the value as needed */
}
h1 {
    color: blue; /* Change text color */
    font-size: 24px; /* Change font size */
    font-weight: bold; /* Make text bold */
    text-shadow: 2px 2px 4px rgba(238, 250, 136, 0.5); /* Add shadow effect */
    /* Add more styles as needed */
}
.product-section {
    position: relative;
    text-align: center;
    color: #fff;
    background-image: url('productB.jpg'); /* Background image */
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    margin-top: 5px;
    margin-bottom: 80px;
}

/* Blur effect for the background image */
.blur-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(79, 84, 101, 0.5); /* Semi-transparent background color */
    filter: blur(100px);
}
.blurr-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('leaf.avif'); /* Background image */
    background-size: cover;
    background-color: rgba(79, 84, 101, 0.5); /* Semi-transparent background color */
}

/* Styling for the heading */
.product-heading {
    font-size: 36px;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Styling for the product container */
.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px; /* Set max-width to prevent stretching */
    margin: 0 auto; /* Center the container */
}

/* Styling for each product */
.product {
    width: 300px;
    height: 200px; /* Set fixed height for consistent size */
    margin: 20px;
   
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 3px groove #f4f3f9;  /* Border color and width */
    border-radius: 10px; /* Rounded corners */
}

/* Styling for product images */
.product img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintain aspect ratio and fill container */
    border-radius: 8px;
    margin: 20px;
    position: center;
}

/* Styling for product names */
.product-name {
    font-size: 18px;
    margin: 10px 0;
}
.contact-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 70px); /* Adjust to accommodate slightly taller navbar height */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px; /* Adjust the top padding */
    margin: top 20px;
    opacity: 0.9; 
    color: white;
    background-color: rgba(0, 0, 0, 0.8);
}

.contact-heading {
    font-size: 32px;
    text-align: center;
    margin-bottom: 10px;
    color: whitesmoke; /* Blue color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1); /* Text shadow */
}
.contact-info {
    margin-bottom: 20px;
}
.contact-info a {
    color: #eae0e0; /* Text color */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s; /* Smooth color transition */
}
.contact-info a:hover {
    color: #8ab9f0; /* Change color on hover */
}
.social-icons {
    text-align: left;
}
.carousel-inner .carousel-item {
    transition: opacity 1s ease, transform 1s ease; /* Adjust transition properties as needed */
}
.carousel-inner .carousel-item.active {
    opacity: 1;
    transform: translateX(0%);
}
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    opacity: 0;
    transform: translateX(0%);
}
.carousel-inner .carousel-item-next {
    opacity: 0;
    transform: translateX(100%);
}
.carousel-inner .carousel-item-prev {
    opacity: 0;
    transform: translateX(-100%);
}
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    z-index: 1;
}
.product {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Define the animation to fade in each product */
.product.fade-in {
    opacity: 1;
}
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Apply animation to specific sections */
#about-section, #Product-section, #contact-section {
    animation: slideInFromRight 1s ease forwards;
}
header, #carouselExampleIndicators {
    animation: slideInFromLeft 1s ease forwards;
}
.title {
    width: 100%;
    height: auto;
    border-radius: 8px;
    max-width: 30%; /* Ensure image does not exceed container width */
    max-height: 60%; /* Ensure image does not exceed container height */
}
.title-container {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: 200px; /* Adjust the height as needed */
    margin-top: 2px; /* Adjust the top margin as needed */
    margin-bottom: 2px;
}


/* Style for the navbar icon */


.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 80px; /* Adjust width as needed */
    height: auto; /* Maintain aspect ratio */
}
header {
    background-color:#2b2775; /* Blue color */
    color: #ecedf3; /* Text color */
    padding: 20px 0; /* Padding top and bottom */
    text-align: right; /* Center-align text */
    
}
#carouselExampleIndicators {
    margin-bottom: 60px;
}
.rounded-corners {
    border-radius: 15px; /* Adjust the value as needed */
}
h1 {
    color: blue; /* Change text color */
    font-size: 24px; /* Change font size */
    font-weight: bold; /* Make text bold */
    text-shadow: 2px 2px 4px rgba(238, 250, 136, 0.5); /* Add shadow effect */
    /* Add more styles as needed */
}
.product-section {
    position: relative;
    text-align: center;
    color: #fff;
    background-image: url('leaf.avif'); /* Background image */
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    margin-top: 80px;
    margin-bottom: 80px;
}
.footers {
    background-color: #275375;
    color: white;
    text-align: center;
    
}

/* Blur effect for the background image */
.blur-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(79, 84, 101, 0.5); /* Semi-transparent background color */
    filter: blur(100px);
}

/* Styling for the heading */
.product-heading {
    font-size: 36px;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Styling for the product container */
.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px; /* Set max-width to prevent stretching */
    margin: 0 auto; /* Center the container */
}

/* Styling for each product */
.product {
    width: 300px;
    height: 200px; /* Set fixed height for consistent size */
    margin: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Styling for product images */
.product img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintain aspect ratio and fill container */
    border-radius: 8px;
    margin: 20px;
    position: center;
}

/* Styling for product names */
.product-name {
    font-size: 18px;
    margin: 10px 0;
}
.contact-details {
    position: relative;
    z-index: 1; /* Ensure content is on top of the background */
    text-align: left;
    color: white;
    font-family: Arial, sans-serif;
    padding: 20px;
    margin-top: 20px;
}
.contact-detail {
    font-size: 14px;
     color: white;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-details p {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Style for the font awesome icons */
.contact-details a {
    display: inline-block;
    margin-right: 10px;
    color: white; /* Set icon color to black */
}
.social-icons {
    text-align: left;
}
.carousel-inner .carousel-item {
    transition: opacity 1s ease, transform 1s ease; /* Adjust transition properties as needed */
}
.carousel-inner .carousel-item.active {
    opacity: 1;
    transform: translateX(0%);
}
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    opacity: 0;
    transform: translateX(0%);
}
.carousel-inner .carousel-item-next {
    opacity: 0;
    transform: translateX(100%);
}
.carousel-inner .carousel-item-prev {
    opacity: 0;
    transform: translateX(-100%);
}
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    z-index: 1;
}
.product {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Define the animation to fade in each product */
.product.fade-in {
    opacity: 1;
}
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Apply animation to specific sections */
#about-section, #Product-section, #contact-section {
    animation: slideInFromRight 1s ease forwards;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.profile-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.profile-grid {
    display: grid;
    gap: 20px;
}

.profile-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.profile-label {
    font-weight: bold;
}

.profile-value {
    display: block;
    margin-top: 10px;
    color: #343a40;
}
.whatsapp-link {
    position: fixed;
    bottom: 20px; /* Adjust as needed */
    right: 20px; /* Adjust as needed */
    z-index: 9999; /* Ensure it stays on top of other content */
}

.whatsapp-logo {
    width: 70px; /* Adjust size as needed */
    height: auto; /* Maintain aspect ratio */
    border-radius: 50%; /* For circular shape */
    /* Add any additional styling as needed */
}
