:root {
  --primary-color: #003E7E;
  --primary-dark: #002B57;
  --primary-light: #0A5BB5;
  --secondary-color: #E31E24;
  --secondary-dark: #B9151A;
  --secondary-light: #FF4A4F;
  --dark-color: #0F172A;
  --dark-alt: #1E293B;
  --gray-dark: #334155;
  --gray-medium: #64748B;
  --gray-light: #CBD5E1;
  --light-color: #F8FAFC;
  --white-color: #FFFFFF;
  --success-color: #16A34A;
  --warning-color: #F59E0B;
  --danger-color: #DC2626;
  --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-heavy: 0 12px 40px rgba(0, 0, 0, 0.15);
  --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --font-primary: 'Inter', 'Segoe UI', sans-serif;
  --font-heading: 'Inter', 'Segoe UI', sans-serif;
  --max-width: 1280px;
  --section-padding: 100px 0;
  --container-padding: 0 24px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--dark-color);
  background-color: var(--white-color);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* ------------------------------------
   LOADER
------------------------------------ */
.cc-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-dark, #0a1929);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.cc-loader.cc-hidden {
  opacity: 0;
  visibility: hidden;
}

.cc-loader-content {
  text-align: center;
  z-index: 2;
  width: 90%;
  max-width: 400px;
}

.cc-loader-logo {
  margin-bottom: 30px;
  animation: ccPulse 2s infinite;
}

.cc-loader-logo img {
  max-width: 280px;
  height: auto;
  filter: brightness(0) invert(1);
}

.cc-loader-progress {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin-bottom: 20px;
  overflow: hidden;
}
.cc-btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all var(--transition-fast, 0.3s ease);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
}

.cc-btn-secondary {
  background: var(--secondary-color, #ffd966);
  color: var(--primary-dark, #0a1929);
}

.cc-btn-secondary:hover {
  background: var(--secondary-dark, #ffcd4d);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 217, 102, 0.3);
}
.cc-slide-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.8s;
}

.cc-btn-outline {
  background: transparent;
  color: var(--white-color, #ffffff);
  border-color: var(--white-color, #ffffff);
}

.cc-btn-outline:hover {
  background: var(--white-color, #ffffff);
  color: var(--primary-dark, #0a1929);
  transform: translateY(-2px);
}

.cc-btn-primary {
  background: var(--primary-color, #0a1929);
  color: var(--white-color, #ffffff);
}

.cc-btn-primary:hover {
  background: var(--primary-dark, #1a2b3e);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(10, 25, 41, 0.2);
}

.cc-btn-outline-dark {
  background: transparent;
  color: var(--primary-color, #0a1929);
  border-color: var(--primary-color, #0a1929);
}

.cc-btn-outline-dark:hover {
  background: var(--primary-color, #0a1929);
  color: var(--white-color, #ffffff);
}

.cc-loader-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--secondary-color, #ffd966);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.cc-loader-text {
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
}

.cc-loader-dots {
  display: inline-block;
  animation: ccDots 1.5s infinite;
  width: 24px;
  text-align: left;
}

.cc-loader-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cc-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: ccParticleFloat 8s infinite;
}

.cc-particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.cc-particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 1s; }
.cc-particle:nth-child(3) { top: 80%; left: 20%; animation-delay: 2s; }
.cc-particle:nth-child(4) { top: 30%; left: 90%; animation-delay: 3s; }
.cc-particle:nth-child(5) { top: 70%; left: 40%; animation-delay: 4s; }
.cc-particle:nth-child(6) { top: 40%; left: 60%; animation-delay: 5s; }

@keyframes ccPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes ccDots {
  0% { opacity: 0.2; }
  20% { opacity: 1; }
  100% { opacity: 0.2; }
}

@keyframes ccParticleFloat {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-200px) rotate(360deg); opacity: 0; }
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-color);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p {
  color: var(--gray-dark);
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section {
  padding: var(--section-padding);
}

.section-light {
  background-color: var(--light-color);
}

.section-dark {
  background-color: var(--dark-color);
  color: var(--white-color);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white-color);
}

.section-dark p {
  color: var(--gray-light);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-medium);
  max-width: 640px;
  margin: 24px auto 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--font-primary);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-outline {
  background-color: transparent;
  color: var(--white-color);
  border: 2px solid var(--white-color);
}

.btn-outline:hover {
  background-color: var(--white-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline-dark:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
}

/* Hero Styles */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
 
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(227,30,36,0.08) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white-color), transparent);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  color: var(--white-color);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--white-color);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.15;
}

.hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Page Hero (smaller for inner pages) */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(227,30,36,0.06) 0%, transparent 40%);
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--white-color);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--white-color);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb .current {
  color: var(--white-color);
  font-weight: 500;
}

/* Cards */
.card {
  background: var(--white-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all var(--transition-fast);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  transition: transform var(--transition-medium);
}

.card:hover .card-img {
  transform: scale(1.05);
}

.card-img-wrapper {
  overflow: hidden;
}

.card-body {
  padding: 28px;
}

.card-body h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.card-body p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Icon Cards */
.icon-card {
  background: var(--white-color);
  border-radius: 8px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.icon-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(0, 62, 126, 0.1);
}

.icon-card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 12px;
  color: var(--white-color);
  font-size: 1.5rem;
}

.icon-card h4 {
  margin-bottom: 12px;
  color: var(--dark-color);
}

.icon-card p {
  font-size: 0.9rem;
  color: var(--gray-medium);
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  padding: 80px 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white-color);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Content Blocks */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-block.reverse {
  direction: rtl;
}

.content-block.reverse > * {
  direction: ltr;
}

.content-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  position: relative;
}

