* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-primary);
}


:root {
  --font-primary: 'Zimora Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-secondary: 'Zimora Tech', 'Courier New', monospace;
  --font-display: 'Zimora Display', Georgia, serif;
  --font-code: 'Zimora Code', 'Fira Code', monospace;
  --font-fallback: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --primary-color: #ff4d00;
  --primary-dark: #e64300;
  --primary-light: #ff6633;
  --dark-bg: #0f172a;
  --dark-secondary: #1e293b;
  --text-primary: #ffffff;
  --text-secondary: #cbd5e1;
  --text-muted: #64748b;
  --card-bg: #ffffff;
  --card-hover: #f8fafc;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --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);
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  color: #374151;
  line-height: 1.6;
  overflow-x: hidden;
}

/* TOP HEADER */
.top-header {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  padding: 12px 0;
  font-size: 12px;
  border-bottom: 1px solid rgba(255, 77, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.top-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 77, 0, 0.1), transparent);
  animation: topHeaderShimmer 8s ease-in-out infinite;
}

@keyframes topHeaderShimmer {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.top-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.top-header-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-email {
  color: #e0e0e0;
  text-decoration: none;
  transition: var(--transition-base);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-email::before {
  content: '✉';
  font-size: 14px;
  color: var(--primary-color);
}

.header-email:hover {
  color: var(--primary-color);
  transform: translateY(-1px);
}

.header-time {
  color: #b0b0b0;
  font-family: 'Courier New', monospace;
  font-weight: 600;
  background: rgba(255, 77, 0, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 77, 0, 0.2);
}

.top-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-icon {
  color: #e0e0e0;
  font-size: 16px;
  transition: var(--transition-base);
  text-decoration: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
  color: var(--primary-color);
  transform: translateY(-3px) scale(1.1);
  background: rgba(255, 77, 0, 0.1);
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(255, 77, 0, 0.3);
}

/* MAIN NAVBAR */
.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: var(--transition-base);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.navbar:hover::before {
  opacity: 0.3;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
  height: 75px;
}

.logo-img {
  height: 100px;
  width: auto;
  transition: var(--transition-base);
  position: absolute;
  top: 50%;
  left: -70px;
  transform: translateY(-50%);
}

.logo:hover .logo-img {
  transform: translateY(-50%) scale(1.05);
}

nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 40px;
}

nav a {
  color: #2c3e50;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition-base);
  position: relative;
  padding: 8px 12px;
  border-radius: 6px;
  background: transparent;
}

nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition-base);
  transform: translateX(-50%);
}

nav a:hover {
  color: var(--primary-color);
  background: rgba(255, 77, 0, 0.08);
  transform: translateY(-1px);
}

nav a:hover::before {
  width: 80%;
}

nav a.active {
  color: var(--primary-color);
  background: rgba(255, 77, 0, 0.1);
}

nav a.active::before {
  width: 80%;
}

.nav-quote-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border: none;
  color: white;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 14px;
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: 0 4px 15px rgba(255, 77, 0, 0.3);
  margin-left: 12px;
  position: relative;
  overflow: hidden;
}

.nav-quote-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition-slow);
}

.nav-quote-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(255, 77, 0, 0.4);
}

.nav-quote-btn:hover::before {
  left: 100%;
}

.nav-quote-btn:active {
  transform: translateY(0) scale(0.98);
}

.menu {
  display: none;
  background: linear-gradient(135deg, rgba(255, 77, 0, 0.1), rgba(255, 77, 0, 0.05));
  border: 1px solid rgba(255, 77, 0, 0.2);
  color: var(--primary-color);
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-base);
  font-size: 18px;
}

.menu:hover {
  background: linear-gradient(135deg, rgba(255, 77, 0, 0.2), rgba(255, 77, 0, 0.1));
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 77, 0, 0.2);
}

.menu.open {
  transform: rotate(90deg);
}

/* Navigation Dropdown */
.nav-dropdown {
  position: relative;
}

.services-link {
  display: flex;
  align-items: center;
  gap: 5px;
}

.services-link i {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .services-link i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 320px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(255, 77, 0, 0.1);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: flex-start;
  padding: 12px 20px;
  color: #2c3e50;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  border-radius: 4px;
  margin: 2px 8px;
  gap: 12px;
}

