/* 
 * technosubrat.in - Premium Light Theme Stylesheet
 * Brand: Subrat Patnaik (SEO Expert Personal Brand)
 * Author: Antigravity AI
 */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  /* Colors */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F0F4F8;
  --bg-card: #FFFFFF;
  --border-color: #E2E8F0;
  --border-hover: rgba(0, 82, 204, 0.25);
  
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #64748B;
  
  --color-brand: #0052CC;       /* Digital Trust Blue */
  --color-brand-glow: rgba(0, 82, 204, 0.15);
  --color-growth: #10B981;      /* Organic SEO Growth Green */
  --color-growth-glow: rgba(16, 185, 129, 0.15);
  --color-accent: #0D6EFD;      /* Accent Blue */
  
  --gradient-brand: linear-gradient(135deg, #0052CC 0%, #0D6EFD 100%);
  --gradient-growth: linear-gradient(135deg, #10B981 0%, #059669 100%);
  --gradient-dark: linear-gradient(135deg, #0A192F 0%, #0B162F 100%);

  /* Typography */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Layout Constants */
  --max-width: 1200px;
  --header-height: 80px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  --shadow-premium: 0 10px 30px rgba(0, 82, 204, 0.07), 0 2px 8px rgba(0, 0, 0, 0.02);
  --shadow-hover: 0 20px 40px rgba(0, 82, 204, 0.16), 0 4px 12px rgba(0, 0, 0, 0.04);
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 6px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

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

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

input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

ul {
  list-style: none;
}

/* Base Layout Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section-padding {
  padding: 100px 0;
}

.section-padding.alt-bg {
  background-color: var(--bg-secondary);
}

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

/* Section Titles styling */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-headings);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-brand);
  background: rgba(0, 82, 204, 0.05);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid rgba(0, 82, 204, 0.1);
}

.section-title {
  font-size: 38px;
  margin-bottom: 16px;
  font-weight: 800;
  color: var(--text-primary);
}

.section-title span {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 30px;
  }
  .section-desc {
    font-size: 15px;
  }
}

/* Premium Card Realization for Light Theme */
.glass-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 1px solid rgba(0, 82, 204, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: var(--color-brand);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

/* Custom Buttons styling */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 15px;
}

.btn-primary {
  background: var(--gradient-brand);
  color: #FFFFFF;
  box-shadow: 0 10px 20px rgba(0, 82, 204, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 82, 204, 0.25);
}

.btn-secondary {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: var(--bg-secondary);
  border-color: var(--text-secondary);
  transform: translateY(-2px);
}

.btn-growth {
  background: var(--gradient-growth);
  color: #FFFFFF;
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.15);
}

.btn-growth:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.25);
}

/* ==========================================================================
   1. Header / Navigation
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: var(--transition-smooth);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  height: 70px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-family: var(--font-headings);
  font-size: 24px;
  font-weight: 800;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition-fast);
}

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

.header.scrolled .logo {
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: #E2E8F0;
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: #FFFFFF;
}

.header.scrolled .nav-link {
  color: var(--text-secondary);
}

.header.scrolled .nav-link:hover {
  color: var(--color-brand);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #FFFFFF;
  transition: var(--transition-fast);
}

.header.scrolled .menu-toggle span {
  background: var(--text-primary);
}

@media (max-width: 991px) {
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .header-cta {
    display: none !important;
  }
}

/* Mobile Nav Styles */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #FFFFFF;
  border-left: 1px solid var(--border-color);
  z-index: 1001;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-link {
  font-size: 18px;
  font-weight: 600;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 999;
  display: none;
}

.mobile-nav-overlay.active {
  display: block;
}

