/* Universal Printing Press - Consolidated Styles */

/* ═══════════════════════════════════════════════════════════════════════════
   🎨 COLOR MANAGEMENT SYSTEM - CHANGE YOUR ACCENT COLOR HERE!
   ═══════════════════════════════════════════════════════════════════════════
   
   ✨ TO CHANGE THE ENTIRE WEBSITE ACCENT COLOR (LIGHT & DARK MODE):
   Simply change the --accent-color value below (line 41) to any color you want!
   The color will automatically apply to BOTH light and dark themes!
   
   🌈 COLOR EXAMPLES (Copy & Paste):
   ┌────────────────────────────────────────────────────────────────┐
   │ Orange:             #ff9900  (Vibrant, energetic, creative)   │
   │ Blue (Current):     #3b9bf5  (Professional, trustworthy)      │
   │ Purple:             #9333ea  (Luxury, creative, modern)        │
   │ Red:                #ef4444  (Bold, urgent, exciting)          │
   │ Green:              #10b981  (Growth, eco-friendly)            │
   │ Pink:               #ec4899  (Playful, feminine, modern)       │
   │ Teal:               #14b8a6  (Fresh, calm, tech)               │
   │ Indigo:             #6366f1  (Creative, modern, tech)          │
   │ Cyan:               #06b6d4  (Tech, modern, fresh)             │
   │ Amber:              #f59e0b  (Warm, inviting, friendly)        │
   └────────────────────────────────────────────────────────────────┘
   
   🚀 ONE COLOR CHANGE = UPDATES EVERYWHERE (Light & Dark Mode):
   • All button colors and hover effects
   • Section titles and headings
   • Social media icon accents
   • Hero slider dots
   • Form focus states
   • Stat card accents
   • Footer top line
   • Link hover colors
   • Theme toggle animation
   • And ALL accent elements across the site!
   
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  /* 🎨 PRIMARY ACCENT COLOR - EDIT THIS LINE TO CHANGE ENTIRE SITE COLOR! */
  --accent-color: #51aaf8;  /* 👈 CHANGE THIS HEX CODE TO YOUR DESIRED COLOR */
  
  /* Base Color Palette */
  --primary-color: #003366;
  --secondary-color: #3c6382;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --gray-color: #6c757d;
  --white: #ffffff;
  --success-color: #28a745;
  
  /* Shadows & Effects */
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Transitions & Borders */
  --transition: all 0.3s ease;
  --border-radius: 8px;
  
  /* Gradients (automatically use accent color) */
  --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color) 100%);
}

/* Dark Theme Variables */
[data-theme="dark"] {
  --primary-color: #4a90e2;
  --secondary-color: #5a7ba8;
  /* Accent color automatically inherits from :root - no need to change it here! */
  --light-color: #1a1a1a;
  --dark-color: #ffffff;
  --gray-color: #b0b0b0;
  --white: #2d2d2d;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}




/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* Smooth theme transitions for key elements */
body,
header,
.card,
.service-card,
.portfolio-card,
.btn,
footer,
section {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* ALL Headings use Orange Accent Color */
h1, h2, h3, h4, h5, h6 {
  color: var(--accent-color);
  font-weight: 700;
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
  color: var(--accent-color);
}

/* Exception for white headings in special sections */
.cta h2,
.service-cta h2,
.portfolio-overlay h3,
.hero h1,
.page-banner h1 {
  color: white !important;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* Buttons - ALL USE ORANGE ACCENT COLOR WITH GRADIENT */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #e68900 100%);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  background: linear-gradient(135deg, #e68900 0%, #cc7a00 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 153, 0, 0.5);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-color) 0%, #e68900 100%);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #e68900 0%, #cc7a00 100%);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-color) 0%, #e68900 100%);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--accent-color) 0%, #e68900 100%);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--white);
  color: var(--primary-color);
  backdrop-filter: blur(10px);
  font-weight: 600;
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Dark Mode Button Outline */
[data-theme="dark"] .btn-outline {
  background: rgba(255, 153, 0, 0.15);
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  backdrop-filter: blur(10px);
}

[data-theme="dark"] .btn-outline:hover {
  background: var(--accent-color);
  color: #1a1a1a;
  border-color: var(--accent-color);
  box-shadow: 0 8px 25px rgba(255, 153, 0, 0.4);
}

/* Dark theme - ensure all buttons maintain orange gradient */
[data-theme="dark"] .btn,
[data-theme="dark"] .btn-primary,
[data-theme="dark"] .btn-accent,
[data-theme="dark"] .btn-secondary {
  background: linear-gradient(135deg, var(--accent-color) 0%, #e68900 100%);
}

[data-theme="dark"] .btn:hover,
[data-theme="dark"] .btn-primary:hover,
[data-theme="dark"] .btn-accent:hover,
[data-theme="dark"] .btn-secondary:hover {
  background: linear-gradient(135deg, #ffa726 0%, #ff9900 100%);
}

/* Modern Header Styles */
header {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
  padding: 0;
}

[data-theme="dark"] header {
  background: linear-gradient(
    180deg,
    rgba(17, 24, 39, 0.98) 0%,
    rgba(31, 41, 55, 0.95) 100%
  );
  border-bottom: 1px solid rgba(255, 167, 38, 0.15);
  box-shadow: 
    0 4px 30px rgba(0, 0, 0, 0.6),
    0 0 50px rgba(255, 167, 38, 0.05);
  backdrop-filter: blur(20px) saturate(150%);
}

[data-theme="dark"] header.scrolled {
  background: rgba(17, 24, 39, 0.97);
  box-shadow: 
    0 8px 40px rgba(0, 0, 0, 0.7),
    0 0 60px rgba(255, 167, 38, 0.08);
  border-bottom: 1px solid rgba(255, 167, 38, 0.2);
  backdrop-filter: blur(25px) saturate(180%);
}

[data-theme="dark"] .nav-links li a,
[data-theme="dark"] .nav-link {
  color: #f5f5f5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  background: transparent;
}

[data-theme="dark"] .nav-links li a:hover,
[data-theme="dark"] .nav-link:hover {
  color: #ffb84d;
  background: rgba(255, 167, 38, 0.1);
  box-shadow: 0 2px 10px rgba(255, 167, 38, 0.15);
  border: 1px solid transparent;
}

[data-theme="dark"] .nav-links li a.active {
  color: #1a1a1a;
  background: linear-gradient(
    135deg,
    #ffb84d 0%,
    #ff9500 50%,
    #ff8c00 100%
  );
  box-shadow: 
    0 4px 20px rgba(255, 167, 38, 0.5),
    0 0 30px rgba(255, 167, 38, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 200, 100, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .nav-links li a.active:hover {
  background: linear-gradient(
    135deg,
    #ffc266 0%,
    #ffb84d 50%,
    #ff9500 100%
  );
  box-shadow: 
    0 6px 25px rgba(255, 167, 38, 0.6),
    0 0 40px rgba(255, 167, 38, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

[data-theme="dark"] .nav-links li a::before {
  background: linear-gradient(
    90deg,
    #ffb84d 0%,
    #ff9500 100%
  );
  box-shadow: 0 0 10px rgba(255, 167, 38, 0.5);
}

[data-theme="dark"] .logo img {
  background: white;
  border-color: rgba(255, 167, 38, 0.3);
  box-shadow: 
    0 4px 20px rgba(255, 167, 38, 0.3),
    0 0 20px rgba(255, 167, 38, 0.15);
  padding: 3px;
}

[data-theme="dark"] .logo:hover img {
  border-color: rgba(255, 167, 38, 0.6);
  box-shadow: 
    0 6px 25px rgba(255, 167, 38, 0.5),
    0 0 30px rgba(255, 167, 38, 0.25);
}

[data-theme="dark"] .logo-text {
  background: linear-gradient(
    135deg,
    #60a5fa 0%,
    #93c5fd 30%,
    #ffb84d 70%,
    #ff9500 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(255, 167, 38, 0.3));
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled .navbar {
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.logo:hover {
  transform: translateX(3px);
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 51, 102, 0.2);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  background: white;
  padding: 2px;
}

.logo:hover img {
  border-color: var(--accent-color);
  box-shadow: 0 6px 20px rgba(255, 153, 0, 0.3);
  transform: scale(1.05);
}

header.scrolled .logo img {
  width: 45px;
  height: 45px;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color) 0%, #004080 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
  display: none;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 8px;
  background: transparent !important;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-item {
  margin-left: 1.5rem;
}

.nav-link {
  font-weight: 600;
}

.nav-links li a,
.nav-link {
  color: var(--dark-color);
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 10px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  background: transparent;
}

.nav-links li a:hover,
.nav-link:hover {
  color: var(--accent-color);
  background: linear-gradient(135deg, rgba(255, 153, 0, 0.08), rgba(255, 153, 0, 0.12));
  transform: translateY(-2px);
}

.nav-links li a.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--accent-color) 0%, #e68900 100%);
  box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
}

.nav-links li a.active:hover {
  background: linear-gradient(135deg, #e68900 0%, var(--accent-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 153, 0, 0.4);
}

.nav-links li a::before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
  border-radius: 2px;
  transition: all 0.3s ease;
  transform: translateX(-50%);
  opacity: 0;
}

.nav-links li a:hover::before {
  width: 70%;
  opacity: 1;
}

.nav-links li a.active::before {
  display: none;
}

#navbar {
  transition: transform 0.3s ease-in-out;
}

.nav-hidden {
  transform: translateY(-100%);
}

.btn-nav {
  background: linear-gradient(135deg, var(--accent-color) 0%, #e68900 100%) !important;
  color: white !important;
  box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
  font-weight: 700;
  padding: 11px 24px !important;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.btn-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e68900 0%, var(--accent-color) 100%);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-nav:hover::before {
  left: 0;
}

.btn-nav:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(255, 153, 0, 0.45) !important;
}

[data-theme="dark"] .btn-nav {
  background: linear-gradient(
    135deg,
    #ffb84d 0%,
    #ff9500 50%,
    #ff8c00 100%
  ) !important;
  box-shadow: 
    0 4px 20px rgba(255, 167, 38, 0.4),
    0 0 30px rgba(255, 167, 38, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  color: #1a1a1a !important;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 200, 100, 0.3);
}

[data-theme="dark"] .btn-nav::before {
  background: linear-gradient(
    135deg,
    #ffc266 0%,
    #ffb84d 50%,
    #ff9500 100%
  );
}

[data-theme="dark"] .btn-nav:hover {
  box-shadow: 
    0 8px 30px rgba(255, 167, 38, 0.6),
    0 0 50px rgba(255, 167, 38, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-3px) !important;
}


@media (max-width: 768px) {
  .nav-links,
  .nav-menu {
    height: auto;
    max-height: 100vh;
    overflow-y: auto;
    /* ...existing code... */
  }
}


/* Navigation Right Section */
.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Theme Toggle Button with Beautiful Animation */
.theme-toggle {
  position: relative;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.theme-toggle:hover {
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.theme-toggle i {
  position: absolute;
  font-size: 1.3rem;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1;
}

.sun-icon {
  color: #ff6b00;
  transform: rotate(0deg) scale(1);
  opacity: 1;
}

.moon-icon {
  color: #f0f0f0;
  transform: rotate(180deg) scale(0);
  opacity: 0;
}

/* Dark Theme Toggle State */
[data-theme="dark"] .theme-toggle {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4), 0 0 20px rgba(74, 144, 226, 0.1);
}

[data-theme="dark"] .theme-toggle::before {
  opacity: 1;
}

[data-theme="dark"] .theme-toggle:hover {
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.6), 0 0 30px rgba(74, 144, 226, 0.2);
  transform: scale(1.1) rotate(-15deg);
}

[data-theme="dark"] .sun-icon {
  transform: rotate(-180deg) scale(0);
  opacity: 0;
}

[data-theme="dark"] .moon-icon {
  transform: rotate(0deg) scale(1);
  opacity: 1;
}

/* Pulse Animation on Click */
.theme-toggle.toggling {
  animation: pulse 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes pulse {
  0% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(0.9) rotate(-15deg);
  }
  50% {
    transform: scale(1.15) rotate(180deg);
  }
  75% {
    transform: scale(0.95) rotate(345deg);
  }
  100% {
    transform: scale(1) rotate(360deg);
  }
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: transparent;
}

.hamburger:hover {
  background: rgba(255, 153, 0, 0.1);
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 3px 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 2px;
}

[data-theme="dark"] .hamburger span {
  background-color: #e8e8e8;
}

[data-theme="dark"] .hamburger:hover {
  background: rgba(255, 167, 38, 0.15);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
  background-color: var(--accent-color);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
  background-color: var(--accent-color);
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--primary-color);
  transition: var(--transition);
}

[data-theme="dark"] .bar {
  background-color: #e8e8e8;
}

/* Hero Section Styles */
/* ═══════════════════════════════════════════════════════════
   HERO SECTION WITH SLIDING BACKGROUND IMAGES
   ═══════════════════════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: visible; /* Changed from hidden - allows dancing mouse to show */
}

/* Hero Slider Container */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Individual Hero Slides */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 5s ease-out;
  transform: scale(1);
}

/* Active Slide - WITH ZOOM-IN effect */
.hero-slide.active {
  opacity: 1;
  transform: scale(1.08);
  z-index: 2;
}

/* Mobile: Beautiful full-screen images with zoom */
@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
  }
  
  .hero-slide {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: opacity 1.5s ease-in-out, transform 5s ease-out;
  }
  
  .hero-slide.active {
    transform: scale(1.06);
  }
}

/* Dark Overlay for Text Readability - Lighter to show images better */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 51, 102, 0.5) 50%,
    rgba(20, 25, 38, 0.55) 100%
  );
  z-index: 3;
}

/* Dark Theme Overlay - Lighter */
[data-theme="dark"] .hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(17, 24, 39, 0.55) 50%,
    rgba(10, 15, 28, 0.6) 100%
  );
}

