*{
    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 */
    }
}







/* Video styling */
#firstvideo {
    position: relative;
    width: 100%;
    height: 60vh;
    object-fit: cover;
    z-index: 0; /* Keep the video below other content */
}

/* Container for video */
.indvid {
    position: relative; /* To position the overlay properly */
    width: 100%;
    height: 80vh;
    background: transparent;
}

/* Black overlay on top of the video */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60vh;
    background-color: rgba(0, 0, 0, 0.5); /* Black with 50% transparency */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1; /* Ensure overlay stays above the video */
}

/* Centered text styling */
.overlay h1 {
    font-size: 2rem;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    margin-top: 15%;
}


.container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px; /* Spacing between the forms */
    padding: 20px; /* Padding around the forms */
}

.form-box {
    padding: 50px; /* Adjusted padding inside the form boxes */
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 500px; /* Adjusted width for better proportions */
    height: auto; /* Adjust height dynamically based on content */
    position: relative; /* For positioning the h2 above the box */
}

/* h2 styling for both login and register */
h2 {
    font-size: 40px; /* Increased font size */
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    position: absolute;
    top: -50px; /* Positioned above the form box */
    width: 100%; /* Centers the heading above the form box */
}

/* Form styles */
form {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 16px; /* Slightly larger label text */
    margin-bottom: 8px;
}

input[type="text"],
input[type="password"],
input[type="email"] {
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px; /* Increased font size for inputs */
}

/* Remember me checkbox */
.remember-me {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.remember-me input {
    margin-right: 5px;
}

/* Button styles for login and register */
button.btn {
    background-color: brown !important; /* Ensures buttons are brown */
    color: #fff;
    border: none;
    padding: 12px 20px; /* Increased padding for larger buttons */
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    text-transform: uppercase;
    width: 100%; /* Make the button span the container */
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Add a box shadow for emphasis */
    margin-top: 20px;
}

button.btn:hover {
    background-color: darkred;
}

/* Forgot password link */
.forgot-password {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: brown;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}




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;
  }
  