/* ==========================================================================
   2. Hero Section
   ========================================================================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 70px;
  background: var(--gradient-dark);
  color: #FFFFFF;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-card-dark {
  background: transparent !important;
  border-radius: 0;
  padding: 0;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: none !important;
  position: relative;
  overflow: hidden;
}

.hero-card-dark::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 82, 204, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-card-dark h2 {
  font-size: 22px;
  font-weight: 600;
  color: #93C5FD;
}

.hero-card-dark h2 span {
  color: #60A5FA;
}

.hero-card-dark h1 {
  font-size: 40px;
  line-height: 1.25;
  font-weight: 800;
  color: #FFFFFF;
}

.hero-card-dark ul.bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.hero-card-dark ul.bullets li {
  font-size: 16px;
  color: #CBD5E1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-card-dark ul.bullets li::before {
  content: "✓";
  color: #60A5FA;
  font-weight: 800;
  font-size: 18px;
}

.hero-card-dark .hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 380px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  background-color: rgba(255, 255, 255, 0.03);
}

.hero-image-card img {
  border-radius: var(--radius-lg);
  object-fit: cover;
  width: 100%;
  aspect-ratio: 4/5;
  transition: var(--transition-smooth);
}

.hero-image-card:hover img {
  transform: scale(1.03);
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-image-wrapper {
    order: -1;
  }
  .hero-card-dark {
    padding: 36px;
  }
  .hero-card-dark h1 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .hero-card-dark .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  .hero-card-dark .btn {
    width: 100%;
  }
}

/* ==========================================================================
   3. Client Logos (Infinite Slider Carousel)
   ========================================================================== */
.client-logos {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 40px 0;
  background: #FFFFFF;
}

.logos-title {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.logos-slider-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 10px 0;
}

/* Gradient shadows on sides for premium look */
.logos-slider-container::before,
.logos-slider-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logos-slider-container::before {
  left: 0;
  background: linear-gradient(to right, #FFFFFF 0%, transparent 100%);
}

.logos-slider-container::after {
  right: 0;
  background: linear-gradient(to left, #FFFFFF 0%, transparent 100%);
}

.logos-slide-track {
  display: flex;
  gap: 80px;
  align-items: center;
  width: max-content;
  animation: logoScroll 20s linear infinite;
}

.logo-item {
  width: 160px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.45;
  transition: var(--transition-fast);
  color: var(--text-primary);
}

.logo-item:hover {
  opacity: 0.85;
  transform: scale(1.05);
}

.logo-item svg {
  height: 28px;
  fill: currentColor;
}

@keyframes logoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Since we have 4 logos, scroll by 4 logo items (160px width + 80px gap each = 240px * 4 = 960px) */
    transform: translateX(-960px);
  }
}

/* ==========================================================================
   4. Results / Achievements
   ========================================================================== */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  padding: 40px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 4px solid transparent;
}

.stat-card:hover {
  border-bottom-color: var(--color-brand);
}

.stat-card:nth-child(even):hover {
  border-bottom-color: var(--color-growth);
}

.stat-number {
  font-size: 46px;
  font-weight: 800;
  font-family: var(--font-headings);
  line-height: 1;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card:nth-child(even) .stat-number {
  background: var(--gradient-growth);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 600;
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 82, 204, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  color: var(--color-brand);
  transition: var(--transition-smooth);
}

.stat-card:nth-child(even) .stat-icon {
  background: rgba(16, 185, 129, 0.05);
  color: var(--color-growth);
}

.stat-card:hover .stat-icon {
  transform: scale(1.1);
  background: var(--color-brand);
  color: #FFFFFF;
}

.stat-card:nth-child(even):hover .stat-icon {
  background: var(--color-growth);
  color: #FFFFFF;
}

@media (max-width: 991px) {
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ==========================================================================
   5. Services Section
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: rgba(0, 82, 204, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
  background: var(--color-brand);
  color: #FFFFFF;
  transform: rotateY(180deg);
}

.service-title {
  font-size: 22px;
  font-weight: 700;
}

.service-desc {
  color: var(--text-secondary);
  font-size: 15px;
  flex-grow: 1;
  line-height: 1.6;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-brand);
  font-weight: 700;
  font-size: 15px;
  margin-top: 8px;
}

.service-link svg {
  transition: transform 0.2s ease;
}

.service-link:hover svg {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   6. About Me Section
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

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

.about-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(0, 82, 204, 0.04);
}

.about-card img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.about-tag-overlay {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 3;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 25px rgba(0, 82, 204, 0.06);
}

.about-tag-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-brand);
  line-height: 1;
}

