/* ==========================================================================
   INTEC / INOTEK - IT Services & Software Solutions
   Main Stylesheet (assets/css/style.css)
   Font Family: "Ubuntu", sans-serif
   Theme Palette: INTEC Logo Blue (#0052cc) & Logo Green (#00a859)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design System & CSS Variables (Logo Blue & Logo Green)
   -------------------------------------------------------------------------- */
:root {
  /* Global Font Family */
  --font-main: "Ubuntu", sans-serif;

  /* INTEC Logo Primary Theme Colors */
  --logo-blue: #0052cc;        /* Vibrant Royal Blue from Logo */
  --logo-blue-dark: #003db3;   /* Darker Blue for hover */
  --logo-blue-light: #2563eb;  /* Light Blue */
  --logo-blue-soft: #e6f0ff;   /* Soft Blue Background Tint */

  --logo-green: #00a859;       /* Vibrant Green from Logo */
  --logo-green-dark: #008a47;  /* Darker Green for hover */
  --logo-green-light: #10b981; /* Light Green */
  --logo-green-soft: #e6f7ed;  /* Soft Green Background Tint */

  /* Primary Variables Mapped to Logo Colors */
  --primary-blue: var(--logo-blue);
  --primary-hover: var(--logo-blue-dark);
  --primary-light: var(--logo-blue-light);
  --primary-soft: var(--logo-blue-soft);

  --accent-green: var(--logo-green);
  --accent-green-hover: var(--logo-green-dark);
  --accent-green-soft: var(--logo-green-soft);

  /* Dark Navy Surfaces with Blue/Green Gradient Tints */
  --navy-dark: #071536;
  --navy-surface: #0a1f4d;
  --navy-card: #0d2866;

  /* Text Colors */
  --text-heading: #0f172a;
  --text-body: #475569;
  --text-muted: #64748b;
  --text-white: #ffffff;

  /* Layout & Utility */
  --border-light: #e2e8f0;
  --bg-light: #f4f7fb;
  --bg-white: #ffffff;
  
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 82, 204, 0.15);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 50px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & Base Styles (Preserving FontAwesome Icon Fonts)
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, input, button, select, textarea, span, p, a, label, li {
  font-family: var(--font-main);
}

/* Protect FontAwesome Icons from font-family overrides */
.fa, .fas, .far, .fal, .fad, .fab, .fa-solid, .fa-regular, .fa-brands,
[class^="fa-"], [class*=" fa-"] {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}

.fa-brands, .fab {
  font-family: "Font Awesome 6 Brands" !important;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-fluid {
  width: 100%;
  padding: 0 2rem;
}

/* --------------------------------------------------------------------------
   3. Top Header Bar (Themed with Logo Blue & Green Gradient)
   -------------------------------------------------------------------------- */
.top-bar {
  background-color: #00759d;
  color: var(--text-white);
  font-size: 0.875rem;
  height: 44px;
  width: 100%;
  position: relative;
  z-index: 1002;
  overflow: hidden;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
}

.top-bar-left {
  background: linear-gradient(135deg, var(--logo-blue) 0%, var(--logo-green) 100%);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-left: max(1.5rem, calc((100vw - 1240px) / 2));
  padding-right: 4rem;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
  font-weight: 500;
}

.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.top-bar-left i {
  font-size: 0.9rem;
  opacity: 0.95;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-right: max(1.5rem, calc((100vw - 1240px) / 2));
}

.social-label {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.top-social-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-social-icon {
  width: 28px;
  height: 28px;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: var(--transition);
}

.top-social-icon:hover {
  background-color: var(--logo-green);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   4. Main Navigation Header (With Frosted Glassy Effect on Scroll)
   -------------------------------------------------------------------------- */
.main-header {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  box-shadow: var(--shadow-sm);
  transition: background-color 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.main-header.scrolled {
  background: rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: blur(16px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  box-shadow: 0 10px 30px rgba(0, 82, 204, 0.1);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
}

.brand-logo {
  display: flex;
  align-items: center;
}

.brand-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-item {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-heading);
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition);
}

.nav-item:hover,
.nav-item.active {
  color: var(--logo-blue);
}

.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--logo-blue), var(--logo-green));
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.btn-quote {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background-color: var(--logo-blue);
  color: var(--text-white);
  padding: 0.65rem 0.65rem 0.65rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(0, 82, 204, 0.3);
}

.btn-quote:hover {
  background-color: var(--logo-green);
  box-shadow: 0 6px 20px rgba(0, 168, 89, 0.45);
  transform: translateY(-2px);
}

.btn-quote .icon-circle {
  width: 36px;
  height: 36px;
  background-color: var(--bg-white);
  color: var(--logo-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-quote:hover .icon-circle {
  color: var(--logo-green);
  transform: translateX(3px);
}

.dots-grid-btn {
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  color: var(--logo-blue);
  font-size: 1.35rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dots-grid-btn:hover {
  background-color: var(--logo-blue-soft);
}

.mobile-toggle-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-heading);
  cursor: pointer;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--bg-white);
  z-index: 1003;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.drawer-header img {
  height: 40px;
}

.drawer-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-heading);
  cursor: pointer;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.drawer-links a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-heading);
}

