/* General Styling */
body {
    font-family: 'Raleway', sans-serif;
    margin: 0;
    padding: 0;
}

/* Responsive Navbar */
.navbar {
    background-color: white!important;
    padding: 5px 15px;
}

.navbar-nav .nav-item {
    margin-right: 30px;
}

.navbar-nav .nav-item .nav-link {
    font-weight: 600;
    color: #ED1C24 !important;
    text-decoration: none;
    padding-bottom: 5px;
}

.navbar-nav .nav-item .nav-link:hover {
    color: black!important;
    transition: color 0.3s ease-in-out;
}

/* Logo Resizing */
.navbar-brand img {
    width: 180px;
    height: 65px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .navbar-nav .nav-item {
        margin-right: 15px;
    }

    .navbar-brand img {
        width: 120px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px;
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-item {
        margin: 10px 0;
    }

    .navbar-brand img {
        width: 100px;
    }
}

@media (max-width: 480px) {
    .navbar-brand img {
        width: 90px;
    }

    .navbar-nav .nav-item .nav-link {
        font-size: 14px;
    }
}
/* Dropdown Background and Styling */
.dropdown-menu {
    background-color: #fff !important; /* white background */
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 1000;
}

/* Dropdown links styling */
.dropdown-item {
    color: #ED1C24 !important;
    font-weight: 500;
    padding: 8px 20px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: black !important;
}
@media (max-width: 768px) {
    .dropdown-menu {
        background-color: #ffffff !important;
        border: none;
        box-shadow: none;
    }

    .dropdown-item {
        padding: 10px 15px;
        text-align: center;
    }
}

.hero-section {
  background: url('../images/farm1c.jpg') center center/cover no-repeat;
  min-height: 100vh; /* Ensures full screen height */
  height: 100vh ;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden; /* Prevents scrollbars if any */
}

  .hero-section .container {
    z-index: 2;
    position: relative;
  }
  
  .hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
  }
  
  .hero-section p {
    font-size: 1.5rem;
    margin-top: 1rem;
  }
  
  .fade-in {
    animation: fadeIn 2s ease-in-out;
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Styling */
  @media (max-width: 768px) {
    .hero-section {
      height: 100vh;
    }
  
    .hero-section h1 {
      font-size: 2.2rem;
    }
  
    .hero-section p {
      font-size: 1.1rem;
    }
  }
  
  @media (max-width: 480px) {
    .hero-section {
      height: 60vh;
      padding: 0 10px;
    }
  
    .hero-section h1 {
      font-size: 1.8rem;
    }
  
    .hero-section p {
      font-size: 1rem;
    }
  }
/* Common style for looping text */
.loop-h1, .loop-p {
  position: absolute;
  width: 100%;
  opacity: 0;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  transition: opacity 0.5s ease;
}

/* Show h1 in first half of the loop (0% to 50%) */
.loop-h1 {
  animation-name: showH1;
}

/* Show p in second half of the loop (50% to 100%) */
.loop-p {
  animation-name: showP;
}

@keyframes showH1 {
  0%, 45% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes showP {
  0%, 45% { opacity: 0; }
  50%, 95% { opacity: 1; }
  100% { opacity: 0; }
}

  
  .about-section {
    background: #fff;
    color: black;
    padding-top: 40px;
  }
  
  .about-heading {
    font-size: 1.8rem;
    font-weight: bold;
    border-left: 4px solid black;
    padding-left: 10px;
  }
  
  .about-btn {
    background-color: #fff;
    color: #ED1C24;
    border: 2px solid #ED1C24;
    transition: all 0.3s ease-in-out;
  }
  
  .about-btn:hover {
    background-color: #ED1C24;
    color: #fff;
  }
  
  .image-container {
    transition: transform 0.4s ease;
  }
  
  .image-container:hover {
    transform: scale(1.05);
  }
  /* Rectangle Image Style */
.rectangular-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 10px; /* Slightly rounded corners */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  /* Hover Zoom & Shadow Effect */
  .rectangular-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  }
  
  
  .director-info p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  /* Media Queries */
  @media (max-width: 768px) {
    .about-heading {
      font-size: 1.6rem;
    }
  
    .about-btn {
      padding: 10px 20px;
      font-size: 1rem;
    }
  
    .rectangular-image img {
      width: 200px;
      height: 200px;
    }
  
    .director-info p {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 576px) {
    .about-heading {
      font-size: 1.4rem;
    }
  
    .about-btn {
      width: 100%;
      padding: 12px 0;
      font-size: 1.1rem;
    }
  
    .rectangular-image img {
      width: 180px;
      height: 180px;
    }
  
    .director-info p {
      font-size: 1.1rem;
    }
  
    .about-section {
      padding-top: 30px;
    }
  }
  

  .our-products h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
  }
  
  .our-products p {
    font-size: 1.2rem;
    color: #555;
  }
  
  .product-image {
    position: relative;
  }
  
  .product-image img {
    border-radius: 8px;
    width: 100%;
    transition: transform 0.3s ease-in-out;
  }
  
  .product-image img:hover {
    transform: scale(1.05);
  }
  
  .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Light dark overlay by default */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1; /* Always visible */
    transition: background-color 0.3s ease; /* Background color transition on hover */
  }
  
  .image-overlay p {
    font-size: 1.5rem;
    color: #fff;
    font-weight: bold;
  }
  
  .product-image:hover .image-overlay {
    background-color: #ED1C24(0, 128, 0, 0.7); /* Green background on hover */
  }
  
