/* =================================== CUSTOM CSS - apna design yahan likhna Bootstrap ke baad load hota hai, isliye yahan ke rules Bootstrap ko override kar sakte hain =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--font-main);
  color: var(--text-dark);
}
:root {
  --navy: #1a1a4d;
  --navy-soft: #2b2b6b;
  --section-bg: #eef1f3;
  --gold: #f0b429;
  --wine: #7a1f2b;
  --text-dark: #232338;
  --text-muted: #6b7280;
  --font-main: "Poppins", sans-serif;
}
h1,
h2,
h3,
.brand-font {
  font-family: "Poppins", sans-serif;
}
/* ===== HEADER SECTION CSS ===== */
.top-contact-bar {
  background-color: #1a1a4d;
  padding: 10px 20px;
}
.top-contact-bar .contact-info a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin-right: 25px;
  white-space: nowrap;
}
.top-contact-bar .contact-info a i {
  margin-right: 6px;
  color: #ffffff;
}
.top-contact-bar .contact-info a:hover {
  color: #f40325;
}
.top-contact-bar .social-icons a {
  color: #1a1a4d;
  background-color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
  flex-shrink: 0;
}
.top-contact-bar .social-icons a:hover {
  background-color: #f40325;
  color: #ffffff;
}
/* Main Navbar */
.main-navbar {
  background-color: #ffffff;
  padding: 15px 20px 5px 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.main-navbar .site-logo {
  height: 65px;
  width: auto;
  max-width: 100%;
}
.main-navbar .nav-link {
  color: #333333;
  font-weight: 700;
  font-size: 14px;
  margin: 0 12px;
  text-transform: uppercase;
}
.main-navbar .nav-link.active,
.main-navbar .nav-link:hover {
  color: #f40325;
}
.main-navbar .dropdown-menu {
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.pay-now-btn {
  background: linear-gradient(135deg, #f40325, #4a1b6d);
  color: #ffffff;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 6px;
  border: none;
  white-space: nowrap;
}
.pay-now-btn:hover {
  opacity: 0.9;
  color: #ffffff;
}

/* ===== MEGA MENU DROPDOWN ===== */
.mega-menu {
  display: grid;
  /* hamesha grid rahega, dikhna/chupna opacity se control hoga */
  position: absolute;
  background-color: #1a1a4d;
  border: none;
  border-radius: 0;
  padding: 25px;
  min-width: 560px;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  /* Animation ke liye starting (hidden) state */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-15px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    visibility 0.35s ease;
}
.mega-menu.mega-menu-single {
  grid-template-columns: 1fr;
  min-width: 280px;
}
.mega-menu .dropdown-item {
  background-color: #ffffff;
  color: #1a1a4d;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 15px 20px;
  border-radius: 6px;
  white-space: normal;
  transition: 0.3s;
}
.mega-menu .dropdown-item:hover,
.mega-menu .dropdown-item:focus {
  background-color: #f40325;
  color: #ffffff;
}
/* ===== HERO SECTION V2 CSS ===== */
.hero-section-v2 {
  position: relative;
}
.hero-slide {
  position: relative;
  min-height: 640px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 10, 30, 0.85) 0%,
    rgba(4, 10, 30, 0.6) 45%,
    rgba(4, 10, 30, 0.25) 75%
  );
}
.hero-slide-inner {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}
/* Tag badge */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero-tag i {
  color: #3b9dff;
}
/* Heading */
.hero-v2-heading {
  color: #ffffff;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
}
.hero-v2-heading .highlight-blue {
  color: #3b9dff;
}
/* Paragraph */
.hero-v2-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 30px;
}
/* Stats row */
.hero-v2-stats {
  gap: 35px;
  margin-bottom: 35px;
}
.v2-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}
.v2-stat i {
  color: #3b9dff;
  font-size: 24px;
}
.v2-stat h4 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}
.v2-stat p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  margin: 0;
}
/* Buttons */
.hero-v2-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.v2-btn-primary {
  background-color: #2563eb;
  color: #ffffff;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.v2-btn-primary:hover {
  background-color: #f40325;
  color: #ffffff;
}
.v2-btn-outline {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.v2-btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* Carousel Arrows */
.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  opacity: 1;
}
.carousel-control-prev {
  left: 30px;
}
.carousel-control-next {
  right: 30px;
}
.hero-arrow {
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  transition: 0.3s;
}
.hero-arrow:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
/* Carousel Dots */
.hero-dots {
  position: absolute;
  bottom: 20px;
  margin: 0;
}
.hero-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  margin: 0 4px;
  opacity: 1;
}
.hero-dots button.active {
  background-color: #3b9dff;
  width: 22px;
  border-radius: 5px;
}
/* ===== PAGE LOAD ANIMATIONS (reuse) ===== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}
.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  animation: fadeInRight 0.8s ease forwards;
}
.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.5s;
}
.delay-3 {
  animation-delay: 0.8s;
}
.delay-4 {
  animation-delay: 1.1s;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* ===== WHY CHOOSE US SECTION ===== */