.drawer-links a.active {
  color: var(--logo-blue);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(7, 21, 54, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* --------------------------------------------------------------------------
   5. Hero Slider Section (3 Slides with Overlay & Controls)
   -------------------------------------------------------------------------- */
.hero-slider-section {
  position: relative;
  width: 100%;
  padding: 1.5rem 0 2.5rem 0;
  background-color: var(--bg-light);
}

.hero-slider-container {
  position: relative;
  width: 100%;
  height: 600px;
  min-height: 560px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background-color: var(--navy-dark);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-content {
  max-width: 720px;
  color: #ffffff;
  z-index: 10;
  position: relative;
  padding-left: 2rem;
  transform: translateY(25px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
}

.slide-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0;
  background: linear-gradient(90deg, #10b981 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  border: none;
  box-shadow: none;
}

.slide-label i {
  -webkit-text-fill-color: #10b981;
  color: #10b981;
}

.slide-title {
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.slide-desc {
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.25rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  z-index: 20;
  transition: var(--transition);
}

.slider-arrow:hover {
  background: var(--logo-blue);
  border-color: var(--logo-blue);
  box-shadow: 0 6px 20px rgba(0, 82, 204, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.prev-arrow { left: 2.5rem; }
.next-arrow { right: 2.5rem; }

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 20;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dots .dot.active {
  width: 36px;
  border-radius: 12px;
  background: var(--logo-green);
  box-shadow: 0 4px 12px rgba(0, 168, 89, 0.5);
}

@media (max-width: 992px) {
  .hero-slider-container {
    height: 520px;
  }
  .slide-title {
    font-size: 2.5rem;
  }
  .slide-content {
    padding-left: 1rem;
  }
  .prev-arrow { left: 1rem; }
  .next-arrow { right: 1rem; }
}

@media (max-width: 768px) {
  .hero-slider-container {
    height: 480px;
    border-radius: 20px;
  }
  .slide-title {
    font-size: 2rem;
  }
  .slide-desc {
    font-size: 0.975rem;
    margin-bottom: 1.5rem;
  }
  .slider-arrow {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   5b. About Us Section (Custom Composition Matching Screenshot media_1787985206132.png)
   -------------------------------------------------------------------------- */
.about-section {
  padding: 5.5rem 0;
  background-color: var(--bg-white);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4.5rem;
  align-items: center;
}

/* Asymmetric 3-Tile Image Grid (Matching Screenshot media_1787986697985.png for index.html) */
.about-images-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  height: 520px;
  transform-style: preserve-3d;
  perspective: 1000px;
  will-change: transform;
}

.about-left-tall-img {
  width: 100%;
  height: 100%;
  border-radius: 60px 0px 0px 60px;
  overflow: hidden;
  box-shadow: 0 16px 35px rgba(7, 21, 54, 0.12);
}

.about-left-tall-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-right-tiles {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}

.about-exp-card {
  background-color: #071536;
  border-radius: 40px 0px 40px 0px;
  padding: 2.25rem 2rem;
  color: #ffffff;
  height: 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 16px 35px rgba(7, 21, 54, 0.15);
}

.exp-number-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.exp-number {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px #ffffff;
}

.exp-plus {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
}

.exp-text {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.5rem;
}

.about-bottom-img {
  width: 100%;
  height: 48%;
  border-radius: 0px 0px 40px 0px;
  overflow: hidden;
  box-shadow: 0 16px 35px rgba(7, 21, 54, 0.12);
}

.about-bottom-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Custom Screenshot Composition Wrapper (for about.html) */
.about-img-composition {
  position: relative;
  width: 100%;
  max-width: 540px;
  height: 520px;
  margin: 0 auto;
}

/* 1. Top Left Main Image Card */
.about-img-top-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 58%;
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(7, 21, 54, 0.12);
  z-index: 2;
}

.about-img-top-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 2. Top Right Dark Award Badge */
.about-award-badge {
  position: absolute;
  top: 10px;
  right: 0;
  background: #051329;
  color: #ffffff;
  padding: 1.1rem 1.6rem;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(5, 19, 41, 0.25);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-award-badge .badge-icon {
  font-size: 1.65rem;
  color: #2563eb;
}

.about-award-badge .badge-text h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.15rem;
  line-height: 1.2;
}

.about-award-badge .badge-text p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* 3. Bottom Right Secondary Image Card */
.about-img-bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 58%;
  height: 330px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(7, 21, 54, 0.15);
  z-index: 1;
}

.about-img-bottom-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 4. Center Overlapping Blue Circle Badge */
.about-center-circle-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-45%, -50%);
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #0052cc 0%, #003db3 100%);
  color: #ffffff;
  border-radius: 50%;
  border: 6px solid #ffffff;
  box-shadow: 0 16px 40px rgba(0, 82, 204, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 5;
  padding: 1rem;
}

.circle-badge-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.circle-badge-num {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.circle-badge-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Floating Award Badge Animation */
@keyframes floatAwardTag {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.about-award-badge.floating-active {
  animation: floatAwardTag 3.2s ease-in-out infinite;
}

/* Continuous Rotating Ring around 15+ Exp Circle Badge */
.about-center-circle-badge::before {
  content: '';
  position: absolute;
  top: -9px;
  left: -9px;
  right: -9px;
  bottom: -9px;
  border-radius: 50%;
  border: 2px dashed rgba(37, 99, 235, 0.6);
  animation: spinCircleRing 14s linear infinite;
  pointer-events: none;
}

@keyframes spinCircleRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* 5. Bottom Left Decorative Dots Matrix */
.about-dots-matrix {
  position: absolute;
  bottom: 20px;
  left: 40px;
  display: grid;
  grid-template-columns: repeat(7, 6px);
  gap: 10px;
  z-index: 0;
  opacity: 0.6;
}

.about-dots-matrix span {
  width: 6px;
  height: 6px;
  background-color: #2563eb;
  border-radius: 50%;
}

/* Right Content Column */
.about-sublabel {
  display: inline-block;
  color: var(--logo-blue);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.about-main-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.about-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.about-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem;
  margin-bottom: 2.5rem;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
}

.about-feature-item i {
  color: var(--logo-blue);
  font-size: 1.25rem;
}

.about-action-row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.about-call-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.call-icon-blue {
  width: 48px;
  height: 48px;
  background-color: var(--logo-blue);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 6px 18px rgba(0, 82, 204, 0.3);
}

.call-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.call-number {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-heading);
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-images-wrapper {
    height: 440px;
  }
}

@media (max-width: 768px) {
  .about-images-wrapper {
    grid-template-columns: 1fr;
    height: auto;
  }
  .about-left-tall-img {
    height: 280px;
    border-radius: 28px;
  }
  .about-exp-card {
    border-radius: 28px;
    height: auto;
    padding: 1.75rem 1.5rem;
  }
  .about-bottom-img {
    height: 220px;
    border-radius: 28px;
  }
  .about-features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .about-action-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .about-main-title {
    font-size: 2rem;
  }
}

/* --------------------------------------------------------------------------
   5c. Marquee Ticker Section (Logo Blue & Green Styling - Seamless 360° Infinite Loop)
   -------------------------------------------------------------------------- */
.marquee-section {
  background: linear-gradient(90deg, rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 50%, rgba(83, 237, 121, 1) 100%);
  padding: 1.15rem 0;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  display: flex;
  position: relative;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeContinuous 30s linear infinite;
  will-change: transform;
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
  flex-shrink: 0;
}

.marquee-item {
  font-family: var(--font-main);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  white-space: nowrap;
}

.marquee-item .bullet {
  color: var(--logo-green);
  font-size: 1.4rem;
  font-weight: 800;
}

@keyframes marqueeContinuous {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* --------------------------------------------------------------------------
   5d. Pinned 8-Card Horizontal Scroll Reveal Services Section
   -------------------------------------------------------------------------- */
.services-reveal-section {
  position: relative;
  padding: 5rem 0 5.5rem 0;
  background-color: var(--bg-light);
  overflow: hidden;
  width: 100%;
}

.services-header-container {
  margin-bottom: 3.5rem;
}

.services-section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.services-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.25rem;
  background: rgba(0, 82, 204, 0.1);
  color: var(--logo-blue);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.services-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.services-title span {
  color: var(--logo-blue);
}

.services-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Slider Track Viewport */
.services-slider-viewport {
  width: 100%;
  overflow: hidden;
  padding: 1rem 0 2.5rem 0;
}

.services-cards-track {
  display: flex;
  gap: 2.5rem;
  padding-left: calc(50vw - 230px);
  padding-right: 15vw;
  width: max-content;
  will-change: transform;
}

/* Service Card Design */
.service-reveal-card {
  width: 460px;
  min-width: 460px;
  height: 420px;
  border-radius: 28px;
  padding: 3rem 2.5rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 16px 40px rgba(7, 21, 54, 0.15);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.service-reveal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(7, 21, 54, 0.25);
}

/* Exact Card Gradients Specified by User */
.service-reveal-card.card-odd {

background: linear-gradient(91deg, rgba(51, 167, 221, 1) 0%, rgba(87, 199, 133, 1) 63%, rgba(24, 130, 75, 1) 100%);
}

.service-reveal-card.card-even {

background: linear-gradient(269deg, rgba(51, 167, 221, 1) 0%, rgba(87, 199, 133, 1) 63%, rgba(24, 130, 75, 1) 100%);
}

.service-card-number {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1;
}

.service-card-tag {
  display: inline-block;
  font-size:10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.22);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  width: fit-content;
  margin-bottom: 1rem;
}

.service-card-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  text-align: left;
}

.service-card-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.5rem;
  text-align: left;
}

.service-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  width: fit-content;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
}

.service-card-btn:hover {
  background: #ffffff;
  color: #0f172a;
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .services-reveal-section {
    padding: 3.5rem 0;
  }
  .services-slider-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.5rem 1rem 2rem 1rem;
  }
  .services-slider-viewport::-webkit-scrollbar {
    display: none;
  }
  .services-cards-track {
    padding-left: 0.5rem;
    padding-right: 1rem;
    gap: 1.25rem;
    transform: none !important;
  }
  .service-reveal-card {
    scroll-snap-align: center;
    scroll-snap-stop: always;
    width: 85vw;
    min-width: 85vw;
    max-width: 350px;
    height: 380px;
    padding: 2rem 1.5rem;
  }
  .service-card-title {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
  }
  .service-card-desc {
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
  }
  .services-title {
    font-size: 2.1rem;
  }
  .services-subtitle {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .service-reveal-card {
    width: 88vw;
    min-width: 88vw;
    max-width: 320px;
    height: 370px;
    padding: 1.75rem 1.25rem;
  }
  .service-card-number {
    font-size: 2.75rem;
    top: 1.25rem;
    right: 1.5rem;
  }
  .service-card-title {
    font-size: 1.25rem;
  }
  .service-card-desc {
    font-size: 0.88rem;
  }
}

/* --------------------------------------------------------------------------
   5e. Client Logos Carousel Section (Center Highlight Color & Scale)
   -------------------------------------------------------------------------- */
.clients-carousel-section {
  padding: 30px 0px !important;
  background-color: var(--bg-white);
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.clients-section-header {
  text-align: center;
}

.clients-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.25rem;
  background: rgba(0, 82, 204, 0.08);
  color: var(--logo-blue);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.clients-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--text-heading);
}

.clients-title span {
  color: var(--logo-blue);
}

/* Carousel Viewport */
.clients-carousel-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 15px 0;
}

/* Navigation Arrow Buttons */
.clients-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--logo-blue);
  border: 1.5px solid rgba(0, 82, 204, 0.2);
  box-shadow: 0 8px 24px rgba(7, 21, 54, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  z-index: 25;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.clients-prev-btn {
  left: 20px;
}

.clients-next-btn {
  right: 20px;
}

.clients-nav-btn:hover {
  background: var(--logo-blue);
  color: #ffffff;
  border-color: var(--logo-blue);
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 12px 30px rgba(0, 82, 204, 0.35);
}

.clients-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

@media (max-width: 768px) {
  .clients-nav-btn {
    width: 42px;
    height: 42px;
    font-size: 0.95rem;
  }
  .clients-prev-btn {
    left: 10px;
  }
  .clients-next-btn {
    right: 10px;
  }
}

.clients-carousel-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  will-change: transform;
}

