body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
   font-style: italic; 
    background-color: wheat;
    font-weight: bold; /* Correct placement */
}

.p {
    margin: 15px 0;
    padding: 15px 20px; /* Balanced padding for better spacing */
    font-family: 'Times New Roman', Times, serif;
    font-weight: 400; /* Ensures text is light yet readable */
    line-height: 1.8; /* Improves text flow and readability */
    text-align: justify; /* Provides a neat and aligned look */
    background-color: #f9f9f9; /* Softer background for improved contrast */
    border-left: 4px solid #B87333; /* Stylish left border for emphasis */
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    border-radius: 8px; /* Smooth, rounded corners */
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #A66A3C; /* Matching background color */
    padding: 10px 30px;
}
 /* Header */
     .header h1 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}
.navbar {
      background-color: #A66A3C;
      padding: 10px 20px;
    }

    .navbar-brand img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #fff;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .navbar-brand h1 {
      font-size: 24px;
      font-weight: bold;
      margin: 0;
      color: #fff;
    }

    .navbar-nav .nav-link {
      color: #fff;
      font-weight: bold;
    }

    .navbar-nav .nav-link:hover {
      text-decoration: underline;
    }
.logo-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo img {
    width: 70px; /* Slightly larger for better visibility */
    height: 70px; /* Same as width to maintain a perfect circle */
    border-radius: 50%; /* Makes the logo circular */
    border: 3px solid #fff; /* Clean white border for contrast */
    background-color: #A66A3C; /* Background color to blend with the header */
    object-fit: cover; /* Ensures proper fit inside the circle */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Soft shadow effect */
}
@media (max-width: 768px) {
  .logo img {
    width: 50px;
    height: 50px;
  }
  .logo h1 {
    font-size: 18px;
  }
}
nav a {
    color: #000;
    text-decoration: none;
    margin-left: 15px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Fullscreen height */
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100vh; 
    object-fit: cover; /* Ensures the image fills the screen */
    filter: brightness(0.8); /* Dark overlay effect */
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    border-radius: 50%;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
}

.left {
    left: 20px;
}

.right {
    right: 20px;
}

.nav-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}



.hero {
    text-align: center;
    padding: 100px 20px;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
}

section {
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    margin: 20px;
    font-family: cursive;
    border-radius: 10px;
}

.product-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.product-item {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.product-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 15px;
}

.product-info h3 {
    margin: 0 0 5px;
    color: #333;
}

.product-info p {
    margin: 0;
    color: #666;
    font-weight: bold;
}
.dropdown-menu {

    display: none;
    position: absolute;
    background-color: #004466;
    border-radius: 5px;
    padding: 10px 0;
    margin-top: 5px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 5px 20px;
}

.dropdown-menu li a {
    color: #fff;
}

footer {
    background-color: #B87333; color: #fff; padding: 0px 16px;
}

.footer-content {
    display: flex;
    justify-content: space-around; 
    padding: 2px;
    max-width: 100%; /* Full Width */
}

.footer-section {
    text-align: left;
}

.footer-section h3 {
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-bottom {
    background-color: #B87333; /* Light Blue */
    color: #000;
    text-align: center;
    padding: 10px 0;
    width: 100%; /* Full Width */
    font-weight: bold;
}

.footer-bottom a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

.footer-bottom a:hover {
    text-decoration: underline;
}
.fa-brands {
    transition: transform 0.3s ease, color 0.3s ease;
}
.fa-brands:hover {
    transform: scale(1.2);
    color: #fff;
}
@media (max-width: 768px) {
  .logo img {
    width: 50px;
    height: 50px;
  }
  .logo h1 {
    font-size: 18px;
  }
}

