/* --- Floating WhatsApp Button UI --- */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 30px; /* Neeche se kitna upar rakhna hai */
  left: 30px; /* Screen ke left side mein rahega. Right chahiye toh 'left' hata kar 'right: 30px;' kar dein */
  z-index: 9999;
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Outer Wrapper for Pulse Animation */
.whatsapp-icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: #25d366; /* Official WhatsApp Green */
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  position: relative;
  transition: all 0.3s ease;
}

/* The Magic Pulse Animation */
.whatsapp-icon-wrapper::before,
.whatsapp-icon-wrapper::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 2px solid #25d366;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  animation: whatsappPulse 2s infinite;
  z-index: -1;
}

.whatsapp-icon-wrapper::after {
  animation-delay: 0.5s; /* Second ring starts slightly later */
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Hover Effect on Icon */
.floating-whatsapp-btn:hover .whatsapp-icon-wrapper {
  transform: scale(1.1);
  background-color: #1ebe57; /* Slightly darker green on hover */
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* --- The Chat Bubble (Tooltip) --- */
.whatsapp-chat-bubble {
  background-color: #ffffff;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  padding: 8px 15px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-left: 15px; /* Icon se doori */
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  pointer-events: none; /* Mouse uspar jaye to gadbad na ho */
  position: relative;
}

/* Bubble Pointing Triangle */
.whatsapp-chat-bubble::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid #ffffff;
}

/* Show Bubble on Hover */
.floating-whatsapp-btn:hover .whatsapp-chat-bubble {
  opacity: 1;
  transform: translateX(0);
}

.our-beneifts-scetion-1 {
  padding: 40px 0;
  background-color: #fdffff;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* --- The 3-Column Centered Cards --- */
.our-beneifts-scetion-1-card {
  background: #ffffff;
  padding: 45px 30px;
  border-radius: 16px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 100%;
  border: 1px dashed #dc3545;
  border-bottom: 4px solid #dc3545;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  display: flex;
  flex-direction: column;
  align-items: center; /* Icon aur content ko center karega */
  text-align: center; /* Text ko center karega */
}

/* Transparent Outline Number */
.card-stroke-number {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 70px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.04);
  z-index: -1;
  transition: all 0.5s ease;
}

/* The Magic Organic Icon Shape */
.card-organic-icon {
  width: 70px;
  height: 70px;
  background: rgba(227, 37, 38, 0.08);
  color: #e32526;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  transition: all 0.5s ease;
}

/* Content */
.our-beneifts-scetion-1-card .card-title {
  font-size: 21px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  transition: 0.3s;
}

.our-beneifts-scetion-1-card .card-text {
  font-size: 15px;
  color: #000;
  line-height: 1.6;
  margin: 0;
}

/* --- Hover Mechanics --- */
.our-beneifts-scetion-1-card:hover {
  transform: translateY(-10px);
  border-bottom-color: #e32526;
  box-shadow: 0 15px 35px rgba(227, 37, 38, 0.08);
}

.our-beneifts-scetion-1-card:hover .card-organic-icon {
  background: #e32526;
  color: #ffffff;
  border-radius: 50%;
  transform: rotate(360deg);
}

.our-beneifts-scetion-1-card:hover .card-title {
  color: #e32526;
}

.our-beneifts-scetion-1-card:hover .card-stroke-number {
  -webkit-text-stroke: 1.5px rgba(227, 37, 38, 0.15);
  transform: scale(1.1) rotate(5deg);
}

.ecomm-pannel-section-1 {
  padding: 40px 0;
  background-color: #eae9e9; /* Very subtle light background */
  overflow: hidden;
}

/* Header UI */
.ecomm-pannel-section-1-tag {
  color: #e32526;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: rgba(227, 37, 38, 0.08);
  padding: 8px 20px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 20px;
}

.ecomm-pannel-section-1-title {
  font-size: 38px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}

.ecomm-pannel-section-1-title span {
  color: #e32526;
}

/* --- Interactive Tabs UI --- */
.ecomm-pannel-section-1-tabs {
  gap: 20px; /* Space between buttons */
}

.ecomm-pannel-section-1-tabs .nav-link {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 16px 25px;
  display: flex;
  align-items: center;
  text-align: left;
  color: #1a1a1a;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.ecomm-pannel-section-1-tabs .nav-link .tab-icon {
  width: 50px;
  height: 50px;
  background: rgba(26, 26, 26, 0.05);
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 12px;
  margin-right: 20px;
  transition: 0.4s;
}

.ecomm-pannel-section-1-tabs .nav-link .tab-text {
  font-size: 16px;
  font-weight: 600;
  flex: 1;
}

.ecomm-pannel-section-1-tabs .nav-link .tab-arrow {
  opacity: 0;
  transform: translateX(-10px);
  transition: 0.4s;
  color: #ffffff;
}

/* Hover State */
.ecomm-pannel-section-1-tabs .nav-link:hover:not(.active) {
  border-color: #e32526;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(227, 37, 38, 0.1);
}

/* ACTIVE STATE (The Eye-Catching Part) */
.ecomm-pannel-section-1-tabs .nav-link.active {
  background: #e32526;
  color: #ffffff;
  border-color: #e32526;
  transform: scale(1.05) translateX(10px); /* Pops out towards the image */
  box-shadow: 0 20px 40px rgba(227, 37, 38, 0.3);
}

.ecomm-pannel-section-1-tabs .nav-link.active .tab-icon {
  background: #ffffff;
  color: #e32526;
}

.ecomm-pannel-section-1-tabs .nav-link.active .tab-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* --- Image Content UI --- */
.ecomm-pannel-section-1-img-wrapper {
  position: relative;
  border-radius: 20px;
  padding: 10px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.03);
  /* Subtle background glow behind the image */
}

.ecomm-pannel-section-1-img-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: #e32526;
  filter: blur(80px);
  opacity: 0.1;
  z-index: 0;
}

.ecomm-pannel-section-1-img-wrapper img {
  border-radius: 15px;
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
}