.ac-dots-decor-why {
  position: absolute;
  top: -12px;
  left: -209px;
  width: 180px;
  height: 240px;
  opacity: 1.8;
}
.ac-dots-decor1-why {
  position: absolute;
  bottom: -113px;
  right: -69px;
  width: 307px;
  height: 261px;
  opacity: 1.8;
}
.ac-dots-decor-why img,
.ac-dots-decor1-why img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.why-choose-container {
  position: relative;
}
.why-choose-section {
  padding: 90px 0;
  background-color: #f8f9fc;
  overflow: hidden;
}
/* Left image - bigger person image inside circle */
.why-img-wrapper {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid #ffffff;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.18),
    0 20px 50px rgba(0, 0, 0, 0.12);
  margin: 0 auto;
  transition: all 0.3s ease;
}
.why-img-wrapper:hover {
  transform: translateY(-5px);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.25),
    0 30px 60px rgba(0, 0, 0, 0.18);
}
.why-person-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  /* transform: scale(1.35);
     */
}
.call-start-badge {
  display: flex;
  align-items: center;
  gap: 18px;
  background-color: #1a1a4d;
  color: #ffffff;
  text-decoration: none;
  border-radius: 16px;
  padding: 8px 20px 10px 11px;
  margin-top: -37px;
  margin-left: 170px;
  position: relative;
  z-index: 3;
  width: fit-content;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.call-start-icon {
  background-color: #ffffff;
  color: #1a1a4d;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.call-start-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.call-start-text strong {
  font-size: 18px;
}
.call-start-text small {
  font-size: 16px;
  opacity: 0.8;
}
.call-start-text small:hover {
  color: #f75a5a;
  text-decoration: underline;
  transition: 0.5s;
}
/* Vertical Tabs - 2 columns, rotated vertical text like reference screenshot */
.vertical-tabs {
  display: flex;
  gap: 0;
  height: 500px;
  align-items: start;
  justify-content: end;
}
.tabs-col {
  display: flex;
  flex-direction: column;
  border: 1px solid #d7d7d7;
  border-right: none;
}
.tabs-col:last-child {
  border-right: 1px solid #d7d7d7;
}
.tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #ffffff;
  border: 1px solid #d7d7d7;
  padding: 28px 9px;
  font-weight: 700;
  font-size: 16px;
  color: #1a1a4d;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
}
.tabs-col:last-child .tab-btn {
  border-right: none;
}
.tabs-col .tab-btn:last-child {
  border-bottom: none;
}
.tab-btn i {
  font-size: 17px;
  transform: rotate(180deg);
}
.tab-btn:hover {
  background-color: #f0f0fa;
}
.tab-btn.active {
  background-color: #1a1a4d;
  color: #ffffff;
}
/* Right content */
.why-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #1a1a4d;
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}
/* FIXED HEIGHT text box so nothing jumps when tab content changes */
.why-text-box {
  min-height: 200px;
}
.why-heading {
  color: #1a1a4d;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 18px;
  transition: opacity 0.3s ease;
}
.why-text {
  color: #666666;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 0;
  transition: opacity 0.3s ease;
}
/* FIXED HEIGHT image box so layout never shifts */
.why-img-frame {
  width: 100%;
  max-width: 547px;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: #ffffff;
     */
}
.why-img-frame img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}
.fade-content {
  opacity: 0;
}