.dropdown-menu a:hover {
  background: rgba(255, 77, 0, 0.1);
  color: var(--primary-color);
  transform: translateX(4px);
}

.dropdown-menu a i {
  margin-right: 8px;
  width: 16px;
  text-align: center;
  color: var(--primary-color);
  flex-shrink: 0;
}

.dropdown-service-content {
  flex: 1;
}

.dropdown-service-title {
  font-weight: 600;
  margin-bottom: 2px;
  color: #2c3e50;
}

.dropdown-service-desc {
  font-size: 12px;
  color: #666;
  line-height: 1.3;
}

/* ABOUT HERO SECTION */
.about-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.pexels.com/photos/269077/pexels-photo-269077.jpeg?cs=srgb&dl=pexels-pixabay-269077.jpg&fm=jpg') center/cover no-repeat;
  background-attachment: fixed;
  animation: heroZoom 25s ease-in-out infinite alternate;
  filter: brightness(0.8) contrast(1.1);
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 14, 39, 0.85) 0%,
    rgba(10, 14, 39, 0.80) 25%,
    rgba(10, 14, 39, 0.75) 50%,
    rgba(10, 14, 39, 0.80) 75%,
    rgba(10, 14, 39, 0.85) 100%
  );
  backdrop-filter: blur(2px);
}

.about-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-hero-content {
  max-width: 800px;
  animation: slideInLeft 1.2s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-hero-subtitle {
  color: var(--primary-color);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  animation: fadeInUp 1.2s ease-out 0.2s both;
  position: relative;
}

.about-hero-subtitle::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  border-radius: 1px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-hero-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color));
  border: 1px dashed var(--primary-color);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}

.about-hero-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  animation: lineShimmer 3s ease-in-out infinite;
}

@keyframes lineShimmer {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.about-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.2;
  font-family: var(--font-display);
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -1px;
  animation: fadeInUp 1.2s ease-out 0.4s both;
  text-shadow: 
    2px 2px 4px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(0, 0, 0, 0.3);
}

.about-hero-title .text-primary {
  color: var(--primary-color);
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  position: relative;
  display: inline-block;
  text-shadow: 
    2px 2px 4px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(255, 77, 0, 0.3);
}

.about-hero-description {
  font-size: 1.1rem;
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 600px;
  animation: fadeInUp 1.2s ease-out 0.6s both;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  font-weight: 400;
}

/* MAIN CONTENT SECTION */
.about-main-content {
  padding: 120px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.about-main-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  animation: contentShimmer 10s ease-in-out infinite;
}

@keyframes contentShimmer {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.6; }
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #1a1f2e;
  font-family: var(--font-display);
  position: relative;
  margin-bottom: 40px;
  text-align: center;
  background: linear-gradient(135deg, #1a1f2e, var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(255, 77, 0, 0.3);
}

.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.about-text {
  animation: slideInLeft 1.2s ease-out 0.3s both;
  position: relative;
}

.about-text::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(135deg, rgba(255, 77, 0, 0.03), transparent);
  border-radius: 20px;
  z-index: -1;
}

.about-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 30px;
  position: relative;
  padding-left: 20px;
}

.about-description::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color), transparent);
  border-radius: 2px;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 60px;
}

.mission-box, .vision-box {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.08),
    0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 77, 0, 0.1);
}

.mission-box::before, .vision-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-box::after, .vision-box::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 77, 0, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.mission-box:hover::before, .vision-box:hover::before {
  transform: scaleX(1);
}

.mission-box:hover::after, .vision-box:hover::after {
  opacity: 1;
}

.mission-box:hover, .vision-box:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.15),
    0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 77, 0, 0.2);
}

.icon-box {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 8px 25px rgba(255, 77, 0, 0.3);
}

.icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mission-box:hover .icon-box, .vision-box:hover .icon-box {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(255, 77, 0, 0.4);
}

.mission-box:hover .icon-box::before, .vision-box:hover .icon-box::before {
  opacity: 1;
}

.icon-box i {
  font-size: 28px;
  color: white;
  transition: transform 0.3s ease;
}

.mission-box:hover .icon-box i, .vision-box:hover .icon-box i {
  transform: scale(1.1);
}

