/* ===== ENHANCED GLOBAL STYLES ===== */
:root {
  --primary-color: #f97316;
  --secondary-color: #ff9e00;
  --accent-color: #ffb700;
  --dark-color: #1f2937;
  --light-color: #f7fafc;
  --gray-color: #64748b;
  --success-color: #38b2ac;
  --error-color: #e53e3e;
  --font-primary: "Poppins", sans-serif;
  --font-secondary: "Inter", sans-serif;
  --transition: all 0.3s ease;
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 20px 40px rgba(249, 115, 22, 0.15);
  --border-radius: 12px;
  --border-radius-large: 20px;
  --gradient: linear-gradient(135deg, #f97316 0%, #ff9e00 100%);
  --hero-gradient: linear-gradient(135deg, #fff7ed 0%, #ffedd5 50%, #fed7aa 100%);
   --primary-color: #f97316;
   --gradient-reverse: linear-gradient(135deg, #ff9e00 0%, #ff6b35 50%, #f97316 100%);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== ENHANCED TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

h1 {
  font-size: clamp(3.2rem, 5vw, 5.5rem);
}
h2 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}
h3 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
}
h4 {
  font-size: clamp(1.6rem, 2vw, 2rem);
}

p {
  margin-bottom: 1.5rem;
  color: #374151;
  line-height: 1.7;
  font-size: 1.3rem;
}

/* ==================== contact section alert ===================== */
#success-message, #form-status {
  padding: 10px 15px;
  margin-top: 10px;
  border-radius: 5px;
  font-weight: bold;
  display: none;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}


/* ===== ENHANCED BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  outline: none;
  font-family: var(--font-primary);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
  color: white;
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

.btn-large {
  padding: 1.6rem 3rem;
  font-size: 1.7rem;
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f97316 0%, #ff9e00 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.7s ease;
}

.loader {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 2rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.preloader-slogan {
  color: white;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.5px;
  animation: fadeIn 1.2s ease;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  backdrop-filter: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2rem 0;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  height: 48px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

.nav-menu-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 3rem;
  list-style: none;
}

.nav-link {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--dark-color);
  text-decoration: none;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--dark-color);
  margin: 3px 0;
  transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.services-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--hero-gradient);
  position: relative;
  overflow: hidden;
  padding: 12rem 0 8rem;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 158, 0, 0.08) 0%, transparent 50%);
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
  width: 4px;
  height: 4px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}
.particle:nth-child(2) {
  width: 6px;
  height: 6px;
  top: 60%;
  left: 20%;
  animation-delay: 1s;
}
.particle:nth-child(3) {
  width: 3px;
  height: 3px;
  top: 40%;
  left: 70%;
  animation-delay: 2s;
}
.particle:nth-child(4) {
  width: 5px;
  height: 5px;
  top: 80%;
  left: 80%;
  animation-delay: 3s;
}
.particle:nth-child(5) {
  width: 4px;
  height: 4px;
  top: 10%;
  left: 60%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.hero-content-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  min-height: 70vh;
}

.hero-content {
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(249, 115, 22, 0.1);
  color: var(--primary-color);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.hero-badge::before {
  content: "✨";
  margin-right: 0.8rem;
}

.hero-content h1 {
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--dark-color);
}

.hero-content h1 .highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.9rem;
  color: var(--gray-color);
  margin-bottom: 3.5rem;
  line-height: 1.7;
  font-weight: 400;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  background: var(--gradient);
  color: white;
  padding: 1.8rem 3.5rem;
  border-radius: var(--border-radius);
  font-size: 1.7rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
}

.cta-primary::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: left 0.5s;
}

.cta-primary:hover::before {
  left: 100%;
}

.cta-primary:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
}

.cta-primary .arrow {
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.cta-primary:hover .arrow {
  transform: translateX(5px);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 1rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.stat-label {
  font-size: 1.3rem;
  color: var(--gray-color);
  font-weight: 500;
}

/* ===== HERO GRAPHIC ===== */
.hero-graphic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 5;
}

.floating-card {
  position: absolute;
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 6;
  animation: floatCard 4s ease-in-out infinite;
}

.card-1 {
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.card-2 {
  bottom: 15%;
  right: -15%;
  animation-delay: 2s;
}

.card-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  font-size: 1.8rem;
}

.card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.3rem;
}

.card-desc {
  font-size: 1.2rem;
  color: var(--gray-color);
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.shape-bg {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.08;
  animation: pulse 4s ease-in-out infinite;
}

.shape-bg-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  right: -50px;
  animation-delay: 0s;
}

.shape-bg-2 {
  width: 150px;
  height: 150px;
  bottom: -30px;
  left: -40px;
  animation-delay: 2s;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}


/* ===== SECTION STYLES ===== */
section {
  padding: clamp(6rem, 8vw, 10rem) 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(4rem, 6vw, 6rem);
}

.section-header h2 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
}

.section-header p {
  color: var(--gray-color);
  line-height: 1.7;
 
}

.section-badge {
  display: inline-block;
  background: rgba(249, 115, 22, 0.1);
  color: var(--primary-color);
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(249, 115, 22, 0.2);
}

/* ===== ENHANCED ABOUT OVERVIEW SECTION ===== */
.about-overview.enhanced {
  background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
  position: relative;
  overflow: hidden;
}

.about-overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-overview-text {
  order: 1;
}

.about-overview-text h2 {
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--dark-color);
  position: relative;
}

.about-overview-text h2 .about-highlight{
   background-color: var(--brand-gradient);
}

.about-overview-text h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
}

.about-overview-text p {
  margin-bottom: 2.5rem;
  color: var(--gray-color);
  line-height: 1.7;
}

.about-overview-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(249, 115, 22, 0.03);
  border-radius: var(--border-radius);
  border: 1px solid rgba(249, 115, 22, 0.1);
  transition: var(--transition-smooth);
}

.about-feature:hover {
  background: rgba(249, 115, 22, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.1);
}

.feature-icon {
  background: var(--gradient);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.8rem;
}

.feature-icon i{
  color: var(--light-color);
}

.feature-content h4 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark-color);
}

.feature-content p {
  margin: 0;
  color: var(--gray-color);
  font-size: 1.4rem;
}