.client-logo-item {
  width: 185px;
  min-width: 185px;
  height: 95px;
  background: #ffffff;
  border-radius: 18px;
  padding: 0.75rem 1.25rem;
  border: 1.5px solid rgba(0, 82, 204, 0.12);
  box-shadow: 0 6px 20px rgba(7, 21, 54, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0.88;
  transform: scale(0.92);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-sizing: border-box;
}

.client-logo-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: auto;
}

.client-logo-item.active-center {
  opacity: 1 !important;
  transform: scale(1.18) !important;
  box-shadow: 0 14px 35px rgba(0, 82, 204, 0.25) !important;
  border-color: var(--logo-blue) !important;
  z-index: 10;
}

.client-logo-item:hover {
  opacity: 1;
  transform: scale(1.12);
  box-shadow: 0 10px 25px rgba(0, 82, 204, 0.18);
  border-color: var(--logo-green);
}

/* --------------------------------------------------------------------------
   5f. Why Choose Us Section (Edge-to-Edge Full Width like Marquee Banner)
   -------------------------------------------------------------------------- */
.why-choose-section {
  position: relative;
  padding: 30px 0px !important;
  background-color: var(--bg-white);
  overflow: hidden;
  width: 100%;
}

.why-choose-container {
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

/* Left Content Box (Edge-to-Edge Flush with Left Screen Boundary) */
.why-choose-content-card {
background: linear-gradient(273deg, rgba(51, 167, 221, 1) 0%, rgba(87, 199, 133, 1) 63%, rgba(24, 130, 75, 1) 100%);
  border-radius: 0 36px 36px 0;
  padding: 4rem 3.5rem 4rem 6vw;
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(0, 137, 123, 0.25);
  position: relative;
}

.why-choose-sublabel {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.75rem;
}

.why-choose-main-title {
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.why-choose-intro {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2.25rem;
}

/* 8 Items List (2-Column Grid for 100% Visibility) */
.why-choose-items-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 2.5rem;
}

.why-choose-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.why-choose-item:nth-last-child(-n+2) {
  border-bottom: none;
  padding-bottom: 0;
}

.why-item-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: #ffffff;
  color: #00897b;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.why-item-info h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

/* Right Image Wrapper */
.why-choose-image-wrapper {
  position: relative;
  width: 100%;
  height: 560px;
  border-radius: 36px 0 0 36px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(7, 21, 54, 0.22);
}

.why-choose-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-img-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 64px;
  height: 64px;
  background: #00acc1;
  border: 3.5px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

@media (max-width: 992px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .why-choose-content-card {
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
    margin: 0 1rem;
  }
  .why-choose-image-wrapper {
    border-radius: 24px;
    height: 420px;
    width: calc(100% - 2rem);
    margin: 0 1rem;
    box-shadow: 0 16px 40px rgba(7, 21, 54, 0.16);
  }
  .why-choose-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .why-choose-main-title {
    font-size: 1.85rem;
  }
  .why-choose-items-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  .why-choose-image-wrapper {
    height: 340px;
    margin: 0 0.85rem;
    width: calc(100% - 1.7rem);
    border-radius: 20px;
  }
  .why-choose-content-card {
    margin: 0 0.85rem;
    padding: 2rem 1.25rem;
    border-radius: 20px;
  }
  .why-choose-main-title {
    font-size: 1.55rem;
  }
  .why-img-badge {
    width: 52px;
    height: 52px;
    font-size: 1.15rem;
    bottom: 1.25rem;
    right: 1.25rem;
  }
}

/* --------------------------------------------------------------------------
   5g. How We Work — 4-Step Interactive Timeline Section (Clean Light Theme)
   -------------------------------------------------------------------------- */
.process-section {
  position: relative;
  padding:30px 0px !important;
  background-color: var(--bg-white);
  color: var(--text-heading);
  overflow: hidden;
  width: 100%;
}

.process-header {
  text-align: center;
  margin-bottom: 4rem;
}

.process-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.25rem;
  background: rgba(0, 82, 204, 0.08);
  color: var(--logo-blue);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(0, 82, 204, 0.18);
}

.process-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-heading);
}

.process-title span {
  color: var(--logo-blue);
}

/* Timeline Wrapper */
.process-timeline-wrapper {
  position: relative;
  margin-top: 2rem;
}

/* Horizontal Track Bar running behind nodes */
.timeline-track-bar {
  position: absolute;
  top: 45px;
  left: 10%;
  width: 80%;
  height: 4px;
  background: #e2e8f0;
  z-index: 1;
  border-radius: 2px;
}

.timeline-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #00897b 0%, #0052cc 100%);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(0, 137, 123, 0.4);
  will-change: width;
}

/* 4 Step Cards Grid */
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.process-step-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 2.25rem 1.75rem;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(7, 21, 54, 0.05);
  transition: all 0.4s ease;
  will-change: transform, opacity;
}

.process-step-card.step-initial {
  opacity: 1;
}

.process-step-card.step-hidden {
  opacity: 0.35;
  transform: translateY(20px) scale(0.95);
}

.process-step-card.step-active {
  background: #ffffff;
  border-color: #00897b;
  box-shadow: 0 16px 40px rgba(0, 137, 123, 0.18);
  opacity: 1 !important;
  transform: translateY(0) scale(1.05) !important;
}