/* Custom Animation for Tab Switch */
.tab-pane.active {
  animation: slideUpFade 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes slideUpFade {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.expert-ecommerce-app-section {
  padding: 40px 0;
  background-color: #f8f9fa;
  overflow: hidden; /* Badi image section ke bahar na jaye isliye */
}

/* Header Styling */
.expert-ecommerce-app-section-tag {
  color: #e32526;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: inline-block;
}

.expert-ecommerce-app-section-title {
  font-size: 40px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.3;
}

.expert-ecommerce-app-section-title span {
  color: #e32526;
}

/* --- Colorful Feature Cards --- */
.expert-ecommerce-app-section-card {
  padding: 20px 15px;
  border-radius: 15px;
  margin-bottom: 30px;
  display: flex;
  align-items: center; /* Icon aur text ko vertically center karne ke liye */
  gap: 15px; /* Gap thoda adjust kiya */
  color: #ffffff;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

/* Modern Vivid Gradients */
.card-gradient-1 {
  background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
}
.card-gradient-2 {
  background: linear-gradient(135deg, #00b4db 0%, #0083b0 100%);
}
.card-gradient-3 {
  background: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
}
.card-gradient-4 {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}
.card-gradient-5 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.card-gradient-6 {
  background: linear-gradient(135deg, #ee0979 0%, #ff6a00 100%);
}

.expert-ecommerce-app-section-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.expert-ecommerce-app-section-icon {
  width: 50px; /* Icon thoda chota kiya text ke liye */
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #ffffff;
  flex-shrink: 0;
  backdrop-filter: blur(5px);
  transition: transform 0.4s ease;
}

.expert-ecommerce-app-section-card:hover .expert-ecommerce-app-section-icon {
  transform: rotate(15deg) scale(1.1);
  background: #ffffff;
  color: #1a1a1a;
}

.expert-ecommerce-app-section-info {
  flex: 1;
  overflow: hidden; /* Bahar nikalne se rokne ke liye */
}

/* 🟢 HEADING ONE LINE FIX 🟢 */
.expert-ecommerce-app-section-info h3 {
  font-size: 16px; /* Ek line ke liye perfect size */
  font-weight: 700;
  margin-bottom: 5px;
  color: #ffffff;
  white-space: nowrap; /* Heading ko break hone se rokega */
  overflow: hidden;
  text-overflow: ellipsis; /* Agar screen choti hui toh aage "..." lag jayega, UI kharab nahi hoga */
  letter-spacing: -0.3px;
}

.expert-ecommerce-app-section-info p {
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

/* --- 🟢 CENTER IMAGE BADI KARNE KA FIX 🟢 --- */
.expert-ecommerce-app-section-center-img {
  position: relative;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.expert-ecommerce-app-section-img-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px; /* Glow bhi bada kiya */
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(227, 37, 38, 0.2) 0%,
    transparent 70%
  );
  z-index: 1;
  border-radius: 50%;
  filter: blur(40px);
}

.expert-ecommerce-app-section-center-img img {
  position: relative;
  z-index: 5;
  border-radius: 20px;

  /* Yahan changes kiye hain */
  width: 105%; /* 130% se kam karke 105% kiya taaki text na chupe */
  margin-left: -2.5%; /* Margin adjust kiya center karne ke liye */
  max-width: none;
}

/* Smooth Floating Animation */
.floating-animation {
  animation: floatUpDown 6s ease-in-out infinite;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-25px);
  }
  100% {
    transform: translateY(0px);
  }
}

.ecommerce-premium-section {
  padding: 40px 0;
  background-color: #080808; /* Deep Premium Black */
  font-family: "Plus Jakarta Sans", sans-serif;
  position: relative;
  overflow: hidden;
}

/* Background Glowing Orbs */
.bg-glow-1,
.bg-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: #e32526;
  filter: blur(150px);
  border-radius: 50%;
  opacity: 0.15;
  z-index: 0;
  animation: drift 15s infinite alternate ease-in-out;
}
.bg-glow-1 {
  top: -10%;
  left: -10%;
}
.bg-glow-2 {
  bottom: -10%;
  right: -10%;
  animation-delay: -5s;
}

.relative-z {
  position: relative;
  z-index: 2;
}

/* Header Typography */
.ecommerce-badge {
  display: inline-block;
  color: #e32526;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: rgba(227, 37, 38, 0.1);
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(227, 37, 38, 0.2);
  margin-bottom: 20px;
}

.ecommerce-main-title {
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.ecommerce-main-title span {
  background: linear-gradient(to right, #e32526, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ecommerce-main-desc {
  color: #a0a0a0;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- Premium Spotlight Cards --- */
.ecommerce-premium-card {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: 20px;
  position: relative;
  height: 100%;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1;
}

/* The Spotlight Hover Effect */
.ecommerce-premium-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(227, 37, 38, 0.15),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

/* Watermark Numbering */
.card-watermark {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 80px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.02);
  z-index: -1;
  transition: all 0.5s ease;
}

.card-icon {
  width: 65px;
  height: 65px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 25px;
  transition: all 0.4s ease;
}

.card-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.card-content p {
  color: #888888;
  font-size: 16px;
  text-align: justify;
  line-height: 1.7;
  margin: 0;
}

/* --- Hover Mechanics --- */
.ecommerce-premium-card:hover {
  transform: translateY(-10px);
  border-color: rgba(227, 37, 38, 0.4);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(227, 37, 38, 0.1);
}

.ecommerce-premium-card:hover::before {
  opacity: 1;
}

.ecommerce-premium-card:hover .card-icon {
  background: #e32526;
  border-color: #e32526;
  box-shadow: 0 10px 20px rgba(227, 37, 38, 0.3);
  transform: scale(1.1) rotate(-5deg);
}

.ecommerce-premium-card:hover .card-watermark {
  color: rgba(227, 37, 38, 0.05);
  transform: scale(1.1);
}

@keyframes drift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.mission-vision-section-1-features {
  padding: 40px 0;
  background-color: #ffffff;
}

.mission-vision-section-1-feature-card {
  background: #ffffff;
  padding: 50px 30px;
  border-radius: 0 40px 0 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  border: 1px dashed #e32526;
  height: 100%;
}

/* Icon Styling */
.mission-vision-section-1-feature-icon-wrapper {
  width: 80px;
  height: 80px;
  background: #1a1a1a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  border-radius: 18px;
  margin-bottom: 25px;
  position: relative;
  transition: all 0.5s ease;
}

.mission-vision-section-1-feature-icon-wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #e32526;
  border-radius: 18px;
  z-index: -1;
  top: 5px;
  left: 5px;
  transition: all 0.5s ease;
}

.mission-vision-section-1-feature-info h3 {
  font-size: 26px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.mission-vision-section-1-feature-info p {
  color: #000;
  text-align: justify;
  line-height: 1.7;
  margin: 0;
  font-size: 16px;
}

/* Decorative Background Number */
.mission-vision-section-1-feature-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 60px;
  font-weight: 900;
  color: rgba(227, 37, 38, 0.05);
  transition: all 0.5s ease;
}

/* --- Hover Effects --- */
.mission-vision-section-1-feature-card:hover {
  transform: translateY(-15px);
  border-color: #e32526;
  box-shadow: 0 30px 60px rgba(227, 37, 38, 0.1);
}

.mission-vision-section-1-feature-card:hover
  .mission-vision-section-1-feature-icon-wrapper {
  background: #e32526;
  transform: rotateY(180deg);
}

.mission-vision-section-1-feature-card:hover
  .mission-vision-section-1-feature-icon-wrapper::after {
  background: #1a1a1a;
  top: 0;
  left: 0;
}

.mission-vision-section-1-feature-card:hover h3 {
  color: #e32526;
}

.mission-vision-section-1-feature-card:hover
  .mission-vision-section-1-feature-number {
  color: rgba(227, 37, 38, 0.15);
  transform: scale(1.2);
}

.mission-vision-section-1 {
  padding: 40px 0;
  background-color: #ffffff;
  overflow: hidden;
}

.mission-vision-section-1-tag {
  color: #e32526;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 15px;
  display: inline-block;
  border-left: 3px solid #e32526;
  padding-left: 10px;
}

.mission-vision-section-1-title {
  font-size: 38px;
  font-weight: 700;
  text-align: justify;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 25px;
}

.mission-vision-section-1-title span {
  color: #e32526;
}

.mission-vision-section-1-vision-text {
  font-size: 18px;
  font-weight: 500;
  color: #1a1a1a;
  text-align: justify;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.mission-vision-section-1-desc {
  color: #000;
  text-align: justify;
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 16px;
}

/* CEO Branding */
.mission-vision-section-1-author {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

.mission-vision-section-1-name {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.mission-vision-section-1-designation {
  color: #e32526;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
}

/* Right Side Image Styling */
.mission-vision-section-1-image-wrapper {
  position: relative;
  padding: 20px;
  z-index: 1;
}

.mission-vision-section-1-main-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.mission-vision-section-1-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 90%;
  background-color: #1a1a1a;
  border-radius: 20px;
  z-index: -1;
  transform: translate(20px, -20px);
}

.mission-vision-section-1-experience-badge {
  position: absolute;
  bottom: 37px;
  left: 1px;
  background: #e32526;
  color: #fff;
  padding: 18px 30px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 15px;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(227, 37, 38, 0.3);
  animation: float 4s infinite ease-in-out;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.counter-section-1 {
  padding: 40px 0;
  background-color: #1a1a1a; /* Dark Theme */
  position: relative;
  overflow: hidden;
}

.counter-section-1-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 25px 20px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.counter-section-1-icon {
  width: 70px;
  height: 70px;
  background: rgba(227, 37, 38, 0.1); /* Theme Red Alpha */
  color: #e32526; /* Theme Red */
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  transition: all 0.4s ease;
  border: 1px dashed #e32526;
}

.counter-section-1-number {
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
  display: block;
}

.counter-section-1-text {
  font-size: 16px;
  color: #cccccc;
  font-weight: 500;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Hover Effects --- */
.counter-section-1-card:hover {
  transform: translateY(-10px);
  background: rgba(227, 37, 38, 0.05);
  border-color: #e32526;
  box-shadow: 0 15px 35px rgba(227, 37, 38, 0.15);
}

.counter-section-1-card:hover .counter-section-1-icon {
  background: #e32526;
  color: #ffffff;
  transform: rotateY(360deg);
  box-shadow: 0 0 20px rgba(227, 37, 38, 0.4);
}

.counter-section-1-card:hover .counter-section-1-number {
  color: #e32526;
}

.breadcrumb-section {
  padding: 20px 0;
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect ke liye */
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Dark Gradient Overlay - Isse image ke upar text clear dikhega */
.breadcrumb-section-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.95) 0%,
    rgba(26, 26, 26, 0.8) 50%,
    rgba(227, 37, 38, 0.2) 100%
  );
  z-index: 1;
}

/* --- Content Styling --- */
.breadcrumb-section-content {
  position: relative;
  z-index: 10;
}

.breadcrumb-section-title {
  font-size: 50px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: -15px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Glassmorphism Breadcrumb List */
.breadcrumb-section-list {
  display: inline-flex;
  align-items: center;
  list-style: none;
  padding: 12px 35px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
}

.breadcrumb-section-list li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb-section-list li a:hover {
  color: #e32526;
}

.breadcrumb-section-separator {
  margin: 0 15px;
  color: #e32526;
}

.breadcrumb-section-list li.active {
  color: #e32526;
  font-weight: 700;
}

/* --- Animations --- */
.animate-fade-up {
  animation: fadeUp 1.2s cubic-bezier(0.2, 0.6, 0.2, 1) forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Background Floating Shape for "Feel" */
.breadcrumb-section-shape-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(227, 37, 38, 0.2) 0%,
    transparent 70%
  );
  filter: blur(50px);
  z-index: 2;
  animation: floatShape 10s infinite alternate ease-in-out;
}

@keyframes floatShape {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(-50px, 50px);
  }
}

.our-trusted-client-section {
  padding: 40px 0;
  background-color: #222;
}

.our-trusted-client-section-title-area {
  text-align: center;
  margin-bottom: 50px;
}

.our-trusted-client-section-title-area h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.our-trusted-client-section-title-area h2 span {
  color: #e32526;
}

/* Grid Layout */
.our-trusted-client-section-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  padding: 10px;
}

/* Logo Card */
.our-trusted-client-section-logos {
  background: #fff;
  /* border: 1px solid #f0f0f0; */
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.our-trusted-client-section-logos img {
  max-width: 100%;
  max-height: 55px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

/* Hover Effects */
.our-trusted-client-section-logos:hover {
  border-color: #e32526;
  background-color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  z-index: 1;
}

.our-trusted-client-section-logos:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Avatar Icon Container Styling */
.client-testimonial-section-avatar {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #f8f9fa; /* Light background for the icon */
  border: 2px solid #e32526; /* Bytegates Red Border */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px; /* Icon size inside the circle */
  color: #e32526; /* Icon color matching theme */
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08); /* Soft shadow for depth */
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hover Effect: Pure professional feel */
.client-testimonial-section-card:hover .client-testimonial-section-avatar {
  background: #e32526; /* Circle turns Red */
  color: #ffffff; /* Icon turns White */
  transform: scale(1.1) rotate(5deg); /* Slight pop and tilt */
  box-shadow: 0 10px 20px rgba(227, 37, 38, 0.2);
}
.client-testimonial-section-wrapper {
  background-color: #f9f9f9;
  padding: 10px 0;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

.client-testimonial-section-badge {
  background: rgba(227, 37, 38, 0.1);
  color: #e32526;
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
}

.client-testimonial-section-title {
  font-size: 40px;
  font-weight: 800;
  margin-top: 15px;
  color: #1a1a1a;
}

.client-testimonial-section-red {
  color: #e32526;
}

/* Swiper Padding */
.client-testimonial-section-swiper {
  padding: 60px 20px !important;
  margin-top: -48px;
}

.client-testimonial-section-card {
  border-radius: 25px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 416px;
  z-index: 1;
  overflow: hidden;
  border: 1px solid #f0f0f0;
}

.client-testimonial-section-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100px;
  background: #e32526;
  clip-path: polygon(100% 0, 100% 45%, 50% 100%, 0 45%, 0 0);
  opacity: 0.05;
  z-index: -1;
}

.client-testimonial-section-content {
  padding: 40px;
}

.client-testimonial-section-quote-top {
  font-size: 35px;
  color: #e32526;
  margin-bottom: 20px;
  opacity: 0.2;
}

.client-testimonial-section-text {
  font-size: 16px;
  color: #000;
  text-align: justify;
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
  min-height: 90px;
}

.client-testimonial-section-divider {
  width: 50px;
  height: 3px;
  background: #e32526;
  margin-bottom: 25px;
  border-radius: 10px;
}

/* Client Meta */
.client-testimonial-section-client-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.client-testimonial-section-avatar img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.client-testimonial-section-name {
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  font-size: 18px;
}

.client-testimonial-section-desig {
  font-size: 13px;
  color: #e32526;
  font-weight: 500;
}

.client-testimonial-section-rating {
  margin-top: 5px;
  color: #ffb400;
  font-size: 11px;
}

/* Background Large Floating Quote */
.client-testimonial-section-quote-bg {
  position: absolute;
  bottom: -10px;
  right: 20px;
  font-size: 100px;
  color: rgba(227, 37, 38, 0.05);
  z-index: -1;
}

/* Hover Effect */
.client-testimonial-section-card:hover {
  transform: translateY(-10px);
  border-color: #e32526;
}

/* Custom Swiper Pagination */
.client-testimonial-section-dots .swiper-pagination-bullet-active {
  background: #e32526 !important;
  width: 30px;
  border-radius: 10px;
}

.footer-bt-section {
  background-color: #0b0c10; /* Deep Dark Background */
  color: #ffffff;
  padding: 30px 0 0 0;
  font-family: "Poppins", sans-serif;
  position: relative;
}

/* Background Highlight */
.footer-bt-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
}

.footer-bt-logo {
  max-width: 200px;
  margin-bottom: 25px;
}
.footer-logo {
  max-width: 70%;
}

.footer-bt-about {
  color: #999;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Contact Info Styling */
.footer-bt-contact-info .info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.footer-bt-contact-info .info-item i {
  color: #e32526;
  font-size: 18px;
  margin-top: 5px;
}

.footer-bt-contact-info .info-item span {
  color: #eee;
  font-size: 14px;
}

.footer-bt-contact-info .info-item small {
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
}

/* Widget Titles */
.widget-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.widget-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: #e32526;
}

/* Link Lists */
.footer-bt-links {
  list-style: none;
  padding: 0;
}

.footer-bt-links li {
  margin-bottom: 12px;
}

.footer-bt-links li a {
  color: #999;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-bt-links li a:hover {
  color: #e32526;
  padding-left: 8px;
}

/* Cities Grid Style */
.cities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

/* Social Icons */
.footer-bt-social {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.footer-bt-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bt-social a:hover {
  background: #e32526;
  transform: translateY(-5px);
}

/* Copyright Bar */
.footer-bt-bottom {
  background-color: #050507;
  padding: 25px 0;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bt-bottom p {
  margin: 0;
  color: #666;
  font-size: 15px;
}

/* Container for Select to add custom arrow */
.contact-book-call-bt-1-select-wrapper {
  position: relative;
  width: 100%;
}

.form-select-bt {
  width: 100%;
  background: rgba(255, 255, 255, 0.05) !important; /* Dark glassy look */
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding: 15px 20px !important;
  border-radius: 12px !important;
  color: #ffffff !important;
  font-size: 14px !important;
  appearance: none; /* Default browser arrow hataane ke liye */
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 55px;
}

.form-select-bt option {
  background-color: #1a1a1d !important;
  color: #fff !important;
  padding: 10px;
}

/* Custom Down Arrow Icon */
.select-arrow-bt {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #e32526; /* Bytegates Red */
  pointer-events: none; /* Icon ke upar click select par hi jaye */
  font-size: 12px;
}

/* Focus state */
.form-select-bt:focus {
  border-color: #e32526 !important;
  background: rgba(255, 255, 255, 0.08) !important;
  outline: none;
  box-shadow: 0 0 10px rgba(227, 37, 38, 0.2);
}

/* Hover effect */
.form-select-bt:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}
.contact-book-call-bt-1-container {
  padding: 40px 0;
  background-color: #0b0c10; /* Deep Dark */
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

/* Background Subtle Blur */
.contact-book-call-bt-1-container::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(227, 37, 38, 0.1);
  filter: blur(80px);
  border-radius: 50%;
}

/* Main Wrapper Styling */
.contact-book-call-bt-1-main-wrapper {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* -------------------------------------
   Left Content Box
   ------------------------------------- */
.contact-book-call-bt-1-info-box {
  padding: 60px 50px;
}

.contact-book-call-bt-1-badge {
  display: inline-block;
  color: #e32526;
  background: rgba(227, 37, 38, 0.1);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.contact-book-call-bt-1-title {
  color: #ffffff;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
}

.contact-book-call-bt-1-red {
  color: #e32526;
}

.contact-book-call-bt-1-desc {
  color: #aaa;
  text-align: justify;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.contact-book-call-bt-1-points {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.point-item-bt {
  color: #ffffff;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.point-item-bt i {
  color: #e32526;
}

/* -------------------------------------
   Right Form Card
   ------------------------------------- */
.contact-book-call-bt-1-form-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  padding: 60px 50px;
  border-radius: 0 30px 30px 0;
  height: 100%;
}

.form-header-bt {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 35px;
}

.globe-icon-bt {
  font-size: 32px;
  color: #e32526;
  animation: rotateGlobe 10s linear infinite;
}

@keyframes rotateGlobe {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.form-header-bt h4 {
  color: #fff;
  font-weight: 700;
  margin: 0;
}

/* Inputs Styling */
.form-group-bt input,
.form-group-bt textarea,
.form-select-bt {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 13px 20px;
  border-radius: 12px;
  color: #eee !important;
  font-size: 14px;
  margin-bottom: 10px;
  transition: 0.3s;
}

.form-group-bt input:focus,
.form-group-bt textarea:focus {
  border-color: #e32526;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.form-select-bt option {
  background-color: #1a1a1d;
  color: #fff;
}

/* Submit Button */
.contact-book-call-bt-1-submit-btn {
  width: 100%;
  background: #e32526;
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: 0.4s;
  margin-top: 20px;
}

.contact-book-call-bt-1-submit-btn:hover {
  background: #ffffff;
  color: #e32526;
  transform: translateY(-5px);
}

.contact-us-form-bt-1-container {
  padding: 40px 0;
  background-color: #fdfdfd;
  font-family: "Poppins", sans-serif;
}

/* Trusted Clients Grid */
.contact-us-form-bt-1-badge {
  background: rgba(227, 37, 38, 0.1);
  color: #e32526;
  padding: 6px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 13px;
}

.contact-us-form-bt-1-client-title {
  font-weight: 700;
  margin-top: 10px;
  color: #333;
}

.contact-us-form-bt-1-client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
  align-items: center;
}

.client-item-bt {
  filter: grayscale(100%);
  opacity: 0.5;
  transition: 0.3s ease;
  text-align: center;
}

.client-item-bt:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

.client-item-bt img {
  max-width: 100px;
  height: auto;
}

/* -------------------------------------
   Main Contact Wrapper (Reference Style)
   ------------------------------------- */
.contact-us-form-bt-1-main-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

/* Left Info Box */
.contact-us-form-bt-1-info-box {
  background-color: #0d3b66; /* Deep Blue from reference image */
  padding: 60px 50px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-us-form-bt-1-info-box h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.info-details-bt {
  margin-bottom: 40px;
}

.info-item-bt {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.info-item-bt i {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 5px;
}

.info-item-bt p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.social-links-bt {
  display: flex;
  gap: 25px;
}

.social-links-bt a {
  color: #fff;
  font-size: 18px;
  opacity: 0.7;
  transition: 0.3s;
}

.social-links-bt a:hover {
  opacity: 1;
  color: #e32526;
}

/* Right Form Area */
.contact-us-form-bt-1-form-area {
  background-color: #ffffff;
  padding: 60px 50px;
}

.contact-us-form-bt-1-form-area h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
}

.contact-us-form-bt-1-form-area p {
  color: #888;
  margin-bottom: 40px;
}

.form-control-bt {
  width: 100%;
  padding: 15px 0;
  border: none;
  border-bottom: 2px solid #f0f0f0;
  font-size: 16px;
  transition: 0.3s;
  outline: none;
}

.form-control-bt:focus {
  border-bottom-color: #0d3b66;
}

.contact-us-form-bt-1-submit {
  margin-top: 20px;
  background: linear-gradient(
    to right,
    #4ea8de,
    #5e60ce
  ); /* Blue gradient from image */
  color: #fff;
  border: none;
  padding: 15px 50px;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 10px 20px rgba(78, 168, 222, 0.3);
  transition: 0.3s;
}

.contact-us-form-bt-1-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(78, 168, 222, 0.4);
}

.client-mssg-section-1-container {
  background-color: #ece9e9;
  padding: 40px 0 10px;
  font-family: "Poppins", sans-serif;
  position: relative;
}

.client-mssg-section-1-badge {
  background: rgba(227, 37, 38, 0.1);
  color: #e32526;
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.client-mssg-section-1-title {
  font-size: 40px;
  font-weight: 700;
  margin-top: 15px;
  color: #1a1a1a;
}

.client-mssg-section-1-red {
  color: #e32526;
}

/* Swiper Spacing */
.client-mssg-section-1-swiper {
  padding: 70px 20px !important;
}

/* -------------------------------------
   The Artistic Card Design
   ------------------------------------- */
.client-mssg-section-1-card {
  background: #ffffff;
  padding: 50px 40px 40px 40px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  border: 1px dashed #252525;
  transition: all 0.4s ease;
  z-index: 1;
  height: 350px;
  /* Subtle background red flare */
  overflow: visible;
}

/* Background Curve Shape (Image jaisa cut) */
.client-mssg-section-1-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: linear-gradient(
    135deg,
    rgba(227, 37, 38, 0.05) 0%,
    transparent 70%
  );
  border-radius: 0 30px 0 100%;
  z-index: -1;
}

.client-mssg-section-1-quote-icon {
  position: absolute;
  top: -25px;
  left: 40px;
  width: 60px;
  height: 60px;
  background: #e32526;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(227, 37, 38, 0.3);
  transform: rotate(-10deg);
  transition: 0.4s;
}

.client-mssg-section-1-card:hover .client-mssg-section-1-quote-icon {
  transform: rotate(0deg) scale(1.1);
}

.client-mssg-section-1-text {
  font-size: 16px;
  color: #222;
  text-align: justify;
  line-height: 1.8;
  margin-bottom: 35px;
  font-style: italic;
}

/* User Meta Area */
.client-mssg-section-1-user-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 25px;
  border-top: 1px dashed #232323;
}

.client-mssg-section-1-avatar img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.client-mssg-section-1-user-details h6 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
}

.client-mssg-section-1-user-details span {
  display: block;
  font-size: 13px;
  color: #e32526;
  font-weight: 500;
  margin-bottom: 5px;
}

.client-mssg-section-1-rating {
  color: #ffb400;
  font-size: 12px;
}

/* Custom Pagination dots */
.client-mssg-section-1-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
  transition: 0.3s;
}

.client-mssg-section-1-pagination .swiper-pagination-bullet-active {
  background: #e32526 !important;
  width: 30px;
  border-radius: 10px;
}

.clent-section-bt-1-container {
  background: #f9f7f8; /* Soft sky blue light bg */
  padding: 40px 0;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

/* Achievement Cards */
.clent-section-bt-1-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px dashed #e32526;
}

.clent-section-bt-1-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(227, 37, 38, 0.1);
  cursor: pointer;
}

.clent-section-bt-1-icon {
  width: 70px;
  height: 70px;
  background: #f8faff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  transition: 0.4s;
}

.clent-section-bt-1-icon img {
  width: 100%;
  transition: 0.4s;
}

.clent-section-bt-1-number {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0;
}

.clent-section-bt-1-label {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 0;
}

/* Logo Showcase Area */
.clent-section-bt-1-logos-area {
  margin-top: 70px;
  text-align: center;
}

.clent-section-bt-1-logo-title {
  font-size: 16px;
  text-transform: uppercase;
  color: #000;
  letter-spacing: 2px;
  margin-bottom: 40px;
  font-weight: 600;
}

.clent-section-bt-1-logo-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  position: relative;
  background: #fff;
}

/* Continuous Marquee Animation */
.clent-section-bt-1-logo-track {
  display: flex;
  width: max-content;
  animation: scrollInfinite 20s linear infinite;
}

.clent-section-bt-1-logo-item {
  width: 250px;
  padding: 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: 0.4s;
}

.clent-section-bt-1-logo-item:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

.clent-section-bt-1-logo-item img {
  max-width: 180px;
  height: auto;
  object-fit: contain;
}
@keyframes scrollInfinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 6));
  }
}

