@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --light-green: #3c96a6;
  --light-green-30: rgba(83, 183, 197, 0.3);
  --light-green-10: rgba(83, 183, 197, 0.1);
  --logo-green: #3c96a6;
  --subtitle-blue: #4eb9c7;
  --testimonial-blue: #4eb9c710;
  --text-gray: #000000;
  --light-gray: #6b7280;
  --white: #ffffff;
  --light-bg: #f9fafb;
  --primary: #4eb9c7;
  --primary-dark: #3c96a6;
  --background-light: #f3f4f6;
  --text-dark: #1f2937;
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --radius: 8px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  background: var(--light-bg);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: start;
  align-items: center;
}

/* Top info bar */
.top-info-bar {
  background-color: var(--light-green);
  color: var(--white);
  font-size: 14px;
  padding: 8px 0;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
}

.top-info-bar .container {
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-info {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.contact-info i {
  margin-right: 11px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.2);
}

.social-icons a:hover {
  background: rgba(255, 255, 255, 0.3);
}

.social-icons .fab {
  color: var(--white);
  font-size: 16px;
}

/* Navbar */
.navbar {
  background: var(--white);
  position: fixed;
  top:49px;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  transition: all 0.3s ease;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo img {
  height: 86px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: height 0.3s ease;
}

/* Menu */
.menu {
  display: flex;
  align-items: center;
  gap:22px;
  margin-left:13%;
}

.menu a {
  text-decoration: none;
  color: #374151;
  font-size: 1.1rem;
  font-weight: 700;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.menu a:hover {
  color: var(--light-green);
}

.contact-btn {
  background: var(--light-green);
  color: var(--white) !important;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background 0.3s;
  text-decoration: none;
}

.contact-btn:hover {
  background: var(--logo-green);
}

/* Enhanced Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.dropdown-toggle i {
  font-size: 12px;
  transition: .3s;
}

.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

/* -------- Dropdown Menu -------- */
.dropdown-menu {
  position: absolute;
  top:143%;
  left:-350%;
  background: #fff;
  min-width: 900px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .3s;
  z-index: 1000;
  
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* -------- GRID -------- */
/* ------- GRID LAYOUT ------- */
.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
}

/* ------- EACH ITEM ------- */
.dropdown-grid a {
  display: flex;
  align-items: center;
  padding:6px 10px;
  gap: 14px;
  text-decoration: none;
  color: #222;
  border-bottom: 1px solid #f3f3f3;
  transition: all 0.25s ease;
}

/* ------ LAST ITEM BORDER FIX ------ */
.dropdown-grid a:nth-last-child(-n + 3) {
  border-bottom: none;
  /* last row no border */
}

/* ------- ICON STYLE ------- */
.dropdown-grid a i {
  font-size: 20px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #db4b45;
  transition: 0.25s ease;
}

/* ------- TEXT ------- */
.dropdown-grid h4 {
  font-size: 13px;
  /* clear visibility */
  font-weight: 700;
  /* bold but clean */
  margin: 0;
  line-height: 1.4;
  /* text chipkega nahi */
  letter-spacing: 0.3px;
  /* sharp text */
  color: #222;
  /* dark = readable */
  transition: 0.25s ease;
}
/* ------- HOVER EFFECT ------- */
.dropdown-grid a:hover {
  background: #f5faff;
  color: #0e8aa9;
  transform: translateX(3px);
}

.dropdown-grid a:hover i {
  color: #0e8aa9;
  transform: scale(1.15);
}
/* Mobile Menu */
.mobile-menu-btn {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #374151;
  display: none;
  padding: 5px;
  margin-left: 152px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding-bottom: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.show {
  display: flex;
}

.mobile-menu a {
  padding: 12px 20px;
  color: #374151;
  text-decoration: none;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-menu a:hover {
  background: #f3f4f6;
  color: var(--light-green);
}

/* ============ MOBILE CATEGORIES POPUP ============ */
.mobile-categories-menu {
  display: none;
  position: fixed;
  top:55px;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 1100;
  overflow-y: auto;
  padding: 20px;
  box-sizing: border-box;
}

.mobile-categories-menu.show {
  display: block;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.categories-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 2px solid var(--light-green);
  margin-bottom: 20px;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 10;
}

.categories-header h3 {
  color: var(--light-green);
  font-size: 1.5rem;
  margin: 0;
}

.close-categories {
  background: var(--light-green);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.close-categories:hover {
  background: var(--logo-green);
  transform: rotate(90deg);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 10px 0;
}

.categories-grid a {
  display: flex;
  align-items: center;
  padding: 15px;
  background: var(--light-green-10);
  border: 1px solid var(--light-green-30);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-gray);
  transition: all 0.3s ease;
  gap: 12px;
  min-height: 70px;
}

.categories-grid a:hover {
  background: var(--light-green-30);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.categories-grid a i {
  font-size: 1.5rem;
  color: var(--light-green);
  min-width: 30px;
  text-align: center;
}

.categories-grid a h4 {
  font-size: 0.9rem;
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
}

/* Backdrop for categories popup */
.categories-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 100vh; */
  /* background: rgba(0, 0, 0, 0.5); */
  z-index: 1099;
}

.categories-backdrop.show {
  display: block;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Mobile Dropdown */
.mobile-dropdown {
  position: relative;
  width: 100%;
  display: block;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

/* Toggle Button */
.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  font-size: 16px;
  font-weight: 600;
  color: #222;
  text-decoration: none;
}

.mobile-dropdown-toggle i {
  transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
  transform: rotate(180deg);
}

/* Fix for mobile dropdown menu */
.mobile-dropdown-menu {
  display: none;
  padding: 0;
  background: #f9f9f9;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  display: block;
  max-height: 300px;
  overflow-y: auto;
}

/* Menu Items */
.mobile-dropdown-menu a {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  font-size: 15px;
  color: #444;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.3s;
}

.mobile-dropdown-menu a:hover {
  background: #f7f9ff;
  color: #3c96a6;
}

.mobile-dropdown-menu a:last-child {
  border-bottom: none;
}

/* Ensure mobile menu stays on top when categories popup is open */
.mobile-menu.show {
  z-index: 1000;
}

/* ========= floating-icons ========= */
.floating-icons {
  position: fixed;
  z-index: 999;
}

.floating-icons .left-icons {
  position: fixed;
  left: 8px;
  bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.floating-icons .right-icons {
  position: fixed;
  right: 0;
  top: 25%;
  display: flex;
  align-items: center;
  transform: translateX(375px);
  transition: transform 0.5s ease-in-out;
}

.floating-icons .right-icons.show {
  transform: translateX(0);
}

.floating-icons .right-icons .get-a-call p {
  background-color: #eb4748;
  color: var(--white);
  font-weight: 700;
  border-radius: 20px 0px 0px 20px;
  padding: 10px;
  width: 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  writing-mode: vertical-rl;
  text-orientation: upright;
  cursor: pointer;
  margin: 0;
}

.floating-icons .right-icons .get-a-call-form {
  position: relative;
  width: 350px;
  background-color: var(--white);
  padding: 20px;
  border: 2px solid var(--light-green);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.floating-icons .right-icons .get-a-call-form .cancel {
  position: absolute;
  font-size: 20px;
  font-weight: 700;
  right: 15px;
  top: 10px;
  cursor: pointer;
  background: none;
  border: none;
}

.floating-icons .right-icons .get-a-call-form .faq-contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-icons .right-icons .get-a-call-form h2 {
  text-align: center;
  margin-bottom: 15px;
  color: var(--light-green);
}

.floating-icons .right-icons .get-a-call-form label {
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}

.floating-icons .right-icons .get-a-call-form input,
.floating-icons .right-icons .get-a-call-form textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
}

.floating-icons .right-icons .get-a-call-form textarea {
  resize: vertical;
  min-height: 80px;
}

.floating-icons a {
  text-decoration: none;
}

/* chat icon */
.chat-icon {
  display: flex;
  flex-direction: row-reverse !important;
  align-items: center;
  gap: 10px;
  padding: 0;
  cursor: pointer;
}

.floating-whatsapp {
  border-radius: 50%;
  height: 50px;
  width: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #25d366;
  border: 1px solid #ffffffa8;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

.floating-whatsapp i {
  font-size: 24px;
  color: var(--white);
}

.floating-call {
  border-radius: 50%;
  height: 50px;
  width: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #1d588d;
  border: 1px solid #ffffffa8;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.floating-call:hover {
  transform: scale(1.1);
}

.floating-call i {
  color: var(--white);
  font-size: 20px;
}

/* ============= Hero Section ============= */
.hero-section {
  color: var(--white);
  padding: 0;
  text-align: center;
  background-size: cover;
  background-position: center;
  margin-top: 131px;
  line-height: 0;
}

.hero-section img {
  width: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  max-height: 500px;
}

/* banner section */
.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 500px;
}

.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============ Scrolling Ticker Section ============ */
.ticker-wrap {
  margin-top: 0px;
  padding-top: 0;
  padding-bottom: 0;
  width: 100%;
  background-color: var(--light-green);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.ticker {
  height: 70px;
  display: inline-flex;
  align-items: center;
  animation: ticker-scroll 20s linear infinite;
}

.ticker-item {
  color: var(--white);
  font-weight: 500;
  font-size: 22px;
  padding: 12px 44px;
  display: inline-block;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ================= ABOUT US SECTION ================= */
.about-section {
  background-color: var(--light-bg);
  padding: 75px 20px;
}

.about-container {
  max-width: 1366px;
  margin: 0 auto;
}

.about-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-subtitle {
  color: var(--light-green);
  font-weight: 900;
  margin-bottom: 10px;
  font-size: 24px;
}

.about-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-gray);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-highlight {
  border-left: 4px solid var(--light-green);
  padding-left: 15px;
  margin-bottom: 20px;
}

.about-highlight p {
  font-size: 18px;
  font-weight: 400;
  color: #464a50;
  margin: 0;
}

.about-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-gray);
  margin-bottom: 30px;
}

/* Stats Bar */
.about-stats {
  background-color: var(--light-green);
  color: var(--white);
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  padding: 36px 30px;
  border-radius: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-item {
  min-width: 100px;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 17px;
  max-width: 144px;
  line-height: 22px;
  font-weight: 500;
}

/* Read More Button */
.about-btn {
  display: inline-block;
  background-color: var(--light-green);
  color: var(--white);
  padding: 12px 39px;
  border: 2px solid var(--light-green);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  text-align: center;
}

.about-btn:hover {
  color: var(--light-green);
  font-weight: 600;
  border: 2px solid var(--light-green);
  background-color: transparent;
}

/* ================= FEATURES / BENEFITS SECTION ================= */
.features-section {
  background-color: var(--light-bg);
  padding: 80px 20px;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px 20px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-green-10);
  color: var(--light-green);
  font-size: 28px;
}

.feature-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.feature-content p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* ================= WHY CHOOSE US SECTION ================= */
.why-choose-section {
  background-color: var(--light-bg);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.why-choose-bg {
  position: relative;
  width: 100%;
  padding: 100px 0 160px;
  overflow: hidden;
}

.why-choose-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.why-choose-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(33, 85, 94, 0.7);
  z-index: 1;
}

.why-choose-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  color: var(--white);
  margin-left: 80px;
  padding: 0 20px;
}

.why-choose-content .subtitle {
  font-size: 23px;
  font-weight: 900;
  color: var(--subtitle-blue);
  margin-bottom: 10px;
}

.why-choose-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}

.why-choose-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #e0f7f9;
}

.why-choose-grid {
  position: relative;
  z-index: 3;
  margin-top: -100px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.blue-border {
  border: 2px solid var(--light-green);
  border-radius: 16px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  background: var(--white);
}

.why-choose-card {
  background-color: var(--white);
  border-radius: 16px;
  text-align: center;
  padding: 40px 25px;
  transition: all 0.3s ease;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.why-choose-card i {
  font-size: 48px;
  color: var(--light-green);
  margin-bottom: 20px;
}

.why-choose-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}

.why-choose-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ================ Product at a glance section ================ */
.product-glance-section {
  width: 100%;
  background: var(--white);
  padding: 80px 0px;
}

.product-glance-section .container {
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
}

.product-glance-section h3 {
  color: var(--light-green);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-gray);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--light-gray);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.product-container {
  display:flex;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  width: 100%;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--light-green);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.product-image {
  /* background: #f3f4f6; */
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
}

.product-image img {
  max-height:180px;
  width: auto;
  object-fit:cover;
}

.product-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-gray);
  margin-bottom: 8px;
  min-height: 54px;
  display: flex;
  align-items: center;
}

.product-card p {
  font-size: 0.9rem;
  color: var(--light-gray);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.product-card p span {
  font-weight: 600;
  color: var(--text-gray);
}

.product-btn {
  background: var(--light-green);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s;
  font-size: 0.9rem;
}

.product-btn:hover {
  background: var(--logo-green);
}

/* ============= Product glance image ============= */
.product-glance-section-image {
  text-align: center;
  padding: 40px 0;
  background: var(--light-bg);
}

.product-glance-section-image img {
  width: 90%;
  max-width: 1200px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ============ Our image-slider ====================== */
.image-slider {
  padding: 5rem 0;
  background-color: var(--light-bg);
  text-align: center;
}

.image-slider .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 1400px;
}

.image-slider .container .arrow {
  background: var(--light-green);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
}

.image-slider .container .arrow:hover {
  background: var(--logo-green);
  transform: scale(1.1);
}

.imageSlider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  margin: 0 auto;
}

.imageSlides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.imageSlide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-slider-images {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 0 1rem;
}

.image-wrapper {
  position: relative;
  display: inline-block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.image-wrapper:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.image-wrapper img {
  width: 100%;
  height: 300px;
  display: block;
  object-fit: cover;
  border: none;
  border-radius: 16px;
}

/* =============== testimonials section =============== */
.testimonials {
  width: 100%;
  padding: 80px 0;
  background-color: var(--light-bg);
  text-align: center;
  overflow: hidden;
}

.testimonials .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  flex-direction: column;
}

.testimonials .section-header .subtitle {
  color: var(--light-green);
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
}

.testimonials .section-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
}

