/* ============================================================
   WITTY ADVERTISEMENT AND MEDIA - STYLE.CSS
   Brand Colors: Navy #0d1b2a | Light Blue #d6e4f0
   ============================================================ */

   body { overflow-x: hidden; }

/* Fix - add to html too */
html, body { overflow-x: hidden; }

:root {
  --navy: #0d1b2a;
  --navy-light: #1a2f45;
  --navy-mid: #162236;
  --sky: #d6e4f0;
  --sky-mid: #bcd5ea;
  --sky-dark: #a0c0d8;
  --accent: #2a6496;
  --white: #ffffff;
  --off-white: #f7fafc;
  --light-gray: #f0f4f8;
  --text-dark: #1a1a2e;
  --text-muted: #6b7280;
  --border-light: rgba(13, 27, 42, 0.1);
  --border-sky: rgba(214, 228, 240, 0.6);
  --shadow-sm: 0 1px 3px rgba(13,27,42,0.06), 0 1px 2px rgba(13,27,42,0.04);
  --shadow-card: 0 0 0 1px rgba(13,27,42,0.08), 0 2px 8px rgba(13,27,42,0.06);
  --radius: 12px;
  --radius-lg: 18px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 700; }

/* ---- UTILITY ---- */
.section-pad { padding: 90px 0; }
.bg-light-witty { background: var(--off-white); }
.bg-dark-witty { background: var(--navy); }
.text-witty { color: var(--navy); }

/* ---- SECTION LABELS ---- */
.section-tag {
  display: inline-block;
  background: var(--sky);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  border: 1px solid var(--sky-dark);
}
.section-tag-light {
  display: inline-block;
  background: rgba(214,228,240,0.15);
  color: var(--sky);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  border: 1px solid rgba(214,228,240,0.3);
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-title span { color: var(--accent); }
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}
.section-desc { color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
.text-white-75 { color: rgba(255,255,255,0.78); line-height: 1.75; }

/* ---- BUTTONS ---- */
.btn-primary-witty {
  background: var(--navy);
  color: var(--white);
  border: 1.5px solid var(--navy);
  padding: 11px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.28s ease;
  letter-spacing: 0.02em;
}
.btn-primary-witty:hover {
  background: var(--navy-light);
  color: var(--sky);
  border-color: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(13,27,42,0.22);
}
.btn-outline-witty {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.7);
  padding: 11px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.28s ease;
}
.btn-outline-witty:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-outline-dark-witty {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  padding: 11px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.28s ease;
}
.btn-outline-dark-witty:hover { background: var(--navy); color: var(--white); }
.btn-light-witty {
  background: var(--sky);
  color: var(--navy);
  border: 1.5px solid var(--sky-dark);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.28s ease;
}
.btn-light-witty:hover { background: var(--sky-mid); color: var(--navy); }
.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border: none;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.28s ease;
}
.btn-whatsapp:hover { background: #1ebe5d; color: var(--white); transform: translateY(-1px); }

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNavbar {
  background: transparent;
  padding: 16px 0;
  transition: all 0.35s ease;
  z-index: 1000;
}
#mainNavbar.scrolled {
  background: var(--white);
  padding: 10px 0;
  box-shadow: 0 1px 0 var(--border-light), 0 4px 20px rgba(13,27,42,0.08);
}
.brand-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  transition: color 0.3s;
}
.brand-sub {
  font-size: 0.7rem;
  font-weight: 400;
  display: block;
  opacity: 0.8;
  font-family: var(--font-body);
}
#mainNavbar.scrolled .brand-text { color: var(--navy); }
.nav-link {
  color: rgba(255,255,255,0.88) !important;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 10px !important;
  transition: color 0.25s;
  position: relative;
}
#mainNavbar.scrolled .nav-link { color: var(--navy) !important; }
.nav-link:hover { color: var(--sky) !important; }
#mainNavbar.scrolled .nav-link:hover { color: var(--accent) !important; }
.navbar-toggler { border: 1.5px solid rgba(255,255,255,0.5); }
#mainNavbar.scrolled .navbar-toggler { border-color: var(--navy); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
#mainNavbar.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-carousel { height: 100vh; min-height: 600px; }
.hero-slide {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, var(--accent) 100%);
  position: relative;
}
.slide-1 {
  background-image: linear-gradient(135deg, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.75) 100%),
    url('https://images.unsplash.com/photo-1568605114967-8130f3a36994?w=1400&q=80');
  background-size: cover; background-position: center;
}
.slide-2 {
  background-image: linear-gradient(135deg, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.75) 100%),
    url('https://images.unsplash.com/photo-1464207687429-7505649dae38?w=1400&q=80');
  background-size: cover; background-position: center;
}
.slide-3 {
  background-image: linear-gradient(135deg, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.75) 100%),
    url('https://images.unsplash.com/photo-1551434678-e076c223a692?w=1400&q=80');
  background-size: cover; background-position: center;
}
.hero-tag {
  display: inline-block;
  background: rgba(214,228,240,0.15);
  color: var(--sky);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(214,228,240,0.3);
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title span { color: var(--sky); }
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 520px;
}
.hero-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(214,228,240,0.15) !important;
  border: 1px solid rgba(214,228,240,0.35) !important;
  border-radius: 50% !important;
  color: var(--white) !important;
  font-size: 1rem !important;
  transition: all 0.25s;
}
.hero-carousel .owl-nav button:hover {
  background: var(--navy) !important;
  border-color: var(--sky) !important;
}
.hero-carousel .owl-prev { left: 20px; }
.hero-carousel .owl-next { right: 20px; }
.hero-carousel .owl-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); }
.hero-carousel .owl-dot span {
  background: rgba(255,255,255,0.35) !important;
  border: 1.5px solid rgba(255,255,255,0.5) !important;
  width: 10px !important; height: 10px !important;
  margin: 0 4px !important;
  transition: all 0.25s;
}
.hero-carousel .owl-dot.active span { background: var(--sky) !important; border-color: var(--sky) !important; width: 28px !important; border-radius: 5px !important; }

