/* =======
   Avains Engineering - Custom CSS
   ======= */

:root {
  /* Color Palette */
  --primary-color: #c8102e; /* Engineering Red */
  --primary-dark: #a00b23;
  --primary-soft: rgba(200, 16, 46, 0.1);

  --secondary-color: #00235a; /* Deep Navy Blue */
  --secondary-dark: #00163d;
  --secondary-soft: rgba(0, 35, 90, 0.1);

  --dark-color: #1a1f24;
  --darker-color: #0f1215;

  --light-bg: #f8f9fa;
  --gray-text: #6c757d;

  /* Typography */
  --font-heading: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* =======
   Global & Typography
   ======= */
html,
body {
  font-family: var(--font-body);
  color: var(--dark-color);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6,
.navbar-brand {
  font-family: var(--font-heading);
}

.text-primary {
  color: var(--primary-color) !important;
}
.bg-primary {
  background-color: var(--primary-color) !important;
}
.bg-primary-soft {
  background-color: var(--primary-soft) !important;
}
.text-secondary {
  color: var(--secondary-color) !important;
}
.bg-secondary {
  background-color: var(--secondary-color) !important;
}
.bg-dark {
  background-color: var(--dark-color) !important;
}
.bg-darker {
  background-color: var(--darker-color) !important;
}

.text-gradient {
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--primary-color) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tracking-wide {
  letter-spacing: 2px;
}
.max-w-700 {
  max-width: 700px;
}
.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.z-index-1 {
  z-index: 1;
}
.py-7 {
  padding-top: 7rem !important;
  padding-bottom: 7rem !important;
}

.btn {
  font-family: var(--font-heading);
  transition: var(--transition-normal);
}
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}
.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}
.btn-outline-light:hover {
  color: var(--dark-color);
}

.hover-lift {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-3px);
}
.hover-lift-lg {
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hover-lift-lg:hover {
  transform: translateY(-8px);
}

.transition-all {
  transition: all var(--transition-normal);
}

/* =======
   Navbar
   ======= */
.avains-navbar {
  background-color: transparent;
  padding-top: 0;
  padding-bottom: 0;
  transition: var(--transition-normal);
}
.avains-navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  padding-top: 0;
  padding-bottom: 0;
  backdrop-filter: blur(10px);
}
.avains-navbar .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-family: var(--font-heading);
  padding: 0.5rem 1rem;
  position: relative;
  transition: var(--transition-fast);
}
.avains-navbar.scrolled .navbar-nav .nav-link {
  color: var(--dark-color);
}
.avains-navbar .navbar-nav .nav-link:hover,
.avains-navbar .navbar-nav .nav-link.active {
  color: white;
}
.avains-navbar.scrolled .navbar-nav .nav-link:hover,
.avains-navbar.scrolled .navbar-nav .nav-link.active {
  color: var(--primary-color);
}
.avains-navbar .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
  transform-origin: left;
}
.avains-navbar .navbar-nav .nav-link:hover::after,
.avains-navbar .navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}
.logo-img {
  height: 80px;
  background-color: white;
  /* padding: 0.5rem; */
  border-radius: 0.5rem;
  transition: var(--transition-normal);
}
.avains-navbar.scrolled .logo-img {
  height: 60px;
  background-color: transparent;
  padding-top: 0;
  border-radius: 0;
}