.about-overview-image {
  position: relative;
  order: 2;
}

.about-overview-image::after {
  content: "";
  position: absolute;
  top: 20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--primary-color);
  border-radius: 20px;
  z-index: 1;
  transition: var(--transition);
}

.about-overview-image:hover::after {
  top: 15px;
  right: -15px;
  opacity: 0.7;
}

.about-overview-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.about-overview-image:hover img {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-stat {
  position: absolute;
  top: 20%;
  left: -15%;
  background: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  animation: floatCard 4s ease-in-out infinite;
}

.floating-stat .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.floating-stat .stat-text {
  font-size: 1.2rem;
  color: var(--gray-color);
}

.floating-badge {
  position: absolute;
  bottom: 20%;
  right: -10%;
  background: var(--gradient);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  animation: floatCard 4s ease-in-out infinite;
  animation-delay: 2s;
}

.section-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.03;
  animation: pulse 6s ease-in-out infinite;
}

.bg-shape.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.bg-shape.shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: -5%;
  animation-delay: 3s;
}

/* ===== ENHANCED SERVICES OVERVIEW SECTION ===== */
.services-overview.enhanced {
  background: linear-gradient(135deg, #fff 0%, #fefefe 100%);
  position: relative;
  overflow: hidden;
}

.services-overview.enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
}

.service-category {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(249, 115, 22, 0.1);
  border-radius: var(--border-radius-large);
  padding: clamp(2.5rem, 4vw, 3.5rem);
  position: relative;
  transition: var(--transition-smooth);
  overflow: hidden;
  cursor: pointer;
}

.service-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(255, 158, 0, 0.05) 100%);
  transition: var(--transition-smooth);
  z-index: 1;
}

.service-category:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--box-shadow-hover);
  border-color: rgba(249, 115, 22, 0.2);
}

.service-category:hover::before {
  height: 100%;
}

.service-category-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
  position: relative;
  transition: var(--transition);
  z-index: 2;
}

.service-category:hover .service-category-icon {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.service-category-icon i {
  font-size: 2.4rem;
  color: white;
  transition: var(--transition);
}

.icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  opacity: 0;
  transition: var(--transition);
}

.service-category:hover .icon-bg {
  opacity: 1;
}

.service-category h3 {
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
  z-index: 2;
  position: relative;
}

.service-category ul {
  list-style: none;
  padding: 0;
  z-index: 2;
  position: relative;
}

.service-category ul li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--gray-color);
  transition: var(--transition);
}

.service-category ul li i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.service-category:hover ul li {
  color: var(--dark-color);
}

.service-hover-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gradient);
  color: white;
  padding: 1.5rem;
  transform: translateY(100%);
  transition: var(--transition-smooth);
  z-index: 3;
}

.service-category:hover .service-hover-overlay {
  transform: translateY(0);
}

.services-cta {
  text-align: center;
  margin-top: clamp(4rem, 6vw, 6rem);
}

/* ===== results section ===== */
.results-section {
  position: relative;
  padding: 120px 0;
  background-image: url('https://images.pexels.com/photos/3184396/pexels-photo-3184396.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.results-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
      rgba(249, 115, 22, 0.9) 0%, 
      rgba(255, 158, 0, 0.85) 50%, 
      rgba(255, 183, 0, 0.8) 100%);
  z-index: 1;
}

.results-section::after {
  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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  z-index: 2;
}

.results-section .container {
  position: relative;
  z-index: 3;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  animation: fadeInUp 0.8s ease-out;
}

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

.results-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 3;
}

.results-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.results-header p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--font-secondary);
  max-width: 600px;
  margin: 0 auto;

}

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

.results-card {
  background: white;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px 30px;
  border-radius: var(--border-radius-large);
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.results-card:nth-child(1) { animation-delay: 0.1s; }
.results-card:nth-child(2) { animation-delay: 0.2s; }
.results-card:nth-child(3) { animation-delay: 0.3s; }
.results-card:nth-child(4) { animation-delay: 0.4s; }

.results-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  border-radius: var(--border-radius-large) var(--border-radius-large) 0 0;
}

.results-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  background: white;
}

.results-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition);
}

.results-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  border-radius: 50%;
  opacity: 0.2;
  transform: scale(1.2);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
      transform: scale(1.2);
      opacity: 0.2;
  }
  50% {
      transform: scale(1.4);
      opacity: 0.1;
  }
}

.results-icon i {
  font-size: 2rem;
  color: white;
  position: relative;
  z-index: 2;
}

.results-number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--dark-color);
  line-height: 1;
  margin-bottom: 10px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.results-label {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 12px;
}

.results-description {
  font-size: 1.3rem;
  color: var(--gray-color);
  line-height: 1.5;
  font-family: var(--font-secondary);
}