/* Slider Navigation Dots */
.hero-slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.hero-slider-dots .dot:hover {
  background: rgba(255, 153, 0, 0.8);
  border-color: rgba(255, 153, 0, 1);
  transform: scale(1.2);
}

.hero-slider-dots .dot.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  width: 35px;
  border-radius: 6px;
}

/* Hero Content - Above Everything */
.hero .container {
  position: relative;
  z-index: 10;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out;
  text-shadow: 
    2px 2px 10px rgba(0, 0, 0, 1),
    0 0 20px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(0, 51, 102, 0.5);
  font-weight: 700;
  color: #ffffff !important;
}

.hero p {
  color: #ffffff !important;
  text-shadow: 
    1px 1px 6px rgba(0, 0, 0, 1),
    0 0 15px rgba(0, 0, 0, 0.8);
  font-weight: 500;
}

.hero .btn {
  position: relative;
  z-index: 11;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* Rotating Slogan Styles */
.rotating-slogan {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.slogan-text {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--accent-color);
  position: absolute;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-in-out;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
}

.slogan-text.active {
  opacity: 1;
  transform: translateY(0);
}

.hero .slogan-text {
  color: var(--accent-color) !important;
  text-shadow: 
    2px 2px 8px rgba(0, 0, 0, 1),
    0 0 20px rgba(0, 0, 0, 0.9),
    0 0 30px rgba(255, 153, 0, 0.3);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.3s both;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  line-height: 1.6;
}

.hero .btn {
  animation: fadeInUp 1s ease-out 0.6s both;
  padding: 15px 40px;
  font-size: 1.1rem;
  margin: 0 10px;
}

/* Computer Mouse Animation */
.comp-mouse-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  opacity: 1; /* Changed from 0 - now visible immediately */
  animation: fadeIn 0.5s ease forwards 1.2s;
}

.comp-mouse {
  position: relative;
  width: 30px;
  height: 50px;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.comp-mouse:hover {
  transform: translateY(-5px);
}

.comp-mouse-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  border-bottom: 2px solid #ccc;
}

.comp-mouse-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
}

.scroll-wheel {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background-color: #000000;
  border-radius: 50%;
}

.usb-wire {
  position: absolute;
  top: -3px;
  left: 50%;
  width: 2px;
  height: 15px;
  background: linear-gradient(to bottom, transparent, #555);
  transform-origin: top center;
  z-index: -1;
}

.light {
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background-color: #ff3333;
  border-radius: 50%;
  box-shadow: 0 0 3px #ff3333;
}

.click-me {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: #000000;
  opacity: 0;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.comp-mouse:hover .click-me {
  opacity: 1;
}

.dancing .comp-mouse {
  animation: bounce 0.6s infinite alternate;
}

.dancing .usb-wire {
  animation: swing 1s infinite alternate;
}

.dancing .light {
  animation: blink 0.5s infinite alternate;
}

.dancing .scroll-wheel {
  animation: scroll 0.8s infinite;
}

/* Page Banner Styles */
.page-banner {
  background: linear-gradient(rgba(17, 24, 39, 0.7), rgba(30, 58, 138, 0.8)), url("img/u3.1.jpg") center / cover
    no-repeat fixed;
  color: white;
  padding: 10rem 0 5rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(30, 58, 138, 0) 70%);
}

.page-banner::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: #f9fafb;
  clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
}

