html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}
body {
  /* font-family: "Josefin Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif; */
  overflow-x: hidden;
  font-size: 14px;
  margin: 0;
  padding: 0;
}


/* ===== MODERN NAVBAR ===== */
.modern-navbar {
  background-color: rgba(255, 255, 255, 0.4) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  min-height: 70px;
  padding: 8px 0;
  margin: 10px auto;
  max-width: 1200px;
  border-radius: 10px;
}

.modern-navbar .navbar-brand {
  padding: 10px;
  transition: transform 0.3s ease;
}

.modern-navbar .navbar-brand:hover {
  transform: scale(1.05);
}

.modern-navbar .navbar-brand img {
  display: inline-block;
  vertical-align: middle;
}

.modern-navbar .nav-link {
  color: #333 !important;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  padding: 8px 16px !important;
  margin: 4px 3px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  font-size: 1.2rem;
}

.modern-navbar .nav-link:hover,
.modern-navbar .nav-link.active {
  background-color: transparent !important;
  color: #8c1b8e !important;
  transform: translateY(-2px);
}

.modern-navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #8c1b8e, #b02ca5);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.modern-navbar .nav-link:hover::after,
.modern-navbar .nav-link.active::after {
  width: 70%;
}

.modern-navbar .nav-item.cta-item {
  display: flex;
  align-items: center;
}

.modern-navbar .nav-item.cta-item .btn-contact {
  background: linear-gradient(135deg, #86047d, #8c1b8e);
  color: white !important;
  /* padding: 8px 24px !important; */
  padding: 10px 24px;
  border-radius: 20px;
  box-shadow: 0 3px 12px rgba(134, 4, 125, 0.2);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin: 4px 3px;
  line-height: 1;
}

.modern-navbar .nav-item.cta-item .btn-contact::after {
  display: none;
}

.modern-navbar .nav-item.cta-item .btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(134, 4, 125, 0.3);
  background: linear-gradient(135deg, #8c1b8e, #86047d);
}

.modern-navbar .navbar-toggler {
  border: none;
  padding: 8px;
}

.modern-navbar .navbar-toggler:focus {
  box-shadow: none;
}

/* Responsive alignment fix */
@media (max-width: 991px) {
  .modern-navbar .nav-item.cta-item {
    display: block;
    text-align: center;
  }

  .modern-navbar .nav-item.cta-item .btn-contact {
    display: inline-flex;
  }
}

/* ===== HERO SECTION - IMPROVED ALIGNMENT ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: #1e0036; /* fallback color while image loads */
  background-image: url("./images/Home.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  overflow: hidden;
  padding: 100px 0 60px;
}

.hero-section .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #1e0036, #8c1b8e, #64005d, #2f0036);
  background-size: 300% 300%;
  /* animation: gradientShift 10s ease infinite; */
  opacity: 0.4;
  z-index: 1;
}

/* @keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
} */

.hero-section .container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
}

.hero-section .row {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
}

.hero-heading {
  font-size: 4.2rem;
  font-family: "Righteous", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.3);
}

