
:root{
  --green: #A3B18A;
  --white: #EEE5E9;
  --grey: #6D696A;
  --black: #07020D;
  --plain-white: #fff;
}

/* Enquiry box styling */
.enquiry-box {
    background: rgba(255, 255, 255, 0.4); 
    border-radius: 6px;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.15);
    backdrop-filter: blur(5px); 
}

.enquiry-box h4 {
    margin-bottom: 12px;
    color: #07020D; 
}

.enquiry-box p {
    color: #333;
}

.btn-enquiry {
    display: inline-block;
    background: #a3b18a; 
    color: #000000;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s ease-in-out;
}

.btn-enquiry:hover {
    background: #baca9f; 
    color: #000000;
}


        .about-section p {
            line-height: 1.7;
            font-size: 1rem;
        }
        .about-section h2, .team-section h2 {
            font-weight: bold;
            margin-bottom: 20px;
        }
        .feature-box {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0px 2px 10px rgba(0,0,0,0.05);
            height: 100%;
        }
        .feature-box img {
            border-radius: 6px;
            margin-bottom: 15px;
        }
        .team-section h4 {
            margin-top: 15px;
            font-weight: 600;
        }
        footer {
            background: #f8f9fa;
            padding: 15px 0;
        }

        .logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  width: calc(250px * 50);
  animation: scroll 100s linear infinite;
}

.logo {
  height: 100px; 
  width: auto;
  margin: 0 30px;
  object-fit: contain;
}

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

.about-area.about-style-2.track-section {
  background-color: var(--plain-white) ;
    
}

.clients-strip {
  background-color: var(--plain-white) ;
    
}


/* Uniform image tiles (works in modern browsers) */
.service-img { aspect-ratio: 4 / 3; overflow: hidden; }
.service-img img { object-fit: cover; display: block; width: 100%; height: 100%; }

/* Fallback if a browser doesn't support aspect-ratio */
@supports not (aspect-ratio: 4 / 3) {
  .service-img { position: relative; padding-top: 75%; } /* 4:3 */
  .service-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
}