/* =========================================================
   Home Page CSS
   Page: index.html
   Theme: Maple Purple
   Note: Header/menu colors are controlled only from header.css
========================================================= */

:root {
  --home-purple: #8500ff;
  --home-purple-dark: #5e00bd;
  --home-purple-soft: #f7f0ff;
  --home-violet: #a64dff;
  --home-navy: #102a43;
  --home-text: #5f6670;
  --home-white: #ffffff;
}

/* =========================================================
   Common
========================================================= */

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--home-purple);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 18px;
}

.section-kicker span {
  width: 11px;
  height: 11px;
  display: inline-block;
  background: var(--home-purple);
}

.home-section-heading {
  max-width: 960px;
  margin: 0 auto 62px;
}

.home-section-heading h2 {
  color: #000000;
  font-size: clamp(34px, 3.6vw, 58px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.home-section-heading p {
  color: #111827;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
  margin: 0;
}

.home-section-heading p a {
  color: #000000;
  font-weight: 700;
  margin-left: 10px;
  text-decoration: none;
  transition: color 0.35s ease;
}

.home-section-heading p a:hover {
  color: var(--home-purple);
}

/* =========================================================
   Premium Hero Slideshow
   Updated: 3 Slides + Premium Animation
========================================================= */

.home-hero-slider {
  position: relative;
  margin-top: 0;
  overflow: hidden;
}

.home-hero-slider .carousel,
.home-hero-slider .carousel-inner,
.home-hero-slider .carousel-item {
  height: 760px;
}

.home-slide-img {
  height: 760px;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.04);
}

/* Active slide image slow cinematic zoom */
.home-hero-slider .carousel-item.active .home-slide-img {
  animation: homeImageZoom 5.6s ease forwards;
}

@keyframes homeImageZoom {
  0% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

.home-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 8, 22, 0.88), rgba(21, 0, 42, 0.58), rgba(0, 0, 0, 0.26)),
    radial-gradient(circle at 82% 25%, rgba(133, 0, 255, 0.44), transparent 38%);
  z-index: 1;
}

/* Premium moving glow layer */
.home-slide-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  right: 8%;
  top: 18%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(133, 0, 255, 0.34), rgba(133, 0, 255, 0.08), transparent 68%);
  filter: blur(8px);
  opacity: 0.85;
  z-index: 1;
  animation: homeGlowFloat 7s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes homeGlowFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-42px, 28px) scale(1.12);
  }
}

.home-slide-caption {
  position: absolute;
  inset: 0;
  display: flex !important;
  align-items: center;
  text-align: left;
  z-index: 2;
  padding: 0;
}

.home-slide-content {
  max-width: 820px;
  padding-top: 90px;
}

/* Text animations */
.home-slide-kicker,
.home-slide-content h1,
.home-slide-content p,
.home-slide-actions {
  opacity: 0;
  transform: translateY(28px);
}

.home-hero-slider .carousel-item.active .home-slide-kicker {
  animation: homeTextReveal 0.75s ease forwards;
  animation-delay: 0.22s;
}

.home-hero-slider .carousel-item.active .home-slide-content h1 {
  animation: homeTextReveal 0.85s ease forwards;
  animation-delay: 0.38s;
}

.home-hero-slider .carousel-item.active .home-slide-content p {
  animation: homeTextReveal 0.85s ease forwards;
  animation-delay: 0.56s;
}

.home-hero-slider .carousel-item.active .home-slide-actions {
  animation: homeTextReveal 0.85s ease forwards;
  animation-delay: 0.74s;
}

@keyframes homeTextReveal {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-slide-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  margin-bottom: 18px;
}

.home-slide-kicker::before {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--home-purple);
  display: inline-block;
  box-shadow: 0 0 22px rgba(133, 0, 255, 0.9);
}

.home-slide-content h1 {
  color: #ffffff;
  font-size: clamp(34px, 4vw, 64px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -1.8px;
  margin-bottom: 24px;
  text-shadow: 0 14px 38px rgba(0, 0, 0, 0.34);
}

.home-slide-content p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 690px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.78;
  margin-bottom: 32px;
}

.home-slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.home-primary-btn,
.home-secondary-btn,
.home-purple-btn {
  min-height: 50px;
  padding: 14px 24px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.35s ease;
  text-decoration: none;
}

.home-primary-btn,
.home-purple-btn {
  color: #ffffff;
  background: linear-gradient(135deg, var(--home-purple-dark), var(--home-purple));
  box-shadow: 0 18px 38px rgba(133, 0, 255, 0.28);
}

.home-secondary-btn {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(8px);
}

.home-primary-btn:hover,
.home-purple-btn:hover,
.home-secondary-btn:hover {
  color: #ffffff;
  transform: translateY(-4px);
}

.home-hero-slider .carousel-indicators {
  bottom: 28px;
  z-index: 5;
}

.home-hero-slider .carousel-indicators [data-bs-target] {
  width: 36px;
  height: 4px;
  border-radius: 20px;
  background-color: #ffffff;
  opacity: 0.45;
}

.home-hero-slider .carousel-indicators .active {
  opacity: 1;
  background-color: var(--home-purple);
}

.home-hero-slider .carousel-control-prev,
.home-hero-slider .carousel-control-next {
  width: 6%;
  z-index: 5;
}

/* =========================================================
   Hero Slideshow Responsive
========================================================= */

@media (max-width: 991px) {
  .home-hero-slider .carousel,
  .home-hero-slider .carousel-inner,
  .home-hero-slider .carousel-item,
  .home-slide-img {
    height: 680px;
  }

  .home-slide-content {
    padding-top: 100px;
  }

  .home-slide-content h1 {
    font-size: 54px;
  }

  .home-slide-glow {
    width: 360px;
    height: 360px;
    right: -5%;
    top: 25%;
  }
}