.hero-heading .highlight {
  background: linear-gradient(90deg, #e52e71, #bb50bb);
  background-size: 200% 200%;
  font-family: "Righteous", sans-serif;
  font-weight: 600;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShine 7s linear infinite, typing 5s steps(30) infinite,
    blink 0.75s step-end infinite;
  border-right: 3px solid #e52e71;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  position: relative;
  max-width: fit-content;
}

@keyframes textShine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@keyframes typing {
  0% {
    width: 0;
  }
  40% {
    width: 100%;
  }
  60% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

/* Alternative: Single type effect (no erase) */
.hero-heading .highlight.type-once {
  animation: textShine 7s linear infinite, typing-once 2s steps(30) forwards,
    blink-cursor 0.75s step-end infinite;
}

@keyframes typing-once {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink-cursor {
  50% {
    border-color: transparent;
  }
}

.hero-subheading {
  font-size: 1.5rem;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.5px;
  margin-top: 16px;
  margin-bottom: 32px;
  opacity: 0.95;
  animation: fadeInUp 1.2s ease-out;
  line-height: 1.7;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-subheading p {
  margin: 8px 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== MODERN CTA BUTTONS ===== */
.cta-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  animation: fadeInUp 1.4s ease-out;
  margin-top: 8px;
}

.btn {
  padding: 13px 34px;
  font-family: "Lato", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.3px;
  text-transform: none;
}

.btn-primary {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  color: #8c1b8e;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(255, 255, 255, 0.5);
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  50% {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15),
      0 0 0 10px rgba(255, 255, 255, 0);
  }
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #8c1b8e transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary::after {
  content: "→";
  position: absolute;
  right: 20px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.4s ease;
  font-size: 1.1rem;
  font-weight: bold;
}

.btn-primary:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.btn-primary:hover {
  transform: translateY(-6px) scale(1);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25), 0 0 30px rgba(157, 80, 187, 0.3);
  color: #7f0a81;
  background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 100%);
  padding-right: 50px;
}

.btn-primary:active {
  transform: translateY(-2px) scale(1);
}

.btn-outline {
  background: rgba(122, 6, 140, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12),
    inset 0 0 15px rgba(255, 255, 255, 0.05);
  position: relative;
}

.btn-outline::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 40px;
  padding: 2px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.8),
    rgba(229, 46, 113, 0.6),
    rgba(157, 80, 187, 0.6)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}

/* .btn-outline:hover::before {
  opacity: 1;
} */

.btn-outline::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15),
    rgba(229, 46, 113, 0.1)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 45px rgba(255, 255, 255, 0.2),
    0 0 40px rgba(255, 255, 255, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.1);
  color: white;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}
*/ .btn-outline:active {
  transform: translateY(-2px) scale(1);
}

