.client-logos h2 {
  font-size: 24px;
  font-weight: 600;
}

.logo-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.logo-track img {
  width: 200px;
  height: 150px; /* Adjust size */
  margin: 0 20px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.logo-track img:hover {
  filter: grayscale(0%);
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* +=============================================  footer =====================*/
   
  .footer a[href^="tel:"] {
    color: #ffffff;
  }
  .footer a[href^="tel:"] {
  color: #ffffff;
  text-decoration: none;
}
.footer a {
  color: #ffffff; /* White text */
  text-decoration: none; /* Remove underline */
}

.footer a:hover {
  color: #f0c040; /* Optional hover color (e.g., yellow) */
}

.footer a[href^="tel:"]:hover {
  color: #f0c040;
}
    .footer a[href^="mailto:"] {
        color: #ffffff;
    }
    .footer a[href^="mailto:"] {
    color: #ffffff;
    text-decoration: none;
    }

    /* ---------------------------------footer copyright--------------------- */
    .footer-bottom {
  background-color: #0b012c; /* Footer background color */
  color: #fff;
  padding: 15px 0;
  font-size: 14px;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Allows wrapping on small devices */
}

.footer-bottom a {
  color: #f0c040; /* Link color */
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-bottom p {
  margin: 5px 0;
}

/* Mobile responsiveness */
@media (max-width: 576px) {
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
}
/* ---------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 80vh;
}

.images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  height: 500px;
}

.image-card {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.grid-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-card:hover .grid-image {
  transform: scale(1.05);
}

.content-section {
  padding: 2rem 0;
}

.main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.description {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.features-list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #495057;
}

.checkmark {
  background-color: #28a745;
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 0.8rem;
  font-weight: bold;
}

.cta-button {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  background-color: #218838;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.additional-content {
  margin-top: 3rem;
  padding: 2rem;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.additional-content.show {
  opacity: 1;
  transform: translateY(0);
}

.additional-content h2 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.additional-content p {
  color: #6c757d;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .images-grid {
    height: 300px;
    order: 2;
  }
  
  .content-section {
    order: 1;
  }
  
  .main-title {
    font-size: 2rem;
  }
  
  .container {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .images-grid {
    grid-template-columns: 1fr;
    height: 400px;
  }
  
  .main-title {
    font-size: 1.8rem;
  }
  
  .description {
    font-size: 1rem;
  }
  
  .cta-button {
    width: 100%;
    padding: 1.2rem;
  }
}

/* Animation for page load */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-section > * {
  animation: fadeInUp 0.8s ease forwards;
}

.content-section {
  animation-delay: 0.2s;
}

.images-grid {
  animation-delay: 0.4s;
}

/* ----------------- */
.about-wrapper {
  padding: 60px 20px;
  background: #ffffff;
}

.hero-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 40px;
}

/* Images Grid */
.images-grid {
  flex: 1 1 45%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
}

.image-card {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.image-card:hover {
  transform: scale(1.03);
}
.grid-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content Section */
.content-section {
  flex: 1 1 50%;
  padding: 10px 20px;
}
.main-title {
  font-size: 2rem;
  color: #0d6efd;
  margin-bottom: 20px;
}
.description {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Mission & Vision */
.mission-vision {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: -40px;
}
.mv-card {
  flex: 1 1 calc(50% - 20px);
  background: #f9f9f9;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.mv-icon {
  width: 60px;
  height: 60px;
  background: #0d6efd;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  margin: 0 auto 15px;
}
.mv-card h3 {
  color: #0d6efd;
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.mv-card p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-section {
    flex-direction: column;
  }
  .images-grid {
    grid-template-columns: repeat(2, 1fr);
    flex: 1 1 100%;
  }
  .content-section {
    flex: 1 1 100%;
  }
}
@media (max-width: 576px) {
  .images-grid {
    grid-template-columns: 1fr;
  }
  .mission-vision {
    flex-direction: column;
  }
}
