/* ===========================
   🌐 Root CSS Variables
   =========================== */
:root {
  /* Colors */
  --color-primary: #016536;
  --color-secondary: #D4FFEC;
  --color-accent: #e74c3c;
  --color-background: #FBFFFB;
  --color-text: #333333;
  --color-white: #ffffff;

  /* Font */
  --font-family: 'Poppins, sans-serif';
  --font-size-base: 16px;
  --line-height-base: 1.6;

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 32px;
  --spacing-xl: 64px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

/* ===========================
   🔰 Base Styles
   =========================== */

/* * {
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
} */

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* body {
  font-family: var(--font-family-base);
  color: var(--color-text);
  background-color: var(--color-background);
  line-height: var(--line-height-base);
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  min-height: 100vh; */
/* } */


/* 
/* Utility classes */
/* .text-center {
  text-align: center;
/* } */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
} 



/* ===================================================== */
.top-section {
    background-color: var(--color-primary);
    color: var(--color-white);
    height: 30px;
}


 




.logo {
      height: 50px;
    }

    .nav-link {
      padding: 0 20px;
      font-weight: 500;
      font-size: 18px;
      position: relative;
      color: inherit;
      padding-bottom: 4px;
      text-decoration: none;
    }

    .dropdown-toggle::after{
      display: none !important; 
    }

    .nav-link::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: #007510;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    .nav-link:hover::after {
      transform: scaleX(1);
    }

    .header-icon {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 34px;
      height: 34px;
      border: 1px solid #007510;
      border-radius: 50%;
      color: #007510;
      margin-left: 8px;
      text-decoration: none;
      transition: 0.5s ease;
    }

    .header-icon i {
      font-size: 16px;
    }
    .header-icon:hover {
      background: #016939;
      color: white;
    }

    @media (min-width: 992px) {
      .navbar .dropdown:hover > .dropdown-menu {
        display: block;
      }
      .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        border-top: 2px solid #dee2e6;
        border-radius: 0;
      }
      .navbar .dropdown.position-static {
        position: static;
      }
    }

    .dropdown-menu .container {
      padding-top: 1rem;
      padding-bottom: 1rem;
    }

    .dropdown-item {
      padding: 10px 15px;
      font-weight: 500;
      background: none;
      text-align: left;
    }

    .dropdown-item:hover {
      background-color: transparent !important;
    }

    @media (max-width: 991.98px) {
      .dropdown-menu {
        display: none !important;
        position: static !important;
        box-shadow: none;
        width: 100%;
        background: white;
      }
      .dropdown.show > .dropdown-menu {
        display: block !important;
      }
      .logo{
        height: 35px;
      }
    }


.dropdown-link{
  text-decoration: none;
}

.active{
  color: var(--color-primary) !important;
}







/* Mobile Bottom Navigation */
.mobile-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #ddd;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none; /* Hide by default */
}

.mobile-nav-items {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
}

.mobile-nav-item {
  text-align: center;
  flex: 1;
}

.mobile-nav-link,
.mobile-nav-cateogry {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 12px;
}

.mobile-nav-icon {
  font-size: 18px;
  color: #555;
}

.mobile-nav-text {
  margin-top: 4px;
}



.mobile-nav-link:hover,
.mobile-nav-cateogry:hover {
  color: #007bff;
}

.mobile-nav-link:hover .mobile-nav-icon,
.mobile-nav-cateogry:hover .mobile-nav-icon {
  color: #007bff;
}


/* Show only on mobile */
@media (max-width: 767px) {
  .mobile-nav {
    display: block;
  }
}






 /* Show only on mobile */
  @media (min-width: 769px) {
    .mobile-nav-categories {
      display: none !important;
    }
  }

  .mobile-nav-categories {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    display: none;
  }

  .mobile-nav-categories.active {
    display: block;
  }

  /* overlay to catch outside clicks */
  .menu-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.5);
  }

.floating-mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 80vw;
  max-width: 320px;
  background: #fff;
  box-shadow: 2px 0 8px rgba(0,0,0,0.15);
  overflow-y: auto;
  padding: 1rem;

  /* Start hidden */
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;

  transition: transform 0.6s ease, opacity 0.6s ease;
  will-change: transform, opacity;
}

