* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
}
/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
  flex-wrap: wrap;
}

/* Logo + Nav Group */
.left-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo img {
  max-height: 90px;
  width: 150px;
  object-fit: contain;
}

/* Desktop Menu */
.navbar nav {
  display: flex;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
  padding: 0;
  margin: 0;
}

.navbar a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

nav ul li a {
  display: flex;
  align-items: center;
  height: 80px;
  transition: background-color 0.3s ease;
}

nav ul li a:hover {
  background-color: rgba(0, 0, 0, 0.1);
  color: #000;
}

/* Header Buttons (Desktop Only) */
.header-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 8px 16px;
  border: 2px solid transparent;
  border-radius: 3px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
}

.btn.red {
  background: #3B82F6;
  color: #fff;
}

.btn.white {
  border: 2px solid #333;
  background: #fff;
  color: #333;
}

/* 🔘 Menu Toggle Button (Hidden on Desktop) */
.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
@media (max-width: 1024px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }

  .left-nav {
    width: 100%;
    justify-content: space-between;
  }

  /* 🔘 Show Hamburger Icon */
  .menu-toggle {
    display: block;
  }

  /* ❌ Hide normal nav + buttons */
  .navbar nav,
  .header-buttons {
    display: none;
    width: 100%;
    flex-direction: column;
    margin-top: 10px;
  }

  .navbar nav ul {
    flex-direction: column;
    gap: 10px;
  }

  /* ✅ Show when toggled */
  .navbar nav.show,
  .header-buttons.show {
    display: flex;
  }

  .header-buttons a {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .logo img {
    width: 120px;
  }

  .btn {
    padding: 10px 12px;
    font-size: 13px;
  }
}


/* Hero Section */
.hero {
  background: url(img/thinkgreen.jpg) no-repeat center center/cover;
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.2); /* black with 40% opacity */
  z-index: 1;
}

/* content ko overlay ke upar lane ke liye */
.hero > * {
  position: relative;
  z-index: 2;
}

.hero-overlay {
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  color: #fff;
}

.hero-text-left {
  width: 45%;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  font-size: 15px;
  line-height: 1.5;
}

.hero-text-left strong {
  font-weight: bold;
}

