:root {
  --primary-color: #0a192f;
  --secondary-color: #112240;
  --accent-color: #f59e0b;
  --text-light: #ccd6f6;
  --text-dark: #8892b0;
  --white: #ffffff;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: #f8f9fa;
  overflow-x: hidden;
}

/* Navbar Glassmorphism */
.navbar-glass {
  background: rgba(10, 25, 47, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.navbar-brand {
  font-weight: 700;
  color: var(--white) !important;
  font-size: 1.5rem;
}
.navbar-brand span {
  color: var(--accent-color);
}
.nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: var(--accent-color) !important;
}
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero-carousel {
  height: 100vh;
  min-height: 600px;
}
.hero-carousel .carousel-item {
  height: 100vh;
  min-height: 600px;
}
.hero-carousel .carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  filter: brightness(0.4);
}
.carousel-caption {
  bottom: 30%;
  z-index: 10;
  left: 5%;
  right: 5%;
  text-align: left;
}
.carousel-caption h1 {
  font-size: 3.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  animation: fadeInUp 1s ease;
}
.carousel-caption p {
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 25px;
  animation: fadeInUp 1.2s ease;
}
@media (max-width: 767.98px) {
  .carousel-caption {
    bottom: 15%;
    left: 3%;
    right: 3%;
  }
  .carousel-caption h1 {
    font-size: 1.6rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }
  .carousel-caption p {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  .btn-accent {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
}
.btn-accent {
  background-color: var(--accent-color);
  color: var(--primary-color);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 5px;
  border: none;
  transition: all 0.3s ease;
  animation: fadeInUp 1.4s ease;
}
.btn-accent:hover {
  background-color: #d97706;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

/* Services Section */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
}
.section-title::after {
  content: '';
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
  display: block;
  margin: 10px auto 0;
}
.service-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  background: var(--white);
  height: 100%;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.service-img-wrapper {
  overflow: hidden;
  height: 250px;
}
.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img-wrapper img {
  transform: scale(1.1);
}
.service-card-body {
  padding: 25px;
}
.service-title {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.service-text {
  color: #6c757d;
  font-size: 0.95rem;
}

/* Testimonials */
.testimonials {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 50px 0 40px;
}
.testimonials .section-title {
  color: var(--white);
}
.testimonial-card {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
  margin: 10px 20px 20px;
  position: relative;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.quote-icon {
  color: var(--accent-color);
  font-size: 2rem;
  position: absolute;
  top: -15px;
  left: 20px;
  opacity: 0.5;
}

.testimonial-inner {
  overflow: hidden !important;
}
/* Clients Section */
.clients-section {
  padding: 60px 0;
  background-color: var(--white);
}
.client-logo {
  max-width: 150px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}
.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Footer */
.footer {
  background-color: #050d18;
  color: var(--text-light);
  padding: 60px 0 20px;
}
.footer h5 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer .text-muted {
  color: var(--text-light) !important;
}
.footer-links a:hover {
  color: var(--accent-color);
}
.social-icons a {
  color: var(--white);
  background-color: rgba(255,255,255,0.1);
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
}
.social-icons a:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

/* WhatsApp Button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  background-color: #25D366;
  color: var(--white);
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 5px;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-whatsapp:hover {
  background-color: #1ebe5d;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
