/* ==================== */
/* MODERN COLOR PALETTE */
/* ==================== */

:root {
  /* Primary Colors - Steel & Industrial Theme */
  --primary-dark: #0a1628;
  --primary: #1a2942;
  --primary-light: #2d3e5f;
  
  /* Accent Colors - Professional Blue */
  --accent: #2563eb;
  --accent-light: #3b82f6;
  --accent-lighter: #60a5fa;
  --accent-dark: #1d4ed8;
  
  /* Secondary Colors */
  --secondary: #f59e0b;
  --secondary-light: #fbbf24;
  
  /* Neutral Colors */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  
  /* Text Colors */
  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-light: #6b7280;
  --text-white: #ffffff;
  
  /* Background Colors */
  --bg-white: #ffffff;
  --bg-light: #f9fafb;
  --bg-lighter: #f3f4f6;
  
  /* Border & Shadows */
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #1a2942 0%, #0a1628 100%);
  --gradient-accent: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(26, 41, 66, 0.95) 0%, rgba(10, 22, 40, 0.95) 100%);
  
  /* Success & Error Colors */
  --success: #10b981;
  --success-bg: #d1fae5;
  --error: #ef4444;
  --warning: #f59e0b;
}

/* ==================== */
/* RESET & BASE STYLES  */
/* ==================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: var(--accent);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==================== */
/* UTILITY CLASSES      */
/* ==================== */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  background: var(--bg-lighter);
  border-radius: 999px;
}

.section-title-center {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-title-left {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  line-height: 1.2;
}

.section-description-center {
  text-align: center;
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.section-header-center {
  text-align: center;
  margin-bottom: 4rem;
}

/* ==================== */
/* BUTTONS              */
/* ==================== */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--gradient-accent);
  color: var(--text-white);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--text-white);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--bg-white);
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.5rem;
  border: 2px solid var(--border-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--bg-lighter);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: transparent;
  color: var(--accent);
  font-weight: 600;
  border: 2px solid var(--accent);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--text-white);
  transform: translateX(5px);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: transparent;
  color: var(--text-white);
  font-weight: 600;
  border: 2px solid var(--text-white);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  background: var(--text-white);
  color: var(--primary);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-block {
  width: 100%;
}

.btn-icon {
  font-size: 1.25rem;
  margin-right: 0.5rem;
}

.btn-icon i {
  font-size: 1.25rem;
}

.btn-primary i,
.btn-secondary i,
.btn-outline i,
.btn-outline-white i {
  margin-right: 0.5rem;
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.btn-outline:hover .btn-arrow {
  transform: translateX(5px);
}

/* ==================== */
/* HEADER & NAVIGATION  */
/* ==================== */

.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(26, 41, 66, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.navbar {
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  font-family: 'Poppins', sans-serif;
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
  color: var(--text-white);
}

/* Brand Logo */
.brand-logo {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.brand-fallback {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.brand-icon {
  font-size: 3rem;
}

.brand-text {
  color: var(--text-white);
  font-size: 2rem;
}

.navbar-toggler {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.navbar-toggler-icon {
  width: 30px;
  height: 3px;
  background: var(--text-white);
  display: block;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  width: 30px;
  height: 3px;
  background: var(--text-white);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  top: 8px;
}

.navbar-nav {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
}

.nav-link {
  color: var(--text-white);
  font-weight: 500;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-lighter);
}

.nav-link.active {
  background: rgba(37, 99, 235, 0.2);
  color: var(--accent-lighter);
}

/* ==================== */
/* HERO SECTION - MODERN */
/* ==================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--text-white);
  overflow: hidden;
}

/* Hero Background Image */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Hero Overlay - Karart� */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(26, 41, 66, 0.9) 100%);
  z-index: 1;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(96, 165, 250, 0.05) 0%, transparent 50%);
  animation: particleFloat 20s ease-in-out infinite;
  z-index: 2;
}

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-20px) translateX(10px); }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 2rem;
  text-align: center;
  animation: fadeInUp 1s ease;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--accent-lighter);
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-white);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--accent-lighter);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats-mini {
  display: flex;
  gap: 3rem;
  justify-content: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-mini {
  text-align: center;
}

.stat-mini-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-lighter);
  font-family: 'Poppins', sans-serif;
}

.stat-mini-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 3;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-left: 2px solid rgba(255, 255, 255, 0.6);
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
  transform: rotate(-45deg);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== */
/* ABOUT PREVIEW SECTION */
/* ==================== */

.about-preview-section {
  padding: 6rem 0;
  background: var(--bg-white);
}

.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-preview-image {
  position: relative;
  height: 500px;
  background: var(--gradient-primary);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.image-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.02) 40%, rgba(255, 255, 255, 0.02) 60%, transparent 60%),
    linear-gradient(-45deg, transparent 40%, rgba(255, 255, 255, 0.02) 40%, rgba(255, 255, 255, 0.02) 60%, transparent 60%);
  background-size: 30px 30px;
}