.btn span {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.btn:hover span {
  transform: scale(1.1);
}

/* =========================================
   SERVICES SECTION - CORPORATE (COMPACT & BOLD)
   ========================================= */

.services-section {
  padding: 50px 0; /* Reduced padding (was 90px) to remove whitespace */
  background-color: #f8f9fa;
}

.services-title {
  margin-bottom: 35px; /* Reduced margin (was 60px) */
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.services-title h1 {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 2.8rem;
  color: #2d2d2d;
  margin-bottom: 10px;
}

.services-title .highlight {
  color: #8c1b8e;
  font-weight: 700;
}

.services-subheading {
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.2rem; /* Slightly larger */
  color: #666;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== SERVICES CARD DESIGN ===== */

.services-cards .col-md-4 {
  padding: 10px; /* Tighter column spacing */
}

.modern-card {
  /* CHANGE THIS VALUE to your desired color */
  background: #fcfcfc; /* Currently set to a very subtle off-white */
  
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 30px 25px;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* New Hover Effect: Bottom Line Accent */
.modern-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #8c1b8e;
  transform: scaleX(0); /* Hidden by default */
  transform-origin: center;
  transition: transform 0.3s ease;
}

/* Icon Styling */
.card-icon {
  width: 75px;
  height: 75px;
  background: #f4ebf5; /* Light purple tint */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px; /* Reduced margin */
  transition: all 0.3s ease;
}

.card-icon i {
  font-size: 2.2rem; /* Larger Icon */
  color: #8c1b8e;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Typography - INCREASED SIZES */
.card-title {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 1.5rem; /* Increased from 1.35rem */
  color: #222;
  margin-bottom: 10px;
}

.card-text {
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.15rem; /* Increased from 1rem */
  color: #555;
  line-height: 1.5;
}

/* ===== NEW HOVER EFFECTS ===== */

.modern-card:hover {
  background: #ffffff; /* Optional: Brightens to pure white on hover */
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

/* Show Bottom Border on Hover */
.modern-card:hover::after {
  transform: scaleX(1);
}

/* Icon Changes on Hover */
.modern-card:hover .card-icon {
  background: #8c1b8e;
  box-shadow: 0 4px 12px rgba(140, 27, 142, 0.25);
}

.modern-card:hover .card-icon i {
  color: #ffffff;
  transform: scale(1.1); /* Subtle grow */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .services-section {
    padding: 40px 0;
  }
  
  .modern-card {
    padding: 25px 20px;
  }
  
  .card-title {
    font-size: 1.35rem;
  }
}

/* ===== WHY CHOOSE US SECTION - IMPROVED CENTERING ===== */
.why-choose-us {
  padding: 70px 0;
  background: linear-gradient(135deg, #f5f7ff, #eef1fb);
}

.why-choose-us .container {
  max-width: 1200px;
}

.section-title {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 2.8rem;
  color: #2d2d2d;
  margin-bottom: 18px;
  text-align: center;
}

.section-subtitle {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #666;
  max-width: 1200px;
  margin: 0 auto 45px;
  text-align: center;
  line-height: 1.6;
}

.why-choose-us .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 35px 24px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
  margin-bottom: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.stat-card:hover {
  transform: translateY(-8px);
  background-color: #f5f7ff;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.stat-icon {
  margin-bottom: 18px;
  color: #8c1b8e;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stat-icon i {
  font-size: 2.5rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 500;
  margin: 12px 0 10px;
  color: #333;
  line-height: 1.2;
}

.stat-text {
  font-size: 1.5rem;
  color: #555;
  margin: 0;
  line-height: 1.4;
}

/* ===== CLIENTS SECTION ===== */
.clients {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
  background: transparent;
}

.clients .section-title {
  font-family: "Lato", sans-serif;
  position: relative;
  z-index: 1;
  text-transform: capitalize;
  letter-spacing: 0.8px;
  margin-bottom: 50px;
  text-align: center;
  font-weight: 500;
}

.logo-row {
  overflow: hidden;
  margin: 4rem 0;
  position: relative;
  z-index: 1;
}

.logo-track {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: nowrap;
  gap: 50px;
  animation-timing-function: linear;
}

.left-to-right .logo-track {
  animation: moveLeftRight 40s linear infinite;
}

.right-to-left .logo-track {
  animation: moveRightLeft 40s linear infinite;
}

@keyframes moveLeftRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

@keyframes moveRightLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logo-track img {
  height: 65px;
  width: auto;
  transition: all 0.4s ease;
  opacity: 0.8;
}

.logo-track img:hover {
  transform: translateX(-6px) scale(1.05);
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

/* ===== FOOTER STYLES ===== */
.footer-main {
  /* background: radial-gradient(ellipse at bottom, #8C1B8E); */
  /* padding-top: 50px; */
  padding: 25px;
  color: #000000;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.footer-blur-background {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(12px);
  background: rgba(133, 8, 97, 0.05);
  z-index: 0;
  pointer-events: none;
}

.footer-main .container {
  position: relative;
  z-index: 2;
}

.footer-logo {
  height: 72px;
}

.company-description {
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(4, 4, 4, 0.75);
  margin-top: 16px;
  text-align: justify;
  text-justify: inter-word;
  font-weight: 500;
}

.footer-main h5 {
  font-family: "Lato", sans-serif;
  font-size: 1.85rem;
  font-weight: 400;
  margin-bottom: 1.3rem;
  color: #8c1b8e;
}

.footer-main ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-main ul li {
  margin-bottom: 0.7rem;
}

.footer-link {
  color: rgba(0, 0, 0, 0.8);
  text-decoration: none !important;
  display: inline-block;
  padding: 4px 0;
  font-weight: 500;
  transition: all 0.1s ease-in-out;
  font-size: 1.1rem;
  line-height: 1.6;
  font-family: "Lato", sans-serif;
}

.footer-link:hover {
  font-size: 1.2rem;
  color: #000000;
  /* transform: scale(1.1); */
}

.contact-list i {
  color: #000000;
  font-size: 1.15rem;
  width: 22px;
  flex-shrink: 0;
  margin-right: 14px;
  margin-top: 3px;
}

.footer-divider {
  border-top: 3px solid #8c1b8e;
}

.copyright-text {
  font-size: 1.02rem;
  color: rgba(0, 0, 0, 0.8);
}

.social-links-combined {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links-combined span {
  font-size: 1.02rem;
  color: rgba(0, 0, 0, 0.8);
  line-height: 38px;
}

.social-icon-footer {
  color: #000000;
  font-size: 1.05rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10%;
  padding: 9px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  transform: scale(1);
}

.social-icon-footer:hover {
  background: linear-gradient(135deg, #8c1b8e, #86047d);
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(255, 105, 235, 0.5);
  color: white;
}

/* ===== TABLET RESPONSIVENESS ===== */
@media (max-width: 991px) {
  .modern-navbar .navbar-collapse {
    background: white;
    border-radius: 10px;
    margin-top: 8px;
    padding: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }

  .modern-navbar .nav-link {
    text-align: center;
    margin: 4px 0;
  }

  .modern-navbar .nav-item.cta-item .btn-contact {
    margin: 8px 0;
  }

  .hero-heading {
    font-size: 2.8rem;
    margin-bottom: 16px;
  }

  .hero-subheading {
    font-size: 1.1rem;
    margin-bottom: 28px;
  }

  .btn {
    padding: 11px 30px;
    font-size: 0.98rem;
  }

  .btn-primary:hover {
    padding-right: 44px;
  }

  .services-title h1,
  .services-title .highlight,
  .services-title .ser {
    font-size: 2.5rem;
  }

  .services-subheading {
    font-size: 1.15rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .section-subtitle {
    font-size: 1.15rem;
  }
}

/* ===== MOBILE RESPONSIVENESS ===== */
@media (max-width: 767.98px) {
  /* Hero Section Mobile */
  .hero-section {
    padding: 100px 0 50px;
    /* FIX: Removed margin-top: -10.5vh; */
    min-height: 100vh;
  }

  .hero-section .row {
    min-height: auto;
  }

  .hero-heading {
    font-size: 2rem;
    margin-bottom: 16px;
    text-align: center;
  }

  .hero-heading br {
    display: none;
  }

  .hero-heading .highlight {
    padding: 2px 10px;
    font-size: 0.95em;
  }

  .hero-subheading {
    font-size: 1.1rem;
    margin-bottom: 24px;
    text-align: center;
  }

  .hero-subheading p {
    margin: 6px 0;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    gap: 14px;
    margin: 0 auto;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 26px;
    font-size: 0.98rem;
  }

  .btn-primary:hover {
    padding-right: 26px;
  }

  .btn-primary::after {
    display: none;
  }

  .hero-section .container {
    padding: 0 20px;
  }

  /* Services Mobile */
  .services-section {
    padding: 50px 0;
  }

  .services-title {
    margin-bottom: 35px;
  }

  .services-title h1,
  .services-title .highlight,
  .services-title .ser {
    font-size: 2rem;
  }

  .services-subheading {
    font-size: 1.05rem;
  }

  .modern-card {
    padding: 26px 20px;
  }

  .card-icon {
    font-size: 2.5rem;
  }

  .card-icon i {
    font-size: 2.5rem;
  }

  .card-title {
    font-size: 1.2rem;
  }

  .card-text {
    font-size: 0.98rem;
  }

  /* Why Choose Us Mobile */
  .why-choose-us {
    padding: 50px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.05rem;
  }

  .stat-card {
    padding: 30px 20px;
  }

  .stat-icon {
    font-size: 2.3rem;
  }

  .stat-icon i {
    font-size: 2.3rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-text {
    font-size: 1.05rem;
  }

  /* Clients Mobile */
  .clients {
    padding: 50px 0;
  }

  .clients .section-title {
    margin-bottom: 35px;
  }

  .logo-track img {
    height: 42px;
  }

  .logo-row {
    margin: 32px 0;
  }

  /* Footer Mobile - CENTER ALIGNMENT */
  .footer-main {
    padding-top: 40px;
  }

  .footer-main .row > div {
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
  }

  .company-description {
    text-align: justify !important;
    padding: 0 15px;
    max-width: 500px;
  }

  .footer-main h5 {
    text-align: center !important;
    width: 100%;
  }

  .footer-main ul {
    text-align: center !important;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-main ul li {
    text-align: center !important;
    width: 100%;
  }

  .contact-list {
    width: 100%;
    max-width: 400px;
  }

  .contact-list li {
    text-align: center !important;
    justify-content: center !important;
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
    margin-bottom: 14px;
  }

  .contact-list i {
    margin-right: 0;
    margin-bottom: 6px;
    font-size: 1rem;
  }

  .footer-link {
    margin: 0 auto;
  }

  .social-links-combined {
    justify-content: center !important;
  }

  .social-links-combined span {
    display: none !important;
  }

  .copyright-text {
    font-size: 0.88rem;
  }
}

/* ===== EXTRA SMALL MOBILE ===== */
@media (max-width: 576px) {
  body {
    padding-top: 70px;
  }

  .modern-navbar {
    min-height: 70px;
  }

  .hero-section {
    padding: 90px 0 40px;
  }

  .hero-heading {
    font-size: 2.5rem;
    margin-bottom: 12px;
  }

  .hero-heading .highlight {
    padding: 2px 8px;
    font-size: 0.95em;
    display: inline-block;
  }

  .hero-subheading {
    font-size: 1rem;
    /* margin-bottom: 20px; */
    margin: 50px 0;
  }

  .btn {
    padding: 15px 24px;
    font-size: 0.92rem;
    width: 180px;
  }

  .btn span {
    font-size: 1.1rem;
  }

  .hero-section .overlay {
    animation: gradientShift 20s ease infinite;
  }

  .services-section {
    padding: 40px 0;
  }

  .services-title h1,
  .services-title .highlight,
  .services-title .ser {
    font-size: 1.65rem;
  }

  .services-subheading {
    font-size: 0.95rem;
  }

  .modern-card {
    padding: 22px 18px;
  }

  .card-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
  }

  .card-icon i {
    font-size: 2.2rem;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .card-text {
    font-size: 0.92rem;
  }

  .why-choose-us {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .stat-card {
    padding: 26px 18px;
  }

  .stat-icon {
    font-size: 2rem;
    margin-bottom: 14px;
  }

  .stat-icon i {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-text {
    font-size: 0.98rem;
  }

  .clients {
    padding: 40px 0;
  }

  .logo-row {
    margin: 28px 0;
  }

  .logo-track {
    gap: 30px;
  }

  .logo-track img {
    height: 38px;
  }

  .footer-main {
    padding-top: 35px;
  }

  .footer-logo {
    height: 36px;
  }

  .company-description {
    font-size: 0.92rem;
  }

  .footer-main h5 {
    font-size: 1.15rem;
  }

  .contact-list li {
    font-size: 0.92rem;
  }

  .footer-link {
    font-size: 0.95rem;
  }
}

/* ===== EXTRA SMALL MOBILE (up to 360px) ===== */
@media (max-width: 360px) {
  .hero-heading {
    font-size: 1.45rem;
  }

  .hero-subheading {
    font-size: 0.85rem;
  }

  .btn {
    padding: 10px 22px;
    font-size: 0.88rem;
    gap: 6px;
  }

  .hero-section .container {
    padding: 0 15px;
  }

  .services-title h1,
  .services-title .highlight,
  .services-title .ser {
    font-size: 1.45rem;
  }

  .section-title {
    font-size: 1.45rem;
  }

  .cta-buttons {
    max-width: 260px;
  }
}

/* ===== LANDSCAPE MOBILE (max height 500px) ===== */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-section {
    min-height: auto;
    padding: 100px 0 50px;
  }

  .hero-heading {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .hero-subheading {
    font-size: 1.05rem;
    margin-bottom: 20px;
  }

  .hero-subheading p {
    margin: 4px 0;
  }

  .cta-buttons {
    gap: 12px;
  }

  .btn {
    padding: 12px 32px;
    font-size: 1rem;
  }
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */
@media (hover: none) and (pointer: coarse) {
  .btn-primary:hover {
    padding-right: 48px;
  }

  .btn:hover {
    transform: translateY(-4px) scale(1.02);
  }

  .btn {
    min-height: 54px;
  }

  .modern-card,
  .stat-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-white {
  color: white !important;
}

.text-center {
  text-align: center !important;
}

.mt-4 {
  margin-top: 30px !important;
}

.me-3 {
  margin-right: 20px !important;
}

.fade-in-up {
  animation: fadeInUp 1s ease-out;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus {
  outline: none;
  box-shadow: none;
}

a:focus {
  outline: none;
}

a,
button {
  transition: all 0.3s ease;
}

/* ===== LOADING SECTION ===== */
.urpan-loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #bf12a2 0%, #8c1b8e 100%);
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.urpan-loader-container.urpan-fade-out {
  opacity: 0;
  visibility: hidden;
}

.urpan-logo-container {
  text-align: center;
  margin-bottom: 40px;
  animation: urpanFadeInDown 0.8s ease-out;
}

.urpan-logo-text {
  font-size: 48px;
  font-weight: 700;
  color: white;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.urpan-logo-subtext {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-top: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.urpan-loader-animation {
  position: relative;
  width: 200px;
  height: 200px;
  animation: urpanFadeIn 1s ease-out 0.3s both;
}

.urpan-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.urpan-circle-outer {
  border: 4px solid rgba(255, 255, 255, 0.2);
  animation: urpanRotate 3s linear infinite;
}

.urpan-circle-middle {
  border: 4px solid transparent;
  border-top-color: white;
  border-right-color: white;
  animation: urpanRotate 2s linear infinite reverse;
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
}

.urpan-circle-inner {
  border: 3px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.6);
  animation: urpanRotate 1.5s linear infinite;
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
}

.urpan-center-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
  animation: urpanPulse 1.5s ease-in-out infinite;
}

.urpan-progress-container {
  margin-top: 60px;
  width: 300px;
  animation: urpanFadeIn 1s ease-out 0.6s both;
}

.urpan-progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.urpan-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  border-radius: 10px;
  width: 0%;
  animation: urpanFillProgress 3s ease-in-out forwards;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.urpan-progress-text {
  text-align: center;
  color: white;
  margin-top: 20px;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 300;
}

.urpan-loading-dots {
  display: inline-block;
}

.urpan-loading-dots span {
  animation: urpanBlink 1.4s infinite;
  animation-fill-mode: both;
}

.urpan-loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.urpan-loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes urpanRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes urpanPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.7;
  }
}

@keyframes urpanFillProgress {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes urpanFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes urpanFadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes urpanBlink {
  0%,
  20% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.urpan-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.urpan-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
  opacity: 0.6;
  animation: urpanFloat 6s ease-in-out infinite;
}

@keyframes urpanFloat {
  0%,
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100vh) translateX(50px);
    opacity: 0;
  }
}

/* ===== LOADER MOBILE RESPONSIVENESS ===== */
@media (max-width: 768px) {
  .urpan-logo-text {
    font-size: 36px;
  }

  .urpan-logo-subtext {
    font-size: 12px;
  }

  .urpan-loader-animation {
    width: 150px;
    height: 150px;
  }

  .urpan-progress-container {
    width: 250px;
  }

  .urpan-center-dot {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .urpan-logo-text {
    font-size: 32px;
  }

  .urpan-logo-subtext {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .urpan-loader-animation {
    width: 130px;
    height: 130px;
  }

  .urpan-progress-container {
    width: 220px;
  }
}

/* ===== EXTRA SMALL MOBILE (up to 360px) ===== */
@media (max-width: 360px) {
  .hero-heading {
    font-size: 1.45rem;
  }

  .hero-subheading {
    font-size: 0.85rem;
  }

  .btn {
    padding: 10px 22px;
    font-size: 0.88rem;
    gap: 6px;
  }

  .hero-section .container {
    padding: 0 15px;
  }

  .services-title h1,
  .services-title .highlight,
  .services-title .ser {
    font-size: 1.45rem;
  }

  .section-title {
    font-size: 1.45rem;
  }

  .cta-buttons {
    max-width: 260px;
  }
}

/* ===== LANDSCAPE MOBILE (max height 500px) ===== */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-section {
    min-height: auto;
    padding: 100px 0 50px;
  }

  .hero-heading {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .hero-subheading {
    font-size: 1.05rem;
    margin-bottom: 20px;
  }

  .hero-subheading p {
    margin: 4px 0;
  }

  .cta-buttons {
    gap: 12px;
  }

  .btn {
    padding: 12px 32px;
    font-size: 1rem;
  }
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */
@media (hover: none) and (pointer: coarse) {
  .btn-primary:hover {
    padding-right: 48px;
  }

  .btn:hover {
    transform: translateY(-4px) scale(1.02);
  }

  .btn {
    min-height: 54px;
  }

  .modern-card,
  .stat-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
}
