* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.icon-box
{
  margin-bottom: 3px !important;
}

.hero {
  height: 100vh;
  /* background: linear-gradient(135deg, #ffed00 0%, #e98e19 50%, #000000 100%); */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.section-title {
  font-size: 32px;
  font-weight: bold;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
}

.team-card img {
  object-fit: cover;
  border: 4px solid #ffed00; /* brand color */
}

.team-card h5 {
  margin-top: 10px;
  font-weight: 600;
}

.hero-content {
  position: relative;
  width: 100%;
  min-height: 500px; /* or more */
  color: white;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100vh;
}
.service-card .icon-box {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.service-card .icon-box img {
  width: 100%;
  height: auto;
}
.icon-box {
  width: 90px;
  height: 90px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-yellow),
    var(--primary-orange)
  );
  border-radius: 50%;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(233, 142, 25, 0.3);
}
.icon-box i {
  font-size: 36px;
  color: var(--primary-black);
  transition: all 0.4s ease;
}

.service-card:hover .icon-box i {
  color: var(--primary-yellow);
}
.logo {
  font-size: 4rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
  animation: fadeInUp 1s ease-out;
}

.company-subtitle {
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.services {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.service-item {
  background: rgba(0, 0, 0, 0.8);
  color: #ffed00;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 14px;
}

.tagline {
  font-size: 2rem;
  color: #000;
  font-style: italic;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.contact-info {
  background: rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 1s ease-out 0.8s both;
}

.contact-item {
  margin-bottom: 10px;
  color: #000;
  font-weight: bold;
}

.contact-item:last-child {
  margin-bottom: 0;
}

/* Floating shapes */
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.shape1 {
  width: 100px;
  height: 100px;
  background: #ffed00;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape2 {
  width: 80px;
  height: 80px;
  background: #e98e19;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape3 {
  width: 60px;
  height: 60px;
  background: #fff;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 768px) {
  .logo {
    font-size: 3rem;
  }

  .company-subtitle {
    font-size: 1.2rem;
  }

  .tagline {
    font-size: 1.5rem;
  }

  .services {
    gap: 10px;
  }

  .service-item {
    font-size: 12px;
    padding: 8px 15px;
  }
  .icon-box {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .icon-box i {
    font-size: 28px;
  }
}
.why-choose-us {
  background: linear-gradient(135deg, #ffed00 0%, #e98e19 50%, #000000 100%);
  color: #fff;
}

.why-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
}

.why-box:hover {
  transform: translateY(-6px);
  background-color: rgba(0, 0, 0, 0.3);
}

.why-box .icon img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  opacity: 0.9;
}
.teamSection {
  background-color: #000;
  color: #fff;
}

.teamTitle {
  font-size: 32px;
  font-weight: bold;
  color: #e98e19;
}

.teamLead {
  font-size: 18px;
  line-height: 1.7;
}

.teamDescription {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
}

.teamImageWrapper {
  max-height: 600px;
  overflow: hidden;
}

.teamImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .teamSection .col-lg-6 {
    padding: 30px 20px;
  }

  .teamImageWrapper {
    max-height: 300px;
  }
}