.testimonials .slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  width: 100%;
}

.testimonials .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: 1px solid #e0e0e0;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  color: #333;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.testimonials .arrow:hover {
  background-color: var(--light-green);
  color: var(--white);
}

.testimonials .arrow.left {
  left: -50px;
}

.testimonials .arrow.right {
  right: -50px;
}

.testimonials .slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transition: transform 0.6s ease-in-out;
  overflow: visible;
  width: 100%;
  max-width: 1000px;
}

.testimonials .card {
  background: #f0f0f0;
  border-radius: 12px;
  padding: 25px;
  width: 320px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: all 0.3s ease;
  transform: scale(0.9);
  opacity: 0.7;
  position: relative;
}

.testimonials .card.active {
  background-color: var(--testimonial-blue);
  border: 1px solid var(--light-green);
  transform: scale(1.1);
  opacity: 1;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  z-index: 3;
}

.testimonials .quote-icon {
  font-size: 24px;
  color: #000000;
  margin-bottom: 10px;
}

.testimonials .quote-icon-right {
  position: absolute;
  bottom: 20px;
  right: 25px;
  font-size: 24px;
  color: #000000;
}

.testimonials .text {
  font-size: 14px;
  color: #000000;
  line-height: 1.6;
  margin: 20px 0 40px;
}

