:root {
  --primary-blue: #024191;
  --primary-orange: #d53a02;
  --secondary-blue: #036;
  --light-bg: #f8f9fa;
  --dark-bg: #212529;
  --gradient-blue: linear-gradient(135deg, #024191 0%, #036 100%);
  --gradient-orange: linear-gradient(135deg, #d53a02 0%, #ff6b35 100%);
}

body {
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
}

/* Custom Loader */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white !important;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

.loader-logo {
  width: 120px;
  height: 120px;
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.7;
  }
}

/* Navigation */
.navbar {
  padding: 10px 0;
  transition: all 0.3s ease;
  background-color: white;

  /* backdrop-filter: blur(10px); */
}

.navbar-scrolled {
  padding: 5px 0;
  background: rgb(255, 255, 255);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  height: 50px;
}

.nav-logo {
  max-height: 50px;
}

.nav-link {
  color: rgb(13, 13, 13) !important;
  font-weight: 600;
  margin: 0 10px;

  font-size: 17px;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-scrolled .nav-link {
  color: rgb(0, 0, 0) !important;
  font-weight: 600;
  margin: 0 10px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-orange);
  transition: width 0.3s ease;
}

.nav-link:hover:after {
  width: 100%;
}

.navbar-toggler {
  border: none;
  outline: none;
}

/* Offcanvas Mobile Menu */
.offcanvas {
  background-color: var(--primary-blue);
}

.offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-body .nav-link {
  color: white !important;
  padding: 15px 0;
  font-size: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Swiper Banner */

.bannerSwiper .swiper-slide {
  background-position: center;
  background-size: cover;
  position: relative;
  width: 100%;
  height: 100vh;
}

.bannerSwiper .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.slide-content {
  position: absolute;
  top: 40%;
  left: 10%;
  transform: translateY(-50%);
  max-width: 800px;
  color: white;
  z-index: 2;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: transparent;
  border: 2px solid white;
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  background: white;
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: white;
  background: rgba(0, 0, 0, 0.3);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--primary-orange);
}

/* Button Styles */
.btn-primary {
  background: var(--gradient-blue);
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(2, 65, 145, 0.3);
}

.btn-outline-primary {
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  padding: 10px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(2, 65, 145, 0.3);
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-title {
  position: relative;
  margin-bottom: 0px;
  font-weight: 700;
  text-align: center;
}

.bg-light-custom {
  background-color: var(--light-bg);
}

.bg-gradient-blue {
  background: var(--gradient-blue);
  color: white;
}

/* Services */
.service-card {
  transition: all 0.3s ease;
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

/* Case Studies */
.case-study {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.case-img {
  height: 300px;
  overflow: hidden;
}

.case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-study:hover .case-img img {
  transform: scale(1.1);
}

.case-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  transition: all 0.3s ease;
}

.case-study:hover .case-content {
  background: linear-gradient(to top, var(--primary-blue), transparent);
}

/* Careers */
.career-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.career-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Gallery */
.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}

.gallery-item img {
  width: 100%;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 65, 145, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Contact */
.contact-info {
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.form-control {
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.25rem rgba(2, 65, 145, 0.25);
}

/* Footer */
footer {
  background-color: var(--dark-bg);
  color: white;
  padding: 80px 0 30px;
}

.footer-links h5 {
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 10px;
}

.footer-links h5:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-orange);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer__legal p a {
  color: rgb(255 123 123);
}

.footer__legal p a:hover {
  color: rgb(31, 193, 242);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.social-icons a {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
  line-height: 45px;
  border-radius: 50%;
  margin-right: 10px;
  color: white;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--primary-orange);
  transform: translateY(-5px);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top.active {
  opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .slide-content {
    left: 5%;
    max-width: 90%;
    text-align: center;
  }

  .navbar-collapse {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }

  .swiper {
    height: 80vh;
  }

  .slide-content h1 {
    font-size: 2.2rem;
  }
}

:root {
  --primary-blue: #024191;
  --primary-orange: #d53a02;
  --secondary-blue: #036;
  --light-bg: #f8f9fa;
  --dark-bg: #212529;
  --gradient-blue: linear-gradient(135deg, #024191 0%, #036 100%);
  --gradient-orange: linear-gradient(135deg, #d53a02 0%, #ff6b35 100%);
}

.my-testi {
  background-color: #f0f4f8;
}

.my-testi {
  width: 100%;
  /* max-width: 1200px;
            margin: 0 auto;
            padding: 20px; */
}

.my-testi__title {
  text-align: center;
  color: var(--primary-blue);
  margin-bottom: 30px;
  font-size: 2rem;
  position: relative;
  padding-bottom: 15px;
}

.my-testi__title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-orange);
  border-radius: 2px;
}

.my-testi__container {
  position: relative;
  padding: 0px 0;
}

.my-testi__slider {
  padding: 30px 0;
}

.my-testi__slide {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* padding: 30px; */
  height: auto !important;
}

.my-testi__slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.my-testi__content {
  padding: 20px;
}

.my-testi__quote {
  color: var(--secondary-blue);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
  padding: 0 20px;
}

.my-testi__quote:before {
  content: "";
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--primary-orange);
  opacity: 0.2;
  position: absolute;
  left: -10px;
  top: -20px;
}

.my-testi__author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.my-testi__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid var(--primary-blue);
}

.my-testi__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.my-testi__info {
  display: flex;
  flex-direction: column;
}

.my-testi__name {
  font-weight: 700;
  color: var(--primary-blue);
  font-size: 1.1rem;
}

.my-testi__position {
  color: var(--primary-orange);
  font-size: 0.9rem;
}

.my-testi__company {
  color: var(--secondary-blue);
  font-size: 0.9rem;
  margin-top: 3px;
}

.my-testi__rating {
  color: #ffb800;
  margin: 10px 0;
  font-size: 1.1rem;
}

.my-testi__nav {
  display: flex;
  justify-content: center;
  margin-top: 5px;
}

.my-testi__nav-btn {
  background: var(--primary-blue);
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.my-testi__nav-btn:hover {
  background: var(--primary-orange);
  /* transform: scale(1.1); */
}

.my-testi__pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.my-testi .swiper-pagination-bullet {
  background: var(--primary-blue);
  opacity: 0.5;
  width: 12px;
  height: 12px;
  margin: 0 8px;
  transition: all 0.3s ease;
}

.my-testi .swiper-pagination-bullet-active {
  background: var(--primary-orange);
  opacity: 1;
  transform: scale(1.2);
}

.my-testi__footer {
  text-align: center;
  margin-top: 50px;
  color: var(--secondary-blue);
}

.my-testi__cta {
  display: inline-block;
  padding: 12px 30px;
  background: var(--gradient-blue);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.my-testi__cta:hover {
  background: var(--gradient-orange);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(213, 58, 2, 0.2);
}

@media (max-width: 768px) {
  .my-testi__slide {
    padding: 20px;
  }

  .my-testi__quote {
    font-size: 1rem;
    padding: 0 10px;
  }

  .my-testi__title {
    font-size: 1.8rem;
  }

  .header h1 {
    font-size: 2rem;
  }
}

/* --- Aionsi About Us Section --- */

.home-about {
  /* background-color: var(--dark-bg);
  color: var(--light-bg); */
  padding: 80px 20px;
  position: relative;
  overflow: hidden; /* Important for containing animated elements */
}

/* Background Shapes and Animations */
.home-about::before,
.home-about::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
  animation: pulse 10s infinite ease-in-out;
}

.home-about::before {
  width: 300px;
  height: 300px;
  background-color: var(--primary-blue);
  top: -50px;
  left: -50px;
  animation-delay: 0s;
}

.home-about::after {
  width: 400px;
  height: 400px;
  background-color: var(--primary-orange);
  bottom: -100px;
  right: -100px;
  animation-delay: 2s;
}

/* Keyframe animation for the pulsing effect */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* Container and Layout */
.home-about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2; /* To keep content above the animated shapes */
}

.home-about-content {
  flex: 1;
  text-align: left;
}

.home-about-image {
  flex: 1;
  text-align: right;
}

.home-about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
}

/* Text Styling */
.home-about-title {
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; /* Fallback for browsers */
  margin-bottom: 10px;
}

.home-about-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary-orange);
  margin-bottom: 20px;
}