.image-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
}

.badge-icon {
  font-size: 1.5rem;
}

.badge-text {
  font-weight: 600;
  color: var(--primary);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-check {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.feature-text {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ==================== */
/* SERVICES SECTION - MODERN */
/* ==================== */

.services-overview-section {
  padding: 6rem 0;
  background: var(--bg-light);
}

.services-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card-modern {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 1rem;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
}

.service-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}

.service-card-modern.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(59, 130, 246, 0.03) 100%);
}

.featured-badge {
  position: absolute;
  top: -12px;
  right: 2rem;
  padding: 0.5rem 1rem;
  background: var(--gradient-accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 999px;
}

.service-card-header {
  margin-bottom: 1.5rem;
}

.service-icon-modern {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  border-radius: 1rem;
  color: white;
  margin-bottom: 1.5rem;
}

.service-card-modern h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.service-card-modern p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-features-list {
  list-style: none;
  margin-bottom: 1.5rem;
  padding: 0;
}

.service-features-list li {
  padding: 0.5rem 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-link:hover {
  gap: 0.75rem;
}

/* ==================== */
/* WHY CHOOSE SECTION */
/* ==================== */

.why-choose-section {
  padding: 6rem 0;
  background: var(--bg-white);
}

.features-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.feature-card-modern {
  text-align: center;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-card-modern:hover {
  background: var(--bg-white);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-lighter);
}

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  border-radius: 1rem;
  color: white;
}

.feature-card-modern h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.feature-card-modern p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ==================== */
/* STATS SECTION - MODERN */
/* ==================== */

.stats-section-modern {
  position: relative;
  padding: 6rem 0;
  background: var(--gradient-primary);
  color: var(--text-white);
  overflow: hidden;
}

.stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(96, 165, 250, 0.05) 0%, transparent 50%);
}

.stats-grid-modern {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-item-modern {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.stat-item-modern:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-lighter);
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
}

.stat-label {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* ==================== */
/* CONTACT SECTION - HOME */
/* ==================== */

.contact-section-home {
  padding: 6rem 0;
  background: var(--bg-white);
}

.contact-home-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: var(--bg-lighter);
  transform: translateX(5px);
}

.contact-method-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  border-radius: 0.75rem;
  color: white;
}

.contact-method-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contact-method-value {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-form-modern {
  background: var(--bg-light);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
}

.form-group-modern {
  margin-bottom: 1.5rem;
}

.form-group-modern label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.form-control-modern {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  background: var(--bg-white);
}

.form-control-modern:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

textarea.form-control-modern {
  resize: vertical;
  min-height: 120px;
}

.quick-contact-form {
  display: flex;
  flex-direction: column;
}

/* ==================== */
/* CTA SECTION - MODERN */
/* ==================== */

.cta-section-modern {
  padding: 5rem 0;
  background: var(--gradient-primary);
  text-align: center;
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.cta-section-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(96, 165, 250, 0.1) 0%, transparent 50%);
}

.cta-content-modern {
  position: relative;
  z-index: 1;
}

.cta-content-modern h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.cta-content-modern p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==================== */
/* SERVICES PAGE */
/* ==================== */

.services-hero,
.about-hero,
.contact-hero {
  padding: 5rem 0 3rem;
  background: var(--gradient-primary);
  color: var(--text-white);
  text-align: center;
}

.services-hero .section-title,
.about-hero .section-title,
.contact-hero .section-title {
  color: var(--text-white);
}

.services-hero .section-subtitle,
.about-hero .section-subtitle,
.contact-hero .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.services-content,
.about-content,
.contact-content {
  padding: 5rem 0;
}

/* ==================== */
/* ABOUT PAGE */
/* ==================== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text h2 {
  font-size: 1.875rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.about-text h2:first-child {
  margin-top: 0;
}

.about-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-light);
  border-radius: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  background: var(--bg-white);
  border-color: var(--accent-lighter);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.value-icon i {
  font-size: 3rem;
}

.value-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.value-item p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}

.about-image {
  position: relative;
  height: 600px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--gradient-primary);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.95), transparent);
  padding: 2rem;
  color: var(--text-white);
}

.overlay-text {
  font-size: 1.375rem;
  font-weight: 600;
  font-style: italic;
  color: var(--text-white);
  margin: 0;
}

/* ==================== */
/* CONTACT PAGE */
/* ==================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
  font-size: 1.875rem;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.form-control {
  padding: 0.875rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contact-info-wrapper {
  background: var(--bg-light);
  padding: 2.5rem;
  border-radius: 1rem;
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--border-color);
}

.contact-info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--gradient-accent);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.contact-details h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.contact-details p {
  color: var(--text-secondary);
  margin: 0.25rem 0;
}

/* ==================== */
/* FOOTER */
/* ==================== */