/* How It Works Section */
        .how-it-works {
            padding: 120px 0;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            position: relative;
            overflow: hidden;
        }

        .how-it-works::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="%23f97316" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            z-index: 1;
        }

        .how-it-works .container {
            position: relative;
            z-index: 2;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
            animation: fadeInUp 0.8s ease-out;
        }

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

        .section-header h2 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 16px;
            position: relative;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
        }

        .section-header p {
            font-size: 1.9rem;
            color: var(--accent-color);
            font-family: var(--font-secondary);
            max-width: 600px;
            margin: 20px auto 0;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
            position: relative;
            margin: 0 auto;
        }

        /* Connection Lines */
        .process-steps::before {
            content: '';
            position: absolute;
            top: 80px;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(to right, 
                transparent 0%, 
                var(--primary-color) 15%, 
                var(--primary-color) 85%, 
                transparent 100%);
            z-index: 1;
            opacity: 0.3;
        }

        .step {
            position: relative;
            text-align: center;
            animation: fadeInUp 0.8s ease-out;
            animation-fill-mode: both;
            z-index: 2;
        }

        .step:nth-child(1) { animation-delay: 0.1s; }
        .step:nth-child(2) { animation-delay: 0.2s; }
        .step:nth-child(3) { animation-delay: 0.3s; }
        .step:nth-child(4) { animation-delay: 0.4s; }

        .step-number {
            width: 100px;
            height: 100px;
            margin: 0 auto 30px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            position: relative;
            transition: var(--transition-smooth);
            box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
        }

        .step-number::before {
            content: '';
            position: absolute;
            width: 120px;
            height: 120px;
            border: 3px solid var(--primary-color);
            border-radius: 50%;
            opacity: 0;
            transform: scale(0.8);
            transition: var(--transition-smooth);
        }

        .step:hover .step-number {
            transform: translateY(-10px) scale(1.1);
            box-shadow: 0 20px 40px rgba(249, 115, 22, 0.4);
        }

        .step:hover .step-number::before {
            opacity: 0.3;
            transform: scale(1);
        }

        .step-content {
            background: white;
            padding: 40px 30px;
            border-radius: var(--border-radius-large);
            box-shadow: var(--box-shadow);
            transition: var(--transition-smooth);
            position: relative;
            border-top: 4px solid transparent;
            background-clip: padding-box;
        }

        .step-content::before {
            content: '';
            position: absolute;
            top: -4px;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient);
            border-radius: var(--border-radius-large) var(--border-radius-large) 0 0;
            opacity: 0;
            transition: var(--transition);
        }

        .step:hover .step-content {
            transform: translateY(-5px);
            box-shadow: var(--box-shadow-hover);
        }

        .step:hover .step-content::before {
            opacity: 1;
        }

        .step-content h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 16px;
            position: relative;
        }

        .step-content p {
            font-size: 1.3rem;
            color: var(--gray-color);
            line-height: 1.6;
            font-family: var(--font-secondary);
        }

        /* Add icons to each step */
        .step:nth-child(1) .step-number::after {
            content: '\f086';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            font-size: 1.2rem;
            color: white;
        }

        .step:nth-child(2) .step-number::after {
            content: '\f0ae';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            font-size: 1.2rem;
            color: white;
        }

        .step:nth-child(3) .step-number::after {
            content: '\f135';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            font-size: 1.2rem;
            color: white;
        }

        .step:nth-child(4) .step-number::after {
            content: '\f201';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            font-size: 1.2rem;
            color: white;
        }

        /* Hide numbers, show icons on hover */
        .step:hover .step-number {
            font-size: 0;
        }

        .step:hover .step-number::after {
            font-size: 2rem;
        }

        /* CTA Section */
        .process-cta {
            text-align: center;
            margin-top: 80px;
            padding: 60px 40px;
            background: var(--hero-gradient);
            border-radius: var(--border-radius-large);
            position: relative;
            overflow: hidden;
        }

        .process-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .process-cta-content {
            position: relative;
            z-index: 2;
        }

        .process-cta h3 {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 16px;
        }

        .process-cta p {
            font-size: 1.2rem;
            color: var(--gray-color);
            margin-bottom: 30px;
            font-family: var(--font-secondary);
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--gradient);
            color: white;
            padding: 18px 36px;
            border-radius: var(--border-radius);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition-smooth);
            box-shadow: var(--box-shadow);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: var(--box-shadow-hover);
        }

        .cta-button i {
            transition: var(--transition);
        }

        .cta-button:hover i {
            transform: translateX(5px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .how-it-works {
                padding: 80px 0;
            }

            .section-header {
                margin-bottom: 60px;
            }

            .section-header h2 {
                font-size: 2.2rem;
            }

            .section-header p {
                font-size: 1.3rem;
            }

            .process-steps {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .process-steps::before {
                display: none;
            }

            .step-number {
                width: 80px;
                height: 80px;
                font-size: 2rem;
            }

            .step-content {
                padding: 30px 25px;
            }

            .process-cta {
                margin-top: 60px;
                padding: 40px 30px;
            }

            .process-cta h3 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .section-header h2 {
                font-size: 1.8rem;
            }

            .step-content h3 {
                font-size: 1.3rem;
            }

            .process-cta h3 {
                font-size: 1.5rem;
            }

            .cta-button {
                padding: 16px 28px;
                font-size: 1rem;
            }
        }

        /* Loading Animation */
        .step.animate {
            animation: slideInScale 0.6s ease-out;
        }

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


    /* call to action section */

     .ctas-section {
            position: relative;
            min-height: 50vh;
            background: radial-gradient(ellipse at top, #1a1a3e 0%, #0f0f23 50%, #050510 100%);
            display: flex;
            align-items: center;
            padding: 100px 0;
            overflow: hidden;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 10;
        }

        .cta-wrapper {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 100px;
            align-items: center;
            min-height: 700px;
        }

        .content-section {
            position: relative;
        }

        .glitch-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(255, 158, 0, 0.1) 100%);
            border: 1px solid rgba(249, 115, 22, 0.4);
            padding: 12px 24px;
            border-radius: 50px;
            color: var(--primary-color);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 32px;
            backdrop-filter: blur(20px);
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: glow 2s ease-in-out infinite alternate;
        }

        .hero-title {
            font-size: 4.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 28px;
            background: linear-gradient(135deg, 
                #ffffff 0%, 
                #f1f5f9 25%, 
                var(--primary-color) 50%, 
                #ffffff 75%, 
                #f1f5f9 100%);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 4s ease-in-out infinite;
            position: relative;
        }

        .hero-subtitle {
            font-size: 1.4rem;
            color: #94a3b8;
            line-height: 1.7;
            margin-bottom: 48px;
            font-weight: 400;
            max-width: 90%;
        }

        .features-showcase {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 56px;
        }

        .feature-pill {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 50px;
            padding: 16px 24px;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }

        .feature-pill::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
            transition: left 0.8s ease;
        }

        .feature-pill:hover {
            transform: translateY(-3px);
            border-color: rgba(249, 115, 22, 0.3);
            background: rgba(249, 115, 22, 0.05);
        }

        .feature-pill:hover::before {
            left: 100%;
        }

        .feature-icon {
            width: 28px;
            height: 28px;
            background: var(--gradient);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
            flex-shrink: 0;
        }

        .feature-text {
            color: #e2e8f0;
            font-weight: 500;
            font-size: 15px;
        }

        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 28px;
            align-items: flex-start;
        }

        .mega-cta {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 16px;
            background: var(--gradient);
            color: white;
            padding: 22px 48px;
            border-radius: 60px;
            text-decoration: none;
            font-weight: 700;
            font-size: 20px;
            transition: var(--transition-smooth);
            box-shadow: 
                0 20px 40px rgba(249, 115, 22, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .mega-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--gradient-reverse);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .mega-cta::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.6s ease;
        }

        .mega-cta:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 
                0 30px 60px rgba(249, 115, 22, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .mega-cta:hover::before {
            opacity: 1;
        }

        .mega-cta:hover::after {
            width: 300px;
            height: 300px;
        }

        .mega-cta span, .mega-cta i {
            position: relative;
            z-index: 2;
        }

        .contact-grid {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .contact-option {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 20px;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 50px;
            color: #cbd5e1;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }

        .contact-option::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(255, 158, 0, 0.05));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .contact-option:hover {
            transform: translateY(-2px);
            border-color: var(--primary-color);
            color: var(--primary-color);
        }

        .contact-option:hover::before {
            opacity: 1;
        }

        .contact-option i, .contact-option span {
            position: relative;
            z-index: 2;
        }

        .visual-section {
            position: relative;
            height: 700px;
        }

        .hologram-container {
            position: relative;
            width: 100%;
            height: 100%;
            background: var(--glass-bg);
            backdrop-filter: blur(30px);
            border: 1px solid var(--glass-border);
            border-radius: var(--border-radius-large);
            overflow: hidden;
            box-shadow: var(--box-shadow);
        }

        .hologram-grid {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(249, 115, 22, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(249, 115, 22, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }

        .data-points {
            position: absolute;
            inset: 0;
        }

        .data-card {
            position: absolute;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: var(--border-radius);
            padding: 24px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: floatComplex 8s ease-in-out infinite;
            transition: var(--transition);
        }

        .data-card:hover {
            transform: scale(1.05);
        }

        .data-card:nth-child(1) {
            top: 60px;
            right: 40px;
            animation-delay: 0s;
        }

        .data-card:nth-child(2) {
            bottom: 120px;
            left: 40px;
            animation-delay: 3s;
        }

        .data-card:nth-child(3) {
            top: 50%;
            right: -10px;
            animation-delay: 6s;
        }

        .data-value {
            font-size: 2.5rem;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            line-height: 1;
        }

        .data-label {
            font-size: 13px;
            color: var(--gray-color);
            font-weight: 600;
            margin-top: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .central-orb {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 180px;
            height: 180px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 4rem;
            animation: orbPulse 3s ease-in-out infinite;
            box-shadow: 
                0 0 50px rgba(249, 115, 22, 0.5),
                inset 0 0 50px rgba(255, 255, 255, 0.1);
        }

        .cosmic-bg {
            position: absolute;
            inset: 0;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 50%;
            animation: particleFloat 15s linear infinite;
        }

        .particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
        .particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 5s; }
        .particle:nth-child(3) { top: 80%; left: 20%; animation-delay: 10s; }
        .particle:nth-child(4) { top: 30%; left: 70%; animation-delay: 2s; }
        .particle:nth-child(5) { top: 70%; left: 50%; animation-delay: 7s; }

        @keyframes glow {
            0%, 100% { box-shadow: 0 0 20px rgba(249, 115, 22, 0.3); }
            50% { box-shadow: 0 0 30px rgba(249, 115, 22, 0.6); }
        }

        @keyframes shimmer {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        @keyframes floatComplex {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            25% { transform: translateY(-15px) rotate(1deg); }
            50% { transform: translateY(-5px) rotate(-1deg); }
            75% { transform: translateY(-20px) rotate(0.5deg); }
        }

        @keyframes orbPulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 50px rgba(249, 115, 22, 0.5); }
            50% { transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 0 80px rgba(249, 115, 22, 0.8); }
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        @keyframes particleFloat {
            0% { transform: translateY(0px) translateX(0px); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
        }

        @media (max-width: 1200px) {
            .cta-wrapper { gap: 60px; }
            .hero-title { font-size: 3.5rem; }
        }

        @media (max-width: 768px) {
            .cta-section { padding: 60px 0; }
            .cta-wrapper {
                grid-template-columns: 1fr;
                gap: 50px;
                text-align: center;
            }
            .hero-title { font-size: 2.8rem; }
            .hero-subtitle { font-size: 1.2rem; max-width: 100%; }
            .features-showcase { grid-template-columns: 1fr; }
            .visual-section { height: 500px; order: -1; }
            .contact-grid { justify-content: center; }
            .mega-cta { font-size: 18px; padding: 20px 40px; }
        }

/* Floating Elements */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: floatShape 6s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.floating-shape:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 20%;
  right: 10%;
  animation-delay: 2s;
}

.floating-shape:nth-child(3) {
  width: 80px;
  height: 80px;
  bottom: 15%;
  left: 15%;
  animation-delay: 4s;
}

.floating-shape:nth-child(4) {
  width: 120px;
  height: 120px;
  bottom: 10%;
  right: 5%;
  animation-delay: 1s;
}

@keyframes floatShape {
  0%, 100% {
      transform: translateY(0px) rotate(0deg);
  }
  50% {
      transform: translateY(-20px) rotate(180deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .results-section {
      padding: 80px 0;
      background-attachment: scroll;
  }

  .section-header {
      margin-bottom: 60px;
  }

  .section-header h2 {
      font-size: 2.2rem;
  }

  .section-header p {
      font-size: 1.3rem;
  }

  .results-grid {
      gap: 10px;
      grid-template-columns: 1fr;
  }

  .result-card {
      padding: 35px 15px;
  }

  .result-number {
      font-size: 3rem;
  }

  .result-label {
      font-size: 1.1rem;
  }

  .floating-shapes {
      display: none;
  }
}

@media (max-width: 480px) {
  .container {
      padding: 0 15px;
  }

  .section-header h2 {
      font-size: 1.8rem;
  }

  .result-number {
      font-size: 2.5rem;
  }

  .result-icon {
      width: 70px;
      height: 70px;
  }

  .result-icon i {
      font-size: 1.5rem;
  }
}

/* Additional Enhancement */
.results-section {
  position: relative;
}

.results-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  z-index: 4;
}

/* Counter Animation */
@keyframes countUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.result-card.animate .result-number {
  animation: countUp 0.8s ease-out;
}

/* ===== ENHANCED TEAM SECTION WITH PORTFOLIO LINKS ===== */

.team-main-section{
    font-family: var(--font-primary);
    background: var(--hero-gradient);
    min-height: 100vh;
    padding: 60px 20px;
}

   .team-section {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
            animation: fadeInUp 0.8s ease-out;
        }

        .section-header h2 {
            font-size: 3.5rem;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .section-header p {
            font-size: 1.3rem;
            color: var(--gray-color);
            font-weight: 400;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
            font-family: var(--font-secondary);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .team-member {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: var(--border-radius-large);
            padding: 35px;
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(249, 115, 22, 0.1);
            box-shadow: var(--box-shadow);
            transition: var(--transition-smooth);
            animation: fadeInUp 0.8s ease-out;
            animation-fill-mode: both;
        }

        .team-member:nth-child(1) { animation-delay: 0.1s; }
        .team-member:nth-child(2) { animation-delay: 0.2s; }
        .team-member:nth-child(3) { animation-delay: 0.3s; }

        .team-member::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient);
            transform: scaleX(0);
            transition: var(--transition-smooth);
            transform-origin: left;
        }

        .team-member:hover::before {
            transform: scaleX(1);
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: var(--box-shadow-hover);
            border-color: var(--primary-color);
        }

        .member-image {
            position: relative;
            width: 200px;
            height: 200px;
            margin: 0 auto 30px;
            border-radius: var(--border-radius-large);
            overflow: hidden;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transition: var(--transition-smooth);
        }

        .member-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(249, 115, 22, 0.1), rgba(255, 158, 0, 0.1));
            transition: var(--transition);
        }

        .team-member:hover .member-image::before {
            background: linear-gradient(45deg, rgba(249, 115, 22, 0.2), rgba(255, 158, 0, 0.2));
        }

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

        .member-info h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 10px;
            transition: var(--transition);
        }

        .team-member:hover .member-info h3 {
            color: var(--primary-color);
        }

        .member-role {
            font-size: 1.1rem;
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: var(--font-secondary);
        }

        .member-description {
            font-size: 1rem;
            color: var(--gray-color);
            line-height: 1.7;
            margin-bottom: 25px;
            font-family: var(--font-secondary);
        }

        .member-badges {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .skill-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(255, 158, 0, 0.05));
            color: var(--primary-color);
            padding: 8px 16px;
            border-radius: var(--border-radius);
            font-size: 0.9rem;
            font-weight: 500;
            border: 1px solid rgba(249, 115, 22, 0.2);
            transition: var(--transition);
            font-family: var(--font-secondary);
        }

        .skill-badge:hover {
            background: var(--gradient);
            color: white;
            transform: translateY(-2px);
        }

        .skills-container {
            display: none;
        }

        
/* =============================================================================
   SOCIAL NETWORK CONNECTIONS - MODERN GLASSMORPHISM DESIGN
   ============================================================================= */

.social-network-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(249, 115, 22, 0.2);
    position: relative;
}

