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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Container responsive improvements */
@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    z-index: 1000;
    padding: 1rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 1001;
}

.logo-icon {
    background: #00FF85;
    color: #000000;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
}

.logo-sub {
    font-size: 0.7rem;
    font-weight: 500;
    color: #00FF85;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00FF85;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #00FF85;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 100px;
    overflow: hidden;
    font-family: 'Inter', 'Poppins', 'Montserrat', sans-serif;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f3fef7 60%, #e6f9ee 100%);
    opacity: 1;
}

.hero-accent {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.accent-top-left {
    top: 0;
    left: 0;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, #00ff85 0%, transparent 70%);
    filter: blur(8px) brightness(1.2);
    opacity: 0.7;
}

.accent-bottom-right {
    bottom: 0;
    right: 0;
    width: 220px;
    height: 220px;
    background: conic-gradient(from 0deg, #00ff85 10%, transparent 80%);
    filter: blur(10px) brightness(1.1);
    opacity: 0.6;
}

/* Mobile accent adjustments */
@media (max-width: 768px) {
    .accent-top-left {
        width: 120px;
        height: 120px;
        opacity: 0.5;
    }
    
    .accent-bottom-right {
        width: 140px;
        height: 140px;
        opacity: 0.4;
    }
}

@media (max-width: 480px) {
    .accent-top-left {
        width: 100px;
        height: 100px;
        opacity: 0.4;
    }
    
    .accent-bottom-right {
        width: 120px;
        height: 120px;
        opacity: 0.3;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 15%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 255, 133, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 10%;
    width: 150px;
    height: 150px;
    background: conic-gradient(from 0deg, transparent, rgba(0, 255, 133, 0.08), transparent, rgba(0, 255, 133, 0.08), transparent);
    border-radius: 50%;
    z-index: 1;
    animation: rotate 20s linear infinite;
}

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

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

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

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 2.2rem;
    margin-top: 3rem;
    color: #111;
    letter-spacing: -0.02em;
}

.hero-main {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 2.2rem;
    width: 100%;
}

.hero-left {
    flex: 1;
    text-align: left;
}

.hero-left p {
    font-size: 1.1rem;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.hero-right {
    flex: 0 0 400px;
    text-align: right;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-cta-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.5rem;
    margin-bottom: 1.2rem;
}

.cta-btn-modern {
    background: #fff;
    color: #111;
    border: 2px solid #00ff85;
    border-radius: 999px;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 18px 54px;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(0,255,133,0.13), 0 0 0 2px #e6f9ee;
    transition: all 0.25s cubic-bezier(.4,0,.2,1);
    outline: none;
    position: relative;
}

.cta-btn-modern:hover {
    background: #00ff85;
    color: #111;
    box-shadow: 0 8px 32px #00ff85aa, 0 0 0 2px #e6f9ee;
    border-color: #00ff85;
    transform: translateY(-2px) scale(1.04);
}



/* Sections */
section {
    padding: 100px 0;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #000000;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(0, 255, 133, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Each Stat Box */
.stat-box {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00ff85, #00cc73);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat-box:hover::before {
  transform: scaleX(1);
}

.stat-box:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 255, 133, 0.3);
  box-shadow: 0 10px 30px rgba(0, 255, 133, 0.2);
}

/* Numbers */
.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1;
  background: linear-gradient(135deg, #00ff85, #00cc73);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-number span {
  font-size: 2rem;
  color: #00ff85;
}

/* Labels */
.stat-label {
  font-size: 1rem;
  color: #94a3b8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-section {
    padding: 60px 20px;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 400px;
  }
  
  .stat-box {
    padding: 30px 20px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-number span {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .stats-section {
    padding: 50px 15px;
  }
  
  .stat-box {
    padding: 25px 15px;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .stat-number span {
    font-size: 1.6rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
}

/* About Us Section */
.about {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
}

/* Section Header */
.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    background: #00ff85;
    color: #111;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

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

/* Founder Section */
.founder-section {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.founder-photo {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.founder-content {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
}

.founder-content p {
    margin-bottom: 16px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

/* Value Cards */
.value-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 255, 133, 0.1);
    border-color: #00ff85;
}

/* Icon Badge */
.value-icon-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #00ff85;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon-badge i {
    color: #111;
    font-size: 1.4rem;
}

.value-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .about {
        padding: 80px 0;
    }
    
    .about h2 {
        font-size: 2rem;
    }
    
    .founder-section {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
        text-align: center;
    }
    
    .founder-image {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 60px 0;
    }
    
    .about h2 {
        font-size: 1.8rem;
    }
    
    .founder-section {
        padding: 24px 20px;
    }
    
    .value-card {
        padding: 24px 20px;
    }
}
/* Why Us Section */
.why-us {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(to bottom, #ffffff, #f7fff9);
    text-align: center;
    overflow: hidden;
}

/* Background subtle abstract shapes */
.why-us-bg-shapes .why-shape-1,
.why-us-bg-shapes .why-shape-2 {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    z-index: 0;
}

.why-us-bg-shapes .why-shape-1 {
    width: 250px;
    height: 250px;
    background: #00ff85;
    top: -80px;
    left: -120px;
}

.why-us-bg-shapes .why-shape-2 {
    width: 300px;
    height: 300px;
    background: #00ff85;
    bottom: -100px;
    right: -150px;
}

.why-us-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.why-us h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.why-us-subtitle {
    color: #555;
    font-size: 1rem;
}

/* Feature grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

/* Cards */
.feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
}

/* Alternate background shades for variety */
.feature-card.card-2 {
    background: #f5fff8;
}
.feature-card.card-3 {
    background: #eefaf5;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 25px rgba(0, 0, 0, 0.12);
    border: 1px solid #00ff85;
}

/* Icon Styling */
.feature-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #00ff85;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #111;
    font-size: 1.4rem;
}

/* Card content */
.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
}

/* Learn More link */
.feature-link {
    font-size: 0.9rem;
    color: #00b365;
    font-weight: 500;
    transition: color 0.3s;
    text-decoration: none;
}

.feature-link:hover {
    text-decoration: underline;
    color: #009e58;
}

/* Services Section */
.services {
  position: relative;
  padding: 120px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  text-align: center;
  overflow: hidden;
}

/* Background Elements */
.services-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.services-shape-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #00ff85, #00cc73);
  border-radius: 50%;
  opacity: 0.15;
  top: -150px;
  right: -150px;
  animation: float 6s ease-in-out infinite;
}

.services-shape-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-radius: 50%;
  opacity: 0.1;
  bottom: -100px;
  left: -100px;
  animation: float 8s ease-in-out infinite reverse;
}

