/* Base button style */
.btn {
    position: relative;
    overflow: hidden;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 1rem;
    color: white;
    background-color: var(--primary-green, #1e8f3f);
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

/* Glowing RGB border on hover */
.btn::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: inherit;
      background: linear-gradient(
        90deg,
        rgb(149, 255, 0),
        green,
        rgb(149, 255, 0),
        green
    );
    background-size: 300% 100%;
    z-index: -1;
    filter: blur(6px);
    opacity: 0.7;
    transition: opacity 0.4s ease;
    animation: glowButton 3s linear infinite;
}

.btn:hover::before {
    opacity: 1;
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Keyframes for animated gradient */
@keyframes glowButton {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

/* Specific button colors */
.btn-primary {
    background-color: #1e8f3f; /* Dark Green */
}

.btn-get-started {
    background-color: #0066cc; /* Blue */
}

.btn-success {
    background-color: #28a745; /* Bootstrap-style green */
}
.btn-secondary {
    background-color: #6c757d; /* Bootstrap-style gray */
}

.btn-outline-primary {
    color: #1e8f3f;
    background-color: transparent;
    border: 2px solid #1e8f3f;
}

.product-image-main {
    position: relative;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.product-image-main img {
    object-fit: fill;
    transition: transform 0.4s ease;
    width: 100%;
    height: 100%;
    display: block;
 
}

.product-image-main:hover img {
    transform: scale(1.2);
}


.hero-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}
        
.hero-section:before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--primary-green);
    transform: skewY(-2deg);
    z-index: 1;
}

.hero-title {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 3.2rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-weight: 300;
    margin-bottom: 30px;
    font-size: 1.25rem;
    opacity: 0.9;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    color: var(--primary-blue);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-text);
    margin-bottom: 60px;
}

.feature-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.4s, box-shadow 0.4s;
    margin-bottom: 30px;
    height: 100%;
    background: white;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.feature-icon {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.stats-section {
    background-color: var(--light-bg);
    padding: 100px 0;
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    color: var(--dark-text);
    font-weight: 500;
    font-size: 1.1rem;
}

.product-card {
    height: auto;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s;
    margin-bottom: 30px;
    background: white;
}

.product-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transform: translateY(-10px);
}

.product-img {
    object-fit:cover;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f7ff 100%);
    display:flex;
    align-items: center;
    justify-content: center;
    padding:0;
}

.product-img-content {
 display: block;
 height: 100%;
 width:100%
}

.product-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, black 0%, var(--mid-green) 100%);
    color: rgb(255, 255, 255);
    box-shadow: 0 0 11px rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius:2rem;
    font-size: 1.3rem;
    font-weight: 500;
    z-index: 2;
}

.card-title{
    font-size:1.5rem;
    color: var(--light-bg);
    text-align: center;
    background-color: #2e7d32;
    border-radius: 4rem;
    padding:0.5rem 1.5rem ;
}


.team-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s;
    margin-bottom: 30px;
    background: white;
}

.team-img {
    height: 280px;
    object-fit: cover;
}

.team-social {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 12px 25px;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    opacity: 0;
    transition: all 0.4s;
}

.team-card:hover .team-social {
    bottom: 20px;
    opacity: 1;
}

.social-icon {
    color: var(--primary-blue);
    margin: 0 8px;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.social-icon:hover {
    color: var(--primary-green);
    transform: translateY(-5px);
}

.contact-info {
    margin-bottom: 30px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-icon {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-right: 15px;
    min-width: 40px;
    text-align: center;
}

.products-section {
    padding: 100px 0;
    background: var(--background-color);
}

.product-category {
    margin-bottom: 60px;
}

.category-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--secondary-blue);
}

.category-title:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--primary-green);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.specs-table th, .specs-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.specs-table th {
    background-color: #f5f9ff;
    color: var(--primary-blue);
    font-weight: 600;
}

.specs-table tr:hover {
    background-color: #f8f9fa;
}

.product-highlight {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.footer {
    background-color: var(--dark-green);
    color:var(--primary-green);
    padding: 80px 0 30px;
}

.footer-links h5 {
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.footer-links h5:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--primary-green);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: white;
    padding-left: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    margin-top: 50px;
    text-align: center;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-green);
    transform: translateY(-3px);
}

.product-feature {
    display: flex;
    margin-bottom: 20px;
}

.feature-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(26, 111, 201, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 20px;
}

.feature-icon-circle i {
    font-size: 1.8rem;
    color: var(--primary-blue);
}

.cert-badge {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 5px;
}

.category-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-btn {
    background: white;
    border: 2px solid #e0e0e0;
    color: #555;
    padding: 10px 25px;
    border-radius: 30px;
    margin: 5px;
    font-weight: 500;
    transition: all 0.3s;
}