.testimonials .profile {
  display: flex;
  align-items: center;
  border-top: 1px solid #ddd;
  padding-top: 15px;
}

.testimonials .profile img {
  height: 100px;
  width: 100px;
  object-fit: cover;

  border: 2px solid #000;
  /* 2px solid black border */
  /* border-radius: 50%; */
  /* circular image */
}
.testimonials .profile .info {
  margin-left: 15px;
}

.testimonials .profile h4 {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  margin-bottom: 5px;
}

.testimonials .profile p {
  font-size: 12px;
  color: #777;
  margin: 0;
}

/* === FAQ & CONTACT SECTION STYLES === */
.faq-contact-section {
  margin: 40px auto;
  border: 1px solid var(--light-green);
  border-radius: 20px;
  width: 90%;
  max-width: 1200px;
  padding: 4rem 2rem;
  background-color: #f0fcfd;
}

.faq-contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-contact-subtitle {
  color: var(--logo-green);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 18px;
}

.faq-contact-title {
  color: #1f2937;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.faq-contact-lozenges {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .faq-contact-lozenges {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.faq-contact-lozenge {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  font-weight: 500;
  color: #374151;
  border-left: 2px solid var(--light-green);
}

.faq-contact-lozenge i {
  color: var(--light-green);
  margin-right: 0.75rem;
  font-size: 20px;
}