/* Add space between images in the row */
@media (max-width: 991px) {
    .product-image {
      margin-bottom: 15px; /* Space between images in the same row */
    }
  
    .row {
      display: flex;
      flex-wrap: wrap;
      gap: 15px; /* Space between columns in the row */
    }
  
    .col-12.col-md-3 {
      margin-bottom: 15px; /* Add margin for responsive layout */
    }
  }
  
  /* Further adjustments for smaller screens if needed */
  @media (max-width: 576px) {
    .row {
      gap: 10px; /* Adjust gap for small devices */
    }
  }

  /* Fade In */
.fade-in {
    animation: fadeIn 1.5s ease-in-out both;
  }
  
  /* Fade Out */
  .fade-out {
    animation: fadeOut 1.5s ease-in-out both;
  }
  
  /* Zoom In */
  .zoom-in {
    animation: zoomIn 1.5s ease-in-out both;
  }
  
  /* Keyframes */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-20px); }
  }
  
  @keyframes zoomIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
  }

  ul {
    list-style-type: disc; /* Classic dot bullets */
    padding-left: 20px; /* spacing for bullets */
  }
  
  ul li {
    margin: 5px 0;
    font-size: 16px;
  }
  
  ul li a {
    text-decoration: none;
    color:black;
  }
  
  ul li a:hover {
    text-decoration: underline;
  }

  .products-container {
    background-image: url('images/farm2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 90vh;
    width: 100%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  @media (max-width: 991px) {
    .products-container {
      height: 80vh;
      background-attachment: scroll;
    }
    .products-container h2 {
      font-size: 2.5rem;
    }
    .products-container p {
      font-size: 1rem;
    }
  }

  @media (max-width: 576px) {
    .products-container {
      height: 60vh;
      background-attachment: scroll;
    }
    .products-container h2 {
      font-size: 2rem;
    }
    .products-container p {
      font-size: 0.9rem;
    }
  }

  .product-categories h2 {
    font-weight: normal;
    font-size: 2.5rem;
  }

  .product-categories .bold-text {
    font-weight: 700;
  }

  .product-categories p {
    color: #666;
    max-width: 700px;
    margin: 10px auto 0;
    font-size: 1rem;
  }
  .product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  
  .product-card img {
    max-height: 250px;
    width: auto;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
  }
  
  .product-title {
    font-size: 16px;
    font-weight: 600;
    margin-top: 12px;
    color: #333;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  }
  
  /* Gradient heading */
  .text-gradient {
    background: linear-gradient(
      90deg,
      rgba(237, 28, 36, 1) 0%,
      rgba(0, 0, 0, 1) 50%,
      rgba(237, 28, 36, 1) 100%
    );
   -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }
  
  /* Info box */
  .info-box {
    background: #fff;
    border-left: 6px solid #ED1C24;
    transition: box-shadow 0.3s ease;
    border-radius: 1rem;
  }
  .info-box:hover {
    box-shadow: 0 0 25px rgba(237, 28, 36, 0.3);
  }
  
  .info-box p {
    font-size: 1.05rem;
    line-height: 1.7;
  }
  
  /* Highlight box */
  .highlight-box {
    background-color: #f9f2f2;
    border-left: 4px solid #ED1C24;
    font-size: 1rem;
    color: #333;
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    .text-gradient {
      font-size: 1.5rem;
    }
    .info-box p,
    .highlight-box {
      font-size: 0.95rem;
    }
  }

/*
	.but{
		background-color: #ED1C24;
		padding:0.5rem 1rem;
		border-radius:20px;
		color:#fff;
		}
	.but:hover{color:#fff;}
	
	.doct-profile{text-align:center;}
	.doct-profile img{
		border:10px solid #ED1C24;
		border-radius:20%;
		-moz-border-radius:50%;
		-webkit-border-radius:50%;
		transition:all .2s ease-in-out;
		-webkit-transition:all .2s ease-in-out;
		-moz-transition:all .2s ease-in-out;
	}
	.doct-profile img:hover{
		border:10px solid ;
		border-radius:0%;
		-moz-border-radius:0%;
		-webkit-border-radius:0%;
		transition:all .4s ease-in-out;
		-webkit-transition:all .4s ease-in-out;
		-moz-transition:all .4s ease-in-out;
		}
*/
/*
.doct-profile {
  text-align: center;
}

.img-container {
  position: relative;
  display: inline-block;
  width: 220px;
  height: 220px;
  overflow: hidden;
  border-radius: 50%;
  transition: border-radius 0.4s ease-in-out;
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 2px solid #ED1C24; 
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}

.img-container:hover img {
  border-radius: 0%;
}

.img-container:hover {
  border-radius: 0%;
}


.img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.4s ease;
  pointer-events: none; 
}

.img-container:hover .img-overlay {
  opacity: 1;
}


.overlay-text {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 600;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7); 
}
  */

  .doct-profile {
    text-align: center;
  }
  
  .img-container {
    position: relative;
    display: inline-block;
    width: 280px;
    height: 280px;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid black; /* Added black border */
    transition: border-radius 0.4s ease-in-out;
  }
  
  .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
   
  }
  
  .img-container:hover img {
    border-radius: 0%;
    opacity: 0.6; /* Decrease opacity slightly on hover */
  }
  
  .img-container:hover {
    border-radius: 0%;
  }
  
  .img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center; /* vertical centering */
    justify-content: center; /* horizontal centering */
    transition: background-color 0.4s ease-in-out;
    background-color: rgba(0, 0, 0, 0); /* transparent before hover */
    border-radius: inherit;
  }
  
  .img-container:hover .img-overlay {
    background-color: rgba(0, 0, 0, 0.2); /* light black transparent on hover */
  }
 
  .overlay-text {
    color: black;
    font-size: 1.8rem;
    font-weight: bold;
    z-index: 2;
    text-align: center;
  }
   
/*
    .overlay-text {
      color: black;
      font-size: 1.8rem;
      font-weight: bold;
      z-index: 2;
      text-align: center;
      background-color: rgba(255, 255, 255, 0.7); 
      padding: 10px 20px;
      border-radius: 8px;
    }
  */
  /*  
  .overlay-text {
    color: white;
    font-size: 1.5rem;
    z-index: 2;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6); 
    padding: 10px 20px;
    border-radius: 4px;
  }
    */
  
  
@media (max-width: 768px) {
  .why-choose-us .row {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers children horizontally */
    gap: 1.5rem; /* Optional: spacing between cards */
  }

  .why-choose-us .col-md-3 {
    width: 100%;
    max-width: 350px; /* Adjust max width if you want cards narrower */
  }
}
.count-box {
  margin-bottom: 30px;
}

.count-box h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ED1C24;
}
.vision-mission-section {
  position: relative;
  
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  overflow: hidden;
  filter: none;
}

