/* ==========================================
   FADDIERATION — Global Stylesheet
   ========================================== */
@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@300;400;500;600;700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap");

:root {
  --white: #ffffff;
  --light: #f8fafc;
  --light-gray: #e2e8f0;
  --medium-gray: #94a3b8;
  --dark-gray: #64748b;
  --black: #0f172a;
  --blue: #3b82f6;
  --blue-light: #dbeafe;
  --blue-medium: #3b82f6;
  --blue-dark: #1e40af;
  --ice: #dbeafe;
  --teal: #3b82f6;
  --navy: #1e3a5f;
  --dark: #0f172a;
  --gold: #f59e0b;
  --font-heading: Georgia, 'Times New Roman', Times, serif;
  --font-body: "DM Sans", sans-serif;
  --nav-h: 72px;
  --side-w: 72px;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.8s ease;
}

body.loaded {
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 100px 50px;
  position: relative;
}

/* ===== CURSOR GLOW ===== */
.cursor-glow {
  position: fixed;
  width: 36px;
  height: 36px;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cursor-glow.active {
  opacity: 1;
}

/* Primary core dot */
.cursor-glow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #3b82f6;
  box-shadow:
    0 0 6px rgba(59, 130, 246, 0.8),
    0 0 12px rgba(59, 130, 246, 0.4);
  transition:
    width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    background 0.35s ease,
    box-shadow 0.35s ease;
  z-index: 2;
}

/* Secondary glow ring */
.cursor-glow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(219, 234, 254, 0.25) 0%,
      rgba(219, 234, 254, 0.08) 40%,
      transparent 70%);
  border: 1.5px solid rgba(219, 234, 254, 0.2);
  transition:
    width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.35s ease,
    background 0.35s ease;
  animation: cursorPulse 2.5s ease-in-out infinite;
  z-index: 1;
}

/* Hover state — expands glow, brightens core */
.cursor-glow.hovering::before {
  width: 14px;
  height: 14px;
  background: #dbeafe;
  box-shadow:
    0 0 10px rgba(219, 234, 254, 0.9),
    0 0 25px rgba(219, 234, 254, 0.4),
    0 0 50px rgba(59, 130, 246, 0.2);
}

.cursor-glow.hovering::after {
  width: 56px;
  height: 56px;
  border-color: rgba(219, 234, 254, 0.35);
  background: radial-gradient(circle,
      rgba(219, 234, 254, 0.15) 0%,
      rgba(219, 234, 254, 0.04) 50%,
      transparent 70%);
}

/* Click state */
.cursor-glow.clicking::before {
  width: 6px;
  height: 6px;
  background: #fff;
  box-shadow:
    0 0 14px rgba(219, 234, 254, 1),
    0 0 30px rgba(59, 130, 246, 0.6);
}

.cursor-glow.clicking::after {
  width: 28px;
  height: 28px;
  border-color: rgba(219, 234, 254, 0.5);
}

/* Pulse animation on the glow ring */
@keyframes cursorPulse {

  0%,
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.12);
  }
}



.logo {
  display: flex;
  /* align-items: center; */
  justify-content: center;
  gap: 10px;
  /* spacing control */
}


.logo-img {
  width: 12rem;
  display: block;
  /* IMPORTANT: baseline issue fix */
  object-fit: contain;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: all 0.5s ease;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(59, 130, 246, 0.08);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(59, 130, 246, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 2.5rem 0 calc(var(--side-w) + 2rem);
  max-width: 1440px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--blue-dark);
  letter-spacing: -0.02em;
}

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

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-gray);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: all 0.3s ease;
  border-radius: 2px;
  display: block;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(30px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--dark-gray);
  transition: all 0.4s;
  transform: translateY(30px);
  opacity: 0;
}

.mobile-overlay.open .mobile-nav a {
  transform: translateY(0);
  opacity: 1;
}

.mobile-overlay.open .mobile-nav a:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-overlay.open .mobile-nav a:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-overlay.open .mobile-nav a:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-overlay.open .mobile-nav a:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-overlay.open .mobile-nav a:nth-child(5) {
  transition-delay: 0.3s;
}

.mobile-nav a:hover {
  color: var(--blue);
}

/* ===== SIDEBAR ===== */
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--side-w);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 998;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-right: 1px solid rgba(59, 130, 246, 0.08);
}

.sidebar-dot {
  position: relative;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.sidebar-dot .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.25);
  transition: all 0.4s ease;
}

.sidebar-dot.active .dot {
  background: var(--blue);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
  transform: scale(1.5);
}

.sidebar-dot:hover .dot {
  background: var(--blue);
  transform: scale(1.2);
}

.sidebar-dot .tooltip {
  position: absolute;
  left: 30px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-8px);
  transition: all 0.3s ease;
  border: 1px solid rgba(59, 130, 246, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sidebar-dot:hover .tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--light);
  border-top: 1px solid rgba(59, 130, 246, 0.08);
  padding: 60px 0 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand h3 {
  font-size: 1.4rem;
  color: var(--blue-dark);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--dark-gray);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 0.8rem;
  color: var(--blue);
}