/* Navbar Dropdown Hover */
@media (min-width: 1200px) {
  .avains-navbar {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .avains-navbar.scrolled {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .avains-navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* Dropdown Menu Item Hover */
.avains-navbar .dropdown-menu .dropdown-item {
  transition: var(--transition-fast);
}
.avains-navbar .dropdown-menu .dropdown-item:hover,
.avains-navbar .dropdown-menu .dropdown-item:focus {
  background-color: var(--primary-color);
  color: white !important;
}

/* Navbar Toggle icon colors */
.navbar-toggler {
  border: none;
}
.avains-navbar .navbar-toggler-icon {
  filter: brightness(0) invert(1);
}
.avains-navbar.scrolled .navbar-toggler-icon {
  filter: none;
}

/* Responsive Navbar Button colors */
@media (max-width: 1199.98px) {
  .avains-navbar {
    background-color: white !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  }
  .avains-navbar .navbar-nav .nav-link {
    color: var(--dark-color) !important;
  }
  .avains-navbar .navbar-toggler-icon {
    filter: none;
  }
  .logo-img,
  .avains-navbar.scrolled .logo-img {
    height: 65px;
  }
}

/* =======
   Hero Section
   ======= */
.hero-section {
  background-color: var(--secondary-dark);
  overflow: hidden;
}
.badge-accent {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffd700;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}
.experience-badge {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  z-index: 2;
  border-bottom: 4px solid var(--primary-color);
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* =======
   About Section
   ======= */
.icon-box-sm {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.shape-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
  background-size: 15px 15px;
  z-index: -1;
  opacity: 0.3;
}

/* =======
   Why Choose Us
   ======= */
.feature-icon {
  width: 60px;
  height: 60px;
}
.feature-card:hover .feature-icon {
  background-color: var(--primary-color) !important;
  color: white !important;
  transform: scale(1.1);
}
.feature-icon,
.feature-card {
  transition: var(--transition-normal);
}
.card-gradient-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--primary-color)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}
.feature-card:hover .card-gradient-line {
  transform: scaleX(1);
}

/* =======
   Services Section
   ======= */
.service-icon {
  width: 60px;
  height: 60px;
  bottom: -30px;
  left: 30px;
  border: 4px solid white;
  z-index: 2;
}
.service-card {
  transition: var(--transition-normal);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.service-card:hover {
  transform: translateY(-10px);
}
.service-img-wrapper img {
  transition: transform 0.6s ease;
}
.service-card:hover .service-img-wrapper img {
  transform: scale(1.1);
}
.service-title {
  transition: color var(--transition-fast);
}
.service-card:hover .service-title {
  color: var(--primary-color) !important;
}
.read-more-visible {
  opacity: 1;
  transform: translateX(0);
  transition: var(--transition-normal);
  display: inline-block;
}
.service-card:hover .read-more-visible {
  color: var(--primary-dark) !important;
  transform: translateX(5px);
}

/* =======
   Projects Section
   ======= */
.project-filters .nav-link {
  color: var(--dark-color);
  font-weight: 600;
  border: 1px solid transparent;
}
.project-filters .nav-link.active {
  background-color: var(--primary-color);
  color: white;
}
.project-filters .nav-link:hover:not(.active) {
  color: var(--primary-color);
  background-color: var(--primary-soft);
}
.project-card .project-img {
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.project-card:hover .project-img {
  transform: scale(1.1);
}
.project-overlay-visible {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(0, 35, 90, 0.8) 0%,
    transparent 100%
  );
  opacity: 1;
  transition: background var(--transition-normal);
}
.project-card:hover .project-overlay-visible {
  background: linear-gradient(
    to top,
    rgba(0, 35, 90, 0.95) 0%,
    rgba(200, 16, 46, 0.4) 100%
  );
}
.project-content {
  transform: translateY(0);
  transition: transform var(--transition-normal);
}
.project-card:hover .project-content {
  transform: translateY(-5px);
}

/* =======
   Industries Section
   ======= */
.industry-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
}
.hover-bg-primary:hover {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  transform: translateY(-5px);
}
.industry-card:hover .industry-icon {
  color: white !important;
}

/* =======
   Clients Carousel
   ======= */
.client-slider-container {
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}
.client-slider {
  width: max-content;
  animation: scroll 20s linear infinite;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  } /* Requires duplicating logos in HTML or JS to work seamlessly */
}
.hover-opacity-100:hover {
  opacity: 1 !important;
  color: var(--primary-color) !important;
}

/* =======
   Testimonials
   ======= */
#testimonialCarousel .carousel-item {
  transition: transform 0.6s ease-in-out;
}

/* =======
   CTA Section
   ======= */