@media (max-width: 767px) {
  .home-hero-slider .carousel,
  .home-hero-slider .carousel-inner,
  .home-hero-slider .carousel-item,
  .home-slide-img {
    height: 640px;
  }

  .home-slide-caption {
    text-align: center;
  }

  .home-slide-content {
    padding-top: 90px;
    margin: 0 auto;
  }

  .home-slide-actions {
    justify-content: center;
  }

  .home-slide-content h1 {
    font-size: 42px;
  }

  .home-slide-content p {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .home-hero-slider .carousel,
  .home-hero-slider .carousel-inner,
  .home-hero-slider .carousel-item,
  .home-slide-img {
    height: 600px;
  }

  .home-slide-content h1 {
    font-size: 34px;
  }

  .home-slide-content p {
    font-size: 15px;
  }

  .home-primary-btn,
  .home-secondary-btn,
  .home-purple-btn {
    width: 100%;
    justify-content: center;
  }

  .home-slide-glow {
    width: 280px;
    height: 280px;
    right: -25%;
    top: 30%;
  }
}


/* =========================================================
   Expertise Strip
   4 Blocks Below Banner
   Hover Image + Larger Curves + Icon Up
========================================================= */

.home-expertise-strip {
  position: relative;
  background: #ffffff;
  z-index: 5;
}

.home-expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  background: #ffffff;
  border-right: 1px solid #e5e7eb;
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.service-card:last-child {
  border-right: none;
}

/* ===============================
   HOVER IMAGE LAYER
================================ */

.service-card .hover-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.service-card .hover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 0.65s ease;
  filter: saturate(1.05);
}

.service-card .hover-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 14, 28, 0.22),
    rgba(10, 14, 28, 0.48)
  );
  z-index: 1;
}

/* ===============================
   CONTENT LAYER
================================ */

.service-card .content {
  position: relative;
  z-index: 5;
  padding: 26px 30px 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* ===============================
   ICON - MOVED UP
================================ */

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: #f4ecff;
  color: #8500ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 34px;
  position: relative;
  z-index: 8;
  transform: translateY(-6px);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.4s ease,
    background 0.4s ease,
    box-shadow 0.4s ease;
}

.service-icon i {
  position: relative;
  z-index: 9;
  color: inherit;
}

/* ===============================
   TEXT
================================ */

.service-card h3 {
  color: #111827;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.28;
  margin: 0 0 14px;
  transition: color 0.4s ease;
  position: relative;
  z-index: 6;
}

.service-card p {
  color: #374151;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  margin: 0;
  transition: color 0.4s ease;
  position: relative;
  z-index: 6;
}

/* ===============================
   TOP BLUE CURVE - BIGGER
================================ */

.service-card::before {
  content: "";
  position: absolute;
  top: -72%;
  left: -72%;
  width: 115%;
  height: 115%;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  border-radius: 0 0 150px 0;
  transform: translate(-100%, -100%);
  opacity: 0;
  transition: all 0.6s ease;
  z-index: 2;
}

/* ===============================
   BOTTOM PURPLE CURVE - BIGGER
================================ */

.service-card::after {
  content: "";
  position: absolute;
  bottom: -72%;
  right: -72%;
  width: 115%;
  height: 115%;
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  border-radius: 150px 0 0 0;
  transform: translate(100%, 100%);
  opacity: 0;
  transition: all 0.6s ease;
  z-index: 2;
}

/* ===============================
   HOVER EFFECTS
================================ */

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(133, 0, 255, 0.14);
}

.service-card:hover .hover-image {
  opacity: 1;
}

.service-card:hover .hover-image img {
  transform: scale(1);
}

.service-card:hover::before,
.service-card:hover::after {
  transform: translate(0, 0);
  opacity: 0.92;
}

.service-card:hover h3,
.service-card:hover p {
  color: #ffffff !important;
}

.service-card:hover .service-icon {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-14px) scale(1.06);
  box-shadow: 0 14px 30px rgba(255, 255, 255, 0.08);
}

.service-card:hover .service-icon i {
  color: #ffffff !important;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1199px) {
  .home-expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:nth-child(2) {
    border-right: none;
  }

  .service-card:nth-child(3),
  .service-card:nth-child(4) {
    border-top: 1px solid #e5e7eb;
  }
}

@media (max-width: 767px) {
  .home-expertise-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 250px;
    border-right: none;
    border-top: 1px solid #e5e7eb;
  }

  .service-card:first-child {
    border-top: none;
  }

  .service-card .content {
    padding: 26px 22px 32px;
  }

  .service-card h3 {
    font-size: 22px;
  }

  .service-card p {
    font-size: 14px;
  }

  .service-icon {
    width: 58px;
    height: 58px;
    font-size: 25px;
    margin-bottom: 26px;
    transform: translateY(-4px);
  }

  .service-card:hover .service-icon {
    transform: translateY(-10px) scale(1.05);
  }
}



/* =========================================================
   Exclusive Technology
========================================================= */

.home-exclusive-section {
  padding: 100px 0;
  background: #ffffff;
}

.home-exclusive-content h2 {
  color: #000000;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.2px;
  margin-bottom: 24px;
}

.home-exclusive-content p {
  color: var(--home-text);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 18px;
}

.home-check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 34px;
}

.home-check-list li {
  color: var(--home-text);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
  margin-bottom: 8px;
}

.home-check-list li::before {
  content: "✓ ";
  color: var(--home-purple);
  font-weight: 700;
}

.home-exclusive-divider {
  width: 100%;
  height: 1px;
  background: rgba(15, 23, 42, 0.35);
  margin: 34px 0;
}

.home-exclusive-image {
  text-align: center;
}

.home-exclusive-image img {
  width: 100%;
  max-width: 620px;
  height: auto;
  object-fit: contain;
}

/* =========================================================
   Home Services Section
   We Offer a Wide Variety of IT Services
   Updated: Wider boxes + stronger visible fixed background
========================================================= */

