/* ============================================
   DOVE CREATIONS - Main Stylesheet
   Colors from logo: Crimson #E63946, Teal #2EC4B6, Coral #F4845F, Gold #FFD166
   Background: #0d111a (deep blue-dark)
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

:root {
  --primary: #E63946;
  --teal: #2EC4B6;
  --coral: #F4845F;
  --gold: #FFD166;
  --dark: #0d111a;
  --dark2: #131824;
  --dark3: #1a2035;
  --dark4: #202840;
  --text-light: #c8d0e0;
  --text-muted: #7a8499;
  --white: #ffffff;
  --gradient-hero: linear-gradient(135deg, #0d111a 0%, #131d38 50%, #0d111a 100%);
  --gradient-accent: linear-gradient(135deg, var(--primary) 0%, var(--coral) 100%);
  --gradient-teal: linear-gradient(135deg, var(--teal) 0%, #1a8a85 100%);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 30px rgba(230, 57, 70, 0.3);
  --border-subtle: 1px solid rgba(255, 255, 255, 0.07);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Ubuntu', sans-serif;
  background-color: var(--dark);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.7;
  /* Firefox scrollbar */
  scrollbar-width: thin;
  scrollbar-color: var(--primary) rgba(255, 255, 255, 0.05);
}

/* ============================
   GLOBAL CUSTOM SCROLLBAR
============================ */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  border-radius: 10px;
  transition: opacity 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--primary), var(--primary));
  opacity: 0.9;
}

::-webkit-scrollbar-corner {
  background: transparent;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Ubuntu', sans-serif;
  color: var(--white);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

/* ============================
   SCROLLBAR
============================ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark2);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

/* ============================
   NOISE TEXTURE OVERLAY
============================ */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ============================
   PRELOADER
============================ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  font-family: 'Ubuntu', sans-serif;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: var(--dark3);
  border-radius: 3px;
  overflow: hidden;
}

.preloader-fill {
  height: 100%;
  background: var(--gradient-accent);
  border-radius: 3px;
  animation: preloadFill 1.5s ease forwards;
}

@keyframes preloadFill {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* ============================
   NAVBAR
============================ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 17, 26, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: var(--border-subtle);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white) !important;
}

.navbar-brand img {
  height: 80px;
  width: auto;
}

.brand-text span {
  color: var(--primary);
}

.nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 16px !important;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 70%;
}

.nav-link:hover {
  color: var(--white) !important;
}

.btn-nav {
  background: var(--gradient-accent);
  color: var(--white) !important;
  border-radius: 50px;
  padding: 10px 28px !important;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.5);
}

/* Desktop Nav */
.desktop-nav {
  align-items: center;
}

.btn-nav::after {
  display: none;
}

/* ============================
   MOBILE NAV - Animated Hamburger
============================ */
.mobile-nav-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 10001;
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hamburger-line {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  transform-origin: center;
}

/* Hamburger → X animation */
.mobile-nav-toggle.active .line-1 {
  transform: translateY(8px) rotate(45deg);
  background: var(--primary);
}

.mobile-nav-toggle.active .line-2 {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-nav-toggle.active .line-3 {
  transform: translateY(-8px) rotate(-45deg);
  background: var(--primary);
}

/* ============================
   MOBILE NAV - Fullscreen Overlay
============================ */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  visibility: hidden;
}

.mobile-nav-overlay.active {
  pointer-events: all;
  visibility: visible;
}

.mobile-nav-bg {
  position: absolute;
  inset: 0;
  background: rgba(13, 17, 26, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-overlay.active .mobile-nav-bg {
  opacity: 1;
}

.mobile-nav-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px 30px 40px;
  overflow-y: auto;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.4s ease 0.1s;
}

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

/* Close Button */
.mobile-nav-close {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.mobile-nav-close:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: rotate(90deg);
}

/* Nav Links */
.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.mobile-nav-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-overlay.active .mobile-nav-links li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav-overlay.active .mobile-nav-links li:nth-child(1) {
  transition-delay: 0.15s;
}

.mobile-nav-overlay.active .mobile-nav-links li:nth-child(2) {
  transition-delay: 0.2s;
}

.mobile-nav-overlay.active .mobile-nav-links li:nth-child(3) {
  transition-delay: 0.25s;
}

.mobile-nav-overlay.active .mobile-nav-links li:nth-child(4) {
  transition-delay: 0.3s;
}

.mobile-nav-overlay.active .mobile-nav-links li:nth-child(5) {
  transition-delay: 0.35s;
}

.mobile-nav-overlay.active .mobile-nav-links li:nth-child(6) {
  transition-delay: 0.4s;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 5px;
  text-decoration: none;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  color: var(--white);
  padding-left: 12px;
}

.mobile-nav-link:hover .nav-num {
  color: var(--primary);
}

.mobile-nav-link:hover .nav-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--primary);
}

