*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --primary: #f64a8a; /* Stunning French Rose */
  --secondary: #e1d5e7; /* Elegant Soft Lavender */
  --dark: #1e2125;
  --text-main: #424242;
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Nunito", sans-serif;
  --pastel-bg-1: #fff0f5;
  --pastel-bg-2: #e1d5e7;
  --pastel-bg-3: #ffd1dc;
  --pastel-bg-4: #dcccec;
  --pastel-bg-5: #f3e5f5;
  --pastel-bg-6: #f8bbd0;
  --section-pad: clamp(40px, 6vw, 70px);
  --container-pad: clamp(15px, 4vw, 50px);
}

/* Color Background Utilities - Rich & Vibrant Palette */
.bg-serenity {
  background-color: #0288d1 !important; /* Rich Azure */
}
.bg-coral {
  background-color: #7b1fa2 !important; /* Royal Orchid */
}
.bg-honey {
  background-color: #c2185b !important; /* Deep Joyful Rose */
}
.bg-mint {
  background-color: #00796b !important; /* Intense Sea-Teal */
}
.bg-lavender {
  background-color: #3949ab !important; /* Indigo-Purple */
}

/* 1. Global Spacing & Layout */
.py-5,
.pt-5,
.pb-5 {
  padding-top: var(--section-pad) !important;
  padding-bottom: var(--section-pad) !important;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  line-height: 1.7;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 400;
}

.navbar {
  padding: 0 !important;
}

p,
.lead,
.fs-5 {
  font-size: 16px !important;
  color: var(--text-main) !important;
  margin-bottom: 1.2rem;
}

.text-white p,
.bg-primary p,
.hero-content p {
  color: #ffffff !important;
}

/* 2. Unified Typography */
h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
  word-break: break-word;
}

h1 {
  font-size: clamp(26px, 5vw, 64px);
}
h2 {
  font-size: clamp(22px, 3.5vw, 42px);
}
h3 {
  font-size: clamp(18px, 2.5vw, 28px);
}
h4,
h5,
h6 {
  font-weight: 600;
}

.text-primary {
  color: var(--primary) !important;
}
.text-secondary {
  color: var(--secondary) !important;
}
.bg-primary {
  background-color: var(--primary) !important;
}
.bg-secondary {
  background-color: var(--secondary) !important;
}

/* 3. Premium Buttons */
.btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  background-color: var(--primary) !important;
  color: #ffffff !important;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(246, 74, 138, 0.2);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: all 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(246, 74, 138, 0.3);
  color: #ffffff !important;
}

.btn-quote {
  background: #ffffff !important;
  color: var(--primary) !important;
}

/* 4. Branding & Typography System */
.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none !important;
  margin: 0;
}

.brand-logo-img {
  height: clamp(85px, 12vw, 110px);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.brand-text-block {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}

.brand-title-text {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 4.5vw, 40px);
  color: #000;
  letter-spacing: -0.5px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

.brand-slogan-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 2.2vw, 18px);
  color: var(--primary);
  margin-top: -2px;
  text-align: left;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* Branding Responsive Logic */
@media screen and (max-width: 1200px) {
  .brand-title-text {
    font-size: clamp(20px, 3.5vw, 30px);
  }
  .brand-slogan-text {
    font-size: clamp(12px, 2vw, 15px);
  }
  .header-contact-item .h6 {
    font-size: 13px !important;
  }
  .contact-hub-wrapper {
    gap: 15px !important;
  }
}

