:root {
  --navy: #00327d;
  --green: #81b673;
  --green-dark: #5e9149;
  --white: #ffffff;
  --light: #cfdef5;
  --muted: #6b7fa3;
  --border: #d6e2f5;
  --textc: black;
}

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

html,
body {
  overflow-x: hidden !important;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--textc);
  background: #fff;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Playfair Display", serif;
}

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.navbar-brand img {
  object-fit: contain;
  object-position: center;
  height: 50px;
}
.nav-link {
  color: #1a2a4a !important;
  font-weight: 500;
  font-size: 0.9rem;
}
.nav-link:hover {
  color: var(--navy) !important;
}
.btn-shop-nav {
  background: var(--navy);
  color: #fff;
  border-radius: 50px;
  padding: 8px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
}
.btn-shop-nav:hover {
  background: #00255e;
  color: #fff;
}

/* .hero {
  min-height: 90vh;
  background:
    linear-gradient(
      135deg,
      rgba(0, 50, 125, 0.85) 0%,
      rgba(0, 50, 125, 0.5) 60%,
      rgba(129, 182, 115, 0.4) 100%
    ),
    url("/assets/hero-farm.webp") center center / cover no-repeat;
  display: flex;
  align-items: center;
  padding-top: 80px;
} */

/* start carousel style */

.hero-carousel {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.hero-carousel .carousel-item {
  height: 90vh;
}

.hero-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(84, 91, 101, 0.85) 0%,
    rgba(48, 53, 59, 0.5) 60%,
    rgba(129, 182, 115, 0.4) 100%
  );
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 560px;
}

@media (max-width: 768px) {
  .hero-carousel,
  .hero-carousel .carousel-item {
    height: 100vh;
  }

  .hero-content {
    padding-top: 70px;
  }
}

/* end  caarousel  */

.category-tab {
  background: var(--light);
  color: var(--navy);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 30px;
  font-weight: 600;
  font-size: 0.95rem;
}
.category-tab.active {
  background: var(--navy) !important;
  color: #fff !important;
  border-color: var(--navy);
}

.hero-badge {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  backdrop-filter: blur(8px);
  font-size: 0.75rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 560px;
}

.btn-hero-primary {
  background: #fff;
  color: var(--navy);
  border-radius: 50px;
  font-size: 1rem;
  padding: 14px 36px;
  font-weight: 700;
  border: none;
}

.btn-hero-primary:hover {
  background: #e8f0ff;
  color: var(--navy);
}

.btn-hero-outline {
  background: transparent;
  color: #fff;

  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  padding: 13px 34px;
  font-weight: 600;
  font-size: 1rem;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: #fff;
}

.features-strip {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-item i {
  font-size: 1.4rem;
  color: var(--green-dark);
}

.feature-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.whatsapp-float {
  width: 50px !important;
  height: 50px !important;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1050;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 12px 12px !important;
  border-radius: 50px !important;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  line-height: normal;
}

#backBtn {
  color: #fff;

  text-decoration: none;
  background: var(--navy);
}
.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.05) !important;

  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.whatsapp-float i {
  font-size: 1.8rem;
}

.section-badge {
  background: rgba(0, 50, 125, 0.08);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 1rem;
}

.about-img {
  border-radius: 24px;
  object-fit: cover;
  width: 100%;
  height: 480px;
  box-shadow: 0 20px 60px rgba(0, 50, 125, 0.15);
}

.bg-light-blue {
  background: var(--light);
}

.product-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  background: #fff;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 50, 125, 0.12);
}
.product-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.product-card .card-body {
  padding: 1.25rem;
}
.product-price1 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}
.product-old-price {
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: line-through;
}
.save-badge {
  display: inline-block;
  background: #e8f7ea;
  color: #2f7a3d;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}
.qty-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.qty-btn {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
}
.qty-btn.active,
.qty-btn:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.product-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 50px;
}
.tag-navy {
  background: var(--navy);
  color: #fff;
}
.tag-green {
  background: var(--green);
  color: #fff;
}
.product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}
.btn-buy {
  background: var(--navy);
  color: #fff;
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  width: fit-content;
}
.btn-buy:hover {
  background: #00255e;
  color: #fff;
}

.custom-arrow {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-60%);
  opacity: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-control-prev.custom-arrow {
  left: 10px;
}

.carousel-control-next.custom-arrow {
  right: 10px;
}

.custom-arrow i {
  font-size: 22px;
  color: #102447;
  line-height: 40px;
}

.wl-section {
  background-color: #00255e;
  color: #fff;
  overflow: hidden;
  border-radius: 20px;
}

.wl-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
}

