/* Import Google Font 'Outfit' */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary-green: #0d094a;
  /* Dark forest green for navbar & theme */
  --accent-green: #f1592a;
  /* Bright lime green for topbar, active states, borders */
  --accent-yellow: #b8e655;
  /* Accent yellow-green for hero headline */
  --accent-hover: #7eb338;
  /* Darker lime green for hover states */
  --white: #ffffff;
  --text-dark: #fff;
  /* Text color inside topbar */
  --whatsapp-color: #25d366;
  /* WhatsApp official color */
  --font-family: 'Outfit', sans-serif;
}

/* Global Styles */
body {
  font-family: var(--font-family);
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* 1. TOPBAR STYLING */
.topbar {
  background-color: var(--accent-green);
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 0;
  transition: all 0.3s ease;
}

.topbar a {
  color: var(--text-dark);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.topbar a:hover {
  opacity: 0.8;
}

.topbar .contact-info i {
  margin-right: 6px;
  font-size: 15px;
}

.topbar .social-links a {
  margin-left: 12px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
}

/* 2. NAVBAR STYLING */
.navbar-custom {
  background-color: var(--primary-green) !important;
  padding: 12px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.navbar-custom .nav-link {
  color: var(--white) !important;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 16px !important;
  transition: color 0.3s ease;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--accent-green) !important;
}

/* Dropdown styling */
.navbar-custom .dropdown-menu {
  background-color: var(--primary-green);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  margin-top: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.navbar-custom .dropdown-item {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  transition: background-color 0.2s, color 0.2s;
}

.navbar-custom .dropdown-item:hover {
  background-color: var(--accent-green);
  color: var(--text-dark);
}

/* Custom buttons */
.btn-brochure {
  color: var(--accent-green) !important;
  border: 1.5px solid var(--accent-green);
  background-color: transparent;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 8px 24px;
  border-radius: 30px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-brochure:hover {
  background-color: var(--accent-green);
  color: var(--primary-green) !important;
  box-shadow: 0 4px 12px rgba(140, 198, 63, 0.3);
  transform: translateY(-1px);
}

/* Navbar hamburger toggler */
.navbar-custom .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.25);
  padding: 6px 10px;
}

.navbar-custom .navbar-toggler:focus {
  box-shadow: none;
  border-color: var(--accent-green);
}

/* 3. HERO / BELOW HEADER SECTION */
.hero-section {
  position: relative;
  background-image: url('https://www.b2btemplate.store/rishavexports/images/banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
  color: var(--white);
}

/* Dark gradient overlay to ensure readability */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(16, 94, 65, 0.877) 0%,
      rgba(16, 94, 65, 0.38) 60%,
      rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.25;
  color: #f1592a;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease-out forwards;
}

.btn-know-more {
  display: inline-block;
  color: var(--accent-green);
  border: 2px solid var(--accent-green);
  background-color: rgba(16, 94, 66, 0.6);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 12px 36px;
  border-radius: 30px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out forwards;
  backdrop-filter: blur(5px);
}

.btn-know-more:hover {
  background-color: var(--accent-green);
  color: var(--primary-green);
  box-shadow: 0 6px 18px rgba(140, 198, 63, 0.4);
  transform: translateY(-2px);
}

/* 4. ABOUT KORE AGRO SECTION */
.bg-yellow-custom {
  background-color: #f7d33b;
  /* Vibrant warm yellow matching the image */
}

.about-text-content {
  padding: 40px 10px;
}

.about-subtitle {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 24px;
}

.about-description {
  font-size: 18px;
  line-height: 1.65;
  color: #3f4e46;
  font-weight: 500;
  margin-bottom: 24px;
}

.about-tagline {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-green);
  margin-top: 15px;
}

.about-image-wrapper {
  height: 100%;
  min-height: 450px;
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Adjust rows to match on large screen */
@media (min-width: 992px) {
  .about-section .row {
    display: flex;
  }

  .about-section .col-lg-6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .about-image-wrapper {
    min-height: 100%;
  }
}

/* 5. PRODUCTS SECTION */
.products-section {
  background-color: #ffeff1;
  /* Soft pastel green-yellow background */
  padding: 80px 0;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: #0b1a13;
  /* Very dark slate/green */
  margin-bottom: 10px;
}

.title-divider {
  position: relative;
  width: 150px;
  height: 1.5px;
  background-color: #d8c187;
  margin: 15px auto 45px;
}

.title-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: #d8c187;
  transform: translate(-50%, -50%) rotate(45deg);
}

.product-card {
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-image-container {
  overflow: hidden;
  border-radius: 24px;
  /* Rounded corners as shown in design */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  aspect-ratio: 1 / 1;
  /* Beautiful square container */
  max-width: 320px;
  margin: 0 auto;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img {
  transform: scale(1.06);
}

.product-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-green);
  margin-top: 22px;
  margin-bottom: 12px;
}

.product-text {
  font-size: 15px;
  color: #4a5c53;
  line-height: 1.6;
  max-width: 290px;
  margin: 0 auto 22px;
  font-weight: 500;
}

.btn-read-more {
  background-color: var(--primary-green);
  color: var(--white) !important;
  border: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 10px 32px;
  border-radius: 30px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(16, 94, 66, 0.15);
  transition: all 0.3s ease;
}

.btn-read-more:hover {
  background-color: var(--accent-hover);
  box-shadow: 0 6px 15px rgba(16, 94, 66, 0.3);
  transform: translateY(-1px);
}

/* 6. CATEGORIES GRID SECTION */
.categories-grid-section {
  background-color: #f6ffd1;
}

.category-card {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1.5px solid #f6ffd1;
  /* Separation line matching background color */
  text-decoration: none;
}

.category-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.48);
  /* Semi-transparent dark overlay */
  z-index: 2;
  transition: background-color 0.4s ease;
}

