/* Global Styles */
:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --secondary: #6c757d;
  --success: #198754;
  --info: #0dcaf0;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #212529;
  --body-bg: #fff;
  --body-color: #343a40;
  --bs-body-font-family: "Roboto", sans-serif;
}
*{
  font-family: "Roboto", sans-serif;
}
body {
  font-family: "Roboto", sans-serif;
  color: #343a40;
  background-color: var(--body-bg);
  overflow-x: hidden;
}

/* Logo */
.logo-icon {
  width: 36px;
  height: 36px;
  font-size: 18px;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.z-index-1 {
  z-index: 1;
}

.min-vh-75 {
  min-height: 90vh;
}

/* Service Icons */
.service-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  border-radius: 20%;
  position: absolute;
  top: -40px;
  left: 20px;
}

.service-card {
  margin-top: 40px;
}

/* Case Study Icons */
.case-study-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* Feature Icons */
.feature-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 1.5rem;
}

/* Testimonial Icons */
.testimonial-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* Cards */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 0.75rem;
  border: none;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease-in-out;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Award Section */
.award-icon {
  width: auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  font-weight: 500;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.btn-link:hover {
  color: var(--primary-dark);
}

/* Badges */
.badge.bg-primary.bg-opacity-10 {
  color: var(--primary);
  background-color: rgba(99, 102, 241, 0.1) !important;
  font-weight: 500;
}

.badge.bg-secondary.bg-opacity-10 {
  color: var(--secondary);
  background-color: rgba(108, 117, 125, 0.1) !important;
  font-weight: 500;
}

/* Swiper Styles */
.swiper-pagination-bullet-active {
  background-color: var(--primary) !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: white !important;
  width: 50px !important; /* Adjust width as needed */
  height: 50px !important; /* Adjust height as needed */
  background-color: rgba(0, 0, 0, 0.3); /* Optional: add background */
  border-radius: 50%; /* Optional: make buttons circular */
}

/* Control the size of the arrow icon inside the buttons */
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 24px !important; /* Adjust the arrow size */
}

/* Optional: Add hover effect */
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

/* Animation for scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 767.98px) {
  .display-3 {
    font-size: 2.5rem;
  }

  .display-5 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1rem;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    top: -30px;
  }

  .service-card {
    margin-top: 30px;
  }
}

.stars {
  color: #ffc107;
}

.display-4 {
  font-weight: 700;
}

/* Hero Slider Styles */
.hero-slider {
  height: 100vh;
}

.hero-slider .swiper-slide {
  position: relative;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
  color: white;
}

.hero-slider .swiper-pagination-bullet {
  background: white;
}

.hero-slider .swiper-pagination-bullet-active {
  background: var(--primary);
}

.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

/* Custom dropdown toggle icon */
.dropdown-toggle-icon::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

/* Responsive adjustments for hero slider navigation buttons */
@media (max-width: 576px) {
  .hero-slider .swiper-button-next,
  .hero-slider .swiper-button-prev {
    width: 35px !important;
    height: 35px !important;
    background-color: rgba(0, 0, 0, 0.4);
  }

  .hero-slider .swiper-button-next:after,
  .hero-slider .swiper-button-prev:after {
    font-size: 16px !important; /* Smaller arrow icon for mobile */
  }

  /* Optional: adjust position to keep them more visible on small screens */
  .hero-slider .swiper-button-next {
    right: 10px;
  }

  .hero-slider .swiper-button-prev {
    left: 10px;
  }
}

/* For very small screens, make them even smaller if needed */
@media (max-width: 375px) {
  .hero-slider .swiper-button-next,
  .hero-slider .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
  }

  .hero-slider .swiper-button-next:after,
  .hero-slider .swiper-button-prev:after {
    font-size: 18px !important;
  }
}

.ceo-pic{
  width: 100%;
  height: 300px;
  background-image: url(https://images.unsplash.com/photo-1506794778202-cad84cf45f1d?fm=jpg&q=60&w=3000&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8bWFuJTIwZmFjZXxlbnwwfHwwfHx8MA%3D%3D);
  background-size: cover;
  background-position: center;
}

@media (max-width: 1279px) {
  .hide-on-small {
    display: none !important;
  }
}