.category-btn:hover, .category-btn.active {
    background: var(--mid-green);
    color:var(--background-color);
    border-color: var(--primary-blue);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .team-img {
        height: 220px;}}



    
      
        
        .footer-links h5 {
            margin-bottom: 25px;
            font-weight: 600;
            position: relative;
            padding-bottom: 15px;
        }
        
        .footer-links h5:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background: var(--primary-green);
            bottom: 0;
            left: 0;
            border-radius: 2px;
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: all 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 8px;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            margin-top: 50px;
            text-align: center;
        }

         .tile-section {
            padding: 2rem;
            margin: 1rem;
            gap: 0px;
        }
        
        .tile-card {
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 60px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            height: 100%;
            background-color: white;
            
        }
        
        .tile-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0px 5px rgba(1, 85, 26, 0.89);
            z-index:3;
        }
        
        .tile-img {
            
            width: 100%;
            object-fit: cover;
        }
        
        .tile-content {
            padding:0px 25px;
        }
        
        .tile-title {
            color: var(--dark-green);
            font-weight: 700;
            margin-top: 15px;
        }

        .read-more {
            color: var(--dark-green);
        }

.rd-section {
    position:static; /* Required for absolute positioning of pseudo-element */
    background-image: url("../img/extras/rd-background.jpeg");
    background-position: center;
    background-size: cover;
    background-blend-mode: multiply;
    background-attachment: fixed;
    transition: background-color 0.5s ease; /* Smooth transition for overlay effect */
    box-shadow:0 0 1.2rem var(--primary-green);
}

.para-justify {
  /* font-size: 1.5em;
  /* border: 1px solid black; */
  /* padding: 10px;
  width: 95%; */
  margin: 10px auto; 
  text-align: justify;
}


    
        .producthero {
            background: linear-gradient(#00ffc31b, #0000001f);
            background-size:contain ;
            background-repeat: no-repeat;
            background-position:50%;
            color: rgb(0, 0, 0);
            padding: 1rem;
            margin-bottom: 40px;
            position: relative;
           
        }
        
        .producthero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 30px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.300), transparent);
        }
      
        .feature-card .card-header {
            background: linear-gradient(to left, var(--dark-green), var(--mid-green));
            color: rgb(255, 255, 255);
            font-weight: 600;
            padding: 18px 25px;
            font-size: 1.1rem;
        }
        
        .feature-icon {
            font-size: 2.8rem;
            color: var(--dark-green);
            margin-bottom: 20px;
        }
        
        .highlight-badge {
            background: linear-gradient(to right, var(--mid-green), var(--dark-green));
            color: white;
            font-weight: 600;
            padding: 8px 20px;
            border-radius: 30px;
            margin: 10px 5px;
            display: inline-block;
            box-shadow: 0 3px 8px rgba(0,0,0,0.1);
        }
        
        .test-card {
            background-color: white;
            border-left: 4px solid var(--mid-green);
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .test-card:hover {
            transform: translateX(5px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.08);
        }
        
        .specs-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .specs-table th {
            background: linear-gradient(to right, var(--primary-green), var(--secondary-green));
            color: white;
            padding: 14px;
            text-align: left;
        }
        
        .specs-table td {
            padding: 14px;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .specs-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        
        .contact-box {
            background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            border: 1px solid rgba(76, 175, 80, 0.2);
        }
        

        
        .model-comparison th {
            background: linear-gradient(to right, var(--mid-green), var(--dark-green));
            color: white;
        }
        
        .model-comparison .pro-row {
            background-color: rgba(76, 175, 80, 0.1);
        }
        
        .accordion-button {
            background-color: var(--primary-green);
            color: var(--dark-green);
            font-weight: 500;
            border-radius: 8px;
            padding: 15px 20px;
            transition: background-color 0.3s, color 0.3s;
        }
        .accordion-button:not(.collapsed) {
            background-color: var(--mid-green);
            color: var(--secondary-green);
            font-weight: 600;
            box-shadow: none;
        }
        
        .tech-specs .accordion-button:after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a5d1a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }
        
    
         
        .product-image {
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            height: 100%;
            width: 100%;
            overflow: hidden;
            position: relative;
            display:flex;            
        }
        
        .product-image:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        .fouder-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
            transition: transform 0.4s ease;
        }

        .img-placeholder {
            width: 100%;
            height: 100%;
            max-height: 300px;
            display: flex;
            position: relative;
            overflow: hidden;
            color: #000000;
            text-align: center;
            object-fit: cover;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 px 30px rgba(0,0,0,0.1);
        }
        
 
        
        .stat-box {
            background: var(--primary-green);
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
            border-top: 4px solid var(--accent-green);
        }
        
        .stat-box .number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-green);
            margin-bottom: 10px;
        }
        
        @media (max-width: 768px) {
            .hero {
                padding: 80px 0 60px;
            }
            
            .display-4 {
                font-size: 2.2rem;
            }
          
        }
        
        .floating {
            animation: floating 3s ease-in-out infinite;
        }
        
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
:root {
  --slider-width: clamp(70px, 20vw, 120px);
  --slider-height: clamp(110px, 25vw, 180px);
}

.slider {
  width: 100%;
  height: var(--slider-height);
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 10% 90%, transparent);
}

.slider .list {
  display: flex;
  min-width: calc(var(--slider-width) * var(--quantity));
  position: relative;
}

.slider .item {
  transition: filter 0.3s ease;
}

