

/* === Our Process Horizontal Roadmap Section (Car Animation) === */
.process-section {
  background: #f8fafc;
  padding: 60px 0 40px 0;
  position: relative;
  z-index: 2;
}
.process-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.process-grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 340px;
  gap: 2rem;
}
/* Wider process cards */
.process-step {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  padding: 32px 28px 24px 28px;
  width: 520px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background 0.4s, box-shadow 0.4s;
  margin: 0 18px;
  opacity: 0.7;
  border: 2px solid #f97316;
}
.process-step:nth-child(odd),
.process-step:nth-child(even) {
  top: 0;
}
.process-step.active {
  background: linear-gradient(135deg, #f97316 60%, #ff9e00 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(59,130,246,0.18);
  opacity: 1;
  border-color: #ff9e00;
}
.process-step.active h3,
.process-step.active p {
  color: #fff;
}
.process-icon {
  background: linear-gradient(135deg, #f97316 60%, #ff9e00 100%);
  color: #fff;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 2px 12px rgba(59,130,246,0.12);
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}
.process-step.active .process-icon {
  background: #fff;
  color: #f97316;
  box-shadow: 0 2px 16px rgba(59,130,246,0.18);
}
.process-step h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
  text-align: center;
}
.process-step p {
  font-size: 1rem;
  color: #334155;
  text-align: center;
  margin-bottom: 0;
}

.process-roadmap-road {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 6px;
  pointer-events: none;
  z-index: 1;
  display: flex;
  align-items: center;
}
.process-roadmap-road svg {
  width: 100%;
  height: 6px;
  display: block;
}
/* Car icon animation */
/* Car icon animation for curved road */
.process-roadmap-car {
  position: absolute;
  left: 0;
  width: 48px;
  height: 48px;
  z-index: 2;
  color: #f97316;
  transition: left 1.2s cubic-bezier(.4,0,.2,1), top 1.2s cubic-bezier(.4,0,.2,1);
  filter: drop-shadow(0 2px 8px #f97316);
}
@media (max-width: 900px) {
  .process-grid {
    flex-direction: column;
    min-height: unset;
    max-width: 98vw;
  }
  .process-step {
    width: 98vw;
    margin: 0 0 24px 0;
  }
  .process-roadmap-road {
    display: none;
  }
  .process-roadmap-car {
    display: none;
  }
}
/* ===== PORTFOLIO HOMEPAGE STYLES ===== */

/* ===== CSS VARIABLES ===== */
: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%);
}

/* ===== GLOBAL STYLES ===== */
* {
  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;
}


a{
    text-decoration: none;
}

/* ===== 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 ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--hero-gradient);
  position: relative;
  overflow: hidden;
  padding: 12rem 0 8rem;
}

.hero::before {
  content: "";
  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%);
  animation: gradientShift 10s ease-in-out infinite;
}

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

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  animation: fadeInLeft 1s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(249, 115, 22, 0.1);
  color: var(--primary-color);
  padding: 1rem 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 i {
  color: var(--accent-color);
}

.hero-title {
  font-size: clamp(4rem, 6vw, 6.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2.5rem;
  color: var(--dark-color);
  font-family: var(--font-secondary);
}

.highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-description {
  font-size: 2rem;
  color: var(--gray-color);
  margin-bottom: 4rem;
  line-height: 1.7;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 2rem;
  margin-bottom: 5rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--gradient);
  color: white;
  padding: 1.8rem 3rem;
  border-radius: var(--border-radius);
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
  border: none;
  cursor: pointer;
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: transparent;
  color: var(--dark-color);
  padding: 1.8rem 3rem;
  border: 2px solid var(--dark-color);
  border-radius: var(--border-radius);
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

.btn-large {
  padding: 2rem 4rem;
  font-size: 1.8rem;
}

.hero-stats {
  display: flex;
  gap: 4rem;
}

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

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

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

.hero-visual {
  position: relative;
  animation: fadeInRight 1s ease-out;
}

.hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.hero-image:hover .hero-img {
  transform: scale(1.05);
}

.floating-card {
  position: absolute;
  background: white;
  padding: 1.5rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  color: var(--dark-color);
  animation: floatCard 4s ease-in-out infinite;
}

.floating-card i {
  color: var(--primary-color);
  font-size: 2rem;
}

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

.card-2 {
  top: 50%;
  right: -15%;
  animation-delay: 1s;
}

.card-3 {
  bottom: 10%;
  left: -5%;
  animation-delay: 2s;
}

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

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

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

/* ===== TRUST SECTION ===== */
.trust-section {
  padding: 6rem 0;
  background: white;
  border-bottom: 1px solid rgba(249, 115, 22, 0.1);
}