[data-theme="dark"] .page-banner::after {
  background: var(--light-color);
}

.page-banner h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: fadeInDown 1s ease-out;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  position: relative;
}

.page-banner h1::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 4px;
  background: var(--gradient-accent);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.page-banner p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 1.5rem auto 0;
  animation: fadeInUp 1s ease-out;
}

.breadcrumbs {
  margin: 1rem 0 3rem;
  animation: fadeIn 1.5s ease-out;
}

.breadcrumbs a {
  color: var(--light-color);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs span {
  margin: 0 10px;
}

/* Portfolio Hero Section */
.portfolio-hero {
  padding: 180px 0 100px;
  background: linear-gradient(rgba(17, 24, 39, 0.7), rgba(30, 58, 138, 0.8)), url("img/of.jpg") center / cover no-repeat;
  color: white;
  text-align: center;
}

.portfolio-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
}

.portfolio-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s 0.2s forwards;
}

/* Section Styles */
.section-padding {
  padding: 80px 0;
}

.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  text-align: center;
  color: var(--accent-color);
  font-weight: 700;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), #e68900);
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--gray-color);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Card Styles */
.card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(229, 231, 235, 0.5);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-hover);
}

.service-img,
.service-image img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-img,
.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  margin-bottom: 10px;
  color: var(--accent-color);
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 0.5rem;
  font-weight: 700;
}

[data-theme="dark"] .service-content h3 {
  color: var(--accent-color);
}

.service-content h3::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: 0;
  left: 0;
  border-radius: 2px;
}

.service-content p {
  color: var(--gray-color);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.7;
}

.service-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.service-features {
  list-style: none;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}

.service-features li {
  margin-bottom: 0.7rem;
  position: relative;
  padding-left: 1.8rem;
  color: #4b5563;
}

.service-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--accent-color);
  position: absolute;
  left: 0;
  top: 2px;
}

/* Services Intro */
.services-intro {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeIn 1s ease-out;
  position: relative;
}

.services-intro h2 {
  font-size: 2.5rem;
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

[data-theme="dark"] .services-intro h2 {
  color: var(--accent-color);
}

.services-intro h2::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 4px;
  background: var(--gradient-accent);
  bottom: -10px;
  left: 15%;
  border-radius: 2px;
}

.services-intro p {
  max-width: 800px;
  margin: 0 auto;
  color: var(--dark-color);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Service CTA */
.service-cta {
  background: linear-gradient(rgba(95, 95, 95, 0.9), rgba(30, 58, 138, 0.8)), url("img/of.jpg") center / cover no-repeat
    fixed;
  padding: 5rem 0;
  text-align: center;
  margin-bottom: 5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.8);
}

.service-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.05) 0%,
    rgba(59, 130, 246, 0.05) 50%,
    rgba(245, 158, 11, 0.05) 100%
  );
}

.service-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
  position: relative;
  font-weight: 700;
}

.service-cta h2::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(--gradient-accent);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.service-cta p {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ffffff;
}