/* Entrance Animations */
.clent-section-bt-1-card {
  opacity: 0;
  animation: slideUpFade 0.8s ease forwards;
}

.col-lg-4:nth-child(1) .clent-section-bt-1-card {
  animation-delay: 0.2s;
}
.col-lg-4:nth-child(2) .clent-section-bt-1-card {
  animation-delay: 0.4s;
}
.col-lg-4:nth-child(3) .clent-section-bt-1-card {
  animation-delay: 0.6s;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.technologies-we-do-bt-section {
  background-color: #ffffff;
  padding: 40px 0;
  font-family: "Poppins", sans-serif;
}

.technologies-we-do-bt-header {
  text-align: center;
  margin-bottom: 60px;
}

.technologies-we-do-bt-badge {
  background: rgba(227, 37, 38, 0.1);
  color: #e32526;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
}

.technologies-we-do-bt-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 15px;
}
.technologies-we-do-bt-red {
  color: #e32526;
}

/* Vertical Tabs Styling */
.technologies-we-do-bt-tabs {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 20px;
  border: 1px solid #eee;
}

.technologies-we-do-bt-tabs .nav-link {
  text-align: left;
  color: #444;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 8px;
  transition: 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.technologies-we-do-bt-tabs .nav-link i {
  font-size: 12px;
  opacity: 0;
  transition: 0.3s;
}

.technologies-we-do-bt-tabs .nav-link.active {
  background: #e32526 !important;
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(227, 37, 38, 0.2);
}

.technologies-we-do-bt-tabs .nav-link.active i {
  opacity: 1;
  transform: translateX(5px);
}

/* Content Card Grid */
.technologies-we-do-bt-content-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  min-height: 400px;
  border: 1px solid #f0f0f0;
}

