*{
    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 */
    }
}


/* Style for the images section */
.images-section {
    width: 90%; /* Ensures the section spans the full width of the page */
    margin: 0; /* Removes default margin */
    padding: 0; /* Removes default padding */
  }
  
  .images-section img {
    display: block; /* Ensures no inline spacing around images */
    max-width: 90%; /* Limits the image width to 90% of the viewport */
    height: auto; /* Maintains the aspect ratio of the images */
    margin: 20px auto; /* Adds vertical spacing and centers the image horizontally */
    object-fit: cover; /* Ensures the image fills its container without distortion */
 
  }
  
















































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;
  }
  