.slider .list .item {
  width: var(--slider-width);
  height: var(--slider-height);
  position: absolute;
  left: 100%;
  animation: autoRun 15s linear infinite;
  animation-delay: calc((15s / var(--quantity)) * (var(--position) - 1) - 15s)!important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.slider .item .slider-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  text-align: center;
  padding: 4px;
  box-sizing: border-box;
}

.slider .item img {
  max-height: 65%;
  object-fit: contain;
  width: auto;
  display: block;
  margin: 0 auto;
}

.slider .item p {
  font-size: clamp(10px, 1.2vw, 14px);
  margin: 0;
  padding-top: 4px;
  min-height: 20px;
  max-height: 35%;
  line-height: 1.2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slider .list .item:hover {
  animation-play-state: paused;
  cursor: pointer;
  filter: grayscale(0); 
  z-index: 2;
}

.slider .list:hover .item {
  filter: grayscale(100%);
    animation-play-state: paused;
  filter: grayscale(100%);
}


.slider .list:hover .item:hover {
  filter: grayscale(0);
}


@media (max-width: 480px) {
  .slider .item p {
    font-size: 10px;

  }
}


@keyframes autoRun {
  from {
    left: 100%;
  }
  to {
    left: calc(var(--slider-width) * -1);
  }
}


 /*--------------------------------------------------------------
# Sidebar CTA Button
--------------------------------------------------------------*/
.side-icons{
  position: fixed;
  opacity: 1;
  right: -5px;
  bottom: 40%;
  z-index: 99999;
  background-color: var(--mid-green);
  width:50px;
  height: 50px;
  border-radius:25px 0px 0px 25px;
  transition: all 0.4s;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.side-icons i {
  font-size: 20px;
  color: var(--contrast-color);
  line-height: 0;
  right: 5px;
}

.side-icons:hover {
  background-color: var(--primary-green);
   right: -15px;
  width:70px;
  height: 50px;
  border-radius:50px 0px 0px 50px;
  transition: all 0.4s;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.side-icons:hover i {
  color: var(--mid-green);
  right: -10px;
}

.labat-team{
    background-color: linear-gradient(135deg, #f0f8ff 0%, #e6f7ff 100%);
    width:150px;
    height:150px;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: transform 0.5s ease;
}

.labat-team:hover {
    transform: scale(1.1);
    box-shadow: 0 0px 30px rgba(0, 0, 0, 0.2);
}

.table{
    text-align: center;
}

.anchor_offset::before {
  display: block;
  content: ' ';
  height: 10em; 
  margin-top: -10em;
  width: 100%;
  visibility: hidden;
}

.banner-section{
 display: flex;
 margin-bottom: 0;
 align-items: center;
 justify-content:left;
}

.banner-slider {
  width: 30%;
  height: 75px;
  overflow: hidden;
 background: linear-gradient(var(--background-color), var(--secondary-green));
  border: 2px solid var(--mid-green);
  position: absolute;
  align-items: center;
  top: 70px;
  z-index: 10;
  border-radius: 100px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) ;
}

.slider-track {
  display: flex;
  width: 200%; /* for two slides */
  height: 100%;
  animation: slideMinimal 15s infinite ease-in-out;
}

.slide-banner {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 16px;
  box-sizing: border-box;
  flex-shrink: 0;
  font-size: 14px;
  color: #222;
}

.slide-banner img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.slide-banner a {
  font-weight: 500;
  border-radius: 100px;
  width: auto;
  flex-wrap: nowrap ;
}

@keyframes slideMinimal {
  
            0% { transform: translateX(-50%); }
            35% { transform: translateX(-50%); }
            50% { transform: translateX(0%); }
            75% { transform: translateX(0%); }
            100% { transform: translateX(-50%); }
}

/* Optional: Pause on hover */
.banner-slider:hover .slider-track {
  animation-play-state: paused;
}

/* Responsive tweak for small screens */
@media (max-width: 1200px) {
  .slide-banner span {
    font-size: 12px;
  }
.banner-slider {
  width: 80%;
  height:60px;
}
  .slide-banner a {
    font-size: 12px;
  }

  .slide-banner img {
    height: 35px;
  }
  .banner-section{
    justify-content: center;
  }
}

.certification-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
}
.certification-img{
    object-fit: cover;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0f8ff 0%, #f3ffe6 100%);
    transition: transform 0.5s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-bottom: 10px;
}

.certification-img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.certification-content {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-text);
}

.award-card {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.award-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color:#e8f3ee; /* Green overlay */
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.award-card .award-content {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  padding: 20px;
  
}

.award-card:hover .overlay {
  opacity: 0.8;
}

.award-card:hover .award-content {
  opacity: 1;
  transform: translateY(0);
}

/* Unique background images */
.award-1 {
  background-image: url('../img/awards/international-award-for-audiology.png');
}

.award-2 {
  background-image: url('../img/awards/medgate.png');
}

.award-3 {
  background-image: url('../img/awards/sme-award-2024.png');
}
.award-4 {
  background-image: url('../img/awards/isam-10124.png');
}