.technologies-we-do-bt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 25px;
}

.tech-item {
  text-align: center;
  padding: 11px 10px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #f1f1f1;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: fadeInTech 0.5s ease forwards;
}

.tech-item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 12px;
  transition: 0.4s;
}

.tech-item span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #555;
}

/* Hover Effects */
.tech-item:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: #e32526;
  box-shadow: 0 15px 30px rgba(227, 37, 38, 0.1);
}

.tech-item:hover img {
  transform: rotate(10deg);
}

/* Animation */
@keyframes fadeInTech {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.tab-pane.active .tech-item {
  animation: fadeInTech 0.5s ease forwards;
}

.our-services-section-details-1-modern-tabs {
  background-color: #f8f9fa;
  padding: 40px 0;
  font-family: "Poppins", sans-serif;
}

.our-services-section-details-1-header {
  text-align: center;
  margin-bottom: 50px;
}

.our-services-section-details-1-badge {
  color: #e32526;
  background: rgba(227, 37, 38, 0.08);
  padding: 8px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
}

.our-services-section-details-1-title {
  font-size: 40px;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 15px;
}
.our-services-section-details-1-red {
  color: #e32526;
}

/* TOP NAV FIXED FOR 6 BUTTONS */
.our-services-section-details-1-top-nav {
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
  margin-top: -17px;
  border: none;
}

.our-services-section-details-1-top-nav .nav-link {
  background: #fff !important;
  color: #222 !important;
  border: 1px solid #eee !important;
  padding: 12px 20px !important;
  font-weight: 600;
  font-size: 14px;
  border-radius: 12px !important;
  transition: 0.3s;
}

.our-services-section-details-1-top-nav .nav-link.active {
  background: #e32526 !important;
  color: #fff !important;
  box-shadow: 0 8px 15px rgba(227, 37, 38, 0.2);
  transform: translateY(-3px);
}

/* CONTENT BOX */
.our-services-section-details-1-main-card {
  background: #fff;
  padding: 50px;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

/* ANIMATIONS */
.tab-pane.active .our-services-section-details-1-text-content {
  animation: slideInL 0.8s ease forwards;
}
.tab-pane.active .our-services-section-details-1-image-box {
  animation: slideInR 0.8s ease forwards;
}

@keyframes slideInL {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInR {
  from {
    opacity: 0;
    transform: scale(0.9) translateX(40px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateX(0);
  }
}

.our-services-section-details-1-text-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}
.our-services-section-details-1-text-content p {
  color: #000;
  text-align: justify;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.our-services-section-details-1-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.our-services-section-details-1-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #000;
}
.our-services-section-details-1-features i {
  color: #e32526;
  font-size: 18px;
}

.our-services-section-details-1-cta {
  display: inline-block;
  background: #e32526;
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
}
.our-services-section-details-1-cta:hover {
  color: #fff !important;
}
.our-services-section-details-1-image-box img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-1-bt-container {
  position: relative;
  padding: 40px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Poppins", sans-serif;
  /* Premium Office/Tech Background Image */
  background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=1920&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax Effect */
  overflow: hidden;
  z-index: 1;
}

/* Dark Moody Overlay (Background ko premium look dene ke liye) */
.cta-1-bt-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 12, 0.85); /* Deep dark tint */
  z-index: 2;
}

/* -------------------------------------
   Animated Glowing Background Orbs
   ------------------------------------- */
.cta-1-bt-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px); /* Glowing effect */
  opacity: 0.6;
  z-index: 3;
  animation: ctaOrbFloat 10s infinite alternate ease-in-out;
}