/* Decorative accent line on top border */
.social-network-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
}

.social-network-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.social-network-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-network-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(249, 115, 22, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(249, 115, 22, 0.1);
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

/* Sliding background effect */
.social-network-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: var(--transition-smooth);
    z-index: 0;
}

.social-network-link:hover::before {
    left: 0;
}

.social-network-link:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--box-shadow-hover);
    border-color: transparent;
}

.social-network-link i {
    position: relative;
    z-index: 1;
    font-size: 1.4rem;
    transition: var(--transition);
}

.social-network-link:hover i {
    color: white;
    transform: scale(1.1);
}

/* Focus states for accessibility */
.social-network-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Active state */
.social-network-link:active {
    transform: translateY(-6px) scale(1.02);
}

      /* =============================================================================
   SOCIAL LINKS - MODERN GLASSMORPHISM DESIGN
   ============================================================================= */

.social-links {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(249, 115, 22, 0.2);
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
}



.social-links-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-links a,
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(249, 115, 22, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(249, 115, 22, 0.1);
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

/* Sliding background effect */
.social-links a::before,
.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: var(--transition-smooth);
    z-index: 0;
}

.social-links a:hover::before,
.social-link:hover::before {
    left: 0;
}

.social-links a:hover,
.social-link:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--box-shadow-hover);
    border-color: transparent;
}