/* ============================================================
   TICKER BAR
   ============================================================ */
.ticker-bar {
  background: var(--navy);
  padding: 12px 0;
  overflow: hidden;
}
.ticker-content {
  display: flex;
  gap: 48px;
  animation: ticker 20s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-content span {
  color: var(--sky);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-img-wrap { position: relative; }
.about-img-main img { width: 100%; border-radius: var(--radius-lg); }
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--navy);
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius);
  text-align: center;
  border: 2px solid var(--sky-dark);
  box-shadow: var(--shadow-card);
}
.badge-num { font-size: 2rem; font-weight: 700; font-family: var(--font-display); color: var(--sky); display: block; }
.badge-text { font-size: 0.72rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.9; }
.about-feature-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s;
}
.about-feature-card:hover { border-color: var(--sky-dark); background: var(--off-white); }
.about-feature-card i { color: var(--accent); }

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 64px 0;
}
.stat-card { padding: 20px; }
.stat-num {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--sky);
  font-family: var(--font-display);
  line-height: 1;
}
.stat-plus { font-size: 2rem; font-weight: 700; color: var(--sky); }
.stat-label { color: rgba(255,255,255,0.7); margin-top: 8px; font-size: 0.9rem; font-weight: 500; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.service-card:hover {
  border-color: var(--sky-dark);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(13,27,42,0.1);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: var(--sky);
  border: 1px solid var(--sky-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 18px;
}
.service-card h4 { font-size: 1.1rem; margin-bottom: 10px; color: var(--navy); }
.service-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; margin-bottom: 16px; }
.service-link {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.service-link:hover { color: var(--navy); }

/* ============================================================
   WHY US CARDS
   ============================================================ */
.why-card {
  background: rgba(214,228,240,0.06);
  border: 1px solid rgba(214,228,240,0.15);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all 0.3s;
  height: 100%;
}
.why-card:hover {
  background: rgba(214,228,240,0.1);
  border-color: rgba(214,228,240,0.3);
  transform: translateY(-3px);
}
.why-icon {
  width: 52px; height: 52px;
  background: rgba(214,228,240,0.12);
  border: 1px solid rgba(214,228,240,0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--sky);
  margin-bottom: 16px;
}
.why-card h5 { color: var(--white); font-size: 1rem; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.65; }

/* ============================================================
   PROCESS
   ============================================================ */
.process-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}
.process-card:hover { border-color: var(--sky-dark); box-shadow: 0 6px 24px rgba(13,27,42,0.08); transform: translateY(-3px); }
.process-step {
  font-size: 2.8rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--sky-mid);
  line-height: 1;
  margin-bottom: 16px;
}
.process-card h5 { color: var(--navy); font-size: 1rem; margin-bottom: 10px; }
.process-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all 0.3s;
}
.portfolio-card:hover { border-color: var(--sky-dark); box-shadow: 0 8px 32px rgba(13,27,42,0.12); }
.portfolio-card img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.4s ease; }
.portfolio-card:hover img { transform: scale(1.04); }
.portfolio-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(13,27,42,0.9));
  transform: translateY(8px);
  transition: transform 0.3s;
}
.portfolio-card:hover .portfolio-overlay { transform: translateY(0); }
.portfolio-cat {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sky);
  display: block;
  margin-bottom: 4px;
}
.portfolio-overlay h5 { color: var(--white); font-size: 0.95rem; margin: 0; }