.mission-box h3, .vision-box h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1f2e;
  font-family: var(--font-primary);
  margin-bottom: 15px;
  position: relative;
  transition: color 0.3s ease;
}

.mission-box:hover h3, .vision-box:hover h3 {
  color: var(--primary-color);
}

.mission-box p, .vision-box p {
  color: #64748b;
  line-height: 1.7;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.mission-box:hover p, .vision-box:hover p {
  color: #475569;
}

.about-image-section {
  animation: slideInRight 1.2s ease-out 0.5s both;
  position: relative;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.main-image {
  margin-bottom: 25px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.15),
    0 10px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 77, 0, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.main-image:hover::before {
  opacity: 1;
}

.main-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-image:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.main-image:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 30px 70px rgba(0, 0, 0, 0.2),
    0 15px 30px rgba(0, 0, 0, 0.15);
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.grid-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.12),
    0 5px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.grid-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 77, 0, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.grid-image:hover::before {
  opacity: 1;
}

.grid-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.grid-image:hover img {
  transform: scale(1.1);
  filter: brightness(1.05);
}

.grid-image:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.18),
    0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Add subtle floating animation to images */
@keyframes imageFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

.main-image { animation: imageFloat 8s ease-in-out infinite; }
.grid-image:nth-child(1) { animation: imageFloat 8s ease-in-out infinite 2s; }
.grid-image:nth-child(2) { animation: imageFloat 8s ease-in-out infinite 4s; }

/* Responsive adjustments for main content */
@media (max-width: 768px) {
  .about-main-content {
    padding: 80px 0;
  }
  
  .about-content-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .mission-vision {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
  }
  
  .mission-box, .vision-box {
    padding: 30px 25px;
  }
  
  .icon-box {
    width: 60px;
    height: 60px;
  }
  
  .icon-box i {
    font-size: 24px;
  }
  
  .mission-box h3, .vision-box h3 {
    font-size: 1.3rem;
  }
  
  .mission-box p, .vision-box p {
    font-size: 1rem;
  }
  
  .main-image img {
    height: 250px;
  }
  
  .image-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .grid-image img {
    height: 200px;
  }
}

/* VALUES SECTION */
.values-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.values-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  animation: valuesShimmer 8s ease-in-out infinite;
}

@keyframes valuesShimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

.values-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.values-section .section-title {
  text-align: center;
  margin-bottom: 80px;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  font-family: var(--font-display);
  background: linear-gradient(135deg, #1a1f2e, var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: block;
  width: 100%;
  left: 0;
  transform: none;
}

.values-section .section-title::after {
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  box-shadow: 0 0 20px rgba(255, 77, 0, 0.3);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.value-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 50px 35px;
  border-radius: 24px;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.08),
    0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 77, 0, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card:hover::after {
  opacity: 1;
}

.value-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.15),
    0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 77, 0, 0.2);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 8px 25px rgba(255, 77, 0, 0.3);
}

.value-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(255, 77, 0, 0.4);
}

.value-card:hover .value-icon::before {
  opacity: 1;
}

.value-icon i {
  font-size: 32px;
  color: white;
  transition: transform 0.3s ease;
}

.value-card:hover .value-icon i {
  transform: scale(1.1);
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1f2e;
  font-family: var(--font-primary);
  margin-bottom: 20px;
  position: relative;
  transition: color 0.3s ease;
}

.value-card:hover h3 {
  color: var(--primary-color);
}

.value-card p {
  color: #64748b;
  line-height: 1.7;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.value-card:hover p {
  color: #475569;
}

/* Add floating animation to value cards */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.value-card:nth-child(1) { animation: float 6s ease-in-out infinite; }
.value-card:nth-child(2) { animation: float 6s ease-in-out infinite 1.5s; }
.value-card:nth-child(3) { animation: float 6s ease-in-out infinite 3s; }
.value-card:nth-child(4) { animation: float 6s ease-in-out infinite 4.5s; }

/* Responsive adjustments */
@media (max-width: 768px) {
  .values-section {
    padding: 80px 0;
  }
  
  .values-section .section-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 60px;
    text-align: center;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .value-card {
    padding: 40px 25px;
  }
  
  .value-icon {
    width: 70px;
    height: 70px;
  }
  
  .value-icon i {
    font-size: 28px;
  }
  
  .value-card h3 {
    font-size: 1.3rem;
  }
  
  .value-card p {
    font-size: 1rem;
  }
}

/* STATS SECTION */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 10px;
  color: white;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  font-weight: 500;
}