.hero-text-right {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.hero-text-right h1 {
  font-size: 42px;
  font-weight: bold;
}

.tagline {
  margin: 15px auto 0 auto;  /* top margin 15px, horizontally center */
  background: #fff;
  color: #000;
  display: block; /* inline-block se block kar diya taake margin auto kaam kare */
  padding: 8px 16px;
  font-size: 30px;
  font-weight: 400;
  height: 70px;
  width: 40%;
  text-align: center; /* agar text ko bhi center karna hai */
}
@media (max-width: 1024px) {
  .hero {
    height: auto;
    padding: 40px 20px;
  }

  .hero-overlay {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-text-left,
  .hero-text-right {
    width: 100%;
    margin-bottom: 20px;
  }

  .hero-text-left {
    padding: 15px;
    font-size: 14px;
  }

  .hero-text-right h1 {
    font-size: 32px;
  }

  .tagline {
    font-size: 24px;
    height: auto;
    width: auto;
    padding: 10px 20px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 30px 10px;
  }

  .hero-text-left {
    font-size: 13px;
    padding: 10px;
  }

  .hero-text-right h1 {
    font-size: 26px;
  }

  .tagline {
    font-size: 20px;
    padding: 8px 16px;
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .hero-text-right {
    align-items: center;
    text-align: center;
  }
}

.featured-brands {
  text-align: center;
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.featured-brands h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Responsive Wrapper */
.brands-carousel-wrapper {
  position: relative;
  display: block;
  width: 80%;
  overflow: hidden;
  max-height: 300px;
  background: #fff;
  margin: 20px 0;
  padding: 20px 0;
  box-sizing: border-box;
   margin: 20px auto; /* centers horizontally */
}

.brands-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 20px;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;     /* Firefox */
}

.brands-carousel::-webkit-scrollbar {
  display: none;  /* Safari and Chrome */
}

.brands-carousel img {
  height: 80px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.brands-carousel img:hover {
  transform: scale(1.05);
}

/* Navigation Arrows */
.brand-nav {
  position: absolute;
  top: 0;
  height: 100%;
  width: 40px;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.brand-nav.left {
  left: 0;
}

.brand-nav.right {
  right: 0;
}

/* CTA Button */
.brand-button {
  margin-top: 20px;
}

.brand-button .btn {
  padding: 10px 20px;
  border: 1px solid #333;
  background: white;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.brand-button .btn:hover {
  background: #333;
  color: white;
}
.brands-carousel::-webkit-scrollbar {
  display: none;  /* Safari and Chrome */
}
@media (max-width: 1024px) {
  .brands-carousel img {
    height: 70px;
  }

  .brands-carousel {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .featured-brands {
    padding: 30px 15px;
  }

  .brands-carousel img {
    height: 60px;
  }

  .brand-nav {
    font-size: 1.5rem;
    width: 30px;
  }

  .brand-button .btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .brands-carousel img {
    height: 50px;
  }

  .brands-carousel {
    gap: 10px;
    padding: 10px;
  }

  .featured-brands h2 {
    font-size: 1.5rem;
  }

  .brand-button .btn {
    width: 100%;
    box-sizing: border-box;
  }
}

.featured-retailers {
  text-align: center;
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.featured-retailers h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.retailers-carousel-wrapper {
  position: relative;
  width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  max-height: 300px;
  background: #fff;
  padding: 20px 0;
  display: inline-block;
}

.retailers-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;

  -ms-overflow-style: none;
  scrollbar-width: none;
}

.retailers-carousel::-webkit-scrollbar {
  display: none;
}

.retailers-carousel img {
  height: 200px;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.retailers-carousel img:hover {
  transform: scale(1.05);
}

.retail-nav {
  position: absolute;
  top: 0;
  height: 100%;
  width: 40px;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  user-select: none;
  transition: background-color 0.3s ease;
}

.retail-nav:hover {
  background: rgba(0, 0, 0, 0.3);
  color: white;
}

.retail-nav.left {
  left: 0;
}

.retail-nav.right {
  right: 0;
}
@media (max-width: 1024px) {
  .retailers-carousel-wrapper {
    width: 95%;
    max-height: 260px;
    padding: 15px 0;
  }

  .retailers-carousel img {
    height: 160px;
  }

  .retail-nav {
    font-size: 1.8rem;
    width: 35px;
  }
}

@media (max-width: 768px) {
  .retailers-carousel-wrapper {
    width: 100%;
    max-height: 220px;
    padding: 10px 0;
  }

  .retailers-carousel img {
    height: 140px;
  }

  .retail-nav {
    font-size: 1.5rem;
    width: 30px;
  }

  .featured-retailers h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .retailers-carousel-wrapper {
    max-height: 180px;
    padding: 10px 0;
  }

  .retailers-carousel img {
    height: 120px;
  }

  .retail-nav {
    font-size: 1.3rem;
    width: 28px;
  }

  .featured-retailers h2 {
    font-size: 1.3rem;
  }
}


    /* Green Banner Section */
    .green-banner-section {
        margin-top: 100px;
        /* border: 2px solid red; */
      position: relative;
      overflow: visible;
      padding-top: 60px;
    }
     

    .green-bg {
      background-color: #26b67c;
      color: white;
      padding: 80px 20px 60px;
      text-align: right;
      position: relative;
      z-index: 1;
    }

    .catalogue-text {
      max-width: 1200px;
      margin: 0 auto;
    }

    .catalogue-text h2 {
      font-size: 2.5rem;
      font-weight: 700;
    }

    .catalogue-text p {
      font-size: 1.2rem;
      margin-top: 10px;
    }

    .catalogue-image {
  position: absolute;
  top: 0;
  left: 50px; /* ⬅️ Change this from 0 to 50px or as needed */
  z-index: 2;
  transform: translate(0, -20%); /* ⬅️ X-axis shift hata diya */
}

    .catalogue-image img {
      height: 400px;
      max-width: none;
      z-index: 9999;
    }
    @media (max-width: 1024px) {
  .green-banner-section {
    display: flex;
    flex-direction: column-reverse; /* text first, then image */
    align-items: center;
    padding-top: 20px;
  }

  .green-bg {
    padding: 40px 20px 20px;
    text-align: center;
    max-width: 100%;
  }

  .catalogue-text {
    max-width: 600px;
    margin: 0 auto 20px auto;
  }
}
@media (max-width: 1024px) {
  .catalogue-image {
    position: static !important;
    transform: none !important;
    margin: 0 auto 30px auto;
    width: 90vw;
    max-width: 500px;
    text-align: center;
    z-index: 10;
  }

  .catalogue-image img {
    width: 100%;
    height: auto;           /* maintain aspect ratio */
    max-width: 100%;
    max-height: 450px;      /* increase max height */
    object-fit: contain;
  }
}


    /* Decorative wave */
    /* .wavy-divider svg {
      display: block;
      width: 100%;
      height: 80px;
      margin-top: -20px;
    } */

    /* Mission Section */
    .mission-section {
      background-color: #f9f9f9;
      padding: 60px 20px;
    }

    .mission-wrapper {
      display: flex;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: auto;
      gap: 40px;
    }

    .mission-column {
      flex: 1;
      min-width: 300px;
    }

    .mission-column h2 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .mission-column p {
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .btn {
      display: inline-block;
      padding: 10px 20px;
      background: white;
      border: 1px solid #ccc;
      text-decoration: none;
      color: black;
      border-radius: 5px;
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .btn:hover {
      background-color: #eee;
    }

    @media screen and (max-width: 768px) {
      .catalogue-image {
        transform: translate(0, -10%);
        left: 20px;
      }

      .catalogue-image img {
        height: 250px;
      }

      .catalogue-text {
        text-align: center;
      }
    }

    
    .green-bg {
  background-color: #26b67c;
  color: white;
  padding: 80px 40px 60px 40px; /* Right aur left dono ko 40px kardo taake text thoda left aaye */
  text-align: right;
  position: relative;
  z-index: 1;
}

.catalogue-text {
  max-width: 900px; /* Thoda chhota width rakhte hain taake text image ke kareeb aaye */
  margin: 0 auto;
}

.catalogue-image {
  position: absolute;
  top: 0;
  left: auto;  /* left ko hata ke */
  left: 300px; /* ab image right se 20px door rahe */
  z-index: 2;
  transform: translate(0, -20%);
}
.organic-section {
  max-width: 900px;
  margin: 100px auto 0 auto;
  padding: 0 20px;
  font-family: Arial, sans-serif;
  color: #333;
}

.organic-content {
    background-color: #660;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  margin-bottom: 50px;
}

.organic-image img {
  height: 300px; /* chhoti image */
  width: auto;
  display: block;
}

.organic-text {
  max-width: 400px;
  text-align: right;
}

.organic-text h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.organic-text p {
  font-size: 1.2rem;
  margin: 0;
}

.dates-list {
  margin-top: 40px; /* Dates thoda neeche */
  text-align: center;
}

.dates-list h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.dates-list ul {
  list-style-type: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.dates-list ul li {
  margin-bottom: 10px;
  line-height: 1.5;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .dates-list ul {
    margin-left: 15px;
    margin-right: 15px;
    max-width: calc(100% - 30px);
  }
}
.organic-banner {
  position: relative;
  width: 100%;
  background-color: #6a6b00; /* Olive green */
  height: 190px; /* chhoti height */
  display: flex;
  align-items: center;
  justify-content: center; /* text center horizontally */
  overflow: visible;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.banner-image {
  position: absolute;
  left: 300px; /* yahan thoda zyada space diya */
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  height: 280px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  overflow: hidden;
}
.banner-image img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: cover;
}

.banner-text {
  color: white;
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin-left: 250px; /* image ke right side thoda gap */
}

.banner-text h2 {
  font-size: 2.5rem;
  margin: 0 0 10px;
  font-weight: bold;
}

.banner-text p {
  font-size: 1.3rem;
  opacity: 0.8;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .organic-banner {
    height: auto;
    padding: 20px 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;  /* Center content vertically and horizontally */
    text-align: center;   /* Center text */
  }
  
  .banner-image {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    height: 150px;
    margin: 0 auto 15px;  /* Center horizontally */
    border: none !important;
    box-shadow: none !important;
  }
  
  .banner-image img {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    display: block;       /* Ensures image behaves as block */
    margin: 0 auto;       /* Center image */
  }
  
  .banner-text {
    margin-left: 0;
    max-width: 100%;
    text-align: center;  /* Center text */
  }
}



.clf-footer {
  background-color: #2f2f2f;
  color: #fff;
  font-family: Arial, sans-serif;
  padding: 40px 20px 0;
}

.footer-top-icons {
  display: flex;
  justify-content: center;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  text-align: center;
}

.footer-top-icons div p {
  font-size: 14px;
  line-height: 1.4;
}

.footer-top-icons img {
  height: 40px;
}

.payment-icons img {
  height: 50px;
  margin: 0 5px;
}



.footer-column {
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 1px solid #444; 
}

.footer-column:first-child {
  border-left: none;
  padding-left: 0;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #fff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 8px;
  cursor: pointer;
}







.footer-top-icons i {
  font-size: 50px; /* increase font awesome icon size */
  color: white;    /* optional, if you want white color */
}

.finefood-image img {
  height: 100px; /* increase image height */
  width: auto;  /* keep aspect ratio */
}





.footer-links {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto; /* Center horizontally */
  flex-wrap: wrap;
  padding-bottom: 40px;
}

.footer-bottom {
  max-width: 1200px; /* Same width as footer-links */
  margin: 0 auto 20px auto; /* Center and some bottom margin */
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #999;
  border-top: none;
}

.footer-bottom .logos {
  display: flex;
  justify-content: center; /* Center logos horizontally */
  gap: 20px;
  padding: 10px 0;
  margin-bottom: 10px;
  position: relative;
}

.footer-bottom .logos img {
  height: 40px;
  margin: 0; /* remove any default margins */
}

.footer-bottom .logos {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px 0; /* more padding top and bottom for lines space */
  margin-bottom: 10px;
}

.footer-bottom .logos::before,
.footer-bottom .logos::after {
  content: "";
  position: absolute;
  left: 5%;           /* start line at 10% from left */
  width: 90%;          /* line length 80% */
  height: 1px;
  background-color: #444;
}

.footer-bottom .logos::before {
  top: 0;              /* line at top edge */
}

.footer-bottom .logos::after {
  bottom: 0;           /* line at bottom edge */
}
@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-column {
    min-width: auto;
    width: 100%;
    max-width: 400px;
    margin-bottom: 30px;
    padding-left: 0;
    border-left: none;
    text-align: center; /* List text center align kare */
  }

  .footer-column ul {
    text-align: center;
    padding-left: 0; /* left padding hata dein */
  }

  .footer-column ul li {
    margin-left: 0;
    display: inline-block;
    margin-right: 10px;
  }

  .footer-top-icons {
    gap: 30px;
  }

  .footer-top-icons div p {
    font-size: 13px;
  }

  .footer-bottom .logos {
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px 10px;
  }

  .footer-bottom .logos img {
    height: 35px;
  }
}


 .a-0 {
  background-color: #3B82F6;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;            /* 👈 Fixed solid height */
  font-size: 2.5em;
  font-weight: bold;
  margin-top: 20px;         /* 👈 Gap from navbar if needed */
  text-transform: uppercase;
  letter-spacing: 1px;
}
.organic-banner-1{
  background-color: #999;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100px;
  margin-bottom: 20px;
  margin-top: 20px;
}

  .a-1 {
      font-family: Arial, sans-serif;
      line-height: 1.6;
      margin: 0;
      padding: 0;
      background-color: #fff;
      color: #333;
    }

    .a-2 {
      display: flex;
      flex-wrap: wrap;
      padding: 50px 20px;
      max-width: 1200px;
      margin: auto;
      gap: 40px;
    }

    .a-3 {
      flex: 1;
      min-width: 300px;
    }

    .a-4 {
      font-size: 2.5em;
      margin-bottom: 20px;
    }

    .a-5 {
      margin-bottom: 20px;
    }

    .a-6 {
      max-width: 100%;
      height: auto;
      border-radius: 5px;
      margin-bottom: 20px;
    }

    .a-7 {
      display: inline-block;
      padding: 10px 20px;
      border: 1px solid #ccc;
      text-decoration: none;
      color: #333;
      border-radius: 5px;
      transition: all 0.3s ease;
    }

    .a-7:hover {
      background-color: #f0f0f0;
    }

.word-sheet {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  font-size: 12px;       /* Added */
  font-weight: 400;      /* Added */
  /* Agar aap chahein to font-family bhi yahin add kar sakte hain */
}

.sheet-content {
  border: 1px solid;
  background-color: #ffffff; 
  padding: 60px;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1); /* soft shadow like paper */
  font-family: 'Georgia', serif;
  font-size: 12px;       /* Changed from 16px */
  font-weight: 400;      /* Added */
  line-height: 1.8;
  color: #333;
}

.sheet-content h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 12px;       /* Changed from 28px */
  font-weight: 400;      /* Changed from bold */
  border-bottom: 2px solid #ccc;
  padding-bottom: 10px;
}

.sheet-content h3 {
  margin-top: 40px;
  font-size: 12px;       /* Changed from 22px */
  font-weight: 400;      /* Added */
  color: #222;
}

.sheet-content ul {
  margin-left: 20px;
  padding-left: 20px;
  font-size: 12px;       /* Added */
  font-weight: 400;      /* Added */
}

.sheet-content li {
  margin-bottom: 10px;
  font-size: 12px;       /* Added */
  font-weight: 400;      /* Added */
}

.sheet-content p {
  margin-bottom: 20px;
  font-size: 12px;       /* Added */
  font-weight: 400;      /* Added */
}

.sheet-content a {
  color: #0645ad;
  text-decoration: underline;
  font-size: 12px;       /* Added */
  font-weight: 400;      /* Added */
}

.sheet-content a:hover {
  text-decoration: none;
}



.b-1-terms {
    margin-top: 20px !important;
    border: 1px solid;
  background-color: #fff;
  padding: 30px 20px;
  max-width: 900px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
}

.b-1-terms a {
  color: #0645ad;
  text-decoration: underline;
}

.b-1-terms a:hover {
  text-decoration: none;
}

.b-1-content h3 {
  font-weight: 600;
  font-size: 14px;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #222;
}

.b-1-content p {
  margin-bottom: 12px;
}
.clf-footer a {
  text-decoration: none;
  color: inherit; /* agar color same rakhna ho */
}

.clf-footer a:hover {
  text-decoration: underline; /* optional, hover par underline dikhani ho toh */
}
