/* Reset some defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1c1e26;
    color: white;
  }
/* Features Section */
  .features {
    display: flex;
    justify-content: space-around;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
  }
  
  .feature-box {
    flex: 1 1 200px;
    text-align: center;
    padding: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .feature-box:first-child {
   
    border-left: none;
  }
  
  .feature-box h2 {
    font-size: 36px;
    color: #fff;
  }
  
  .feature-box p {
    font-size: 14px;
    color: #ccc;
    margin-top: 8px;
  }

  /* 🌐 Mobile Responsiveness */

@media (max-width: 768px) {
  .features {
    flex-direction: column;
    padding: 0;
    margin: 0;
  }

  .feature-box {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 16px; /* reduced padding */
    margin: 0;
  }

  .feature-box:first-child {
    border-top: none;
  }

  .feature-box h2 {
    font-size: 24px;
    margin: 0;
    line-height: 1.2;
  }

  .feature-box p {
    font-size: 13px;
    margin: 4px 0 0 0;
    line-height: 1.3;
  }

  html, body {
    margin: 0;
    padding: 0;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%; /* prevents font inflation */
  }
}





  /* Services Section */
.services {
    padding: 60px 40px;
    background-color: #282a36; /* A slightly darker background */
    text-align: center;
}

.services h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
    align-items: stretch; /* Ensures uniform height */
}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* Stretch full height */
    background-color: #1c1e26;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 200px; /* Fixed height to avoid layout jumps */
    object-fit: cover;
    display: block;
}


.service-card h3 {
    font-size: 20px;
    color: #ffaf5f;
    margin: 15px 0 10px;
    padding: 0 20px;
    text-align: left;
}

.service-card p {
    font-size: 16px;
    color: #ccc;
    padding: 0 20px 20px;
    text-align: left;
    line-height: 1.6;
}
/* Explore Services Button */
.explore-button-container {
    margin-top: 40px;
    text-align: center;
}

.explore-services-btn {
    display: inline-block;
    background-color: #ffaf5f;
    color: #1c1e26;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.explore-services-btn:hover {
    background-color: #ffa13f;
}
/* Responsive Design */

/* For tablets (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .services {
        padding: 50px 30px;
    }

    .services h2 {
        font-size: 28px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 15px;
    }

    .explore-services-btn {
        padding: 10px 20px;
    }
}

/* For mobile devices (max-width: 767px) */
@media screen and (max-width: 767px) {
    .services {
        padding: 40px 20px;
    }

    .services h2 {
        font-size: 24px;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card h3 {
        font-size: 16px;
        padding: 0 15px;
    }

    .service-card p {
        font-size: 14px;
        padding: 0 15px 15px;
    }

    .explore-services-btn {
        padding: 10px 18px;
        font-size: 14px;
    }
}



/* === About Us Section === */
.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  gap: 40px;
}

/* Image Block */
.about-image {
  flex: 1 1 500px;
  max-width: 600px;
  border: 4px solid #ffa13f;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.about-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s;
  display: block;
}

.about-image img:hover {
  transform: scale(1.05);
}

/* Content Block */
.about-content {
  flex: 1 1 400px;
  max-width: 600px;
  text-align: left;
}

.about-content h1 {
  font-family: 'Copperplate Gothic', 'Copperplate', serif;
  color: #ffa13f;
  font-size: 2.8em;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #bbbbbb;
}

.read-more {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #ffa13f;
  color: #121212;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s;
}

.read-more:hover {
  background-color: #ff9900;
}

/* === Responsive Styling === */
@media (max-width: 1024px) {
  .about-section {
    padding: 40px 30px;
    gap: 30px;
  }

  .about-content h1 {
    font-size: 2.2em;
    text-align: center;
  }

  .about-content p {
    font-size: 1em;
    text-align: center;
  }

  .read-more {
    display: block;
    margin: 20px auto 0;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    padding: 40px 20px;
  }

  .about-image, .about-content {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .about-content h1 {
    font-size: 2em;
  }

  .about-content p {
    font-size: 1em;
  }
}


/*Our Client Section*/
.our-clients {
  padding: 100px 40px;
  background: #f9f9f9; /* light background for a clean, modern look */
  text-align: center;
}

.clients-container h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  color: #222; /* darker for better contrast */
}

.clients-container p {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
  font-weight: 400;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); /* slightly bigger */
  gap: 40px 30px;
  align-items: center;
  justify-items: center;
  padding: 0 20px;
}

.client-logo-grid img {
  max-width: 140px; /* increased for medium size */
  height: auto;
  filter: none; /* no grayscale, keep original colors */
  opacity: 1; /* fully visible */
  transition: transform 0.3s ease;
}

.client-logo-grid img:hover {
  transform: scale(1.08);
  cursor: pointer;
}
/* Responsive adjustments for Our Clients section */

/* Tablets (768px - 1024px) */
@media screen and (max-width: 1024px) {
  .our-clients {
    padding: 80px 30px;
  }

  .clients-container h2 {
    font-size: 30px;
  }

  .clients-container p {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .client-logo-grid {
    gap: 30px 20px;
  }

  .client-logo-grid img {
    max-width: 120px;
  }
}

/* Mobile Devices (max-width: 767px) */
@media screen and (max-width: 767px) {
  .our-clients {
    padding: 60px 20px;
  }

  .clients-container h2 {
    font-size: 24px;
  }

  .clients-container p {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .client-logo-grid {
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .client-logo-grid img {
    max-width: 100px;
  }
}