.home-about-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Call to Action Button */
.home-about-cta {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
  background: var(--gradient-orange);
  color: var(--light-bg);
}

.home-about-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(213, 58, 2, 0.4);
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
  .home-about-container {
    flex-direction: column;
    text-align: center;
  }

  .home-about-content,
  .home-about-image {
    width: 100%;
    text-align: center;
  }

  .home-about-title {
    font-size: 2.5rem;
  }

  .home-about-subtitle {
    font-size: 1.2rem;
  }

  .home-about-image {
    order: -1; /* Puts the image at the top on mobile */
    margin-bottom: 20px;
  }
}

/* --- Services Section --- */
.home-services {
  background-color: var(--dark-bg);
  color: var(--light-bg);
  padding: 80px 20px;
}

.home-services-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.home-services-header {
  margin-bottom: 60px;
}

.home-services-title {
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}

.home-services-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary-orange);
}

/* Swiper Slider Styles */
.home-services-slider {
  width: 100%;
  padding-bottom: 50px; /* Space for pagination dots */
}

/* Individual Slide Card */
.home-services-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease-in-out;
}

.home-services-card:hover {
  transform: translateY(-10px);
}

.home-services-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-services-card:hover .home-services-image {
  transform: scale(1.1);
}

.home-services-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 54, 102, 0.7); /* Use secondary-blue for a deep overlay */
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.home-services-card:hover .home-services-overlay {
  opacity: 1;
}

.home-services-card-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--light-bg);
  margin-bottom: 10px;
}

.home-services-card-description {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--light-bg);
  margin-bottom: 20px;
}

.home-services-link {
  display: inline-block;
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid var(--primary-orange);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.home-services-link:hover {
  color: var(--light-bg);
  border-color: var(--light-bg);
}

/* Swiper Pagination (Dots) */
.home-services-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  background: var(--primary-blue);
  opacity: 0.6;
  transition: background 0.3s ease;
}

.home-services-pagination.swiper-pagination-bullets
  .swiper-pagination-bullet-active {
  background: var(--primary-orange);
  opacity: 1;
}

