.about-section {
    text-align: center;
    padding: 60px 20px;
    background: #eef5fb;
    font-family: "Poppins", sans-serif;
}

.sub-title {
    letter-spacing: 2px;
    color: #0d6efd;
    font-size: 14px;
    margin-bottom: 10px;
}

.main-title {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 cards in one row */
    gap: 25px;
    max-width: 1300px;
    margin: auto;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr; /* 1 per row on mobile */
    }
}

.service-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: left;

    /* Animation on load */
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInScale 0.6s forwards;
    animation-delay: var(--animation-delay);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Staggered animation delay using CSS variable */
.service-card:nth-child(1) { --animation-delay: 0s; }
.service-card:nth-child(2) { --animation-delay: 0.1s; }
.service-card:nth-child(3) { --animation-delay: 0.2s; }
.service-card:nth-child(4) { --animation-delay: 0.3s; }
.service-card:nth-child(5) { --animation-delay: 0.4s; }
.service-card:nth-child(6) { --animation-delay: 0.5s; }
.service-card:nth-child(7) { --animation-delay: 0.6s; }
.service-card:nth-child(8) { --animation-delay: 0.7s; }

/* Keyframes for fade in + scale */
@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hover effect - subtle 3D tilt + shadow */
.service-card:hover {
    transform: scale(1.05) rotateX(4deg) rotateY(6deg);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    cursor: pointer;
}

.icon_About {
    font-size: 32px;
    background: #e7f1ff;
    padding: 15px;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007bff;
    margin: 0 auto 15px; /* center icon */
}

.service-card h3 {
    font-size: 20px;
    color: #0b2e59;
    margin-bottom: 10px;
}

.service-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}
.section-header {
      text-align: center;
      margin-bottom: 50px;
    }
    .section-header small {
      letter-spacing: 2px;
      color: #6c757d;
      text-transform: uppercase;
      font-weight: 600;
    }
    .section-header h2 {
      font-weight: 700;
      font-size: 2.8rem;
      margin-top: 10px;
      margin-bottom: 0;
    }
    .service-card {
      border: none;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      background-color: #fff;
      padding: 30px;
      text-align: center;
      height: 100%;
    }
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    }
    .service-icon {
      font-size: 4rem;
      color: #0d6efd;
      margin-bottom: 20px;
    }
    .service-title {
      font-weight: 700;
      font-size: 1.25rem;
      margin-bottom: 15px;
      color: #212529;
    }
    .service-desc {
      color: #495057;
      font-size: 0.95rem;
      line-height: 1.5;
      min-height: 70px;
    }
        .clients-section {
      text-align: center;
      padding: 20px 0;
    }
    .clients-section h3 {
      font-weight: 700;
      margin-bottom: 30px;
    }
    .client-logo {
      background: white;
      border-radius: 8px;
      padding: 15px;
      margin: 0 15px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
      max-width: 120px;
    }
    .client-logo img {
      max-width: 100%;
      height: auto;
      display: block;
      filter: grayscale(0.1);
      transition: filter 0.3s ease;
    }
    .client-logo:hover {
      transform: translateY(-5px);
    }
    .client-logo:hover img {
      filter: none;
    }

.section-title {
            font-size: 32px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 40px;
            color: #111;
        }
        .carousel-item12 img {
            height: 600px;
            width: 100%;
            object-fit: cover;
            border-radius: 14px;
        }
        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            background-color: rgba(0,0,0,0.6);
            padding: 12px;
            border-radius: 50%;
        }
        .event-box {
            background: white;
            border-radius: 14px;
            padding: 25px;
            margin-bottom: 20px;
            box-shadow: 0px 10px 25px rgba(0,0,0,0.07);
            transition: .3s;
            cursor: pointer;
        }
        .event-box:hover {
            transform: translateY(-5px);
            box-shadow: 0px 15px 30px rgba(0,0,0,0.12);
        }
        .event-title {
            font-size: 22px;
            font-weight: 700;
            color: #000;
        }
        .event-meta {
            color: #555;
            font-size: 15px;
            margin-bottom: 6px;
        }
        .event-description {
            font-size: 15px;
            color: #444;
            line-height: 1.6;
        }
      
.footer {
  background: #1f3b45;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 15px;
  border-left: 4px solid #0dcaf0;
  padding-left: 10px;
}

.footer-links li {
  list-style: none;
  margin-bottom: 6px;
  transition: 0.3s;
  cursor: pointer;
}

.footer-links li:hover {
  color: #0dcaf0;
  transform: translateX(5px);
}

.social-icons a {
  color: white;
  font-size: 20px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #0dcaf0;
  transform: scale(1.2);
}

