body {
  padding-top: 56px;
  font-family: Arial, sans-serif;
  background-color: whitesmoke !important;
}

.carousel-caption {
  background: rgba(0,0,0,0.6);
  padding: 20px;
  border-radius: 5px;
}

.service-icon {
  font-size: 3rem;
  color: #0d6efd;
}

#why h5 {
  font-weight: bold;
}

#about ul li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.footer {
  background: #0d6efd;
  color: #fff;
  padding: 20px 0;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  color: #ffc107;
}
/* Gradient cards */
/* Hero Banner */
.hero-banner {
  height: 60vh;
  background: linear-gradient(rgba(71, 82, 99, 0.8), rgba(12, 11, 12, 0.9)),
              url("../assets/banner.png") center/cover no-repeat;
}
.service-card {
  border: none;
  border-radius: 12px;
  padding: 25px;
  transition: transform 0.3s ease;
  background: linear-gradient(135deg, #0d6efd, #6610f2);
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card i {
  color: #fff;
}

.service-card h5 {
  font-weight: bold;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #f8f9fa;
}
/* Hero Banner (reuse from services page) */
/* Why Us Cards */
#whyus .card {
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#whyus .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

#whyus i {
  transition: transform 0.3s ease;
}

#whyus .card:hover i {
  transform: scale(1.1);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #0d6efd, #6610f2);
}
/* Hero Banner (reuse from services page) */


/* Cards for Mission, Vision, Team */
.card {
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin: 0 auto 15px auto;
}

/* Hero Banner */


/* Contact Form */
form .form-control {
  border-radius: 8px;
}

form button {
  border-radius: 8px;
  transition: transform 0.3s ease;
}

form button:hover {
  transform: translateY(-3px);
}

/* Contact Info */
iframe {
  border-radius: 12px;
}
#achievements h2 {
  font-weight: bold;
  margin-bottom: 40px;
  color: #fff;
}

#achievements i {
  color: #ffc107;
  margin-bottom: 15px;
}

#achievements h3 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

#achievements p {
  font-size: 1.05rem;
  font-weight: 500;
}
.video-hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.video-hero .video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
  filter: brightness(0.5); /* Darken video for text readability */
}

.video-hero .hero-content {
  position: relative;
  z-index: 1;
}

.video-hero h1,
.video-hero p {
  color: #fff;
}

.video-hero .btn {
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.video-hero .btn:hover {
  transform: translateY(-3px);
}
.tech-card {
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.tech-card i {
    color: inherit;
}

.tech-card h6 {
    margin-top: 5px;
    font-size: 1rem;
}
