:root {
  --primary-orange: #f16622;
  --primary-blue: #1b7cb3;
}
.bg-primary-orange {
  background-color: var(--primary-orange);
}
.bg-primary-blue {
  background-color: var(--primary-blue);
}
.text-primary-orange {
  color: var(--primary-orange);
}
.text-primary-blue {
  color: var(--primary-blue);
}
.border-primary-orange {
  border-color: var(--primary-orange);
}
.owl-theme .owl-nav {
  margin-top: 0px !important;
}
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 600px;
}

.hero-slide {
  height: 86vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.counter {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-orange);
}

.gradient-overlay {
  background: linear-gradient(
    135deg,
    rgba(241, 102, 34, 0.9),
    rgba(27, 124, 179, 0.9)
  );
}

.glass-effect {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
}

html {
  scroll-behavior: smooth;
  scroll-padding: 80px;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--primary-blue)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-gradient {
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--primary-blue)
  );
  transition: transform 0.3s ease;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.testimonial-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

body {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(241, 102, 34, 0.8) !important;
  color: white !important;
  border: none !important;
  border-radius: 50% !important;
  width: 50px !important;
  height: 50px !important;
  font-size: 18px !important;
  transition: all 0.3s ease !important;
}

.owl-nav button:hover {
  background: rgba(241, 102, 34, 1) !important;
  transform: translateY(-50%) scale(1.1) !important;
}

.owl-nav .owl-prev {
  left: 20px;
}

.owl-nav .owl-next {
  right: 20px;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .hero-slide h1 {
    font-size: 2.5rem;
  }

  .hero-slide p {
    font-size: 1.1rem;
  }

  .counter {
    font-size: 2rem;
  }

  .owl-nav {
    display: hidden;
  }
}

.brand-carousel .owl-stage-outer {
  padding: 20px 0;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.brand-logo {
  max-width: 120px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: all 0.3s ease;
}

.brand-logo:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

.brand-item .brand-logo.flex {
  width: 120px;
  height: 60px;
}

/* Responsive adjustments for brand carousel */
@media (max-width: 768px) {
  .brand-logo {
    max-width: 100px;
    max-height: 50px;
  }

  .brand-item .brand-logo.flex {
    width: 100px;
    height: 50px;
  }

  .brand-item .brand-logo.flex span {
    font-size: 1rem;
  }
}
.director-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.director-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-bg {
  background: linear-gradient(
      135deg,
      rgba(241, 102, 34, 0.9),
      rgba(27, 124, 179, 0.9)
    ),
    url("https://images.unsplash.com/photo-1560472354-b33ff0c44a43?ixlib=rb-4.0.3&auto=format&fit=crop&w=2126&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.achievement-badge {
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--primary-blue)
  );
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  display: inline-block;
  margin: 4px;
}

.director-image {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid transparent;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--primary-blue)
  );
  padding: 4px;
}

.stats-counter {
  font-size: 2.5rem;
  font-weight: bold;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--primary-blue)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.timeline-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
}

.timeline-item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-orange);
}

.timeline-item:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 20px;
  width: 2px;
  height: calc(100% + 10px);
  background: linear-gradient(
    to bottom,
    var(--primary-orange),
    var(--primary-blue)
  );
}

.timeline-item:last-child:after {
  display: none;
}