/* Active/visible state */
.mobile-nav-categories.active .floating-mobile-menu {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.menu-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.5);

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.mobile-nav-categories.active .menu-overlay {
  opacity: 1;
  pointer-events: auto;
}


  .close-btn {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
  }

  .menu-menu-items {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-menu-item {
    margin-bottom: 0.8rem;
  }

  .mobile-menu-link {
    text-decoration: none;
    font-weight: 600;
    color: #000;
  }

  .mobile-menu-item-top {
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    padding: 0.4rem 0;
  }

  .mobile-menu-title {
    flex-grow: 1;
  }

  .icon {
    font-size: 1.2rem;
    width: 20px;
    display: inline-block;
    text-align: center;
  }

  .sub-items {
    list-style: none;
    padding-left: 1rem;
    margin-top: 0.3rem;
  }

  .sub-item {
    margin: 0.3rem 0;
  }

  .sub-item-link {
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
  }

  .sub-item-link:hover {
    text-decoration: underline;
  }

  .mobile-menu-bottom {
    margin-top: 2rem;
    border-top: 1px solid #eee;
    padding-top: 1rem;
  }

  .header-account.my-account {
    display: inline-block;
    text-decoration: none;
    color: #000;
    font-weight: 600;
  }

  /* Focus styles for accessibility */
  .mobile-menu-item-top:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
  }















/* hero */
.hero{
  height: 400px;
  background: url(../images/hero.webp) no-repeat center center/cover;
  position: relative;
  padding: 0 !important;
}

.slider-banner-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
}

.banner-content-inner {
    height: 400px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.slider-banner-overlay .banner-content
 {
    width: 52%;
}

.banner-content-heading{
font-family: Poppins, sans-serif;
  color: #fff;
}

.animated-btn {
  position: relative;
  display: inline-block;
  text-decoration: none;
  border: 1px solid var(--color-primary);
  text-align: center;
  width: 150px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  background: transparent;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}

.animated-btn::before {
  content: '';
  position: absolute;
  top: var(--y, 50%);
  left: var(--x, 50%);
  transform: translate(-50%, -50%) scale(0);
  width: 300%;
  height: 300%;
  background-color: #006837;
  transition: transform 0.6s ease;
  border-radius: 50%;
  z-index: -1;
}

.animated-btn:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.animated-btn:hover {
  color: #fff;
  border-color: #006837;
}


.banner {
  position: relative;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
  border-radius: 10px;
}

.banner-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.5s ease;
}

/* Zoom effect */
.banner:hover .banner-bg-img {
  transform: scale(1.1);
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.banner-content {
  position: relative;
  z-index: 2;
}

.banner-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}







.category-card {
  background-color: #d6fff0;
  border-radius: 10px;
  padding: 30px 10px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-card i {
  font-size: 28px;
  color: #000;
  margin-bottom: 10px;
  display: block;
}

.category-card span {
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #000;
}

.category-card:hover {
  background-color: var(--color-primary);
  transform: translateY(-4px);
}

.category-card:hover i,
.category-card:hover span {
  color: #fff;
}

.category-card.active {
  background-color: #006837;
  color: #fff;
}

.category-card.active i,
.category-card.active span {
  color: #fff;
}

















 .circle-box {
    width: 180px;
    height: 180px;
    border: 2px solid #000;
    border-radius: 50%;
    overflow: hidden !important;
    padding: 5px;
    transition: all 0.3s ease;
  }

  .circle-box:hover {
    transform: scale(1.05);
    border-color: #006f43;
  }

  .circle-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
  }

  .circle-box:hover img {
    transform: scale(1.1);
  }

  .category-title {
    font-weight: 600;
    font-size: 18px;
    margin-top: 20px;
    color: #000;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

  .category-title:hover{
    color: var(--color-primary);
  }

  .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
  }














  .product-card-wrapper {
    transition: transform 0.3s ease;
  }

  .product-card-wrapper:hover {
    transform: translateY(-4px);
  }

  .product-image-wrapper {
    position: relative;
    overflow: hidden;
  }

  .product-image-wrapper img {
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
  }

  .add-to-cart-btn {
    position: absolute;
    left: 0;
    width: 100% !important;
    right: 0;
    bottom: 0px;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
  }

  .product-card-wrapper:hover .add-to-cart-btn {
    transform: translateY(0%);
    opacity: 1;
  }


 .cart-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.3);
      display: none;
      z-index: 1040;
    }

    /* Cart Sidebar */
    .cart-sidebar {
      position: fixed;
      top: 0;
      right: -400px;
      width: 360px;
      height: 100%;
      background-color: #fff;
      box-shadow: -2px 0 6px rgba(0, 0, 0, 0.15);
      transition: right 0.3s ease;
      z-index: 1050;
      display: flex;
      flex-direction: column;
      padding: 20px;
    }

    .cart-sidebar.active {
      right: 0;
    }

    .cart-sidebar-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #ddd;
      padding-bottom: 10px;
      margin-bottom: 20px;
    }

    .cart-sidebar-header h5 {
      margin: 0;
      font-weight: 600;
    }

    .close-cart {
      background: none;
      border: none;
      font-size: 20px;
      color: #000;
      cursor: pointer;
    }

    @media (max-width: 400px) {
      .cart-sidebar {
        width: 100%;
      }
    }



  .text-truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .view-all-btn{
    border: 1px solid var(--color-primary);
  }

    .view-all-btn a{
      text-decoration: none;
      color: var(--color-primary);
      transition: 0.5s;
      -webkit-transition: 0.5s;
      -moz-transition: 0.5s;
      -ms-transition: 0.5s;
      -o-transition: 0.5s;
}

    .view-all-btn:hover a{
      color: white
    }





    .collection-section {
  background-color: #f9fefb;
  padding: 60px 0;
}