.social-links a i,
.social-link i {
    position: relative;
    z-index: 1;
    font-size: 1.4rem;
    transition: var(--transition);
}

.social-links a:hover i,
.social-link:hover i {
    color: white;
    transform: scale(1.1);
}

/* Focus states for accessibility */
.social-links a:focus,
.social-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Active state */
.social-links a:active,
.social-link:active {
    transform: translateY(-6px) scale(1.02);
}


        .experience-indicator {
            display: none;
        }

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

        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 2.5rem;
            }
            
            .team-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .team-member {
                padding: 25px;
            }

            .member-image {
                width: 140px;
                height: 140px;
            }
        }

        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .floating-shape {
            position: absolute;
            opacity: 0.1;
            animation: float 8s ease-in-out infinite;
        }

        .shape-1 {
            top: 10%;
            left: 5%;
            width: 80px;
            height: 80px;
            background: var(--gradient);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            animation-delay: 0s;
        }

        .shape-2 {
            top: 70%;
            right: 10%;
            width: 120px;
            height: 120px;
            background: var(--gradient-reverse);
            border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
            animation-delay: -4s;
        }

        .shape-3 {
            bottom: 20%;
            left: 15%;
            width: 60px;
            height: 60px;
            background: var(--gradient);
            border-radius: 50%;
            animation-delay: -2s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-30px) rotate(180deg);
            }
        }

  /*=============== contact us section ================= */
    .contact-section {
            padding: 120px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
            position: relative;
            overflow: hidden;
        }

        .contact-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="contactPattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="%23f97316" opacity="0.04"/><circle cx="15" cy="15" r="1" fill="%23ff9e00" opacity="0.03"/><circle cx="45" cy="45" r="1.5" fill="%23ffb700" opacity="0.035"/></pattern></defs><rect width="100" height="100" fill="url(%23contactPattern)"/></svg>');
            z-index: 1;
        }

        .contact-section .container {
            position: relative;
            z-index: 2;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
            animation: fadeInUp 0.8s ease-out;
        }

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

        .section-header h2 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 16px;
            position: relative;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
        }

        .section-header p {
            font-size: 1.3rem;
            color: var(--gray-color);
            font-family: var(--font-secondary);
            max-width: 600px;
            margin: 20px auto 0;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: start;
            animation: slideInUp 0.8s ease-out 0.2s both;
        }

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

        .contact-info {
            background: var(--white);
            padding: 40px;
            border-radius: var(--border-radius-large);
            box-shadow: var(--box-shadow);
            position: relative;
            overflow: hidden;
        }

        .contact-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient);
        }

        .contact-info h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 30px;
            position: relative;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 15px;
            padding: 20px;
            border-radius: var(--border-radius);
            transition: var(--transition);
            position: relative;
        }

        .contact-item:hover {
            background: var(--gradient-light);
            transform: translateX(5px);
        }

        .contact-item i {
            font-size: 1.5rem;
            color: var(--primary-color);
            background: rgba(249, 115, 22, 0.1);
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            flex-shrink: 0;
            transition: var(--transition);
        }

        .contact-item:hover i {
            background: var(--gradient);
            color: var(--white);
            transform: scale(1.1);
        }

        .contact-item div h4 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 5px;
        }

        .contact-item div a,
        .contact-item div span {
            color: var(--gray-color);
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.3rem;
        }

        .contact-item div a:hover {
            color: var(--primary-color);
        }

        .social-links {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid #eee;
        }

        .social-links h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 20px;
        }

        .social-links-grid {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }

        .social-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient);
            border-radius: 50%;
            transform: scale(0);
            transition: var(--transition);
        }

        .social-links a:hover::before {
            transform: scale(1);
        }

        .social-links a i {
            position: relative;
            z-index: 1;
            font-size: 1.2rem;
            transition: var(--transition);
            color: white;
            size: 18px;
        }

        .social-links a:hover {
            transform: translateY(-3px);

        }

        .contact-form {
            background: var(--white);
            padding: 40px;
            border-radius: var(--border-radius-large);
            box-shadow: var(--box-shadow);
            position: relative;
            overflow: hidden;
        }

        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient);
        }

        .contact-form h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .form-group label {
            display: block;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e5e7eb;
            border-radius: var(--border-radius);
            font-size: 1.3rem;
            color: var(--dark-color);
            background: var(--white);
            transition: var(--transition);
            font-family: var(--font-primary);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
            transform: translateY(-2px);
        }

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

        .form-group select {
            cursor: pointer;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 15px 30px;
            border: none;
            border-radius: var(--border-radius);
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: var(--gradient);
            color: var(--white);
            box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
        }

        .btn-primary::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);
        }

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

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
        }

        .btn-large {
            padding: 18px 40px;
            font-size: 1.2rem;
            width: 100%;
        }

        .btn i {
            transition: var(--transition);
        }

        .btn:hover i {
            transform: translateX(5px);
        }

        #form-status {
            margin: 20px 0;
            padding: 15px;
            border-radius: var(--border-radius);
            font-weight: 500;
            text-align: center;
            display: none;
        }

        #form-status.success {
            background: #d1fae5;
            color: #065f46;
            border: 1px solid #a7f3d0;
        }

        #form-status.error {
            background: #fee2e2;
            color: #991b1b;
            border: 1px solid #fca5a5;
        }

        /* Loading Animation */
        .btn.loading {
            pointer-events: none;
        }

        .btn.loading span {
            opacity: 0.7;
        }

        .btn.loading i {
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }


        @media screen and (max-width: 980px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        text-align: left; /* Ensure left alignment */
    }
    
    .contact-info h3 {
        text-align: left;
        margin-bottom: 1.5rem;
    }
    
    .contact-item {
        justify-content: flex-start;
        text-align: left;
        align-items: flex-start;
        padding: 1.2rem;
    }
    
    .contact-item div {
        text-align: left;
    }
    
    .contact-item h4 {
        text-align: left;
        margin-bottom: 0.3rem;
    }
    
    .social-links {
        text-align: left;
    }
    
    .social-links h4 {
        text-align: left;
        margin-bottom: 1rem;
    }
    
    .social-links-grid {
        justify-content: flex-start;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-form h3 {
        text-align: left;
    }
}