.services-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 2px 2px, rgba(0, 255, 133, 0.08) 1px, transparent 0);
  background-size: 40px 40px;
}

/* Header */
.services-header {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

.services-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #1e293b, #475569);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Services Grid */
.services-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

/* Service Cards */
.service-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  text-align: left;
  border: 1px solid rgba(226, 232, 240, 0.8);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00ff85, #00cc73);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: #00ff85;
}

/* Premium Card */
.premium-card {
  background: linear-gradient(135deg, #ffffff 0%, #f7fff9 100%);
  border: 2px solid #00ff85;
}

.premium-card::before {
  background: linear-gradient(90deg, #00ff85, #00cc73);
}

/* Service Badge */
.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ffd700, #f59e0b);
  color: #1e293b;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Icon Wrapper */
.service-icon-wrapper {
  margin-bottom: 24px;
}

.service-icon-bg {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #00ff85, #00cc73);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 1.8rem;
  box-shadow: 0 8px 20px rgba(0, 255, 133, 0.3);
  transition: all 0.3s ease;
}

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

/* Card Content */
.service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
}

.service-description {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Service Features */
.service-features {
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: #475569;
}

.feature-item i {
  color: #00cc73;
  font-size: 1rem;
}

/* Platforms & Schedule */
.service-platforms,
.service-schedule {
  margin-bottom: 24px;
}

.platform-item,
.schedule-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #64748b;
}

.platform-item i,
.schedule-item i {
  color: #00ff85;
  width: 16px;
}

/* Service Buttons */
.service-cta {
  margin-top: auto;
}

.service-btn {
  width: 100%;
  padding: 14px 24px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-btn.primary {
  background: linear-gradient(135deg, #00ff85, #00cc73);
  color: #111;
  box-shadow: 0 6px 20px rgba(0, 255, 133, 0.4);
  font-weight: 700;
}

.service-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 133, 0.5);
}

.service-btn.secondary {
  background: #f1f5f9;
  color: #475569;
  border: 2px solid #e2e8f0;
}

.service-btn.secondary:hover {
  background: #00ff85;
  color: #111;
  border-color: #00ff85;
}

/* Services Bottom Section */
.services-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Guarantee Section */
.services-guarantee {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  padding: 24px 32px;
  border-radius: 16px;
  border: 1px solid #a7f3d0;
  max-width: 600px;
}

.guarantee-icon {
  width: 50px;
  height: 50px;
  background: #00cc73;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.guarantee-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #065f46;
  margin-bottom: 4px;
}

.guarantee-content p {
  font-size: 0.9rem;
  color: #047857;
  margin: 0;
}

/* Enhanced CTA */
.btn-cta-enhanced {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #1e293b, #475569);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(30, 41, 59, 0.4);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn-cta-enhanced::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.6s ease;
}

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

.btn-cta-enhanced:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(30, 41, 59, 0.5);
}