.cta-section {
  background: url("../images/projects_showcase.png") center/cover fixed;
}
.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 35, 90, 0.9),
    rgba(200, 16, 46, 0.8)
  );
}
.pulse-btn {
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: pulse-white 2s infinite;
}
@keyframes pulse-white {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* =======
   Contact Section
   ======= */
.contact-card-bg-shape {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}
.form-control,
.form-select {
  padding: 1rem 1.25rem;
}
.form-floating > label {
  padding-left: 1.25rem;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(200, 16, 46, 0.25);
  background-color: white !important;
}

/* =======
   Footer
   ======= */
.footer-logo {
  max-width: 200px;
}
.social-icon {
  width: 40px;
  height: 40px;
}
.hover-text-white:hover {
  color: var(--primary-color) !important;
}

/* =======
   WhatsApp Float Button
   ======= */
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 100;
  animation: float-wa 3s ease-in-out infinite;
}
.whatsapp-icon-bg {
  width: 60px;
  height: 60px;
  animation: pulse-green 2s infinite;
  transition: background-color 0.3s;
}
@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
@keyframes float-wa {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.whatsapp-float:hover .whatsapp-icon-bg {
  background-color: #1ebe57 !important;
}
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-icon-bg {
    width: 50px;
    height: 50px;
    font-size: 0.8em;
  }
}

/* =======
   Utilities
   ======= */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* ==========Breadcrumb Banner========== */
.page-banner {
  position: relative;
  min-height: 340px;
  background: url("../images/banner.jpg") center center/cover no-repeat;
  overflow: hidden;
}

.page-banner-overlay {
  background: rgba(0, 0, 0, 0.65);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-content h1 {
  font-family: "Outfit", sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.breadcrumb-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
}

.breadcrumb-nav a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb-nav a:hover {
  color: #f97316;
}

.breadcrumb-nav span {
  color: #ffffff;
}

.breadcrumb-nav .active {
  color: #f97316;
  font-weight: 600;
}

/* Responsive */

@media (max-width: 991px) {
  .page-banner,
  .page-banner-overlay {
    min-height: 280px;
  }

  .banner-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 576px) {
  .page-banner,
  .page-banner-overlay {
    min-height: 240px;
  }

  .banner-content h1 {
    font-size: 32px;
  }

  .breadcrumb-nav {
    font-size: 15px;
  }

   .banner-content{
      padding-top: 60px;
    }
}

.service-cards-section {
  margin-top: 40px;
  margin-bottom: 80px;
}
.service-cards-section {
  background: #fff;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.service-card-img {
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: 0.5s;
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-card-content {
  padding: 25px;
}

.service-card-content h3 {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #1a1f24;
}

.service-card-content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #212529bf;
}

@media (max-width: 991px) {
  .service-card-img img {
    height: 220px;
  }

  .service-card-content h3 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .service-card-img img {
    height: 200px;
  }
}

/*========Team Page Section======== */

.team-page-section {
  padding: 44px 0;
  margin-top: 40px;
  margin-bottom: 80px;
}

/* Card */
.team-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Image */
.team-img {
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.08);
}

/* Content */
.team-content {
  padding: 25px 20px 30px;
}

.team-content h3 {
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #1a1f24;
  margin-bottom: 8px;
}