.collection-section h2 span {
  color: #0c8d4d;
}

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-heading {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: #0c8d4d;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  transition: bottom 0.4s ease;
  font-weight: bold;
}

.product-card:hover .product-heading {
  bottom: 0;
}














.parallax-offer {
  background-image: url('../images/paralax.webp'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
  position: relative;
}

.offer-content {
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
  max-width: 600px;
  margin: auto;
}

.offer-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0c8d4d;
}

.offer-highlight {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 20px;
}










.blog-section {
  padding: 80px 0;
  background-color: #f9fdfb;
}

.blog-section h2 {
  font-weight: bold;
  font-size: 2.5rem;
}

.blog-section h2 span {
  color: #0c8d4d;
}

/* Blog Card Styling */
.blog-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  background-color: #fff;
  transition: all 0.3s ease;
}
/* Wrapper for image to control overflow */
.blog-img-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

/* Image Styling */
.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Hover Zoom Effect */
.blog-card:hover .blog-img {
  transform: scale(1.1);
}

/* Blog Content Styling */
.blog-content {
  padding: 20px;
  text-align: start;
}

.blog-title {
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-meta {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 10px;
}

.blog-desc {
  font-size: 0.95rem;
  color: #444;
}














.footer a:hover {
  text-decoration: underline;
}

.footer .btn-outline-light:hover {
  background-color: white;
  color: black;
}

.btn-outline-light{
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.btn-outline-light:hover {
  background-color: var(--color-primary) !important;
  color: #fff !important;
}




.breadcrumb {
  background-image: url(../images/cybersec.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  padding: 100px 0px !important;
}

/* Wrapper aligns content to right */
.filter-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

/* Filter box styling */
.filter-select-input {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
}

/* Product count */
.result-count {
  font-weight: 500;
  color: #333;
}

/* Label styling */
.filter-select-input label {
  font-weight: 600;
  color: #444;
}

/* Select field container */
.filter-select-field {
  position: relative;
  min-width: 220px;
}

/* Dropdown styles */
.select_sort {
  width: 100%;
  padding: 10px 40px 10px 12px;
  appearance: none;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.3s;
}

/* Focus outline */
.select_sort:focus {
  outline: none;
  border-color: #007bff;
}

/* Dropdown icon */
.filter-select-field-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #666;
}


.collection-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  flex-wrap: wrap;
  font-family: "Segoe UI", sans-serif;
}

.collection-pagination a,
.collection-pagination span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #212121;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease-in-out;
}

.collection-pagination a:hover:not(.active),
.collection-pagination a:focus-visible {
  background-color: #f0f0f0;
  border-color: #999;
}

.collection-pagination a.active {
  background-color: #212121;
  color: #fff;
  font-weight: bold;
  pointer-events: none;
}

.collection-pagination span {
  border: none;
  background: none;
  width: auto;
  padding: 0 6px;
  font-size: 16px;
}