.home-services-section {
  padding: 105px 0 120px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.74)),
    url("../images/home-services-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.home-services-grid {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.home-service-card {
  position: relative;
  height: 530px;
  border-radius: 22px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.18);
  transition:
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-service-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 18, 0.08), rgba(5, 8, 18, 0.88)),
    linear-gradient(135deg, rgba(0, 40, 70, 0.30), rgba(133, 0, 255, 0.26));
  z-index: 1;
}

.home-service-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 70px;
  z-index: 2;
  text-align: center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-service-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--home-purple-dark), var(--home-purple));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 29px;
  box-shadow: 0 18px 34px rgba(133, 0, 255, 0.32);
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.45s ease;
}

.home-service-card h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.38);
}

.home-service-card p {
  color: rgba(255, 255, 255, 0.96);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  margin: 14px 0 0;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.45s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-service-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 34px 72px rgba(133, 0, 255, 0.26);
}

.home-service-card:hover img {
  transform: scale(1.08);
}

.home-service-card:hover .home-service-content {
  transform: translateY(-18px);
}

.home-service-card:hover .home-service-icon {
  transform: scale(1.06);
  background: linear-gradient(135deg, var(--home-purple), #3b82f6);
}

.home-service-card:hover p {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Testimonials
========================================================= */

.home-testimonial-section {
  padding: 95px 0;
  background: #ffffff;
}

.home-testimonial-image img {
  width: 100%;
  max-width: 470px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.home-testimonial-content h2 {
  color: #000000;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.2px;
  margin-bottom: 20px;
}

.home-stars {
  color: var(--home-purple);
  letter-spacing: 5px;
  margin-bottom: 24px;
}

.home-testimonial-card {
  max-width: 570px;
  border: 1px solid #d6dce6;
  border-radius: 6px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.home-testimonial-card h3 {
  color: #2f3642;
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  padding: 18px 20px 2px;
}

.home-testimonial-card span {
  color: #64748b;
  display: block;
  font-size: 13px;
  font-weight: 300;
  padding: 0 20px 14px;
  border-bottom: 1px solid #d6dce6;
}

.home-testimonial-card p {
  color: #343b45;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  padding: 14px 20px 20px;
  margin: 0;
}

.home-testimonial-section .carousel-indicators {
  position: static;
  justify-content: center;
  margin: 22px 0 0;
}

.home-testimonial-section .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #c6c6c6;
}

.home-testimonial-section .carousel-indicators .active {
  background-color: #000000;
}

/* =========================================================
   Success Journey / Clients
   Updated: Client images fill the full box exactly
========================================================= */

.home-success-section,
.home-clients-section {
  padding: 70px 0 95px;
  background: #ffffff;
}

.home-success-title {
  max-width: 1200px;
  margin: 0 auto 28px;
  background: linear-gradient(135deg, var(--home-purple-dark), var(--home-purple));
  border-radius: 100px;
  padding: 5px 20px;
  text-align: center;
}

.home-success-title h2 {
  color: #ffffff;
  font-size: 34px;
  font-weight: 700;
  margin: 0;
}

.home-journey-image {
  text-align: center;
  margin-bottom: 34px;
}

.home-journey-image img {
  width: 100%;
  max-width: 1080px;
  height: auto;
  object-fit: contain;
}

/* Carousel wrapper */
.home-logo-carousel {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 42px;
}

/* 6 equal boxes */
.home-logo-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid #cbd1d9;
  background: #ffffff;
}

/* Box */
.home-logo-box {
  width: 100%;
  height: 150px;
  border-right: 1px solid #cbd1d9;
  display: block;
  padding: 0;
  margin: 0;
  overflow: hidden;
  background: #ffffff;
}

.home-logo-box:last-child {
  border-right: none;
}

/* Image fills box exactly */
.home-logo-box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  margin: 0;
  padding: 0;
}

/* Hide any old text safely if it exists */
.home-logo-box span {
  display: none !important;
}

/* Controls */
.home-logo-carousel .carousel-control-prev,
.home-logo-carousel .carousel-control-next {
  width: 5%;
}

.home-logo-carousel .carousel-control-prev-icon,
.home-logo-carousel .carousel-control-next-icon {
  filter: invert(1);
  opacity: 0.35;
}

/* Indicators */
.home-logo-carousel .carousel-indicators {
  bottom: -10px;
}

.home-logo-carousel .carousel-indicators [data-bs-target] {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #c6c6c6;
}

.home-logo-carousel .carousel-indicators .active {
  background-color: #000000;
}

/* =========================================================
   Client Logo Responsive Fix
========================================================= */

@media (max-width: 1199px) {
  .home-logo-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-logo-box {
    height: 160px;
  }

  .home-logo-box:nth-child(3n) {
    border-right: none;
  }

  .home-logo-box:nth-child(n+4) {
    border-top: 1px solid #cbd1d9;
  }
}

@media (max-width: 767px) {
  .home-logo-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-logo-box {
    height: 150px;
  }

  .home-logo-box:nth-child(3n) {
    border-right: 1px solid #cbd1d9;
  }

  .home-logo-box:nth-child(2n) {
    border-right: none;
  }

  .home-logo-box:nth-child(n+3) {
    border-top: 1px solid #cbd1d9;
  }
}

@media (max-width: 575px) {
  .home-logo-row {
    grid-template-columns: 1fr;
  }

  .home-logo-box {
    height: 190px;
    border-right: none !important;
    border-top: 1px solid #cbd1d9;
  }

  .home-logo-box:first-child {
    border-top: none;
  }
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1399px) {
  .home-services-grid {
    max-width: 1180px;
    gap: 22px;
  }
}

@media (max-width: 1199px) {
  .home-expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-services-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 820px;
    gap: 28px;
  }

  .home-logo-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-logo-box:nth-child(3n) {
    border-right: none;
  }

  .home-logo-box:nth-child(n+4) {
    border-top: 1px solid #cbd1d9;
  }
}