.team-content span {
  display: block;
  color: #c8102e;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/*========Tablet======== */

@media (max-width: 991px) {
  .team-page-section {
    padding: 30px 0 70px;
  }

  .team-img img {
    height: 300px;
  }

  .team-content {
    padding: 22px 18px 28px;
  }

  .team-content h3 {
    font-size: 20px;
  }

  .team-content span {
    font-size: 14px;
  }
}

/*========Mobile======== */

@media (max-width: 767px) {
  .team-page-section {
    padding: 20px 0 60px;
  }

  .team-card {
    border-radius: 16px;
  }

  .team-img img {
    height: 260px;
  }

  .team-content {
    padding: 20px 15px 25px;
  }

  .team-content h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .team-content span {
    font-size: 13px;
  }
}

/*========Small Mobile======== */

@media (max-width: 480px) {
  .team-img img {
    height: 230px;
  }

  .team-content h3 {
    font-size: 17px;
  }

  .team-content span {
    font-size: 12px;
  }
}

/* =========Industry Section========= */

.industry-section {
  padding: 44px 0;
  margin-top: 40px;
  margin-bottom: 80px;
}

.industry-card {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

/* Card Hover Only */

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Icon */

.industrys-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #c8102e;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

/* No Hover Effect On Icon */

.industrys-icon i {
  font-size: 30px;
  color: #fff;
}

/* Content */

.industry-card h3 {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #1a1f24;
  margin-bottom: 15px;
  line-height: 1.4;
}

.industry-card p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(33, 37, 41, 0.75);
  margin: 0;
}

/* =========Tablet========= */

@media (max-width: 991px) {
  .industry-section {
    padding: 30px 0 70px;
  }

  .industry-card {
    padding: 30px;
  }

  .industrys-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
  }

  .industrys-icon i {
    font-size: 28px;
  }

  .industry-card h3 {
    font-size: 22px;
  }

  .industry-card p {
    font-size: 14px;
  }
}

/* =========Mobile========= */

@media (max-width: 767px) {
  .industry-section {
    padding: 20px 0 60px;
  }

  .industry-card {
    padding: 25px;
    text-align: center;
  }

  .industrys-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
  }

  .industrys-icon i {
    font-size: 24px;
  }

  .industry-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .industry-card p {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* =========Small Mobile========= */

@media (max-width: 480px) {
  .industry-card {
    padding: 20px;
  }

  .industry-card h3 {
    font-size: 18px;
  }

  .industry-card p {
    font-size: 13px;
  }
}

/*=======Clients Page======= */

.clients-page-section {
  padding: 44px 0;
  margin-top: 40px;
  margin-bottom: 80px;
}

.clients-heading {
  margin-bottom: 60px;
}

.clients-heading span {
  display: block;
  color: #c8102e;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}

.clients-heading h2 {
  font-family: "Outfit", sans-serif;
  font-size: 45px;
  font-weight: 600;
  color: #1a1f24;
  margin-bottom: 20px;
}

.clients-heading p {
  max-width: 700px;
  margin: auto;
  color: #212529bf;
  font-size: 16px;
  line-height: 1.8;
}

/* Cards */

.client-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px 20px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.client-card img {
  height: 100px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 25px;
  transition: 0.4s;
}

/* .client-card h4 {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #1a1f24;
  margin: 0;
  transition: 0.4s;
} */

/* Hover */

.client-card:hover {
  background: #c8102e;
  transform: translateY(-8px);
}

.client-card:hover h4 {
  color: #fff;
}

.client-card:hover img {
  transform: scale(1.08);
}

/* Tablet */

@media (max-width: 991px) {
  .clients-heading h2 {
    font-size: 42px;
  }

  .client-card h4 {
    font-size: 24px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .clients-page-section {
    padding: 20px 0 60px;
  }

  .clients-heading {
    margin-bottom: 40px;
  }

  .clients-heading span {
    font-size: 18px;
  }

  .clients-heading h2 {
    font-size: 32px;
  }

  .clients-heading p {
    font-size: 15px;
  }

  .client-card {
    padding: 30px 20px;
  }

  .client-card img {
    height: 80px;
  }

  .client-card h4 {
    font-size: 20px;
  }
}

.gallery-section {
  padding: 44px 0;
  margin-top: 40px;
  margin-bottom: 80px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  /* box-shadow:0 10px 30px rgba(0,0,0,.08); */
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.modal-content img {
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 8%;
}

@media (max-width: 991px) {
  .gallery-item img {
    height: 260px;
  }
}

@media (max-width: 767px) {
  .gallery-section {
    padding: 20px 0 60px;
  }

  .gallery-item img {
    height: 220px;
  }
}

.contact-section {
  padding: 44px 0;
  margin-top: 40px;
  margin-bottom: 80px;
}

.about-company-section {
  padding: 44px 0;
  margin-top: 40px;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  width: 100%;
  border-radius: 20px;
  height: 600px;
  object-fit: cover;
}

.experience-box {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: #c8102e;
  color: #fff;
  padding: 20px 30px;
  border-radius: 15px;
}

.experience-box h2 {
  font-size: 48px;
  font-weight: 600;
  margin: 0;
}

.experience-box p {
  margin: 0;
}

.about-tag {
  color: #c8102e;
  font-weight: 600;
  font-size: 18px;
}

.about-title {
  font-family: "Outfit", sans-serif;
  font-size: 45px;
  font-weight: 600;
  margin: 15px 0 20px;
  color: #1a1f24;
}

@media (max-width: 767.98px) {
  .about-title {
    font-size: 35px;
  }
}

.about-desc {
  color: #212529bf;
  line-height: 1.8;
  margin-bottom: 30px;
}

.feature-box {
  background: #fff;
  border-radius: 15px;
  padding: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-box i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #c8102e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-points {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.about-points li {
  margin-bottom: 12px;
}

.about-points li::before {
  content: "✓";
  color: #c8102e;
  font-weight: 600;
  margin-right: 10px;
}

.industry-banner {
  position: relative;
  background: #00163d;
  padding: 40px 0;
  overflow: hidden;
  margin-bottom: 60px;
}

.industry-banner-title {
  text-align: center;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 45px;
  font-weight: 600;
  margin-bottom: 30px;
}

/* Slider */

.industry-slider {
  width: 100%;
  overflow: hidden;
}

.industry-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: industryScroll 20s linear infinite;
}

.industry-track:hover {
  animation-play-state: paused;
}

@keyframes industryScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-280px * 4));
  }
}