.faq-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .faq-contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.accordion {
  background-color: var(--light-green-30);
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
  border-radius: 8px;
  margin-bottom: 6px;
  position: relative;
  font-weight: 600;
}

.accordion::after {
  content: "\002B";
  color: var(--logo-green);
  font-weight: 600;
  float: right;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.accordion.active::after {
  content: "\2212";
  color: var(--white);
}

.accordion.active,
.accordion:hover {
  background-color: var(--light-green);
  color: var(--white);
}

.accordion:hover::after {
  color: var(--white);
}

.panel {
  background-color: var(--light-green-10);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease-out, padding 0.3s ease;
  padding: 0 18px;
  border-radius: 0 0 8px 8px;
  margin-bottom: 10px;
}

.panel p {
  margin: 15px 0;
}

.faq-contact-viewall {
  text-align: center;
  margin-top: 1.5rem;
}

.faq-contact-viewall a {
  font-weight: 600;
  color: #1f2937;
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.faq-contact-viewall a:hover {
  color: var(--logo-green);
}

.faq-contact-form-wrapper {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--light-green);
}

.faq-contact-form-wrapper h3 {
  color: #1f2937;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.faq-contact-input-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .faq-contact-input-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.faq-contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.25rem;
}

.faq-contact-form label span {
  color: #ef4444;
}

.faq-contact-form input,
.faq-contact-form textarea {
  display: block;
  width: 100%;
  background-color: var(--light-green-10);
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: #374151;
  transition: all 0.2s ease;
  font-family: inherit;
}

.faq-contact-form textarea {
  margin-bottom: 1rem;
  resize: vertical;
  min-height: 120px;
}

.faq-contact-form input:focus,
.faq-contact-form textarea:focus {
  outline: none;
  border-color: var(--light-green);
  box-shadow: 0 0 0 2px var(--light-green-30);
}

.faq-contact-form button {
  width: 100%;
  background-color: var(--light-green);
  color: var(--white);
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  transition: background-color 0.2s ease;
  cursor: pointer;
  font-size: 1rem;
}

.faq-contact-form button:hover {
  background-color: var(--logo-green);
}

/* === FOOTER SECTION STYLES === */
.footer-section {
  width: 100%;
  background-color: var(--light-green);
  color: var(--white);
  padding-top: 4rem;
  padding-bottom: 1.5rem;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 2fr 1fr;
  }
}