@media (max-width: 991px) {
  .home-hero-slider .carousel,
  .home-hero-slider .carousel-inner,
  .home-hero-slider .carousel-item,
  .home-slide-img {
    height: 620px;
  }

  .home-slide-content {
    padding-top: 95px;
  }

  .home-exclusive-section,
  .home-testimonial-section {
    padding: 75px 0;
  }

  .home-services-section {
    padding: 80px 0;
    background-attachment: scroll;
    background:
      linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.80)),
      url("../images/home-services-bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }

  .home-exclusive-image {
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .home-hero-slider .carousel,
  .home-hero-slider .carousel-inner,
  .home-hero-slider .carousel-item,
  .home-slide-img {
    height: 600px;
  }

  .home-slide-caption {
    text-align: center;
  }

  .home-slide-content {
    padding-top: 90px;
    margin: 0 auto;
  }

  .home-slide-actions {
    justify-content: center;
  }

  .home-expertise-grid,
  .home-services-grid {
    grid-template-columns: 1fr;
  }

  .home-expertise-card {
    min-height: 230px;
  }

  .home-exclusive-content h2,
  .home-testimonial-content h2,
  .home-section-heading h2 {
    font-size: 34px;
  }

  .home-services-grid {
    max-width: 440px;
  }

  .home-service-card {
    height: 460px;
  }

  .home-service-card p {
    opacity: 1;
    transform: none;
  }

  .home-service-content {
    bottom: 58px;
  }

  .home-logo-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-logo-box:nth-child(3n) {
    border-right: 1px solid #cbd1d9;
  }

  .home-logo-box:nth-child(2n) {
    border-right: none;
  }

  .home-logo-box:nth-child(n+3) {
    border-top: 1px solid #cbd1d9;
  }
}

@media (max-width: 575px) {
  .home-hero-slider .carousel,
  .home-hero-slider .carousel-inner,
  .home-hero-slider .carousel-item,
  .home-slide-img {
    height: 560px;
  }

  .home-slide-content h1 {
    font-size: 34px;
  }

  .home-slide-content p {
    font-size: 15px;
  }

  .home-primary-btn,
  .home-secondary-btn,
  .home-purple-btn {
    width: 100%;
    justify-content: center;
  }

  .home-exclusive-section,
  .home-testimonial-section {
    padding: 58px 0;
  }

  .home-services-section {
    padding: 62px 0;
  }

  .home-section-heading {
    margin-bottom: 40px;
  }

  .home-section-heading h2 {
    font-size: 30px;
  }

  .home-section-heading p {
    font-size: 15px;
  }

  .home-section-heading p a {
    display: inline-block;
    margin-left: 0;
    margin-top: 6px;
  }

  .home-expertise-card {
    padding: 30px 24px;
  }

  .home-service-card {
    height: 420px;
  }

  .home-service-content {
    left: 20px;
    right: 20px;
    bottom: 48px;
  }

  .home-service-card h3 {
    font-size: 20px;
  }

  .home-success-title h2 {
    font-size: 24px;
  }

  .home-logo-row {
    grid-template-columns: 1fr;
  }

  .home-logo-box {
    border-right: none !important;
    border-top: 1px solid #cbd1d9;
  }

  .home-logo-box:first-child {
    border-top: none;
  }
}

/* =========================================================
   Premium Home Body Update
   From "Who We Bring" to Client Logos
   90% width + premium cards + solid color blocks + animations
========================================================= */

:root {
  --home-blue: #0ea5ff;
  --home-cyan: #18d2ff;
  --home-green: #20d58a;
  --home-orange: #ff9f1c;
  --home-pink: #ff4fd8;
  --home-deep: #071528;
  --home-ink: #1f2433;
  --home-border: rgba(124, 44, 255, 0.14);
  --home-shadow: 0 28px 80px rgba(31, 12, 84, 0.13);
}

.premium-home-body {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(124, 44, 255, 0.10), transparent 24%),
    radial-gradient(circle at 92% 30%, rgba(14, 165, 255, 0.10), transparent 26%),
    radial-gradient(circle at 78% 80%, rgba(32, 213, 138, 0.07), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbf8ff 42%, #ffffff 100%);
}

.premium-home-body::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(124, 44, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 255, 0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 15%, #000 88%, transparent 100%);
}

.premium-home-body > section {
  position: relative;
  z-index: 1;
}

@media (min-width: 1200px) {
  .premium-home-body > section:not(.home-expertise-strip) > .container,
  .home-exclusive-section > .container,
  .home-services-section > .container,
  .home-testimonial-section > .container,
  .home-clients-section > .container {
    width: 90% !important;
    max-width: 90% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 1199px) {
  .premium-home-body > section:not(.home-expertise-strip) > .container,
  .home-exclusive-section > .container,
  .home-services-section > .container,
  .home-testimonial-section > .container,
  .home-clients-section > .container {
    width: 94% !important;
    max-width: 94% !important;
  }
}

/* Common Premium Refinement */

.premium-home-body .section-kicker {
  gap: 10px;
  color: var(--home-purple);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.3px;
}

.premium-home-body .section-kicker span {
  width: 18px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--home-purple), var(--home-blue));
  box-shadow: 0 8px 20px rgba(124, 44, 255, 0.25);
}

.premium-home-body .home-section-heading h2 {
  color: var(--home-purple);
  font-size: clamp(32px, 3.2vw, 54px);
}

.premium-home-body .home-section-heading p {
  color: var(--home-text);
  font-weight: 400;
}

/* =========================================================
   Who We Bring Premium Section
========================================================= */

.home-exclusive-section {
  padding: 78px 0 48px;
  background: transparent;
}

.exclusive-premium-card {
  position: relative;
  overflow: hidden;
  padding: 52px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 84% 12%, rgba(14, 165, 255, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 255, 0.96));
  border: 1px solid var(--home-border);
  box-shadow: var(--home-shadow);
}

.exclusive-premium-card::before {
  content: "\F135";
  position: absolute;
  right: -28px;
  top: -70px;
  font-family: "bootstrap-icons";
  font-size: 260px;
  line-height: 1;
  color: rgba(124, 44, 255, 0.055);
  transform: rotate(-10deg);
}