.footer {
  background: linear-gradient(135deg, #0b0f1c 0%, #1a1f2e 50%, #0b0f1c 100%);
  color: var(--text-secondary);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 77, 0, 0.2);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  animation: footerShimmer 3s ease-in-out infinite;
}

@keyframes footerShimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  margin-bottom: 20px;
  text-align: left;
}

.footer-logo-img {
  max-height: 100px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.footer-logo-img:hover {
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 77, 0, 0.3));
  transform: scale(1.05);
}

.footer-section h3 {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 700;
  font-family: var(--font-primary);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 1px;
}

.footer-section p,
.footer-section ul {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.footer-section ul li:hover {
  transform: translateX(5px);
}

.footer-section a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.footer-section a:hover {
  color: var(--primary-color);
}

.footer-section a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.footer-section a:hover::after {
  width: 100%;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  font-size: 16px;
}

.footer-social a:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 77, 0, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary-color);
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer {
    padding: 60px 0 30px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
}


/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .top-header {
    display: none;
  }
  
  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 20px;
    width: 280px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 77, 0, 0.1);
  }
  
  nav.active {
    display: flex;
  }
  
  nav a {
    padding: 10px 12px;
    margin: 2px 0;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s ease;
  }
  
  nav a:hover {
    background: rgba(255, 77, 0, 0.1);
    transform: translateX(4px);
  }
  
  /* Mobile dropdown styles */
  .nav-dropdown {
    width: 100%;
  }
  
  .services-link {
    justify-content: space-between;
    padding: 12px;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    box-shadow: none;
    border: none;
    background: rgba(255, 77, 0, 0.05);
    margin-top: 8px;
    border-radius: 8px;
    padding: 8px;
  }
  
  .dropdown-menu a {
    margin: 4px 0;
    padding: 8px 12px;
    font-size: 13px;
  }
  
  .nav-quote-btn {
    width: 100%;
    margin-left: 0;
    margin-top: 8px;
    text-align: center;
    padding: 10px 12px;
    font-size: 14px;
  }
  
  .menu {
    display: block;
  }
  
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 999;
  }
  
  .menu-overlay.active {
    display: block;
  }
  
  .logo-img {
    height: 65px;
    left: 0px;
  }
  
  .about-hero {
    min-height: 50vh;
  }
  
  .about-hero-container {
    padding: 0 20px;
  }
  
  .about-hero-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  
  .about-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .mission-vision {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .values-section .section-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
    margin-bottom: 50px;
    text-align: center;
  }
  
  .logo-img {
    height: 60px;
    left: 0px;
  }
  
  .about-hero-container {
    padding: 0 16px;
  }
  
  .about-hero-title {
    font-size: clamp(1.6rem, 10vw, 2.2rem);
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .image-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   NEWSLETTER SUBSCRIPTION STYLES
   ======================================== */

.newsletter-form {
  margin-top: 20px;
}

.newsletter-input-group {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.newsletter-input-group input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid rgba(255, 77, 0, 0.2);
  border-radius: 8px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.newsletter-input-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 77, 0, 0.1);
}

.newsletter-input-group input::placeholder {
  color: #999;
}

.newsletter-btn {
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-btn:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 77, 0, 0.3);
}

.newsletter-btn:active {
  transform: translateY(0);
}

.newsletter-message {
  margin-top: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  text-align: center;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.newsletter-message.show {
  opacity: 1;
  transform: translateY(0);
}

.newsletter-message.success {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.newsletter-message.error {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.newsletter-benefits {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #666;
}

.benefit-item i {
  color: var(--primary-color);
  font-size: 12px;
}

/* Newsletter responsive styles */
@media (max-width: 768px) {
  .newsletter-input-group {
    flex-direction: column;
  }
  
  .newsletter-btn {
    width: 100%;
  }
  
  .newsletter-benefits {
    margin-top: 16px;
  }
  
  .benefit-item {
    font-size: 12px;
  }
}

/* FOOTER LOGO STYLES */
.footer-logo {
  margin-bottom: 20px;
  text-align: left;
}

.footer-logo-img {
  max-height: 100px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.footer-logo-img:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 77, 0, 0.3));
    transform: scale(1.05);
}


.whatsapp-float {
    position: fixed;           /* This is the key! */
    bottom: 20px;              /* distance from bottom */
    right: 20px;               /* distance from right */
    z-index: 99997;            /* lower than chatbot toggle */
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

.whatsapp-float img {
    width: 25px;
    height: 25px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(255, 77, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 77, 0, 0.4);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
}

.back-to-top:active {
    transform: translateY(-1px) scale(1.05);
}

.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-2px);
}

