*{
    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 */
    }
}

#firstvideo {
    position: relative;
    width: 100%;
    height: 95vh;
    object-fit: cover;
    z-index: 0; /* Ensure it stays below other content */
}

.indvid {
    width: 100%;
    height: 95vh;
    background: transparent;
   
}






/* New Arrival Section Styling */
.new-arrival {
    text-align: center;
    padding: 20px;
   
}

.new-arrival h2 {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: bolder;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.product-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Product Card Styling */
.product {
    text-align: center;
    width: 280px;
    background: #f8f8f8;
    padding: 15px;
  
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}


.product-image {
    position: relative;
    margin-bottom: 10px;
}

.product-image img {
    width: 100%;
    
}


.product h3 {
    font-size: 18px;
    margin: 10px 0;
    color: #333;
}

.product p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

/* Select Button Styling */
.select-btn {
    background: #621d1d;
    color: white;
    font-size: 14px;
    padding: 10px 20px;
    border: none;
    
    cursor: pointer;
    transition: background 0.3s ease;
}

.select-btn:hover {
    background: #8b2a2a;
}










.best-seller {
    text-align: center;
    padding: 20px;
   
}

.best-seller h2 {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: bolder;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.product-container1 {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Product Card Styling */
.product1 {
    text-align: center;
    width: 280px;
    background: #f8f8f8;
    padding: 15px;
  
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.product-image1 {
    position: relative;
    margin-bottom: 10px;
}

.product-image1 img {
    width: 100%;
    
}
.product1 h3 {
    font-size: 18px;
    margin: 10px 0;
    color: #333;
}

.product1 p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

/* Select Button Styling */
.select-btn1 {
    background: #621d1d;
    color: white;
    font-size: 14px;
    padding: 10px 20px;
    border: none;
    
    cursor: pointer;
    transition: background 0.3s ease;
}

.select-btn1:hover {
    background: #8b2a2a;
}




/* banner5 */
.ban {
    margin-top: 30px;
    position: relative; /* Required for positioning the overlay */
    width: 100%;
    height: 100vh;
    background-image: url(./ocimg1.jpeg);
    background-size: cover; /* Ensure the image covers the whole area */
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Prevent any child element from overflowing */
}

.ban::before {
    content: ""; /* Adds a black overlay */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 1; /* Ensure the overlay appears above the background image */
}

.banrap {
    width: 100%;
    height: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* Position relative to the black overlay */
    z-index: 2; /* Ensure content is above the overlay */
}

.banrap2 {
    width: 65%;
    text-align: center;
    color: white; /* Ensure text is visible on the background image */
    position: relative; /* Ensure it stays on top of the overlay */
}

.banrap2 h1,
.banrap2 p {
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
    font-family: Arial, sans-serif;
}

.banrap2 h1 {
    font-size: 36px; /* Adjust size as needed */
    margin-bottom: 20px; /* Space between h1 and p */
    font-weight: bolder;
}
.banrap2 p {
    font-size: 18px; /* Adjust size as needed */
    margin-bottom: 20px; /* Space between paragraphs and button */
    line-height: 1; /* Improves readability */
    text-align: center;
    font-weight: normal;
}

.banrap2 p.nobreak {
    white-space: nowrap; /* Prevents text from breaking into multiple lines */
     
}


/* Button Styling */
.guide-button {
    background-color: transparent; /* Transparent button */
    color: white; /* Text color */
    border: 2px solid brown; /* Brown border */
    padding: 10px 25px;
    font-size: 12px;
    cursor: pointer;
    text-transform: uppercase;
    font-family: sans-serif;
    font-weight: bolder;
    z-index: 2; /* Ensure button is above the overlay */
}

.guide-button:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Slight transparent white on hover */
    border: 2px solid #8b4513; /* Darker brown border on hover */
}





/* Overall container styling */
.usps {
    text-align: center; /* Center the heading */
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

.usps h2 {
    font-size: 36px; /* Adjust the size of the heading */
    font-weight: bold;
    color: #333; /* Change to any desired color */
    margin-bottom: 30px;
}

/* Product container for images and text */
.product-container2 {
    display: flex; /* Arrange items in a row */
    justify-content: space-between; /* Equal spacing between items */
    gap: 20px; /* Add consistent gap between items */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    max-width: 1200px; /* Optional: limit the maximum width of the row */
    margin: 0 auto; /* Center the container horizontally */
}

/* Individual product styling */
.product2 {
    text-align: center; /* Center content inside the product */
    max-width: 200px; /* Set a maximum width for each product */
}

/* Image styling */
.product-image2 img {
    width: 120px; /* Set the image size */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 10px; /* Add spacing below the image */
}

/* Product heading styling */
.product2 h3 {
    font-size: 16px; /* Adjust font size for product headings */
    font-weight: bold;
    color: #444; /* Text color */
    margin-bottom: 5px; /* Space below heading */
}

/* Product description styling */
.product2 p {
    font-size: 14px; /* Adjust font size for descriptions */
    color: #666; /* Lighter color for description text */
    line-height: 1.5; /* Improve readability */
}


/* Overall container styling */
.offerings {
    text-align: center;
    font-family: Arial, sans-serif;
    margin: 20px auto;
}

.offerings h2 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

/* Product container layout */
.product-container3 {
    display: flex;
    justify-content: center;
    gap: 20px; /* Equal spacing between items */
}

.product3 {
    position: relative;
    max-width: 350px;
    text-align: center; /* Center text inside each product */
}

/* Image styling */
.product-image3 img {
    width: 100%;
    height: auto;
    display: block;
    
}

/* Overlay styling */
.product-image3 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Black transparent layer */
    display: flex;
    align-items: center;
    justify-content: center;
   
}

/* Text on the overlay */
.product-image3 .overlay h3 {
    font-size: 30px;
    font-weight: bold;
    color: white;
    margin: 0;
}

.overlay a{
    text-decoration: none;
}
/* Styling for the main container */
.ban3 {
    font-family: Arial, sans-serif;
    margin: 20px auto;
    text-align: center;
}

/* Center the main heading */
.ban3 h1 {
    margin-top: 50px;
    font-size: 30px; /* Adjust font size */
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

/* Container for the image and overlay content */
.image-container {
    position: relative;
    width: 100%;
    max-width: 1200px; /* Optional: Restrict container width */
    margin: 0 auto; /* Center the container */
    overflow: hidden; /* Ensure content stays within bounds */
}

/* Full-width background image */
.image-container {
    background-image: url(./newsimg1.webp);
    background-size: cover; /* Ensure the entire image is visible */
    background-position: center; /* Center the image */
    width: 100%;
    height: 500px; /* Adjust height as needed */
}

/* Overlay content container */
.banrap3 {
    position: absolute;
    bottom: 20px; /* Position content near the bottom of the image */
    left: 10%; /* Align text to the left */
    max-width: 800px;
    color: #fff; /* Text color for better visibility */
}

/* Styling for the h2 */
.banrap3 h2 {
    font-size: 27px;
    font-weight: bolder;
    margin-bottom: 10px;
}
.banrap3 a{
    text-decoration: none;
}
/* Styling for the paragraph */
.banrap3 p {
    font-size: 25px;
    line-height: 1.5; /* Improve readability */
    color: white;
}


#secondvideo {
    position: relative;
    width: 100%;
    height: 95vh;
    object-fit: cover;
    z-index: 0; /* Ensure it stays below other content */
}

.indvid1 {
    width: 100%;
    height: 95vh;
    background: transparent;
   
}

.indvid1 h1{
    margin-top: 50px;
    font-size: 30px; /* Adjust font size */
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

/* Styling for the entire section */
.featured-section {
    text-align: center;
    font-family: Arial, sans-serif;
    padding: 20px;
  }
  
  /* Styling for the main heading */
  .featured-section h1 {
    margin-top: 100px;
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
  }
  
  /* Styling for the featured image */
  .featured-image {
    max-width: 250px; /* Adjust size as needed */
    margin: 10px auto; /* Center the image */
    display: block; /* Ensure proper alignment */
    margin-top: 70px;
  }
  
  /* Styling for the content section */
  .content-section {
    margin-top: 20px;
  }
  
  .content-section h2 {
    font-size: 27px;
    font-weight: bold;
    color: #6B2C1A; /* Matching the brown color */
    margin-bottom: 10px;
  }
  
  .content-section p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto; /* Center the paragraph */
  }
  


  /* Styling for the entire section */
.our-story-section {
    text-align: center;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    max-width: 900px;
    margin: 0 auto; /* Center the section */
    line-height: 1.8; /* Add spacing between lines */
  }
  
  /* Styling for the heading */
  .our-story-section h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
  }
  
  /* Styling for the paragraph */
  .our-story-section p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
  }
  
  /* Styling for the "Read More" button */
  .read-more-btn {
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    background-color: #6B2C1A; /* Matching the dark red color */
    padding: 10px 20px;
    text-decoration: none;
    
    transition: background-color 0.3s ease;
  }
  
  /* Hover effect for the button */
  .read-more-btn:hover {
    background-color: #4d1e13; /* Darker shade on hover */
  }
  


  /* banner5 */
.ban5 {
    margin-top: 30px;
    position: relative; /* Required for positioning the overlay */
    width: 100%;
    height: 70vh;
    background-image: url(./lastimg1.jpg);
    background-size: cover; /* Ensure the image covers the whole area */
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Prevent any child element from overflowing */
}

.ban5::before {
    content: ""; /* Adds a black overlay */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 1; /* Ensure the overlay appears above the background image */
}

.banrap5 {
    width: 100%;
    height: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* Position relative to the black overlay */
    z-index: 2; /* Ensure content is above the overlay */
}

.banrap6 {
    width: 65%;
    text-align: center;
    color: white; /* Ensure text is visible on the background image */
    position: relative; /* Ensure it stays on top of the overlay */
}

.banrap6 h1 {
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
    font-family: Arial, sans-serif;
}

.banrap6 h1 {
    font-size: 36px; /* Adjust size as needed */
    margin-bottom: 20px; /* Space between h1 and p */
    font-weight: bolder;
}
    

/* Button Styling */
.guide-button5 {
    background-color: black; /* Transparent button */
    color: white; /* Text color */
    border: 2px solid brown; /* Brown border */
    padding: 10px 25px;
    font-size: 12px;
    cursor: pointer;
    text-transform: uppercase;
    font-family: sans-serif;
    font-weight: bolder;
    z-index: 2; /* Ensure button is above the overlay */
}

.guide-button5:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Slight transparent white on hover */
    border: 2px solid #8b4513; /* Darker brown border 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 Section */
  .footer-bottom {
    text-align: center;
    font-size: 12px;
    color: #fff;
    background-color: rgb(114, 9, 9);
    padding: 10px 0;
    margin: 0; /* Remove gap after footer */
  }
  
  .footer-bottom p {
    margin: 5px 0;
  }
  