.btn-cta-enhanced i {
  transition: transform 0.3s ease;
}

.btn-cta-enhanced:hover i {
  transform: translateX(4px);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}
/* Key Outcomes Section */
.outcomes {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}
.outcomes-bg-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.outcome-shape-1 {
    position: absolute;
    top: 20%; right: 10%;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(0, 255, 133, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
}
.outcome-shape-2 {
    position: absolute;
    bottom: 30%; left: 5%;
    width: 150px; height: 150px;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.06), transparent);
    border-radius: 60% 40% 50% 70%;
    filter: blur(15px);
}
.outcomes .container {
    position: relative;
    z-index: 2;
}
.outcomes-header {
    text-align: center;
    margin-bottom: 4rem;
}
.outcomes h2 {
    color: #1e293b;
    margin-bottom: 1rem;
}
.outcomes-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.outcome-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}
.outcome-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 255, 133, 0.15);
    border-color: #00ff85;
}
.outcome-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00ff85, #00c46b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 255, 133, 0.3);
}
.outcome-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}
.outcome-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}
.outcome-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Approach Section */
.approach {
    background: #ffffff;
    padding: 100px 0;
}
.approach-header {
    text-align: center;
    margin-bottom: 4rem;
}
.approach h2 {
    color: #1e293b;
    margin-bottom: 1rem;
}
.approach-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
}
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}
.approach-step {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}
.approach-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 133, 0.1);
    border-color: #00ff85;
}
.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00ff85;
    margin-bottom: 1rem;
    opacity: 0.3;
}
.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00ff85, #00c46b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 255, 133, 0.2);
}
.step-icon i {
    font-size: 2rem;
    color: #ffffff;
}
.approach-step h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}
.approach-step p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0;
}
.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}
.contact h2 {
    color: #1e293b;
    margin-bottom: 1rem;
}
.contact-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
}
.contact-form-wrapper {
    background: #ffffff;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ff85;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 255, 133, 0.1);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.submit-btn {
    background: linear-gradient(135deg, #00ff85, #00c46b);
    color: #111;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 133, 0.3);
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}
.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 133, 0.1);
    border-color: #00ff85;
}
.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00ff85, #00c46b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-icon i {
    font-size: 1.2rem;
    color: #ffffff;
}
.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.3rem;
}
.contact-details a {
    color: #00c46b;
    text-decoration: none;
    font-weight: 500;
}
.contact-details a:hover {
    text-decoration: underline;
}
.contact-details p {
    color: #64748b;
    margin: 0;
}