.btn-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Portfolio Styles */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.portfolio-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  height: 250px;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 51, 102, 0.9), rgba(255, 153, 0, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h3 {
  color: var(--white);
  font-size: 1.5rem;
  text-align: center;
  font-weight: 700;
}

/* Portfolio Categories */
.portfolio-categories {
  padding: 80px 0;
  text-align: center;
}

.category-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.category-btn {
  padding: 8px 20px;
  margin: 5px;
  background-color: var(--light-color);
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
}

.category-btn:hover,
.category-btn.active {
  background-color: var(--primary-color);
  color: white;
}

/* Portfolio Gallery */
.portfolio-gallery {
  padding: 0 0 80px;
  position: relative;
  overflow: hidden;
}

.swiper-container {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 300px;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  transform: scale(0.85);
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.swiper-slide-active {
  transform: scale(1);
}

.gallery-item {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 61, 98, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
  padding: 20px;
  text-align: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

.gallery-overlay h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.gallery-overlay p {
  color: white;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.gallery-overlay .btn {
  padding: 8px 20px;
  background-color: var(--accent-color);
  color: var(--dark-color);
  border-radius: 30px;
  font-weight: 500;
  transition: var(--transition);
}

.gallery-overlay .btn:hover {
  background-color: white;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color);
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

/* Featured Projects */
.featured-projects {
  padding: 80px 0;
  background-color: #eef2f7;
}

[data-theme="dark"] .featured-projects {
  background-color: #1a1a1a;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.project-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.project-card.reveal {
  opacity: 1;
  transform: translateY(0);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.project-img {
  height: 200px;
  width: 100%;
  overflow: hidden;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.project-card:hover .project-img img {
  transform: scale(1.1);
}

.project-content {
  padding: 20px;
}

.project-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.project-content p {
  color: #777;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.project-details {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #999;
}

/* ═══════════════════════════════════════════════════════════
   ORDER PAGE - HOW IT WORKS PROCESS SECTION
   ═══════════════════════════════════════════════════════════ */

.process-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .process-section {
  background: linear-gradient(135deg, #181c24 0%, #232a34 100%);
}

.process-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Connecting Line between steps - Hidden in single column layout */
.process-container::before {
  display: none;
}

.process-step {
  position: relative;
  text-align: center;
  padding: 2rem 1.5rem 2rem;
  margin-top: 100px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 2px solid rgba(255, 153, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .process-step {
  background: rgba(30, 35, 45, 0.7);
  border: 2px solid rgba(255, 153, 0, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255, 153, 0, 0.3);
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] .process-step:hover {
  background: rgba(30, 35, 45, 0.9);
  box-shadow: 0 20px 50px rgba(255, 153, 0, 0.4);
}

/* Shimmer effect on hover */
.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 153, 0, 0.2), transparent);
  transition: left 0.6s ease;
  border-radius: 20px;
}

.process-step:hover::before {
  left: 100%;
}

.step-number {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #e68900 100%);
  color: white;
  font-weight: 700;
  font-size: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(255, 153, 0, 0.4);
  transition: all 0.4s ease;
  z-index: 10;
}

.step-number::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, var(--accent-color), #e68900, var(--accent-color));
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.process-step:hover .step-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(255, 153, 0, 0.6);
}

.process-step:hover .step-number::before {
  opacity: 1;
  animation: spin 3s linear infinite;
}

.process-step h3 {
  font-size: 1.4rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-weight: 700;
}

[data-theme="dark"] .process-step h3 {
  color: var(--accent-color);
}

.process-step p {
  color: var(--gray-color);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

[data-theme="dark"] .process-step p {
  color: #b8bcc8;
}

/* Spin animation for step number glow */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive Design for Process Section */
@media (max-width: 768px) {
  .process-container {
    max-width: 90%;
    padding: 0 1rem;
  }
  
  .process-step {
    padding: 2rem 1rem 1.5rem;
    margin-top: 80px;
  }
  
  .step-number {
    width: 65px;
    height: 65px;
    font-size: 1.6rem;
    top: -50px;
  }
  
  .process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }
  
  .process-step p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .process-container {
    max-width: 95%;
  }
  
  .step-number {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
    top: -45px;
  }
  
  .process-step {
    padding: 1.8rem 0.8rem 1.2rem;
    margin-top: 70px;
  }
  
  .process-step h3 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }
  
  .process-step p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT SECTION - REDESIGNED WITH GLASSY STATS & WHY CHOOSE US
   ═══════════════════════════════════════════════════════════ */

.about-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .about-section {
  background: linear-gradient(135deg, #181c24 0%, #232a34 100%);
}

.about-header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.about-image-container {
  position: relative;
}

.about-main-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
}

.about-main-image:hover {
  transform: scale(1.02);
}

.about-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #e68900 100%);
  padding: 20px 25px;
  border-radius: 15px;
  color: white;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(255, 153, 0, 0.4);
  backdrop-filter: blur(10px);
}

.about-badge i {
  font-size: 2rem;
}

.about-badge strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge span {
  display: block;
  font-size: 0.85rem;
  opacity: 0.95;
}

.about-text-content {
  padding-left: 2rem;
}

.about-description {
  margin-bottom: 1.5rem;
  color: var(--gray-color);
  font-size: 1.1rem;
  line-height: 1.8;
}

[data-theme="dark"] .about-description {
  color: #b8bcc8;
}

/* Stats and Why Choose Us Container */
.stats-why-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

/* Stats Cards with Glassy Effect */
.stats-cards-wrapper,
.why-choose-wrapper {
  position: relative;
}

.stats-title,
.why-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.2rem;
  position: relative;
  padding-left: 20px;
}

.stats-title::before,
.why-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 70%;
  background: linear-gradient(135deg, var(--accent-color) 0%, #e68900 100%);
  border-radius: 3px;
}

[data-theme="dark"] .stats-title,
[data-theme="dark"] .why-title {
  color: #fff;
}

/* Glassy Stats Grid - 5 cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding: 18px 15px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.08),
    inset 0 1px 2px rgba(255, 255, 255, 0.8);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 153, 0, 0.1),
    transparent
  );
  transition: all 0.6s ease;
  opacity: 0;
}

.stat-card:hover::before {
  opacity: 1;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 
    0 20px 60px rgba(255, 153, 0, 0.25),
    inset 0 1px 2px rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 153, 0, 0.4);
}

[data-theme="dark"] .stat-card {
  background: rgba(30, 35, 45, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 2px rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .stat-card:hover {
  background: rgba(40, 45, 55, 0.8);
  box-shadow: 
    0 20px 60px rgba(255, 153, 0, 0.15),
    inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.stat-icon {
  width: 45px;
  height: 45px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #e68900 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  box-shadow: 0 8px 20px rgba(255, 153, 0, 0.3);
  transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
  transform: rotateY(360deg) scale(1.1);
  box-shadow: 0 10px 30px rgba(255, 153, 0, 0.5);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 6px;
  line-height: 1;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-number {
  transform: scale(1.1);
}

[data-theme="dark"] .stat-number {
  color: #ffa726;
}

.stat-text {
  color: var(--gray-color);
  font-size: 0.8rem;
  font-weight: 500;
}

[data-theme="dark"] .stat-text {
  color: #b8bcc8;
}

/* Why Choose Us Cards - 5 cards */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.why-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  padding: 16px 14px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  transition: all 0.5s ease;
}

.why-card:hover::before {
  left: 100%;
}

.why-card:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(255, 153, 0, 0.2);
  border-color: rgba(255, 153, 0, 0.3);
}

[data-theme="dark"] .why-card {
  background: rgba(30, 35, 45, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .why-card:hover {
  background: rgba(40, 45, 55, 0.8);
  box-shadow: 0 8px 30px rgba(255, 153, 0, 0.15);
}

.why-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(255, 153, 0, 0.1) 0%, rgba(255, 153, 0, 0.2) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent-color);
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.why-card:hover .why-icon {
  background: var(--accent-color);
  color: white;
  transform: rotate(5deg) scale(1.1);
}

.why-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 6px;
}

[data-theme="dark"] .why-card h4 {
  color: #fff;
}

.why-card p {
  font-size: 0.75rem;
  color: var(--gray-color);
  line-height: 1.4;
  margin: 0;
}

[data-theme="dark"] .why-card p {
  color: #b8bcc8;
}

/* Responsive About Section */
@media (max-width: 1024px) {
  .about-content-grid {
    gap: 3rem;
  }
  
  .stats-why-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid .stat-card:nth-child(5) {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-grid .why-card:nth-child(5) {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about-content-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
  }
  
  .about-text-content {
    padding-left: 0;
  }
  
  .about-badge {
    bottom: 20px;
    right: 20px;
    padding: 15px 20px;
  }
  
  .about-badge strong {
    font-size: 1.5rem;
  }
  
  .stats-why-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .stats-title,
  .why-title {
    font-size: 1.5rem;
  }
  
  /* Mobile: 2 columns for clean UI */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .stats-grid .stat-card:nth-child(5) {
    grid-column: span 2;
    max-width: 60%;
    margin: 0 auto;
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .why-grid .why-card:nth-child(5) {
    grid-column: span 2;
    max-width: 60%;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .about-header {
    margin-bottom: 2.5rem;
  }
  
  .about-badge {
    bottom: 15px;
    right: 15px;
    padding: 12px 15px;
    gap: 10px;
  }
  
  .about-badge i {
    font-size: 1.5rem;
  }
  
  .about-badge strong {
    font-size: 1.3rem;
  }
  
  /* Small mobile: Keep 2 columns for clean UI */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .stats-grid .stat-card:nth-child(5) {
    grid-column: span 2;
    max-width: 70%;
    margin: 0 auto;
  }
  
  .stat-card {
    padding: 14px 12px;
  }
  
  .stat-icon {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
    margin-bottom: 8px;
  }
  
  .stat-number {
    font-size: 1.6rem;
    margin-bottom: 4px;
  }
  
  .stat-text {
    font-size: 0.75rem;
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .why-grid .why-card:nth-child(5) {
    grid-column: span 2;
    max-width: 70%;
    margin: 0 auto;
  }
  
  .why-card {
    padding: 14px 10px;
  }
  
  .why-card h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
  }
  
  .why-card p {
    font-size: 0.7rem;
  }
  
  .why-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
}

/* Old Stats Section (keep for backward compatibility) */
.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.stat-item {
  background-color: var(--white);
  padding: 30px 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.stat-item:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-5px);
}

.stat-item:hover .stat-number {
  color: var(--accent-color);
}

.stat-item:hover .stat-text {
  color: var(--white);
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  text-align: center;
  background-color: var(--light-color);
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-item {
  text-align: center;
  padding: 0 20px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
  color: #555;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
}

.testimonial-company {
  font-size: 0.9rem;
  color: #777;
}

/* Modern Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .testimonials-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 153, 0, 0.05) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

.testimonials-container {
  position: relative;
  z-index: 2;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: var(--transition);
  border: 1px solid rgba(255, 153, 0, 0.1);
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
  border-radius: 20px 20px 0 0;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-quote {
  position: absolute;
  top: -10px;
  left: 30px;
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.testimonial-content {
  margin-top: 20px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray-color);
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}

.testimonial-author-details h4 {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.testimonial-author-details p {
  color: var(--gray-color);
  font-size: 0.9rem;
}

.testimonial-rating {
  display: flex;
  gap: 3px;
  margin-top: 10px;
}

.testimonial-rating i {
  color: #ffc107;
  font-size: 0.9rem;
}

/* Call to Action */
.cta {
  padding: 80px 0;
  background: linear-gradient(rgba(17, 24, 39, 0.85), rgba(30, 58, 138, 0.85)), url("img/of.jpg") center / cover no-repeat;
  color: white;
  text-align: center;
  text-shadow: 1px 1px 8px rgba(0,0,0,0.7);
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  color: white;
  font-weight: 700;
}

[data-theme="dark"] .cta h2 {
  color: white;
}

.cta p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 30px;
  opacity: 0;
  transform: translateY(30px);
}

.cta.reveal h2,
.cta.reveal p {
  opacity: 1;
  transform: translateY(0);
  transition: var(--transition);
  transition-delay: 0.2s;
}

.cta.reveal p {
  transition-delay: 0.4s;
}

/* FAQ Section */
.faq-section {
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.faq-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background-color: rgba(59, 130, 246, 0.05);
  border-radius: 50%;
  z-index: -1;
  bottom: -250px;
  left: -250px;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: var(--accent-color);
  font-weight: 700;
}

[data-theme="dark"] .faq-section h2 {
  color: var(--accent-color);
}

.faq-section h2::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 4px;
  background: var(--gradient-accent);
  bottom: -10px;
  left: 15%;
  border-radius: 2px;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.7);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.faq-question:after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  transition: transform 0.3s;
  color: var(--accent-color);
}

.faq-item.active {
  border-left: 4px solid var(--accent-color);
}

.faq-item.active .faq-question {
  background-color: rgba(245, 158, 11, 0.05);
}

.faq-item.active .faq-question:after {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: #4b5563;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 1000px;
}

/* Order Form Styles */
.order-form-container {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 3rem;
  margin-bottom: 3rem;
  transition: transform 0.3s ease;
  animation: fadeIn 1s ease-in-out;
}

.order-form-container:hover {
  transform: translateY(-5px);
}

.form-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.form-intro p {
  color: var(--gray-color);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  gap: 1.5rem;
}

.form-group {
  flex: 1 0 280px;
  margin-bottom: 1.5rem;
}

.form-group.full-width {
  flex: 1 0 100%;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: var(--transition);
  background-color: var(--white);
  color: var(--dark-color);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.form-select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23212529' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  background-color: var(--white);
  color: var(--dark-color);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.file-upload {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  border: 2px dashed #ddd;
  border-radius: 8px;
  background-color: #f8f9fa;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}

[data-theme="dark"] .file-upload {
  background-color: #333;
  border-color: #555;
}

.file-upload:hover {
  border-color: var(--accent-color);
}

.file-upload i {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.file-upload p {
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.file-upload small {
  color: var(--gray-color);
}

#fileInput {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

#fileList {
  margin-top: 1.5rem;
  width: 100%;
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  background-color: #f1f3f5;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

[data-theme="dark"] .file-item {
  background-color: #444;
}

.file-item .file-name {
  flex-grow: 1;
  margin-left: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--dark-color);
}

.file-item .remove-file {
  color: var(--accent-color);
  cursor: pointer;
  padding: 0 0.5rem;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 4px;
  text-align: center;
  display: none;
}

.form-message.success {
  background-color: rgba(40, 167, 69, 0.1);
  color: var(--success-color);
  display: block;
}

.form-message.error {
  background-color: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  display: block;
}

/* Process Section */
.process-section {
  background-color: var(--light-color);
}

.process-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

/* Old process-step and step-number styles removed - using new glassy design */

.process-step p {
  color: var(--gray-color);
}

/* ═══════════════════════════════════════════════════════════
   MODERN FOOTER - DARK THEME FRIENDLY
   ═══════════════════════════════════════════════════════════ */

footer {
  background: linear-gradient(135deg, #1a1f2e 0%, #2d3748 100%);
  color: #e2e8f0;
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), #e68900, var(--accent-color));
}

[data-theme="dark"] footer {
  background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  color: var(--accent-color);
}

.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-col {
  animation: fadeIn 0.6s ease-out;
}

.footer-col p {
  margin-bottom: 12px;
  transition: var(--transition);
  color: #cbd5e0;
  line-height: 1.8;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col p i {
  color: var(--accent-color);
  font-size: 1.1rem;
  min-width: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
  transition: var(--transition);
}

.footer-col ul li a {
  color: #cbd5e0;
  transition: var(--transition);
  display: inline-block;
  position: relative;
}

.footer-col ul li a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer-col ul li a:hover::before {
  width: 100%;
}

.footer-col p a {
  color: #cbd5e0;
  transition: var(--transition);
}

.footer-col p a:hover {
  color: var(--accent-color);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #a8b2c1;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--white);
  font-size: 1.3rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.social-icons a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.social-icons a:hover::before {
  opacity: 0.15;
}

.social-icons a:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* WhatsApp - Official Green */
.social-icons a:has(.fa-whatsapp) {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.3);
  color: #25D366;
}

.social-icons a:has(.fa-whatsapp):hover {
  background: #25D366;
  border-color: #25D366;
  color: white;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* Instagram - Official Gradient */
.social-icons a:has(.fa-instagram) {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border: none;
  color: white;
}

.social-icons a:has(.fa-instagram):hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 10px 30px rgba(225, 48, 108, 0.5);
}

/* TikTok - Official Black/Cyan */
.social-icons a:has(.fa-tiktok) {
  background: #000000;
  border-color: #00f2ea;
  color: #00f2ea;
}

.social-icons a:has(.fa-tiktok):hover {
  background: #000000;
  border-color: #ff0050;
  color: #00f2ea;
  box-shadow: 0 10px 30px rgba(0, 242, 234, 0.4), 0 0 20px rgba(255, 0, 80, 0.2);
}

/* Facebook - Official Blue */
.social-icons a:has(.fa-facebook-f),
.social-icons a:has(.fa-facebook) {
  background: rgba(24, 119, 242, 0.15);
  border-color: rgba(24, 119, 242, 0.3);
  color: #1877F2;
}

.social-icons a:has(.fa-facebook-f):hover,
.social-icons a:has(.fa-facebook):hover {
  background: #1877F2;
  border-color: #1877F2;
  color: white;
  box-shadow: 0 10px 30px rgba(24, 119, 242, 0.4);
}

.footer-contact p {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.footer-contact i {
  margin-right: 1rem;
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  text-align: center;
  padding: 30px 0;
  color: #a0aec0;
  font-size: 0.95rem;
}

.copyright p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

[data-theme="dark"] .footer-col p,
[data-theme="dark"] .footer-col ul li a,
[data-theme="dark"] .copyright {
  color: #cbd5e0;
}

/* Responsive Footer */
@media (max-width: 768px) {
  footer {
    padding: 60px 0 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-col {
    text-align: center;
  }
  
  .footer-col p {
    justify-content: center;
  }
  
  .social-icons {
    justify-content: center;
  }
}

/* Modal Styles */
/* Image Modal Styles */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(10px);
  touch-action: none;
  -webkit-overflow-scrolling: touch;
}

.image-modal.active {
  opacity: 1;
  visibility: visible;
}

.image-modal-content {
  position: relative;
  max-width: 95%;
  max-height: 95vh;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(0.8);
  transition: transform 0.3s ease;
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.image-modal.active .image-modal-content {
  transform: scale(1);
}

.image-modal img {
  max-width: 100%;
  max-height: 95vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  width: auto;
  height: auto;
}

.image-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10000;
  touch-action: manipulation;
}

.image-modal-close:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.image-modal-close:active {
  transform: rotate(90deg) scale(0.9);
}

.image-modal-title {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 1rem;
  backdrop-filter: blur(10px);
  max-width: 80%;
  text-align: center;
  word-wrap: break-word;
}

.project-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.project-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: var(--white);
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 10px;
  position: relative;
  transform: scale(0.8);
  transition: var(--transition);
}

.project-modal.active .modal-content {
  transform: scale(1);
}

.modal-header {
  position: relative;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.modal-header h2 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-right: 30px;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  color: #999;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--primary-color);
}

.modal-body {
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.modal-gallery {
  margin-bottom: 20px;
}

.modal-gallery img {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 10px;
}

.modal-info h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.modal-info p {
  margin-bottom: 15px;
  color: #666;
}

.project-meta {
  margin-top: 20px;
  background-color: #f7f7f7;
  padding: 15px;
  border-radius: 5px;
}

[data-theme="dark"] .project-meta {
  background-color: #333;
}

.meta-item {
  display: flex;
  margin-bottom: 10px;
}

.meta-item strong {
  min-width: 120px;
  color: var(--primary-color);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 100px; /* Positioned above WhatsApp button */
  left: 30px; /* Positioned on left side */
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow);
}

.back-to-top i {
  font-size: 18px;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 998;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
  transition: all 0.3s ease;
  text-decoration: none;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
  font-size: 32px;
  color: white;
}

.whatsapp-float:hover i {
  color: white;
}

/* Pulse animation for WhatsApp button */
@keyframes pulse {
  0% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.8);
  }
  100% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
  }
}


/* Mobile - WhatsApp and Back to Top - Very Small */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 40px;
    height: 40px;
    bottom: 15px;
    right: 15px;
  }
  
  .whatsapp-float i {
    font-size: 20px;
  }
  
  .back-to-top {
    width: 35px;
    height: 35px;
    bottom: 65px; /* Move up to make room for WhatsApp button on mobile */
    left: 15px; /* Positioned on left side on mobile */
  }
  
  .back-to-top i {
    font-size: 14px;
  }
}

