/* 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%);
  }
}
.service-single {
  padding: 0;
  margin: 0;
}

.service-content {
  padding: 15px;
}