.trust-text {
  text-align: center;
  font-size: 1.6rem;
  color: var(--gray-color);
  margin-bottom: 3rem;
  font-weight: 500;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  opacity: 0.7;
}

.trust-item:hover {
  opacity: 1;
  transform: translateY(-5px);
}

.trust-item i {
  font-size: 3rem;
  color: var(--primary-color);
}

.trust-item span {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark-color);
}

/* ===== 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-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
  font-family: var(--font-secondary);
  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);
  font-size: 1.8rem;
  line-height: 1.7;
}

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

/* ===== SERVICES PREVIEW ===== */
.services-preview {
  background: white;
}

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

.service-card {
  background: white;
  padding: 3.5rem;
  border-radius: var(--border-radius-large);
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(249, 115, 22, 0.1);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: var(--hero-gradient);
  transition: var(--transition-smooth);
  z-index: 1;
}

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

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.service-card > * {
  position: relative;
  z-index: 2;
}

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

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

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

.service-card h3 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
  font-family: var(--font-secondary);
}

.service-card p {
  color: var(--gray-color);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-size: 1.6rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  font-size: 1.5rem;
}

.service-link:hover {
  color: var(--secondary-color);
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(5px);
}

.services-cta {
  text-align: center;
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
  background: var(--light-color);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: var(--dark-color);
  font-family: var(--font-secondary);
  position: relative;
}

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

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

.value-points {
  margin-bottom: 3rem;
}

.value-point {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

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

.value-point i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-top: 0.5rem;
}

.value-point h4 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--dark-color);
}

.value-point p {
  color: var(--gray-color);
  font-size: 1.5rem;
  margin: 0;
}

.about-visual {
  position: relative;
}

.mission-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.about-visual:hover .mission-img {
  transform: scale(1.02);
}

/* ===== CASE STUDIES PREVIEW ===== */
.case-studies-preview {
  background: white;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 4rem;
  margin-bottom: 5rem;
}

.case-study-card {
  background: white;
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(249, 115, 22, 0.1);
  transition: var(--transition-smooth);
}

.case-study-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-hover);
}

.case-study-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-study-card:hover .case-study-image img {
  transform: scale(1.1);
}

.case-study-overlay {
  position: absolute;
  top: 2rem;
  left: 2rem;
}

.case-study-category {
  background: var(--gradient);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-size: 1.3rem;
  font-weight: 600;
}

.case-study-content {
  padding: 3rem;
}

.case-study-content h3 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
  font-family: var(--font-secondary);
}

.case-study-content p {
  color: var(--gray-color);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-size: 1.6rem;
}

.case-study-results {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.result-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(249, 115, 22, 0.05);
  border-radius: var(--border-radius);
  flex: 1;
}

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

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

.case-study-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  font-size: 1.5rem;
}

.case-study-link:hover {
  color: var(--secondary-color);
}

.case-study-link i {
  transition: transform 0.3s ease;
}

.case-study-link:hover i {
  transform: translateX(5px);
}

.case-studies-cta {
  text-align: center;
}



/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--gradient);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

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