.footer-socials a:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--black);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  color: var(--dark-gray);
  font-size: 0.88rem;
  margin-bottom: 0.7rem;
  transition: all 0.3s;
}

.footer-col a:hover {
  color: var(--blue);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(59, 130, 246, 0.06);
  padding: 1.5rem 2rem;
  margin-top: 3rem;
  text-align: center;
  color: var(--dark-gray);
  font-size: 0.82rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid rgba(59, 130, 246, 0.3);
}

.btn-outline:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--blue);
  transform: translateY(-2px);
}

/* ===== SECTION HEADERS ===== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blue);
  margin-bottom: 1rem;
}

.section-tag::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--blue);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.15;
  color: var(--black);
}

.section-desc {
  color: var(--dark-gray);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.reveal-left {
  transform: translateX(-40px) translateY(0);
}

.reveal.reveal-right {
  transform: translateX(40px) translateY(0);
}

.reveal.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

.reveal-d1 {
  transition-delay: 0.1s;
}

.reveal-d2 {
  transition-delay: 0.2s;
}

.reveal-d3 {
  transition-delay: 0.3s;
}

.reveal-d4 {
  transition-delay: 0.4s;
}

.reveal-d5 {
  transition-delay: 0.5s;
}

.reveal-d6 {
  transition-delay: 0.6s;
}

/* ===== GLASS CARD ===== */
.glass-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.glass-card:hover {
  border-color: rgba(59, 130, 246, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.08);
}

/* ===== HOME PAGE — About Strip ===== */
.about-strip {
  background: var(--light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border: 1px solid rgba(59, 130, 246, 0.08);
  border-radius: var(--radius);
  transition: all 0.4s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.stat-card:hover {
  border-color: rgba(59, 130, 246, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.1);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--dark-gray);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===== HOME — Services Grid ===== */
.services-grid-section {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  padding: 2.5rem 2rem;
  background: var(--white);
  border: 1px solid rgba(59, 130, 246, 0.06);
  border-radius: var(--radius-lg);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  border-color: rgba(59, 130, 246, 0.15);
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(59, 130, 246, 0.1);
}

.service-icon {
  width: 80px !important;
  height: 80px !important;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  color: var(--blue);
  border: 1px solid rgba(59, 130, 246, 0.15);
}

.service-icon img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--black);
}

.service-card p {
  color: var(--dark-gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==========================================
   HOME PAGE — Hero Slider (Light Theme)
   ========================================== */
.hero-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg,
      var(--white) 0%,
      var(--light) 50%,
      var(--white) 100%);
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg,
      rgba(59, 130, 246, 0.03) 0%,
      rgba(219, 234, 254, 0.08) 50%,
      rgba(59, 130, 246, 0.03) 100%);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.75) 0%,
    rgba(15, 23, 42, 0.65) 50%,
    rgba(15, 23, 42, 0.75) 100%
  );
  pointer-events: none;
}

.slide-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: shapeFloat 8s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  right: -80px;
  top: 10%;
  background: linear-gradient(135deg,
      rgba(59, 130, 246, 0.12),
      rgba(219, 234, 254, 0.08));
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  animation-duration: 10s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  left: 15%;
  bottom: 15%;
  background: linear-gradient(135deg,
      rgba(219, 234, 254, 0.2),
      rgba(59, 130, 246, 0.1));
  animation-delay: 2s;
  animation-duration: 7s;
}

.shape-3 {
  width: 80px;
  height: 80px;
  right: 20%;
  bottom: 30%;
  background: linear-gradient(135deg,
      rgba(245, 158, 11, 0.2),
      rgba(245, 158, 11, 0.1));
  border-radius: 20%;
  animation-delay: 4s;
  animation-duration: 6s;
}

.shape-4 {
  width: 200px;
  height: 200px;
  left: 40%;
  top: -50px;
  background: linear-gradient(135deg,
      rgba(59, 130, 246, 0.1),
      rgba(219, 234, 254, 0.06));
  border-radius: 40% 60% 60% 40%/60% 30% 70% 40%;
  animation-delay: 1s;
  animation-duration: 12s;
}

.shape-5 {
  width: 60px;
  height: 60px;
  left: 8%;
  top: 30%;
  border: 2px solid rgba(59, 130, 246, 0.25);
  background: transparent;
  border-radius: 20%;
  animation-delay: 3s;
  animation-duration: 9s;
}

@keyframes shapeFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  33% {
    transform: translateY(-25px) rotate(5deg);
  }

  66% {
    transform: translateY(15px) rotate(-3deg);
  }
}

.slide-content {
  position: relative;
  z-index: 2;
  padding-left: calc(var(--side-w) + 4rem);
  padding-right: 2rem;
  max-width: 800px;
}

.slide-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--white);
  background: rgba(59, 130, 246, 0.3);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(59, 130, 246, 0.4);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s ease 0.3s;
}

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