.exclusive-premium-card > .row {
  position: relative;
  z-index: 3;
}

.exclusive-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  margin-bottom: 16px;
  border-radius: 999px;
  color: var(--home-purple);
  font-size: 13px;
  font-weight: 800;
  background: var(--home-purple-soft);
  border: 1px solid var(--home-border);
}

.exclusive-badge i {
  color: var(--home-blue);
}

.premium-home-body .home-exclusive-content h2 {
  color: var(--home-purple);
  font-size: clamp(32px, 3vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1px;
}

.premium-home-body .home-exclusive-content p {
  color: var(--home-text);
  font-size: 15px;
  font-weight: 400;
}

.home-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 26px 0 28px;
}

.home-check-card {
  position: relative;
  overflow: hidden;
  min-height: 110px;
  padding: 18px;
  border-radius: 22px;
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(31, 12, 84, 0.14);
  transition: all 0.32s ease;
}

.home-check-card::before {
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
}

.home-check-card:nth-child(1) {
  background: linear-gradient(135deg, #7c2cff, #5b18d6);
}

.home-check-card:nth-child(2) {
  background: linear-gradient(135deg, #0ea5ff, #0077d9);
}

.home-check-card:nth-child(3) {
  background: linear-gradient(135deg, #20d58a, #059669);
}

.home-check-card:nth-child(4) {
  background: linear-gradient(135deg, #ff9f1c, #f97316);
}

.home-check-card i,
.home-check-card span {
  position: relative;
  z-index: 2;
}

.home-check-card i {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.16);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.home-check-card span {
  display: block;
  color: #ffffff;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
}

.home-check-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 64px rgba(31, 12, 84, 0.22);
}

.home-exclusive-divider {
  background: rgba(124, 44, 255, 0.16);
}

.home-purple-btn {
  border-radius: 16px;
  background: linear-gradient(135deg, var(--home-purple-dark), var(--home-purple), var(--home-blue));
}

/* Animated Growth Visual */

.home-exclusive-visual {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.growth-dashboard {
  position: relative;
  z-index: 3;
  width: min(100%, 480px);
  padding: 20px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 20% 18%, rgba(32, 213, 138, 0.22), transparent 30%),
    radial-gradient(circle at 80% 18%, rgba(14, 165, 255, 0.28), transparent 34%),
    linear-gradient(135deg, #061527, #18083c 55%, #042f39);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 34px 95px rgba(7, 21, 40, 0.30);
  overflow: hidden;
}

.growth-dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.65;
  pointer-events: none;
}

.growth-topbar,
.growth-core,
.growth-metrics,
.growth-flow-lines {
  position: relative;
  z-index: 2;
}

.growth-topbar {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.growth-topbar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,0.42);
}

.growth-core {
  min-height: 150px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  gap: 20px;
}

.growth-main-icon {
  position: relative;
  width: 96px;
  height: 96px;
  min-width: 96px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--home-purple), var(--home-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 44px;
  box-shadow: 0 22px 55px rgba(14,165,255,0.22);
}

.growth-main-icon::before,
.growth-main-icon::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.30);
  animation: homeGrowthPulse 2.2s infinite ease-out;
}

.growth-main-icon::before {
  inset: -10px;
}

.growth-main-icon::after {
  inset: -23px;
  animation-delay: 0.8s;
}

.growth-core strong,
.growth-core small {
  display: block;
}

.growth-core strong {
  color: #ffffff;
  font-size: 19px;
}

.growth-core small {
  color: rgba(255,255,255,0.68);
  margin-top: 5px;
}

.growth-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.growth-metrics div {
  min-height: 112px;
  padding: 16px 10px;
  border-radius: 20px;
  color: #ffffff;
  text-align: center;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.10);
}

.growth-metrics i {
  color: var(--home-cyan);
  font-size: 23px;
  display: block;
  margin-bottom: 8px;
}

.growth-metrics strong,
.growth-metrics span {
  display: block;
}

.growth-metrics strong {
  color: #ffffff;
  font-size: 23px;
  line-height: 1.1;
}

.growth-metrics span {
  color: rgba(255,255,255,0.68);
  font-size: 11px;
  margin-top: 5px;
}

.growth-flow-lines {
  display: grid;
  gap: 13px;
  margin-top: 18px;
}

.growth-flow-lines span {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--home-cyan), var(--home-purple));
  animation: homeFlowScan 2.8s infinite ease-in-out;
}

.growth-flow-lines span:nth-child(2) {
  animation-delay: 0.3s;
}

.growth-flow-lines span:nth-child(3) {
  animation-delay: 0.6s;
}

.exclusive-bg-orbit {
  position: absolute;
  right: 8%;
  top: 50%;
  border-radius: 50%;
  border: 1.5px solid rgba(14,165,255,0.18);
  transform: translateY(-50%);
  animation: homeOrbitRotate 14s linear infinite;
  z-index: 1;
}

.orbit-a {
  width: 430px;
  height: 430px;
}

.orbit-b {
  width: 350px;
  height: 350px;
  border-color: rgba(124,44,255,0.20);
  animation-direction: reverse;
  animation-duration: 18s;
}

.orbit-c {
  width: 270px;
  height: 270px;
  border-color: rgba(32,213,138,0.18);
  animation-duration: 11s;
}

.growth-floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
  padding: 14px 16px;
  border-radius: 22px;
  color: #ffffff;
  background: rgba(7, 21, 40, 0.92);
  box-shadow: 0 22px 54px rgba(7, 21, 40, 0.28);
  backdrop-filter: blur(10px);
  z-index: 5;
}

.growth-floating-card i {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--home-purple), var(--home-blue));
  font-size: 21px;
}

.growth-floating-card strong,
.growth-floating-card span {
  display: block;
}

.growth-floating-card strong {
  font-size: 14px;
}

.growth-floating-card span {
  color: rgba(255,255,255,0.70);
  font-size: 12px;
}

.growth-floating-card-1 {
  left: -20px;
  top: 82px;
}