/* Timeline Node Icon Badge */
.process-node-icon {
  width: 60px;
  height: 60px;
  margin: -50px auto 1.5rem auto;
  background: #ffffff;
  border: 3px solid #cbd5e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--text-muted);
  box-shadow: 0 6px 18px rgba(7, 21, 54, 0.08);
  transition: all 0.4s ease;
}

.process-step-card.step-active .process-node-icon {
 
background: linear-gradient(87deg, rgba(17, 144, 194, 1) 0%, rgba(87, 199, 133, 1) 55%, rgba(15, 214, 65, 1) 100%);
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 137, 123, 0.5);
  transform: scale(1.1);
}

.process-step-number {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #00897b;
  background: rgba(0, 137, 123, 0.1);
  padding: 0.25rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.process-step-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
}

.process-step-desc {
  font-size: 0.925rem;
  line-height: 1.6;
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .process-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
  .timeline-track-bar {
    display: none;
  }
}

@media (max-width: 576px) {
  .process-steps-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   5h. Industries We Serve Section (Clean Borderless 2-Column List on Custom Gradient)
   -------------------------------------------------------------------------- */
.industries-section {
  position: relative;
  padding: 30px 0px !important;

background: linear-gradient(91deg, rgba(51, 167, 221, 1) 0%, rgba(87, 199, 133, 1) 63%, rgba(24, 130, 75, 1) 100%);
  color: #ffffff;
  overflow: hidden;
  width: 100%;
}

.industries-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.industries-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.25rem;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.industries-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
}

.industries-title span {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: rgba(255, 255, 255, 0.4);
}

/* 2-Column List Container (No Card Boxes) */
.industries-list-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 3.5rem;
}

.industries-column {
  display: flex;
  flex-direction: column;
}

.industry-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 0.5rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
}

.industry-item:hover {
  background: transparent;
  transform: translateX(10px);
}

.industry-item-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.industry-icon-box {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.35s ease;
}

.industry-item:hover .industry-icon-box {
  background: #ffffff;
  color: #1190c2;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.industry-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  transition: opacity 0.3s ease;
  margin: 0;
}

.industry-item:hover .industry-name {
  color: #ffffff;
  opacity: 0.95;
}

.industry-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.35s ease;
}

.industry-item:hover .industry-arrow {
  background: #ffffff;
  border-color: #ffffff;
  color: #1190c2;
  transform: rotate(-45deg);
}

/* Floating Cursor Image Preview Element */
.cursor-img-preview {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  height: 210px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8) rotate(-3deg);
  border: 4px solid #ffffff;
  will-change: transform, opacity;
}

.cursor-img-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 992px) {
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* --------------------------------------------------------------------------
   5i. FAQ Section (Left Image, Right Accordion Content)
   -------------------------------------------------------------------------- */
.faq-section {
  position: relative;
  padding: 30px 0px !important;
  background-color: var(--bg-white);
  overflow: hidden;
  width: 100%;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
}

/* Left Image Box */
.faq-image-wrapper {
  position: relative;
  width: 100%;
  height: 580px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(7, 21, 54, 0.18);
}

.faq-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.faq-img-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: #ffffff;
  padding: 1.25rem 1.5rem;
  border-radius: 20px;
  box-shadow: 0 14px 35px rgba(7, 21, 54, 0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid #e2e8f0;
}

.faq-badge-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #00897b 0%, #00acc1 100%);
  color: #ffffff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.faq-badge-text h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.2rem;
}

.faq-badge-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* Right Content Box & Accordion */
.faq-content-box {
  display: flex;
  flex-direction: column;
}

.faq-header {
  margin-bottom: 2.5rem;
}

.faq-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.25rem;
  background: rgba(0, 82, 204, 0.08);
  color: var(--logo-blue);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(0, 82, 204, 0.18);
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.25;
}

.faq-title span {
  color: var(--logo-blue);
}

/* Accordion List */
.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.faq-accordion-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 4px 15px rgba(7, 21, 54, 0.03);
}

.faq-accordion-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 10px 25px rgba(7, 21, 54, 0.07);
}

.faq-accordion-item.active {
  border-color: var(--logo-blue);
  box-shadow: 0 14px 35px rgba(0, 82, 204, 0.12);
}

.faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.75rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1.25rem;
}

.faq-question-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-heading);
  transition: color 0.3s ease;
}

.faq-accordion-item.active .faq-question-text {
  color: var(--logo-blue);
}

.faq-icon-toggle {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: rgba(0, 82, 204, 0.08);
  color: var(--logo-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.35s ease;
}

.faq-accordion-item.active .faq-icon-toggle {
  background: var(--logo-blue);
  color: #ffffff;
  transform: rotate(135deg);
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  padding: 0 1.75rem;
}

.faq-accordion-item.active .faq-answer-panel {
  max-height: 300px;
  opacity: 1;
  padding: 0 1.75rem 1.5rem 1.75rem;
}

.faq-answer-panel p {
  font-size: 0.975rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 992px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .faq-image-wrapper {
    height: 400px;
  }
}

/* --------------------------------------------------------------------------
   5j. Counter & Statistics Section (Contact Page Hero Banner Style & Lazy Loaded)
   -------------------------------------------------------------------------- */
.counter-section-wrapper {
  position: relative;
  padding: 30px 0px !important;
  background-color: var(--bg-white);
  overflow: hidden;
  width: 100%;
}

.counter-banner-card {
  position: relative;

background: linear-gradient(269deg, rgba(51, 167, 221, 1) 0%, rgba(87, 199, 133, 1) 63%, rgba(24, 130, 75, 1) 100%);
  border-radius: 32px;
  padding: 4.5rem 3.5rem;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(7, 21, 54, 0.18);
  opacity: 0;
  transform: translateY(50px) scale(0.96);
  will-change: transform, opacity;
}

/* Floating Shapes matching Contact Banner */
.counter-banner-card .shape-squiggle {
  position: absolute;
  top: 2rem;
  left: 3rem;
  opacity: 0.5;
}

.counter-banner-card .shape-circle-ring {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  width: 90px;
  height: 90px;
  border: 3px dashed rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  opacity: 0.6;
}

.counter-banner-card .shape-star {
  position: absolute;
  top: 2.5rem;
  right: 6rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.5rem;
}

.counter-banner-card .shape-dots-grid {
  position: absolute;
  bottom: 2rem;
  left: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 8px);
  gap: 6px;
  opacity: 0.35;
}