.footer-about h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-about p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-contact div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-contact i {
  width: 1rem;
}

.footer-center-box {
  border: 2px solid rgb(255, 255, 255);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.footer-logo {
  display: inline-flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  width: 100%;
  max-width: 370px;
  height: auto;
}

.footer-social {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-social span {
  display: block;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer-social .social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.footer-social .social-icons a {
  background: rgba(255, 255, 255, 0.2);
}

.footer-links {
  border-top: 2px solid rgb(255 255 255);
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-categories h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color:white;
}

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

.footer-categories li {
  margin-bottom: 0.5rem;
}

.footer-categories a {
  font-size: 0.9rem;
  color: white;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-categories a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-viewall {
  font-weight: 600;
  margin-top: 0.75rem;
  display: inline-block;
}

.footer-bottom {
  border-top: 1px solid rgb(255 255 255);
  margin-top: 3rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgb(255 255 255);
}

.footer-bottom a {
  color: white;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* ============ RESPONSIVE STYLES ============ */

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }

  .menu {
    margin-left:4%;
    gap:14px;
  }

  .menu a {
    font-size: 1rem;
  }

  .dropdown-menu {
    min-width: 700px;
  }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }

  .menu {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .top-info-bar .container {
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }

  .contact-info {
    justify-content: center;
  }

  .hero-section {
    margin-top: 121px;
  }

  .slider {
    height: 400px;
  }

  .about-flex {
    flex-direction: column;
    text-align: center;
  }

  .about-highlight {
    margin: 0 auto 20px;
    border-left: none;
    border-top: 4px solid var(--logo-green);
    padding-top: 10px;
    padding-left: 0;
  }

  .about-stats {
    flex-direction: column;
    gap: 15px;
  }

  .about-title {
    font-size: 28px;
  }

  .about-text {
    font-size: 14px;
  }

  .why-choose-content {
    margin-left: 0;
    text-align: center;
  }

  .testimonials .arrow.left,
  .testimonials .arrow.right {
    display: none;
  }

  .floating-icons .right-icons .get-a-call-form {
    width: 300px;
  }

  .dropdown-menu {
    min-width: 500px;
  }

  .dropdown-grid {
    grid-template-columns: 1fr;
  }
  
  /* Categories grid adjustments */
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  .container {
    max-width: 540px;
    padding: 0 15px;
  }

  .logo img {
    height: 60px;
  }

  .hero-section {
    margin-top: 111px;
  }

  .slider {
    height: 300px;
  }

  .ticker-item {
    font-size: 16px;
    padding: 10px 25px;
  }

  .ticker {
    animation-duration: 25s;
  }

  .about-section {
    padding: 50px 15px;
  }

  .about-title {
    font-size: 24px;
  }

  .about-stats {
    padding: 20px 15px;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 14px;
  }

  .features-section {
    padding: 60px 15px;
  }

  .feature-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .feature-icon {
    margin-bottom: 12px;
  }

  .feature-content h3 {
    font-size: 18px;
  }

  .why-choose-bg {
    padding: 80px 0 140px;
  }

  .why-choose-content h2 {
    font-size: 28px;
  }

  .why-choose-grid {
    margin-top: -80px;
    padding: 0 15px 60px;
  }

  .why-choose-card {
    padding: 30px 20px;
  }

  .product-glance-section {
    padding: 60px 15px;
  }

  .product-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .image-slider {
    padding: 3rem 0;
  }

  .image-slider .container {
    flex-direction: column;
    gap: 20px;
  }

  .image-slider-images {
    flex-direction: column;
    align-items: center;
  }

  .image-wrapper {
    width: 100%;
    max-width: 100%;
  }

  .testimonials {
    padding: 60px 0;
  }

  .testimonials .slider {
    flex-direction: column;
    gap: 20px;
  }

  .testimonials .card {
    width: 100%;
    max-width: 400px;
  }

  .faq-contact-section {
    padding: 3rem 1.5rem;
    width: 95%;
  }

  .faq-contact-title {
    font-size: 1.5rem;
  }

  .footer-section {
    padding-top: 3rem;
  }

  .footer-center-box {
    padding: 1.5rem;
  }

  .footer-logo img {
    max-width: 280px;
  }

  .floating-icons .left-icons {
    left: 5px;
    bottom: 5px;
  }

  .floating-icons .right-icons .get-a-call-form {
    width: 280px;
    padding: 15px;
  }

  .dropdown-menu {
    min-width: 300px;
    left: -100px;
  }
  
  /* Categories grid adjustments */
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .categories-grid a {
    padding: 12px;
    min-height: 60px;
  }
  
  .categories-grid a h4 {
    font-size: 0.85rem;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .container {
    padding: 0 10px;
  }

  .top-info-bar {
    font-size: 16px;
    height: 53px;
  }

  .contact-info {
    gap: 15px;
    height: 10px;
  }

  .social-icons {
    gap: 10px;
  }

  .social-icons a {
    width: 28px;
    height: 28px;
  }

  .logo img {
    height: 50px;
  }

  .hero-section {
    margin-top: 101px;
  }

  .slider {
    height: 250px;
  }

  .ticker-item {
    font-size: 14px;
    padding: 8px 20px;
  }

  .ticker {
    animation-duration: 30s;
    height: 50px;
  }

  .about-section {
    padding: 40px 10px;
  }

  .about-subtitle {
    font-size: 20px;
  }

  .about-title {
    font-size: 22px;
  }

  .about-highlight p {
    font-size: 16px;
  }

  .about-stats {
    padding: 15px 10px;
    border-radius: 15px;
  }

  .stat-item {
    min-width: 80px;
  }

  .stat-number {
    font-size: 20px;
  }

  .stat-label {
    font-size: 12px;
    max-width: 120px;
  }

  .about-btn {
    padding: 10px 30px;
    font-size: 14px;
  }

  .features-section {
    padding: 50px 10px;
  }

  .features-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-box {
    padding: 20px 15px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .why-choose-bg {
    padding: 60px 0 120px;
  }

  .why-choose-content {
    padding: 0 15px;
  }

  .why-choose-content .subtitle {
    font-size: 18px;
  }

  .why-choose-content h2 {
    font-size: 24px;
  }

  .why-choose-content p {
    font-size: 14px;
  }

  .why-choose-grid {
    margin-top: -60px;
    padding: 0 10px 40px;
    gap: 15px;
  }

  .why-choose-card {
    padding: 20px 15px;
  }

  .why-choose-card i {
    font-size: 36px;
  }

  .why-choose-card h3 {
    font-size: 18px;
  }

  .why-choose-card p {
    font-size: 13px;
  }

  .product-glance-section {
    padding: 40px 10px;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .section-header h2 {
    font-size: 1.25rem;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  .product-card {
    padding: 15px;
  }

  .product-image {
    padding: 15px;
    height: 120px;
  }

  .product-image img {
    max-height: 80px;
  }

  .product-card h3 {
    font-size: 1rem;
    min-height: 48px;
  }

  .product-card p {
    font-size: 0.85rem;
  }

  .product-btn {
    padding: 10px 15px;
    font-size: 0.85rem;
  }

  .image-slider {
    padding: 2rem 0;
  }

  .image-slider .container .arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .image-wrapper img {
    height: 200px;
  }

  .testimonials {
    padding: 40px 0;
  }

  .testimonials .section-header h2 {
    font-size: 1.5rem;
  }

  .testimonials .card {
    padding: 20px;
  }

  .testimonials .text {
    margin: 15px 0 30px;
    font-size: 13px;
  }

  .faq-contact-section {
    padding: 2rem 1rem;
    margin: 20px auto;
  }

  .faq-contact-title {
    font-size: 1.25rem;
  }

  .faq-contact-lozenge {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .faq-contact-form-wrapper {
    padding: 1.5rem;
  }

  .accordion {
    padding: 15px;
    font-size: 14px;
  }

  .footer-section {
    padding-top: 2rem;
  }

  .footer-center-box {
    padding: 1rem;
  }

  .footer-logo img {
    max-width: 220px;
  }

  .footer-links {
    gap: 1rem;
    font-size: 0.85rem;
  }

  .footer-categories h3,
  .footer-about h3 {
    font-size: 1.25rem;
    color:white;
  }

  .footer-categories a,
  .footer-about p {
    font-size: 0.85rem;
  }

  .floating-whatsapp,
  .floating-call {
    height: 45px;
    width: 45px;
  }

  .floating-whatsapp i {
    font-size: 20px;
  }

  .floating-call i {
    font-size: 18px;
  }

  .floating-icons .right-icons .get-a-call-form {
    width: 260px;
    padding: 12px;
  }

  .dropdown-menu {
    min-width: 250px;
    left: -150px;
  }
  
  /* Categories grid adjustments */
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .categories-grid a {
    padding: 10px;
    min-height: 55px;
  }
  
  .categories-grid a h4 {
    font-size: 0.8rem;
  }
  
  .categories-grid a i {
    font-size: 1.2rem;
  }
  
    .categories-header h3 {
      font-size: 1.2rem;
      text-align: center;
    }
  .close-categories {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

/* Print styles */
@media print {

  .top-info-bar,
  .navbar,
  .floating-icons,
  .hero-section,
  .ticker-wrap,
  .mobile-categories-menu,
  .categories-backdrop {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
    font-size: 12pt;
  }

  .container {
    max-width: 100% !important;
    padding: 0 !important;
  }

  a {
    color: black !important;
    text-decoration: underline !important;
  }
}

/* Responsive adjustments for categories grid */
@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .categories-grid a {
    padding: 12px;
    min-height: 60px;
  }
  
  .categories-grid a h4 {
    font-size: 0.85rem;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 769px) {
  .mobile-categories-menu {
    display: none !important;
  }
  
  .categories-backdrop {
    display: none !important;
  }
}

/* Improve scrolling for categories popup */
.mobile-categories-menu {
  -webkit-overflow-scrolling: touch;
}

/* Add some padding at bottom for better scrolling */
.categories-grid {
  padding-bottom:204px;
}