/* Thank You Page Styles */
.thank-you-container {
  text-align: center;
  padding: 5rem 1rem;
  animation: fadeIn 1s ease-in-out;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--accent-color);
  margin-bottom: 2rem;
}

.message {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: var(--dark-color);
}

/* Blob Shape Animation */
.blob-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  background-color: rgba(59, 130, 246, 0.05);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: -1;
  top: -300px;
  right: -300px;
  animation: blob-animation 15s infinite alternate;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  from {
    transform: translateY(0) rotate(-1deg);
  }
  to {
    transform: translateY(-5px) rotate(1deg);
  }
}

@keyframes swing {
  from {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(5deg);
  }
}

@keyframes blink {
  from {
    opacity: 0.5;
    box-shadow: 0 0 2px #ff3333;
  }
  to {
    opacity: 1;
    box-shadow: 0 0 10px #ff3333;
  }
}

@keyframes scroll {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(2px);
  }
}

@keyframes blob-animation {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* Modern Portfolio Styles */
.modern-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

/* More columns on larger screens */
@media (min-width: 1400px) {
  .modern-portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
  }
}

.portfolio-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  height: 240px;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.portfolio-image {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 51, 102, 0.9) 0%, rgba(255, 153, 0, 0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
  opacity: 0;
  transition: var(--transition);
  color: white;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-info h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: white;
  line-height: 1.3;
}

