  :root {
      --primary-color: #f8c537;
      --secondary-color: #6c757d;
      --dark-color: #343a40;
      --light-color: #f8f9fa;
  }

  body {
      font-family: 'Roboto', sans-serif;
      line-height: 1.6;
      color: #333;
  }

  .logo-img {
      height: 60px;
      width: auto;
      margin-right: 10px;
      vertical-align: middle;
  }


  /* Navbar Styling */
  .navbar {
      padding: 15px 0;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .navbar-brand {
      font-weight: 700;
      font-size: 1.8rem;
  }

  .navbar-brand span {
      color: var(--primary-color);
  }

  .navbar-nav .nav-link {
      font-weight: 500;
      padding: 10px 15px;
      transition: all 0.3s ease;
  }

  .navbar-nav .nav-link:hover {
      color: var(--primary-color);
  }

  /* Hero Section */
  .carousel-item {
      height: 600px;
      position: relative;
  }

  .carousel-caption {
      background: rgba(0, 0, 0, 0.5);
      border-radius: 10px;
      padding: 20px;
      bottom: 100px;
  }

  .carousel-indicators [data-bs-target] {
      background-color: var(--primary-color);
  }

  /* Section Headers */
  .section-header {
      text-align: center;
      margin-bottom: 50px;
  }

  .section-header h2 {
      font-weight: 700;
      position: relative;
      display: inline-block;
      padding-bottom: 15px;
  }

  .section-header h2:after {
      content: '';
      position: absolute;
      display: block;
      width: 50px;
      height: 3px;
      background: var(--primary-color);
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
  }

  /* About Section */
  .about {
      padding: 80px 0;
      background-color: #f9f9f9;
  }

  /* Products Section */
  .products {
      padding: 80px 0;
  }

  .product-card {
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      margin-bottom: 30px;
  }

  .product-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }

  .hover-card {
      transition: all 0.3s ease;
      cursor: pointer;
      border-bottom: 3px solid transparent;
  }

  .hover-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
      border-bottom: 3px solid var(--primary-color);
  }

  #broilerEggsCarousel .carousel-item img,
  #duckEggsCarousel .carousel-item img,
  #quailEggsCarousel .carousel-item img,
  #localEggsCarousel .carousel-item img {
      height: 300px;
      object-fit: cover;
  }

  .specialty-eggs .card {
      border: none;
      transition: all 0.3s ease;
  }

  .specialty-eggs .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  }

  .product-img img {
      width: 100%;
      height: 250px;
      object-fit: cover;
  }

  .product-info {
      padding: 20px;
  }

  .product-info h3 {
      font-weight: 600;
      margin-bottom: 10px;
      color: var(--dark-color);
  }

  .product-sizes .size {
      display: inline-block;
      padding: 5px 10px;
      background: #f1f1f1;
      border-radius: 20px;
      margin-right: 10px;
      margin-top: 10px;
      font-size: 14px;
  }

  /* Testimonials Section */
  .testimonials {
      padding: 80px 0;
      background-color: #f9f9f9;
  }

  .testimonial-card {
      background: #fff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      margin-bottom: 30px;
  }

  .testimonial-content {
      font-style: italic;
      position: relative;
      padding: 0 20px;
  }

  .testimonial-content:before {
      content: "\201C";
      font-size: 80px;
      position: absolute;
      left: -10px;
      top: -40px;
      opacity: 0.1;
      font-family: serif;
  }

  .testimonial-author {
      display: flex;
      align-items: center;
      margin-top: 20px;
  }

  .testimonial-author img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 15px;
  }

  .author-info h4 {
      margin-bottom: 0;
      font-weight: 600;
  }

  /* Contact Section */
  .contact {
      padding: 80px 0;
  }

  .contact-info {
      margin-bottom: 30px;
  }

  .contact-detail {
      display: flex;
      align-items: flex-start;
      margin-bottom: 25px;
  }

  .contact-icon {
      width: 50px;
      height: 50px;
      background: var(--primary-color);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
      color: white;
      font-size: 20px;
  }

  .contact-form .form-control {
      padding: 12px;
      border-radius: 8px;
      margin-bottom: 20px;
  }

  .contact-form textarea.form-control {
      height: 150px;
  }

  /* Footer */
  footer {
      background: var(--dark-color);
      color: white;
      padding: 80px 0 0;
  }

  .footer-col h3 {
      color: var(--primary-color);
      font-size: 22px;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 10px;
  }

  .footer-col h3:after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      height: 2px;
      width: 50px;
      background: var(--primary-color);
  }

  .footer-links {
      list-style: none;
      padding-left: 0;
  }

  .footer-links li {
      margin-bottom: 10px;
  }

  .footer-links a {
      color: #ddd;
      text-decoration: none;
      transition: all 0.3s ease;
  }

  .footer-links a:hover {
      color: var(--primary-color);
      padding-left: 5px;
  }

  .social-links {
      margin-top: 20px;
  }

  .social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      color: white;
      margin-right: 10px;
      transition: all 0.3s ease;
      text-decoration: none;
  }

  .social-link:hover {
      background: var(--primary-color);
      color: var(--dark-color);
  }

  .copyright {
      text-align: center;
      padding: 20px 0;
      margin-top: 50px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Button */
  .btn-primary {
      background-color: var(--primary-color);
      border-color: var(--primary-color);
      color: var(--dark-color);
      font-weight: 500;
      padding: 10px 25px;
      border-radius: 30px;
      transition: all 0.3s ease;
  }

  .btn-primary:hover {
      background-color: #e0b025;
      border-color: #e0b025;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(248, 197, 55, 0.3);
  }