/* Box */

.industry-banner-box {
  background: #c8102e;
  width: 260px;
  min-height: 90px;
  padding: 15px 20px;
  flex: 0 0 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-align: center;
  color: #fff;
  transition: 0.4s;
  border-radius: 10px;
}

.industry-banner-box:hover {
  transform: translateY(-6px);
}

.industry-banner-box i {
  font-size: 30px;
  color: #fff;
  flex-shrink: 0;
}

.industry-banner-box span {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  word-break: break-word;
}

/* Tablet */

@media (max-width: 991px) {
  .industry-banner-title {
    font-size: 38px;
  }

  .industry-banner-box {
    width: 240px;
    flex: 0 0 240px;
    min-height: 85px;
  }

  .industry-banner-box span {
    font-size: 18px;
  }

  @keyframes industryScroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-260px * 4));
    }
  }
}

/* Mobile */

@media (max-width: 767px) {
  .industry-banner {
    padding: 40px 0;
  }

  .industry-banner-title {
    font-size: 30px;
    margin-bottom: 25px;
  }

  .industry-banner-box {
    width: 220px;
    flex: 0 0 220px;
    min-height: 80px;
    padding: 12px 15px;
  }

  .industry-banner-box i {
    font-size: 24px;
  }

  .industry-banner-box span {
    font-size: 16px;
  }

  @keyframes industryScroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-240px * 4));
    }
  }
}

.faq-section {
  margin-bottom: 100px;
  /* padding: 44px; */
}

.faq-subtitle {
  display: block;
  color: #c8102e;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.faq-title {
  font-family: "Outfit", sans-serif;
  font-size: 45px;
  font-weight: 600;
  color: #1a1f24;
  margin-bottom: 20px;
}

.faq-desc {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 16px;
}

.faq-btn {
  display: inline-block;
  background: #c8102e;
  color: #fff;
  text-decoration: none;
  padding: 15px 35px;
  font-weight: 600;
  transition: 0.4s;
  border-radius: 10px;
}

.faq-btn:hover {
  color: #fff;
  background: #e57900;
}

.custom-faq .accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 0;
  overflow: hidden;
}

.custom-faq .accordion-button {
  background: #fff;
  font-size: 18px;
  font-weight: 500;
  color: #00163d;
  box-shadow: none;
  padding: 20px 25px;
}

.custom-faq .accordion-button:not(.collapsed) {
  background: #c8102e;
  color: #fff;
}

.custom-faq .accordion-body {
  padding: 20px 25px;
  line-height: 1.8;
  color: #555;
}