.counter-banner-card .shape-dots-grid span {
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.counter-card {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 28px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(16px);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

.counter-card:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: #ffffff;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
  transform: translateY(-8px);
}

.counter-icon-box {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.35s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.counter-card:hover .counter-icon-box {
  background: #ffffff;
  color: #1190c2;
  border-color: #ffffff;
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

.counter-number-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-family: var(--font-main);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.counter-number {
  color: #ffffff;
}

.counter-plus {
  color: #ffffff;
  margin-left: 2px;
  font-weight: 800;
}

.counter-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.counter-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  font-weight: 500;
}

@media (max-width: 992px) {
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .counter-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.banner-section {
  padding: 2rem 0 3rem 0;
  background-color: var(--bg-light);
  width: 100%;
}

.contact-banner {
background: linear-gradient(91deg, rgba(51, 167, 221, 1) 0%, rgba(87, 199, 133, 1) 63%, rgba(24, 130, 75, 1) 100%);
  border-radius: 28px;
  padding: 5.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  color: var(--text-white);
  min-height: 280px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-banner::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 82, 204, 0.3) 0%, rgba(7, 21, 54, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 168, 89, 0.35) 0%, rgba(7, 21, 54, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.shape-squiggle {
  position: absolute;
  top: 35%;
  left: 28%;
  opacity: 0.85;
}

.shape-circle-ring {
  position: absolute;
  top: 40%;
  right: 32%;
  width: 18px;
  height: 18px;
  border: 3px solid var(--logo-green);
  border-radius: 50%;
  opacity: 0.8;
}

.shape-star {
  position: absolute;
  bottom: 25%;
  left: 31%;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.4);
}

.shape-dots-grid {
  position: absolute;
  bottom: 25%;
  right: 31%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  opacity: 0.45;
}

.shape-dots-grid span {
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  border-radius: 50%;
}

.banner-content {
  position: relative;
  z-index: 10;
}

.banner-title {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.breadcrumb-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 1.4rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.925rem;
  font-weight: 500;
}

.breadcrumb-pill i {
  font-size: 0.85rem;
  color: var(--text-white);
}

.breadcrumb-pill .sep {
  opacity: 0.6;
}

.breadcrumb-pill .current {
  color: var(--text-white);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   6. Single Horizontal White Contact Details Card
   -------------------------------------------------------------------------- */
.contact-single-card-section {
  padding: 2.5rem 0 4rem 0;
}

.single-contact-card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 2.75rem 3rem;
  box-shadow: 0 12px 35px rgba(0, 82, 204, 0.08);
  border: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-item-block {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  position: relative;
}

.contact-item-block:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 10%;
  height: 80%;
  width: 1px;
  background-color: var(--border-light);
}

.contact-icon-circle {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background-color: var(--logo-green-soft);
  color: var(--logo-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(0, 168, 89, 0.15);
  transition: var(--transition);
}

.contact-item-block:hover .contact-icon-circle {
  background-color: var(--logo-blue);
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(0, 82, 204, 0.3);
}

.contact-item-info h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.4rem;
}

.contact-item-info p,
.contact-item-info a {
  font-size: 0.925rem;
  color: var(--text-body);
  line-height: 1.5;
}

.contact-item-info a:hover {
  color: var(--logo-blue);
}

/* --------------------------------------------------------------------------
   7. Form Section Pinned Overlapping Layout (Themed with Logo Colors)
   -------------------------------------------------------------------------- */
.contact-form-section {
  padding: 1.5rem 0 !important;
  background-color: var(--bg-light);
  overflow: hidden;
  position: relative;
}

.contact-form-pinned-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.form-pinned-image-wrapper {
  width: 100%;
  height: 600px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 82, 204, 0.12);
  position: relative;
  z-index: 1;
  background-color: #ffffff;
}

.form-pinned-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-form-wrapper-card {
  background-color: #ffffff;
  border-radius: 28px;
  padding: 3.5rem 3.5rem;
  box-shadow: 0 25px 60px rgba(7, 21, 54, 0.12);
  border: 1px solid rgba(226, 232, 240, 0.9);
  margin-left: -90px;
  position: relative;
  z-index: 10;
}

.form-subtag {
  color: var(--logo-green);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.form-main-title {
  color: var(--text-heading);
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 2rem;
  line-height: 1.15;
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.45rem;
}

/* Input Icon Group Styling */
.input-icon-group {
  position: relative;
  width: 100%;
}

.input-icon-group .input-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 1.05rem;
  pointer-events: none;
  transition: var(--transition);
}

.input-icon-group.textarea-group .input-icon {
  top: 1.1rem;
  transform: none;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  background-color: #ffffff;
  color: #0f172a;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.form-control.with-icon {
  padding-left: 2.8rem;
}

.input-icon-group:focus-within .input-icon {
  color: var(--logo-green);
}

.form-control:focus {
  outline: none;
  border-color: var(--logo-green);
  box-shadow: 0 0 0 3.5px rgba(0, 168, 89, 0.18);
}

select.form-control,
select.custom-subject-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 14px;
  color: #0f172a;
  font-weight: 600;
  font-size: 0.95rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230052cc' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 1.15rem;
  padding-right: 2.8rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(7, 21, 54, 0.04);
  transition: all 0.3s ease;
}

select.custom-subject-select:focus {
  background-color: #ffffff;
  border-color: var(--logo-blue);
  box-shadow: 0 0 0 4px rgba(0, 82, 204, 0.18), 0 8px 24px rgba(0, 82, 204, 0.12);
  outline: none;
}

select.custom-subject-select option {
  background-color: #ffffff;
  color: #0f172a;
  font-weight: 600;
  padding: 12px 16px;
  font-size: 0.95rem;
}

select.custom-subject-select option:disabled {
  color: #94a3b8;
  font-style: italic;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Submit Button: Logo Blue to Green Gradient */
.btn-submit-green {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2.2rem;
  background: linear-gradient(135deg, var(--logo-green) 0%, var(--logo-blue) 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 168, 89, 0.35);
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.btn-submit-green:hover {
  background: linear-gradient(135deg, var(--logo-green-dark) 0%, var(--logo-blue-dark) 100%);
  box-shadow: 0 8px 24px rgba(0, 168, 89, 0.5);
  transform: translateY(-2px);
}

.form-alert {
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
}

.form-alert.success {
  display: block;
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-alert.error {
  display: block;
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* --------------------------------------------------------------------------
   8. Map Section
   -------------------------------------------------------------------------- */
.contact-map-section {
  padding: 20px 0;
  background-color: var(--bg-white);
}

.map-card-wrapper {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 2px solid rgba(0, 82, 204, 0.15);
  box-shadow: 0 20px 50px rgba(7, 21, 54, 0.15);
  height: 300px;
  width: 100%;
}

.map-card-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: contrast(1.05) saturate(1.1);
}

/* Glassmorphic Brand Gradient Overlay over Google Map */
.map-gradient-overlay {
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(135deg, rgb(65 87 139 / 35%) 0%, rgba(0, 82, 204, 0.18) 50%, rgb(117 237 181 / 25%) 100%);
    box-shadow: inset 0 0 40px rgba(7, 21, 54, 0.3);
    transition: opacity 0.4s ease;
}


.map-card-wrapper:hover .map-gradient-overlay {
  opacity: 0.15;
}

@media (max-width: 768px) {
  .map-card-wrapper {
    height: 350px;
    border-radius: 20px;
  }
}

/* --------------------------------------------------------------------------
   9. Floating Rounded Card Footer (Themed with Logo Colors)
   -------------------------------------------------------------------------- */
.footer-section {
  padding: 1rem 0;
  background-color: var(--bg-light);
  width: 100%;
}

.footer-card {
background: linear-gradient(79deg, rgba(20, 75, 204, 1) 0%, rgba(87, 199, 133, 1) 63%, rgba(24, 130, 75, 1) 100%);
  border-radius: 28px;
  padding: 0.5rem 3rem;
  color: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-lg);
  position: relative;
  width: 100%;
}

.footer-card-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 0.5rem;
  margin-top: 10px;
}

/* Vertical Divider for Brand Column */
.footer-card-col.brand-col {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding-right: 2.5rem;
}

.footer-card-logo {
  height: 78px;
  width: auto;
  margin-bottom: 1.5rem;
}

.contact-block-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.box-label {
  font-size: 0.725rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.box-val {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.box-val i {
  color: var(--logo-green);
  font-size: 0.95rem;
}

.box-val:hover {
  color: var(--logo-green-light);
}

.footer-divider-line {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.12);
  margin: 0.25rem 0;
  width: 100%;
}

/* Col Titles & Links */
.footer-card-title {
  color: var(--text-white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-card-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-card-links a {
  font-size:12px;
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
}

.footer-card-links a:hover {
  color: var(--logo-green);
  padding-left: 4px;
}

.footer-card-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Official Social Media Colors in Column 4 */
.social-original-colors {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.15rem;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.social-btn.facebook {
  background-color: #1877f2;
}

.social-btn.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-btn.linkedin {
  background-color: #0a66c2;
}

/* Footer Bottom Bar Inside Rounded Card */
.footer-card-bottom {
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size:12px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-card-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-card-bottom-links a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-card-bottom-links a:hover {
  color: var(--text-white);
}

.footer-card-bottom-links .sep {
  opacity: 0.4;
}

/* Floating WhatsApp Button (Positioned Directly Above Back to Top) */
.floating-whatsapp {
  position: fixed;
  bottom: 5.6rem;
  right: 2.5rem;
  width: 48px;
  height: 48px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.floating-whatsapp:hover {
  background-color: #128c7e;
  color: #ffffff;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* Floating Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2.5rem;
  width: 48px;
  height: 48px;
  background-color: var(--logo-green);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 6px 20px rgba(0, 168, 89, 0.45);
  z-index: 999;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--logo-green-dark);
  transform: translateY(-4px);
}

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 5.2rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    font-size: 1.45rem;
  }
  .back-to-top {
    right: 1.25rem;
    width: 44px;
    height: 44px;
  }
}

/* --------------------------------------------------------------------------
   10. Comprehensive Responsive Breakpoints Across All Devices (Index & Global)
   -------------------------------------------------------------------------- */

/* Global Overflow Prevention */
html, body {
  overflow-x: clip;
  max-width: 100vw;
}

@media (max-width: 1200px) {
  .single-contact-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .contact-item-block:nth-child(2)::after {
    display: none;
  }

  .contact-form-pinned-container {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form-wrapper-card {
    margin-left: -40px;
    padding: 3rem 2.5rem;
  }

  .why-choose-card-content {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 992px) {
  /* Prevent Cursor Hover Boxes on Touch / Mobile Devices */
  @media (hover: none) {
    .cursor-img-preview {
      display: none !important;
    }
  }

  /* Hero Section Mobile / Tablet Stack */
  .hero-section {
    padding: 3rem 0 4rem 0;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  /* Why Choose Us Section */
  .why-choose-section {
    padding: 3.5rem 0;
  }

  .why-choose-card-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-choose-image-box {
    height: 340px;
  }

  .why-choose-card-content {
    padding: 2.25rem 1.75rem;
  }

  .why-choose-items-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  /* Process Section */
  .process-section {
    padding: 4rem 0;
  }

  .process-steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  /* Industries Section */
  .industries-section {
    padding: 4rem 0;
  }

  .industries-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .industry-item {
    padding: 1.15rem 0.25rem;
  }

  /* FAQ Section */
  .faq-section {
    padding: 4rem 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .faq-image-wrapper {
    height: 380px;
  }

  .faq-title {
    font-size: 2.1rem;
  }

  /* Counter Section */
  .counter-section-wrapper {
    padding: 2.5rem 0 3.5rem 0;
  }

  .counter-banner-card {
    padding: 3.5rem 2rem;
    border-radius: 24px;
  }

  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Single Contact Details Cards (Contact Page) */
  .single-contact-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2.25rem 2rem;
  }

  .contact-item-block::after {
    display: none !important;
  }

  .contact-form-pinned-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-pinned-image-wrapper {
    height: 380px;
  }

  .contact-form-wrapper-card {
    margin-left: 0;
    margin-top: -50px;
    padding: 2.75rem 2.25rem;
  }

  .footer-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-card-col.brand-col {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-right: 0;
    padding-bottom: 2rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .container-fluid {
    padding: 0 1rem;
  }

  .top-bar-left {
    padding-left: 1rem;
    padding-right: 2.5rem;
    font-size: 0.78rem;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
  }

  .top-bar-left span:nth-child(2) {
    display: none;
  }

  .top-bar-right {
    padding-right: 1rem;
  }

  .social-label {
    display: none;
  }

  .nav-links, .header-actions {
    display: none;
  }

  .mobile-toggle-btn {
    display: block;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .banner-title {
    font-size: 2.35rem;
  }

  .contact-banner {
    padding: 4rem 1.5rem;
    min-height: 220px;
  }

  .why-choose-title {
    font-size: 1.85rem;
  }

  .process-title {
    font-size: 1.85rem;
  }

  .process-steps-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .industries-title {
    font-size: 1.85rem;
  }

  .faq-title {
    font-size: 1.85rem;
  }

  .faq-image-wrapper {
    height: 320px;
  }

  .single-contact-card {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 2rem 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .form-pinned-image-wrapper {
    height: 320px;
  }

  .contact-form-wrapper-card {
    padding: 2.25rem 1.5rem;
    margin-top: -30px;
  }

  .form-main-title {
    font-size: 1.85rem;
  }

  .map-card-wrapper {
    height: 350px;
  }

  .footer-card {
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    border-radius: 20px;
  }

  .footer-card-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-card-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.65rem;
  }

  .why-choose-items-list {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .why-choose-card-content {
    padding: 1.75rem 1.25rem;
  }

  .counter-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .counter-card {
    padding: 2rem 1.25rem;
  }

  .counter-number-wrap {
    font-size: 2.75rem;
  }

  .counter-banner-card {
    padding: 2.75rem 1.25rem;
    border-radius: 20px;
  }

  .faq-question-btn {
    padding: 1.15rem 1.25rem;
  }

  .faq-question-text {
    font-size: 1rem;
  }

  .faq-answer-panel {
    padding: 0 1.25rem;
  }

  .faq-accordion-item.active .faq-answer-panel {
    padding: 0 1.25rem 1.25rem 1.25rem;
  }
}

/* --------------------------------------------------------------------------
   Vision & Mission 3-Card Unstacking Section (Replicating media_1787986131087.png)
   -------------------------------------------------------------------------- */
.vision-mission-section {
  padding: 20px 0 !important;
  background-color: #f4f7fb;
  position: relative;
  overflow: hidden;
}

.vision-mission-track-wrapper {
  position: relative;
  width: 100%;
  min-height: 480px;
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  width: 100%;
}

.vm-card {
  border-radius: 28px;
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 440px;
  box-shadow: 0 16px 40px rgba(7, 21, 54, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0, 82, 204, 0.18);
}

/* Card 1: Light Soft Blue Card */
.vm-card-light {
  background: #eef5ff;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.vm-card-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vm-avatar-group {
  display: flex;
  align-items: center;
}

.vm-avatar-group .avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
  margin-left: -12px;
}

.vm-avatar-group .avatar-img:first-child {
  margin-left: 0;
}

.avatar-plus-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--logo-blue);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #ffffff;
  margin-left: -12px;
}

.vm-card-stat-block {
  margin: 2rem 0;
}

.vm-stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--logo-blue);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.vm-stat-label {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-heading);
}

.vm-dark-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #051329;
  color: #ffffff;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.925rem;
  align-self: flex-start;
  transition: var(--transition);
}

.vm-dark-btn:hover {
  background: var(--logo-green);
  transform: translateX(4px);
}

/* Card 2: Vibrant Royal Blue Card */
.vm-card-blue {
     background: linear-gradient(135deg, #32a8de 0%, #003db3 100%);
  color: #ffffff;
}

.vm-card-blue .vm-card-title {
  color: #ffffff;
}

.vm-card-blue .vm-card-desc {
  color: rgba(255, 255, 255, 0.88);
}

.vm-card-blue .corner-badge-btn {
  color: #0052cc;
}

/* Card 3: Dark Navy / Logo Green Card */
.vm-card-navy {
  background: #051329;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.vm-card-navy .vm-card-title {
  color: #ffffff;
}

.vm-card-navy .vm-card-desc {
  color: rgba(255, 255, 255, 0.88);
}

.vm-card-navy .corner-badge-btn {
  color: #051329;
}

.vm-card-green {
  background: linear-gradient(135deg, #00a859 0%, #008a47 100%);
  color: #ffffff;
}

.vm-card-green .vm-card-title {
  color: #ffffff;
}

.vm-card-green .vm-card-desc {
  color: rgba(255, 255, 255, 0.92);
}

.vm-card-green .corner-badge-btn {
  color: #00a859;
}

.vm-card-navy .vm-card-desc {
  color: rgba(255, 255, 255, 0.82);
}

.vm-card-navy .corner-badge-btn {
  color: #051329;
}

/* Common Card Internal Typography & Elements */
.vm-card-icon-box {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.vm-card-tag {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.85;
  display: block;
  margin-bottom: 0.5rem;
}

.vm-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.vm-card-desc {
  font-size: 0.975rem;
  line-height: 1.65;
}

/* Corner Action Button Badge */
.corner-badge-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, background 0.3s ease;
  z-index: 3;
}

.corner-badge-btn:hover {
  transform: scale(1.15) rotate(45deg);
  background: #ffffff;
}

@media (max-width: 992px) {
  .vision-mission-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .banner-title {
    font-size: 1.95rem;
  }

  .form-pinned-image-wrapper {
    height: 260px;
  }

  .contact-form-wrapper-card {
    padding: 1.75rem 1.25rem;
  }

  .map-card-wrapper {
    height: 280px;
  }

  .btn-submit-green {
    width: 100%;
    justify-content: center;
  }

  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 42px;
    height: 42px;
  }
}

/* --------------------------------------------------------------------------
   Our Approach 4-Step Process Section (Replicating media_1787987366601.png)
   -------------------------------------------------------------------------- */
.approach-section {
  padding: 20px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.approach-process-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.approach-step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 250px;
  position: relative;
}

/* Circular Image Box & Dashed Outer Ring */
.approach-circle-wrap {
  position: relative;
  width: 170px;
  height: 170px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.approach-img-box {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(7, 21, 54, 0.12);
  position: relative;
  z-index: 2;
}

.approach-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Outer Blue Dashed Ring */
.approach-dashed-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2.5px dashed var(--logo-blue);
  animation: spinApproachRing 20s linear infinite;
  z-index: 1;
}

@keyframes spinApproachRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Top Left Step Number Pill Badge */
.approach-step-num {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--logo-blue) 0%, var(--logo-green) 100%);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 82, 204, 0.35);
  border: 2px solid #ffffff;
  z-index: 3;
}

/* Curved Connecting Arrow Doodle */
.approach-arrow-doodle {
  align-self: center;
  margin-top: -3.5rem;
  opacity: 0.7;
}

/* Step Typography */
.approach-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.approach-step-desc {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .approach-process-grid {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  .approach-arrow-doodle {
    transform: rotate(90deg);
    margin-top: 0;
  }
}

/* --------------------------------------------------------------------------
   Our Journey Tree Timeline Section
   -------------------------------------------------------------------------- */
.journey-section {
  padding:30px 0;
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
}

.journey-timeline-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 4.5rem auto;
  padding: 1rem 0;
}

/* Center Vertical Spine Lines */
.journey-line-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #e2e8f0;
  transform: translateX(-50%);
  border-radius: 4px;
}

.journey-line-progress {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 0%;
  background: linear-gradient(180deg, var(--logo-blue) 0%, var(--logo-green) 100%);
  transform: translateX(-50%);
  border-radius: 4px;
  z-index: 1;
}

/* Timeline Item Layout */
.journey-item {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 3.5rem;
  width: 100%;
}

.journey-item:last-child {
  margin-bottom: 0;
}

.journey-left {
  justify-content: flex-start;
}

.journey-right {
  justify-content: flex-end;
}

.journey-left .journey-card {
  width: 45%;
  margin-right: auto;
  text-align: right;
}

.journey-right .journey-card {
  width: 45%;
  margin-left: auto;
  text-align: left;
}

/* Center Node Badge */
.journey-node {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid var(--logo-blue);
  box-shadow: 0 0 0 6px rgba(0, 82, 204, 0.15), 0 8px 20px rgba(0, 82, 204, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.node-year {
  font-size: 0.825rem;
  font-weight: 800;
  color: var(--logo-blue);
}

.journey-item:hover .journey-node {
  transform: translateX(-50%) scale(1.15);
  border-color: var(--logo-green);
}

/* Milestone Card Surface */
.journey-card {
  background: #ffffff;
  padding: 2rem 2.25rem;
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(7, 21, 54, 0.07);
  border: 1px solid rgba(226, 232, 240, 0.9);
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.journey-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 82, 204, 0.14);
}

.journey-badge {
  display: inline-block;
  background: var(--logo-blue-soft);
  color: var(--logo-blue);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}

.journey-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.journey-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Bottom Summary Banner Card with Website Theme Colors */
.journey-bottom-card {
  max-width: 900px;
  margin: 0 auto;
background: linear-gradient(269deg, rgba(51, 167, 221, 1) 0%, rgba(87, 199, 133, 1) 63%, rgba(24, 130, 75, 1) 100%);
  color: #ffffff;
  padding: 2.75rem 3rem;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0, 82, 204, 0.28);
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.journey-bottom-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.journey-bottom-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ffffff;
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.journey-bottom-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.journey-bottom-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .journey-line-bg,
  .journey-line-progress {
    left: 28px;
  }
  .journey-node {
    left: 28px;
  }
  .journey-left .journey-card,
  .journey-right .journey-card {
    width: calc(100% - 75px);
    margin-left: 75px;
    margin-right: 0;
    text-align: left;
  }
  .journey-bottom-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   Call To Action (CTA) Section
   -------------------------------------------------------------------------- */
.cta-section {
  padding: 20px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.cta-card {
  background: linear-gradient(135deg, #eef5ff 0%, #e0edff 100%);
  border-radius: 32px;
  padding: 4rem 3.5rem;
  color: var(--text-heading);
  box-shadow: 0 20px 50px rgba(0, 82, 204, 0.08);
  border: 1.5px solid rgba(0, 82, 204, 0.15);
  position: relative;
  overflow: hidden;
}

/* Background Accents */
.cta-card::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -15%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 82, 204, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-card::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -15%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 168, 89, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-shape-squiggle {
  position: absolute;
  top: 25px;
  right: 60px;
  opacity: 0.7;
}

.cta-shape-squiggle path {
  stroke: var(--logo-blue);
}

.cta-shape-circle {
  position: absolute;
  bottom: 25px;
  left: 50px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px dashed rgba(0, 82, 204, 0.25);
  animation: spinApproachRing 16s linear infinite;
}

.cta-shape-star {
  position: absolute;
  top: 40px;
  left: 45%;
  color: rgba(0, 82, 204, 0.25);
  font-size: 1.25rem;
}

/* Grid Layout */
.cta-content-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.cta-text-side {
  max-width: 620px;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  color: var(--logo-blue);
  padding: 0.35rem 1.15rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 82, 204, 0.15);
  box-shadow: 0 4px 12px rgba(0, 82, 204, 0.08);
}

.cta-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.cta-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Buttons */
.cta-action-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  background: var(--logo-blue);
  color: #ffffff;
  padding: 1rem 2.25rem;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 10px 25px rgba(0, 82, 204, 0.25);
  transition: var(--transition);
}

.cta-btn-primary:hover {
  background: var(--logo-green);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 168, 89, 0.35);
}

.cta-btn-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #ffffff;
  color: var(--navy-dark);
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid rgba(0, 82, 204, 0.2);
  box-shadow: 0 4px 15px rgba(7, 21, 54, 0.06);
  transition: var(--transition);
}

.cta-btn-phone:hover {
  background: var(--navy-dark);
  color: #ffffff;
  border-color: var(--navy-dark);
  transform: translateY(-3px);
}

.cta-btn-phone:hover {
  background: #ffffff;
  color: var(--navy-dark);
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .cta-content-grid {
    flex-direction: column;
    text-align: center;
  }
  .cta-action-side {
    width: 100%;
  }
  .cta-card {
    padding: 3rem 2rem;
  }
}

/* --------------------------------------------------------------------------
   Services Page Custom Image Grid & Expertise Styling
   -------------------------------------------------------------------------- */
.services-custom-img-grid {
  position: relative;
  width: 100%;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-img-glow {
  position: absolute;
  top: 12%;
  left: 8%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 82, 204, 0.18) 0%, rgba(0, 168, 89, 0.12) 60%, transparent 80%);
  filter: blur(35px);
  pointer-events: none;
}