.vision-mission-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5); 
  z-index: 0;
  filter: none;
}

.vision-mission-section .container {
  position: relative;
  z-index: 1;
}

.vision-mission-section .card {
  background: rgba(255, 255, 255, 0.7); /* Slightly white transparent */
  border: 4px solid #000; 
  border-radius: 20px;
  color: #000; /* Ensures text is black inside the card */
  transition: transform 0.3s ease;
}

.vision-mission-section .card:hover {
  transform: translateY(-10px);
}

/* Text Reveal Animation */
.reveal-text {
  opacity: 0;
  transform: translateY(40px);
  animation: revealUp 1s forwards;
  color: #000; /* Black text */
}

.reveal-text.delay-100 { animation-delay: 0.1s; }
.reveal-text.delay-200 { animation-delay: 0.2s; }
.reveal-text.delay-300 { animation-delay: 0.3s; }

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.divider {
  width: 180px; /* Adjust the width of the line */
  height: 2px; /* Line thickness */
  background-color: #000; /* Line color (black, but you can change it) */
  margin: 20px auto; /* Center the line with space above and below */
}
.spacer {
  height: 50px; /* or more/less as needed */
}
.divider-with-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
}

.divider-with-icon .line {
  flex: 1;
  height: 1px;
  background-color: #ccc;
  margin: 0 10px;
}