@media screen and (max-width: 768px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-content {
        gap: 2rem;
    }
    
    .contact-info {
        text-align: left; /* Force left alignment on smaller screens */
    }
    
    .contact-info h3 {
        text-align: left;
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-item {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-item i {
        margin-right: 1rem;
        margin-top: 0.1rem;
    }
    
    .contact-item div {
        text-align: left;
        flex: 1;
    }
    
    .contact-item h4 {
        text-align: left;
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
    }
    
    .contact-item a,
    .contact-item span {
        font-size: 0.9rem;
        text-align: left;
        display: block;
    }
    
    .social-links {
        text-align: left;
        margin-top: 1.5rem;
    }
    
    .social-links h4 {
        text-align: left;
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .social-links-grid {
        justify-content: flex-start;
        gap: 0.8rem;
    }
    
    .social-links-grid a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 1.2rem;
    }
    
    .contact-form h3 {
        text-align: left;
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group label {
        text-align: left;
        font-size: 1.2rem;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .contact-section {
        padding: 2rem 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .section-header p {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .contact-info h3,
    .contact-form h3 {
        font-size: 1.2rem;
        text-align: left; /* Maintain left alignment even on very small screens */
    }
    
    .contact-item {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .contact-item i {
        font-size: 1.3rem;
    }
    
    .contact-item h4 {
        font-size: 1.5rem;
    }
    
    .contact-item a,
    .contact-item span {
        font-size: 0.85rem;
    }
    
    .social-links-grid a {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1.5rem 0.8rem;
        font-size: 1.3rem;
    }
}

        /* Responsive Design */
        @media (max-width: 1024px) {
            .contact-content {
                gap: 40px;
            }
            
            .contact-info,
            .contact-form {
                padding: 30px;
            }
        }

        @media (max-width: 768px) {
            .contact-section {
                padding: 80px 0;
            }
            
            .section-header {
                margin-bottom: 60px;
            }
            
            .section-header h2 {
                font-size: 2.5rem;
            }
            
            .section-header p {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .section-header h2 {
                font-size: 2rem;
            }
            
          
        }



/* blog section */

 .news-section {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeInUp 0.8s ease-out;
        }

        .section-title {
            font-size: 3.5rem;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            text-shadow: 0 4px 8px rgba(249, 115, 22, 0.2);
        }

        .section-subtitle {
            font-size: 1.5rem;
            color: var(--gray-color);
            font-weight: 400;
            letter-spacing: 0.5px;
            font-family: var(--font-secondary);
        }

        .blogs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .blog-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: var(--border-radius-large);
            overflow: hidden;
            transition: var(--transition-smooth);
            border: 1px solid rgba(249, 115, 22, 0.1);
            box-shadow: var(--box-shadow);
            animation: fadeInUp 0.8s ease-out;
            animation-fill-mode: both;
        }

        .blog-card:nth-child(1) { animation-delay: 0.1s; }
        .blog-card:nth-child(2) { animation-delay: 0.2s; }
        .blog-card:nth-child(3) { animation-delay: 0.3s; }

        .blog-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: var(--box-shadow-hover);
            border-color: var(--primary-color);
        }

        .blog-image {
            width: 100%;
            height: 250px;
            position: relative;
            overflow: hidden;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .team-mem{
          height: 330px;
        }

      .blog-card:nth-child(1) .blog-image {
            background-image:  url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
      }
        .blog-card:nth-child(2) .blog-image {
            background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
        }

        .blog-card:nth-child(3) .blog-image {
            background-image:   url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
        }
      

        .blog-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(249, 115, 22, 0.1), rgba(255, 158, 0, 0.1));
            transition: var(--transition);
        }

        .blog-card:hover .blog-image::before {
            background: linear-gradient(45deg, rgba(249, 115, 22, 0.2), rgba(255, 158, 0, 0.2));
        }

        .blog-content {
            padding: 30px;
        }

        .blog-date {
            font-size: 0.9rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: var(--font-secondary);
        }

        .blog-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 15px;
            line-height: 1.4;
            transition: var(--transition);
        }

        .blog-card:hover .blog-title {
            color: var(--primary-color);
        }

        .blog-excerpt {
            font-size: 1.3rem;
            color: var(--gray-color);
            line-height: 1.6;
            margin-bottom: 25px;
            font-family: var(--font-secondary);
        }

        .read-more {
            display: inline-flex;
            align-items: center;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: var(--font-secondary);
        }

        .read-more:hover {
            color: var(--secondary-color);
            transform: translateX(5px);
        }

        .read-more::after {
            content: '→';
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .read-more:hover::after {
            transform: translateX(5px);
        }

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

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2.5rem;
            }
            
            .blogs-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .blog-content {
                padding: 25px;
            }
        }

        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .floating-circle {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(45deg, rgba(249, 115, 22, 0.1), rgba(255, 158, 0, 0.05));
            animation: floatCircle 8s ease-in-out infinite;
        }

        .circle-1 {
            width: 100px;
            height: 100px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .circle-2 {
            width: 150px;
            height: 150px;
            top: 60%;
            right: 15%;
            animation-delay: -3s;
        }

        .circle-3 {
            width: 80px;
            height: 80px;
            bottom: 20%;
            left: 20%;
            animation-delay: -6s;
        }

        @keyframes floatCircle {
            0%, 100% { 
                transform: translateY(0) rotate(0deg);
                opacity: 0.3;
            }
            50% { 
                transform: translateY(-30px) rotate(180deg);
                opacity: 0.1;
            }
        }

/* ===== FOOTER ===== */


    .footer {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: #e2e8f0;
    overflow: hidden;
    padding: 2rem auto;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 158, 0, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.8) 100%);
    pointer-events: none;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s infinite ease-in-out;
}

.particle:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 20%; left: 80%; animation-delay: 1s; }
.particle:nth-child(3) { top: 60%; left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { top: 80%; left: 70%; animation-delay: 3s; }
.particle:nth-child(5) { top: 40%; left: 90%; animation-delay: 4s; }
.particle:nth-child(6) { top: 70%; left: 15%; animation-delay: 5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.6; }
}

.container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    z-index: 1;
}