.services-img-card-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 68%;
  height: 360px;
  border-radius: 40px 0 40px 0;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(7, 21, 54, 0.16);
  border: 4px solid #ffffff;
  z-index: 2;
  transition: transform 0.4s ease;
}

.services-img-card-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-img-card-sub {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 62%;
  height: 310px;
  border-radius: 0 40px 0 40px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 82, 204, 0.2);
  border: 4px solid #ffffff;
  z-index: 3;
  transition: transform 0.4s ease;
}

.services-img-card-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-floating-badge-top {
  position: absolute;
  top: 30px;
  left: 10px;
  background: var(--navy-dark);
  color: #ffffff;
  padding: 1.1rem 1.6rem;
  border-radius: 24px 24px 24px 4px;
  box-shadow: 0 15px 35px rgba(7, 21, 54, 0.3);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.services-floating-badge-top .badge-icon-gradient {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--logo-blue), var(--logo-green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #ffffff;
}

.services-floating-badge-top .badge-info h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.services-floating-badge-top .badge-info p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.services-floating-badge-bottom {
  position: absolute;
  bottom: 25px;
  right: 15px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 0.95rem 1.45rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 15px 35px rgba(0, 82, 204, 0.18);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 4;
  border: 1.5px solid rgba(0, 82, 204, 0.2);
}

.services-floating-badge-bottom .pill-icon-green {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--logo-green);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 6px 15px rgba(0, 168, 89, 0.35);
}