/* ===== GOOGLE PROMOTION SERVICES SLIDER SECTION ===== */
.services-slider-section {
  background-color: #1a1a4d;
  position: relative;
  padding: 0 0 70px 0;
  overflow: hidden;
}
.bi-play-fill {
  color: #ffffff !important;
  font-size: 18px;
}
.services-wave-top {
  width: 100%;
  line-height: 0;
}
.services-wave-top svg {
  width: 100%;
  height: 100px;
  display: block;
}
.services-header {
  padding: 40px 0 45px 0;
}
.services-heading {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
}
/* Infinite marquee slider */
.services-slider-wrapper {
  width: 100%;
  overflow: hidden;
}
.services-track {
  display: flex;
  width: max-content;
  animation: servicesScroll 40s linear infinite;
}
@keyframes servicesScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* Card */
.service-card {
  flex-shrink: 0;
  width: 18vw;
  min-width: 240px;
  max-width: 380px;
  background-color: #ffffff;
  border-radius: 40px;
  margin: 0 12px;
  padding: 35px 20px 30px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* Diagonal hover reveal - grows from bottom-right corner */
.service-card::before {
  content: "";
  position: absolute;
  width: 250%;
  height: 250%;
  bottom: -100%;
  right: -120%;
  background: #3f5efb;
  background: radial-gradient(circle, rgba(63, 94, 251, 1) 0%, #f60525 100%);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.6s ease;
  z-index: 0;
}
.service-card:hover::before {
  transform: scale(1);
}
.service-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.service-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.service-card h5 {
  color: #1a1a4d;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}
.service-card:hover h5 {
  color: #ffffff;
}
.service-arrow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: #0a25aa;
  color: #ffffff;
  border-radius: 50%;
  font-size: 16px;
  position: relative;
  z-index: 1;
  transition:
    transform 0.4s ease,
    background-color 0.4s ease,
    color 0.4s ease;
}
.service-card:hover .service-arrow-btn {
  background-color: #ffffff;
  color: #1a1a4d;
  transform: rotate(90deg);
}

/* Decorative corner dot patterns */
.card-decor {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}
.card-decor img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.decor-top-left {
  top: 0;
  left: 0;
  width: 105px;
  height: 105px;
}
.decor-bottom-right {
  bottom: -13px;
  right: 1px;
  width: 194px;
  height: 140px;
}
/* Fade dots out on hover so they don't clash with the navy overlay */
.service-card:hover .card-decor {
  opacity: 0;
  transition: opacity 0.3s ease;
}
/* ===== ABOUT COMPANY SECTION ===== */
.about-company-section {
  padding: 90px 0;
  background-color: #ffffff;
}
.ac-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #1a1a4d;
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.ac-heading {
  color: #1a1a4d;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
}
.ac-para {
  color: #666666;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 520px;
}
/* Points grid */
.ac-points {
  margin-bottom: 30px;
}
.ac-point {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-weight: 600;
  font-size: 14px;
  color: #1a1a4d;
}
.ac-point i {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background-color: #f0f0fa;
  color: #f60525;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}
/* Button */
.ac-btn {
  background: linear-gradient(135deg, #f60525, #4a1b6d);
  color: #ffffff;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 6px;
}

.ac-btn:hover {
  opacity: 0.9;
  color: #ffffff;
}
/* Right image */
.ac-img-wrapper {
  position: relative;
}
.ac-img-wrapper > img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}
.ac-dots-decor {
  position: absolute;
  top: -50px;
  left: -143px;
  width: 194px;
  height: 149px;
  opacity: 1.8;
}
.ac-dots-decor1 {
  position: absolute;
  bottom: -79px;
  right: -100px;
  width: 342px;
  height: 250px;
  opacity: 1.8;
}
.ac-dots-decor img,
.ac-dots-decor1 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ac-floating-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background-color: #ffffff;
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}
.ac-floating-badge i {
  width: 46px;
  height: 46px;
  background-color: #1a1a4d;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.ac-floating-badge h4 {
  color: #1a1a4d;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}
.ac-floating-badge p {
  color: #777777;
  font-size: 12px;
  margin: 0;
}
.aboutcontainer {
  position: relative;
}
/* Responsive */

.ac-dots-decor,
.ac-dots-decor1,
.ac-dots-decor-why,
.ac-dots-decor1-why {
  animation: floatImage 3s ease-in-out infinite;
}
/*========================== PROCESS SECTION ==========================*/
.process-section {
  background: #fff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f60525, #271b6d);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 50px;
}
.section-tag:hover {
  opacity: 0.9;
  color:white;
  /* transition: 3s ease; */
}
.section-tag .section-title {
  font-size: 46px;
  font-weight: 800;
  color: #1e235c;
  line-height: 1.2;
  margin-bottom: 15px;
}
.section-subtitle {
  max-width: 650px;
  margin: auto;
  color: #666;
  font-size: 17px;
}
/*========================== LEFT SIDE ==========================*/
.process-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 22px;
  margin-bottom: 8px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #edf0f7;
  box-shadow: 0 12px 30px rgba(30, 35, 92, 0.08);
  transition: 0.45s ease;
  z-index: 1;
}
.process-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e235c 0%, #f60525 100%);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: 0.45s ease;
  z-index: -1;
}
.process-item:hover::before {
  transform: scaleY(1);
}
.process-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(30, 35, 92, 0.2);
}
/*========================== ICON ==========================*/
.process-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 16px;
  background: #f4f6ff;
  color: #1e235c;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  transition: 0.4s;
}
.process-item:hover .process-icon {
  background: #fff;
  color: #f60525;
  transform: rotate(-8deg) scale(1.08);
}
/*========================== CONTENT ==========================*/
.process-content span {
  font-size: 11px;
  font-weight: 700;
  color: #f60525;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: 0.4s;
}
.process-content h4 {
  margin: 4px 0 6px;
  font-size: 22px;
  color: #1e235c;
  font-weight: 700;
  transition: 0.4s;
}
.process-content p {
  margin: 0;
  font-size: 15px;
  color: #6c757d;
  line-height: 1.6;
  transition: 0.4s;
}
.process-item:hover span,
.process-item:hover h4,
.process-item:hover p {
  color: #fff;
}
/*========================== IMAGE ==========================*/
.process-image {
  position: relative;
}
.process-image img {
  max-width: 100%;
  animation: floatImage 5s ease-in-out infinite;
}
/* Floating */
@keyframes floatImage {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}
/* ========================= RIGHT IMAGE ========================= */
.process-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
/* ========================= RIGHT IMAGE ========================= */
.process-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
/* Background Glow */
.process-image::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(246, 5, 37, 0.12) 0%,
    rgba(30, 35, 92, 0.1) 60%,
    transparent 100%
  );
  z-index: -1;
  filter: blur(10px);
}
.process-image img {
  width: 100%;
  height: 650px;
  /* Section ke hisab se */
  object-fit: contain;
  /* Image cut nahi hogi */
  object-position: center;
  animation: floatImage 5s ease-in-out infinite;
}
/* Floating Animation */
@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.process-image::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: #f60525;
  opacity: 0.08;
  border-radius: 50%;
  top: 20px;
  right: 40px;
  z-index: -2;
  filter: blur(30px);
}
/*============================== TESTIMONIAL SECTION ==============================*/
.testimonial-section {
  background: #eef5ff;
  padding: 90px 0;
  overflow: hidden;
}
.testimonialSwiper {
  padding: 30px 5px 70px;
}
.swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonial-card {
  width: 320px;
  height: 400px;
  background: #fff;
  border: 1px solid #1a1a4d;
  border-radius: 62% 38% 55% 45% / 58% 42% 58% 42%;
  position: relative;
  padding: 45px 30px 0;
  text-align: center;
  transition: 0.6s;
  overflow: visible;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #1a1a4d;
  transform: scale(0);
  transition: 0.5s ease;
  z-index: 0;
}
.testimonial-card:hover {
  border-color: #ffffff;
  box-shadow: 0 25px 50px rgba(26, 26, 77, 0.25);
}
.testimonial-card:hover::before {
  transform: scale(1);
}
.testimonial-card > * {
  position: relative;
  z-index: 2;
}
.quote {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
  border-radius: 50%;
  /* background: #eef3ff;
     */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 82px;
  color: #1a1a4d;
  transition: 0.5s;
}
.testimonial-card:hover .quote {
  /* background: #ffffff;
     */
  color: #ffffff;
  rotate: 180deg;
}
.stars {
  color: #ffb400;
  font-size: 16px;
  margin: 0 0 16px;
  letter-spacing: 3px;
}
.testimonial-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 0;
  transition: 0.4s;
}
.testimonial-card:hover p {
  color: #ffffff;
}
/* Image overlaps the bottom edge of the blob */
.swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 10px;
}
.client-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 4px solid #ffffff;
  overflow: hidden;
  margin-top: auto;
  margin-bottom: -35px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 3;
  transition: 0.45s;
}
.client-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-card:hover .client-img {
  border-color: #ffffff;
  transform: scale(1.05);
}
.client-name {
  margin-top: 45px;
  margin-bottom: 0;
  /* margin-right: 88px;
     */
  color: #1e235c;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
/* ===== FAQ SECTION ===== */
.faq-section {
  position: relative;
  padding: 0px 0 90px 0;
  background-color: #ffffff;
  overflow: hidden;
}
.faq-divider-top {
  width: 100%;
  line-height: 0;
  margin-top: -1px;
}
.faq-divider-top svg {
  width: 100%;
  height: 80px;
  display: block;
}
.faq-tag {
  background-color: #1a1a4d;
}
.faq-heading {
  color: #1a1a4d;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 30px;
}
/* Accordion */
.faq-accordion .faq-item {
  border: 1px solid #e5e5ef;
  border-radius: 10px !important;
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  background-color: #ffffff;
  color: #1a1a4d;
  font-weight: 700;
  font-size: 14.5px;
  padding: 16px 20px;
  border: none;
  box-shadow: none !important;
}
.faq-btn:not(.collapsed) {
  background-color: #1a1a4d;
  color: #ffffff;
}
.faq-num {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #1a1a4d;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: 0.3s;
}
.faq-btn:not(.collapsed) .faq-num {
  background-color: #ffffff;
  color: #1a1a4d;
}
.faq-num i {
  transition: transform 0.5s ease;
}
/* Accordion open hone par icon ghumega */
.faq-btn:not(.collapsed) .faq-num i {
  transform: rotate(360deg);
}
.faq-btn::after {
  margin-left: auto;
  filter: none;
}
.faq-btn:not(.collapsed)::after {
  filter: invert(1) grayscale(100%) brightness(200%);
}
.accordion-body {
  padding: 16px 20px 20px 66px;
  color: #666666;
  font-size: 14px;
  line-height: 1.75;
}
/* Right image shape */
.faq-img-wrap {
  position: relative;
  max-width: 520px;
  height: 100%;
  margin: 150px auto 0 auto !important;
}
.faq-circle {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8%;
  overflow: hidden;
  border: 2px solid #1a1a4d;
  position: relative;
  z-index: 2;
  background-color: #ffffff;
}
.faq-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.faq-bottom-bar {
  background-color: #1a1a4d;
  height: 90px;
  margin-top: -90px;
  position: relative;
  z-index: 1;
  border-radius: 0 0 16px 16px;
}
.faq-bottom-bar::before,
.faq-bottom-bar::after {
  content: "";
  position: absolute;
  top: 0;
  width: 55px;
  height: 55px;
  background-color: #ffffff;
  border-radius: 50%;
}
.faq-bottom-bar::before {
  left: -2px;
}
.faq-bottom-bar::after {
  right: -2px;
}
.faq-badge-icon {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 70px;
  height: 70px;
  border: 3px solid #1a1a4d;
  border-radius: 50%;
  background-color: #ffffff;
  color: #1a1a4d;
  font-size: 32px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}
.faq-watermark {
  position: absolute;
  top: 60px;
  right: 0;
  writing-mode: vertical-rl;
  font-size: 40px;
  font-weight: 700;
  color: rgba(26, 26, 77, 0.08);
  letter-spacing: 4px;
  z-index: 0;
}
.faq-service-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background-color: #1a1a4d;
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 6px;
  z-index: 4;
}