.category-title {
  position: relative;
  z-index: 3;
  color: #eefc9f;
  /* Vibrant yellow-green text */
  font-size: 25px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  padding: 0 20px;
  transition: color 0.3s ease;
}

/* Hover effects */
.category-card:hover .category-bg {
  transform: scale(1.08);
}

.category-card:hover .category-overlay {
  background-color: rgba(16, 94, 66, 0.7);
  /* Dark green tint on hover */
}

.category-card:hover .category-title {
  color: var(--white);
}

/* 7. WHY CHOOSE US SECTION */
.why-choose-us-section {
  position: relative;
  overflow: visible;
  background-color: #f6ffd1;
}

.three-start-logo {
  height: 150px;
  width: 150px;
}

.why-left-col {
  position: relative;
  min-height: 520px;
  background-image: url('chilli-harvesting_1.jpg');
  background-size: cover;
  background-position: center;
}

/* Green Elliptical Overlay */
.why-oval-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78%;
  height: 60%;
  background-color: rgb(118 28 20);
  /* Transparent green */
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1.5px solid rgba(216, 193, 135, 0.5);
  /* Semi-transparent gold border */
}

.why-oval-title {
  color: #eefc9f;
  /* Bright yellow-green */
  font-size: clamp(20px, 3.5vw, 34px);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px;
}

/* Small divider inside the oval */
.why-oval-divider {
  width: 70px;
  height: 1.5px;
  background-color: #d8c187;
  position: relative;
}

.why-oval-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background-color: #d8c187;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* Government Recognition Floating Badge */
.govt-badge-wrapper {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease;
}

.govt-badge-wrapper:hover {
  transform: translateX(-50%) scale(1.05);
}

.bg-perfect-choice {
  background-color: #cbd85d;
  /* Solid green-yellow background */
  padding: 80px 40px 60px;
}

/* Grid of features */
.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
  transition: transform 0.2s ease;
}

.feature-item:hover {
  transform: translateX(4px);
}

.feature-icon-wrapper {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  background-color: var(--primary-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 10px rgba(16, 94, 66, 0.2);
}

.feature-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-green);
  margin: 0;
  line-height: 1.35;
}