.services-floating-badge-bottom .pill-text h5 {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin: 0;
}

.services-floating-badge-bottom .pill-text p {
  font-size: 0.78rem;
  color: var(--logo-blue);
  font-weight: 700;
  margin: 0;
}

.services-dots-pattern {
  position: absolute;
  bottom: -10px;
  left: 45%;
  display: grid;
  grid-template-columns: repeat(6, 6px);
  gap: 10px;
  z-index: 1;
  opacity: 0.5;
}

.services-dots-pattern span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--logo-blue);
}

.services-expertise-wrapper {
  margin: 1.75rem 0 1.5rem 0;
  padding: 1.5rem;
  background: var(--logo-blue-soft);
  border-radius: 20px;
  border: 1px solid rgba(0, 82, 204, 0.12);
}

.expertise-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.expertise-tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.expertise-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #ffffff;
  color: var(--text-heading);
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid rgba(0, 82, 204, 0.15);
  box-shadow: 0 3px 8px rgba(0, 82, 204, 0.05);
  transition: var(--transition);
}

.expertise-chip:hover {
  background: var(--logo-blue);
  color: #ffffff;
  transform: translateY(-2px);
}

.expertise-chip i {
  color: var(--logo-blue);
}

.expertise-chip:hover i {
  color: #ffffff;
}