.growth-floating-card-2 {
  right: -18px;
  bottom: 62px;
}

/* =========================================================
   Services Premium Solid Cards
========================================================= */

.home-services-section {
  padding: 78px 0 86px;
  background:
    radial-gradient(circle at 10% 15%, rgba(124,44,255,0.14), transparent 28%),
    linear-gradient(135deg, rgba(246,240,255,0.94), rgba(255,255,255,0.98));
  background-attachment: scroll;
}

.home-services-grid {
  width: 100%;
  max-width: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.home-service-card {
  height: 470px;
  border-radius: 30px;
  box-shadow: 0 24px 65px rgba(31,12,84,0.14);
}

.home-service-card::before {
  content: "";
  position: absolute;
  right: -48px;
  top: -48px;
  width: 165px;
  height: 165px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  z-index: 2;
}

.home-service-card:nth-child(1) .home-service-overlay {
  background: linear-gradient(135deg, rgba(124,44,255,0.90), rgba(91,24,214,0.92));
}

.home-service-card:nth-child(2) .home-service-overlay {
  background: linear-gradient(135deg, rgba(14,165,255,0.90), rgba(0,119,217,0.92));
}

.home-service-card:nth-child(3) .home-service-overlay {
  background: linear-gradient(135deg, rgba(32,213,138,0.90), rgba(5,150,105,0.92));
}

.home-service-card:nth-child(4) .home-service-overlay {
  background: linear-gradient(135deg, rgba(255,159,28,0.90), rgba(249,115,22,0.92));
}

.home-service-card img {
  opacity: 0.28;
  mix-blend-mode: screen;
}

.home-service-content {
  bottom: 46px;
}

.home-service-icon {
  width: 78px;
  height: 78px;
  border-radius: 24px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: none;
}

/* =========================================================
   Testimonial Premium Section
========================================================= */

.home-testimonial-section {
  padding: 78px 0;
  background: transparent;
}

.testimonial-premium-card {
  padding: 48px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 14% 16%, rgba(124,44,255,0.14), transparent 26%),
    linear-gradient(135deg, #ffffff, #fbf8ff);
  border: 1px solid var(--home-border);
  box-shadow: 0 24px 65px rgba(31,12,84,0.11);
}

.home-testimonial-visual {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-quote-orbit {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1.5px solid rgba(124,44,255,0.18);
  animation: homeOrbitRotate 16s linear infinite;
}

.testimonial-image-frame {
  position: relative;
  z-index: 2;
  padding: 12px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,255,255,0.90), rgba(246,240,255,0.80));
  border: 1px solid var(--home-border);
  box-shadow: 0 28px 75px rgba(31,12,84,0.16);
}

.testimonial-image-frame img {
  width: 100%;
  max-width: 420px;
  min-height: 310px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.testimonial-floating-badge {
  position: absolute;
  left: 0;
  bottom: 42px;
  z-index: 4;
  padding: 14px 18px;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--home-purple), var(--home-blue));
  box-shadow: 0 20px 45px rgba(31,12,84,0.20);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 13px;
}

.home-testimonial-content h2 {
  color: var(--home-purple);
}

.home-stars {
  color: #ff9f1c;
}

.home-testimonial-card {
  position: relative;
  overflow: hidden;
  max-width: 720px;
  min-height: 280px;
  border: none;
  border-radius: 30px;
  padding: 34px 30px;
  background: linear-gradient(135deg, #7c2cff, #5b18d6);
  box-shadow: 0 22px 55px rgba(31,12,84,0.16);
}

.home-testimonial-card::before {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,0.13);
}

.home-testimonial-section .carousel-item:nth-child(2) .home-testimonial-card {
  background: linear-gradient(135deg, #0ea5ff, #0077d9);
}

.home-testimonial-section .carousel-item:nth-child(3) .home-testimonial-card {
  background: linear-gradient(135deg, #20d58a, #059669);
}

.testimonial-card-icon {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  border-radius: 19px;
  color: #ffffff;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.home-testimonial-card h3,
.home-testimonial-card span,
.home-testimonial-card p {
  position: relative;
  z-index: 2;
  color: #ffffff;
  border: none;
  padding-left: 0;
  padding-right: 0;
}

.home-testimonial-card h3 {
  padding-top: 0;
  font-size: 21px;
  font-weight: 800;
}

.home-testimonial-card span {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 600;
}

.home-testimonial-card p {
  color: rgba(255,255,255,0.92);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  padding-bottom: 0;
}

/* =========================================================
   Client Logos Premium
========================================================= */

.home-clients-section {
  padding: 78px 0 95px;
  background:
    radial-gradient(circle at 10% 15%, rgba(124,44,255,0.55), transparent 28%),
    radial-gradient(circle at 86% 24%, rgba(14,165,255,0.30), transparent 30%),
    linear-gradient(135deg, #061527, #18083c 50%, #052b35);
  overflow: hidden;
}

.clients-premium-wrap {
  position: relative;
}

.home-clients-section .section-kicker,
.home-clients-section .home-section-heading h2,
.home-clients-section .home-section-heading p {
  color: #ffffff;
}

.home-clients-section .section-kicker span {
  background: #ffffff;
  box-shadow: none;
}

.home-journey-premium {
  position: relative;
  max-width: 1180px;
  margin: 0 auto 34px;
  padding: 18px;
  border-radius: 34px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 26px 70px rgba(7,21,40,0.28);
}

.home-journey-premium::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(124,44,255,0.38), rgba(14,165,255,0.25), rgba(32,213,138,0.18));
  opacity: 0.35;
}

.home-journey-premium img {
  position: relative;
  z-index: 2;
  width: 100%;
  display: block;
  border-radius: 24px;
  background: #ffffff;
}

.journey-icon {
  position: absolute;
  left: 26px;
  top: 26px;
  z-index: 3;
  width: 62px;
  height: 62px;
  border-radius: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--home-purple), var(--home-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 20px 45px rgba(31,12,84,0.22);
}

.home-logo-carousel {
  max-width: none;
  padding: 18px 48px 50px;
  border-radius: 34px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 26px 70px rgba(7,21,40,0.22);
}

.home-logo-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  border: none;
  background: transparent;
}

.home-logo-box {
  position: relative;
  height: 150px;
  border: none !important;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(7,21,40,0.18);
  transition: all 0.32s ease;
}

.home-logo-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.55);
  pointer-events: none;
  z-index: 2;
}