@media screen and (max-width: 991px) {
  .header-banner-top {
    padding-top: 15px !important;
    padding-bottom: 10px !important;
  }
  .brand-title-text {
    font-size: 24px;
    text-align: left !important;
  }
  .brand-slogan-text {
    font-size: 13px;
    text-align: left !important;
    width: auto !important;
    display: block;
    margin: 0;
  }
  .brand-text-block {
    text-align: left !important;
  }
  .navbar-brand {
    flex-direction: row !important;
    gap: 15px !important;
    justify-content: flex-start !important;
  }
  .brand-logo-img {
    height: 75px;
  }

  .mobile-nav-contact {
    gap: 10px !important;
  }
  .mobile-nav-contact i {
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .brand-title-text {
    font-size: 19px;
  }
  .brand-slogan-text {
    font-size: 11px;
  }
  .brand-logo-img {
    height: 60px;
  }
  .mobile-nav-contact {
    gap: 8px !important;
  }
}

@media screen and (max-width: 360px) {
  .brand-title-text {
    font-size: 17px;
  }
  .mobile-nav-contact {
    gap: 5px !important;
  }
}

/* 5. Header Contact Hub */
.header-contact-item {
  transition: all 0.3s ease;
}
.header-contact-item:hover {
  transform: translateY(-2px);
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.header-contact-item:hover .contact-icon-box {
  background-color: var(--primary) !important;
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(246, 74, 138, 0.2);
}

.header-contact-item:hover .contact-icon-box.text-success {
  background-color: #25d366 !important;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.contact-text-box span {
  transition: all 0.3s ease;
}
.header-contact-item:hover .contact-text-box span.text-dark {
  color: var(--primary) !important;
}

/* 6. Navigation Bar Styles */
.main-header {
  position: relative;
  width: 100%;
  z-index: 1030;
  background: #fff;
}

.header-banner-top {
  background-image:
    linear-gradient(rgb(245 245 245 / 67%), rgb(255 255 255 / 82%)),
    url(../img/nav-bg.png);
  background-size: cover;
  background-position: center;
}

.pink-navbar {
  background:
    linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    linear-gradient(to right, #007bff, #f64a8a, #7a28cb, #24fe41) !important;
  padding: 2px 0 !important;
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.pink-navbar .nav-link {
  color: #fff !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 18px !important;
  text-transform: capitalize;
  position: relative;
  transition: all 0.3s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15); /* Boost visibility */
  letter-spacing: 0.5px;
}

.pink-navbar .nav-link::before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.pink-navbar .nav-link.active::before,
.pink-navbar .nav-link:hover::before {
  width: 30px;
}

/* Premium Header Buttons */
.btn-quote-header {
  background: #ffffff !important;
  color: var(--primary) !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  border: 2px solid #ffffff !important;
  display: inline-block;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-transform: capitalize;
  letter-spacing: 0.5px;
  line-height: 1;
}

.btn-quote-header:hover {
  background: transparent !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.nav-link-outline {
  border: 2px solid rgba(255, 255, 255, 0.8) !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  transition: all 0.3s ease !important;
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  font-size: 14px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  display: inline-block;
  line-height: 1;
}

.nav-link-outline:hover {
  background: #ffffff !important;
  color: var(--primary) !important;
  border-color: #ffffff !important;
  text-shadow: none !important;
  transform: translateY(-2px);
}

.nav-link-outline::before {
  display: none !important;
}

@media (max-width: 991px) {
  .pink-navbar .nav-link::before,
  .pink-navbar .nav-link.active::before,
  .pink-navbar .nav-link:hover::before {
    display: none !important;
  }
  .nav-link-outline {
    margin-top: 10px;
    display: inline-block;
    width: auto;
  }
}

.pink-navbar .navbar-toggler {
  border: 2px solid #fff;
  border-radius: 8px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: all 0.3s ease;
}

.pink-navbar .navbar-toggler:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.pink-navbar .toggler-icon {
  width: 24px;
  height: 2px;
  background-color: #fff;
  display: block;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* 7. Image Utilities */
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.object-fit-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* 8. Hero Slider Animation System */
.hero-item {
  min-height: clamp(400px, 80vh, 900px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: scale(1.15);
  opacity: 0;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.192); /* Very subtle to preserve colors */
  z-index: 2;
}

.owl-item.active .hero-item .hero-bg {
  opacity: 1;
  animation:
    paintStrokeRevealHorizontal 1.8s cubic-bezier(0.645, 0.045, 0.355, 1)
      forwards,
    zoomEffect 8s linear forwards;
}

@keyframes paintStrokeRevealHorizontal {
  0% {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}

@keyframes zoomEffect {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

.hero-content {
  position: relative;
  z-index: 5;
  opacity: 0;
  transform: translateX(-40px);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s;
  max-width: 800px;
  padding: 40px;
  background: rgb(255 255 255 / 0%);
  backdrop-filter: blur(2px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.hero-content h1 {
  font-size: clamp(40px, 6vw, 64px);
  color: var(--dark) !important;
  font-weight: 800 !important;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
  line-height: 1.1;
}

.hero-content p {
  font-size: clamp(16px, 2vw, 1.3rem) !important;
  font-weight: 600;
  color: #333 !important;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .hero-content {
    text-align: center;
    margin: 0 auto;
    transform: translateX(-20px);
  }
  .hero-content p {
    margin: 15px auto 30px;
  }
}

.owl-item.active .hero-item .hero-content {
  opacity: 1;
  transform: translateX(0);
}

/* 9. Section Headings & Visual Flourishes */
.section-heading h2 {
  font-size: clamp(28px, 4vw, 36px);
  color: var(--dark);
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
}

.section-heading h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: clamp(25px, 5vw, 35px);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 242 46"><path d="M3.7,35.2c16.3-5.2,50.8-13.6,80.1-16.7c26-2.7,60.6-5.8,91.3-4.3c15.2,0.8,40.6,4.7,59.3,10.6c4.4,1.4,10.1,5.2,2.8,7.9c-2.3,0.9-8.5-0.1-11.8-0.6c-24-4.1-51.2-8.5-77-9.5c-30.9-1.3-64.8,2.4-93.5,6.5c-15.6,2.2-34.9,7.6-47.8,11.2C-0.3,42.1-4.7,37.8,3.7,35.2z" fill="%23f64a8a" opacity="0.8"/></svg>');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
}

.text-center .section-heading h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.aos-animate .section-heading h2::after {
  clip-path: inset(0 0 0 0);
}

/* 10. Service Cards Architecture */
.service-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-card-modern {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(246, 74, 138, 0.08);
  height: 100%;
}

.service-card-modern .service-img {
  aspect-ratio: 16 / 11;
}
.service-card-modern .service-img img {
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* 11. About Modern Wrap & Components */
.about-modern-wrapper {
  position: relative;
  padding-bottom: 30px;
}
.about-single-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
}
.about-single-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-overlay-bar {
  background: var(--primary);
  padding: 20px 0;
  margin-top: -1px;
  border-bottom: 6px solid rgba(0, 0, 0, 0.1);
  border-radius: 0 0 12px 12px;
}

@property --num {
  syntax: "<integer>";
  initial-value: 0;
  inherits: false;
}
.counter-anim {
  animation: counter 2.5s ease-out forwards;
  counter-reset: num var(--num);
}
.counter-anim::before {
  content: counter(num);
}
@keyframes counter {
  from {
    --num: 0;
  }
  to {
    --num: 5;
  }
}

.experience-stat h4,
.experience-stat span,
.about-overlay-bar h6 {
  color: #fff !important;
}
.about-overlay-bar p {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* 12. Global Preloader */
.main-preloader {
  position: fixed;
  inset: 0;
  background: white;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.5s ease,
    visibility 0.5s;
}

.main-preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.loader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-shining-wrap {
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.loader-logo {
  width: 100%;
  animation: breathing 2.5s infinite ease-in-out;
}

.logo-shining-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.8) 50%,
    transparent
  );
  transform: skewX(-25deg) translateX(-200%);
  animation: glareSweep 2.5s infinite ease-in-out;
}

@keyframes breathing {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 5px rgba(246, 74, 138, 0.1));
  }
  50% {
    transform: scale(1.04);
    filter: drop-shadow(0 0 15px rgba(246, 74, 138, 0.2));
  }
}

@keyframes glareSweep {
  0% {
    transform: skewX(-25deg) translateX(-200%);
  }
  100% {
    transform: skewX(-25deg) translateX(200%);
  }
}

/* 13. Mobile Component Scaling */
@media (max-width: 768px) {
  .about-image-grid {
    height: 450px;
  }
  .experience-badge-mini {
    display: none;
  }
}

@media (max-width: 576px) {
  .about-image-grid {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .grid-img {
    position: relative;
    width: calc(50% - 8px) !important;
    height: 150px !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    border-width: 3px;
  }
  .experience-badge-mini {
    display: none;
  }
}

/* 6. Modern Service Cards (Overlapping Design) */
/* 6. Modern Service Cards (Pink & Lavender Theme) */
.service-card-modern {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  border: 1px solid rgba(246, 74, 138, 0.08); /* Soft primary tint border */
  height: 100%;
}

.service-card-modern .service-img {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.service-card-modern .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Floating Icon Badge */
.service-icon-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: var(--primary); /* Primary Pink background */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(246, 74, 138, 0.3);
  z-index: 10;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-icon-badge [data-lucide] {
  width: 32px;
  height: 32px;
  stroke: #ffffff;
  stroke-width: 2.5px;
  transition: all 0.3s ease;
}

.service-card-modern .service-content {
  padding: 50px 25px 25px;
  position: relative;
  text-align: center;
  transition: background 0.4s ease;
}

/* HOVER ANIMATIONS */
.service-card-modern:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(246, 74, 138, 0.12);
  border-color: var(--primary);
}

.service-card-modern:hover .service-img img {
  transform: scale(1.1);
}

.service-card-modern:hover .service-icon-badge {
  background: var(--primary);
  transform: translate(-50%, -60%) scale(1.05);
  box-shadow: 0 15px 30px rgba(246, 74, 138, 0.4);
}

.service-card-modern:hover .service-content {
  background: rgba(246, 74, 138, 0.02);
}

.service-card-modern h4 {
  margin-bottom: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  position: relative;
  display: inline-block;
}

.service-card-modern h4::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 10px;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.service-card-modern:hover h4::after {
  width: 50px;
}

/* 7. Stunning Process Timeline (How We Work) */
.process-section {
  background-color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.process-orbit-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 5px);
  position: relative;
  z-index: 2;
}

/* Connecting Flow Line (Animated) - Desktop Only (1000px+) */
@media screen and (min-width: 1000px) {
  .process-orbit-container::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 20px;
    right: 20px;
    height: 3px;
    background-image: linear-gradient(to right, #fff 50%, transparent 50%);
    background-size: 30px 100%;
    animation: flowLine 25s linear infinite;
    z-index: -1;
    opacity: 0.5;
  }
}

@keyframes flowLine {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 1000px 0;
  }
}

.process-orbit-card {
  flex: 1 1 0; /* Flexible sizing to fit with arrows */
  text-align: center;
  padding: 10px;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  min-width: 140px; /* Prevent too much squishing */
}

.process-arrow {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding-bottom: 80px; /* Align with orbit icons on desktop */
  color: var(--primary);
  font-size: 1.5rem;
  opacity: 0.6;
  animation: arrowPulse 2s infinite ease-in-out;
}

@media screen and (max-width: 999px) {
  .process-arrow {
    padding: 10px 0; /* Extremely tight spacing for mobile/tablet */
  }
}

@keyframes arrowPulse {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.4;
  }
  50% {
    transform: translateX(5px);
    opacity: 0.8;
  }
}

.icon-orbit-wrap {
  width: clamp(80px, 10vw, 100px);
  height: clamp(80px, 10vw, 100px);
  border: 1px solid rgba(0, 0, 0, 0.05); /* Color set individually by bg-* classes */
  border-radius: 50%;
  margin: 0 auto clamp(15px, 2vw, 25px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
}

.icon-orbit-wrap::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 2px dashed rgba(0, 0, 0, 0.4); /* Darker, more visible Orbit Ring */
  border-radius: 50%;
  opacity: 0;
  transform: rotate(0deg);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-orbit-card:hover .icon-orbit-wrap::after {
  opacity: 1;
  transform: rotate(180deg);
}

.icon-orbit-wrap i,
.icon-orbit-wrap [data-lucide] {
  width: clamp(28px, 4vw, 38px);
  height: clamp(28px, 4vw, 38px);
  color: #fff !important;
  stroke: #fff !important;
  stroke-width: 2px;
  transition: all 0.4s ease;
}

.process-orbit-card:hover .icon-orbit-wrap {
  transform: translateY(-10px);
}

.process-orbit-card h5 {
  color: var(--primary);
  font-weight: 800;
  font-size: clamp(16px, 2vw, 1.1rem);
  margin-bottom: 10px;
  transition: color 0.3s ease;
  line-height: 1.3;
}

.process-orbit-card p {
  color: var(--text-main);
  font-size: clamp(13px, 1.5vw, 0.9rem);
  line-height: 1.5;
  opacity: 0.8;
}

@media screen and (max-width: 999px) {
  .process-orbit-container {
    flex-direction: column;
    align-items: center;
    gap: 10px; /* Tight, professional vertical spacing */
    width: 100%;
    padding: 0;
  }
  .process-orbit-card {
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
  }
}

/* 8. Why Choose Us (Content + Image Layout) */
.why-choose-us {
  background-color: var(--secondary);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.benefit-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: all 0.3s ease;
  margin-bottom: 5px;
}

.benefit-item:hover {
  transform: translateX(10px);
}

/* 14. Why Choose Us Section */
.why-choose-us {
  background-color: var(--secondary);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.benefit-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: all 0.3s ease;
  margin-bottom: 5px;
}
.benefit-item:hover {
  transform: translateX(10px);
}
.benefit-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 15px;
}
.benefit-text::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.why-img-wrap {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  height: 100%;
  min-height: 400px;
}
.why-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.why-img-wrap:hover img {
  transform: scale(1.05);
}

@media (min-width: 992px) {
  .why-choose-us .row {
    display: flex;
    align-items: stretch;
  }
  .why-img-wrap {
    height: 100% !important;
    min-height: 100%;
  }
}

/* 15. Call to Action (Pastel Nebula) */
/* Premium CTA Buttons */
.btn-cta-red,
.btn-cta-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 35px;
  border-radius: 50px;
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s ease;
  min-width: 240px;
  border: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  margin: 10px;
}

.btn-cta-red {
  background-color: #e74c3c;
}

.btn-cta-red:hover {
  background-color: #c0392b;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(231, 76, 60, 0.35);
}

.btn-cta-green {
  background-color: #25d366;
}

.btn-cta-green:hover {
  background-color: #1ebc5a;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.35);
}

@media (max-width: 575px) {
  .btn-cta-red,
  .btn-cta-green {
    width: 100%;
    margin: 10px 0;
  }
}

.cta-standalone-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 0 0;
  text-align: center;
  background: linear-gradient(
    to bottom,
    #e192f5 0%,
    #d493df 25%,
    #deb0eb 55%,
    #f7ecfb 80%,
    #ffffff 100%
  );
}