.main-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo-wrapper {
  margin-bottom: 1rem;
}

.footer-logo {
  height: 60px;
  max-width: 200px;
  object-fit: contain;
  margin-bottom: 1rem;
  display: block;
}

.footer-title {
  color: var(--text-white);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer-title-fallback {
  display: none;
}

.footer-logo + .footer-title-fallback {
  display: none;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-col h4 {
  color: var(--text-white);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-links,
.footer-contact {
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-lighter);
  padding-left: 5px;
}

.footer-contact li {
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact li i {
  font-size: 1.125rem;
  color: var(--accent-lighter);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ==================== */
/* ALERTS */
/* ==================== */

.alert {
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  font-size: 1rem;
}

.alert-success {
  color: #065f46;
  background-color: var(--success-bg);
  border-color: var(--success);
  animation: slideInDown 0.5s ease;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== */
/* SERVICES PAGE - MODERN */
/* ==================== */

/* Hero Section for Services */
.services-hero-modern {
  position: relative;
  padding: 8rem 0 6rem;
  background: var(--gradient-primary);
  color: var(--text-white);
  overflow: hidden;
}

.services-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: fadeInUp 1s ease;
}

.section-label-white {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-lighter);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.hero-title-large {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero-description-large {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Service Detail Cards */
.services-detail-section {
  padding: 6rem 0;
  background: var(--bg-white);
}

.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
  padding: 3rem;
  background: var(--bg-light);
  border-radius: 1.5rem;
  transition: all 0.3s ease;
}

.service-detail-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
}

.service-detail-card.reverse {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
}

.service-detail-card.reverse .service-detail-content {
  order: 2;
}

.service-detail-card.reverse .service-detail-image {
  order: 1;
}

.service-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  color: white;
  font-size: 2rem;
  font-weight: 800;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-family: 'Poppins', sans-serif;
}

.service-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--gradient-accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 999px;
  margin-bottom: 1rem;
  margin-left: 1rem;
}

.service-detail-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  line-height: 1.2;
}

.service-detail-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.service-features-advanced {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.feature-advanced {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-white);
  border-radius: 1rem;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.service-detail-card.reverse .feature-advanced {
  background: var(--bg-light);
}

.feature-advanced:hover {
  border-color: var(--accent);
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.feature-advanced-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  border-radius: 0.75rem;
  color: white;
  font-size: 1.5rem;
}

.feature-advanced-icon i {
  font-size: 1.5rem;
}

.feature-advanced h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.feature-advanced p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}

.service-specs {
  padding: 2rem;
  background: var(--bg-white);
  border-radius: 1rem;
  border-left: 4px solid var(--accent);
  margin-top: 2rem;
}

.service-detail-card.reverse .service-specs {
  background: var(--bg-light);
}

.service-specs h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.service-specs ul {
  list-style: none;
  padding: 0;
}

.service-specs ul li {
  padding: 0.75rem 0;
  color: var(--text-secondary);
  font-size: 1rem;
  position: relative;
  padding-left: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.6;
}

.service-specs ul li i {
  color: var(--accent);
  font-size: 1.125rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.service-specs ul li::before {
  display: none;
}

.service-detail-image {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--gray-200);
  height: 500px;
}

.service-detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.service-detail-card:hover .service-detail-img {
  transform: scale(1.05);
}

/* Services Detail Section Responsive */
@media (max-width: 1024px) {
  .service-detail-card {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-detail-card.reverse {
    grid-template-columns: 1fr;
  }
  
  .service-detail-image {
    height: 400px;
    order: -1; /* Always show image first on mobile */
  }
}

@media (max-width: 768px) {
  .service-detail-image {
    height: 350px;
  }
  
  .service-number {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .service-detail-image {
    height: 300px;
  }
}

/* ==================== */
/* PROCESS SECTION */
/* ==================== */

.process-section {
  padding: 6rem 0;
  background: var(--bg-light);
}

.process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 4rem auto 0;
  padding: 2rem 0;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 40px;
  top: 80px;
  width: 2px;
  height: calc(100% + 3rem);
  background: var(--gradient-accent);
  opacity: 0.3;
}

.process-step-number {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.process-step-content {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.process-step-content:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
}

.process-step-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.process-step-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Process Section Responsive */
@media (max-width: 768px) {
  .process-timeline {
    margin: 3rem auto 0;
  }
  
  .process-step {
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .process-step:not(:last-child)::after {
    left: 30px;
    top: 60px;
    height: calc(100% + 2rem);
  }
  
  .process-step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .process-step-content {
    padding: 1.5rem;
  }
  
  .process-step-content h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .process-step {
    grid-template-columns: 50px 1fr;
    gap: 1rem;
  }
  
  .process-step:not(:last-child)::after {
    left: 25px;
    top: 50px;
  }
  
  .process-step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .process-step-content {
    padding: 1.25rem;
  }
}

/* ==================== */
/* CTA SECTION - SERVICES */
/* ==================== */

.cta-section-services {
  padding: 6rem 0;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.cta-section-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
  animation: particleFloat 15s ease-in-out infinite;
}

.cta-services-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-services-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.cta-services-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.cta-services-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-services-buttons .btn-primary,
.cta-services-buttons .btn-secondary {
  min-width: 200px;
}

/* CTA Section Responsive */
@media (max-width: 768px) {
  .cta-section-services {
    padding: 4rem 0;
  }
  
  .cta-services-content h2 {
    font-size: 2rem;
  }
  
  .cta-services-content p {
    font-size: 1.125rem;
  }
  
  .cta-services-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-services-buttons .btn-primary,
  .cta-services-buttons .btn-secondary {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .cta-services-content h2 {
    font-size: 1.75rem;
  }
  
  .cta-services-content p {
    font-size: 1rem;
  }
}

/* ==================== */
/* GALLERY SLIDER SECTION */
/* ==================== */

.gallery-section {
  padding: 6rem 0;
  background: var(--bg-light);
}

.gallery-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
  overflow: hidden;
  box-sizing: border-box;
}

.gallery-slider {
  position: relative;
  display: block;
  width: 100%;
  height: 600px;
}

.gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  background: var(--gray-200);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.gallery-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

/* Slider Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: var(--shadow-lg);
}

.slider-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-xl);
}

.slider-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.slider-btn-prev {
  left: 0;
}

.slider-btn-next {
  right: 0;
}

.slider-btn svg {
  width: 24px;
  height: 24px;
}

/* Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slider-dot:hover {
  background: var(--gray-400);
  transform: scale(1.2);
}

.slider-dot.active {
  background: var(--accent);
  width: 32px;
  border-radius: 999px;
}

/* Image Preview Styling */
.about-preview-image img.preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Keyboard Navigation Indicator */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.slider-btn:focus {
  outline: 3px solid var(--accent-lighter);
  outline-offset: 3px;
}

/* Loading State for Images */
.gallery-slide img {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ==================== */
/* GALLERY RESPONSIVE */
/* ==================== */

@media (max-width: 1024px) {
  .gallery-slider {
    height: 500px;
  }
  
  .gallery-slider-container {
    padding: 0 3rem;
  }
  
  .slider-btn {
    width: 50px;
    height: 50px;
  }
  
  .slider-btn svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 768px) {
  .gallery-slider {
    height: 400px;
  }
  
  .gallery-slider-container {
    padding: 0 2.5rem;
  }
  
  .slider-btn {
    width: 45px;
    height: 45px;
  }
  
  .slider-btn svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .gallery-slider {
    height: 300px;
  }
  
  .gallery-slider-container {
    padding: 0 2rem;
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
  }
  
  .slider-btn svg {
    width: 16px;
    height: 16px;
  }
  
  .slider-dots {
    gap: 0.5rem;
    margin-top: 1.5rem;
  }
  
  .slider-dot {
    width: 10px;
    height: 10px;
  }
  
  .slider-dot.active {
    width: 24px;
  }
}

/* ==================== */
/* VIDEO SLIDER SECTION */
/* ==================== */

.video-section {
  padding: 6rem 0;
  background: var(--bg-white);
}

.video-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
  overflow: hidden;
  box-sizing: border-box;
}

.video-slider {
  position: relative;
  display: block;
  width: 100%;
  height: 600px;
}

.video-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  background: var(--gray-900);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.video-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

/* Blurred background video */
.video-slide .video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(40px);
  transform: scale(1.1);
  opacity: 0.6;
  z-index: 1;
}

/* Main sharp video on top */
.video-slide .video-foreground {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 720px;
  object-fit: contain;
  object-position: center;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  z-index: 2;
}

/* Video Slider Responsive */
@media (max-width: 1024px) {
  .video-slider {
    height: 500px;
  }
  
  .video-slider-container {
    padding: 0 3rem;
  }
  
  .video-slide .video-foreground {
    max-height: 500px;
  }
}

@media (max-width: 768px) {
  .video-slider {
    height: 400px;
  }
  
  .video-slider-container {
    padding: 0 2.5rem;
  }
  
  .video-slide .video-foreground {
    max-height: 400px;
  }
}

@media (max-width: 480px) {
  .video-slider {
    height: 300px;
  }
  
  .video-slider-container {
    padding: 0 2rem;
  }
  
  .video-slide .video-foreground {
    max-height: 300px;
  }
  
  .video-slide .video-background {
    filter: blur(25px);
  }
}