/* Brand Red Glowing Light */
.cta-1-bt-orb-red {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -50px;
}

/* Secondary Tech Glowing Light */
.cta-1-bt-orb-dark {
  background: #ff4d4d;
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: -50px;
  animation-delay: -5s; /* Alag timing par ghumega */
}

/* -------------------------------------
   Glassmorphism Card (The Magic Part)
   ------------------------------------- */
.cta-1-bt-glass-card {
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 40px 50px 10px;
  text-align: center;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.4s ease,
    border-color 0.4s ease;
  /* Entrance Animation */
  opacity: 0;
  animation: ctaGlassPopUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.2s;
}

/* Card Hover Effect */
.cta-1-bt-glass-card:hover {
  transform: translateY(-10px);
  border-color: rgba(227, 37, 38, 0.4); /* Border turns slightly red */
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(227, 37, 38, 0.1);
}

/* -------------------------------------
   Content Styling
   ------------------------------------- */
.cta-1-bt-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(227, 37, 38, 0.15);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 24px;
  border-radius: 50px;
  border: 1px solid rgba(227, 37, 38, 0.3);
  margin-bottom: 25px;
}

.cta-1-bt-title {
  color: #ffffff;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* Highlighted Text with Gradient */
.cta-1-bt-highlight {
  background: linear-gradient(90deg, #ffffff, #e32526);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-1-bt-desc {
  color: #cccccc;
  font-size: 18px;
  max-width: 500px;
  margin: 0 auto 45px auto;
  line-height: 1.6;
}

/* -------------------------------------
   Interactive Phone Box
   ------------------------------------- */
.cta-1-bt-contact-box {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: rgba(0, 0, 0, 0.4);
  padding: 12px 25px 12px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 45px;
  transition: all 0.4s ease;
  cursor: pointer;
}

/* Hover par box Red ho jayega */
.cta-1-bt-contact-box:hover {
  background: rgba(227, 37, 38, 0.1);
  border-color: #e32526;
}

.cta-1-bt-icon-wrapper {
  width: 40px;
  height: 40px;
  background: #e32526; /* Brand Red */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(227, 37, 38, 0.5);
  animation: ctaRing 2s infinite; /* Continuous ringing animation */
}

.cta-1-bt-phone {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 1px;
}

/* -------------------------------------
   Premium Button Styling
   ------------------------------------- */
.cta-1-bt-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff; /* White Button */
  color: #e32526; /* Red Text */
  padding: 15px 45px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.cta-1-bt-btn i {
  transition: transform 0.3s ease;
}

.cta-1-bt-btn:hover {
  background: #e32526; /* Hover par Red background */
  color: #ffffff; /* Hover par White text */
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(227, 37, 38, 0.4);
}

.cta-1-bt-btn:hover i {
  transform: translateX(6px) rotate(-45deg); /* Arrow cool style me aage jayega */
}

/* ========================================================
   KEYFRAMES (ANIMATIONS)
   ======================================================== */
@keyframes ctaGlassPopUp {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes ctaOrbFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(50px, 50px) scale(1.1);
  }
}

@keyframes ctaRing {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  10%,
  30%,
  50% {
    transform: rotate(-15deg) scale(1.1);
  }
  20%,
  40% {
    transform: rotate(15deg) scale(1.1);
  }
  60% {
    transform: rotate(0deg) scale(1);
  }
}

.about-us-bt-container {
  background-color: #ffffff; /* Clean white background */
  padding: 40px 5%;
  font-family: "Poppins", sans-serif;
  overflow: hidden; /* Animations ko section ke andar rakhne ke liye */
}

.about-us-bt-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.about-us-bt-left {
  flex: 1;
  max-width: 550px;
}

.about-us-bt-badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(227, 37, 38, 0.1);
  color: #e32526; /* Brand Red */
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  /* Animation */
  opacity: 0;
  animation: fadeSlideUp 0.8s ease-out 0.2s forwards;
}