.cta-standalone-section h1,
.cta-standalone-section h2,
.cta-standalone-section h3,
.cta-standalone-section p,
.cta-standalone-section span {
  color: #1a1a1a !important;
}

.cta-standalone-section h2 {
  font-size: clamp(32px, 5vw, 52px) !important;
  font-weight: 800 !important;
  line-height: 1.2;
  margin-bottom: 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  word-wrap: break-word;
}

.cta-standalone-section p {
  color: #444 !important;
  font-size: clamp(16px, 2vw, 20px) !important;
  max-width: 850px;
  margin: 0 auto 30px;
}

.cta-standalone-section::before,
.cta-standalone-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  animation: nebulaFlow 25s infinite alternate ease-in-out;
  opacity: 0.7;
}

.cta-standalone-section::before {
  width: 600px;
  height: 600px;
  background: #e8a39d;
  top: -100px;
  right: -50px;
}
.cta-standalone-section::after {
  width: 700px;
  height: 700px;
  background: #a7c7e7;
  bottom: -100px;
  left: -50px;
}

@keyframes nebulaFlow {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(30px, 40px) scale(1.1);
  }
}

.contact-btn-wrap {
  display: inline-flex;
  background: #0052cc;
  color: #fff;
  margin: 5px;
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 82, 204, 0.2);
  transition: all 0.4s ease;
}
.contact-btn-wrap:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 82, 204, 0.3);
  color: #fff !important;
}