.footer-main {
    padding: 3rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
    align-items: start;
}

.footer-brand {
    max-width: 300px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.logo-container {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.brand-logo img {
    width: 140px;
    margin-bottom: 3rem;
}

.brand-tagline {
    font-size: 1.3rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(249, 115, 22, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(249, 115, 22, 0.2);
    font-size: 1.3rem;
    color: #f1c40f;
    margin-bottom: 1.5rem;
}

.rwanda-flag {
    width: 20px;
    height: 15px;
    background: linear-gradient(to bottom, #20a5ea 33%, #fad646 33% 66%, #43b05c 66%);
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-grid {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--gradient);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.footer-section {
    min-width: 0;
}

.footer-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 2rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient);
    border-radius: 1px;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.5rem;
}

.footer-list a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.3rem;
    transition: var(--transition);
    padding: 0.25rem 0;
}

.footer-list a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-list a i {
    width: 16px;
    font-size: 1.8rem;
    opacity: 0.7;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.info-icon {
    width: 36px;
    height: 36px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.info-details {
    flex: 1;
    min-width: 0;
}

.info-label {
    font-size: 1.5rem;
    font-weight: 500;
    color: #cbd5e1;
    margin-bottom: 0.25rem;
}

.info-value {
    font-size: 1.3rem;
    color: #94a3b8;
}

.info-value a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.info-value a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
}

.copyright {
    font-size: 1.5rem;
    color: #ced9e9;
}

/* =============================================================================
   MOBILE RESPONSIVE - LEFT ALIGNED
   ============================================================================= */

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1.5rem;
    }
    
    .footer-brand {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left; /* Changed from center to left */
    }
    
    .footer-brand {
        text-align: left; /* Changed from center to left */
        max-width: none;
    }
    
    .brand-logo {
        justify-content: flex-start; /* Changed from center to flex-start */
    }
    
    .brand-tagline {
        text-align: left;
    }
    
    .location-badge {
        align-self: flex-start; /* Align badge to the left */
    }
    
    .social-grid {
        justify-content: flex-start; /* Changed from center to flex-start */
    }
    
    .footer-section {
        text-align: left; /* Ensure all sections are left-aligned */
    }
    
    .footer-title {
        text-align: left;
    }
    
    .footer-title::after {
        left: 0; /* Keep underline on the left */
    }
    
    .info-item {
        justify-content: flex-start; /* Changed from center to flex-start */
        text-align: left;
    }
    
    .info-details {
        text-align: left;
    }
    
    .footer-list {
        text-align: left;
    }
    
    .footer-list a {
        justify-content: flex-start; /* Changed from center to flex-start */
        text-align: left;
    }
    
    .footer-bottom {
        text-align: center; /* Keep copyright centered */
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .footer-main {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-grid {
        gap: 1.5rem;
        text-align: left; /* Maintain left alignment */
    }
    
    .footer-brand {
        text-align: left; /* Keep left alignment */
    }
    
    .brand-logo {
        justify-content: flex-start; /* Keep left alignment */
    }
    
    .brand-logo img {
        width: 120px; /* Slightly smaller on very small screens */
        margin-bottom: 2rem;
    }
    
    .brand-tagline {
        font-size: 1.1rem;
        text-align: left;
    }
    
    .location-badge {
        font-size: 1.1rem;
        padding: 0.4rem 0.8rem;
    }
    
    .social-grid {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: flex-start; /* Keep left alignment */
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .footer-title {
        font-size: 1.5rem;
        text-align: left;
        margin-bottom: 1.5rem;
    }
    
    .footer-list a {
        font-size: 1.3rem;
        justify-content: flex-start; /* Keep left alignment */
        gap: 1rem;
    }
    
    .footer-list a i {
        font-size: 1.5rem;
    }
    
    .info-item {
        margin-bottom: 0.8rem;
        justify-content: flex-start; /* Keep left alignment */
    }
    
    .info-icon {
        width: 32px;
        height: 32px;
    }
    
    .info-label {
        font-size: 1.3rem;
    }
    
    .info-value {
        font-size: 1.1rem;
    }
    
    .copyright {
        font-size: 1.3rem;
        text-align: center; /* Keep copyright centered */
    }
}

/* Additional utility classes for consistent left alignment */
@media (max-width: 768px) {
    .footer .text-left {
        text-align: left !important;
        padding: 2rem 1rem;
    }
    
    .footer .justify-left {
        justify-content: flex-start !important;
    }
    
    .footer .align-left {
        align-items: flex-start !important;
    }
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  text-decoration: none;
}

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

.back-to-top:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
  color: white;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .hero-flex,
  .about-overview-content,
  .case-study-content,
  .contact-container,
  .cta-content,
  .banner-content {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }

  .about-overview-text {
    order: 2;
  }

  .about-overview-image {
    order: 1;
  }

  .team-grid {
    justify-content: center;
  }

  .team-member {
    flex: 0 0 200px;
  }
}

@media screen and (max-width: 980px) {
    .nav-menu {
    position: fixed;
    top: -1000%;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    padding: 8rem 0 5rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 999;
  }

  .nav-menu.active {
    top: 0;
  }

  
  .nav-menu li {
    margin: 1.5rem 0;
  }

  .menu-toggle {
    display: flex;
    z-index: 1000;
  }

  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
 
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: -1000%;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    padding: 8rem 0 5rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 999;
  }

  .nav-menu.active {
    top: 0;
  }

  .nav-menu li {
    margin: 1.5rem 0;
  }

  .menu-toggle {
    display: flex;
    z-index: 1000;
  }

  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .services-overview-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    justify-content: center;
    gap: 2rem;
  }

  .about-overview-features {
    gap: 1.5rem;
  }

  .case-study-results {
    justify-content: center;
  }

  .team-navigation {
    display: none;
  }

  .team-grid {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 2rem 1rem;
  }

  .team-member {
    scroll-snap-align: center;
    flex: 0 0 280px;
  }

  .contact-options {
    justify-content: center;
  }

  .cta-actions {
    align-items: center;
  }

  .btn-cta.primary {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .services-hero {
    padding: 10rem 0 6rem;
  }

  .hero-content h1 {
    font-size: 3.2rem;
  }

  .hero-content p {
    font-size: 1.6rem;
  }

  .cta-primary {
    padding: 1.4rem 2.5rem;
    font-size: 1.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .floating-card {
    display: none;
  }

  .about-overview-features {
    gap: 1rem;
  }

  .feature {
    padding: 1.5rem;
  }

  .case-study-results {
    flex-direction: column;
    gap: 1rem;
  }

  .team-member {
    flex: 0 0 260px;
  }

  .differentiators-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-container {
    gap: 2rem;
  }

  .contact-info,
  .contact-form {
    padding: 2rem;
  }

  .banner-content {
    gap: 2rem;
  }

  .banner-text h2 {
    font-size: 2.4rem;
  }

  .banner-text p {
    font-size: 1.5rem;
  }

  .contact-options {
    flex-direction: column;
  }

  .contact-btn {
    justify-content: center;
  }
}

/* ===== WHAT MAKES US DIFFERENT SECTION ===== */
.what-makes-us-different {
  padding: 6rem 0;
  background: var(--light-color);
}

.differentiators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.differentiator-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.differentiator-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: var(--transition);
}

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

.differentiator-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.differentiator-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: var(--transition);
}

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

.differentiator-icon i {
  font-size: 2.5rem;
  color: white;
}

.differentiator-card h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.differentiator-card p {
  font-size: 1.6rem;
  color: var(--gray-color);
  line-height: 1.6;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

.fade-in {
  animation: fadeIn 1s ease forwards;
}

.slide-in-left {
  animation: slideInLeft 1s ease forwards;
}

.slide-in-right {
  animation: slideInRight 1s ease forwards;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.mb-3 {
  margin-bottom: 3rem;
}

.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mt-3 {
  margin-top: 3rem;
}

.hidden {
  display: none;
}
.visible {
  display: block;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}