.collection-pagination .pagination-prev,
.collection-pagination .pagination-next {
  padding: 0;
  width: 34px;
  height: 34px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.collection-pagination .pagination-prev svg,
.collection-pagination .pagination-next svg {
  width: 6px;
  height: 10px;
}

.collection-pagination .pagination-prev:hover,
.collection-pagination .pagination-next:hover {
  background-color: #f0f0f0;
}

.product-page-container{
  padding: 0px 100px !important;
}





.item-img-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.item-img-wrapper {
  row-gap: 30px;
}

.image-text-img {
  max-width: 80%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.section-heading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #212121;
  text-align: left;
}

.section-heading-text p {
  margin-bottom: 15px;
  color: #444;
  font-size: 16px;
  line-height: 1.7;
}

.section-heading-text strong {
  font-weight: 600;
  color: #000;
}

/* Responsive tweak for smaller screens */
@media (max-width: 767.98px) {
  .section-heading {
    text-align: center;
  }

  .item-img-content-area,
  .section-heading-wrapper {
    padding: 0 15px;
  }
}


.icon-item {
  background: #fff;
  padding: 20px;
  border-radius: 0; /* Optional: Keep square edges */
}

.icon-item-heading {
  font-size: 18px;
  margin-bottom: 10px;
  color: #212121;
}

.icon-item-text {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}



















/* Container Styling */
.faq-content-wrapper {
  padding: 30px 0;
}

/* Accordion Item */
.faq-accordion-item {
  border-bottom: 1px solid #040404;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

/* Title Wrapper */
.item-title-wrapper {
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Title Text */
.item-title {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  color: #333;
}

/* Icons */
.icon .plus-icon,
.icon .minus-icon {
  font-size: 14px;
  color: #333;
  transition: 0.3s ease;
}

/* Toggle display */
.faq-accordion-item-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.faq-accordion-item.active .faq-accordion-item-content {
  max-height: 1000px; /* Large enough to fit all content */
}


/* Show active content */
.faq-accordion-item.active .faq-accordion-item-content {
  display: block;
}

/* Toggle Icons */
.faq-accordion-item.active .plus-icon {
  display: none;
}

.faq-accordion-item:not(.active) .minus-icon {
  display: none;
}












    .section-title {
      font-size: 30px;
      font-weight: 700;
    }

    .section-title span {
      color: #0d9b4d;
    }

    .contact-card {
      background: #f6f6f6;
      border-radius: 10px;
      padding: 30px 20px;
      text-align: center;
      height: 100%;
      box-shadow: 0 0 10px rgba(0,0,0,0.03);
      position: relative;
    }

    .icon-circle {
      width: 70px;
      height: 70px;
      margin: 0 auto 15px;
      background: #fff;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      z-index: 2;
      position: relative;
    }

    .icon-circle img {
      width: 32px;
      height: 32px;
    }

    .contact-card h6 {
      font-weight: 700;
      font-size: 16px;
      color: #0d9b4d;
      margin-bottom: 10px;
    }

    .contact-card p {
      font-size: 14px;
      margin-bottom: 15px;
      color: #333;
    }

    .contact-card .btn {
      border: 1px solid #0d9b4d;
      color: #0d9b4d;
      font-size: 14px;
      padding: 6px 20px;
      border-radius: 5px;
      transition: 0.3s;
    }

    .contact-card .btn:hover {
      background-color: #0d9b4d;
      color: white;
    }

    .contact-form-wrapper {
      background: #f6f6f6;
      padding: 30px;
      border-radius: 10px;
      margin-top: 40px;
      box-shadow: 0 0 10px rgba(0,0,0,0.03);
    }

    .form-control {
      border-radius: 0;
      font-size: 14px;
    }

    .btn-send {
      background-color: white;
      color: #0d9b4d;
      border: 1px solid #0d9b4d;
      padding: 6px 30px;
      font-size: 14px;
    }

    .btn-send:hover {
      background-color: #0d9b4d;
      color: white;
    }

    @media (max-width: 767px) {
      .contact-card {
        margin-bottom: 20px;
      }
    }





    

.icon-button {
  all: unset; 
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-button i {
  font-size: 18px;
  color: #dc3545; 
}

.icon-button:hover i {
  color: #a71d2a; 
}



.filter-select-field-icon {
    display: none;
}