/* Setup display flex row on desktop for why-choose-us */
@media (min-width: 992px) {
  .why-choose-us-section .row {
    display: flex;
  }

  .why-left-col,
  .bg-perfect-choice {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .why-left-col {
    min-height: 100%;
  }
}

@media (max-width: 991.98px) {
  .why-left-col {
    min-height: 400px;
  }

  .why-oval-overlay {
    width: 85%;
    height: 70%;
  }

  .bg-perfect-choice {
    padding: 60px 20px 40px;
  }
}

/* 8. GROWTH TRAJECTORY TABLE SECTION */
.growth-trajectory-section {
  background-color: #cbd85d;
  /* Olive yellow-green matching choose us background */
  padding: 80px 0;
}

.growth-title {
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 800;
  color: #0b1a13;
  margin-bottom: 50px;
  line-height: 1.3;
}

.growth-table-wrapper {
  background-color: transparent;
  border-radius: 12px;
}

.growth-table {
  width: 100%;
  margin-bottom: 0;
  color: var(--primary-green);
  border-collapse: collapse;
}

.growth-table th,
.growth-table td {
  padding: 16px 14px;
  vertical-align: middle;
  border: 1px solid rgba(16, 94, 66, 0.25);
  font-size: 15px;
}

/* Year Headers Row */
.growth-table thead th {
  font-weight: 800;
  color: var(--primary-green);
  text-align: center;
  border-bottom: 2px solid rgba(16, 94, 66, 0.4);
}

/* Rowspan Group Headers Column */
.growth-group-header {
  color: #e94870 !important;
  /* Bold salmon pink */
  font-weight: 800;
  font-size: 15px;
  text-align: left;
  max-width: 180px;
  line-height: 1.4;
  border-right: 2px solid rgba(16, 94, 66, 0.3);
}

/* Metric / Indicator Name Column */
.growth-metric-name {
  font-weight: 700;
  color: var(--primary-green);
  text-align: left;
  min-width: 250px;
}

/* Data Values columns */
.growth-value {
  text-align: center;
  font-weight: 600;
  color: #0c3d2a;
}

/* Hover effect on table rows */
.growth-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

/* Custom Responsive Scrollbar styling */
.table-responsive::-webkit-scrollbar {
  height: 8px;
}

.table-responsive::-webkit-scrollbar-track {
  background: rgba(16, 94, 66, 0.08);
  border-radius: 10px;
}

.table-responsive::-webkit-scrollbar-thumb {
  background: var(--primary-green);
  border-radius: 10px;
}

.table-responsive::-webkit-scrollbar-thumb:hover {
  background: var(--accent-hover);
}

/* 9. PROOF OF EXCELLENCE SECTION */
.proof-excellence-section {
  background-color: #f1e4bd;
  padding: 60px 0 80px;
}

.cert-card {
  background-color: #f8da55;
  border-radius: 15px;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 15px;
  color: #105e42;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  margin-top: 10px;
  margin-bottom: 10px;
}

.cert-card:hover {
  transform: translateY(-5px);
}

.cert-icon {
  font-size: 45px;
  margin-bottom: 8px;
  line-height: 1;
}

.cert-title {
  font-weight: 800;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.cert-sub {
  font-weight: 600;
  font-size: 13px;
  margin-top: 4px;
}

.fssai-text {
  font-family: 'Times New Roman', serif;
  font-size: 45px;
  font-weight: bold;
  font-style: italic;
  color: #d13b3b;
}

/* Owl Carousel Custom Navigation */
.excellence-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.excellence-carousel .owl-nav button.owl-prev,
.excellence-carousel .owl-nav button.owl-next {
  width: 45px !important;
  height: 45px !important;
  background-color: var(--accent-green) !important;
  color: white !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 24px !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease;
  pointer-events: auto;
  position: absolute;
}

.excellence-carousel .owl-nav button.owl-prev:hover,
.excellence-carousel .owl-nav button.owl-next:hover {
  background-color: var(--primary-green) !important;
}

.excellence-carousel .owl-nav button.owl-prev {
  left: -40px;
}

.excellence-carousel .owl-nav button.owl-next {
  right: -40px;
}

/* 10. FOOTER SECTION */
.site-footer {
  background-color: #12144b;
  /* Distinct shade of green */
  color: #e0e0e0;
  position: relative;
  overflow: hidden;
  font-family: 'Outfit', 'Helvetica', sans-serif;
}

.footer-decor {
  position: absolute;
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.9;
}

/* Placeholder for decorative elements */
.footer-decor-top-left {
  top: -20px;
  left: 10%;
  width: 100px;
  height: 100px;
}

.footer-decor-top-right {
  top: 20px;
  right: 15%;
  width: 120px;
  height: 120px;
}

.footer-decor-bottom-center {
  bottom: 0;
  left: 45%;
  width: 150px;
  height: 150px;
}

.footer-logo svg {
  width: 180px;
  height: auto;
}

.footer-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-contact-list a:hover {
  color: var(--accent-green);
}

.footer-contact-list i {
  color: var(--accent-green);
  font-size: 16px;
}

.qr-box {
  background-color: white;
  padding: 4px;
  border-radius: 4px;
  display: inline-block;
}

.footer-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--accent-green);
  color: #105e42;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(140, 198, 63, 0.4);
  background-color: #f7d33b;
}