.about-us-bt-heading {
  color: #1a1a1a;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
  /* Animation */
  opacity: 0;
  animation: fadeSlideUp 0.8s ease-out 0.4s forwards;
}

.about-us-bt-highlight-red {
  color: #e32526;
}

.about-us-bt-highlight-dark {
  color: #1a1a1a;
  font-weight: 700;
}

.about-us-bt-paragraph {
  color: #000;
  text-align: justify;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  /* Animation */
  opacity: 0;
  animation: fadeSlideUp 0.8s ease-out 0.6s forwards;
}

.about-us-bt-action {
  margin-top: 35px;
  /* Animation */
  opacity: 0;
  animation: fadeSlideUp 0.8s ease-out 0.8s forwards;
}

.about-us-bt-btn {
  display: inline-block;
  background-color: #e32526;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(227, 37, 38, 0.3);
  transition: all 0.3s ease;
}

.about-us-bt-btn i {
  margin-left: 8px;

  transition: transform 0.3s ease;
}

.about-us-bt-btn:hover {
  background-color: #c21e1f;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(227, 37, 38, 0.4);
}

.about-us-bt-btn:hover i {
  transform: translateX(5px);
}

/* -------------------------------------
   Right Side: 2-Image Overlap Styling
   ------------------------------------- */
.about-us-bt-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.about-us-bt-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 550px;
  min-height: 500px;
}

/* Red Background Decor Box */
.about-us-bt-decor-box {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 70%;
  height: 80%;
  background-color: #e32526;
  border-radius: 20px;
  z-index: 0;
  /* Animation */
  opacity: 0;
  animation: slideInRight 1s ease-out 0.5s forwards;
}

/* Main Image (Badi Image) */
.about-us-bt-img-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  z-index: 1;
  /* Animation */
  opacity: 0;
  animation: slideInRight 1s ease-out 0.7s forwards;
}

/* Secondary Image (Choti Overlapping Image) */
.about-us-bt-img-2 {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 60%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  border: 10px solid #ffffff; /* White border jisse overlap ekdum clear dikhe */
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  z-index: 2;
  /* Entrance + Floating Animation */
  opacity: 0;
  animation: popInFloat 4s ease-in-out 1.2s infinite alternate forwards;
}

/* Floating Experience Badge */
.about-us-bt-exp-badge {
  position: absolute;
  top: 50px;
  left: -30px;
  background: #ffffff;
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 3;
  /* Animation */
  opacity: 0;
  animation: fadeSlideUp 0.8s ease-out 1s forwards;
}