/* Responsive adjustments for floating buttons */
@media (max-width: 768px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 16px;
        bottom: 15px;
        left: 15px;
    }
    
    .whatsapp-float {
        bottom: 15px !important;
        right: 15px !important;
        width: 45px !important;
        height: 45px !important;
    }
}

/* MISSION & VISION SECTION */
.mission-vision-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.mission-vision-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  animation: missionVisionShimmer 8s ease-in-out infinite;
}

@keyframes missionVisionShimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

.mission-vision-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.mission-vision-header {
  text-align: center;
  margin-bottom: 30px;
}

.mission-vision-header .section-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  font-family: var(--font-display);
  background: linear-gradient(135deg, #1a1f2e, var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.mission-vision-header .section-description {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 60px;
  max-width: 1000px;
  width: 100%;
}

.mission-box, .vision-box {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.08),
    0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 77, 0, 0.1);
}

.mission-box::before, .vision-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-box::after, .vision-box::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 77, 0, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.mission-box:hover::before, .vision-box:hover::before {
  transform: scaleX(1);
}

.mission-box:hover::after, .vision-box:hover::after {
  opacity: 1;
}

.mission-box:hover, .vision-box:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.15),
    0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 77, 0, 0.2);
}

.icon-box {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 8px 25px rgba(255, 77, 0, 0.3);
}

.icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mission-box:hover .icon-box, .vision-box:hover .icon-box {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(255, 77, 0, 0.4);
}

.mission-box:hover .icon-box::before, .vision-box:hover .icon-box::before {
  opacity: 1;
}

.icon-box i {
  font-size: 28px;
  color: white;
  transition: transform 0.3s ease;
}

.mission-box:hover .icon-box i, .vision-box:hover .icon-box i {
  transform: scale(1.1);
}

.mission-box h3, .vision-box h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1f2e;
  font-family: var(--font-primary);
  margin-bottom: 15px;
  position: relative;
  transition: color 0.3s ease;
}

.mission-box:hover h3, .vision-box:hover h3 {
  color: var(--primary-color);
}

.mission-box p, .vision-box p {
  color: #64748b;
  line-height: 1.7;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.mission-box:hover p, .vision-box:hover p {
  color: #475569;
}

/* Responsive adjustments for mission-vision section */
@media (max-width: 768px) {
  .mission-vision-section {
    padding: 80px 0;
  }
  
  .mission-vision-header .section-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  
  .mission-vision {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .mission-box, .vision-box {
    padding: 30px 25px;
  }
  
  .icon-box {
    width: 60px;
    height: 60px;
  }
  
  .icon-box i {
    font-size: 24px;
  }
  
  .mission-box h3, .vision-box h3 {
    font-size: 1.3rem;
  }
  
  .mission-box p, .vision-box p {
    font-size: 1rem;
  }
}

/* TEAM SECTION STYLES */
.team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.team-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: teamShimmer 8s ease-in-out infinite;
}

@keyframes teamShimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    font-family: var(--font-display);
    background: linear-gradient(135deg, #1a1f2e, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 60px;
}

.team-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 77, 0, 0.1);
    display: flex;
    align-items: stretch;
}

.team-member:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 77, 0, 0.2);
}

.team-member-image {
    position: relative;
    overflow: hidden;
    min-height: 350px;
    width: 40%;
    flex-shrink: 0;
}

.team-member-image img {
    width: 100%;
    height: auto;
    min-height: 350px;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.1);
}

.team-member:hover .team-member-image img {
    transform: scale(1.1);
}

.team-member-info {
    padding: 30px;
}

.team-member-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1f2e;
    margin-bottom: 8px;
}