.slide-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.08;
  color: var(--white);
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.7s ease 0.45s;
}

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

.slide-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 540px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.7s ease 0.6s;
}

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

.slide-content .btn {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s ease 0.75s;
}

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

.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(59, 130, 246, 0.1);
  z-index: 10;
}

.hero-progress-bar {
  height: 100%;
  width: 0;
  background: var(--blue);
  transition: width 0.1s linear;
}

.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(59, 130, 246, 0.3);
  cursor: pointer;
  transition: all 0.4s ease;
}

.hero-dot.active {
  background: var(--blue);
  transform: scale(1.3);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.4);
}

/* ===== STATS MARQUEE ===== */
.marquee-wrap {
  background: var(--blue);
  padding: 2rem 0;
  overflow: hidden;
  position: relative;
}

.marquee-wrap::before,
.marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--blue) 0%, transparent 100%);
}

.marquee-wrap::after {
  right: 0;
  background: linear-gradient(90deg, transparent 0%, var(--blue) 100%);
}

.marquee-track {
  display: flex;
  gap: 2rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}

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

.marquee-track span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.marquee-track span.highlight {
  color: var(--ice);
  opacity: 1;
  font-size: 1.2rem;
}

.marquee-track span:hover {
  opacity: 1;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-wrap::before,
.marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--dark) 0%, transparent 100%);
}

.marquee-wrap::after {
  right: 0;
  background: linear-gradient(90deg, transparent 0%, var(--dark) 100%);
}

.marquee-track {
  display: flex;
  gap: 2rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}

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

.marquee-track span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ice);
  white-space: nowrap;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.marquee-track span.highlight {
  color: var(--white);
  opacity: 1;
  font-size: 1.2rem;
}

.marquee-track span:hover {
  opacity: 1;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===== HOME — About Strip ===== */
.about-strip {
  background: var(--light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border: 1px solid rgba(59, 130, 246, 0.08);
  border-radius: var(--radius);
  transition: all 0.4s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.stat-card:hover {
  border-color: rgba(59, 130, 246, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.1);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--dark-gray);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===== HOME — Services Grid ===== */
.services-grid-section {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  padding: 2.5rem 2rem;
  background: var(--white);
  border: 1px solid rgba(59, 130, 246, 0.06);
  border-radius: var(--radius-lg);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  border-color: rgba(59, 130, 246, 0.15);
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(59, 130, 246, 0.1);
}

.service-icon {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  color: var(--blue);
  border: 1px solid rgba(59, 130, 246, 0.15);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--black);
}

.service-card p {
  color: var(--dark-gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== HOME — Portfolio ===== */
.portfolio-section {
  background: var(--light);
}

.filter-tabs {
  display: flex;
  gap: 0.75rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 8px 24px;
  border-radius: 50px;
  border: none;
  background: rgba(59, 130, 246, 0.08);
  color: var(--dark-gray);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-tab.active,
.filter-tab:hover {
  background: var(--blue);
  color: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.portfolio-item.hidden {
  opacity: 0;
  transform: scale(0.8);
  position: absolute;
  pointer-events: none;
}

.portfolio-thumb {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(59, 130, 246, 0.15);
}

.portfolio-overlay h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: var(--black);
}

.portfolio-overlay span {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 500;
}

/* ===== HOME — Testimonials ===== */
.testimonials-section {
  background: var(--white);
  overflow: hidden;
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 3rem auto 0;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 25px !important;
}

.testimonial-card {
  min-width: 100%;
  padding: 3rem;
  background: var(--light);
  border: 1px solid rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.testimonial-card .quote {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--dark-gray);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 auto 0.75rem;
  color: var(--white);
}

.testimonial-card .name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
}

.testimonial-card .role {
  color: var(--blue);
  font-size: 0.82rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 2rem;
}

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(59, 130, 246, 0.25);
  cursor: pointer;
  transition: all 0.3s;
}

.t-dot.active {
  background: var(--blue);
  transform: scale(1.4);
}

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: left;
  background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
      rgba(59, 130, 246, 0.06),
      transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .sidebar {
    display: none;
  }

  .nav-inner {
    padding: 0 1.5rem;
  }

  .slide-content {
    padding-left: 3rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  /* .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  section {
    padding: 60px 0;
  } */

  .container {
    padding: 0 1.25rem;
  }

  .slide-content {
    padding: 0 1.5rem;
  }

  .slide-content h1 {
    font-size: 2rem;
  }

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

  .services-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== WHATSAPP STICKY ICON ===== */
.whatsapp-sticky {
  position: fixed;
  bottom: 20px;
  right: 95px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
  animation:
    pulse 2s infinite,
    float 3s ease-in-out infinite;
}

.whatsapp-sticky:hover {
  background: #128c7e;
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  animation-play-state: paused;
}

.whatsapp-sticky i {
  transition: transform 0.3s ease;
}

.whatsapp-sticky:hover i {
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  }

  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  }

  100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .whatsapp-sticky {
    bottom: 15px;
    right: 80px;
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}