.about-us-bt-exp-num {
  color: #e32526;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.about-us-bt-exp-text {
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

/* ========================================================
   KEYFRAMES FOR ANIMATIONS
   ======================================================== */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes popInFloat {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  20% {
    opacity: 1;
    transform: scale(1) translateY(0);
  } /* Entrance finish */
  100% {
    opacity: 1;
    transform: scale(1) translateY(-15px);
  } /* Floating motion */
}

.services-section-img-bt {
  background: #f4f6f9;
  padding: 40px 5%;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

/* Header Styles */
.services-header-img-bt {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeDown 0.8s ease-out forwards;
}

.services-subtitle-img-bt {
  display: inline-block;
  padding: 6px 15px;
  background-color: rgba(227, 37, 38, 0.1);
  color: #e32526;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.services-title-img-bt {
  color: #1a1a1a;
  font-size: 38px;
  font-weight: 700;
}

.text-highlight-img-bt {
  color: #e32526;
}

/* -------------------------------------
   Grid Layout: STRICTLY 1 ROW, 4 COLUMNS
   ------------------------------------- */
.services-grid-img-bt {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}

/* -------------------------------------
   Individual Card Styling & ENTRANCE ANIMATION
   ------------------------------------- */
.service-card-img-bt {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  border-bottom: 4px solid transparent;

  /* ENTRANCE ANIMATION SETTINGS */
  opacity: 0;
  transform: translateY(50px);
  animation: cardSlideUpFade 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* Har card ek-ek karke aayega (Staggered Effect) */
.service-card-img-bt:nth-child(1) {
  animation-delay: 0.1s;
}
.service-card-img-bt:nth-child(2) {
  animation-delay: 0.3s;
}
.service-card-img-bt:nth-child(3) {
  animation-delay: 0.5s;
}
.service-card-img-bt:nth-child(4) {
  animation-delay: 0.7s;
}

/* HOVER EFFECT ON CARD */
.service-card-img-bt:hover {
  box-shadow: 0 20px 40px rgba(227, 37, 38, 0.08); /* Red tint shadow */
  border-bottom: 4px solid #e32526; /* Bottom Red Line */
}

.service-image-box-bt {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
}

.service-img-real-bt {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smooth Image Animation */
}

.service-card-img-bt:hover .service-img-real-bt {
  transform: scale(1.15) rotate(1deg); /* Halki si rotation ke sath premium zoom */
}

.service-category-badge-bt {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: #e32526;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(227, 37, 38, 0.3);
  z-index: 2;
}

.service-content-bt {
  padding: 30px;
  text-align: left;
  transition: transform 0.4s ease; /* Text container ke liye smooth transition */
}

.service-card-img-bt:hover .service-content-bt {
  transform: translateY(-8px);
}

.service-name-img-bt {
  color: #1a1a1a;
  font-size: 20px; /* 4 columns ke hisaab se font thoda adjust kiya hai */
  font-weight: 700;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

/* Hover par heading ka color Red ho jayega */
.service-card-img-bt:hover .service-name-img-bt {
  color: #e32526;
}

.service-desc-img-bt {
  color: #000;
  font-size: 15px;
  text-align: justify;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-link-img-bt {
  display: inline-block;
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-link-img-bt i {
  margin-left: 5px;
  color: #e32526;
  transition: transform 0.3s ease;
}

.service-link-img-bt:hover {
  color: #e32526;
}

.service-card-img-bt:hover .service-link-img-bt i {
  transform: translateX(8px); /* Arrow thoda zyada aage slide karega */
}

/* ========================================================
   KEYFRAMES FOR ENTRANCE ANIMATIONS
   ======================================================== */
@keyframes cardSlideUpFade {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.slider-section-1-bt-swiper {
  width: 100%;
  height: 470px;
  background: linear-gradient(135deg, #000000 0%, #151515 100%) !important;
  font-family: "Poppins", sans-serif;
  overflow: hidden; /* Bahar nikalte hue animation ko hide karne ke liye */
}

.slider-section-1-bt-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  background: transparent !important;
}

/* Content Wrapper inside Slide */
.slider-section-1-bt-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  width: 100%;
}

/* Left Side: Text Styles */
.slider-section-1-bt-left {
  flex: 1;
  max-width: 600px;
}

.slider-section-1-bt-badge {
  display: inline-block;
  padding: 8px 16px;
  background-color: rgba(227, 37, 38, 0.15);
  color: #ff3b3c;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.slider-section-1-bt-title {
  font-size: 48px;
  line-height: 1.2;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 20px;
}

.slider-section-1-bt-highlight {
  color: #e32526;
}

.slider-section-1-bt-desc {
  font-size: 18px;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 35px;
}

/* Buttons */
.slider-section-1-bt-actions {
  display: flex;
  gap: 20px;
}

.slider-section-1-bt-btn-primary {
  background-color: #e32526;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.slider-section-1-bt-btn-primary:hover {
  background-color: #c21e1f;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 37, 38, 0.6);
}

.slider-section-1-bt-btn-secondary {
  background-color: transparent;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
}

.slider-section-1-bt-btn-secondary:hover {
  background-color: #ffffff;
  color: #1f2024;
}

/* Right Side: Image Styles (Added Float Animation Here) */
.slider-section-1-bt-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  /* Image hamesha dheere-dheere float karti rahegi */
  animation: floatMotion 4s ease-in-out infinite;
}

.slider-section-1-bt-img {
  width: 100%;
  max-width: 550px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

/* ========================================================
   💥 AWESOME MOTION ANIMATIONS START HERE 💥
   ======================================================== */

/* Sabhi elements ko by default hide rakha hai taaki smooth entry ho */
.slider-section-1-bt-badge,
.slider-section-1-bt-title,
.slider-section-1-bt-desc,
.slider-section-1-bt-actions,
.slider-section-1-bt-img {
  opacity: 0;
}

/* Jab slide active hogi, toh sequentially (ek ke baad ek) animate honge */
.swiper-slide-active .slider-section-1-bt-badge {
  animation: fadeSlideUp 0.6s ease-out 0.1s forwards;
}
.swiper-slide-active .slider-section-1-bt-title {
  animation: fadeSlideUp 0.6s ease-out 0.3s forwards;
}
.swiper-slide-active .slider-section-1-bt-desc {
  animation: fadeSlideUp 0.6s ease-out 0.5s forwards;
}
.swiper-slide-active .slider-section-1-bt-actions {
  animation: fadeSlideUp 0.6s ease-out 0.7s forwards;
}
.swiper-slide-active .slider-section-1-bt-img {
  /* Image right se slide hokar aayegi */
  animation: slideInRight 0.8s ease-out 0.4s forwards;
}

/* 1. Fade & Slide Up Animation for Text */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 2. Slide In Right Animation for Image Entrance */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* 3. Continuous Floating Motion for Image (Lagatar chalne wala) */
@keyframes floatMotion {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* ======================================================== */

/* Custom Pagination Dots */
.slider-section-1-bt-pagination {
  text-align: center;
  width: 100%;
  margin-top: 20px;
  position: absolute;
  bottom: 6px;
  z-index: 10;
}
.slider-section-1-bt-pagination .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background-color: #ffffff !important;
  opacity: 0.4 !important;
  border-radius: 50% !important;
  margin: 0 6px !important;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.slider-section-1-bt-pagination .swiper-pagination-bullet-active {
  background-color: #e32526 !important;
  opacity: 1 !important;
  transform: scale(1.3);
}

@media (max-width: 1024px) {
  .services-grid-img-bt {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991px) {
  .mission-vision-section-1-title {
    font-size: 32px;
  }
  .mission-vision-section-1-image-wrapper {
    margin-top: 60px;
  }
  .mission-vision-section-1-experience-badge {
    left: 20px;
  }
  .counter-section-1-number {
    font-size: 32px;
  }
  .contact-book-call-bt-1-main-wrapper {
    border-radius: 20px;
  }
  .contact-book-call-bt-1-form-card {
    border-radius: 0 0 20px 20px;
  }
  .contact-book-call-bt-1-info-box {
    padding: 40px;
  }
  .contact-book-call-bt-1-form-card {
    padding: 40px;
  }

  .contact-us-form-bt-1-info-box,
  .contact-us-form-bt-1-form-area {
    padding: 40px 30px;
  }

  .technologies-we-do-bt-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .our-services-section-details-1-top-nav {
    flex-wrap: wrap;
  }
  .our-services-section-details-1-image-box {
    margin-top: 30px;
  }

  .about-us-bt-content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .about-us-bt-left {
    max-width: 100%;
    margin-bottom: 50px;
  }
  .about-us-bt-heading {
    font-size: 32px;
  }
  .about-us-bt-right {
    justify-content: center;
    width: 100%;
  }
  .about-us-bt-image-wrapper {
    min-height: 450px;
  }
  .about-us-bt-exp-badge {
    left: 10px;
    top: 20px;
    padding: 15px;
  }
  .about-us-bt-img-2 {
    width: 65%;
    border-width: 6px;
  }

  .slider-section-1-bt-swiper {
    height: auto;
    padding: 60px 0 80px 0;
  }
  .slider-section-1-bt-content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .slider-section-1-bt-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .slider-section-1-bt-title {
    font-size: 36px;
  }
  .slider-section-1-bt-right {
    justify-content: center;
    margin-top: 40px;
  }

  .our-beneifts-scetion-1-title {
    font-size: 34px;
  }
  .our-beneifts-scetion-1-card {
    padding: 35px 20px;
  }

  .cta-1-bt-title {
    font-size: 38px;
  }
  .cta-1-bt-phone {
    font-size: 32px;
  }
  .cta-1-bt-glass-card {
    padding: 50px 30px;
  }

  .our-trusted-client-section-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .ecomm-pannel-section-1-tabs .nav-link.active {
    transform: scale(1.02) translateX(0); /* Disable pop-out on mobile */
  }
  .ecomm-pannel-section-1-img-wrapper {
    margin-top: 30px;
  }
  .ecomm-pannel-section-1-title {
    font-size: 30px;
  }
  .expert-ecommerce-app-section-title {
    font-size: 30px;
  }
  /* Mobile par image ko normal size mein wapas laane ke liye */
  .expert-ecommerce-app-section-center-img img {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .clent-section-bt-1-title {
    font-size: 30px;
  }
  .clent-section-bt-1-card {
    padding: 25px;
  }

  .cta-1-bt-container {
    padding: 80px 5%;
    background-attachment: scroll;
  }
  .cta-1-bt-glass-card {
    padding: 40px 20px;
    border-radius: 20px;
  }
  .cta-1-bt-title {
    font-size: 30px;
  }
  .cta-1-bt-desc {
    font-size: 16px;
  }
  .cta-1-bt-contact-box {
    padding: 8px 25px 8px 8px;
    gap: 15px;
  }
  .cta-1-bt-icon-wrapper {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .cta-1-bt-phone {
    font-size: 26px;
  }
  .cta-1-bt-btn {
    padding: 15px 35px;
    font-size: 16px;
  }
  .client-mssg-section-1-card {
    padding: 40px 25px;
  }
  .footer-bt-section {
    padding-top: 60px;
  }
  .footer-bt-bottom {
    margin-top: 50px;
  }

  .our-trusted-client-section-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .our-trusted-client-section-logos {
    height: 90px;
    padding: 15px;
  }
  .mission-vision-section-1-feature-card {
    padding: 40px 20px;
  }
  .floating-whatsapp-btn {
    bottom: 20px;
    left: 20px;
  }
  .whatsapp-icon-wrapper {
    width: 50px;
    height: 50px;
    font-size: 30px;
  }
  .whatsapp-chat-bubble {
    display: none;
  }
}

@media (max-width: 500px) {
  .our-trusted-client-section-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .our-trusted-client-section-title-area h2 {
    font-size: 24px;
  }
  .slider-section-1-bt-badge {
    margin-top: 17px;
  }
  .slider-section-1-bt-title {
    font-size: 32px;
  }
  .slider-section-1-bt-desc {
    font-size: 16px;
    text-align: justify;
  }
  .slider-section-1-bt-actions {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .slider-section-1-bt-btn-primary,
  .slider-section-1-bt-btn-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
  }
  .slider-section-1-bt-right {
    margin-top: -25px;
  }
  .slider-section-1-bt-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0 auto 15px;
  }
  .services-grid-img-bt {
    grid-template-columns: 1fr;
  }
  .services-title-img-bt {
    font-size: 32px;
  }
  .services-section-img-bt {
    padding: 30px 5%;
  }
  .services-title-img-bt {
    font-size: 28px;
  }
  .about-us-bt-heading {
    font-size: 28px;
  }
  .about-us-bt-paragraph {
    font-size: 16px;
  }
  .about-us-bt-btn {
    font-size: 14px;
    padding: 10px 32px;
  }
  .about-us-bt-left {
    margin-bottom: -9px;
  }
  .about-us-bt-right {
    margin-bottom: -22px;
  }
  .cta-1-bt-container {
    padding: 30px 5%;
  }
  .cta-1-bt-title {
    font-size: 28px;
    text-align: justify;
  }
  .cta-1-bt-desc {
    font-size: 16px;
    text-align: justify;
  }
  .cta-1-bt-phone {
    font-size: 15px;
  }
  .cta-1-bt-contact-box {
    margin-bottom: 23px;
  }
  .cta-1-bt-icon-wrapper {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }
  .cta-1-bt-btn {
    padding: 11px 35px;
    font-size: 16px;
  }
  .our-services-section-details-1-modern-tabs {
    padding: 30px 0;
  }
  .our-services-section-details-1-main-card {
    margin-top: -26px;
  }
  .our-services-section-details-1-text-content h3 {
    font-size: 26px;
  }
  .our-services-section-details-1-text-content p {
    font-size: 16px;
  }
  .services-header-img-bt {
    margin-bottom: 30px;
  }
  .clent-section-bt-1-number {
    font-size: 26px;
  }
  .clent-section-bt-1-logos-area {
    margin-top: 40px;
  }
  .clent-section-bt-1-logo-item img {
    height: 100px;
  }
  .rts-section-gap {
    padding: 30px 0;
  }
  .contact-book-call-bt-1-title {
    font-size: 28px;
  }
  .footer-bt-section {
    padding-top: 20px;
  }
  .footer-logo {
    max-width: 60%;
  }
  .footer-bt-about {
    margin-top: 17px;
    text-align: justify;
  }
  .footer-bt-bottom {
    margin-top: 21px;
  }
  .breadcrumb-section {
    padding: 20px 0;
    padding-bottom: 7px;
  }
  .breadcrumb-section-title {
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: -3px;
  }
  .breadcrumb-section-list {
    padding: 0px 35px;
  }
  .counter-section-1 {
    padding: 30px 0;
  }
  .counter-section-1-card {
    padding: 30px 15px;
  }
  .counter-section-1 .row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 2px;
  }

  .counter-section-1-card {
    margin-bottom: 0;
    padding: 30px 15px;
  }

  .counter-section-1-number {
    font-size: 28px;
  }

  .counter-section-1-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  .mission-vision-section-1 {
    margin: 16px;
    padding: 30px 0 0;
  }
  .mission-vision-section-1-features {
    margin: 16px;
    padding: 30px 0;
  }
  .ecommerce-premium-section {
    padding: 30px 12px;
  }
  .ecommerce-main-title {
    font-size: 28px;
  }
  .ecommerce-premium-card {
    padding: 30px 20px;
  }
  .ecommerce-main-desc {
    text-align: justify;
  }
  .card-icon {
    width: 55px;
    height: 55px;
    font-size: 21px;
  }
  .ecomm-pannel-section-1-title {
    font-size: 28px;
  }
  .expert-ecommerce-app-section {
    padding: 30px 12px 7px;
  }
  .card-organic-icon {
    width: 55px;
    height: 55px;
    font-size: 21px;
  }
  .ecomm-pannel-section-1,
  .our-beneifts-scetion-1 {
    padding: 30px 12px;
  }
}