/* 16. Premium Footer */
.footer {
  background-color: #f64a8a;
  padding: 80px 0 0;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #fff;
  clip-path: ellipse(60% 50px at 50% 0%);
}

.footer-logo {
  background: #ffffff;
  border-radius: 12px;
  border: 3px solid #ffd1dc;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease;
}

.footer-logo .brand-title-text {
  font-family: inherit;
  font-weight: 800;
  font-size: clamp(20px, 3vw, 26px);
  color: #000 !important;
  letter-spacing: -0.5px;
  display: block;
  line-height: 1.1;
  opacity: 1 !important;
}

.footer-logo .brand-slogan-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(12px, 2vw, 14px);
  color: var(--primary) !important;
  display: block;
  margin-top: 2px;
  opacity: 1 !important;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.footer h3,
.footer h4 {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
}

.footer h3::after,
.footer h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 10px;
}
.footer p,
.footer li,
.footer span {
  color: #fff !important;
  opacity: 1 !important;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.footer a {
  color: #fff !important;
  text-decoration: none;
  transition: 0.3s;
  line-height: 1.5;
}
.footer a:hover {
  opacity: 1 !important;
}
.footer-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 1 !important;
}
.footer-links a:hover {
  opacity: 1 !important;
  transform: translateX(8px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
  padding: 30px 0;
}
.footer-bottom-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .footer-logo {
    flex-direction: row;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 30px;
  }
  .footer-brand-title {
    font-size: 18px;
  }
  .footer-brand-slogan {
    font-size: 11px;
  }
  .footer-bottom-wrap {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

@media (max-width: 380px) {
  .footer-logo {
    max-width: 260px;
  }
}

/* 17. Interactive Gallery (Before/After) */
.ba-container {
  width: 100%;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.ba-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.ba-after {
  width: 50%;
  border-left: 3px solid #fff;
  z-index: 2;
}
.ba-range {
  position: absolute;
  inset: 0;
  appearance: none;
  background: transparent;
  cursor: ew-resize;
  z-index: 10;
}
.ba-range::-webkit-slider-thumb {
  appearance: none;
  width: 44px;
  height: 44px;
  background: #fff;
  border: 4px solid var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(246, 74, 138, 0.4);
}

/* 18. Layout Utilities */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
section {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

/* 19. Mobile Nav Contact */
.mobile-nav-contact a {
  font-size: 0.8rem;
  line-height: 1;
}
.mobile-nav-contact i {
  font-size: 1rem;
}

@media screen and (max-width: 400px) {
  .mobile-nav-contact {
    gap: 12px !important;
  }
  .mobile-nav-contact i {
    font-size: 1.1rem;
    margin-right: 3px !important;
  }
}

/* 20. Custom Bullet Points (Why Choose Us) */
.custom-bullet-list {
  margin-top: 25px;
}
.bullet-item {
  transition: transform 0.3s ease;
}
.bullet-item:hover {
  transform: translateX(8px);
}

.bullet-icon {
  width: 28px;
  height: 28px;
  background-color: var(--primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(246, 74, 138, 0.3);
  position: relative;
}

.bullet-icon::after {
  content: "\f00c"; /* FontAwesome Checkmark */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ffffff;
  font-size: 0.9rem;
}

.bullet-text {
  color: #1a1a1a;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.2px;
}

/* about inner page style started here  */
/* ── SECTION ── */
.pab__section {
  padding: var(--section-pad) 0;
  background: #fff;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════
       MOSAIC — 3 images
       [ img-a tall left ]  [ img-b shorter, offset down ]
       [ img-c spans full width, indented, overlapping up ]
    ══════════════════════════════ */
/* ── LEFT IMAGES (NEAT MOSAIC) ── */
.pab__mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  position: relative;
}

.pab__img-wrap {
  overflow: hidden;
  border-radius: 15px;
  position: relative;
  transition: all 0.4s ease;
  background: #fdfdfd;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.pab__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.pab__img-wrap:hover img {
  transform: scale(1.05);
}

.pab__img--a {
  grid-column: 1;
  grid-row: 1;
  height: 350px;
}
.pab__img--b {
  grid-column: 2;
  grid-row: 1;
  margin-top: 50px;
  height: 260px;
}
.pab__img--c {
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: 20px;
  height: 250px;
  z-index: 3;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

@media (max-width: 575px) {
  .pab__img--a {
    height: 240px;
  }
  .pab__img--b {
    height: 180px;
    margin-top: 40px;
  }
  .pab__img--c {
    height: 160px;
    margin-top: -40px;
  }
}

/* ── RIGHT CONTENT ── */
.pab__content {
  padding-left: 0;
}

/* Heading inherited from index via .section-heading h2 */

/* ── VISION / MISSION CARDS ── */
.pab__card {
  border-radius: 20px;
  padding: 35px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.pab__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* --- Simple Project Card --- */
.project-simple-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.project-simple-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.project-simple-info {
    padding: 25px 15px;
}

.project-simple-info h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--dark);
    font-weight: 700;
}

/* --- Floating WhatsApp Button Enhancement --- */
.whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background-color: rgb(25, 135, 84); 
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: all 0.3s ease;
    animation: whatsappPop 3s infinite ease-in-out;
    position: relative;
    z-index: 10;
}

.whatsapp-tooltip {
    background: #fff;
    color: #444;
    padding: 8px 18px;
    border-radius: 20px 20px 0 20px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-right: 15px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.5s ease;
    animation: tooltipPulse 10s infinite;
    border: 1px solid rgba(0,0,0,0.05);
}

@keyframes tooltipPulse {
    0% { opacity: 0; visibility: hidden; transform: translateX(10px); }
    10% { opacity: 1; visibility: visible; transform: translateX(0); }
    40% { opacity: 1; visibility: visible; transform: translateX(0); }
    50% { opacity: 0; visibility: hidden; transform: translateX(10px); }
    100% { opacity: 0; visibility: hidden; transform: translateX(10px); }
}

@keyframes whatsappPop {
    0%, 100% { transform: scale(1); box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
    50% { transform: scale(1.1); box-shadow: 0 10px 25px rgba(25, 135, 84, 0.4); }
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.15) rotate(10deg);
    color: #fff !important;
}

@media (max-width: 768px) {
    .whatsapp-container {
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}
.pab__card--mission {
  background: #f8f5ff;
}

.pab__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.pab__card--vision::before {
  background: var(--primary);
}
.pab__card--mission::before {
  background: #7a28cb;
}

.pab__card-icon {
  width: 55px;
  height: 55px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
}

.pab__card--vision .pab__card-icon {
  color: var(--primary);
}
.pab__card--mission .pab__card-icon {
  color: #7a28cb;
}

.pab__card-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
}

.pab__card-body,
.pab__mission-list li {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}

/* mission bullet list */
.pab__mission-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pab__mission-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pab__mission-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 14px;
  color: #7a28cb;
  margin-top: 4px;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .pab__img--c {
    padding-right: 0;
    margin-top: -30px;
  }
  .pab__card {
    padding: 25px;
  }
}

@media (max-width: 575px) {
  .pab__mosaic {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .pab__img--b {
    margin-top: 0;
  }
  .pab__img--c {
    margin-top: 0;
  }
  .pab__img--a img,
  .pab__img--b img,
  .pab__img--c img {
    height: 220px;
  }
}
/* services page style started here  */
.services-page {
  background-color: #fafbfc;
  scroll-behavior: smooth;
  overflow: visible !important;
}

.services-content-tabs {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  min-height: 400px;
}

.service-detail-img {
  height: clamp(250px, 40vh, 400px);
  width: 100%;
  overflow: hidden;
  border-radius: 15px;
}

.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-tab-content {
  display: none;
}

.service-tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-tab-content h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--dark);
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.service-tab-content h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.service-tab-content p {
  font-size: 17px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 18px;
}

/* Sidebar Column - Aggressive Locking */
@media (min-width: 992px) {
  .sticky-sidebar-col {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 15rem !important; /* Proper distance from header */
    align-self: flex-start !important;
    z-index: 100 !important;
  }
}

.sidebar-card {
  border: 1px solid rgba(246, 74, 138, 0.1);
  background: #fff;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
}

.sidebar-menu li a {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  border-radius: 12px;
  color: #555;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-bottom: 10px;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.sidebar-menu li a:hover {
  background: #fff0f5;
  color: var(--primary);
  padding-left: 25px;
}

.sidebar-menu li a.active {
  background: var(--primary);
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(246, 74, 138, 0.25);
}

.sidebar-menu li a i {
  font-size: 14px;
  opacity: 0.8;
}

.sidebar-cta {
  background: linear-gradient(135deg, var(--primary), #d53d75) !important;
  margin-top: 25px;
  box-shadow: 0 10px 25px rgba(246, 74, 138, 0.3);
}

.sidebar-cta h5 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
}

.sidebar-cta p {
  color: rgba(255,255,255,0.9) !important;
}

.sidebar-cta .btn-light {
    background: #fff !important;
    color: var(--primary) !important;
    border: none !important;
    font-weight: 700 !important;
    transition: all 0.3s ease;
}

.sidebar-cta .btn-light:hover {
    background: #fdfdfd !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 991px) {
  .service-sidebar {
    position: relative !important;
    top: 0 !important;
    margin-bottom: 40px;
  }
  .services-content-tabs {
    padding: 20px;
  }
}
/* services page style ended here  */
/* about inner page style ended here  */

/* --- Contact Page Modern Styles --- */
.inner-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 85px 0;
  text-align: center;
  color: #fff;
  border-radius: 0 0 50px 50px;
  position: relative;
  overflow: hidden;
}

.inner-hero h1 {
  font-size: clamp(35px, 6vw, 56px);
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.inner-hero p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.contact-wrapper {
  padding: 70px 0;
  position: relative;
  z-index: 10;
}

.contact-info-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
  height: 100%;
  border: 1px solid rgba(246, 74, 138, 0.05);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.info-item .icon-box {
  width: 50px;
  height: 50px;
  background: #fff0f5;
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.info-item:hover .icon-box {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}

.info-item h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--dark);
}

.info-item p,
.info-item a {
  margin: 0;
  color: #666;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.info-item a:hover {
  color: var(--primary);
}

.contact-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(246, 74, 138, 0.05);
}

.contact-form .form-control {
  border-radius: 12px;
  padding: 15px 20px;
  border: 1px solid #eee;
  background: #fcfcfc;
  font-size: 15px;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 5px 15px rgba(246, 74, 138, 0.1);
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
  font-size: 14px;
}

.contact-form .btn {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.contact-form .btn:hover {
  background: #d53d75;
  border-color: #d53d75;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(246, 74, 138, 0.3);
}

.map-section {
  padding: 0;
  margin-top: 0;
}

.map-container {
  height: 450px;
  width: 100%;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .inner-hero {
    padding: 60px 0;
  }
  .contact-info-card,
  .contact-form-card {
    padding: 30px 20px;
  }
  .contact-wrapper {
    padding: 30px 0;
  }
  .map-container {
    height: 400px;
  }
}

/* --- Footer Bottom Styling --- */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  margin-top: 50px;
  background: var(--primary); /* Matching your brand color bar */
}

.footer-bottom-wrap {
  width: 100%;
  display: block;
}

.copyright-text {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* --- Footer Contact alignment --- */
.footer-contact {
  padding-left: 0;
}

.footer-contact li {
  gap: 15px;
  margin-bottom: 20px !important;
  line-height: 1.4;
}

.footer-contact li i,
.footer-contact li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
  display: inline-block;
}

.footer-contact li span,
.footer-contact li a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact li a:hover {
  color: #fff;
}
/* --- Expertise Checklist Styling --- */
.expertise-content-block ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin-top: 25px;
}

.expertise-content-block ul li {
  position: relative;
  padding-left: 50px !important;
  margin-bottom: 18px !important;
  font-size: 16px;
  font-weight: 600;
  color: #444;
  display: flex;
  align-items: center;
  min-height: 35px;
}

.expertise-content-block ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  width: 35px;
  height: 35px;
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 5px 15px rgba(246, 74, 138, 0.25);
  transition: all 0.3s ease;
}

.expertise-content-block ul li:hover::before {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(246, 74, 138, 0.35);
}