.cta-content h2 {
  font-size: clamp(3.2rem, 5vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  font-family: var(--font-secondary);
}

.cta-content p {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.cta-benefits {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.6rem;
  font-weight: 500;
}

.benefit-item i {
  color: var(--success-color);
  font-size: 1.8rem;
}

.final-cta .btn-primary {
  background: white;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.final-cta .btn-primary:hover {
  background: var(--light-color);
  color: var(--primary-color);
}

.cta-note {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}


/* ===== ENHANCED CONTACT SECTION ===== */
.contact.enhanced {
  background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
  position: relative;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: start;
}

.contact-info {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: clamp(2.5rem, 4vw, 3.5rem);
  border-radius: var(--border-radius-large);
  border: 1px solid rgba(249, 115, 22, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  height: fit-content;
}

.contact-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient);
}

.contact-info h3 {
  margin-bottom: 1.5rem;
  color: var(--dark-color);
  font-weight: 700;
}

.contact-info > p {
  margin-bottom: 2.5rem;
  color: var(--gray-color);
  line-height: 1.6;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(249, 115, 22, 0.03);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.info-item:hover {
  background: rgba(249, 115, 22, 0.08);
  transform: translateX(5px);
}

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

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

.info-item-content p {
  color: var(--gray-color);
  margin: 0;
}

.info-item-content a {
  color: var(--gray-color);
  transition: var(--transition);
}

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



.contact-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: clamp(2.5rem, 4vw, 3.5rem);
  border-radius: var(--border-radius-large);
  border: 1px solid rgba(249, 115, 22, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 500;
  color: var(--dark-color);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border: 1px solid #e2e8f0;
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-size: 1.5rem;
  transition: var(--transition);
  background: white;
}

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

/* ===== ENHANCED FINAL CTA SECTION ===== */
.final-cta-section.enhanced {
  background: linear-gradient(135deg, var(--dark-color) 0%, #374151 100%);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-image {
  position: relative;
}

.cta-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius-large);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cta-overlay {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
}

.overlay-text {
  color: white;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
}

.cta-text h2 {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.cta-text p {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
  color: white;
}

.benefit-item i {
  color: var(--success-color);
  font-size: 1.2rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.btn-cta.primary {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--gradient);
  color: white;
  padding: 1.8rem 3.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.8rem;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
  align-self: flex-start;
}

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

.contact-options {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: white;
}

.contact-btn.whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
}

.contact-btn.email:hover {
  background: #ea4335;
  border-color: #ea4335;
}

.contact-btn.phone:hover {
  background: #007bff;
  border-color: #007bff;
}

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

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.1;
  animation: floatShape 8s ease-in-out infinite;
}

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

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

.floating-shape.shape-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 60%;
  animation-delay: 4s;
}

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

/* Past Works Section Responsive & Carousel Styles */
.past-works-section {
  margin: 4rem 0;
  background: #f8fafc;
  padding: 2rem 0;
}
.works-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: #1f2937;
}
.works-subsection {
  margin-bottom: 2.5rem;
}
.works-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #f97316;
  margin-bottom: 1.2rem;
  text-align: left;
}
.works-carousel {
  display: flex;
  gap: 3rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1.5rem;
}
.work-card {
  min-width: 330px;
  max-width: 350px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.2rem;
  transition: box-shadow 0.2s;
}
.work-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}
.work-img {
  width: 100%;
  max-width: 320px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.2rem;
}
.work-desc {
  text-align: center;
}
.work-desc h4 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #f97316;
}
.work-desc p {
  font-size: 1.05rem;
  color: #374151;
  margin-bottom: 0;
}
.works-pagination {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1rem;
}
.works-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e5e7eb;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}
.works-dot.active {
  background: #f97316;
}
@media (max-width: 900px) {
  .works-carousel {
    gap: 1rem;
  }
  .difference-section {
    padding: 2rem 0.5rem;
  }
  .difference-grid {
    flex-direction: column;
    gap: 1.2rem;
    padding-right: 1.5rem;
  }
  .difference-card {
    width: 80%;
    margin: 0 2rem;
    padding: 1.2rem 0.5rem;
    font-size: 1.1rem;
  }
  .difference-icon {
    font-size: 2.2rem;
    margin-bottom: 0.7rem;
  }
  .work-card {
    min-width: 260px;
    max-width: 280px;
    padding: 1.2rem 0.5rem;
  }
  .work-img {
    max-width: 200px;
    height: 120px;
  }
}
@media (max-width: 600px) {
  .past-works-section {
    padding: 1rem 0.2rem;
  }
  .works-title {
    font-size: 1.4rem;
  }
  .works-subtitle {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
  }
  .works-carousel {
    gap: 0.5rem;
  }
  .work-card {
    min-width: 98vw;
    max-width: 98vw;
    padding: 0.7rem 0.2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  }
  .work-img {
    max-width: 98vw;
    height: 180px;
  }
  .work-desc h4 {
    font-size: 1rem;
  }
  .work-desc p {
    font-size: 0.95rem;
  }
  .works-pagination {
    margin-top: 0.5rem;
  }

  /* Case Studies Mobile Carousel */
  .case-studies-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 0.5rem;
    padding-bottom: 1.5rem;
  }
  .case-study-card {
    min-width: 98vw;
    max-width: 98vw;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  }
  .case-study-image {
    width: 100%;
    height: 180px;
    max-width: 98vw;
  }
  .case-study-image img {
    height: 180px;
    max-width: 98vw;
  }
  .case-study-content {
    padding: 1.2rem 0.5rem;
  }
  .case-studies-pagination {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 0.5rem;
  }
  .case-studies-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e5e7eb;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-block;
  }
  .case-studies-dot.active {
    background: #f97316;
  }
}