.about-tag-text {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 700;
  text-transform: uppercase;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-intro {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-point {
  display: flex;
  gap: 16px;
}

.about-point-icon {
  margin-top: 4px;
  color: var(--color-brand);
  flex-shrink: 0;
}

.about-point-title {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 4px;
}

.about-point-desc {
  color: var(--text-secondary);
  font-size: 14.5px;
}

.about-signature {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.signature-img {
  max-width: 140px;
  opacity: 0.85;
}

.signature-meta {
  border-left: 1px solid var(--border-color);
  padding-left: 20px;
}

.signature-name {
  font-weight: 700;
  font-size: 18px;
}

.signature-title {
  font-size: 14px;
  color: var(--text-muted);
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ==========================================================================
   7. Why Choose Me Section
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  padding: 36px 24px;
  display: flex;
  gap: 20px;
}

.why-icon {
  color: var(--color-growth);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 4px;
}

.why-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.why-title {
  font-size: 18px;
  font-weight: 700;
}

.why-desc {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   8. SEO Process Section (Horizontal Timeline Row)
   ========================================================================== */
.process-timeline-row {
  display: flex;
  position: relative;
  justify-content: space-between;
  gap: 20px;
  margin-top: 45px;
  padding-bottom: 20px;
}

/* Horizontal connector line */
.process-timeline-row::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(to right, var(--color-brand) 0%, var(--color-accent) 50%, var(--border-color) 100%);
  z-index: 1;
}

.process-row-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  text-align: center;
}

.process-row-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-headings);
  font-size: 16px;
  color: var(--color-brand);
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.process-row-step:hover .process-row-number {
  border-color: var(--color-brand);
  background: var(--gradient-brand);
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(0, 82, 204, 0.3);
  transform: scale(1.1);
}

.process-row-card {
  width: 100%;
  padding: 20px 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.process-row-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.process-row-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .process-timeline-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px 20px;
  }
  .process-timeline-row::before {
    display: none;
  }
  .process-row-step {
    flex: 0 0 calc(33.33% - 20px);
    min-width: 220px;
  }
}

@media (max-width: 768px) {
  .process-row-step {
    flex: 0 0 calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .process-row-step {
    flex: 0 0 100%;
  }
}

/* ==========================================================================
   9. Case Studies Section
   ========================================================================== */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.case-card {
  overflow: hidden;
  height: 100%;
}

.case-image {
  position: relative;
  aspect-ratio: 16/9;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-brand);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.case-content {
  padding: 32px;
}

.case-title {
  font-size: 22px;
  margin-bottom: 12px;
}

.case-desc {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 20px;
}

.case-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

.case-metric {
  text-align: center;
}

.case-metric-label {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.case-metric-value {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-headings);
  color: var(--text-primary);
}

.case-metric-growth {
  font-size: 12px;
  color: #10B981;
  font-weight: 700;
}

@media (max-width: 991px) {
  .cases-grid {
    grid-template-columns: 1fr;
  }
}

.chart-box {
  width: 100%;
  height: 100%;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.chart-svg {
  width: 100%;
  height: 100%;
}

.chart-path {
  fill: none;
  stroke: var(--color-brand);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawChart 2.5s ease forwards;
}

.case-card:nth-child(2) .chart-path {
  stroke: #10B981;
}

@keyframes drawChart {
  to {
    stroke-dashoffset: 0;
  }
}

/* ==========================================================================
   10. Testimonials Section
   ========================================================================== */
.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  padding: 50px;
  text-align: center;
}

.quote-icon {
  color: var(--border-color);
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.testimonial-quote {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-client {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.client-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-brand);
}

.client-name {
  font-size: 18px;
  font-weight: 700;
}

.client-role {
  font-size: 13px;
  color: var(--text-muted);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.slider-btn:hover {
  border-color: var(--color-brand);
  background: var(--color-brand);
  color: #FFFFFF;
}

/* ==========================================================================
   Featured In Section (Media Mentions)
   ========================================================================== */
.featured-in {
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
  background: var(--bg-secondary);
}

.featured-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.featured-item {
  height: 30px;
  opacity: 0.4;
  transition: var(--transition-fast);
  color: var(--text-primary);
}

.featured-item:hover {
  opacity: 0.8;
}

.featured-item svg {
  height: 100%;
}

/* ==========================================================================
   SEO ROI Calculator Widget
   ========================================================================== */
.calculator-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.calc-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calc-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.calc-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-brand);
  background: rgba(0, 82, 204, 0.05);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
}

.calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 100px;
  background: var(--border-color);
  outline: none;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-brand);
  cursor: pointer;
  transition: var(--transition-fast);
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-results {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calc-results-title {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

.calc-output-num {
  font-size: 40px;
  font-weight: 800;
  color: #10B981;
  font-family: var(--font-headings);
}

.calc-output-subtitle {
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .calculator-wrapper {
    padding: 24px;
  }
}

/* ==========================================================================
   11. Free SEO Audit Form
   ========================================================================== */
.audit-box {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 60px;
  align-items: center;
}

.audit-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.audit-bullets {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.audit-bullet {
  display: flex;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}

.audit-bullet svg {
  color: #10B981;
  flex-shrink: 0;
}

.audit-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
  width: 100%;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 15px;
  transition: var(--transition-fast);
}

.form-input:focus {
  border-color: var(--color-brand);
  box-shadow: 0 0 10px rgba(0, 82, 204, 0.08);
}

@media (max-width: 991px) {
  .audit-box {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }
}

/* ==========================================================================
   12. Latest Blogs Section
   ========================================================================== */
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-meta {
  font-size: 13px;
  color: var(--text-muted);
}

.blog-title {
  font-size: 18px;
  line-height: 1.4;
}

.blog-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-brand);
  font-weight: 700;
  font-size: 14px;
}