.footer-heading {
  color: var(--accent-green);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-divider {
  width: 30px;
  height: 2px;
  background-color: #d8c187;
  position: relative;
  margin-bottom: 25px;
}

.footer-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  background-color: #d8c187;
  transform: translate(-50%, -50%) rotate(45deg);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent-green);
  padding-left: 5px;
}

.office-list li {
  margin-bottom: 20px;
}

.office-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #d8c187;
  font-size: 16px;
}

.office-details h5 {
  color: var(--accent-green);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
}

.office-details p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin-bottom: 0;
}

.footer-bottom {
  background-color: #f1592a;
  padding: 15px 0;
  color: #333;
}

.copyright-text,
.by-text {
  font-size: 13px;
  font-weight: 600;
  color: #0b1a13;
}

.agency-link {
  color: #e94870;
  text-decoration: none;
  transition: color 0.3s ease;
}

.agency-link:hover {
  color: #d13b3b;
  text-decoration: underline;
}

/* 11. WHATSAPP WIDGET */
position: fixed;
bottom: 30px;
right: 30px;
z-index: 999;
display: flex;
align-items: center;
justify-content: center;
width: 60px;
height: 60px;
background-color: var(--whatsapp-color);
color: var(--white);
border-radius: 50%;
font-size: 32px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
transition: all 0.3s ease;
text-decoration: none;
}

.whatsapp-widget:hover {
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Ripple/pulse effect for WhatsApp */
.whatsapp-widget::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--whatsapp-color);
  border-radius: 50%;
  z-index: -1;
  animation: whatsappPulse 2s infinite;
  opacity: 0;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* 12. RESPONSIVE MEDIA QUERIES */

/* Large Desktop split layout helper */
@media (min-width: 992px) {
  .navbar-collapse {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
  }

  /* Dropdown hover triggers on desktop */
  .navbar-custom .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* Mobile & Tablet Adaptations */
@media (max-width: 991.98px) {
  .topbar {
    font-size: 13px;
    text-align: center;
  }

  .topbar .slogan {
    display: none;
    /* Hide slogan to save space on mobile */
  }

  .topbar .contact-info,
  .topbar .social-links {
    justify-content: center;
  }

  .navbar-custom {
    padding: 10px 0;
  }

  .navbar-custom .navbar-nav {
    text-align: center;
    padding: 15px 0 5px;
  }

  .navbar-custom .nav-link {
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .navbar-custom .dropdown-menu {
    background-color: rgba(16, 94, 66, 0.85);
    border: none;
    box-shadow: none;
    margin-top: 0;
  }

  .navbar-custom .dropdown-item {
    text-align: center;
    padding: 8px 0;
  }

  .navbar-custom .btn-brochure {
    display: inline-block;
    margin-top: 15px;
    width: 80%;
  }

  .hero-section {
    min-height: 60vh;
    padding: 60px 0;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
  }

  .about-image-wrapper {
    min-height: 350px;
  }

  .whatsapp-widget {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 26px;
  }
}

@media (max-width: 575.98px) {
  .topbar .social-links {
    margin-top: 5px;
  }
}

.gallery-section {
  background-color: #fffde7;
}

.g-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  display: block;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.g-item:hover img {
  transform: scale(1.02);
}

/* Ensures the right-side layout stretches uniformly to match the left image height */
@media (min-width: 992px) {
  .match-height {
    height: 100%;
  }

  .flex-fill-item {
    min-height: 0;
  }
}

.carousel-item {
  height: 500px;
  /* Adjust height as needed */
  min-height: 300px;
  background: #333;
}

.carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  opacity: 0.7;
  /* Darkens image slightly to make text pop */
}

.carousel-caption {
  bottom: 35%;
  /* Centers the text vertically a bit more */
}