/* ============================================================
   INDUSTRY CARDS
   ============================================================ */
.industry-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 20px 12px;
  text-align: center;
  transition: all 0.25s;
}
.industry-card:hover { border-color: var(--sky-dark); background: var(--sky); transform: translateY(-2px); }
.industry-card i { font-size: 1.5rem; color: var(--navy); display: block; margin-bottom: 8px; }
.industry-card span { font-size: 0.8rem; font-weight: 600; color: var(--navy); }

/* ============================================================
   COVERAGE SECTION
   ============================================================ */
.coverage-section {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  padding: 90px 0;
}
.coverage-item {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.coverage-item i { color: var(--sky); }
.coverage-stat-card {
  background: rgba(214,228,240,0.07);
  border: 1px solid rgba(214,228,240,0.15);
  border-radius: var(--radius-lg);
  padding: 28px 16px;
  text-align: center;
  color: var(--white);
  transition: all 0.3s;
}
.coverage-stat-card:hover { background: rgba(214,228,240,0.12); border-color: rgba(214,228,240,0.3); }
.coverage-stat-card i { color: var(--sky); }
.coverage-stat-card h3 { font-size: 1.8rem; color: var(--sky); margin: 8px 0 4px; }
.coverage-stat-card p { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s;
  margin: 4px;
}
.testimonial-card:hover { border-color: var(--sky-dark); box-shadow: 0 6px 24px rgba(13,27,42,0.08); }
.testimonial-quote { font-size: 1.5rem; color: var(--sky-mid); margin-bottom: 12px; }
.testimonial-card > p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--accent));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.92rem; color: var(--navy); }
.testimonial-author span { display: block; font-size: 0.78rem; color: var(--text-muted); }
.star-rating { color: #f59e0b; font-size: 0.82rem; }
.testimonial-carousel .owl-dots { margin-top: 28px; text-align: center; }
.testimonial-carousel .owl-dot span {
  background: var(--sky-mid) !important;
  border: 1px solid var(--sky-dark) !important;
  width: 10px !important; height: 10px !important;
  margin: 0 4px !important;
}
.testimonial-carousel .owl-dot.active span {
  background: var(--navy) !important;
  border-color: var(--navy) !important;
  width: 24px !important;
  border-radius: 5px !important;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  height: 100%;
  transition: all 0.3s;
  position: relative;
}
.pricing-card:hover { border-color: var(--sky-dark); box-shadow: 0 8px 32px rgba(13,27,42,0.1); transform: translateY(-4px); }
.pricing-featured {
  background: var(--navy);
  border-color: var(--navy);
}
.pricing-featured:hover { border-color: var(--navy-light); }
.pricing-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  background: var(--sky);
  border: 1px solid var(--sky-dark);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.featured-badge { background: var(--sky); color: var(--navy); }
.pricing-price {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--navy);
  margin-bottom: 24px;
}
.pricing-featured .pricing-price { color: var(--sky); }
.pricing-price span { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); }
.pricing-featured .pricing-price span { color: rgba(255,255,255,0.6); }
.pricing-features { list-style: none; padding: 0; margin-bottom: 28px; }
.pricing-features li {
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-featured .pricing-features li { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.1); }
.pricing-features li i.fa-check { color: #16a34a; }
.pricing-features li i.fa-times { color: #9ca3af; }
.pricing-featured .pricing-features li i.fa-check { color: var(--sky); }

/* ============================================================
   TEAM
   ============================================================ */
.team-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: all 0.3s;
}
.team-card:hover { border-color: var(--sky-dark); box-shadow: 0 6px 24px rgba(13,27,42,0.08); transform: translateY(-3px); }
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--accent));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
  border: 2px solid var(--sky-dark);
}
.team-card h5 { color: var(--navy); font-size: 1rem; margin-bottom: 4px; }
.team-card span { display: block; font-size: 0.78rem; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.team-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.65; margin: 0; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
}
.blog-card:hover { border-color: var(--sky-dark); box-shadow: 0 6px 24px rgba(13,27,42,0.1); transform: translateY(-3px); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-content { padding: 24px; }
.blog-cat {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.blog-content h5 { color: var(--navy); font-size: 1rem; margin-bottom: 10px; line-height: 1.4; }
.blog-content p { color: var(--text-muted); font-size: 0.87rem; line-height: 1.65; margin-bottom: 14px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item:has(.show) { border-color: var(--sky-dark); }
.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 18px 20px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--off-white); }
.faq-question i { font-size: 0.8rem; flex-shrink: 0; transition: transform 0.3s; color: var(--accent); }
.faq-question:not(.collapsed) i { transform: rotate(180deg); }
.faq-answer {
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  background: var(--white);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--accent) 100%);
  padding: 80px 0;
}
.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-title span { color: var(--sky); }
.cta-desc { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 36px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-info-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  height: 100%;
  border: 1px solid rgba(214,228,240,0.1);
}
.contact-info-box h4 { color: var(--sky); font-size: 1.2rem; }
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-icon {
  width: 40px; height: 40px;
  background: rgba(214,228,240,0.1);
  border: 1px solid rgba(214,228,240,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--sky);
  flex-shrink: 0;
  font-size: 0.9rem;
}
.contact-info-item strong { display: block; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.5); margin-bottom: 2px; }
.contact-info-item a, .contact-info-item span {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.contact-info-item a:hover { color: var(--sky); }
.witty-input {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9rem;
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
  color: var(--text-dark);
}
.witty-input:focus {
  border-color: var(--sky-dark);
  box-shadow: 0 0 0 3px rgba(214,228,240,0.35);
  outline: none;
}
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 40px; height: 40px;
  background: rgba(214,228,240,0.1);
  border: 1px solid rgba(214,228,240,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--sky);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.25s;
}
.social-link:hover { background: var(--sky); color: var(--navy); border-color: var(--sky); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-section { background: var(--navy); }
.footer-top { padding: 64px 0 40px; border-bottom: 1px solid rgba(214,228,240,0.1); }
.footer-bottom { padding: 20px 0; }
.footer-bottom p { color: rgba(255,255,255,0.45); font-size: 0.82rem; }
.footer-brand { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.footer-brand small { font-size: 0.75rem; font-family: var(--font-body); font-weight: 400; opacity: 0.7; }
.footer-desc { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.7; }
.footer-heading { color: var(--sky); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px; font-family: var(--font-body); }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--sky); }
.footer-contact-list { list-style: none; padding: 0; }
.footer-contact-list li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-contact-list li i { color: var(--sky); width: 16px; font-size: 0.9rem; }
.footer-contact-list a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-contact-list a:hover { color: var(--sky); }

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all 0.3s;
  animation: whatsapp-pulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  background: #1ebe5d;
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}
@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.65); }
}
.back-to-top {
  position: fixed;
  bottom: 92px; right: 28px;
  width: 44px; height: 44px;
  background: var(--navy);
  border: 1px solid rgba(214,228,240,0.2);
  border-radius: 50%;
  color: var(--sky);
  font-size: 0.9rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 998;
}
.back-to-top.show { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--navy-light); border-color: var(--sky); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .section-pad { padding: 64px 0; }
  .about-badge { right: 0; bottom: -16px; }
  #mainNavbar { background: var(--navy) !important; }
  #mainNavbar .brand-text { color: var(--white) !important; }
  #mainNavbar .nav-link { color: rgba(255,255,255,0.88) !important; }
  .navbar-collapse { background: #277fff; padding: 16px; border-radius: var(--radius); margin-top: 10px; }
}
@media (max-width: 767px) {
  .hero-title { font-size: 1.9rem; }
  .section-title { font-size: 1.75rem; }
  .stats-section { padding: 48px 0; }
  .cta-section { padding: 56px 0; }
  .contact-info-box { padding: 28px 20px; }
  .pricing-card { padding: 28px 22px; }
  .about-badge { display: none; }

}
@media (max-width: 480px) {
  .ticker-bar { display: none; }
  .hero-carousel .owl-nav { display: none; }
}






/* ============================================================
   SERVICE CARD — IMAGE (replaces icon)
   ============================================================ */

  .service-img-wrap img {
    width: 100% !important;
    height: 100%;
    object-fit: cover;       /* crop center, no stretch */
    transition: transform 0.4s ease;
    display: block;
  }
  .service-card:hover .service-img-wrap img {
    transform: scale(1.05);  /* subtle zoom on hover */
  }
  
  /* Fallback placeholder when no image */
  .service-img-placeholder {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    background: var(--sky);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 18px;
    border: 1px solid var(--sky-dark);
  }
  