:root {
  --primary-blue: #024191;
  --primary-orange: #d53a02;
  --secondary-blue: #036;
  --light-bg: #f8f9fa;
  --dark-bg: #212529;
  --gradient-blue: linear-gradient(135deg, #024191 0%, #036 100%);
  --gradient-orange: linear-gradient(135deg, #d53a02 0%, #ff6b35 100%);
}

.home-services {
  position: relative;
  overflow: hidden;
  background-color: var(--primary-blue);
  color: white;
  line-height: 1.6;
  overflow-x: hidden;
}

.home-services__header {
  text-align: center;
  margin-bottom: 20px;
}

.home-services__pre-title {
  color: var(--primary-orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: block;
}

.home-services__title {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.home-services__subtitle {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.home-services__slider {
  /* padding: 30px 10px; */
  position: relative;
}

.home-services__slide {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  height: auto;
  display: flex;
  flex-direction: column;
}

.home-services__slide:hover {
  transform: translateY(0px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  background: white;
}

.home-services__image {
  height: 225px;
  overflow: hidden;
  position: relative;
}

.home-services__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-services__slide:hover .home-services__img {
  transform: scale(1.05);
}

.home-services__slide:hover .home-services__icon {
  bottom: 10px;
  /* transition: transform 0.5s ease; */
}

.home-services__icon {
  position: absolute;
  bottom: -70px;
  right: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-blue);
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(2, 65, 145, 0.3);
  z-index: 2;
  transition: bottom 0.9s ease;
}

.home-services__content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.home-services__name {
  font-size: 1.4rem;
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-weight: 700;
}

.home-services__description {
  color: var(--secondary-blue);
  margin-bottom: 20px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-services__features {
  margin-bottom: 25px;
}

.home-services__feature {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: var(--secondary-blue);
  font-size: 0.9rem;
}

.home-services__feature-icon {
  color: var(--primary-orange);
  margin-right: 10px;
  font-size: 0.8rem;
}

.home-services__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.home-services__price {
  font-weight: 700;
  color: var(--primary-blue);
  font-size: 1.2rem;
}

.home-services__cta {
  padding: 10px 20px;
  background: var(--gradient-blue);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.home-services__cta:hover {
  background: var(--gradient-orange);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(213, 58, 2, 0.2);
}

.home-services__nav {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.home-services__nav-btn {
  background: white;
  color: var(--primary-blue);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.home-services__nav-btn:hover {
  background: var(--primary-orange);
  color: white;
  /* transform: scale(1.1); */
}

.home-services__pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.home-services .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0);
  opacity: 1;
  width: 12px;
  height: 12px;
  margin: 0 8px;
  transition: all 0.3s ease;
}

.home-services .swiper-pagination-bullet-active {
  background: var(--primary-orange);
  opacity: 1;
  transform: scale(1.2);
}

.home-services__badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gradient-orange);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

/* Background shapes */
.home-services__bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  background: white;
}

/* .home-services__bg-shape--1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  animation: float 15s ease-in-out infinite;
}

.home-services__bg-shape--2 {
  width: 200px;
  height: 200px;
  bottom: 50px;
  left: -100px;
  animation: float 12s ease-in-out infinite reverse;
}

.home-services__bg-shape--3 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: 20%;
  animation: pulse 8s ease-in-out infinite;
} */

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(20px, 20px) rotate(10deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.15;
  }
  100% {
    transform: scale(1);
    opacity: 0.1;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .home-services {
    padding: 60px 0;
  }

  .home-services__title {
    font-size: 2rem;
  }

  .home-services__content {
    padding: 20px;
  }

  .home-services__name {
    font-size: 1.2rem;
  }

  .home-services__icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    bottom: -20px;
  }

  .home-services__nav-btn {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .home-services__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .home-services__cta {
    align-self: flex-end;
  }
}

a {
  text-decoration: none;
}

:root {
  --primary-blue: #024191;
  --primary-orange: #d53a02;
  --secondary-blue: #036;
  --light-bg: #f8f9fa;
  --dark-bg: #212529;
  --gradient-blue: linear-gradient(135deg, #024191 0%, #036 100%);
  --gradient-orange: linear-gradient(135deg, #d53a02 0%, #ff6b35 100%);
}

/* Career Section Styles */
.home-career {
  background: var(--gradient-blue);
  color: white;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.home-career__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.home-career__shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  background: #013b81;
}

.home-career__shape--1 {
  width: 300px;
  height: 300px;
  top: -0px;
  right: -50px;
  animation: float 15s ease-in-out infinite;
}

.home-career__shape--2 {
  width: 200px;
  height: 200px;
  bottom: 50px;
  left: -100px;
  animation: float 12s ease-in-out infinite reverse;
}

.home-career__shape--3 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: 20%;
  animation: pulse 8s ease-in-out infinite;
}

.home-career__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* .home-career__text {
  padding: 40px;
} */

.home-career__pre-title {
  color: var(--primary-orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: block;
}

.home-career__title {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.home-career__highlight {
  color: var(--primary-orange);
  font-weight: 700;
}

.home-career__description {
  margin-bottom: 30px;
  font-size: 1.1rem;
  opacity: 0.9;
}

.home-career__features {
  margin-bottom: 40px;
}

.home-career__feature {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.home-career__feature-icon {
  color: var(--primary-orange);
  margin-right: 15px;
  font-size: 1.2rem;
  width: 24px;
}

.home-career__buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.home-career__button {
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  text-align: center;
}

.home-career__button--primary {
  background: var(--gradient-orange);
  color: white;
}

.home-career__button--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(213, 58, 2, 0.3);
}

.home-career__button--secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.home-career__button--secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.home-career__poster {
  position: relative;
  perspective: 1000px;
}

.home-career__card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
  color: var(--secondary-blue);
}

.home-career__card:hover {
  transform: rotateY(5deg) rotateX(5deg);
}

.home-career__card-header {
  background: var(--gradient-blue);
  padding: 30px;
  text-align: center;
  color: white;
}

.home-career__card-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.home-career__card-subtitle {
  opacity: 0.8;
}

.home-career__card-body {
  padding: 30px;
}

.home-career__card-list {
  list-style: none;
  margin-bottom: 30px;
}

.home-career__card-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 51, 102, 0.1);
}

.home-career__card-icon {
  color: var(--primary-orange);
  margin-right: 15px;
  font-size: 1.2rem;
}

.home-career__card-footer {
  padding: 20px 30px;
  background: var(--light-bg);
  text-align: center;
}

.home-career__card-cta {
  display: inline-block;
  padding: 12px 25px;
  background: var(--gradient-orange);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.home-career__card-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(213, 58, 2, 0.3);
}

.home-career__floating-element {
  position: absolute;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.home-career__floating-element--1 {
  top: -20px;
  right: -20px;
  background: var(--gradient-orange);
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 10px 30px rgba(213, 58, 2, 0.3);
}

.home-career__floating-element--2 {
  bottom: -20px;
  left: -20px;
  background: white;
  color: var(--primary-blue);
  padding: 15px;
  border-radius: 15px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes float {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -10px);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.15;
  }
  100% {
    transform: scale(1);
    opacity: 0.1;
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .home-career__content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .home-career__title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .home-career {
    padding: 60px 0;
  }

  .home-career__title {
    font-size: 2rem;
  }

  .home-career__text,
  .home-career__card-body {
    padding: 20px;
  }

  .home-career__card-header {
    padding: 20px;
  }

  .home-career__buttons {
    flex-direction: column;
  }

  .home-career__button {
    width: 100%;
  }

  .home-career__floating-element--1,
  .home-career__floating-element--2 {
    display: none;
  }
}

@media (max-width: 480px) {
  .home-career__title {
    font-size: 1.8rem;
  }

  .home-career__feature {
    font-size: 1rem;
  }

  .home-career__card-title {
    font-size: 1.5rem;
  }
}

:root {
  --primary-blue: #024191;
  --primary-orange: #d53a02;
  --secondary-blue: #036;
  --light-bg: #f8f9fa;
  --dark-bg: #212529;
  --gradient-blue: linear-gradient(135deg, #024191 0%, #036 100%);
  --gradient-orange: linear-gradient(135deg, #d53a02 0%, #ff6b35 100%);
}

/* Counter Section Styles */
.home-counter {
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  width: 90%;
  margin: 50px auto;
  background-image: url("../images/a6.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-radius: 15px;
}

.home-counter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-blue);
  opacity: 0.85;
  z-index: 1;
}

.home-counter__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.home-counter__header {
  margin-bottom: 60px;
}

.home-counter__pre-title {
  color: var(--primary-orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: block;
}

.home-counter__title {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.home-counter__subtitle {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.home-counter__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.home-counter__stat {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.home-counter__stat:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.home-counter__stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-orange);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: -1;
}

.home-counter__stat:hover::before {
  opacity: 0.1;
}

.home-counter__icon {
  font-size: 2.5rem;
  color: var(--primary-orange);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.home-counter__stat:hover .home-counter__icon {
  transform: scale(1.2);
  color: white;
}

.home-counter__number {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.home-counter__stat:hover .home-counter__number {
  color: var(--primary-orange);
}

.home-counter__label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.home-counter__stat:hover .home-counter__label {
  color: white;
}

.home-counter__plus {
  color: var(--primary-orange);
  font-weight: 700;
}

.home-counter__floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.home-counter__floating-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.home-counter__floating-element--1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.home-counter__floating-element--2 {
  width: 50px;
  height: 50px;
  top: 60%;
  left: 15%;
  animation-delay: 1s;
}

.home-counter__floating-element--3 {
  width: 70px;
  height: 70px;
  top: 30%;
  right: 10%;
  animation-delay: 2s;
}

.home-counter__floating-element--4 {
  width: 40px;
  height: 40px;
  top: 70%;
  right: 15%;
  animation-delay: 3s;
}

/* Animations */
@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(10px, 10px) rotate(10deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.15;
  }
  100% {
    transform: scale(1);
    opacity: 0.1;
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .home-counter__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .home-counter {
    padding: 60px 0;
    background-attachment: scroll;
  }

  .home-counter__title {
    font-size: 2rem;
  }

  .home-counter__stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .home-counter__stat {
    padding: 20px 15px;
  }

  .home-counter__number {
    font-size: 2.5rem;
  }

  .home-counter__icon {
    font-size: 2rem;
  }

  .home-counter__floating-element {
    display: none;
  }
}

@media (max-width: 480px) {
  .home-counter__title {
    font-size: 1.8rem;
  }

  .home-counter__number {
    font-size: 2rem;
  }

  .home-counter__label {
    font-size: 1rem;
  }
}

:root {
  --primary-blue: #024191;
  --primary-orange: #d53a02;
  --secondary-blue: #036;
  --light-bg: #f8f9fa;
  --dark-bg: #212529;
  --gradient-blue: linear-gradient(135deg, #024191 0%, #036 100%);
  --gradient-orange: linear-gradient(135deg, #d53a02 0%, #ff6b35 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Footer Section Styles */
.footer {
  padding: 80px 0 0px;
  position: relative;
  overflow: hidden;
  background-image: url("https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=870&q=80");
  background-size: cover;
  background-position: center;
  /* border-radius: 15px; */
  margin-top: 0px;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-blue);
  opacity: 0.9;
  z-index: 1;
}

.footer__content {
  position: relative;
  z-index: 2;
}

/* .footer__main {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 50px;
        } */

.footer__logo {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
  display: inline-block;
}

.footer__description {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 20px;
}

.footer__social {
  display: flex;
  /* justify-content: center; */
  gap: 15px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  background: var(--primary-orange);
  transform: translateY(-3px);
}

.footer__column {
  margin-bottom: 30px;
}

.footer__title {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-orange);
  border-radius: 2px;
}

.footer__links {
  list-style: none;
  padding-left: 0;
}

.footer__link-item {
  margin-bottom: 12px;
}

.footer__link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer__link:hover {
  color: white;
  transform: translateX(5px);
}

.footer__link-icon {
  margin-right: 10px;
  color: var(--primary-orange);
  font-size: 0.9rem;
}

.footer__contact-info {
  list-style: none;
  padding-left: 0;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.footer__contact-icon {
  color: var(--primary-orange);
  margin-right: 15px;
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer__newsletter {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.footer__newsletter-text {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.footer__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer__input {
  padding: 12px 15px;
  border-radius: 5px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--secondary-blue);
  font-weight: 500;
}

.footer__input:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--primary-orange);
}

.footer__button {
  padding: 12px 20px;
  background: var(--gradient-orange);
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(213, 58, 2, 0.3);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  text-align: center;
  justify-content: space-between;
}

* .footer__copyright {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.footer__legal {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.footer__legal-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.footer__legal-link:hover {
  color: white;
}

.footer__floating-element {
  position: absolute;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.footer__floating-element--1 {
  top: 50px;
  left: 5%;
  background: var(--primary-orange);
  color: white;
  padding: 10px 15px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
}

.footer__floating-element--2 {
  bottom: 100px;
  right: 5%;
  background: white;
  color: var(--primary-blue);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes float {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -10px);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .footer__main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 30px;
  }

  .footer__main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer__brand {
    margin-bottom: 20px;
  }

  .footer__logo {
    font-size: 2rem;
  }

  .footer__title {
    font-size: 1.1rem;
  }

  .footer__floating-element {
    display: none;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 40px 0 20px;
  }

  .footer__legal {
    flex-direction: column;
    gap: 10px;
  }

  .footer__social {
    flex-wrap: wrap;
  }
}

#loader img {
  height: 50px;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#loader img {
  width: 120px;
  height: auto;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

:root {
  --primary-blue: #024191;
  --primary-orange: #d53a02;
  --secondary-blue: #036;
  --light-bg: #f8f9fa;
  --dark-bg: #212529;
  --gradient-blue: linear-gradient(135deg, #024191 0%, #036 100%);
  --gradient-orange: linear-gradient(135deg, #d53a02 0%, #ff6b35 100%);
}

.home-clients {
  width: 100%;

  text-align: center;
}

.home-clients-heading {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

/* .home-clients-heading:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background: var(--gradient-orange);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        } */

.home-clients-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.home-clients-slider {
  width: 100%;
  padding: 20px 0;
  overflow: hidden;
}

.home-clients .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  transition: transform 0.3s ease;
}

.client-logo {
  max-width: 180px;
  max-height: 80px;
  object-fit: contain;
  /* filter: grayscale(100%); */
  opacity: 0.8;
  transition: all 0.3s ease;
}

.home-clients .swiper-slide:hover .client-logo {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 992px) {
  .home-clients-heading {
    font-size: 2.2rem;
  }

  .client-logo {
    max-width: 150px;
  }
}

@media (max-width: 768px) {
  .home-clients-heading {
    font-size: 1.8rem;
  }

  .home-clients-description {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .client-logo {
    max-width: 130px;
  }
}

@media (max-width: 576px) {
  .home-clients {
    padding: 40px 15px;
  }

  .home-clients-heading {
    font-size: 1.6rem;
  }

  .client-logo {
    max-width: 110px;
  }
}

@media (max-width: 991px) {
  [data-aos="fade-left"],
  [data-aos="fade-right"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Optional: Disable any custom animations */
  .animate-left,
  .animate-right {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

:root {
  --primary-blue: #024191;
  --primary-orange: #d53a02;
  --secondary-blue: #036;
  --light-bg: #f8f9fa;
  --dark-bg: #212529;
  --gradient-blue: linear-gradient(135deg, #024191 0%, #036 100%);
  --gradient-orange: linear-gradient(135deg, #d53a02 0%, #ff6b35 100%);
}

.my-breadcum {
  position: relative;
  height: 250px;
  margin-top: 75px;
  background-image: url("../images/breadcum.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.my-breadcum::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-blue);
  opacity: 0.8;
}

.my-breadcum-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.my-breadcum-title {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.my-breadcum-path {
  position: absolute;
  bottom: 0;
  left: 175px;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 10px;
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
  width: fit-content;
}

.my-breadcum-path-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.my-breadcum-item {
  display: inline-flex;
  align-items: center;
}

.my-breadcum-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.my-breadcum-link:hover {
  color: var(--primary-orange);
}

.my-breadcum-current {
  color: var(--primary-orange);
  font-weight: 600;
}

.my-breadcum-separator {
  margin: 0 10px;
  color: #666;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .my-breadcum {
    height: 250px;
  }

  .my-breadcum-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .my-breadcum {
    height: 200px;
  }

  .my-breadcum-title {
    font-size: 2rem;
  }

  .my-breadcum-path {
    padding: 12px 15px;
  }
}

:root {
  --primary-blue: #024191;
  --primary-orange: #d53a02;
  --secondary-blue: #036;
  --light-bg: #f8f9fa;
  --dark-bg: #212529;
  --gradient-blue: linear-gradient(135deg, #024191 0%, #036 100%);
  --gradient-orange: linear-gradient(135deg, #d53a02 0%, #ff6b35 100%);
}

.my-mis-vis-val {
  background: linear-gradient(45deg, #0a1929 0%, #1a3a5f 100%);
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
}

.my-mis-vis-val {
  width: 100%;

  position: relative;
}

.my-mis-vis-val-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0px;
  position: relative;
}

.my-mis-vis-val-hexagon {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 20px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--primary-blue);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px 30px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  overflow: hidden;
}

.my-mis-vis-val-hexagon:nth-child(2) {
  background: var(--primary-orange);
  /* margin-top: -80px; */
}

.my-mis-vis-val-hexagon:nth-child(3) {
  background: var(--secondary-blue);
}

.my-mis-vis-val-hexagon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1635070041078-e363dbe005cb?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  transition: all 0.5s ease;
}

.my-mis-vis-val-hexagon:nth-child(2)::before {
  background-image: url("https://images.unsplash.com/photo-1550751827-4bd374c3f58b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80");
}

.my-mis-vis-val-hexagon:nth-child(3)::before {
  background-image: url("https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80");
}

.my-mis-vis-val-content {
  position: relative;
  z-index: 2;
  color: white;
  transform: translateY(20px);
  opacity: 0.9;
  transition: all 0.4s ease;
}

.my-mis-vis-val-hexagon:hover .my-mis-vis-val-content {
  transform: translateY(0);
  opacity: 1;
}

.my-mis-vis-val-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
}

.my-mis-vis-val-hexagon:hover .my-mis-vis-val-icon {
  transform: scale(1.1) rotate(10deg);
  background: rgba(255, 255, 255, 0.25);
}

.my-mis-vis-val-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.my-mis-vis-val-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: white;
  transition: width 0.4s ease;
}

.my-mis-vis-val-hexagon:hover .my-mis-vis-val-title::after {
  width: 70px;
}

.my-mis-vis-val-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.9;
}

.my-mis-vis-val-hexagon:hover .my-mis-vis-val-text {
  opacity: 1;
}

.my-mis-vis-val-list {
  list-style: none;
  margin-top: 15px;
}

.my-mis-vis-val-list-item {
  padding: 6px 0;
  font-size: 0.9rem;
  opacity: 0.9;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.my-mis-vis-val-list-item:hover {
  opacity: 1;
}

.my-mis-vis-val-list-item i {
  font-size: 0.8rem;
}

/* Hover effects */
.my-mis-vis-val-hexagon:hover {
  /* transform: translateY(-15px) scale(1.05); */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  z-index: 10;
}

.my-mis-vis-val-hexagon:hover::before {
  opacity: 0.2;
  transform: scale(1.1);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

@media (max-width: 768px) {
  .my-mis-vis-val-hexagon {
    width: 350px;
    height: 350px;
    padding: 40px 25px;
  }

  .my-mis-vis-val-title {
    font-size: 1.6rem;
  }

  .my-mis-vis-val-text {
    font-size: 0.95rem;
  }

  .my-mis-vis-val-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .my-mis-vis-val-hexagon {
    /* width: 260px; */
    height: 310px;
    padding: 35px 20px;
  }

  .my-mis-vis-val-title {
    font-size: 1.5rem;
  }

  .my-mis-vis-val-icon {
    width: 65px;
    height: 65px;
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .my-mis-vis-val-floating {
    display: none;
  }
}

.my-mis-vis-val-hexagon:hover {
  /* Target shape as a square with 6 points for smooth morph */
  clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 0);
}

:root {
  --primary-blue: #024191;
  --primary-orange: #d53a02;
  --secondary-blue: #036;
  --light-bg: #f8f9fa;
  --dark-bg: #212529;
  --gradient-blue: linear-gradient(135deg, #024191 0%, #036 100%);
  --gradient-orange: linear-gradient(135deg, #d53a02 0%, #ff6b35 100%);
}

.my-team {
  padding: 80px 0;
}

.my-team-header {
  text-align: center;
  margin-bottom: 30px;
}

.my-team-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-blue);
  position: relative;
}

.my-team-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
  .my-team-title {
    font-size: 2.5rem;
  }

  .my-team-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .my-team {
    padding: 60px 0;
  }

  .my-team-title {
    font-size: 2.2rem;
  }

  .my-team-member-name {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .my-team {
    padding: 40px 0;
  }

  .my-team-title {
    font-size: 2rem;
  }
}

:root {
  --primary-blue: #024191;
  --primary-orange: #d53a02;
  --secondary-blue: #036;
  --light-bg: #f8f9fa;
  --dark-bg: #212529;
  --gradient-blue: linear-gradient(135deg, #024191 0%, #036 100%);
  --gradient-orange: linear-gradient(135deg, #d53a02 0%, #ff6b35 100%);
}

.service-inn {
  padding: 80px 0;
}

/* Services Sidebar */
.service-inn-sidebar {
  position: sticky;
  top: 100px;
}

.service-inn-service {
  background: white;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--primary-blue);
  transition: all 0.3s ease;
}

.service-inn-service:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-inn-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.service-inn-description {
  color: #666;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.service-inn-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-inn-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-orange);
}

.service-inn-cta {
  background: var(--gradient-blue);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-inn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(2, 65, 145, 0.3);
  color: white;
}

/* Enhanced Services List */
.service-inn-simple {
  background: white;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-inn-simple-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.service-inn-simple-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient-orange);
  border-radius: 2px;
}

.service-inn-simple-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-inn-simple-item {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}

.service-inn-simple-item:last-child {
  border-bottom: none;
}

.service-inn-simple-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: var(--primary-blue);
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  padding: 5px 0;
}

.service-inn-simple-link:hover {
  color: var(--primary-orange);
  transform: translateX(5px);
}

.service-inn-simple-arrow {
  color: var(--primary-orange);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.service-inn-simple-link:hover .service-inn-simple-arrow {
  transform: translateX(5px);
}

/* Call Us Card */
.service-inn-call-card {
  background: var(--gradient-blue);
  color: white;
  border-radius: 15px;
  padding: 50px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(2, 65, 145, 0.2);
}

.service-inn-call-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.service-inn-call-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-inn-call-number {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.service-inn-call-btn {
  background: white;
  color: var(--primary-blue);
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-inn-call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Main Content */
.service-inn-main {
  background: white;
  border-radius: 15px;
  padding: 20px;
  /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); */
}

.service-inn-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.service-inn-main-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
}

.service-inn-main-content {
  color: #555;
  margin-bottom: 30px;
  font-size: 1.05rem;
}

/* Features List */
.service-inn-features {
  margin: 40px 0;
}

.service-inn-features-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.service-inn-features-list {
  list-style: none;
  padding: 0;
}

.service-inn-features-item {
  padding: 12px 0;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  border-bottom: 1px solid #eee;
}

.service-inn-features-item:last-child {
  border-bottom: none;
}

.service-inn-features-icon {
  color: var(--primary-orange);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.service-inn-features-text {
  color: #555;
  font-weight: 500;
}

/* Gallery Section */
.service-inn-gallery {
  margin: 0px 0;
}

.service-inn-gallery-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 25px;
}

.service-inn-gallery-item {
  margin-bottom: 30px;
}

.service-inn-gallery-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.service-inn-gallery-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.service-inn-gallery-description {
  color: #666;
  font-size: 0.9rem;
}

/* Final Section */
.service-inn-final {
  background: var(--light-bg);
  padding: 30px;
  border-radius: 10px;
  margin-top: 0px;
}

.service-inn-final-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.service-inn-final-text {
  color: #555;
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .service-inn-sidebar {
    position: static;
    margin-bottom: 40px;
  }

  .service-inn-main {
    padding: 30px;
  }

  .service-inn-main-title {
    font-size: 2.2rem;
  }

  .service-inn-main-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .service-inn {
    padding: 60px 0;
  }

  .service-inn-main {
    padding: 25px;
  }

  .service-inn-main-title {
    font-size: 2rem;
  }

  .service-inn-main-image {
    height: 250px;
  }

  .service-inn-service {
    padding: 25px;
  }

  .service-inn-call-card {
    padding: 25px;
  }

  .service-inn-simple {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .service-inn {
    padding: 40px 0;
  }

  .service-inn-main {
    padding: 0px;
  }

  .service-inn-main-title {
    font-size: 1.8rem;
  }

  .service-inn-main-image {
    height: 200px;
  }

  .service-inn-service {
    padding: 20px;
  }

  .service-inn-footer {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .service-inn-call-card {
    padding: 20px;
  }

  .service-inn-call-number {
    font-size: 1.5rem;
  }

  .service-inn-simple {
    padding: 20px;
  }

  .service-inn-simple-link {
    font-size: 1rem;
  }
}

:root {
  --primary-blue: #024191;
  --primary-orange: #d53a02;
  --secondary-blue: #036;
  --light-bg: #f8f9fa;
  --dark-bg: #212529;
  --gradient-blue: linear-gradient(135deg, #024191 0%, #036 100%);
  --gradient-orange: linear-gradient(135deg, #d53a02 0%, #ff6b35 100%);
}

.case-studies-inn {
  padding: 80px 0;
}

/* Hero Section */
.case-studies-inn-hero {
  background: var(--gradient-blue);
  color: white;
  padding: 60px 0;
  margin-bottom: 60px;
}

.case-studies-inn-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.case-studies-inn-hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
}

/* Main Content */
.case-studies-inn-content {
  background: white;
  /* border-radius: 15px;
            padding: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 60px; */
}

.case-studies-inn-section {
  margin-bottom: 50px;
}

.case-studies-inn-section:last-child {
  margin-bottom: 0;
}

.case-studies-inn-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
}

.case-studies-inn-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 20px;
  position: relative;
}

.case-studies-inn-text {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 25px;
}

.case-studies-inn-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.case-studies-inn-list-item {
  padding: 12px 0;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  border-bottom: 1px solid #eee;
}

.case-studies-inn-list-item:last-child {
  border-bottom: none;
}

.case-studies-inn-list-icon {
  color: var(--primary-orange);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.case-studies-inn-list-text {
  color: #555;
  font-weight: 500;
}

/* Results Section */
.case-studies-inn-results {
  background: var(--light-bg);
  padding: 40px;
  border-radius: 10px;
  margin: 40px 0;
}

.case-studies-inn-results-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 25px;
}

/* Gallery Section */
.case-studies-inn-gallery {
  margin: 30px 0 0;
}

.case-studies-inn-gallery-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.case-studies-inn-gallery-item {
  margin-bottom: 0px;
}

.case-studies-inn-gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.case-studies-inn-gallery-item:hover .case-studies-inn-gallery-image {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.case-studies-inn-gallery-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.case-studies-inn-gallery-description {
  color: #666;
  font-size: 0.95rem;
}

/* Stats Section */
.case-studies-inn-stats {
  background: var(--gradient-blue);
  color: white;
  padding: 60px 0;
  border-radius: 15px;
  margin: 60px 0;
}

.case-studies-inn-stat {
  text-align: center;
  padding: 20px;
}

.case-studies-inn-stat-value {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.case-studies-inn-stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* CTA Section */
.case-studies-inn-cta {
  background: white;
  border-radius: 15px;
  padding: 50px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.case-studies-inn-cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.case-studies-inn-cta-text {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.case-studies-inn-cta-btn {
  background: var(--gradient-orange);
  color: white;
  border: none;
  padding: 12px 35px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.case-studies-inn-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(213, 58, 2, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
  .case-studies-inn-content {
    padding: 40px;
  }

  .case-studies-inn-hero-title {
    font-size: 2.5rem;
  }

  .case-studies-inn-title {
    font-size: 2rem;
  }

  .case-studies-inn-image {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .case-studies-inn {
    padding: 60px 0;
  }

  .case-studies-inn-hero {
    padding: 40px 0;
    margin-bottom: 40px;
  }

  .case-studies-inn-hero-title {
    font-size: 2.2rem;
  }

  .case-studies-inn-content {
    padding: 30px;
  }

  .case-studies-inn-title {
    font-size: 1.8rem;
  }

  .case-studies-inn-image {
    height: 300px;
  }

  .case-studies-inn-results {
    padding: 30px;
  }

  .case-studies-inn-cta {
    padding: 40px 30px;
  }
}

@media (max-width: 576px) {
  .case-studies-inn {
    padding: 40px 0;
  }

  .case-studies-inn-hero {
    padding: 30px 0;
  }

  .case-studies-inn-hero-title {
    font-size: 1.8rem;
  }

  .case-studies-inn-content {
    padding: 0px 0px;
  }

  .case-studies-inn-title {
    font-size: 1.6rem;
  }

  .case-studies-inn-image {
    height: 250px;
  }

  .case-studies-inn-stat-value {
    font-size: 2.5rem;
  }

  .case-studies-inn-cta {
    padding: 30px 20px;
  }

  .case-studies-inn-cta-title {
    font-size: 1.6rem;
  }
}

:root {
  --primary-orange: #d53a02;
  --primary-blue: #1a3e72;
  --gradient-blue: linear-gradient(135deg, #1a3e72 0%, #2c5aa0 100%);
  --gradient-orange: linear-gradient(135deg, #d53a02 0%, #ff6b3d 100%);
}

.home-gallery__pre-title {
  color: var(--primary-orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 15px;
  display: block;
}

.home-gallery__title {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.2;
}

.home-gallery__subtitle {
  color: var(--secondary-blue);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
}

/* Gallery Section Styles */
.home-gallery {
  padding: 80px 0;
}

.home-gallery__filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.home-gallery__filter-btn {
  padding: 10px 20px;
  background: white;
  color: var(--primary-blue);
  border: 1px solid var(--primary-blue);
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.home-gallery__filter-btn:hover,
.home-gallery__filter-btn.active {
  background: var(--gradient-blue);
  color: white;
  border-color: transparent;
}

.home-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.home-gallery__item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.4s ease;
  height: 250px;
}

.home-gallery__item:hover {
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.home-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-gallery__item:hover .home-gallery__img {
  transform: scale(1.1);
}

/* Zoom Overlay Styles */
.home-gallery__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.home-gallery__item:hover .home-gallery__overlay {
  opacity: 0.9;
}

.home-gallery__zoom {
  color: white;
  font-size: 2rem;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.home-gallery__item:hover .home-gallery__zoom {
  transform: scale(1);
}

.home-gallery__load-more {
  text-align: center;
}

.home-gallery__load-btn {
  padding: 15px 40px;
  background: var(--gradient-blue);
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.home-gallery__load-btn:hover {
  background: var(--gradient-orange);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(213, 58, 2, 0.2);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .home-gallery__grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .home-gallery__grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
  }

  .home-gallery__item {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .home-gallery__grid {
    grid-template-columns: 1fr;
  }

  .home-gallery__item {
    height: 250px;
  }

  .home-gallery__filter-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
}

:root {
  --primary-blue: #1a3e72;
  --secondary-blue: #2c5aa0;
  --primary-orange: #d53a02;
  --secondary-orange: #ff6b3d;
  --light-gray: #f8f9fa;
  --dark-gray: #333;
  --gradient-blue: linear-gradient(135deg, #1a3e72 0%, #2c5aa0 100%);
  --gradient-orange: linear-gradient(135deg, #d53a02 0%, #ff6b3d 100%);
}

.career-inn {
  max-width: 1200px;
  margin: 0 auto;
}

/* Jobs Section */
.career-inn__jobs {
  margin-bottom: 60px;
}

.career-inn__section-title {
  text-align: center;
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 40px;
  position: relative;
}

.career-inn__jobs-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.career-inn__filter-btn {
  padding: 10px 20px;
  background: white;
  color: var(--primary-blue);
  border: 1px solid var(--primary-blue);
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.career-inn__filter-btn:hover,
.career-inn__filter-btn.active {
  background: var(--gradient-blue);
  color: white;
  border-color: transparent;
}

.career-inn__jobs-list {
  display: grid;
  gap: 20px;
}

.career-inn__job-card {
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.career-inn__job-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

/* .career-inn__job-info {
  flex: 1;
} */

.career-inn__job-title {
  font-size: 1.4rem;
  color: var(--primary-blue);
  margin-bottom: 5px;
}

.career-inn__job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 10px;
}

.career-inn__job-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--dark-gray);
  font-size: 0.9rem;
}

.career-inn__job-meta-item i {
  color: var(--primary-orange);
}

.career-inn__job-department {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 62, 114, 0.1);
  color: var(--primary-blue);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.career-inn__job-department:hover {
  background: rgba(26, 62, 114, 0.2);
}

.career-inn__job-department i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.career-inn__job-department.active i {
  transform: rotate(45deg);
}

.career-inn__job-apply {
  padding: 12px 25px;
  background: var(--gradient-orange);
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.career-inn__job-apply:hover {
  background: var(--gradient-blue);
  transform: translateY(-2px);
}

/* Department Accordion */
.career-inn__department-accordion {
  margin-top: 15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: rgba(248, 249, 250, 0.8);
  border-radius: 8px;
}

.career-inn__department-accordion.active {
  max-height: 500px;
  padding: 20px;
  border: 1px solid rgba(26, 62, 114, 0.1);
}

.career-inn__accordion-content {
  display: grid;

  gap: 10px;
}

.career-inn__accordion-section h4 {
  color: var(--primary-blue);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.career-inn__accordion-list {
  list-style-type: none;
  padding-left: 5px;
}

.career-inn__accordion-list li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.career-inn__accordion-list li:before {
  content: "•";
  color: var(--primary-orange);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Application Form Modal */
.career-inn__modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(5px);
}

.career-inn__modal.open {
  opacity: 1;
  visibility: visible;
}

.career-inn__modal-content {
  background: white;
  border-radius: 10px;
  width: 90%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.4s ease;
}

.career-inn__modal.open .career-inn__modal-content {
  transform: scale(1);
}

.career-inn__modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark-gray);
  cursor: pointer;
  transition: color 0.3s ease;
}

.career-inn__modal-close:hover {
  color: var(--primary-orange);
}

.career-inn__modal-title {
  font-size: 1.8rem;
  color: var(--primary-blue);
  margin-bottom: 5px;
}

.career-inn__modal-subtitle {
  color: var(--dark-gray);
  margin-bottom: 30px;
}

.career-inn__form-group {
  margin-bottom: 20px;
}

.career-inn__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.career-inn__form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary-blue);
}

.career-inn__form-input,
.career-inn__form-select,
.career-inn__form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.career-inn__form-input:focus,
.career-inn__form-select:focus,
.career-inn__form-textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.career-inn__form-textarea {
  min-height: 120px;
  resize: vertical;
}

.career-inn__file-upload {
  border: 2px dashed #ddd;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.career-inn__file-upload:hover {
  border-color: var(--primary-blue);
}

.career-inn__file-upload i {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.career-inn__file-input {
  display: none;
}

.career-inn__form-submit {
  padding: 15px 30px;
  background: var(--gradient-orange);
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  width: 100%;
  margin-top: 20px;
}

.career-inn__form-submit:hover {
  background: var(--gradient-blue);
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .career-inn__job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .career-inn__job-apply {
    align-self: flex-end;
  }

  .career-inn__accordion-content {
    grid-template-columns: 1fr;
  }

  .career-inn__form-row {
    grid-template-columns: 1fr;
  }

  .career-inn__modal-content {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .career-inn__section-title {
    font-size: 1.6rem;
  }

  .career-inn__job-meta {
    flex-direction: column;
    gap: 5px;
  }
}

.contactus-inn {
  color: #1a3e72;
  line-height: 1.6;
}

.contactus-inn__container {
  max-width: 1200px;
  margin: 0 auto;
}

.contactus-inn__section-title {
  font-size: 36px;
  color: #1a3e72;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  font-weight: 700;
}

.contactus-inn__section-title:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: #d53a02;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Contact Cards Section */
.contactus-inn__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 60px;
}

.contactus-inn__card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(26, 62, 114, 0.08);
  transition: all 0.3s ease;
  flex: 1;
  min-height: 250px;
  margin-bottom: 30px;

  border: 1px solid rgba(26, 62, 114, 0.1);
}

.contactus-inn__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(26, 62, 114, 0.15);
}

.contactus-inn__card-icon {
  width: 80px;
  height: 80px;
  background: rgba(26, 62, 114, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
  position: relative;
}

.contactus-inn__card:hover .contactus-inn__card-icon {
  transform: scale(1.2);
  background: rgba(213, 58, 2, 0.1);
}

.contactus-inn__card:hover .contactus-inn__card-icon:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #d53a02;
  border-radius: 50%;
  opacity: 0.2;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.1;
  }
  100% {
    transform: scale(1);
    opacity: 0.2;
  }
}

.contactus-inn__card-icon i {
  font-size: 32px;
  color: #1a3e72;
  transition: all 0.3s ease;
}

.contactus-inn__card:hover .contactus-inn__card-icon i {
  color: #d53a02;
}

.contactus-inn__card-title {
  font-size: 22px;
  color: #1a3e72;
  margin-bottom: 15px;
  font-weight: 600;
}

.contactus-inn__card-text {
  color: #4a6fa5;
  font-size: 16px;
  margin-bottom: 10px;
}

.contactus-inn__card-link {
  color: #2c5aa0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.contactus-inn__card-link:hover {
  color: #d53a02;
}

/* Contact Form Section */
.contactus-inn__form-section {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(26, 62, 114, 0.08);
  margin-bottom: 60px;
  border: 1px solid rgba(26, 62, 114, 0.1);
}

.contactus-inn__form-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.contactus-inn__form-image {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
  display: flex;
  align-items: center;
}

.contactus-inn__form-image img {
  width: 100%;
  border-radius: 10px;
  height: 500px;
  object-fit: cover;
}

.contactus-inn__form-container {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 40px 30px;
  background: linear-gradient(
    135deg,
    rgba(26, 62, 114, 0.02) 0%,
    rgba(213, 58, 2, 0.02) 100%
  );
}

.contactus-inn__form-title {
  font-size: 28px;
  color: #1a3e72;
  margin-bottom: 10px;
  font-weight: 600;
}

.contactus-inn__form-subtitle {
  color: #4a6fa5;
  margin-bottom: 30px;
  font-size: 16px;
}

.contactus-inn__form {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.contactus-inn__form-group {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 10px;
  margin-bottom: 20px;
}

.contactus-inn__form-group-full {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 10px;
  margin-bottom: 20px;
}

.contactus-inn__form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #1a3e72;
}

.contactus-inn__form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(26, 62, 114, 0.2);
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s;
  background: white;
  color: #1a3e72;
}

.contactus-inn__form-input:focus {
  border-color: #d53a02;
  outline: none;
  box-shadow: 0 0 0 2px rgba(213, 58, 2, 0.2);
}

.contactus-inn__form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(26, 62, 114, 0.2);
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s;
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
  background: white;
  color: #1a3e72;
}

.contactus-inn__form-textarea:focus {
  border-color: #d53a02;
  outline: none;
  box-shadow: 0 0 0 2px rgba(213, 58, 2, 0.2);
}

.contactus-inn__form-submit {
  background: linear-gradient(135deg, #d53a02 0%, #ff6b3d 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s;
  font-size: 16px;
  margin-top: 10px;
  box-shadow: 0 5px 15px rgba(213, 58, 2, 0.3);
}

.contactus-inn__form-submit:hover {
  background: linear-gradient(135deg, #1a3e72 0%, #2c5aa0 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 62, 114, 0.3);
}

/* Map Section */
.contactus-inn__map-section {
  margin-bottom: 0;
}

.contactus-inn__map-container {
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(26, 62, 114, 0.08);
  height: 450px;
  border: 1px solid rgba(26, 62, 114, 0.1);
}

.contactus-inn__map {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive Design */
@media (max-width: 992px) {
  .contactus-inn__form-image,
  .contactus-inn__form-container {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .contactus-inn__form-image {
    order: 2;
    margin-top: 30px;
  }

  .contactus-inn__form-container {
    order: 1;
  }

  .contactus-inn__form-image img {
    height: 300px;
  }

  .contactus-inn__section {
    padding: 60px 20px;
  }
}

@media (max-width: 768px) {
  .contactus-inn__section {
    padding: 60px 0;
  }

  .contactus-inn__section-title {
    font-size: 30px;
  }

  .contactus-inn__form-group {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .contactus-inn__map-container {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .contactus-inn__section-title {
    font-size: 26px;
  }

  .contactus-inn__form-container {
    padding: 30px 20px;
  }

  .contactus-inn__form-title {
    font-size: 24px;
  }

  .contactus-inn__map-container {
    height: 300px;
  }

  .contactus-inn__card {
    padding: 20px;
  }

  .contactus-inn__card-icon {
    width: 60px;
    height: 60px;
  }

  .contactus-inn__card-icon i {
    font-size: 24px;
  }

  .contactus-inn__card-title {
    font-size: 20px;
  }
}

:root {
  --primary-blue: #024191;
  --primary-orange: #d53a02;
  --secondary-blue: #036;
  --light-bg: #f8f9fa;
  --dark-bg: #212529;
}

.my-team {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.my-team-header {
  text-align: center;
  margin-bottom: 60px;
}

.my-team-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 15px;
  position: relative;
}

.my-team-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 25px auto 0;
}

.my-team-member {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.my-team-member:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.my-team-member-content {
  padding: 20px 15px;
  display: flex;
  text-align: left;
  flex-direction: column;
  justify-content: center;
}

.my-team-member-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 5px;
}

.my-team-member-designation {
  font-size: 1rem;
  color: var(--primary-orange);
  font-weight: 600;
  margin-bottom: 0px;
  position: relative;
  display: inline-block;
}

.my-team-member-overlay {
  font-style: italic;
  color: #555;
  line-height: 1.8;
  margin-top: 15px;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--primary-blue);
  background-color: rgba(2, 65, 145, 0.05);
  padding: 15px 20px;
  border-radius: 0 5px 5px 0;
}

.my-team-member-bio {
  margin-top: 7px;
  color: #555;
  line-height: 1.7;
}

.my-team-member-social {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.my-team-member-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary-blue);
  color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.my-team-member-social a:hover {
  background: var(--primary-orange);
  transform: translateY(-3px);
}

.my-team-member-stats {
  display: flex;
  margin-top: 20px;
  gap: 20px;
}

.my-team-member-stat {
  text-align: center;
  flex: 1;
}

.my-team-member-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.my-team-member-stat-label {
  font-size: 0.85rem;
  color: #666;
}

.my-team-member-image img {
  height: 300px !important;
  
  aspect-ratio: 1/1 !important;
  object-position: top;
  object-fit: cover;
 
}


.service-inn-simple-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-inn-simple-item {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}

.service-inn-simple-item:last-child {
  border-bottom: none;
}

.service-inn-simple-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: var(--primary-blue);
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  padding: 5px 0;
  position: relative;
}

/* Arrow after each link */
.service-inn-simple-link::after {
  content: "\f061"; /* Font Awesome 'arrow-right' */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary-orange);
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.service-inn-simple li{
  list-style: none;
  padding: 10px 20px  10px 0;
  border-bottom: 1px solid gainsboro;
}


.service-inn-simple li:last-child{
  list-style: none;
  padding: 10px 20px  10px 0;
  border-bottom: none;
}

.service-inn-simple ul{
  padding-left: 0;
}


.service-inn-simple {
  margin-bottom: 30px;
  padding: 20px;
}

/* Hover effects */
.service-inn-simple-link:hover {
  color: var(--primary-orange);
  transform: translateX(5px);
}

.service-inn-simple-link:hover::after {
  transform: translateX(5px);
}




.service-inn-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-inn-features-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  position: relative;
  transition: all 0.3s ease;
}

.service-inn-features-list li:last-child {
  border-bottom: none;
}


.service-inn-features-list ul{
  padding-left: 0;
  list-style: none;
}


.service-inn-features-list li{
  padding:10px 20px 10px 0;
   display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  position: relative;
  transition: all 0.3s ease;
}


/* Add arrow before each item */
.service-inn-features-list li::before {
  content: "\f061"; /* Font Awesome arrow-right */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary-orange);
  font-size: 1rem;
  transition: transform 0.3s ease;
}

/* Hover effects */
.service-inn-features-item li:hover::before {
  transform: translateX(5px);
}

.service-inn-features-text {
  color: var(--primary-blue);
  font-size: 1.05rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.service-inn-features-item li:hover .service-inn-features-text {
  color: var(--primary-orange);
}
.dropdown-toggle::after {
   display: none !important;
}