.home-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  background: #ffffff;
  transition: all 0.32s ease;
}

.home-logo-box:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 60px rgba(14,165,255,0.22);
}

.home-logo-box:hover img {
  transform: scale(1.06);
}

.home-logo-carousel .carousel-control-prev-icon,
.home-logo-carousel .carousel-control-next-icon {
  filter: none;
  opacity: 1;
}

.home-logo-carousel .carousel-indicators [data-bs-target] {
  background-color: rgba(255,255,255,0.50);
}

.home-logo-carousel .carousel-indicators .active {
  background-color: var(--home-cyan);
}

/* Animations */

@keyframes homeGrowthPulse {
  0% { transform: scale(0.96); opacity: 0.7; }
  70% { transform: scale(1.08); opacity: 0.1; }
  100% { transform: scale(1.12); opacity: 0; }
}

@keyframes homeFlowScan {
  0%, 100% { opacity: 0.55; transform: scaleX(0.94); transform-origin: left; }
  50% { opacity: 1; transform: scaleX(1); transform-origin: left; }
}

@keyframes homeOrbitRotate {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

/* Responsive Premium Updates */

@media (max-width: 1399px) {
  .home-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-logo-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1199px) {
  .home-exclusive-visual {
    min-height: 450px;
  }

  .home-services-grid {
    max-width: 900px;
  }
}

@media (max-width: 991px) {
  .exclusive-premium-card,
  .testimonial-premium-card {
    padding: 40px 32px;
  }

  .home-check-grid {
    grid-template-columns: 1fr;
  }

  .growth-floating-card {
    position: relative;
    inset: auto !important;
    width: 100%;
    margin-top: 14px;
  }

  .exclusive-bg-orbit {
    opacity: 0.50;
  }
}

@media (max-width: 767px) {
  .exclusive-premium-card,
  .testimonial-premium-card {
    padding: 32px 24px;
    border-radius: 28px;
  }

  .home-exclusive-visual {
    min-height: auto;
    display: block;
  }

  .growth-dashboard {
    width: 100%;
    border-radius: 30px;
  }

  .growth-core {
    align-items: flex-start;
    flex-direction: column;
  }

  .growth-metrics {
    grid-template-columns: 1fr;
  }

  .home-services-grid,
  .home-logo-row {
    grid-template-columns: 1fr;
  }

  .home-service-card {
    height: 420px;
  }

  .home-testimonial-visual {
    min-height: auto;
  }

  .testimonial-image-frame img {
    min-height: 240px;
  }

  .testimonial-floating-badge {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 14px;
    width: 100%;
    justify-content: center;
  }

  .home-logo-carousel {
    padding: 14px 18px 44px;
  }

  .home-logo-box {
    height: 180px;
  }
}

@media (max-width: 575px) {
  .premium-home-body > section:not(.home-expertise-strip) > .container,
  .home-exclusive-section > .container,
  .home-services-section > .container,
  .home-testimonial-section > .container,
  .home-clients-section > .container {
    width: 94% !important;
    max-width: 94% !important;
  }

  .home-exclusive-section,
  .home-services-section,
  .home-testimonial-section,
  .home-clients-section {
    padding-top: 56px;
    padding-bottom: 58px;
  }

  .exclusive-premium-card,
  .testimonial-premium-card {
    padding: 28px 20px;
  }

  .growth-main-icon {
    width: 78px;
    height: 78px;
    min-width: 78px;
    font-size: 35px;
    border-radius: 24px;
  }

  .home-check-card {
    min-height: auto;
  }

  .home-service-card {
    height: 390px;
  }

  .home-logo-box {
    height: 170px;
  }

  .journey-icon {
    width: 50px;
    height: 50px;
    border-radius: 18px;
    font-size: 22px;
  }
}


/* =========================================================
   Requested Update
   1) Services section: remove solid color overlay and show image clearly
   2) Exclusive Technology: remove right-side card and show image
========================================================= */

/* Services: make images visible instead of solid color blocks */
.premium-home-body .home-services-section {
  background:
    radial-gradient(circle at 10% 15%, rgba(124,44,255,0.10), transparent 28%),
    linear-gradient(135deg, rgba(246,240,255,0.92), rgba(255,255,255,0.98)) !important;
}

.premium-home-body .home-service-card::before {
  display: none !important;
}

.premium-home-body .home-service-card img {
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  filter: saturate(1.08) contrast(1.03);
}

.premium-home-body .home-service-overlay,
.premium-home-body .home-service-card:nth-child(1) .home-service-overlay,
.premium-home-body .home-service-card:nth-child(2) .home-service-overlay,
.premium-home-body .home-service-card:nth-child(3) .home-service-overlay,
.premium-home-body .home-service-card:nth-child(4) .home-service-overlay {
  background:
    linear-gradient(180deg, rgba(5, 8, 18, 0.04), rgba(5, 8, 18, 0.82)),
    linear-gradient(135deg, rgba(124, 44, 255, 0.22), rgba(14, 165, 255, 0.14)) !important;
}

.premium-home-body .home-service-card:hover .home-service-overlay {
  background:
    linear-gradient(180deg, rgba(5, 8, 18, 0.02), rgba(5, 8, 18, 0.72)),
    linear-gradient(135deg, rgba(124, 44, 255, 0.20), rgba(14, 165, 255, 0.18)) !important;
}

.premium-home-body .home-service-icon {
  background: rgba(255,255,255,0.16) !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.18) !important;
}

.premium-home-body .home-service-card:hover img {
  transform: scale(1.08);
}