.team-member-role {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member-bio {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.team-member-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 77, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
background: var(--primary-color);
color: white;
transform: translateY(-3px);
}

/* WHY CHOOSE ZIMORA SECTION */
.why-choose {
padding: 120px 0;
background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
position: relative;
overflow: hidden;
}

.why-choose::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
animation: whyChooseShimmer 8s ease-in-out infinite;
}

@keyframes whyChooseShimmer {
0%, 100% { opacity: 0.3; }
50% { opacity: 0.8; }
}

.why-choose .container {
display: flex;
flex-direction: column;
align-items: center;
position: relative;
z-index: 2;
}

.why-choose h2 {
font-size: clamp(2.2rem, 5vw, 3.2rem);
font-weight: 800;
font-family: var(--font-display);
background: linear-gradient(135deg, #1a1f2e, var(--primary-color));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-align: center;
margin-bottom: 60px;
}

.why-choose .section-description {
font-size: 1.1rem;
color: #64748b;
max-width: 700px;
margin: 0 auto 60px;
text-align: center;
line-height: 1.6;
}

.why-choose-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 40px;
max-width: 1200px;
margin: 0 auto;
width: 100%;
}

.why-choose-card {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(20px);
padding: 40px 30px;
border-radius: 20px;
box-shadow: 
0 10px 40px rgba(0, 0, 0, 0.08),
0 2px 10px rgba(0, 0, 0, 0.05);
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
border: 1px solid rgba(255, 77, 0, 0.1);
}

.why-choose-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
transform: scaleX(0);
transform-origin: left;
transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-card::after {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(255, 77, 0, 0.05) 0%, transparent 70%);
opacity: 0;
transition: opacity 0.4s ease;
pointer-events: none;
}

.why-choose-card:hover::before {
transform: scaleX(1);
}

.why-choose-card:hover::after {
opacity: 1;
}

.why-choose-card:hover {
transform: translateY(-15px) scale(1.02);
box-shadow: 
0 25px 60px rgba(0, 0, 0, 0.15),
0 10px 20px rgba(0, 0, 0, 0.1);
border-color: rgba(255, 77, 0, 0.2);
}

.why-choose-icon {
width: 70px;
height: 70px;
background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 25px;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
box-shadow: 0 8px 25px rgba(255, 77, 0, 0.3);
}

.why-choose-icon::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
border-radius: 16px;
opacity: 0;
transition: opacity 0.3s ease;
}

.why-choose-card:hover .why-choose-icon {
transform: scale(1.1) rotate(5deg);
box-shadow: 0 15px 40px rgba(255, 77, 0, 0.4);
}

.why-choose-card:hover .why-choose-icon::before {
opacity: 1;
}

.why-choose-icon i {
font-size: 28px;
color: white;
transition: transform 0.3s ease;
}

.why-choose-card:hover .why-choose-icon i {
transform: scale(1.1);
}

.why-choose-card h3 {
font-size: 1.4rem;
font-weight: 700;
color: #1a1f2e;
font-family: var(--font-primary);
margin-bottom: 15px;
position: relative;
transition: color 0.3s ease;
}

.why-choose-card:hover h3 {
color: var(--primary-color);
}

.why-choose-card p {
color: #64748b;
line-height: 1.7;
font-size: 1.05rem;
transition: color 0.3s ease;
}

.why-choose-card:hover p {
color: #475569;
}

.why-choose-cta {
display: flex;
gap: 20px;
justify-content: center;
margin-top: 60px;
flex-wrap: wrap;
}

.why-choose-cta .btn-primary {
background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
color: white;
font-weight: 700;
padding: 15px 30px;
border-radius: 25px;
border: none;
cursor: pointer;
transition: all 0.3s ease;
font-size: 1.1rem;
text-decoration: none;
display: inline-block;
}

.why-choose-cta .btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(255, 77, 0, 0.3);
}

.why-choose-cta .btn-outline {
background: transparent;
color: var(--primary-color);
border: 2px solid var(--primary-color);
font-weight: 700;
padding: 15px 30px;
border-radius: 25px;
cursor: pointer;
transition: all 0.3s ease;
font-size: 1.1rem;
text-decoration: none;
display: inline-block;
}

.why-choose-cta .btn-outline:hover {
background: var(--primary-color);
color: white;
transform: translateY(-3px);
}