.content-image .placeholder-img {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 3rem;
}

.content-text h2 {
  margin-bottom: 20px;
}

.content-text h3 {
  margin-bottom: 16px;
  color: var(--primary-color);
}

.content-text p {
  margin-bottom: 16px;
}

.content-text ul {
  margin-bottom: 24px;
}

.content-text ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--gray-dark);
}

.content-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--secondary-color);
  border-radius: 50%;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(227,30,36,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  color: var(--white-color);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 32px;
}

/* Feature List */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white-color);
  border-radius: 8px;
  box-shadow: var(--shadow-light);
  transition: all var(--transition-fast);
}

.feature-item:hover {
  box-shadow: var(--shadow-medium);
  transform: translateX(4px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 10px;
  color: var(--white-color);
  font-size: 1.3rem;
}

.feature-content h4 {
  margin-bottom: 6px;
}

.feature-content p {
  font-size: 0.9rem;
  color: var(--gray-medium);
  margin-bottom: 0;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-light);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 30px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -31px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--primary-color);
  border: 3px solid var(--white-color);
  box-shadow: 0 0 0 2px var(--primary-color);
  border-radius: 50%;
}

.timeline-item h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 0.95rem;
}

/* Values Grid */
.value-card {
  padding: 32px;
  border-left: 3px solid var(--secondary-color);
  background: var(--white-color);
  box-shadow: var(--shadow-light);
  transition: all var(--transition-fast);
}

.value-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
}

.value-card h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--gray-medium);
  margin-bottom: 0;
}

/* Contact Form */
.contact-form {
  background: var(--white-color);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark-color);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--dark-color);
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 62, 126, 0.1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--light-color);
  border-radius: 8px;
  margin-bottom: 20px;
  transition: all var(--transition-fast);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-light);
}

.contact-info-card .info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: var(--white-color);
  border-radius: 8px;
  font-size: 1.1rem;
}

.contact-info-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 0.9rem;
  color: var(--gray-medium);
  margin-bottom: 0;
}

.contact-info-card a {
  color: var(--primary-color);
  font-weight: 500;
}

.contact-info-card a:hover {
  color: var(--primary-light);
}

/* Enhanced Loader */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  position: relative;
  z-index: 2;
  animation: loaderFloat 3s ease-in-out infinite;
}

@keyframes loaderFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.loader-logo {
  width: 180px;
  height: auto;
  margin-bottom: 30px;
  position: relative;
  animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 5px rgba(0,62,126,0.3)); }
  50% { filter: drop-shadow(0 0 20px rgba(227,30,36,0.5)); }
}

.loader-logo img {
  width: 100%;
  height: auto;
  animation: logoPulse 1.5s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.loader-progress {
  width: 240px;
  height: 3px;
  background: var(--gray-light);
  border-radius: 30px;
  margin: 20px auto 15px;
  overflow: hidden;
  position: relative;
}

.loader-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
  background-size: 200% 100%;
  border-radius: 30px;
  transition: width 0.3s ease;
  animation: progressShimmer 2s linear infinite;
}

@keyframes progressShimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.loader-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 15px;
}

.loader-dots {
  display: inline-block;
  animation: dots 1.5s steps(4, end) infinite;
  width: 20px;
  text-align: left;
}

@keyframes dots {
  0%, 20% { content: ''; opacity: 0; }
  40% { content: '.'; opacity: 0.3; }
  60% { content: '..'; opacity: 0.6; }
  80%, 100% { content: '...'; opacity: 1; }
}

.loader-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 4s ease-in-out infinite;
}

.particle:nth-child(1) {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  top: 60%;
  left: 85%;
  width: 10px;
  height: 10px;
  animation-delay: 0.5s;
}

.particle:nth-child(3) {
  top: 80%;
  left: 30%;
  width: 8px;
  height: 8px;
  animation-delay: 1s;
}

.particle:nth-child(4) {
  top: 30%;
  left: 80%;
  width: 4px;
  height: 4px;
  animation-delay: 1.5s;
}

.particle:nth-child(5) {
  top: 70%;
  left: 45%;
  width: 12px;
  height: 12px;
  animation-delay: 2s;
}

.particle:nth-child(6) {
  top: 40%;
  left: 60%;
  width: 5px;
  height: 5px;
  animation-delay: 2.5s;
}

@keyframes particleFloat {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-100vh) rotate(720deg);
    opacity: 0;
  }
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Utility */
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-40 { margin-top: 40px; }

/* Responsive */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .content-block.reverse {
    direction: ltr;
  }

  .hero {
    min-height: 70vh;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }
   .cc-btn {
    width: 100%;
    text-align: center;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 60vh;
    padding-top: 100px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .page-hero {
    padding: 130px 0 60px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .contact-form {
    padding: 24px;
  }

  .stat-item {
    padding: 16px 10px;
  }

  .loader-logo {
    width: 140px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}