*{
    padding:0px;
    margin:0px;
    box-sizing: border-box;
    font-family:Arial, Helvetica, sans-serif;
}
.social {
    width: 100%;
    height: 8vh;
    background-color: rgb(114, 9, 9);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  
  .socialrap {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
  }
  
  .scroll-container {
    display: flex;
    align-items: center;
  }
  
  .name1 {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    white-space: nowrap;
  }




/* General Navbar Styling */
.navi {
    position: sticky;
    top: 0;
    z-index: 1020; /* Ensure it stays on top of other elements */
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow for better visibility */
}

/* Logo Styling */
.navbar-brand {
    margin-right: auto; /* Push the logo to the extreme left */
}
.navbar-brand img {
    width: 200px; /* Increased logo size */
}

/* Navbar Links Styling */
.navbar-nav {
    display: flex;
    justify-content: flex-end; /* Align nav links to the right */
    align-items: center;
    gap: 25px; /* Adjusted space between the nav links */
}

.navbar .navbar-nav .nav-link {
    color: rgb(91, 52, 1);
    font-size: 20px; /* Increased font size for nav links */
    font-weight:500; /* Made the links bolder for better emphasis */
    padding: 0.8em 1em; /* Increased padding for better spacing */
    transition: transform 0.3s ease-in-out; /* Smooth transition for the scaling effect */
}

/* Hover Effect for Nav Items */
.nav-item {
    font-size: 20px; /* Matches the increased nav link font size */
    transition: transform 0.3s ease-in-out; /* Smooth transition for scaling */
}
.nav-item:hover {
    transform: scale(1.1);
}

/* Remove Underline for 'Coffee' Link */
.nav-link.name {
    position: relative;
}
.nav-link.name::after {
    content: none; /* Removes the underline effect for 'Coffee' */
}

/* Underline Effect for Other Nav Links */
.nav-link:not(.name)::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px; /* Thickness of the underline */
    left: 0;
    bottom: 0; /* Position of the underline directly below the text */
    background-color: black;
    transition: width 0.3s ease-in-out; /* Animation duration and easing */
}

/* Align the Caret-Down Icon */
.nav-link .fa-caret-down {
    margin-left: 5px; /* Adds a small gap between the text and the icon */
    font-size: 14px; /* Adjusted the size of the caret-down icon */
    vertical-align: middle; /* Align it vertically with the text */
    color: inherit; /* Matches the text color of the link */
}

/* Disable Rotate Caret-Down Icon on Hover */
.nav-link.name:hover .fa-caret-down {
    transform: none; /* Keeps the triangle static on hover */
}

/* Media Query for Larger Screens */
@media screen and (min-width: 768px) {
    .navbar-brand img {
        width: 210px; /* Increased logo size for larger screens */
    }
    .navbar-brand {
        margin-right: 0;
        padding: 0 1em;
    }

    .navbar .navbar-nav .nav-link {
        font-size: 17px; /* Slightly larger font size for larger screens */
    }

    .nav-item {
        font-size: 17px; /* Match larger nav link font size */
    }
}




.offerings {
    display: flex;
    flex-direction: column; /* Stack rows vertically */
    gap: 20px; /* Add spacing between rows */
  }
  
  .product-container3 {
    display: flex;
    justify-content: space-between; /* Distribute items in the row evenly */
    width: 100%; /* Ensure the row takes full width of the page */
  }
  
  .product3 {
    position: relative;
    width: 60%; /* Each product takes 48% of the container width */
    height: 500px; /* Fixed height for all images */
  }
  
  .product-image3 {
    position: relative;
    width: 100%; /* Full width of the parent container */
    height: 100%; /* Full height of the parent container */
  }
  
  .product-image3 h1 {
    position: absolute;
    top: 200px; /* Space from the top of the image */
    left: 50%;
    transform: translateX(-50%); /* Center the heading horizontally */
    font-size: 28px;
    color: white;
    font-weight: bolder;
    z-index: 2; /* Ensure it stays above the image */
  }
  
  .product-image3 img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensure the image covers the container fully */
    display: block;
  }
  
  .guide-button5 {
    position: absolute;
    bottom: 200px; /* Space from the bottom of the image */
    left: 50%;
    transform: translateX(-50%);
    background-color: brown; /* Brown background */
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: normal;
    cursor: pointer;
    
    z-index: 1; /* Ensure button stays on top of image */
  }
  
  .guide-button5:hover {
    background-color: #7a4a3d; /* Darker brown on hover */
  }
  




footer {
    margin-top: 50px;
    background-color: #fff;
    color: #333;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px; /* Added equal gap between sections */
    margin-bottom: 20px;
  }
  
  .footer-logo {
    text-align: center; /* Center the logo and contact section */
    margin-bottom: 20px;
  }
  
  .footer-logo img {
    width: 200px; /* Increased logo size */
  }
  
  .footer-logo hr {
    border: 0;
    border-top: 2px solid #333;
    margin: 10px 0;
  }
  
  .contact-section {
    text-align: center; /* Align contact section under the logo */
  }
  
  .contact-section h1 {
    font-size: 20px;
  }
  
  .contact-section p {
    font-size: 13px;
    margin: 5px 0;
  }
  
  .footer-section {
   
    margin: 10px;
    text-align: left; /* Align text properly */
  }
  
  .footer-section h4 {
    font-size: 25px; /* Standardized size for all h4 */
    margin-bottom: 10px; /* Consistent spacing under headers */
    color: #000;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
    
  }
  
  .footer-section ul li {
    margin-bottom: 8px; /* Consistent spacing between list items */
  }
  
  .footer-section ul li a {
    font-size: 15px;
    color: #555;
    text-decoration: none;
  }
  
  .footer-section ul li a:hover {
    color: #a52a2a;
  }
  
  /* Social Media Icons with Nested Boxes */
  .social-icons {
    display: flex;
    gap: 12px; /* Adjusted spacing between icons */
    justify-content: center; /* Center the icons */
    margin-top: 10px;
  }
  
  .icon-box {
    background-color: #a52a2a; /* Brown outer box */
    padding: 8px; /* Add spacing for the white box */
    display: flex;
    justify-content: center;
    align-items: center;
    
    transition: transform 0.3s ease;
  }
  
  .inner-box {
    background-color: #fff; /* White inner box */
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
   
  }
  
  .icon-box:hover {
    transform: scale(1.1);
  }
  
  .icon-box a {
    color: #a52a2a; /* Icon color matching the theme */
    font-size: 16px;
    text-decoration: none;
  }
  
 
  .footer-bottom {
    text-align: center;
    
   
    background-color: rgb(114, 9, 9);
    padding: 10px 0;
  }
  
  .footer-bottom p {
    margin: 5px 0;
    color: white;
    font-size: 12px;
  }
  