/* Add floating animation to why choose cards */
@keyframes whyChooseFloat {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-8px); }
}

.why-choose-card:nth-child(1) { animation: whyChooseFloat 7s ease-in-out infinite; }
.why-choose-card:nth-child(2) { animation: whyChooseFloat 7s ease-in-out infinite 1.5s; }
.why-choose-card:nth-child(3) { animation: whyChooseFloat 7s ease-in-out infinite 3s; }
.why-choose-card:nth-child(4) { animation: whyChooseFloat 7s ease-in-out infinite 4.5s; }
.why-choose-card:nth-child(5) { animation: whyChooseFloat 7s ease-in-out infinite 6s; }

/* CTA SECTION STYLES */
.cta-section {
padding: 30px 0;
background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
color: white;
text-align: center;
position: relative;
overflow: hidden;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="10" cy="50" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="90" cy="90" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary-color);
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .team-section {
        padding: 60px 0;
    }
    
    .team-header h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-member {
        flex-direction: column;
    }
    
    .team-member-image {
        width: 100%;
    }
    
    .team-member-info {
        padding: 25px;
    }
    
    .why-choose {
        padding: 80px 0;
    }
    
    .why-choose h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-choose-card {
        padding: 30px 25px;
    }
    
    .why-choose-icon {
        width: 60px;
        height: 60px;
    }
    
    .why-choose-icon i {
        font-size: 24px;
    }
    
    .why-choose-card h3 {
        font-size: 1.3rem;
    }
    
    .why-choose-card p {
        font-size: 1rem;
    }
    
    .why-choose-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .why-choose-cta .btn-primary,
    .why-choose-cta .btn-outline {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-outline {
        width: 100%;
        max-width: 300px;
    }
}

/* STATS SECTION INSIDE HERO */
.about-hero .stats-section {
    padding: 40px 0 30px 0;
    background: transparent;
    position: relative;
    overflow: visible;
    margin-top: 30px;
}

.about-hero .stats-section::before {
    display: none;
}

.about-hero .stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.about-hero .stat-item {
    text-align: center;
    padding: 15px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    flex: 1;
    min-width: 120px;
    max-width: 160px;
}

.about-hero .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 77, 0, 0.15), transparent);
    transition: left 0.6s ease;
}

.about-hero .stat-item:hover::before {
    left: 100%;
}

.about-hero .stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.about-hero .stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    box-shadow: 0 6px 15px rgba(255, 77, 0, 0.3);
    transition: all var(--transition-base);
}

.about-hero .stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(255, 77, 0, 0.4);
}

.about-hero .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
    font-family: var(--font-secondary);
    line-height: 1;
    transition: all var(--transition-base);
}

.about-hero .stat-item:hover .stat-number {
    transform: scale(1.05);
}

.about-hero .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-top: 5px;
}

/* Responsive Design for stats inside hero */
@media (max-width: 768px) {
    .about-hero .stats-section {
        padding: 40px 0 30px 0;
        margin-top: 30px;
    }
    
    .about-hero .stats-grid {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .about-hero .stat-item {
        padding: 25px 15px;
        min-width: 120px;
        max-width: 160px;
    }
    
    .about-hero .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .about-hero .stat-number {
        font-size: 2.2rem;
    }
    
    .about-hero .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .about-hero .stats-section {
        padding: 30px 0 20px 0;
        margin-top: 20px;
    }
    
    .about-hero .stats-grid {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .about-hero .stat-item {
        padding: 20px 10px;
        min-width: 100px;
        max-width: 140px;
    }
    
    .about-hero .stat-number {
        font-size: 2rem;
    }
    
    .about-hero .stat-label {
        font-size: 0.85rem;
    }
}

/* STATS SECTION */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 77, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 77, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: 0 10px 25px rgba(255, 77, 0, 0.3);
    transition: all var(--transition-base);
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(255, 77, 0, 0.4);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: var(--font-secondary);
    line-height: 1;
    transition: all var(--transition-base);
}

.stat-item:hover .stat-number {
    transform: scale(1.05);
}

.stat-label {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* Counter animation */
.stat-number.animated {
    animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-section {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-item {
        padding: 30px 20px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-item {
        padding: 25px 20px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
}