@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);
  }

    .cta-content, .contact-container {
   display: block;
    gap: 4rem;
    text-align: center;
  }

  .contact-info{
    margin-bottom: 2rem;
  }

  .form-group label{
    text-align: left;
  }
 
}

@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) {
  .hero {
    padding: 8rem 0 4rem;
  }

  .hero-title {
    font-size: 3.2rem;
  }

  .hero-description {
    font-size: 1.7rem;
  }

  .service-card,
  .simple-testimonial,
  .form-container {
    padding: 2.5rem;
  }

  .contact-methods {
    gap: 2rem;
  }

  .contact-method {
    padding: 2rem;
  }

  .method-icon {
    width: 50px;
    height: 50px;
  }

  .method-icon i {
    font-size: 1.8rem;
  }
}

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

.text-primary {
  color: var(--primary-color);
}

.bg-primary {
  background: var(--gradient);
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

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

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* What Makes Us Different Section */


.difference-section.redesigned {
  position: relative;
  padding: 7rem 0 7rem 0;
  overflow: hidden;
  z-index: 1;
}
.difference-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}
.difference-bg-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.18;
  z-index: 1;
}
.difference-bg-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, #fff7ed 60%, #fed7aa 100%);
  opacity: 0.85;
  z-index: 2;
}
.difference-animated-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.13;
  z-index: 3;
  animation: floatShape 8s ease-in-out infinite;
}
.difference-animated-shape.shape-1 {
  width: 120px; height: 120px;
  top: 10%; left: 8%;
  background: var(--gradient);
  animation-delay: 0s;
}
.difference-animated-shape.shape-2 {
  width: 180px; height: 180px;
  top: 60%; right: 10%;
  background: #ff9e00;
  animation-delay: 2s;
}
.difference-animated-shape.shape-3 {
  width: 90px; height: 90px;
  bottom: 15%; left: 60%;
  background: #38b2ac;
  animation-delay: 4s;
}
.difference-section .container {
  position: relative;
  z-index: 5;
}
.difference-grid {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.difference-card {
  background: rgba(255,255,255,0.95);
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.10);
  flex: 1 1 220px;
  max-width: 340px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1.7rem;
  transition: box-shadow 0.2s, transform 0.2s;
  text-align: center;
  backdrop-filter: blur(2px);
}
.difference-card:hover {
  box-shadow: 0 12px 40px rgba(249,115,22,0.18);
  transform: translateY(-8px) scale(1.04);
}
.difference-icon {
  font-size: 3.2rem;
  margin-bottom: 1.3rem;
  color: #f97316;
  background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
  border-radius: 50%;
  padding: 1.5rem;
  height: 70px;
  width: 70px;
  box-shadow: 0 2px 12px rgba(249,115,22,0.10);
}
.difference-icon.startup { color: #f97316; }

.difference-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #1f2937;
}
.difference-card p {
  font-size: 1.18rem;
  color: #374151;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .difference-grid {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .difference-card {
    min-width: 90vw;
    max-width: 90vw;
    margin: 0 auto 1.2rem auto;
    padding: 1.2rem 0.5rem;
    font-size: 1.1rem;
    box-sizing: border-box;
  }
  .difference-icon {
    font-size: 2.2rem;
    margin-bottom: 0.7rem;
  }
}

/* ===== AOS ANIMATION OVERRIDES ===== */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