.btn-wl-primary {
  background: #fff;
  color: var(--navy);
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 700;
  border: none;
}
.btn-wl-primary:hover {
  background: #e8f0ff;
  color: var(--navy);
}
.btn-wl-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  padding: 11px 28px;
  font-weight: 600;
}
.btn-wl-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.wl-start {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}
.benefits-section {
  background: var(--navy);
}
.benefit-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-icon i {
  font-size: 1.4rem;
  color: var(--green);
}

.process-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
}

.process-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.step-badge {
  width: 52px;
  height: 52px;
  background-color: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.text-green {
  color: var(--green-dark);
}

.text-navy {
  color: var(--navy);
}

.rounded-xl {
  border-radius: 16px !important;
}

.testimonial-card {
  border: 1px solid var(--border);
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
}
.quote-mark {
  color: var(--green);
  font-size: 3rem;
  font-family: "Playfair Display", serif;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.star {
  color: #f5a623;
  font-size: 0.9rem;
}

.footer {
  background: #0a1a3a;
}
.footer-link {
  color: #8da4c8;

  text-decoration: none;
  font-size: 0.9rem;
}
.footer-link:hover {
  color: #fff;
}

.table td,
small {
  color: black !important;
}

/* .footer {
  background: #0a1a3a;
}
.footer-link {
  color: #8da4c8;
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-link:hover {
  color: #fff;
}
hr{
  color: #ffffff !important;
  opacity: 1 !important;
  border-top: 2px solid rgba(255, 255, 255, 0.1) !important;
 
}
.footer-equal-row {
  --bs-gutter-x: clamp(2rem, 4.5vw, 4rem);
  --bs-gutter-y: 1.75rem;
  align-items: flex-start;
}

.footer-equal-row > [class*="col-"] {
  min-width: 0;
}

.footer-brand-col {
  text-align: left;
}

.footer-links-col {
  text-align: center;
}

.footer-links-col h1,
.footer-links-col h2,
.footer-links-col h3,
.footer-links-col h4,
.footer-links-col h5,
.footer-links-col h6 {
  text-align: center;
}

.footer-links-wrap {
  justify-content: center !important;
  gap: 2.5rem !important;
}

.footer-links-col .list-unstyled {
  margin-bottom: 0;
  text-align: left;
}

.footer-social-col {
  text-align: right;
}

.footer-social-col h1,
.footer-social-col h2,
.footer-social-col h3,
.footer-social-col h4,
.footer-social-col h5,
.footer-social-col h6 {
  text-align: right;
}

.footer-social-list {
  justify-content: flex-end;
  margin-bottom: 0;
}

.footer-social-list .footer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
} */
.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  height: 100%;
}

.form-card h3 {
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 10px;
}

.form-card .sub {
  color: #6c757d;
  margin-bottom: 20px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #dfe5eb;
  border-radius: 12px;
  padding: 12px 15px;
  outline: none;
  transition: 0.3s;
}

.field textarea {
  min-height: 120px;
  resize: none;
}

/* @media (max-width: 991px) {
  .footer-links-col,
  .footer-social-col,
  .footer-links-col h1,
  .footer-links-col h2,
  .footer-links-col h3,
  .footer-links-col h4,
  .footer-links-col h5,
  .footer-links-col h6,
  .footer-social-col h1,
  .footer-social-col h2,
  .footer-social-col h3,
  .footer-social-col h4,
  .footer-social-col h5,
  .footer-social-col h6 {
    text-align: left;
  }

  .footer-links-wrap {
    justify-content: flex-start !important;
    gap: 1.5rem !important;
  }

  .footer-social-list {
    justify-content: flex-start;
  }
} */

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(124, 201, 110, 0.15);
}

.confirm-msg {
  display: none;
  color: #198754;
  font-weight: 600;
}
.row.g-3 {
  --bs-gutter-y: 1rem;
}

.field {
  margin-bottom: 0;
}

.form-card .btn-buy {
  margin-top: 20px;
}

#successModal .modal-content {
  border-radius: 20px;
}

.success-icon {
  width: 90px;
  height: 90px;
  margin: auto;
  background: #e9f8ef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon i {
  font-size: 55px;
  color: #28a745;
}

#successModal h3 {
  color: var(--navy);
}

#successModal .modal-content {
  animation: popup 0.3s ease;
}

@keyframes popup {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}
.error-icon {
  width: 90px;
  height: 90px;
  margin: auto;
  background: #fdeaea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-icon i {
  font-size: 55px;
  color: #dc3545;
}
#farmCarousel {
  border-radius: 24px;
}

#farmCarousel .farm-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

#farmCarousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

#farmCarousel .carousel-control-prev,
#farmCarousel .carousel-control-next {
  width: 12%;
}

