/* ================= VIDEO CAROUSEL (FULL CSS) ================= */
.image-carousel-section {
  margin-top: 5px;
  position: relative;
}

/* IMAGE */
.carousel-image {
  width: 100%;
  height: 70vh;
  object-fit: cover;
}

/* DARK OVERLAY */
.carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* CENTER CAPTION */
.carousel-caption-custom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  max-width: 720px;
  z-index: 2;
  pointer-events: none;
}

.carousel-caption-custom h2 {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.carousel-caption-custom p {
  font-size: 1.1rem;
  color: #e5e7eb;
  margin-top: 10px;
}

/* INDICATORS */
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* CONTROLS */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: brightness(200%);
}

/* ✅ SAFE RTL SLIDE (AUTO WORKING) */
.carousel-inner {
  direction: rtl;
}

.carousel-item {
  direction: ltr;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .carousel-image {
    height: 60vh;
  }
}

@media (max-width: 768px) {
  .carousel-image {
    height: 50vh;
  }

  .carousel-caption-custom h2 {
    font-size: 1.6rem;
  }

  .carousel-caption-custom p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .carousel-image {
    height: 45vh;
  }
}











.services-section {
  background-color: #f8f9fa;
}

.card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.card-img-top {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-title {
  font-weight: 600;
  margin-top: 10px;
}

.card-text {
  font-size: 0.9rem;
  color: #555;
  margin: 10px 0 15px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  transition: transform 0.3s;
}

.btn:hover {
  transform: translateY(-3px);
}
.card-body .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px; /* icon-text spacing */
    flex: 1;
    margin: 0; /* remove any vertical spacing causing wrap */
    transition: transform 0.3s;
    white-space: nowrap; /* prevent buttons from wrapping */
}

.card-body .btn:hover {
    transform: translateY(-3px);
}

.btn i {
    font-size: 0.9rem; /* icon size */
    vertical-align: middle;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card .card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card .btn-group-fixed {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;  /* This ensures buttons stick to the bottom of card */
  justify-content: flex-start; /* Align buttons to left; change center/right if needed */
  perspective: 800px; /* 3D perspective */
}

.btn.effect {
  transform-style: preserve-3d; /* 3D effect */
  backface-visibility: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn.effect:hover {
  transform: rotateX(5deg) rotateY(5deg) scale(1.1); /* 3D pop on hover */
  box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}

#slide1{
    object-fit: fill;
}
#cart-1{
    object-fit: contain;
}



/* ABOUT SECTION */
.about-section {
  background-color: #f8f9fa;
}

.about-section .section-title {
  font-weight: 700;
  color: #0d1b2a;
}

.about-section p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #333;
}

.about-img img {
    width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-img img:hover {
  transform: scale(1.03);
    /* Shadow color change (blue industrial tone) */
  box-shadow: 0 18px 45px rgba(13, 110, 253, 0.25);

}





/* PROCESS ADVANTAGES SECTION */
.advantage-section {
  background: linear-gradient(180deg, #f8f9fa, #ffffff);
}

.advantage-section .section-title {
  font-weight: 700;
  color: #0d1b2a;
}

.advantage-section .section-subtitle {
  font-size: 15px;
  color: #555;
  max-width: 700px;
  margin: auto;
}

.adv-card {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  padding: 25px;
  border-radius: 12px;
     box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);

  transition: all 0.35s ease;
}

.adv-card h5 {
  font-size: 17px;
  font-weight: 600;
  color: #0d1b2a;
  margin-bottom: 12px;
}

.adv-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #333;
}

.adv-card:hover {
  transform: translateY(-6px);
 
    /* Shadow color change (blue industrial tone) */
  box-shadow: 0 18px 45px rgba(13, 110, 253, 0.25);

}





/* ===============================
   HOME CLIENTS SECTION
================================ */

.home-clients-grid {
  background: #f8f9fc;
   
}

/* Title */
.home-section-title {
  font-size: 32px;
  font-weight: 700;
  color: #1c2b4a;
}

.home-section-subtitle {
  max-width: 650px;
  margin: auto;
  font-size: 15px;
  color: #6c757d;
}

/* Client Card */
.client-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 32px 22px;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #1c2b4a;

  /* 👇 DEFAULT SHADOW (GRAY) */
 box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);


  transition: all 0.35s ease;
  cursor: pointer;
  will-change: transform, box-shadow;
}

/* Hover Effect */
.client-card:hover {
  transform: translateY(-6px);

  /* 👇 HOVER SHADOW COLOR */
  box-shadow: 0 14px 35px rgba(13, 110, 253, 0.45);

  color: #0d6efd;
}

/* Responsive Text */
@media (max-width: 576px) {
  .client-card {
    font-size: 15px;
    padding: 26px 18px;
  }
}





/* ===============================
   HOME CONTACT CTA – FINAL LOOK
================================ */
/* ================================
   CONTACT CTA – PREMIUM INDUSTRIAL
================================ */

.contact-cta {
  padding: 80px 0;
  background: #f4f6fb;
}

/* main box */
.cta-box {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  overflow: hidden;
}

/* accent strip */
.cta-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #0d6efd, #021b3a);
}

/* text */
.cta-title {
  font-size: 32px;
  font-weight: 700;
  color: #1c2b4a;
}

.cta-text {
  margin-top: 12px;
  max-width: 600px;
  font-size: 16px;
  color: #6c757d;
}

/* buttons */
.cta-btn {
  margin-left: 10px;
  margin-top: 10px;
  min-width: 180px;
  padding: 14px 26px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.35s ease;
}

/* whatsapp */
.btn-success {
  background: #25D366;
  border: none;
}

.btn-success:hover {
  background: #1ebe5d;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
}

/* primary hover */
.btn-primary:hover {
  box-shadow: 0 12px 30px rgba(13,110,253,0.45);
}

/* responsive */
@media (max-width: 768px) {
  .cta-box {
    padding: 40px 25px;
    text-align: center;
  }

  .cta-title {
    font-size: 26px;
  }

  .cta-btn {
    width: 100%;
    margin: 8px 0;
  }
}

.adv-card {
  padding: 30px;
  text-align: center;
}

.adv-icon {
  font-size: 40px;
  color: #0d6efd;
  margin-bottom: 15px;
  display: inline-block;
}

.adv-card h5 {
  margin-top: 10px;
  font-weight: 600;
}