@media (max-width: 991px) {
  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blogs-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   13. FAQ Section
   ========================================================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-question {
  width: 100%;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
}

.faq-icon-box {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.faq-item.active .faq-icon-box {
  background: var(--color-brand);
  transform: rotate(45deg);
}

.faq-item.active .faq-icon-box svg {
  color: #FFFFFF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 24px;
}

/* ==========================================================================
   14. Contact Section
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 82, 204, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand);
  flex-shrink: 0;
}

.contact-detail-content {
  display: flex;
  flex-direction: column;
}

.contact-detail-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.contact-detail-value {
  font-size: 16px;
  font-weight: 600;
}

.contact-form {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ==========================================================================
   15. Footer
   ========================================================================== */
.footer {
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px 0;
  background: var(--bg-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-desc {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--color-brand);
  color: #FFFFFF;
  border-color: var(--color-brand);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-col-title {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

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

.footer-link {
  font-size: 14px;
  color: var(--text-secondary);
}

.footer-link:hover {
  color: var(--color-brand);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ==========================================================================
   Sticky Overlays
   ========================================================================== */
.sticky-actions-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 998;
}

.sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.sticky-whatsapp {
  width: 52px;
  height: 52px;
  background: #25D366;
  color: #FFFFFF;
}

.sticky-whatsapp:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

.sticky-audit {
  background: var(--color-brand);
  color: #FFFFFF;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.sticky-audit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 82, 204, 0.35);
}

@media (max-width: 576px) {
  .sticky-actions-container {
    bottom: 16px;
    right: 16px;
    left: 16px;
    flex-direction: row;
    justify-content: space-between;
  }
  .sticky-audit {
    flex-grow: 1;
    justify-content: center;
  }
}

/* ==========================================================================
   Exit-Intent Popup Modal
   ========================================================================== */
.exit-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.exit-modal.active {
  display: flex;
  opacity: 1;
}

.exit-modal-content {
  max-width: 520px;
  width: 90%;
  padding: 44px;
  text-align: center;
  position: relative;
}

.exit-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.exit-modal-close:hover {
  background: var(--border-color);
  color: var(--text-primary);
}

.exit-modal-gift {
  width: 70px;
  height: 70px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10B981;
  margin: 0 auto 20px auto;
}

.exit-modal-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
}

.exit-modal-desc {
  color: var(--text-secondary);
  font-size: 14.5px;
  margin-bottom: 28px;
}

.exit-modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* About me Watch video btn styling */
.play-video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-brand);
  color: #FFFFFF;
  border-radius: 100px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 82, 204, 0.25);
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 3;
}

.play-video-btn:hover {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 82, 204, 0.35);
}

/* Rating Stars styling */
.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 14px;
  color: #FBBF24;
}

/* Custom checkmarks inside why choose me list */
.why-icon {
  fill: none;
}
