 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
      background: #ffffff99;
      margin: 0;
      padding: 0;
    }
    .slider {
  position: relative;
  padding: 0rem;
  margin: 0rem;
  width: 100%;
  border-radius: 0.4125rem; /* 05px */
  object-fit: cover;
  display: block;
  overflow: hidden;
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.1); /* 4px 20px */
}

.slider img {
  width: 100%; 
  height: 30rem; /* 90vh → keep as vh for responsiveness */
  display: block;
}

.slick-dots li button:before {
  font-size: 0.125rem; /* 2px */
  color: #999;
}

.slick-dots li.slick-active button:before {
  color: #080808;
}

.slick-prev:before,
.slick-next:before {
  color: #080808;
}


nav {
  position: fixed;       
  top: 0;
  left: 0;
  width: 100%;  
  height: 90px;          /* full width */
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 50px 50px;
  display: flex;
  justify-content: space-between;
  border-radius: 10px;
  align-items: center;
  z-index: 1000;          /* stay above slider */
}


    /* Logo */
    .logo {
      font-size: 4px;
      font-weight: smallS;
      color: white;
      letter-spacing: 2px;
    }
    .logo img {
       height: 80px;   /* adjust height as needed */
       width: auto;    /* keep proportions */
       display: block;
}
     .banner-text h1 {
      color: #15156A;
    font-size: 22px; 
    /* font-weight: bold; */
    margin: 0 0 15px;
    height:10px;
}

    /* Hamburger */
    .hamburger {
      display: flex;
      flex-direction: column;
      cursor: pointer;
      gap:6px;
    }

    .hamburger span {
      width: 28px;
      height: 3px;
      background: #080808;
      border-radius: 2px;
      transition: 0.3s;
    }

    /* Dropdown menu */
    .nav-links {
      display: none;
      flex-direction: column;
      background: #ffffff99;
     
      backdrop-filter: blur(10px);
      position: absolute;
      top: 70px;   /* just below navbar */
      right: 20px;
      width: 220px;
      border-radius: 12px;
      padding: 12px 0;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    .nav-links a {
      padding: 12px 18px;
      color: #15156A;
      font-weight: bold;
      text-decoration: none;
      display: block;
      transition: background (0.3s);
    }

    .nav-links a:hover {
      background: rgba(255, 255, 255, 0.25);
    }

    /* Active state */
    .nav-links.active {
      display: flex;
    }
    
   /* =================== FEATURED PRODUCTS SECTION =================== */

/* Container */
.line {
  width: 95%;
  height: 590px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
  margin-top:5rem ;
}

/* Heading */
.line p {
  font-size: clamp(1.5rem, 3vw, 2.5rem); /* responsive font */
  color: #15156A;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}

/* Slick Slider */
.slick-slider {
  display: flex;
  align-items: stretch;
}

/* Box/Card */
.box1 {
  height: clamp(200px, 30vh, 350px); /* adjusts for zoom and devices */
  margin: 0.5rem;
  border-radius: 1rem;
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  transition: transform 0.3s ease;
}

.box1:hover {
  transform: translateY(-0.5rem);
}

/* Content inside box */
.box1-content {
  background: rgba(0,0,0,0.6);
  width: 100%;
  padding: 1rem;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
}

.box1-content h3 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #fff;
  margin-bottom: 0.3rem;
}

.box1-content p {
  font-size: clamp(0.75rem, 1.5vw, 1rem);
  color: #ddd;
  margin: 0;
}

/* Slick Arrows */
.slick-prev, .slick-next {
  background: rgba(182, 180, 179, 0.3);
  border-radius: 50%;
  width: clamp(30px, 4vw, 45px);
  height: clamp(30px, 4vw, 45px);
  display: flex !important;
  justify-content: center;
  align-items: center;
  z-index: 10;
  transition: background 0.3s;
}

.slick-prev:hover, .slick-next:hover {
  background: #ffffff99;
}

.slick-prev { left: 0.5rem; }
.slick-next { right: 0.5rem; }

.slick-prev:before, .slick-next:before {
  font-size: clamp(16px, 2vw, 20px);
  color: #fff;
}

/* Slick Dots */
.slick-dots li button:before {
  font-size: clamp(8px, 1.5vw, 12px);
  color: #2a9d8f;
  opacity: 0.6;
}

.slick-dots li.slick-active button:before {
  color: #025ddb;
  opacity: 1;
}


/* =================== MEDIA QUERIES =================== */

/* Tablets */
@media (max-width: 1024px) {
  .box1 { height: clamp(180px, 25vh, 300px); }
}

/* Mobile */
@media (max-width: 768px) {
  .box1 { height: clamp(160px, 20vh, 250px); }
  .box1-content h3 { font-size: clamp(0.9rem, 2vw, 1.1rem); }
  .box1-content p { font-size: clamp(0.7rem, 1.5vw, 0.9rem); }
  .slick-prev, .slick-next { width: 35px; height: 35px; }
}

/* Extra small phones */
@media (max-width: 480px) {
  .box1 { height: clamp(140px, 18vh, 200px); }
  .box1-content h3 { font-size: clamp(0.8rem, 3vw, 1rem); }
  .box1-content p { font-size: clamp(0.65rem, 2.5vw, 0.85rem); }
  .slick-prev, .slick-next { width: 30px; height: 30px; }
}


        
    .products-section {
       background: #bab887b3; 
      padding: 40px 20px;
      text-align: center;
    }
  .products-section h2{
       color:#15156A;
       text-align: center;
       margin-top: 20px;
       margin-bottom: 20px;
    } 
    .products-section img{
      height: 80px;
      width: 80px;
    
    }
    .title-with-image {
  display: flex;
  align-items: center;
  justify-content: center; /* center horizontally */
   gap: 15px; /* space between text and image */
 }

.title-with-image h3 {
  font-size: 2rem;
  color: #15156A;
  text-align: center;

}

.title-with-image img {
  height: 100px; /* adjust image size */
  width: auto;
  margin-top: 25px;
  margin-bottom: 60px;
} 

     


    .products-section h2 {
      font-size: 2.2rem;
      color: #031b2b;
      margin-bottom: 40px;
      text-align: center;
    }
     /* .products-section :hover{
      font-size: 3.3rem;
    }  */

    .products-container {
      display: grid;
      grid-template-columns: repeat(3, 1fr); /* 3 per row */
      gap: 30px;
      max-width: 1100px;
      margin: auto;
    }
    



    .product-card {
      background: hsl(0, 100%, 100%);
      border-radius: 15px;
      cursor: pointer; /* Hand pointer 👆 */
      padding: 15px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    }

    .product-card img {
      width: 100%;
      height: 215px;
      object-fit: 100% 100%;
      border-radius: 12px;
    }

    .product-info {
      margin-top: 0px;
      text-align: left;
       text-decoration: none;
    }

    .product-info h3 {
      font-size: 1.2rem;
      color: #15156A;
      margin-top: 10px;
      margin-bottom: 33px;
       text-decoration: none;
    }

    .product-info p {
      font-weight: 580 ;
       text-decoration: none;
      font-size: 1.1rem;
      color: #15156A;
      margin-top: -25px;
      line-height: 1.4;
    }
   

    .product-btn  {
  display: flex;
  justify-content: center;  
}

    /* .price {
      font-size: 1rem;
      font-weight: bold;
      color: #2a9d8f;
    } */

    .buy-btn {
      
      text-align: center;  /* centers inline elements like button */
      margin-top: 10px;    /* optional spacing */
      background: #025DDB;
      color: #fff;
      padding: 8px 14px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 0.9rem;
      transition:background-color 0.3s ease; 
    }

    .buy-btn:hover {
      background: #15156A;
    }
    .more-btn-container {
  display: flex;
  justify-content: flex-end; /* aligns the button to the right */
  margin-top: 40px;

}

.more-btn {
  background: linear-gradient(90deg, #025DDB, #15156A); /* Gradient blue */
  color: #fff;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 50px; /* Rounded pill shape */
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  margin-right: 35PX;
}

.more-btn:hover {
  background: linear-gradient(90deg, #15156A, #025DDB); /* Reverse gradient */
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}
   

  


       /* <---rice-section---> */
       .rice-section {
  background-color:  #ffffff99;
  padding: 60px 20px;
  text-align: center;
  border-radius: 16px;
  margin: 50px auto;
  max-width: 1300px;
}
.rice-section img{
    height: 150px; /* adjust image size */
  width: auto;
  margin-top: 0px;
  margin-bottom: 0px;
} 



.rice-section h1 {
  font-size: 2rem;
  color: #003566;
  margin-bottom: 10px;
}

.subtitle {
  color: #333;
  font-size: 1rem;
  margin-bottom: 40px;
}

/* Grid Layout */
.products-rice-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

/* Card Style (Glassmorphism) */
.product-rice-card {
  background: #ffffff99(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  text-align: center;
}

.product-rice-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* Image with Hover Zoom */
.product-rice-image {
  overflow: hidden;
  border-radius: 15px;
}

.product-rice-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.5s ease;
}

.product-rice-card:hover .product-image img {
  transform: scale(1.15);
}

/* Product Info */
.product-rice-info {
  margin-top: 15px;
}

.product-rice-info h3 {
  font-size: 1.3rem;
  color: #14213d;
  margin-bottom: 8px;
}

.product-rice-info p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 15px;
}

/* Stylish Buy Button */
.buy-btn {
  background: linear-gradient(90deg, #025DDB, #15156A);
  color: #fff;
  padding: 10px 22px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.4s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.buy-btn:hover {
  background: linear-gradient(90deg, #15156A, #025DDB);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* See More Button (Right Aligned) */
.more-btn-container {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
  margin-right: 20px;
}

.more-btn {
  background: linear-gradient(90deg, #025DDB, #15156A);
  color: #fff;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.more-btn:hover {
  background: linear-gradient(90deg, #15156A, #025DDB);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

/* ===========================
   🔹 GLOBAL RESPONSIVENESS
=========================== */
html {
  scroll-behavior: smooth;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ---------------------------
   Navbar Adjustments
--------------------------- */
@media (max-width: 1200px) {
  nav {
    padding: 20px 30px;
    height: 75px;
  }
  .banner-text h1 {
    font-size: 18px;
  }
  .logo img {
    height: 60px;
  }
}

@media (max-width: 900px) {
  nav {
    padding: 15px 25px;
    height: 70px;
  }
  .banner-text h1 {
    font-size: 16px;
    text-align: center;
  }
  .logo img {
    height: 55px;
  }
}

/* ---------------------------
   Mobile Navbar Fix
--------------------------- */
@media (max-width: 700px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 15px;
  }

  .banner-text h1 {
    font-size: 10px;
    line-height: 1.0;
    margin: 10px 0;
  }

  .logo img {
    height: 30px;
  }

  .hamburger {
    align-self: flex-start;
  }

  .nav-links {
    width: auto;
    position: static;
    box-shadow: none;
  }

  .nav-links a {
    text-align: justify;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  nav {
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    height: 50px;
    padding: 8px;
  }

  .banner-text h1 {
    font-size: 0px;
    font-weight: bold;
    line-height: 1.0;
    margin: -30px;
    margin-right: 32px;
    padding: 0 15px;
  }

  .logo img {
    height: 35px;
    align-self: flex-end;
    margin-right: 360px;
  }

  .hamburger {
    align-self: flex-end;
    margin-top: -35px;
  }

  .nav-links {
    width: auto;
    position: static;
    box-shadow: none;
  }

  .nav-links a {
    text-align: justify;
    padding: 10px;
  }
}

/* ---------------------------
   Slider Image Responsiveness
--------------------------- */
@media (max-width: 1200px) {
  .slider img {
    height: 80vh;
  }
  .slick-prev:before,
  .slick-next:before {
    font-size: 1.125rem; /* 18px */
  }
}

/* Tablets */
@media (max-width: 992px) {
  .slider img {
    height: 70vh;
  }
  .slick-prev:before,
  .slick-next:before {
    font-size: 1rem; /* 16px */
  }
}

/* Mobile landscape */
@media (max-width: 768px) {
  .slider img {
    height: 60vh;
  }
  .slick-prev:before,
  .slick-next:before {
    font-size: 0.875rem; /* 14px */
  }
}

/* Mobile portrait / small phones */
@media (max-width: 480px) {
  .slider img {
    height: 24vh;
  }
  .slick-prev:before,
  .slick-next:before {
    font-size: 0.75rem; /* 12px */
  }

  .slick-dots li button:before {
    font-size: 0.1rem; /* 1.6px */
  }
}

/* Extra small / zoomed out devices */
@media (max-width: 400px) {
  .slider img {
    height: 35vh;
  }
  .slick-prev:before,
  .slick-next:before {
    font-size: 0.625rem; /* 10px */
  }
  .slick-dots li button:before {
    font-size: 0.09rem; /* 1.44px */
  }
}

/* ---------------------------
   Featured Products Slider
--------------------------- */
 
  /* =================== Media Queries =================== */

/* Large screens: 1200px and above */
@media (min-width: 1200px) {
  .line {
    padding: 60px 20px;
    gap: 20px;
  }
  .line p {
    font-size: xx-large; /* stays same */
  }
  .box1 {
    height: 350px;
    margin: 15px;
  }
  .box1-content h3 {
    font-size: 1.1rem;
  }
  .box1-content p {
    font-size: 0.85rem;
  }
}

/* Medium screens: 992px – 1199px (desktops) */
@media (max-width: 1199px) and (min-width: 992px) {
  .line {
    padding: 50px 15px;
    gap: 18px;
  }
  .line p {
    font-size: 1.8rem;
  }
  .box1 {
    height: 320px;
    margin: 12px;
  }
  .box1-content h3 {
    font-size: 1rem;
  }
  .box1-content p {
    font-size: 0.8rem;
  }
}

/* Small desktops / large tablets: 768px – 991px */
@media (max-width: 991px) and (min-width: 768px) {
  .line {
    padding: 40px 10px;
    gap: 15px;
  }
  .line p {
    font-size: 1.6rem;
  }
  .box1 {
    height: 280px;
    margin: 10px;
  }
  .box1-content h3 {
    font-size: 0.95rem;
  }
  .box1-content p {
    font-size: 0.75rem;
  }
}

/* Tablets / portrait: 576px – 1200px */
@media (max-width: 767px) and (min-width: 576px) {
  .line {
    padding: 30px 5px;
    gap: 12px;
  }
  .line p {
    font-size: 1.4rem;
  }
  .box1 {
    height: 275px;
    margin: 8px;
  }
  .box1-content h3 {
    font-size: 0.9rem;
  }
  .box1-content p {
    font-size: 0.7rem;
  }
}

/* Mobile: 0px – 575px */
@media (max-width: 100%) {
  .line {
    padding: 20px 5px;
    gap: 10px;
  }
  .line p {
    font-size: 1.2rem;
  }
  .box1 {
    height: 400px;
    margin: 5px;
  }
  .box1-content h3 {
    font-size: 0.85rem;
  }
  .box1-content p {
    font-size: 0.65rem;
  }

  /* Slick arrows adjustments for mobile */
  .slick-prev, .slick-next {
    width: 28px;
    height: 28px;
  }
  .slick-prev:before, .slick-next:before {
    font-size: 16px;
  }
}

/* Extra small screens (very narrow mobile / zoomed out) */
@media (max-width: 700px) {
  .line p {
    font-size: 1rem;
  }
  .box1 {
    height: 400px;
    margin: 4px;
  }
  .box1-content h3 {
    font-size: 0.8rem;
  }
  .box1-content p {
    font-size: 0.6rem;
  }
}

   /* Base styles already defined (your code) */

/* ================== Responsive Media Queries ================== */


/* Large devices (desktops, 1025px and up) */
@media (min-width: 1025px) {
  .line {
    padding: 60px 20px;
    gap: 20px;
  }

  .line p {
    font-size: xx-large;
  }

  .line h2 {
    font-size: 1.8rem;
  }

  .box1 {
    height: 350px;
    margin: 15px;
  }

  .box1-content h3 {
    font-size: 1.1rem;
  }

  .box1-content p {
    font-size: 0.85rem;
  }

  .slick-prev, .slick-next {
    width: 35px;
    height: 35px;
  }

  .slick-prev:before, .slick-next:before {
    font-size: 20px;
  }

  .slick-dots li button:before {
    font-size: 12px;
  }
}



@media (max-width: 1024px) {
  .products-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .product-card img {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .products-container {
    grid-template-columns: 1fr;
  }

  .title-with-image h3 {
    font-size: 1.6rem;
  }

  .title-with-image img {
    height: 70px;
  }
}

@media (max-width: 480px) {
  .products-section h2 {
    font-size: 1.2rem;
  }

  .product-card {
    padding: 10px;
  }

  .product-card img {
    height: 240px;
  }

  .product-info h3 {
    font-size: 1rem;
  }

  .buy-btn, .more-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .more-btn-container {
    justify-content: center;
  }
}

/* ---------------------------
   Rice & Animal Feed Sections
--------------------------- */
@media (max-width: 900px) {
  .products-rice-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .products-rice-container {
    grid-template-columns: 1fr;
  }

  .rice-section h1 {
    font-size: 1.5rem;
  }

  .product-rice-card img {
    height: 200px;
  }
}

/* ---------------------------
   Footer / Misc
--------------------------- */
@media (max-width: 480px) {
  body {
    font-size: 14px;
  }
}
 .footer {
  background-color: #bab887b3;
  color: #15156A;
  padding: 50px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-section h2 {
  margin-bottom: 15px;
}

.footer-section p {
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-section a {
  color: #15156A;
  text-decoration: none;
}

.footer-section iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 10px;
}

.footer-section form input,
.footer-section form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-radius: 5px;
}

.footer-section form button {
  background-color: #ffffff99;
  color: rgb(0, 0, 0);
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: normal;
  transition: background-color 0.3s;
}

.footer-section form button:hover {
  background-color: #fcfcfd;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 0px;
}
 .footer-column h3 {
      font-size: 1.3rem;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 10px;
    }

    .footer-column h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 2px;
      background: white;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: all 0.3s;
    }

    .footer-links a:hover {
      color: white;
      padding-left: 5px;
    }

/* Responsive for Mobile */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-section iframe {
    height: 250px;
  }
    .more-btn-container {
  display: flex;
  justify-content: flex-end; /* aligns the button to the right */
  margin-top: 40px;
}
}


 


/* Responsive Fixes */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

body {
  overflow-x: hidden;
}

.slider-container {
  width: 100%;
  margin: auto;
  padding: 10px;
}

.product-slider .slick-slide {
  padding: 5px;
}

.product-slider img {
  width: 100%;
  border-radius: 10px;
}

.slick-dots {
  bottom: -25px;
}

@media (max-width: 1024px) {
  .product-slider .slick-slide {
    padding: 4px;
  }
}

@media (max-width: 768px) {
  .row {
    display: block !important;
  }
  .col {
    width: 100% !important;
    margin-bottom: 15px;
  }
  .slick-dots {
    bottom: -20px;
  }
}

@media (max-width: 480px) {
  .product-slider img {
    border-radius: 6px;
  }
}

/* ===== PREMIUM UI UPGRADE ===== */
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f8f9fb;
}

h1, h2, h3 {
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Card Style */
.product-slider .slick-slide {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  padding: 10px;
  transition: transform 0.3s ease;
}

.product-slider .slick-slide:hover {
  transform: translateY(-5px);
}

/* Buttons */
button, .btn {
  border-radius: 25px;
  padding: 10px 20px;
  background: #0d6efd;
  color: #fff;
  border: none;
  transition: 0.3s;
}

button:hover {
  background: #0b5ed7;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 1000;
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