.portfolio-info p {
  font-size: 0.85rem;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.portfolio-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag {
  background: rgba(255, 255, 255, 0.2);
  padding: 3px 10px;
  border-radius: 15px;
  font-size: 0.7rem;
  backdrop-filter: blur(10px);
}

.portfolio-actions {
  display: flex;
  gap: 10px;
  align-self: flex-end;
}

.btn-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.btn-icon:hover {
  background: white;
  color: var(--primary-color);
  transform: scale(1.1);
}

/* Featured Projects Showcase */
.featured-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

.featured-project-large {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.featured-project-large:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.featured-project-large .project-image {
  height: 300px;
  position: relative;
  overflow: hidden;
}

.featured-project-large .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.featured-project-large:hover .project-image img {
  transform: scale(1.05);
}

.project-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent-color);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.featured-project-large .project-content {
  padding: 30px;
}

.project-category {
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.featured-project-large h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.featured-project-large p {
  color: var(--gray-color);
  line-height: 1.7;
  margin-bottom: 25px;
}

.project-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
  padding: 20px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-actions {
  display: flex;
  gap: 15px;
}

.featured-projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.featured-project-small {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  height: 120px;
}

.featured-project-small:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}

.featured-project-small .project-image {
  width: 120px;
  height: 120px;
  overflow: hidden;
}

.featured-project-small .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.featured-project-small:hover .project-image img {
  transform: scale(1.1);
}

.featured-project-small .project-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-project-small .project-category {
  font-size: 0.8rem;
  margin-bottom: 5px;
}

.featured-project-small h4 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.featured-project-small p {
  font-size: 0.9rem;
  color: var(--gray-color);
  margin-bottom: 10px;
  line-height: 1.5;
}

.project-link {
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.project-link:hover {
  color: var(--primary-color);
}

.project-link i {
  margin-left: 5px;
  transition: var(--transition);
}

.project-link:hover i {
  transform: translateX(5px);
}

/* Process Timeline */
.process-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 50px;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 60px;
  top: 60px;
  bottom: 60px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-color), var(--primary-color));
  z-index: 1;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.step-content p {
  color: var(--gray-color);
  line-height: 1.6;
}

/* Old step-number style removed - using new design above */

/* Enhanced Category Filters */
.category-filters {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 6px;
  margin-bottom: 15px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  scroll-snap-type: x none;
  scroll-padding-left: 0;
  direction: ltr;
  scroll-margin-left: 0;
  scroll-snap-align: start;
}

.category-filters::before {
  content: '';
  flex-shrink: 0;
  width: 0;
}

.category-filters::after {
  content: '';
  flex-shrink: 0;
  width: 0;
}

.category-filters::-webkit-scrollbar {
  height: 4px;
}

.category-filters::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 1px;
}

.category-filters::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 1px;
}

.category-filters::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

.category-btn {
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
  font-size: 0.7rem;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.2;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: fit-content;
  margin: 0;
  scroll-snap-align: start;
}

.category-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transition: var(--transition);
  z-index: -1;
}

.category-btn:hover::before,
.category-btn.active::before {
  left: 0;
}

.category-btn:hover,
.category-btn.active {
  color: white;
  transform: scale(1.05);
  box-shadow: 0 1px 4px rgba(0, 51, 102, 0.15);
}

/* Dark theme adjustments for new components */
[data-theme="dark"] .portfolio-card,
[data-theme="dark"] .featured-project-large,
[data-theme="dark"] .featured-project-small,
[data-theme="dark"] .process-step {
  background-color: var(--white);
  border: 1px solid #333;
}

[data-theme="dark"] .category-btn {
  background: var(--white);
  border-color: var(--primary-color);
}

[data-theme="dark"] .featured-showcase {
  background: none;
}