.nav-num {
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  min-width: 24px;
  transition: color 0.3s ease;
}

.nav-text {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  flex: 1;
}

.nav-arrow {
  font-size: 0.85rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  color: var(--text-muted);
}

/* CTA Button */
.mobile-nav-cta {
  padding: 25px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease 0.45s;
}

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

.mobile-cta-btn {
  width: 100%;
  justify-content: center;
  padding: 16px 30px;
  font-size: 1rem;
  border-radius: 14px;
}

/* Footer / Socials */
.mobile-nav-footer {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease 0.5s;
}

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

.mobile-nav-socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 15px;
}

.mobile-nav-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.mobile-nav-socials a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.mobile-nav-info {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* Body lock when nav is open */
body.mobile-nav-open {
  overflow: hidden;
}

/* ============================
   HERO SLIDER
============================ */
.hero-section {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 700px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-slide.active img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 17, 26, 0.85) 0%, rgba(13, 17, 26, 0.5) 50%, rgba(13, 17, 26, 0.7) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230, 57, 70, 0.15);
  border: 1px solid rgba(230, 57, 70, 0.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {

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

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title .highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 550px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary-custom {
  background: var(--gradient-accent);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 6px 25px rgba(230, 57, 70, 0.4);
  border: none;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(230, 57, 70, 0.6);
  color: var(--white);
}

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-custom:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-3px);
  color: var(--white);
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

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

.slider-dot.active {
  background: var(--primary);
  width: 30px;
  border-radius: 4px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.slider-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.slider-arrow.prev {
  left: 30px;
}

.slider-arrow.next {
  right: 30px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    height: 30px;
  }

  50% {
    opacity: 1;
    height: 50px;
  }
}

/* ============================
   STATS BAR
============================ */
.stats-bar {
  background: var(--dark2);
  border-top: var(--border-subtle);
  border-bottom: var(--border-subtle);
  padding: 30px 0;
}

.stat-item {
  text-align: center;
  padding: 10px 20px;
  border-right: var(--border-subtle);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Ubuntu', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}

.stat-number span {
  color: var(--primary);
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* ============================
   SECTION STYLES
============================ */
section {
  padding: 100px 0;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background: var(--gradient-accent);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.section-title2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 550px;
}

/* ============================
   ABOUT SECTION
============================ */
.about-section {
  background: var(--dark2);
  overflow-x: clip;
}

.about-image-wrap {
  position: relative;
}

.about-image-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-image-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-image-main:hover img {
  transform: scale(1.05);
}

.about-badge-float {
  position: absolute;
  bottom: -15px;
  right: 15px;
  background: var(--gradient-accent);
  border-radius: 16px;
  padding: 20px 25px;
  text-align: center;
  box-shadow: var(--shadow-glow);
}

.about-badge-float .num {
  font-family: 'Ubuntu', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1;
}

.about-badge-float .txt {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

.about-text {
  padding-left: 40px;
}

.about-features {
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: var(--border-subtle);
  border-radius: 12px;
  margin-bottom: 12px;
  transition: var(--transition);
}

.feature-item:hover {
  background: rgba(230, 57, 70, 0.08);
  border-color: rgba(230, 57, 70, 0.2);
  transform: translateX(5px);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.fi-red {
  background: rgba(230, 57, 70, 0.15);
  color: var(--primary);
}

.fi-teal {
  background: rgba(46, 196, 182, 0.15);
  color: var(--teal);
}

.fi-coral {
  background: rgba(244, 132, 95, 0.15);
  color: var(--coral);
}

.fi-gold {
  background: rgba(255, 209, 102, 0.15);
  color: var(--gold);
}

.feature-text h6 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}

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

/* ============================
   SERVICES SECTION
============================ */
.services-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(46, 196, 182, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.service-card {
  background: var(--dark2);
  border: var(--border-subtle);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(230, 57, 70, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(230, 57, 70, 0.1);
}

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

.service-icon {
  width: 65px;
  height: 65px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.service-card h4 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tag {
  background: rgba(255, 255, 255, 0.05);
  border: var(--border-subtle);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.service-number {
  position: absolute;
  top: 20px;
  right: 25px;
  font-family: 'Ubuntu', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
}

/* ============================
   PORTFOLIO SECTION
============================ */
.portfolio-section {
  background: var(--dark2);
}

.portfolio-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  background: transparent;
  border: var(--border-subtle);
  border-radius: 50px;
  padding: 8px 22px;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Ubuntu', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-accent);
  border-color: transparent;
  color: var(--white);
}

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

.portfolio-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 17, 26, 0.95) 0%, rgba(13, 17, 26, 0.2) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  pointer-events: none;
  /* Allow clicks to pass through to image */
}

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

.portfolio-cat {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 5px;
}

.portfolio-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.portfolio-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 55px;
  height: 55px;
  background: rgba(230, 57, 70, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ============================
   APPROACH SECTION
============================ */
.approach-section {
  background: var(--dark);
}

.approach-timeline {
  position: relative;
  padding-left: 40px;
}

.approach-timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--teal), var(--coral), var(--gold));
}

.approach-step {
  position: relative;
  padding: 30px 30px 30px 40px;
  background: var(--dark2);
  border: var(--border-subtle);
  border-radius: 16px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.approach-step:hover {
  border-color: rgba(230, 57, 70, 0.3);
  transform: translateX(10px);
}

.step-dot {
  position: absolute;
  left: -51px;
  top: 35px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 3px solid var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-number {
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--white);
}

.step-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.approach-step h5 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.approach-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.approach-visual {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.approach-circle {
  position: relative;
  width: 350px;
  height: 350px;
}

.circle-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: rotateRing linear infinite;
}

.ring1 {
  inset: 0;
  border-color: rgba(230, 57, 70, 0.2);
  animation-duration: 20s;
}

.ring2 {
  inset: 30px;
  border-color: rgba(46, 196, 182, 0.2);
  animation-duration: 15s;
  animation-direction: reverse;
}

.ring3 {
  inset: 60px;
  border-color: rgba(244, 132, 95, 0.2);
  animation-duration: 25s;
}

@keyframes rotateRing {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.circle-center {
  position: absolute;
  inset: 90px;
  background: var(--dark2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--border-subtle);
  flex-direction: column;
  text-align: center;
  padding: 20px;
}

.circle-center .big-num {
  font-family: 'Ubuntu', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.circle-center .big-txt {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================
   TESTIMONIALS
============================ */
.testimonials-section {
  background: var(--dark2);
  position: relative;
  overflow: hidden;
}

.testimonials-section::after {
  content: '"';
  position: absolute;
  top: -50px;
  right: 5%;
  font-family: 'Ubuntu', sans-serif;
  font-size: 30rem;
  color: rgba(255, 255, 255, 0.015);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card {
  background: var(--dark3);
  border: var(--border-subtle);
  border-radius: 20px;
  padding: 35px;
  height: 100%;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(46, 196, 182, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.testimonial-text {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 25px;
  position: relative;
}

.testimonial-quote {
  position: absolute;
  top: -10px;
  left: -5px;
  font-family: 'Ubuntu', sans-serif;
  font-size: 4rem;
  color: rgba(230, 57, 70, 0.15);
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--teal);
}

.testimonial-name {
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================
   PRICING SECTION
============================ */
.pricing-section {
  background: var(--dark);
}

.pricing-card {
  background: var(--dark2);
  border: var(--border-subtle);
  border-radius: 24px;
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.pricing-card.featured {
  background: var(--dark3);
  border-color: var(--primary);
  box-shadow: 0 0 50px rgba(230, 57, 70, 0.15);
}

.pricing-card:hover {
  transform: translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  background: var(--gradient-accent);
  color: var(--white);
  font-size: 0.75rem;
  padding: 5px 14px;
  border-radius: 50px;
  font-weight: 600;
}

.pricing-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.pricing-name {
  font-size: 1.2rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  font-family: 'Ubuntu', sans-serif;
}

.pricing-price {
  font-family: 'Ubuntu', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 5px;
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.pricing-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 25px 0;
}

.pricing-features {
  list-style: none;
  margin-bottom: 35px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-light);
}

.pricing-features li .check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.check-green {
  background: rgba(46, 196, 182, 0.15);
  color: var(--teal);
}

/* ============================
   BLOG SECTION
============================ */
.blog-section {
  background: var(--dark2);
}

.blog-card {
  background: var(--dark3);
  border: var(--border-subtle);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(230, 57, 70, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.blog-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

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

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-cat {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gradient-accent);
  color: var(--white);
  font-size: 0.75rem;
  padding: 5px 14px;
  border-radius: 50px;
  font-weight: 600;
}

.blog-body {
  padding: 28px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.blog-meta i {
  color: var(--teal);
}

.blog-title {
  font-size: 1.15rem;
  margin-bottom: 12px;
  transition: var(--transition);
}

.blog-card:hover .blog-title {
  color: var(--primary);
}

.blog-excerpt {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}

.blog-link:hover {
  gap: 12px;
  color: var(--coral);
}

/* ============================
   SCHOOLS SECTION
============================ */
.schools-section {
  background: var(--dark);
}

.schools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.school-item {
  background: var(--dark2);
  border: var(--border-subtle);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--transition);
}

.school-item:hover {
  border-color: rgba(46, 196, 182, 0.3);
  background: rgba(46, 196, 182, 0.05);
  transform: translateX(5px);
}

.school-item .icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(46, 196, 182, 0.15);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.school-item h6 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.school-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ============================
   CTA SECTION
============================ */
.cta-section {
  background: var(--dark2);
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.2);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.3) 0%, rgba(13, 17, 26, 0.9) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 20px;
}

.cta-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 20px;
  display: block;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 24px;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto 40px;
}

/* ============================
   CONTACT SECTION
============================ */
.contact-section {
  background: var(--dark);
}

.contact-card {
  background: var(--dark2);
  border: var(--border-subtle);
  border-radius: 24px;
  padding: 50px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  background: var(--dark3);
  border: var(--border-subtle);
  border-radius: 14px;
  margin-bottom: 16px;
  transition: var(--transition);
}

.contact-info-item:hover {
  border-color: rgba(230, 57, 70, 0.2);
  transform: translateX(5px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-icon.red {
  background: rgba(230, 57, 70, 0.15);
  color: var(--primary);
}

.contact-icon.teal {
  background: rgba(46, 196, 182, 0.15);
  color: var(--teal);
}

.contact-icon.coral {
  background: rgba(244, 132, 95, 0.15);
  color: var(--coral);
}

.contact-icon.gold {
  background: rgba(255, 209, 102, 0.15);
  color: var(--gold);
}

.contact-info-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
}

.form-floating>.form-control,
.form-floating>.form-select {
  background: var(--dark3);
  border: var(--border-subtle);
  color: var(--white);
  border-radius: 12px;
}

.form-floating>.form-control:focus,
.form-floating>.form-select:focus {
  background: var(--dark3);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.form-floating>label {
  color: var(--text-muted);
}

.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-control:focus~label {
  color: var(--primary);
}

textarea.form-control {
  min-height: 140px;
  resize: none;
}

/* ============================
   CLIENTS / PARTNERS
============================ */
.clients-section {
  background: var(--dark2);
  padding: 80px 0;
  position: relative;
}

.clients-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(46, 196, 182, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.clients-section .section-title {
  color: var(--white);
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
}

.clients-section .section-subtitle {
  color: var(--text-muted);
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.clients-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}

.clients-track {
  display: flex;
  gap: 80px;
  align-items: center;
  animation: clientScroll 45s linear infinite;
  width: max-content;
  will-change: transform;
}

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

.client-item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  opacity: 0.7;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 250px;
  height: 250px;
  position: relative;
}

.clients-track:hover .client-item:not(:hover) {
  opacity: 0.4;
  transform: scale(0.9);
}

.client-item:hover {
  opacity: 1 !important;
  transform: scale(1.2) !important;
  background: rgba(46, 196, 182, 0.1);
  border-color: rgba(46, 196, 182, 0.3);
  z-index: 10;
}

.client-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.client-logo-img {
  max-height: 180px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.client-logo-text {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  text-align: center;
  padding: 25px;
  background: rgba(46, 196, 182, 0.15);
  border-radius: 16px;
  border: 1px solid rgba(46, 196, 182, 0.3);
  max-width: 180px;
  max-height: 180px;
  min-width: 180px;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.client-label {
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.client-item:hover .client-logo-img {
  transform: none;
}

.client-item:hover .client-logo-text {
  background: rgba(46, 196, 182, 0.25);
  border-color: rgba(46, 196, 182, 0.5);
  color: var(--teal);
  transform: none;
}

@keyframes clientScroll {
  from {
    transform: translateX(0);
  }

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

.clients-overflow {
  overflow: hidden;
  position: relative;
}

.clients-overflow:hover .clients-track {
  animation-play-state: paused;
}

/* ============================
   FOOTER
============================ */
footer {
  background: var(--dark2);
  border-top: var(--border-subtle);
  padding: 80px 0 30px;
}

.footer-logo {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo span {
  color: var(--primary);
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
  font-size: 1rem;
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-links a::before {
  content: '.';
  color: var(--primary);
  font-size: 1.1rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.footer-contact-item i {
  color: var(--primary);
}

.footer-bottom {
  border-top: var(--border-subtle);
  padding-top: 25px;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--primary);
}

/* ============================
   BACK TO TOP
============================ */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--gradient-accent);
  border: none;
  border-radius: 12px;
  color: var(--white);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 5px 20px rgba(230, 57, 70, 0.4);
}

#backToTop.visible {
  opacity: 1;
  visibility: visible;
}

#backToTop:hover {
  transform: translateY(-3px);
}

/* ============================
   VIDEO MODAL
============================ */
.modal-backdrop {
  background: rgba(0, 0, 0, 0.8);
}

.modal-content {
  background: var(--dark2);
  border: 1px solid var(--admin-border);
  border-radius: 15px;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}

.video-responsive {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

/* ============================
   LIGHTBOX
============================ */
.lightbox-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.lightbox-container img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

/* ============================
   VIDEO MODAL
============================ */
.modal-header {
  border-bottom: var(--border-subtle);
  padding: 20px 25px;
}

.modal-header .btn-close {
  filter: invert(1);
}

.modal-body {
  padding: 25px;
}

.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 12px;
  overflow: hidden;
}

.video-responsive iframe,
.video-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tiktok-responsive {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px 0;
}

.tiktok-responsive iframe {
  width: 100%;
  max-width: 350px;
  height: 580px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* ============================
   ANIMATIONS
============================ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* On mobile, disable horizontal slide animations to prevent clipping */
@media (max-width: 992px) {

  .fade-left,
  .fade-right {
    transform: translateY(30px);
  }

  .fade-left.visible,
  .fade-right.visible {
    transform: translateY(0);
  }
}

.delay-1 {
  transition-delay: 0.1s !important;
}

.delay-2 {
  transition-delay: 0.2s !important;
}

.delay-3 {
  transition-delay: 0.3s !important;
}

.delay-4 {
  transition-delay: 0.4s !important;
}

.delay-5 {
  transition-delay: 0.5s !important;
}

.delay-6 {
  transition-delay: 0.6s !important;
}

.delay-7 {
  transition-delay: 0.7s !important;
}

.delay-8 {
  transition-delay: 0.8s !important;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================
   GLOBAL RESPONSIVE
  ============================ */
* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

img,
video {
  max-width: 100%;
  height: auto;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 992px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-text {
    padding-left: calc(var(--bs-gutter-x, 1rem) * 0.5);
    margin-top: 20px;
  }

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

  .stat-item {
    border-right: none;
    border-bottom: var(--border-subtle);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  /* Maintain proper container spacing */
  .container {
    padding: 0 20px;
  }

  /* Hero section responsive */
  .hero-section {
    min-height: 500px;
  }

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-btns {
    gap: 15px;
  }

  .hero-btns .btn-primary-custom,
  .hero-btns .btn-outline-custom {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  /* Navbar responsive */
  .navbar-brand img {
    height: 60px;
  }

  .navbar {
    padding: 10px 0;
  }

  /* About image responsive */
  .about-image-main img {
    height: 380px;
  }

  /* Client items responsive */
  .client-item {
    width: 200px;
    height: 200px;
  }

  .client-logo-img {
    max-height: 140px;
    max-width: 140px;
  }

  .client-logo-text {
    max-width: 140px;
    max-height: 140px;
    min-width: 140px;
    min-height: 140px;
    font-size: 1.3rem;
  }

  .clients-track {
    gap: 50px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 50px 0;
  }

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

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .contact-card {
    padding: 30px 20px;
  }

  .pricing-card {
    padding: 35px 25px;
  }

  .approach-circle {
    width: 280px;
    height: 280px;
  }

  .circle-center {
    inset: 70px;
  }

  .about-badge-float {
    bottom: 10px;
    right: 10px;
    padding: 12px 18px;
    border-radius: 12px;
  }

  .about-badge-float .num {
    font-size: 1.8rem;
  }

  .about-badge-float .txt {
    font-size: 0.72rem;
  }

  .slider-arrow {
    display: none;
  }

  /* Maintain proper container spacing on mobile */
  .container {
    padding: 0 15px;
  }

  /* Hero mobile */
  .hero-section {
    min-height: 400px;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 4px 8px;
  }

  /* Sections mobile */
  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  /* Portfolio mobile */
  .portfolio-item {
    margin-bottom: 20px;
  }

  .portfolio-title {
    font-size: 1rem;
  }

  .portfolio-cat {
    font-size: 0.7rem;
  }

  /* Services mobile */
  .service-card {
    padding: 25px 20px;
    margin-bottom: 20px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .service-title {
    font-size: 1.1rem;
  }

  .service-description {
    font-size: 0.9rem;
  }

  /* About mobile */
  .about-content {
    padding: 30px 0;
  }

  .about-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .about-image-main img {
    height: 300px;
  }

  .about-badge-float {
    padding: 14px 18px;
  }

  .about-badge-float .num {
    font-size: 1.8rem;
  }

  /* Stats bar mobile */
  .stat-number {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .stat-item {
    padding: 8px 10px;
  }

  /* Contact mobile */
  .contact-form {
    padding: 20px;
  }

  .form-control {
    padding: 12px 15px;
    font-size: 0.9rem;
  }

  .btn-primary-custom,
  .btn-outline-custom {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  /* Footer mobile */
  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  /* Client items mobile */
  .client-item {
    width: 160px;
    height: 160px;
  }

  .client-logo-img {
    max-height: 110px;
    max-width: 110px;
  }

  .client-logo-text {
    max-width: 110px;
    max-height: 110px;
    min-width: 110px;
    min-height: 110px;
    font-size: 1.1rem;
    padding: 15px;
  }

  .clients-track {
    gap: 30px;
  }

  /* Scroll indicator hide on mobile */
  .scroll-indicator {
    display: none;
  }

  /* Noise texture: reduce on mobile for perf */
  body::before {
    opacity: 0.15;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

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

  .hero-subtitle {
    font-size: 0.85rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .service-card {
    padding: 20px 15px;
  }

  .contact-card {
    padding: 20px 15px;
  }

  .contact-form {
    padding: 15px;
  }

  .btn-primary-custom,
  .btn-outline-custom {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  /* About image small phone */
  .about-image-main img {
    height: 220px;
  }

  .about-badge-float {
    padding: 10px 14px;
    bottom: -8px;
    right: 8px;
  }

  .about-badge-float .num {
    font-size: 1.5rem;
  }

  .about-badge-float .txt {
    font-size: 0.7rem;
  }

  /* Approach circle small phone */
  .approach-circle {
    width: 220px;
    height: 220px;
  }

  .circle-center {
    inset: 55px;
  }

  .circle-center .big-num {
    font-size: 2rem;
  }

  /* Stats smaller */
  .stat-number {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.05em;
  }

  /* Pricing small phone */
  .pricing-card {
    padding: 28px 18px;
  }

  .pricing-price {
    font-size: 2.2rem;
  }

  /* Blog card image */
  .blog-image {
    height: 180px;
  }

  /* Testimonial card */
  .testimonial-card {
    padding: 25px 20px;
  }

  .testimonial-quote {
    font-size: 3rem;
  }

  /* Disable noise overlay on small/low-end devices */
  body::before {
    display: none;
  }
}