/* ============ SECTION WRAPPER ============ */
.contact-section {
  position: relative;
  /* background: var(--section-bg);
     */
  padding-top: 150px;
  padding-bottom: 90px;
  overflow: hidden;
}
.contact-container {
  background: rgb(252, 248, 248);
  padding: 30px;
  border-radius: 20px;
  border: 1px dashed #646464;
  box-shadow: 0 25px 50px -20px rgba(26, 26, 77, 0.25);
}
.firstformcol {
  display: flex;
  flex-direction: column;
}

/* floating dot accents on the navy header area */
.header-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  animation: floatDot 6s ease-in-out infinite;
}
@keyframes floatDot {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
/* ============ HEADING ============ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 0.6rem;
}
.section-title {
  font-weight: 700;
  color: var(--navy);
  font-size: 34px;
}
.section-sub {
  color: var(--text-muted);
  max-width: 480px;
}
/* ============ IMAGE ILLUSTRATION ============ */
.illustration-wrap {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 660px;
  height: 100%;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 25px 35px rgba(26, 26, 77, 0.18));
}
@keyframes blobPulse {
  0%,
  100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.08) translateY(-10px);
  }
}
/* floating animation on the image itself */
.float-slow {
  animation: floaty 4.5s ease-in-out infinite;
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-16px);
  }
}
/* ============ FORM CARD ============ */
.contact-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 2.2rem;
  box-shadow: 0 25px 50px -20px rgba(26, 26, 77, 0.25);
  position: relative;
  z-index: 2;
}
.contact-card h3 {
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 1.4rem;
}
.form-control,
.form-select {
  border: 1px solid #e3e6ea;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  background: #fbfbfd;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 0.2rem rgba(26, 26, 77, 0.12);
  background: #fff;
}
textarea.form-control {
  resize: none;
}
.btn-quote {
  background: linear-gradient(135deg, #f60525, #271b6d);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 0.85rem 2.1rem;
  border-radius: 10px;
  letter-spacing: 0.02em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.btn-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(122, 31, 43, 0.5);
  color: #fff;
}
/* ============ WAVE DIVIDERS (shared/common) ============ */
.wave-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
  pointer-events: none;
}
/* Static variant - sits in normal flow (used for footer divider) */
.wave-divider.wave-static {
  position: relative;
  z-index: 1;
}
.wave-divider svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 500%;
  height: 100%;
}
/* Shared speed classes - reused by both top & footer waves */
.wave-spd-1 {
  animation: waveMove 9s linear infinite;
}
.wave-spd-2 {
  animation: waveMove 12s linear infinite reverse;
}
.wave-spd-3 {
  animation: waveMove 18s linear infinite;
}
.wave-spd-4 {
  animation: waveMove 22s linear infinite reverse;
}
.wave-spd-5 {
  animation: waveMove 26s linear infinite;
}
@keyframes waveMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Top divider - light, single navy tone, 3 layers */
.wave-top .wave-spd-3 {
  opacity: 0.3;
}
.wave-top .wave-spd-2 {
  opacity: 0.45;
}
.wave-top .wave-spd-1 {
  opacity: 0.65;
}
/* Extra speed for heavier footer wave stack */
.wave-spd-6 {
  animation: waveMove 30s linear infinite reverse;
}
.wave-footer svg {
  opacity: 1;
}
.wave-footer .wave-accent-red {
  opacity: 0.35;
  filter: blur(6px);
}
/* animaiton of up down button scrol utton////////////// */
.scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #f60525, #271b6d);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(246, 5, 37, 0.35);
  transition: all 0.4s ease;
  animation: floatBtn 2.5s ease-in-out infinite;
}
.scroll-top i {
  transition: all 0.4s ease;
}
/* Hover Effect */
.scroll-top:hover {
  background: linear-gradient(135deg, #1e235c, #3944b5);
  box-shadow:
    0 0 15px rgba(30, 35, 92, 0.4),
    0 0 30px rgba(30, 35, 92, 0.35),
    0 0 45px rgba(30, 35, 92, 0.25);
  transform: translateY(-8px) scale(1.12);
}
.scroll-top:hover i {
  transform: rotate(-360deg);
}
/* Click Effect */
.scroll-top:active {
  transform: scale(0.92);
}
/* Floating Animation */
@keyframes floatBtn {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}
/* ===== SITE FOOTER ===== */
.site-footer {
  background-color: #1a1a4d;
  padding-top: 60px;
  position: relative;
}
.footer-top {
  padding-bottom: 40px;
}
.footer-logo img {
  height: 80px;
  margin-bottom: 20px;
}
.footer-about-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 22px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: 0.3s;
}
.footer-socials a:hover {
  background-color: #f70123;
  color: #ffffff;
}
.footer-heading {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: #f70123;
  border-radius: 3px;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
  font-weight: 500;
}
.footer-links a i {
  font-size: 12px;
  color: #ffffff;
}
.footer-links a:hover {
  color: #e42942;
  padding-left: 4px;
}
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.6;
}
.footer-contact li i {
  color: #ffffff;
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.footer-contact li a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 0;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.footer-bottom a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-bottom-links span {
  color: rgba(255, 255, 255, 0.3);
}

/*============================= Floating WhatsApp Button =============================*/
.whatsapp-float {
  position: fixed;
  left: 25px;
  bottom: 25px;
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 34px;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  transition: 0.4s ease;
  animation: floatWhatsapp 2.5s ease-in-out infinite;
}
/* Icon Animation */
.whatsapp-float i {
  transition: 0.4s;
}
/* Hover */
.whatsapp-float:hover {
  color: #fff;
  transform: translateY(-8px) scale(1.12);
  box-shadow:
    0 0 15px rgba(37, 211, 102, 0.5),
    0 0 35px rgba(37, 211, 102, 0.35),
    0 0 60px rgba(37, 211, 102, 0.2);
}
.whatsapp-float:hover i {
  transform: rotate(-15deg) scale(1.1);
}
/* Floating Effect */
@keyframes floatWhatsapp {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
/* Ripple Animation */
.whatsapp-float::before,
.whatsapp-float::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  z-index: -1;
  animation: ripple 2.5s linear infinite;
}
.whatsapp-float::after {
  animation-delay: 1.2s;
}
@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
/*=========================================Responsive======================================*/
@media (max-width: 1200px) and (min-width: 992px) {
  .main-navbar .nav-link {
    font-size: 12px;
    margin: 0 6px;
  }
  .pay-now-btn {
    padding: 8px 18px;
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .main-navbar .site-logo {
    height: 45px;
  }
  /* Navbar collapse menu styling on tablet/mobile */
  .main-navbar .navbar-collapse {
    background-color: #ffffff;
    padding: 15px 10px;
    margin-top: 10px;
    border-top: 1px solid #eee;
  }
  .main-navbar .navbar-nav {
    text-align: center;
  }
  .main-navbar .nav-link {
    margin: 8px 0;
    font-size: 14px;
  }
  .main-navbar .dropdown-menu {
    text-align: center;
    box-shadow: none;
    background-color: #f8f8f8;
  }
  .pay-now-btn {
    display: inline-block;
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .top-contact-bar .container-fluid {
    flex-direction: column;
    gap: 8px;
  }
  .top-contact-bar .contact-info {
    justify-content: center;
    text-align: center;
  }
  .top-contact-bar .contact-info a {
    font-size: 12px;
    margin-right: 12px;
  }
  .top-contact-bar .social-icons {
    justify-content: center;
    display: none !important;
  }
}
@media (max-width: 576px) {
  .main-navbar {
    padding: 10px 15px;
  }
  .main-navbar .site-logo {
    height: 38px;
  }
  .top-contact-bar {
    padding: 8px 10px;
  }
  .top-contact-bar .contact-info a {
    font-size: 11px;
    margin-right: 8px;
  }
  .top-contact-bar .social-icons a {
    width: 26px;
    height: 26px;
    font-size: 12px;
    margin-left: 6px;
  }
  .pay-now-btn {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 400px) {
  .firstnumebr {
    display: none;
  }
}
@media (min-width: 992px) {
  .mega-dropdown {
    position: relative;
  }
  .mega-dropdown:hover > .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    display: grid !important;
  }
}
@media (max-width: 991px) {
  .main-navbar .navbar-collapse {
    margin-top: 15px;
    padding: 20px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  }
  .main-navbar .navbar-nav {
    text-align: left;
  }
  .main-navbar .nav-item {
    border-bottom: 1px solid #eee;
  }
  .main-navbar .nav-link {
    padding: 14px 8px;
    margin: 0;
  }
  .pay-now-btn {
    width: 100%;
    margin-top: 18px;
  }
  .mega-menu {
    position: static !important;
    display: none;
    min-width: 100%;
    padding: 0;
    background: #f8f8f8;
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .mega-menu.show {
    display: block;
  }
  .mega-menu .dropdown-item {
    margin: 8px;
    border-radius: 8px;
    font-size: 13px;
  }
  .mega-menu {
    pointer-events: auto !important;
  }
}
@media (max-width: 1200px) {
  .hero-v2-heading {
    font-size: 38px;
  }
  .laptop-mockup-card {
    width: 220px;
    right: 3%;
  }
}
@media (max-width: 768px) {
  .carousel-control-prev {
    display: none;
  }
  .carousel-control-next {
    display: none;
  }
  .hero-slide {
    max-height: 640px;
  }
}
@media (max-width: 991px) {
  .hero-slide {
    min-height: auto;
    padding: 120px 0 130px 0;
  }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(4, 10, 30, 0.75),
      rgba(4, 10, 30, 0.85)
    );
  }
  .hero-v2-heading {
    font-size: 32px;
  }
  .hero-v2-text {
    max-width: 100%;
  }
  .hero-v2-stats {
    gap: 22px;
  }
  /* Mockup card moves below text on tablet/mobile instead of overlapping photo */
}
@media (max-width: 576px) {
  .hero-slide-inner {
    position: relative;
    z-index: 2;
    padding: 110px 25px;
  }
  /* Tag badge */
  .hero-tag {
    font-size: 12px;
  }
  .hero-tag i {
    color: #3b9dff;
  }
  .hero-dots {
    bottom: 7px;
  }
  /* Heading */
  .hero-v2-heading {
    color: #ffffff;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
  }
  .hero-v2-heading .highlight-blue {
    color: #3b9dff;
  }
  /* Paragraph */
  .hero-v2-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.8;
    max-width: 560px;
    margin-bottom: 30px;
  }
  .hero-v2-heading {
    font-size: 26px;
  }
  .hero-v2-stats {
    gap: 16px;
  }
  .v2-stat h4 {
    font-size: 18px;
  }
  .hero-v2-buttons {
    flex-direction: column;
    width: 100%;
  }
  .v2-btn-primary,
  .v2-btn-outline {
    justify-content: center;
    width: 100%;
  }
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}
@media (max-width: 1200px) {
  .why-choose-section {
    padding: 60px 0;
  }
  /* Image column takes full container width */
  .why-img-col {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    text-align: left;
  }
  .why-img-wrapper {
    max-width: 260px;
    margin: 0 auto;
  }
  .call-start-badge {
    margin-left: 0;
    margin-top: -30px;
    margin-inline: auto;
    justify-content: left;
  }
  /* Tabs column - full width, switches to horizontal row */
  .why-tabs-col {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
  .vertical-tabs {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
    gap: 0;
    width: 100%;
  }
  .tabs-col {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    border: none;
    width: 100%;
  }
  .tabs-col:last-child {
    border-right: none;
  }
  .tab-btn {
    flex: 1 1 33.33%;
    min-width: 100px;
    writing-mode: horizontal-tb;
    transform: none;
    gap: 6px;
    padding: 9px 8px;
    font-size: 12px;
    border: 1px solid #e5e5ef;
  }
  .tab-btn i {
    transform: none;
    font-size: 18px;
  }
  /* Right content column - full width, centered text */
  .why-content-col {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    text-align: center;
  }
  .why-tag {
    margin-inline: auto;
  }
  .why-text-box {
    min-height: auto;
  }
  .why-text {
    max-width: 600px;
    margin-inline: auto;
  }
  .why-img-frame {
    max-width: 100%;
    height: 260px;
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  .why-heading {
    font-size: 24px;
  }
  .why-img-wrapper {
    max-width: 200px;
  }
  .call-start-badge {
    margin-top: -25px;
    padding: 6px 16px 8px 8px;
  }
  .call-start-text strong {
    font-size: 15px;
  }
  .call-start-text small {
    font-size: 13px;
  }
  .tab-btn {
    flex: 1 1 50%;
    font-size: 11px;
    padding: 14px 6px;
  }
  .tab-btn i {
    font-size: 16px;
  }
  .why-img-frame {
    height: 220px;
  }
}
@media (max-width: 1200px) {
  .service-card {
    width: 26vw;
  }
}
@media (max-width: 991px) {
  .services-heading {
    font-size: 26px;
  }
  .service-card {
    width: 45vw;
  }
  .service-icon {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 576px) {
  .services-heading {
    font-size: 21px;
    padding: 0 15px;
  }
  .service-card {
    width: 82vw;
    padding: 28px 18px 24px 18px;
  }
  .service-icon {
    width: 90px;
    height: 90px;
  }
  .service-card h5 {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .decor-top-left,
  .decor-bottom-right {
    width: 55px;
    height: 55px;
  }
}
@media (max-width: 576px) {
  .decor-top-left,
  .decor-bottom-right {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 576px) {
  .ac-btn {
    text-align: left;
    align-items: left;
    justify-content: left;
  }
  .section-tag {
    margin-inline: auto;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 991px) {
  .about-company-section {
    padding: 60px 0;
  }
  .ac-content-col {
    text-align: center;
  }
  .ac-point {
    justify-content: left;
  }
  .ac-tag {
    margin-inline: auto;
  }
}
@media (max-width: 576px) {
  .ac-heading {
    font-size: 26px;
  }
  .ac-floating-badge {
    padding: 12px 14px;
    gap: 10px;
    left: 12px;
    bottom: 12px;
  }
  .ac-floating-badge i {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }
  .ac-floating-badge h4 {
    font-size: 16px;
  }
  .ac-dots-decor {
    width: 70px;
    height: 70px;
    bottom: -15px;
    right: -15px;
  }
  .ac-dots-decor1 {
    display: none;
  }
}
@media (max-width: 991px) {
  .process-section {
    padding: 70px 0;
  }
  .section-title {
    font-size: 34px;
  }
  .process-image {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .section-title {
    font-size: 28px;
    align-items: center;
    text-align: center;
  }
  .section-sub {
    text-align: center;
    align-items: center;
  }
  .process-item {
    padding: 20px;
    gap: 18px;
  }
  .process-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    font-size: 20px;
  }
  .process-content h4 {
    font-size: 22px;
  }
  .process-content p {
    font-size: 15px;
    line-height: 1.7;
  }
}
@media (max-width: 991px) {
  .process-image {
    min-height: 420px;
    margin-top: 40px;
  }
  .process-image img {
    height: 420px;
  }
}
@media (max-width: 767px) {
  .process-image {
    min-height: 300px;
    padding: 10px;
  }
  .process-image img {
    height: 300px;
  }
}
@media (max-width: 1400px) {
  .client-name {
    /* margin-right: 40px;
         */
    font-size: 18px;
  }
}
@media (max-width: 1200px) {
  .client-name {
    /* margin-right: 100px;
         */
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .client-name {
    /* margin-right: 35px;
         */
    font-size: 18px;
  }
  .ac-dots-decor,
  .ac-dots-decor1,
  .ac-dots-decor-why,
  .ac-dots-decor1-why {
    display: none;
  }
}
@media (max-width: 768px) {
  .client-name {
    margin-right: 50px;
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .faq-heading {
    font-size: 26px;
  }
  .faq-content-col {
    text-align: center;
  }
  .faq-tag {
    margin-inline: auto;
  }
  .faq-btn {
    font-size: 13px;
    text-align: left;
  }
  .accordion-body {
    text-align: left;
  }
  .faq-img-wrap {
    margin: 0px auto 0 auto !important;
  }
}
@media (max-width: 576px) {
  .container {
    padding: 0 19px;
  }
  .faq-heading {
    font-size: 22px;
  }
  .faq-img-wrap {
    max-width: 300px;
  }
  .faq-badge-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
  .faq-watermark {
    font-size: 26px;
  }
  .faq-service-badge {
    font-size: 11px;
    padding: 7px 14px;
  }
}
@media (max-width: 576px) {
  .contact-container {
    background: none;
    padding: 10px;
    border-radius: 20px;
    border: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .float-slow,
  .img-blob {
    animation: none;
  }
}
@media (max-width: 991px) {
  .illustration-wrap {
    min-height: 300px;
    margin-bottom: 1.5rem;
  }
  .contact-img {
    max-width: 530px;
  }
  .firstformcol {
    display: flex;
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .illustration-wrap {
    min-height: 240px;
  }
  .contact-img {
    max-width: 380px;
  }
  .img-blob {
    width: 220px;
    height: 220px;
  }
}
@media (max-width: 991px) {
  .contact-section {
    padding-top: 110px;
  }
  .section-title {
    font-size: 1.7rem;
  }
}
@media (max-width: 575px) {
  .contact-card {
    padding: 1.4rem;
  }
  .contact-section {
    padding-top: 90px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .wave-divider svg {
    animation: none !important;
  }
}
@media (max-width: 991px) {
  .footer-top {
    text-align: left;
  }
  .footer-socials {
    justify-content: left;
  }
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-links a,
  .footer-contact li {
    justify-content: left;
  }
}
@media (max-width: 576px) {
  .site-footer {
    padding-top: 45px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: left;
  }
  .footer-heading::after {
    left: 20px;
    bottom: 0;
    width: 40px;
    height: 3px;
  }
}
@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    left: 18px;
    bottom: 18px;
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    left: 15px;
    bottom: 15px;
    font-size: 28px;
  }
}