#farmCarousel .carousel-control-prev-icon,
#farmCarousel .carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 50%;
  padding: 18px;
}
.btn-outline-dark {
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 0.85rem;
  font-weight: 600;
  font-weight: 600;
  border-color: var(--border) !important;
}

#menuIcon {
  font-size: 30px;
  color: var(--navy);
  transition: 0.3s;
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media (max-width: 991px) {
  .navbar-nav {
    width: 100%;
  }

  .navbar-nav .nav-link {
    margin-top: 10px;
    display: block;
    width: 100%;
    padding: 14px 18px !important;
    background: #f7f9fc;
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
    color: var(--navy) !important;
    font-weight: 600;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    background: var(--navy);
    color: #fff !important;
    border-color: var(--navy);
  }

  .btn-shop-nav {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  #farmCarousel .farm-img {
    height: 350px;
  }
}

@media (max-width: 576px) {
  #farmCarousel .farm-img {
    height: 260px;
  }
  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    padding: 12px 12px !important;
    font-size: 0.95rem;
    border-radius: 50px !important;
  }
}

.product-gallery {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 20px;
}

.product-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

@media (max-width: 576px) {
  .product-img {
    height: 280px;
  }
}

.thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 2px solid #ddd;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.thumb:hover {
  border-color: var(--navy);
  transform: translateY(-4px);
}

.product-price {
  font-size: 38px;
  color: var(--navy);
  font-weight: 700;
}

.product-weight {
  background: var(--green);
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.product-desc {
  color: #666;
  line-height: 1.9;
  margin-bottom: 30px;
}

.mini-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  text-align: center;
  padding: 18px;
  background: #fff;
  transition: 0.3s;
}

.mini-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.mini-card i {
  font-size: 28px;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.mini-card h6 {
  color: var(--navy);
  margin-bottom: 5px;
  font-weight: 700;
}

.mini-card small {
  color: #777;
}

@media (max-width: 991px) {
  .product-card img {
    height: 350px;
  }

  .product-price {
    font-size: 30px;
  }
}
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(124, 201, 110, 0.12);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.section-card {
  padding: 32px;
  border-radius: 20px;
  transition: 0.3s ease;
}

.section-card:hover {
  transform: translateY(-6px);
}

.mini-card {
  text-align: center;
  padding: 35px 25px;
  border-radius: 18px;
  transition: 0.3s ease;
}

.mini-card i {
  font-size: 42px;
  color: var(--green);
}

.mini-card h5 {
  color: var(--navy);
  font-weight: 600;
}

.mini-card:hover {
  transform: translateY(-6px);
}
.section-card {
  background: #fff;
  border: 1px solid #d8e6ff;
  border-radius: 18px;
  padding: 28px;
  transition: 0.3s;
  height: 100%;
}

.section-card h3 {
  font-size: 24px;
  margin: 0;
  color: #12386d;
}

.section-card h4 {
  font-size: 20px;
  color: #12386d;
}

.section-card p {
  line-height: 1.8;
  color: black;
  margin-bottom: 0;
}

.product-list {
  padding-left: 20px;
  margin-bottom: 0;
}

.product-list li {
  margin-bottom: 10px;
  color: var(--textc);
}

.table th {
  color: #12386d;
  width: 160px;
  font-weight: 600;
}

.table td {
  color: #555;
}

.text-green {
  color: var(--green-dark);
}

@media (max-width: 991px) {
  .btn-buy {
    width: fit-content;
    padding: 10px 22px !important;
    border-radius: 8px !important;
  }
  .btn-success {
    padding: 10px 22px !important;
    border-radius: 8px !important;

    width: 100%;
  }
  .section-card {
    padding: 22px;
  }

  .section-card h3 {
    font-size: 22px;
  }
}
.thumb.active {
  border: 2px solid var(--navy);
  transform: scale(1.05);
}

#waWidget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
}

#waButton {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 34px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);

  transition: 0.3s;
}

#waButton:hover {
  transform: scale(1.08);
}

#waPopup {
  position: absolute;

  bottom: 80px;
  right: 0;

  width: 340px;

  background: #fff;

  border-radius: 18px;

  overflow: hidden;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);

  opacity: 0;

  visibility: hidden;

  transform: translateY(20px);

  transition: 0.3s;
}

#waPopup.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.wa-header {
  background: #25d366;

  color: #fff;

  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 15px;
}

.wa-header button {
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

.wa-body {
  padding: 20px;
}

@media (max-width: 576px) {
  #waPopup {
    width: 300px;
  }
}

.blog-content {
  font-family: "Inter", sans-serif;
  color: #000;
  line-height: 1.2;
}