/* Responsive Design for Contact Section */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr 350px;
        gap: 3rem;
    }
    
    .contact-form-wrapper {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .contact-header {
        margin-bottom: 2rem;
    }
    
    .contact h2 {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    .submit-btn {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    
    .contact-item {
        padding: 1.2rem;
        gap: 0.8rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .contact-details h4 {
        font-size: 1rem;
    }
    
    .contact-details a,
    .contact-details p {
        font-size: 0.9rem;
    }
    
    /* Additional responsive improvements for contact section */
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .contact-details {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS Safari */
        padding: 12px 15px;
    }
    
    .submit-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
}

/* Very Small Devices (phones, 320px and up) */
@media (max-width: 360px) {
    .contact-form-wrapper {
        padding: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .submit-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .contact-item {
        padding: 15px;
        gap: 10px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .contact-details h4 {
        font-size: 0.9rem;
    }
    
    .contact-details a,
    .contact-details p {
        font-size: 0.8rem;
    }
}

/* Extra Small Devices (phones, 320px and up) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .navbar {
        top: 8px;
        width: 96%;
        padding: 0.7rem 1.2rem;
        border-radius: 20px;
    }
    
    .nav-logo {
        gap: 0.5rem;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
        border-radius: 10px;
    }
    
    .logo-main {
        font-size: 1rem;
    }
    
    .logo-sub {
        font-size: 0.6rem;
    }
    
    .hamburger {
        padding: 6px;
    }
    
    .hamburger span {
        width: 22px;
        height: 2.5px;
        margin: 2.5px 0;
    }
    
    .nav-menu {
        gap: 2rem;
    }
    
    .nav-link {
        font-size: 1.5rem;
        padding: 1rem 1.5rem;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: 90vh;
    }
    
    .hero-content {
        padding: 0 15px;
        margin-top: 20px;
    }
    
    .hero-title {
        font-size: 1.9rem;
        line-height: 1.2;
        margin-bottom: 1.2rem;
        margin-top: 0.5rem;
    }
    
    .hero-main {
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .hero-image {
        max-width: 250px;
        border-radius: 16px;
    }
    
    .hero-left p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .cta-btn-modern {
        font-size: 1rem;
        padding: 14px 32px;
        margin-top: 0.5rem;
    }
    
    .stats-container {
        gap: 25px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .value-card {
        padding: 20px 15px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .outcomes-list li {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .approach-step {
        padding: 30px 20px;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
}

/* Small Devices (landscape phones, 481px and up) */
@media (min-width: 481px) and (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .navbar {
        width: 96%;
        padding: 0.9rem 1.8rem;
    }
    
    .nav-link {
        font-size: 1.6rem;
        padding: 1rem 1.5rem;
    }
    
    .hero {
        padding: 110px 0 70px;
    }
    
    .hero-content {
        padding: 0 25px;
        margin-top: 30px;
    }
    
    .hero-title {
        font-size: 2.4rem;
        line-height: 1.1;
        margin-bottom: 1.3rem;
    }
    
    .hero-main {
        gap: 2.2rem;
        margin-bottom: 2.2rem;
    }
    
    .hero-image {
        max-width: 300px;
        border-radius: 18px;
    }
    
    .hero-left p {
        font-size: 1.05rem;
        line-height: 1.55;
    }
    
    .cta-btn-modern {
        font-size: 1.05rem;
        padding: 15px 36px;
    }
    
    .stats-container {
        padding: 25px;
        gap: 30px;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Medium Devices (tablets, 769px and up) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-main {
        gap: 3rem;
    }
    
    .founder-section {
        grid-template-columns: 300px 1fr;
        gap: 3rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

/* Mobile Styles (768px and below) */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .navbar {
        top: 10px;
        width: 95%;
        padding: 0.8rem 1.5rem;
        border-radius: 25px;
    }

    .nav-logo {
        gap: 0.6rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .logo-main {
        font-size: 1.1rem;
    }

    .logo-sub {
        font-size: 0.65rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        backdrop-filter: blur(20px);
        transform: translateX(-100%);
        visibility: hidden;
        opacity: 0;
    }

    .nav-menu.active {
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
    }

    .nav-menu li {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.4s; }

    .nav-link {
        font-size: 1.8rem;
        padding: 1.2rem 2rem;
        border-radius: 12px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

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

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

    .nav-link:hover {
        background: rgba(0, 255, 133, 0.1);
        transform: scale(1.05);
    }

    .nav-link::after {
        display: none;
    }
}

    .hero {
        padding: 120px 0 80px;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 0 20px;
        margin-top: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.15;
        margin-bottom: 1.5rem;
        margin-top: 1rem;
    }

    .hero-main {
        flex-direction: column;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .hero-right {
        flex: none;
        order: -1;
        margin-bottom: 1rem;
    }

    .hero-image {
        max-width: 280px;
        margin: 0 auto;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .hero-left {
        text-align: center;
    }
    
    .hero-left p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
        color: #666;
    }
    
    .cta-btn-modern {
        font-size: 1.1rem;
        padding: 16px 40px;
        margin-top: 1rem;
    }

    h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .about {
        padding: 60px 0;
        margin: 60px auto;
    }

    .founder-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .founder-photo {
        height: 250px;
        max-width: 200px;
        margin: 0 auto;
    }

    .founder-content p:first-child:before {
        display: none;
    }

    .values-grid,
    .features-grid,
    .services-grid,
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services {
        padding: 60px 0;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .services-guarantee {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .btn-cta-enhanced {
        padding: 16px 28px;
        font-size: 1rem;
    }

    .why-us {
        padding: 60px 0;
    }

    .outcomes {
        padding: 60px 0;
    }

    .approach {
        padding: 60px 0;
    }

    .contact {
        padding: 60px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 24px 20px;
    }
    
    .contact-header {
        margin-bottom: 40px;
    }
    
    .contact h2 {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px;
    }
    
    .submit-btn {
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .contact-item {
        padding: 20px;
        gap: 16px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .contact-details h4 {
        font-size: 1rem;
    }
    
    .contact-details a,
    .contact-details p {
        font-size: 0.9rem;
    }

    .delivery-platforms,
    .delivery-schedule {
        flex-direction: column;
        gap: 15px;
    }

    section {
        padding: 60px 0;
    }

/* Large Devices (desktops, 1025px and up) */
@media (min-width: 1025px) {
    .container {
        max-width: 1200px;
        padding: 0 40px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .approach-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
}

/* Very Small Devices (320px and below) */
@media (max-width: 320px) {
    .navbar {
        top: 5px;
        width: 98%;
        padding: 0.6rem 1rem;
        border-radius: 18px;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 0.7rem;
        border-radius: 8px;
    }
    
    .logo-main {
        font-size: 0.9rem;
    }
    
    .logo-sub {
        font-size: 0.55rem;
    }
    
    .hamburger span {
        width: 20px;
        height: 2px;
        margin: 2px 0;
    }
    
    .nav-link {
        font-size: 1.3rem;
        padding: 0.8rem 1.2rem;
    }
    
    .hero {
        padding: 90px 0 50px;
        min-height: 85vh;
    }
    
    .hero-content {
        padding: 0 12px;
        margin-top: 15px;
    }
    
    .hero-title {
        font-size: 1.7rem;
        line-height: 1.15;
        margin-bottom: 1rem;
    }
    
    .hero-main {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-image {
        max-width: 220px;
        border-radius: 14px;
    }
    
    .hero-left p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
    }
    
    .cta-btn-modern {
        font-size: 0.95rem;
        padding: 12px 28px;
        margin-top: 0.3rem;
    }
}

/* Landscape Orientation */
@media (orientation: landscape) and (max-height: 600px) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .navbar {
        top: 5px;
        padding: 0.6rem 1.5rem;
    }
    
    .nav-menu {
        flex-direction: row;
        gap: 1.5rem;
        height: auto;
        padding: 1.5rem;
        justify-content: space-around;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 0.8rem 1rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .nav-link {
        padding: 1.2rem 2rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hamburger {
        padding: 12px;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .navbar {
        backdrop-filter: blur(25px);
    }
    
    .nav-menu {
        backdrop-filter: blur(30px);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .navbar,
    .nav-menu,
    .nav-link,
    .hamburger,
    .hamburger span {
        transition: none;
    }
    
    .nav-menu li {
        transition: none;
    }
    
    .nav-link::before {
        transition: none;
    }
}

/* Responsive Utilities */
.text-center-mobile {
    text-align: left;
}

@media (max-width: 768px) {
    .text-center-mobile {
        text-align: center;
    }
    
    .hide-mobile {
        display: none;
    }
    
    .show-mobile {
        display: block;
    }
}

.hide-mobile {
    display: block;
}

.show-mobile {
    display: none;
}
/* Services Delivery Info */
.services-delivery-info {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

.delivery-card {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 1px solid #bbf7d0;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.delivery-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #065f46;
  margin-bottom: 24px;
}

.delivery-platforms {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.delivery-schedule {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.delivery-platforms .platform-item,
.delivery-schedule .schedule-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #047857;
  font-weight: 500;
}

.delivery-platforms .platform-item i,
.delivery-schedule .schedule-item i {
  color: #00ff85;
  font-size: 1.1rem;
}

/* Form specific responsive improvements */
@media (max-width: 480px) {
    .contact-form {
        gap: 1rem;
    }
    
    .form-group {
        margin-bottom: 0;
    }
    
    select#service {
        background-position: right 10px center;
        padding-right: 30px;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
}

@media (max-width: 360px) {
    .form-group textarea {
        min-height: 80px;
    }
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

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

.contact h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.contact-subtitle {
    color: #94a3b8;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ff85;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(0, 255, 133, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%2394a3b8" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 40px;
}

.form-group select option {
    background: #1e293b;
    color: #ffffff;
}

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

.submit-btn {
    background: linear-gradient(135deg, #00ff85, #00cc73);
    color: #111;
    border: none;
    padding: 18px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 133, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00ff85, #00cc73);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-details a {
    color: #00ff85;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    word-break: break-word;
}

.contact-details a:hover {
    color: #00cc73;
}

.contact-details p {
    color: #94a3b8;
    font-size: 1rem;
    margin: 0;
}

/* Contact Section Responsive Design */

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .contact {
        padding: 140px 0;
    }
    
    .contact h2 {
        font-size: 3rem;
    }
    
    .contact-content {
        gap: 80px;
    }
    
    .contact-form-wrapper {
        padding: 50px;
    }
}

/* Desktop (1024px to 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .contact {
        padding: 100px 0;
    }
    
    .contact-content {
        gap: 50px;
    }
    
    .contact-form-wrapper {
        padding: 35px;
    }
}

/* Tablet (768px to 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .contact {
        padding: 80px 0;
    }
    
    .contact h2 {
        font-size: 2.2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .contact-info {
        gap: 25px;
    }
    
    .contact-item {
        padding: 20px;
        gap: 16px;
    }
}

/* Mobile Large (481px to 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact h2 {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-header {
        margin-bottom: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .submit-btn {
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .contact-info {
        gap: 20px;
    }
    
    .contact-item {
        padding: 18px;
        gap: 14px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .contact-details h4 {
        font-size: 1rem;
    }
    
    .contact-details a,
    .contact-details p {
        font-size: 0.9rem;
    }
}

/* Mobile Medium (361px to 480px) */
@media (min-width: 361px) and (max-width: 480px) {
    .contact {
        padding: 50px 0;
    }
    
    .contact h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .contact-subtitle {
        font-size: 0.95rem;
    }
    
    .contact-header {
        margin-bottom: 35px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .contact-form {
        gap: 18px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 16px;
        border-radius: 10px;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .submit-btn {
        padding: 14px 20px;
        font-size: 0.95rem;
        border-radius: 10px;
    }
    
    .contact-info {
        gap: 16px;
    }
    
    .contact-item {
        padding: 16px;
        gap: 12px;
        border-radius: 12px;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
    
    .contact-details h4 {
        font-size: 0.95rem;
        margin-bottom: 2px;
    }
    
    .contact-details a,
    .contact-details p {
        font-size: 0.85rem;
    }
}

/* Mobile Small (320px to 360px) */
@media (max-width: 360px) {
    .contact {
        padding: 40px 0;
    }
    
    .contact h2 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .contact-subtitle {
        font-size: 0.9rem;
    }
    
    .contact-header {
        margin-bottom: 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form-wrapper {
        padding: 16px;
        border-radius: 16px;
    }
    
    .contact-form {
        gap: 16px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 16px;
        border-radius: 8px;
    }
    
    .form-group select {
        background-position: right 12px center;
        padding-right: 32px;
    }
    
    .form-group textarea {
        min-height: 80px;
    }
    
    .submit-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
        border-radius: 8px;
        gap: 8px;
    }
    
    .contact-info {
        gap: 14px;
    }
    
    .contact-item {
        padding: 14px;
        gap: 10px;
        border-radius: 10px;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
        border-radius: 8px;
    }
    
    .contact-details h4 {
        font-size: 0.9rem;
        margin-bottom: 2px;
    }
    
    .contact-details a,
    .contact-details p {
        font-size: 0.8rem;
    }
}

/* Landscape Orientation for Mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .contact {
        padding: 40px 0;
    }
    
    .contact-header {
        margin-bottom: 25px;
    }
    
    .contact h2 {
        font-size: 1.8rem;
    }
    
    .contact-content {
        gap: 20px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .contact-form-wrapper {
        backdrop-filter: blur(15px);
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .contact-item,
    .submit-btn {
        transition: none;
    }
    
    .contact-item:hover,
    .submit-btn:hover {
        transform: none;
    }
}

/* Focus Styles for Better Accessibility */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid #00ff85;
    outline-offset: 2px;
}

.submit-btn:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .contact {
        background: #ffffff;
        color: #000000;
        padding: 20px 0;
    }
    
    .contact h2,
    .contact-details h4 {
        color: #000000;
    }
    
    .contact-form-wrapper,
    .contact-item {
        background: #f8f9fa;
        border: 1px solid #dee2e6;
    }
    
    .contact-icon {
        background: #6c757d;
    }
    
    .submit-btn {
        background: #6c757d;
        color: #ffffff;
    }
}

/* Outcomes Section */
.outcomes {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.outcomes .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.outcomes h2 {
    color: #1e293b;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.outcomes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.outcomes-list li {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #00ff85;
    font-size: 1.1rem;
    color: #374151;
    transition: all 0.3s ease;
    position: relative;
}

.outcomes-list li:before {
    content: '•';
    color: #00ff85;
    font-size: 1.5rem;
    position: absolute;
    left: 1rem;
    top: 1.4rem;
}

.outcomes-list li:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0,255,133,0.15);
    border-left-color: #00c46b;
}



/* Approach Section */
.approach {
    background: #ffffff;
    padding: 120px 0;
    position: relative;
}

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

.approach h2 {
    color: #1e293b;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

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

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.approach-step {
    text-align: center;
    padding: 40px 30px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.approach-step:hover {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 133, 0.1);
    border-color: #00ff85;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: linear-gradient(135deg, #00ff85, #00cc73);
    color: #111;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00ff85, #00cc73);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.8rem;
    margin: 20px auto 24px;
    transition: all 0.3s ease;
}

.approach-step:hover .step-icon {
    transform: scale(1.1);
}

.approach-step h3 {
    color: #1e293b;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.approach-step p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}



/* Footer Section */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 60px 0 30px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ff85, transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #00ff85;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    background: #00ff85;
    color: #111;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo .logo-main {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-logo .logo-sub {
    font-size: 0.7rem;
    font-weight: 500;
    color: #00ff85;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.95rem;
    max-width: 300px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: #00ff85;
    padding-left: 8px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #00ff85;
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 4px;
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact .contact-item i {
    color: #00ff85;
    font-size: 1.1rem;
    width: 20px;
}

.footer-contact .contact-item a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-contact .contact-item a:hover {
    color: #00ff85;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-copyright p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile Footer */
@media (max-width: 768px) {
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-description {
        max-width: 100%;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact {
        align-items: center;
    }
}

/* International Section */
.international {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
}

.international-header {
    text-align: center;
    margin-bottom: 4rem;
}

.international h2 {
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.international-description {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.countries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.country-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
}

.country-item:hover {
    transform: translateY(-4px);
    border-color: #00ff85;
    box-shadow: 0 8px 25px rgba(0, 255, 133, 0.15);
}

.country-flag {
    display: none;
}

.country-item span {
    color: #374151;
    font-weight: 500;
    font-size: 0.9rem;
}

.more-countries {
    background: linear-gradient(135deg, #00ff85, #00c46b);
    border-color: #00ff85;
    color: #ffffff;
}

.more-countries span {
    color: #ffffff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .international {
        padding: 80px 0;
    }
    
    .international h2 {
        font-size: 2rem;
    }
    
    .countries-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
    
    .country-item {
        padding: 1rem 0.8rem;
    }
    
    .country-flag {
        font-size: 2rem;
    }
}
.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #00ff85, #00c46b);
    color: #111;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 255, 133, 0.3);
}