.divider-with-icon .divider-icon {
  width: 30px;
  height: auto;
}
#backToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  font-size: 20px;
  background-color: #28a745;
  color: white;
  border: none;
  outline: none;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease;
}

#backToTopBtn:hover {
  background-color: #218838;
}
@media (min-width: 768px) {
  .about-section .col-md-4:nth-child(3) {
    margin-top: -10px; /* adjust this value as needed */
  }
}
.gradient-text {
  background: linear-gradient(
    90deg,
    rgba(237, 28, 36, 1) 0%,
    rgba(0, 0, 0, 1) 50%,
    rgba(237, 28, 36, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
/* Base map responsiveness */
.responsive-map {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* Media Query: Adjust map height for very small devices */
@media (max-width: 576px) {
  .responsive-map {
    height: 300px;
  }
}

/* Optional: Add bottom margin if needed */
.map-section {
  margin-bottom: 30px;
}
@media (max-width: 767.98px) {
  #vision-section,
  #mission-section {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    margin-bottom: 0 !important;
  }

  #vision-section .row,
  #mission-section .row {
    margin-bottom: 0 !important;
  }

  #vision-section img,
  #mission-section img {
    margin-bottom: 1rem;
  }

  #mission-section {
    margin-top: -1rem !important; /* remove extra space above mission */
  }
}
@media (min-width: 768px) {
  #vision-section, #mission-section {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .row {
    margin-right: 0;
    margin-left: 0;
  }

  .col-md-6 {
    padding-left: 0;
    padding-right: 0;
  }

  .mt-4 {
    margin-top: 0 !important;
  }
}
@media (max-width: 768px) {
  .about-section {
    padding-bottom: 1rem !important; /* Reduce bottom spacing on small screens */
  }

  .our-products-section {
    padding-top: 1rem !important; /* Optional: Reduce top spacing if needed */
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: #25d366;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}
.crop-list {
  list-style: none;
  padding-left: 0;
}

.crop-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.crop-list li img.crop-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  object-fit: contain;
}

.info-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 15px;
}

.info {
  max-width: 800px;
  width: 100%;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
}

.info h1,
.info h2 {
  color: #1e4620;
  font-weight: bold;
}

.info ul {
  list-style-position: inside;
  text-align: center;
  padding-left: 0;
}

@media (max-width: 768px) {
  .info {
    padding: 0 10px;
  }
}
.innovva-why-section {
  background: url('') no-repeat center center;
  background-size: cover;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
}

.why-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 4px;
}