/* Exclusive Technology: use image instead of animated card */
.premium-exclusive-image {
  position: relative;
  text-align: center;
  padding: 12px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(246,240,255,0.78));
  border: 1px solid rgba(124, 44, 255, 0.14);
  box-shadow:
    0 30px 85px rgba(31, 12, 84, 0.16),
    0 0 0 8px rgba(124, 44, 255, 0.035);
  overflow: hidden;
}

.premium-exclusive-image::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(124,44,255,0.35), rgba(14,165,255,0.24), rgba(32,213,138,0.16));
  opacity: 0.32;
  z-index: 0;
}

.premium-exclusive-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none !important;
  min-height: 430px;
  max-height: 540px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  display: block;
  box-shadow: 0 22px 60px rgba(7, 21, 40, 0.18);
  transition: transform 0.55s ease;
}

.premium-exclusive-image:hover img {
  transform: scale(1.035);
}

/* Hide unused orbit elements if any remain */
.exclusive-premium-card .exclusive-bg-orbit {
  display: none !important;
}

/* Reduce unnecessary visual empty space after image replacement */
.home-exclusive-section .exclusive-premium-card {
  padding: 46px !important;
}

@media (max-width: 991px) {
  .premium-exclusive-image img {
    min-height: 340px;
  }
}

@media (max-width: 575px) {
  .premium-exclusive-image {
    padding: 8px;
    border-radius: 26px;
  }

  .premium-exclusive-image img {
    min-height: 260px;
    border-radius: 20px;
  }

  .home-exclusive-section .exclusive-premium-card {
    padding: 28px 20px !important;
  }
}


/* =========================================================
   Requested Final Update
   1) Exclusive Technology: 4 color blocks text beside icon
   2) Expertise Strip: auto-animate same as hover every 3 seconds
========================================================= */

/* Exclusive Technology - icon left, text right */
.home-check-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.home-check-card {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  min-height: 96px !important;
  padding: 18px 20px !important;
}

.home-check-card i {
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  margin: 0 !important;
  border-radius: 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 23px !important;
}

.home-check-card span {
  flex: 1 !important;
  display: block !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
}

/* Expertise Strip auto-hover must match the existing manual hover */
.home-expertise-grid .service-card.auto-hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(133, 0, 255, 0.14);
}

.home-expertise-grid .service-card.auto-hover .hover-image {
  opacity: 1;
}

.home-expertise-grid .service-card.auto-hover .hover-image img {
  transform: scale(1);
}

.home-expertise-grid .service-card.auto-hover::before,
.home-expertise-grid .service-card.auto-hover::after {
  transform: translate(0, 0);
  opacity: 0.92;
}

.home-expertise-grid .service-card.auto-hover h3,
.home-expertise-grid .service-card.auto-hover p {
  color: #ffffff !important;
}

.home-expertise-grid .service-card.auto-hover .service-icon {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-14px) scale(1.06);
  box-shadow: 0 14px 30px rgba(255, 255, 255, 0.08);
}

.home-expertise-grid .service-card.auto-hover .service-icon i {
  color: #ffffff !important;
}

/* Manual hover remains stronger and always works */
.home-expertise-grid .service-card:hover {
  transform: translateY(-6px);
}

/* Mobile alignment for the 4 color blocks */
@media (max-width: 991px) {
  .home-check-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 575px) {
  .home-check-card {
    align-items: flex-start !important;
  }
}



/* =========================================================
   FINAL FIX: Remove double black box in home slider
   Keep only ONE dark box behind hero title content
========================================================= */

/* Remove full slider overlay */
.home-hero-slider .home-slide-overlay,
.home-hero-slider .home-slide-glow {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  background: transparent !important;
}

/* Remove any black background from Bootstrap caption */
.home-hero-slider .carousel-caption,
.home-hero-slider .home-slide-caption {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* Remove any unwanted box from container */
.home-hero-slider .carousel-caption .container,
.home-hero-slider .home-slide-caption .container {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* Remove any pseudo overlay accidentally coming from other CSS */
.home-hero-slider .carousel-caption::before,
.home-hero-slider .carousel-caption::after,
.home-hero-slider .home-slide-caption::before,
.home-hero-slider .home-slide-caption::after,
.home-hero-slider .home-slide-content::before,
.home-hero-slider .home-slide-content::after {
  display: none !important;
  content: none !important;
}

/* Keep only this ONE box behind title/content */
.home-hero-slider .home-slide-content {
  max-width: 820px !important;
  padding: 34px 38px !important;
  margin-top: 90px !important;
  margin-left: 0 !important;
  margin-right: auto !important;

  border-radius: 26px !important;
  background: rgba(5, 8, 22, 0.78) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;

  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;

  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38) !important;
}

/* Text should not have separate black box */
.home-hero-slider .home-slide-kicker,
.home-hero-slider .home-slide-content h1,
.home-hero-slider .home-slide-content p,
.home-hero-slider .home-slide-actions {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* Keep heading readable */
.home-hero-slider .home-slide-content h1 {
  color: #ffffff !important;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.42) !important;
}

.home-hero-slider .home-slide-content p,
.home-hero-slider .home-slide-kicker {
  color: rgba(255, 255, 255, 0.94) !important;
}

/* Tablet */
@media (max-width: 991px) {
  .home-hero-slider .home-slide-content {
    padding: 32px 34px !important;
    margin-top: 90px !important;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .home-hero-slider .home-slide-caption {
    text-align: center !important;
  }

  .home-hero-slider .home-slide-content {
    padding: 28px 24px !important;
    margin: 80px auto 0 !important;
    background: rgba(5, 8, 22, 0.78) !important;
  }
}

/* Small Mobile */
@media (max-width: 575px) {
  .home-hero-slider .home-slide-content {
    padding: 24px 18px !important;
    margin: 72px auto 0 !important;
    border-radius: 20px !important;
    background: rgba(5, 8, 22, 0.82) !important;
  }
}