.custom-faq .accordion-button:focus {
  box-shadow: none;
}

/* Tablet */

@media (max-width: 991px) {
  .faq-title {
    font-size: 40px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-title {
    font-size: 30px;
  }

  .faq-subtitle {
    font-size: 18px;
  }

  .faq-desc {
    font-size: 15px;
  }

  .custom-faq .accordion-button {
    font-size: 16px;
    padding: 15px 18px;
  }
}

.service-details-section {
  padding: 44px 0;
  margin-top: 40px;
  margin-bottom: 80px;
}

.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-link {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 20px 22px;
  text-decoration: none;
  color: #1a1f24;
  font-size: 16px;
  font-weight: 500;

  display: flex;
  justify-content: space-between;
  align-items: center;

  transition: 0.4s;
}

.service-link:hover {
  background: #00163d;
  color: #fff;
}

.service-link.active {
  background: #c8102e;
  color: #fff;
  border-color: #c8102e;
}

.service-main-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
}

.service-content {
  margin-top: 35px;
}

.service-content h2 {
  font-family: "Outfit", sans-serif;
  font-size: 35px;
  font-weight: 500;
  color: #1a1f24;
  margin-bottom: 25px;
}

.service-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #212529bf;
  margin-bottom: 20px;
}

.service-features {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-item {
  background: #f8f9fa;
  padding: 18px 20px;
  border-radius: 12px;
  font-weight: 500;
}

.feature-item i {
  color: #c8102e;
  margin-right: 10px;
}

/* Tablet */

@media (max-width: 991px) {
  .service-main-img img {
    height: 350px;
  }

  .service-content h2 {
    font-size: 34px;
  }

  .service-features {
    grid-template-columns: 1fr;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .service-details-section {
    padding: 40px 0 60px;
  }

  .service-link {
    padding: 16px 18px;
    font-size: 16px;
  }

  .service-main-img img {
    height: 250px;
  }

  .service-content h2 {
    font-size: 28px;
  }

  .service-content p {
    font-size: 15px;
    line-height: 1.8;
  }
}

.service-contact-box {
  margin-top: 40px;
  background: #00163d;
  padding: 30px;
  border-radius: 20px;
  color: #fff;
}

.service-contact-box h4 {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 30px;
  position: relative;
}

.service-contact-box h4::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #c8102e;
  position: absolute;
  left: 0;
  bottom: -10px;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

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

.contact-item i {
  width: 45px;
  height: 45px;
  background: #c8102e;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.contact-item h6 {
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

.contact-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.7;
}

/* Mobile */

@media (max-width: 767px) {
  .service-contact-box {
    padding: 25px;
  }

  .service-contact-box h4 {
    font-size: 24px;
  }

  .contact-item {
    gap: 12px;
  }

  .contact-item i {
    width: 40px;
    height: 40px;
  }
}

.brochure-box {
  margin-top: 40px;
  margin-bottom: 40px;
}

.brochure-box h4,
.service-sidebar h4 {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #00163d;
  margin-bottom: 30px;
  position: relative;
}

.brochure-box h4::after,
.service-sidebar h4::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #c8102e;
  position: absolute;
  left: 0;
  bottom: -10px;
}

.brochure-download {
  display: flex;
  align-items: center;
  text-decoration: none;
  border: 1px solid #c8102e;
  overflow: hidden;
  transition: 0.3s;
  border-radius: 5px;
}

.brochure-icon {
  width: 60px;
  height: 60px;
  background: #c8102e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
}

.brochure-download span {
  flex: 1;
  padding: 0 15px;
  color: #c8102e;
  font-size: 15px;
  font-weight: 500;
}

.download-icon {
  color: #c8102e;
  font-size: 18px;
  padding-right: 18px;
}

.brochure-download:hover {
  background: #00163d;
  border-color: #00163d;
}

.brochure-download:hover span,
.brochure-download:hover .download-icon {
  color: #fff;
}

.contact-item a,
.contact-item p {
  word-break: break-word;
  overflow-wrap: break-word;
}