.innovva-why-section p {
  font-size: 1rem;
  margin: 0;
  color: #2d2d2d;
}

/* Optional: Styling for the dropdown arrow */
.nav-link .dropdown-toggle::after {
  display: inline-block;
  margin-left: 6px;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
/* Container flex layout */
.footprint-flex {
  display: flex;
  flex-wrap: nowrap;  /* keep side-by-side, no wrap */
  justify-content: center;
  align-items: center;
  gap: 2rem;
  min-height: 480px; /* minimum height for container */
}

/* Map wrapper - fixed square */
.map-wrapper {
  position: relative;
  flex: 0 0 480px;      /* fixed width */
  height: 480px;        /* fixed height (square) */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* Map image fills the map-wrapper square */
.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* cover to fill square nicely */
  border-radius: 15px;
  display: block;
}

/* Location markers container */
.location-marker {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-weight: bold;
  font-size: 0.90rem;
  color: black;
  white-space: nowrap;

  cursor: default;
  transform: translate(-50%, -50%);
  user-select: none;
  z-index: 10;
}

.location-marker img {
  width: 18px;
  height: 18px;
  background-color: transparent !important;
  background-image: none !important;
  border: none;
  box-shadow: none; /* Remove any shadow that might appear as background */
  padding: 0; /* Ensure no padding around the icon */
  margin: 0;
  display: block; /* Remove inline artifacts */
}



/* Footprint list box - fixed square */
.footprint-box {
  flex: 0 0 480px;      /* fixed width */
  height: 480px;        /* fixed height (square) */
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(0,0,0,0.05);
  color: #212529;
  box-sizing: border-box;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;  /* no scroll */
}

/* Headings inside footprint box */
.footprint-box h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}

/* Ordered list inside footprint box */
.footprint-box ol {
  margin-left: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  padding-right: 1rem;
  overflow-wrap: break-word;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .footprint-flex {
    flex-wrap: wrap;
    min-height: auto;
  }

  .map-wrapper, .footprint-box {
    flex: 1 1 100%;
    width: 100%;
    height: auto;   /* auto height on smaller devices */
    max-width: 480px;
  }

  .footprint-box {
    margin-top: 1.5rem;
  }
}

@media (max-width: 480px) {
  .location-marker {
    font-size: 0.75rem;
    padding: 3px 8px;
  }
  
  .location-marker img {
    width: 14px;
    height: 14px;
  }
}

@media (min-width: 768px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
  }

  .navbar .dropdown-toggle::after {
    display: none;
  }
}.category-list {
  background-color: #f7f7f7; /* light gray box background */
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1); /* outer light shadow */
  max-width: 250px;
  transition: box-shadow 0.3s ease;
}

.category-list h5 {
  color: #ED1C24;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.25rem;
}

.category-list ul {
  padding-left: 0;
  margin: 0;
}

.category-list ul li {
  list-style: none;
  margin-bottom: 15px;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 1rem;
  color: #374151;
  position: relative;
  cursor: pointer;
  border-radius: 5px;
  background-color: #f7f7f7;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); /* black shadow for all list items */
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.category-list ul li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: black;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.category-list ul li.active,
.category-list ul li.active::before {
  color: #ef4444;
  font-weight: 700;
}

.category-list ul li a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  width: 100%;
  transition: color 0.3s ease;
}

/* Hover Effects */
.category-list ul li:hover {
  background-color: #e6e6e6; /* slightly darker gray on hover */
  color: black;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35); /* stronger black shadow on hover */
}

.category-list ul li:hover::before {
  color: black;
}

/* Responsive */
@media (max-width: 767.98px) {
  .category-list {
    max-width: 100%;
    padding: 0.75rem 1rem;
    box-shadow: none;
    border-radius: 0;
    margin-bottom: 1.5rem;
  }

  .category-list h5 {
    font-size: 1.1rem;
  }

  .category-list ul li {
    font-size: 0.95rem;
    padding-left: 18px;
  }

  .category-list ul li::before {
    font-size: 1rem;
    left: 0;
  }
}