.blog-content h1,
.blog-content h2,
.blog-content h3 {
  font-family: "Playfair Display", serif;
  color: var(--navy);
}

.blog-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
}

.blog-content h3 {
  font-size: 1.45rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
}

.blog-content p {
  color: #000;
  margin-bottom: 0.8rem;
}

.blog-content ul,
.blog-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.blog-content li {
  color: #000;
  margin-bottom: 0.5rem;
}

.blog-content strong {
  color: #000;
  font-size: 1.15em;
  font-weight: 700;
}

.blog-content img {
  width: 100%;
  border-radius: 20px;
  margin: 2rem 0;
}

#finalthought h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
  color: var(--navy);
}
#finalthought p {
  color: #000;
  margin-bottom: 0.8rem;
}

/* .footer-align{
       padding-right: 6rem !important;
    padding-left: 9rem !important;
}
@media (max-width:1400px) {
  .footer-align{
       padding-right: 1rem !important;
    padding-left: 1rem !important;
}
} */

.result-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.result-card h5,
.result-card p,
.result-card div:not(.result-card img) {
  margin: 0;
  padding-left: 10px;
  padding-right: 10px;
}
.result-card h5 {
  margin-top: 10px;
}

.result-card p {
  margin-bottom: 10px;
}


.footer {
  background: #152a46;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #7cc96e, #9be88b, #7cc96e);
}

.footer a {
  text-decoration: none;
  transition: 0.35s;
}

.footer p {
  margin-bottom: 0;
}

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

.footer-top {
  padding-bottom: 60px;
}

.footer-logo {
  height: 42px;
  margin-bottom: 25px;
  filter: brightness(0) invert(1);
}

.footer-about {
  color: #d6dbe6;
  line-height: 1.8;
  margin-bottom: 28px;
  font-size: 15px;
}

.footer-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 45px;
  height: 3px;
  border-radius: 20px;
  background: #7cc96e;
}

.footer-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 14px;
  border-radius: 12px;
  transition: 0.35s;
}

.highlight-item:hover {
  transform: translateY(-4px);
  background: rgba(124, 201, 110, 0.15);
  border-color: #7cc96e;
}

.highlight-item i {
  color: #7cc96e;
  font-size: 20px;
}

.highlight-item span {
  font-size: 14px;
  font-weight: 500;
}

.footer-btn {
  background: #7cc96e;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.35s;
}

.footer-btn:hover {
  background: #5da653;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(124, 201, 110, 0.35);
}

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

.footer-links a {
  color: #d9deea;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.footer-links a i {
  color: #7cc96e;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 8px;
}

.footer-links a:hover i {
  transform: translateX(4px);
}

.footer-follow-text {
  color: #d5dbe6;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 18px;
  transition: 0.35s;
}

.footer-social a:hover {
  background: #7cc96e;
  color: #fff;
  transform: translateY(-6px) rotate(8deg);
  box-shadow: 0 12px 30px rgba(124, 201, 110, 0.35);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 0;
}

.footer-bottom p {
  color: #cfd6e4;
  margin: 0;
  font-size: 15px;
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-top,
.footer-features,
.footer-newsletter,
.footer-payments,
.footer-certifications,
.footer-bottom {
  animation: floatUp 0.8s ease;
}

.footer ::-webkit-scrollbar {
  width: 8px;
}

.footer ::-webkit-scrollbar-thumb {
  background: #7cc96e;
  border-radius: 20px;
}

@media (max-width: 991.98px) {

  .footer-top{
    text-align:left;
  }

  .footer-title::after{
    left:0;
    transform:none;
  }

  .footer-links a{
    justify-content:flex-start;
  }

  .footer-social{
    justify-content:flex-start;
  }

  .footer-about{
    text-align:left;
  }

  .footer-btn{
    width:auto;
    display:inline-flex;
  }

}

@media (max-width:767.98px){

    .footer-top .col-md-4{
        width:100%;
        text-align:left;
        margin-bottom:30px;
    }

    .footer-follow-text{
        max-width:100%;
        margin:0 0 20px;
        text-align:left;
    }

    .footer-links a{
        justify-content:flex-start;
    }

    .footer-social{
        justify-content:flex-start;
    }

    .highlight-item{
        justify-content:flex-start;
    }

    .footer-bottom{
        text-align:center;
    }
}

@media (max-width: 576px) {
  .footer-about {
    font-size: 14px;
  }

  .footer-title {
    font-size: 20px;
  }

  .feature-box {
    padding: 18px;
  }

  .feature-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    font-size: 22px;
  }

  .footer-social a {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .footer-btn {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    gap:5px;
    
  }
}

@media (min-width: 1400px) {
  .footer .container {
    max-width: 1320px;
  }
}