/* Responsive adjustments for new components */
@media (max-width: 992px) {
  .modern-portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .portfolio-card {
    height: 150px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  
  .category-filters {
    gap: 6px;
    margin-bottom: 15px;
    flex-wrap: nowrap;
    padding: 8px 0;
  }
  
  .category-btn {
    padding: 5px 12px;
    font-size: 0.65rem;
    border-radius: 10px;
    min-height: 22px;
    margin: 0;
  }

  .featured-showcase {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .process-timeline::before {
    display: none;
  }

  /* Old responsive styles removed */
}

@media (max-width: 768px) {
  .modern-portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .portfolio-card {
    height: 120px;
    border-radius: 8px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  
  .category-filters {
    gap: 5px;
    margin-bottom: 12px;
    flex-wrap: nowrap;
    padding: 8px 0;
  }
  
  .category-btn {
    padding: 5px 10px;
    font-size: 0.6rem;
    border-radius: 8px;
    border-width: 1px;
    min-height: 20px;
    margin: 0;
  }
  
  .image-modal-content {
    padding: 10px;
    max-width: 100%;
    max-height: 100vh;
  }
  
  .image-modal img {
    max-width: 100%;
    max-height: 80vh;
  }
  
  .image-modal-close {
    width: 40px;
    height: 40px;
    top: 10px;
    right: 10px;
    font-size: 1.1rem;
  }
  
  .image-modal-title {
    bottom: 10px;
    font-size: 0.75rem;
    padding: 6px 12px;
    max-width: 95%;
  }
  
  .image-modal-content {
    padding: 15px;
    max-width: 98%;
    max-height: 98vh;
  }
  
  .image-modal img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
  }
  
  .image-modal-close {
    width: 44px;
    height: 44px;
    top: 15px;
    right: 15px;
    font-size: 1.3rem;
    background-color: rgba(255, 255, 255, 0.25);
    border-width: 2px;
  }
  
  .image-modal-title {
    bottom: 15px;
    font-size: 0.85rem;
    padding: 8px 16px;
    max-width: 90%;
  }

  .featured-project-small {
    flex-direction: column;
    height: auto;
  }
}

@media (max-width: 480px) {
  .modern-portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .portfolio-card {
    height: 100px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  
  .category-btn {
    padding: 4px 8px;
    font-size: 0.55rem;
    min-height: 18px;
  }
  
  .category-filters {
    gap: 4px;
    margin-bottom: 10px;
    flex-wrap: nowrap;
    padding: 6px 0;
  }
  
  .image-modal-content {
    padding: 8px;
  }
  
  .image-modal img {
    max-height: 75vh;
  }
  
  .image-modal-close {
    width: 36px;
    height: 36px;
    top: 8px;
    right: 8px;
    font-size: 1rem;
  }
  
  .image-modal-title {
    bottom: 8px;
    font-size: 0.7rem;
    padding: 5px 10px;
  }
  
  .category-filters::-webkit-scrollbar {
    height: 1px;
  }

  .featured-project-small .project-image {
    width: 100%;
    height: 200px;
  }

  .project-stats {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .portfolio-overlay {
    padding: 8px;
  }

  .portfolio-info h3 {
    font-size: 0.7rem;
    margin-bottom: 4px;
  }

  .portfolio-info p {
    font-size: 0.55rem;
    margin-bottom: 4px;
  }

  .tag {
    padding: 2px 6px;
    font-size: 0.5rem;
  }

  .btn-icon {
    width: 20px;
    height: 20px;
    font-size: 0.6rem;
  }

  .featured-project-large .project-content {
    padding: 20px;
  }

  .featured-project-large h3 {
    font-size: 1.5rem;
  }

  .process-step {
    padding: 20px;
  }

  .step-icon {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .slogan-text {
    font-size: 2rem;
  }

  .portfolio-hero h1 {
    font-size: 2.5rem;
  }

  .swiper-slide {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 992px) {
  .order-form-container {
    padding: 2rem;
  }

  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .about-grid > div:first-child {
    order: 2;
  }

  .about-grid > div:last-child {
    order: 1;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Smaller Navbar on Mobile */
  header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  }

  .navbar {
    padding: 12px 0;
  }

  header.scrolled .navbar {
    padding: 10px 0;
  }

  .logo img {
    width: 40px;
    height: 40px;
  }

  header.scrolled .logo img {
    width: 38px;
    height: 38px;
  }

  .logo-text {
    display: block;
    font-size: 1.1rem;
  }

  /* Theme Toggle & Hamburger */
  .nav-right {
    gap: 8px;
  }

  .theme-toggle {
    width: 40px;
    height: 40px;
  }

  .theme-toggle i {
    font-size: 1rem;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Glassy Mobile Menu with Sliding Animation */
  .nav-links,
  .nav-menu {
    position: fixed;
    top: 64px;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: calc(100vh - 64px);
    background: linear-gradient(
      180deg,
      rgba(0, 51, 102, 0.98) 0%,
      rgba(0, 40, 85, 0.96) 100%
    );
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 30px 20px;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    gap: 5px;
    z-index: 999;
    overflow-y: auto;
    border-left: 1px solid rgba(255, 153, 0, 0.3);
  }

  /* Dark Theme Mobile Menu */
  [data-theme="dark"] .nav-links,
  [data-theme="dark"] .nav-menu {
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    box-shadow: 
      -5px 0 30px rgba(0, 0, 0, 0.5),
      inset 1px 0 1px rgba(255, 167, 38, 0.2);
    border-left: 1px solid rgba(255, 167, 38, 0.3);
  }

  /* Active State - Slide In from Right */
  .nav-links.active,
  .nav-menu.active {
    right: 0;
  }

  /* Overlay for Mobile Menu */
  .nav-links.active::before,
  .nav-menu.active::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    animation: fadeIn 0.3s ease;
  }

  /* Menu Items */
  .nav-links li,
  .nav-item {
    margin: 5px 0;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.3s ease;
  }

  .nav-links.active li,
  .nav-menu.active .nav-item {
    opacity: 1;
    transform: translateX(0);
  }

  /* Stagger animation for menu items */
  .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
  .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
  .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
  .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
  .nav-links.active li:nth-child(6) { transition-delay: 0.35s; }

  .nav-links li a,
  .nav-link {
    display: block;
    padding: 14px 20px;
    border-radius: 12px;
    width: 100%;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }

  .nav-links li a:hover,
  .nav-link:hover {
    background: rgba(255, 153, 0, 0.2);
    transform: translateX(5px);
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  }

  .nav-links li a.active {
    color: white !important;
    background: linear-gradient(135deg, var(--accent-color) 0%, #e68900 100%);
  }

  /* Dark theme mobile menu links */
  [data-theme="dark"] .nav-links li a,
  [data-theme="dark"] .nav-link {
    color: #f5f5f5 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }

  [data-theme="dark"] .nav-links li a:hover,
  [data-theme="dark"] .nav-link:hover {
    background: rgba(255, 167, 38, 0.15);
    color: #ffb84d !important;
  }

  [data-theme="dark"] .nav-links li a.active {
    color: #1a1a1a !important;
  }

  /* Fade in animation */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* Prevent body scroll when menu is open */
  body.menu-open {
    overflow: hidden;
  }

  /* Body Overlay */
  .mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .mobile-menu-overlay.active {
    display: block;
    opacity: 1;
  }

  /* Hero Section Mobile Adjustments */
  .hero {
    min-height: 100vh;
    overflow: visible !important; /* Allow dancing mouse to show */
  }
  
  /* Hero Slider Mobile */
  .hero-slider-dots {
    bottom: 100px;
    gap: 10px;
    z-index: 20;
  }

  .hero-slider-dots .dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.8);
  }

  .hero-slider-dots .dot.active {
    width: 30px;
    background: var(--accent-color);
  }

  /* Make text more visible and beautiful on mobile */
  .hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    text-shadow: 
      2px 2px 12px rgba(0, 0, 0, 1),
      0 0 25px rgba(0, 0, 0, 0.9) !important;
    color: #ffffff !important;
    padding: 0 10px;
  }

  .hero p {
    color: #ffffff !important;
    text-shadow: 
      1px 1px 8px rgba(0, 0, 0, 1),
      0 0 20px rgba(0, 0, 0, 0.9);
    font-weight: 500;
    padding: 0 15px;
    font-size: 1.05rem;
  }
  
  .hero .btn {
    margin: 8px;
  }

  .rotating-slogan {
    height: 50px;
    margin-bottom: 1.5rem;
  }

  .slogan-text {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  /* DANCING MOUSE - VISIBLE ON MOBILE */
  .comp-mouse-container {
    display: flex !important;
    visibility: visible !important;
    justify-content: center;
    margin-top: 20px !important;
    margin-bottom: 15px !important;
    transform: scale(0.7) !important;
    position: relative !important;
    z-index: 20 !important;
    opacity: 1 !important;
    animation: none !important; /* Remove delay animation */
  }

  .comp-mouse {
    width: 25px !important;
    height: 42px !important;
    background-color: #ffffff !important;
  }

  .hero-content h6 {
    font-size: 0.85rem;
    margin-top: 8px;
    opacity: 1 !important;
  }

  .portfolio-hero h1 {
    font-size: 2rem;
  }

  .portfolio-hero p {
    font-size: 1rem;
  }

  .swiper-slide {
    width: 200px;
    height: 200px;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .contact-form {
    order: 1;
  }

  .contact-info {
    order: 2;
  }

  .stats-container {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .mission-values-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .team-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .modal-body {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    padding: 30px 20px;
  }
}

/* Tablet Styles */
@media (max-width: 992px) and (min-width: 769px) {
  .nav-links,
  .nav-menu {
    width: 60%;
    max-width: 280px;
  }
}

/* Small Mobile Styles */
@media (max-width: 576px) {
  /* Even Smaller Navbar */
  .navbar {
    padding: 10px 0;
  }

  .logo img {
    width: 36px;
    height: 36px;
  }

  .theme-toggle {
    width: 36px;
    height: 36px;
  }

  .theme-toggle i {
    font-size: 0.9rem;
  }

  /* Mobile Menu takes more space on small screens */
  .nav-links,
  .nav-menu {
    width: 85%;
    max-width: 100%;
    top: 56px;
    height: calc(100vh - 56px);
  }

  /* Hero Slider - Small Mobile */
  .hero {
    min-height: 100vh;
  }
  
  .hero-slide {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: opacity 1.5s ease-in-out, transform 5s ease-out;
  }

  .hero-slide.active {
    transform: scale(1.05);
  }

  .hero-slider-dots {
    bottom: 80px;
    gap: 8px;
  }
  
  .hero-slider-dots .dot {
    width: 10px;
    height: 10px;
  }
  
  .hero-slider-dots .dot.active {
    width: 28px;
  }

  .hero h1 {
    font-size: 1.75rem !important;
    line-height: 1.1;
    margin-bottom: 0.8rem !important;
    text-shadow: 
      2px 2px 10px rgba(0, 0, 0, 1),
      0 0 20px rgba(0, 0, 0, 0.95) !important;
    padding: 0 5px;
  }

  .hero p {
    font-size: 0.9rem;
    margin-bottom: 1rem !important;
    text-shadow: 
      1px 1px 6px rgba(0, 0, 0, 1),
      0 0 15px rgba(0, 0, 0, 0.9) !important;
    padding: 0 10px;
  }

  .slogan-text {
    font-size: 1.1rem !important;
    text-shadow: 
      2px 2px 8px rgba(0, 0, 0, 1),
      0 0 18px rgba(0, 0, 0, 0.95) !important;
  }
  
  .rotating-slogan {
    height: 35px;
    margin-bottom: 1rem !important;
  }
  
  .hero .btn {
    font-size: 0.85rem;
    padding: 10px 20px;
    margin: 5px;
  }
  
  .hero-content > div[style*="margin-bottom"] {
    margin-bottom: 1rem !important;
  }

  .container {
    padding: 0 10px;
  }

  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 0.8rem;
  }

  .rotating-slogan {
    height: 40px;
    margin-bottom: 1.2rem;
  }

  .slogan-text {
    font-size: 1.3rem;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }

  .hero .btn {
    padding: 12px 24px;
    font-size: 1rem;
    margin: 5px;
    display: block;
    margin-bottom: 10px;
  }

  .section-title {
    margin-bottom: 2rem;
  }

  .order-form-container {
    padding: 1rem;
  }

  .file-upload {
    padding: 1.5rem;
  }

  .file-upload i {
    font-size: 2.5rem;
  }

  .footer {
    padding: 3rem 0 1rem;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stat-item {
    padding: 20px 15px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .contact-grid {
    gap: 20px !important;
  }

  .card {
    padding: 20px !important;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .form-control {
    padding: 10px;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .testimonial-item {
    height: 270px;
  }

  .testimonial-card {
    padding: 25px 15px;
  }

  .testimonial-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .testimonial-item {
    height: 300px;
  }
}

@media (max-width: 409px) {
  .testimonial-item {
    height: 300px;
  }
}

@media (max-width: 387px) {
  .testimonial-item {
    height: 350px;
  }
}

/* Dark theme specific adjustments */
[data-theme="dark"] .service-card,
[data-theme="dark"] .card,
[data-theme="dark"] .stat-item {
  background-color: var(--white);
  border: 1px solid #333;
}

[data-theme="dark"] .form-control,
[data-theme="dark"] .form-select {
  background-color: var(--white);
  border-color: #333;
  color: var(--dark-color);
}

[data-theme="dark"] .nav-links,
[data-theme="dark"] .nav-menu {
  background-color: var(--white);
  border-top: 1px solid #333;
}

[data-theme="dark"] .order-form-container {
  background-color: var(--white);
  border: 1px solid #333;
}

[data-theme="dark"] .process-step {
  background-color: var(--white);
  border: 1px solid #333;
}

[data-theme="dark"] .faq-item {
  background-color: var(--white);
  border: 1px solid #333;
}

/* Print Styles */
@media print {
  .hamburger,
  .theme-toggle,
  .back-to-top,
  .comp-mouse-container {
    display: none !important;
  }

  .hero {
    background: none !important;
    color: #000 !important;
  }

  .section-padding {
    padding: 20px 0;
  }
}

/* Additional utility classes */
.text-center {
  text-align: center;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-20 {
  margin-top: 20px;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* Form validation styles */
.form-control.error {
  border-color: #dc3545;
}

.file-upload.highlight {
  border-color: var(--accent-color);
  background-color: rgba(255, 107, 53, 0.05);
}

/* Notification styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  padding: 15px 20px;
  border-radius: 8px;
  color: white;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  max-width: 300px;
}

.notification.success {
  background-color: #28a745;
}

.notification.error {
  background-color: #dc3545;
}

.notification.info {
  background-color: #007bff;
}

/* Hero content fix */
.hero-content {
  position: relative;
  z-index: 2;
}

/* Mobile section title adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .portfolio-hero h1 {
    font-size: 2rem;
  }

  .page-banner h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 0.8rem;
  }

  .portfolio-hero h1 {
    font-size: 1.8rem;
  }

  .page-banner h1 {
    font-size: 2rem;
  }

  .service-cta h2,
  .cta h2 {
    font-size: 2rem;
  }

  .testimonials-section h2,
  .services-intro h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.6rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .portfolio-hero h1 {
    font-size: 1.6rem;
  }

  .page-banner h1 {
    font-size: 1.8rem;
  }
}

/* Ensure mobile menu works properly */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
    transition: var(--transition);
    box-shadow: var(--shadow);
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 10px 0;
    width: 90%;
    text-align: center;
  }

  .nav-link {
    display: block;
    padding: 15px;
    border-radius: var(--border-radius);
    width: 100%;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
  }

  .hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 3px 0;
    background-color: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
}

/* Dark theme mobile menu */
[data-theme="dark"] .nav-menu {
  background-color: var(--white);
  border-top: 1px solid #333;
}







/* Extra Small Devices - 320px width or 500px height - FIT ALL CONTENT */
@media (max-width: 400px), (max-height: 500px) {
  .hero {
    flex-direction: column;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.8rem 1.5rem;
  }

  .hero-content {
    width: 100%;
    text-align: center;
    padding: 0;
  }

  .hero h1 {
    font-size: 1.4rem !important;
    line-height: 1.1 !important;
    margin-bottom: 0.5rem !important;
  }

  .hero h2 {
    font-size: 1rem !important;
    margin-bottom: 0.4rem !important;
  }

  .hero p {
    font-size: 0.8rem !important;
    margin-bottom: 0.8rem !important;
  }

  .rotating-slogan {
    height: 30px !important;
    margin-bottom: 0.8rem !important;
  }

  .slogan-text {
    font-size: 0.95rem !important;
  }

  .hero .btn {
    font-size: 0.8rem !important;
    padding: 8px 16px !important;
    margin: 4px !important;
    display: inline-block !important;
  }

  .hero-content > div[style*="margin-bottom"] {
    margin-bottom: 0.8rem !important;
  }

  .hero-slider-dots {
    bottom: 60px !important;
    gap: 6px !important;
  }

  .hero-slider-dots .dot {
    width: 8px !important;
    height: 8px !important;
  }

  .hero-slider-dots .dot.active {
    width: 24px !important;
  }

  .hero-img {
    width: 100%;
    max-width: 200px;
    margin-top: 0.5rem;
  }

  .hero-img img {
    width: 100%;
    height: auto;
  }
}

/* Removed duplicate mobile styling - now in main @media (max-width: 768px) section */

/* Hide dancing mouse ONLY on very tiny devices to save space */
@media (max-width: 360px) and (max-height: 640px) {
  .comp-mouse-container {
    display: none !important;
  }
}


@media screen and (min-width: 1025px) {
  .hero {
    margin-top: 80px !important; /* Adjust to match your navbar height */
  }
}


/* Add at the end of your styles.css file */
.newsletter-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 0;
  text-align: center;
}

.newsletter-title {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.newsletter-desc {
  color: var(--gray-color);
  margin-bottom: 25px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.newsletter-input {
  padding: 12px 18px;
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  flex: 1 1 220px;
  min-width: 180px;
}

.newsletter-btn {
  padding: 12px 28px;
  font-size: 1rem;
}

.newsletter-message {
  margin-top: 18px;
  font-size: 1rem;
  color: var(--success-color);
}

/* Dark theme support */
[data-theme="dark"] .newsletter-section {
  background: linear-gradient(135deg, #181c24 0%, #232a34 100%);
}

[data-theme="dark"] .newsletter-title,
[data-theme="dark"] .newsletter-desc {
  color: #fff !important;
}

[data-theme="dark"] .newsletter-input {
  background: #232a34;
  color: #fff;
  border-color: var(--accent-color);
}





/* Fix dark theme text visibility for all major sections */
[data-theme="dark"] .hero-content h1,
[data-theme="dark"] .hero-content h2,
[data-theme="dark"] .hero-content h6,
[data-theme="dark"] .hero-content p,
[data-theme="dark"] .hero-content .slogan-text,
[data-theme="dark"] .hero-content a,
[data-theme="dark"] .hero-content button,
[data-theme="dark"] .page-banner h1,
[data-theme="dark"] .page-banner p,
[data-theme="dark"] .breadcrumbs a,
[data-theme="dark"] .service-card h3,
[data-theme="dark"] .service-card p,
[data-theme="dark"] .service-features li,
[data-theme="dark"] .service-cta h2,
[data-theme="dark"] .service-cta p,
[data-theme="dark"] .service-cta a,
[data-theme="dark"] .testimonials-section,
[data-theme="dark"] .testimonial-text,
[data-theme="dark"] .testimonial-author-details h4,
[data-theme="dark"] .testimonial-author-details p,
[data-theme="dark"] .faq-section h2,
[data-theme="dark"] .faq-question,
[data-theme="dark"] .faq-answer,
[data-theme="dark"] .footer-content,
[data-theme="dark"] .footer-col,
[data-theme="dark"] .footer-col h3,
[data-theme="dark"] .footer-col p,
[data-theme="dark"] .footer-links a,
[data-theme="dark"] .footer-bottom,
[data-theme="dark"] .back-to-top i {
  color: #fff !important;
}

/* Dark theme footer background and link color */
[data-theme="dark"] footer,
[data-theme="dark"] .footer-content,
[data-theme="dark"] .footer-col,
[data-theme="dark"] .footer-bottom {
  background-color: #181c24 !important;
}

[data-theme="dark"] .footer-col h3,
[data-theme="dark"] .footer-col p,
[data-theme="dark"] .footer-links a,
[data-theme="dark"] .footer-bottom,
[data-theme="dark"] .footer-col ul li a,
[data-theme="dark"] .copyright {
  color: #f1f1f1 !important;
}

[data-theme="dark"] .footer-col h3 {
  color: var(--accent-color) !important;
}

[data-theme="dark"] .footer-links a:hover,
[data-theme="dark"] .footer-col ul li a:hover {
  color: var(--accent-color) !important;
}


/* Make social icons visible in dark theme footer */
[data-theme="dark"] .social-icons a {
  background-color: #232a34 !important;
  color: #fff !important;
  border: none;
}

[data-theme="dark"] .social-icons a:hover {
  background-color: var(--accent-color) !important;
  color: #181c24 !important;
}

/* Fix Our Story section background and text for dark theme */
[data-theme="dark"] .our-story,
[data-theme="dark"] .about-section,
[data-theme="dark"] .about-content {
  background-color: #181c24 !important;
  color: #fff !important;
}

[data-theme="dark"] .our-story h2,
[data-theme="dark"] .about-section h2,
[data-theme="dark"] .about-content h2,
[data-theme="dark"] .our-story p,
[data-theme="dark"] .about-section p,
[data-theme="dark"] .about-content p {
  color: #fff !important;
}

[data-theme="dark"] .section-padding {
  background: black;
}