.services-closing-note {
  font-size: 1rem;
  font-weight: 700;
  color: var(--logo-blue);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 0.85rem;
  border-top: 1px dashed rgba(0, 82, 204, 0.2);
}

@media (max-width: 992px) {
  .services-custom-img-grid {
    min-height: 440px;
    margin-bottom: 2.5rem;
  }
}

/* --------------------------------------------------------------------------
   Detailed 12 Services Alternating Sections
   -------------------------------------------------------------------------- */
.detailed-services-container {
  padding: 1rem 0 3rem 0;
  position: relative;
}

.detailed-service-block {
  padding: 4.5rem 0;
  border-bottom: 1px solid rgba(0, 82, 204, 0.08);
  position: relative;
  overflow: hidden;
}

.detailed-service-block.bg-alt {
  background-color: #f7faff;
}

.detailed-service-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: center;
}

.detailed-service-grid.reverse-layout {
  grid-template-columns: 1.15fr 1fr;
}

.detailed-service-grid.reverse-layout .detailed-service-image-col {
  order: 2;
}

.detailed-service-grid.reverse-layout .detailed-service-content-col {
  order: 1;
}

/* Image Column Styling */
.detailed-service-image-col {
  position: relative;
}

.service-image-frame {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(7, 21, 54, 0.12);
  border: 4px solid #ffffff;
  height: 420px;
}

.service-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-image-frame:hover img {
  transform: scale(1.05);
}

.service-image-overlay-badge {
  position: absolute;
  top: 25px;
  left: 25px;
  background: rgba(7, 21, 54, 0.88);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-image-overlay-badge i {
  color: var(--logo-green);
}

.service-image-floating-num {
  position: absolute;
  bottom: 20px;
  right: 25px;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1;
  font-family: 'Ubuntu', sans-serif;
  pointer-events: none;
}

/* Content Column Styling */
.detailed-service-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--logo-blue-soft);
  color: var(--logo-blue);
  padding: 0.35rem 1.15rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 82, 204, 0.12);
}

.detailed-service-title {
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.25;
  margin-bottom: 1.15rem;
}

.detailed-service-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

/* Checklist Grid Styling */
.service-checklist-box {
  margin: 1.5rem 0;
  padding: 1.35rem 1.5rem;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(0, 82, 204, 0.12);
  box-shadow: 0 6px 20px rgba(0, 82, 204, 0.04);
}

.detailed-service-block.bg-alt .service-checklist-box {
  background: #ffffff;
}

.checklist-heading {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.service-checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem 1rem;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-heading);
}

.checklist-item i {
  color: var(--logo-green);
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* Benefits Grid Styling */
.service-benefits-box {
  margin-top: 1.5rem;
}

.benefits-heading {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.benefit-card {
  background: rgba(0, 82, 204, 0.04);
  padding: 0.9rem 1.1rem;
  border-radius: 16px;
  border-left: 3.5.px solid var(--logo-blue);
}

.benefit-card h6 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-heading);
  margin: 0 0 0.25rem 0;
}

.benefit-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.45;
}

.detailed-service-action {
  margin-top: 1.75rem;
}

@media (max-width: 992px) {
  .detailed-service-grid,
  .detailed-service-grid.reverse-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .detailed-service-grid.reverse-layout .detailed-service-image-col {
    order: 1;
  }
  .detailed-service-grid.reverse-layout .detailed-service-content-col {
    order: 2;
  }
  .service-image-frame {
    height: 320px;
  }
  .service-checklist-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}
