

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://t3.ftcdn.net/jpg/04/36/37/00/360_F_436370014_W5ZokeZxmPYx7FFAA4xBj3wWV1LMIEQf.jpg") no-repeat center center/cover;
  z-index: 1;
  transform: scale(1.1);
  filter: brightness(0.8);
  transition: transform 8s ease-in-out;
}

.hero:hover .hero-bg {
  transform: scale(1.15);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 31, 61, 0.8), rgba(26, 59, 106, 0.7), rgba(16, 42, 80, 0.85));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 20px;
  animation: fadeUp 1.5s ease forwards;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  color: #e8f6ff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #d8eaff;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, #1f2b42, #0072ff);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 198, 255, 0.4);
}

.cta-button:hover {
  background: linear-gradient(90deg, #0072ff, #00c6ff);
  box-shadow: 0 0 30px rgba(0, 198, 255, 0.6);
  transform: translateY(-3px);
}

/* Team Section */
.team-section {
  padding: 6rem 5%;
  background: #f8fafc;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.section-title {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2d3748 0%, rgba(45, 55, 72, 0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: slideInLeft 0.8s ease;
}

.team-text p {
  color: rgba(45, 55, 72, 0.7);
  line-height: 1.8;
  font-size: 1.05rem;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  color: #4299e1;
  text-decoration: none;
  font-weight: 600;
  transition: gap 0.3s;
}

.learn-more:hover {
  gap: 1rem;
}

/* Growth Section */
.growth-section {
  padding: 6rem 5%;
  background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.growth-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  animation: scaleIn 1s ease;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.image-box {
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: transform 0.5s ease;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-box:hover {
  transform: translateY(-10px) scale(1.02);
}

.image-box:first-child {
  grid-row: span 2;
  height: 100%;
}

.feature-item {
  margin-bottom: 2.5rem;
  padding-left: 4rem;
  position: relative;
  animation: fadeInRight 1s ease;
}

.feature-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #4299e1, #1f2b42);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.feature-item h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: #2d3748;
}

.feature-item p {
  color: rgba(45, 55, 72, 0.7);
  line-height: 1.7;
}

/* Services Section */
.services-section {
  padding: 6rem 5%;
  background: #f8fafc;
}

.services-header {
  background: linear-gradient(135deg, #4299e1 0%, #1f2b42 100%);
  color: white;
  padding: 4rem;
  border-radius: 25px;
  margin-bottom: 4rem;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  animation: zoomIn 0.8s ease;
  position: relative;
  overflow: hidden;
}

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

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

.service-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(45, 55, 72, 0.1);
  border-radius: 20px;
  transition: all 0.4s ease;
  animation: fadeInUp 1s ease;
  animation-fill-mode: both;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(66, 153, 225, 0.1) 0%, rgba(56, 178, 172, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.service-card:hover {
  transform: translateY(-15px);
  border-color: rgba(66, 153, 225, 0.5);
  box-shadow: 0 20px 60px rgba(66, 153, 225, 0.15);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #4299e1, #1f2b42);
  border-radius: 15px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: relative;
  z-index: 1;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2d3748;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: rgba(45, 55, 72, 0.7);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* Process Section */

        /* ======= Overall Container ======= */
        .process-section {
          
            padding: 2.5rem 2rem;
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            width: 100%;
        }

        /* ======= Header ======= */
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header h2 {
            font-size: 2.2rem;
            color: #1f2b42;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

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

        /* ======= Timeline Base ======= */
        .timeline {
            position: relative;
            padding: 2rem 0;
        }

        .timeline::before {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 3px;
            background: #cbd5e1;
            transform: translateX(-50%);
        }

        /* ======= Timeline Item ======= */
        .timeline-item {
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 3rem 0;
            width: 100%;
        }

        /* ======= Cards ======= */
        .timeline-content {
            background: #ffffff;
            padding: 1.8rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
            width: 45%;
            position: relative;
            transition: all 0.3s ease;
            border-top: 4px solid #1f2b42;
        }

        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .timeline-content.left {
            text-align: right;
        }

        .timeline-content.right {
            text-align: left;
        }

        .timeline-content h3 {
            color: #1e293b;
            font-size: 1.25rem;
            margin-bottom: 0.8rem;
            font-weight: 600;
            display: flex;
            align-items: center;
        }

        .timeline-content.left h3 {
            justify-content: flex-end;
        }

        .timeline-content h3 i {
            margin-right: 10px;
            color: #1f2b42;
            font-size: 1.2rem;
        }

        .timeline-content p {
            color: #475569;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* ======= Step Circle ======= */
        .timeline-dot {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #4299e1, #1f2b42);
            color: #fff;
            border-radius: 50%;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            box-shadow: 0 6px 15px rgba(37, 99, 235, 0.4);
            z-index: 10;
            border: 4px solid white;
        }

        /* ======= Responsive ======= */
        @media (max-width: 992px) {
            .process-section {
                padding: 2rem 1.5rem;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .process-section {
                padding: 1.5rem 1rem;
                margin: 1rem auto;
                border-radius: 12px;
            }
            
            .section-header {
                margin-bottom: 2rem;
            }
            
            .section-header h2 {
                font-size: 1.8rem;
            }
            
            .section-header p {
                font-size: 1rem;
                padding: 0 0.5rem;
            }
            
            .timeline {
                padding: 1rem 0;
            }
            
            .timeline::before {
                left: 25px;
                transform: none;
            }
            
            .timeline-item {
                flex-direction: row;
                align-items: flex-start;
                margin: 2.5rem 0;
                padding-left: 60px;
            }
            
            .timeline-content {
                width: 100%;
                text-align: left;
                padding: 1.5rem;
                margin-left: 0;
                margin-top: 0;
            }
            
            .timeline-content.left, 
            .timeline-content.right {
                text-align: left;
            }
            
            .timeline-content.left h3 {
                justify-content: flex-start;
            }
            
            .timeline-dot {
                position: absolute;
                left: 0;
                top: 0;
                transform: none;
                width: 50px;
                height: 50px;
                font-size: 1rem;
                margin-left: 0;
                border-width: 3px;
            }
            
            /* Hide empty placeholder divs on mobile */
            .timeline-content[style*="visibility: hidden"] {
                display: none;
            }
        }

        @media (max-width: 576px) {
            /* body {
                padding: 0.5rem;
            } */
            
            .process-section {
                padding: 1.25rem 0.75rem;
                margin: 0.5rem auto;
            }
            
            .section-header h2 {
                font-size: 1.6rem;
            }
            
            .section-header p {
                font-size: 0.95rem;
            }
            
            .timeline-item {
                padding-left: 50px;
                margin: 2rem 0;
            }
            
            .timeline-content {
                padding: 1.25rem;
            }
            
            .timeline-dot {
                width: 40px;
                height: 40px;
                font-size: 0.9rem;
            }
            
            .timeline-content h3 {
                font-size: 1.1rem;
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }
            
            .timeline-content h3 i {
                margin-right: 0;
                font-size: 1.1rem;
            }
            
            .timeline-content p {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 400px) {
            .timeline-item {
                padding-left: 45px;
            }
            
            .timeline-dot {
                width: 35px;
                height: 35px;
                font-size: 0.8rem;
            }
            
            .timeline-content {
                padding: 1rem;
            }
            
            .timeline-content h3 {
                font-size: 1rem;
            }
            
            .timeline-content p {
                font-size: 0.85rem;
            }
        }

/* Support Section */
.support-section {
  padding: 6rem 5%;
  background: #f8fafc;
}

.support-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.support-content p {
  color: rgba(45, 55, 72, 0.7);
  line-height: 1.9;
  font-size: 1.1rem;
  margin: 2rem 0;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.pillar {
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(45, 55, 72, 0.1);
  border-radius: 20px;
  font-size: 1.5rem;
  font-weight: 600;
  transition: all 0.4s ease;
  animation: bounceIn 0.8s ease;
  animation-fill-mode: both;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4299e1, #1f2b42);
  opacity: 0;
  transition: opacity 0.4s;
}

.pillar:hover::before {
  opacity: 1;
}

.pillar span {
  position: relative;
  z-index: 1;
}

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

.pillar:hover {
  transform: translateY(-15px);
  border-color: rgba(66, 153, 225, 0.5);
  box-shadow: 0 20px 60px rgba(66, 153, 225, 0.15);
}

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 5%;
  background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
}

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

.testimonial-card {
  padding: 3rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(45, 55, 72, 0.1);
  border-radius: 20px;
  transition: all 0.4s;
  animation: fadeInUp 1s ease;
  animation-fill-mode: both;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.testimonial-card:hover {
  transform: translateY(-10px);
  background: rgba(66, 153, 225, 0.1);
  border-color: rgba(66, 153, 225, 0.5);
}

.quote-icon {
  font-size: 3rem;
  color: #4299e1;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: rgba(45, 55, 72, 0.8);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4299e1, #1f2b42);
  border-radius: 50%;
}

.author-info h4 {
  color: #2d3748;
  margin-bottom: 0.3rem;
}

.author-info p {
  color: rgba(45, 55, 72, 0.6);
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  padding: 8rem 5%;
  background: linear-gradient(135deg, #4299e1 0%, #1f2b42 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.cta-section h2 {
  font-size: 4rem;
  margin-bottom: 2rem;
  animation: slideInLeft 1s ease;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.cta-btn-primary {
  padding: 1.2rem 3rem;
  background: white;
  color: #4299e1;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s;
  display: inline-block;
}

.cta-btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-btn-secondary {
  padding: 1.2rem 3rem;
  background: transparent;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  border: 2px solid white;
  transition: all 0.3s;
  display: inline-block;
}

.cta-btn-secondary:hover {
  background: white;
  color: #4299e1;
  transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .growth-section,
  .team-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .growth-images {
    grid-template-columns: 1fr;
  }
  
  .image-box:first-child {
    grid-row: span 1;
  }
  
  .pillars {
    grid-template-columns: 1fr;
  }
  
  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .services-header {
    font-size: 1.5rem;
    padding: 2rem;
  }
  
  .cta-section h2 {
    font-size: 2rem;
  }
  
  .cta-section p {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .feature-item {
    padding-left: 3rem;
  }
  
  .feature-item::before {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  /* Process Section Mobile */
  .process-container {
    padding: 3rem 2rem;
  }
  
  .section-header {
    margin-bottom: 4rem;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
  }
  
  .process-timeline {
    padding: 0 2rem;
  }
  
  .process-timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .process-item {
    margin-bottom: 4rem;
  }
  
  .process-item:nth-child(odd) {
    flex-direction: row;
  }
  
  .process-item:nth-child(even) {
    flex-direction: row-reverse;
  }
  
  .process-content {
    padding: 2rem;
    margin-left: 0;
  }
  
  .process-item:nth-child(odd) .process-content {
    border-left: 5px solid #3498db;
    border-right: none;
  }
  
  .process-item:nth-child(even) .process-content {
    border-left: none;
    border-right: 5px solid #2c3e50;
  }
  
  .process-step {
    width: 70px;
    height: 70px;
    font-size: 1.6rem;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
  
  .process-item:nth-child(odd) .process-step {
        left: calc(14% - 35px);

  }
  
  .process-item:nth-child(even) .process-step {
    left: calc(14% - 35px);
  }
}

@media (min-width: 992px) {
  .process-container {
    padding: 4rem 3rem;
  }
  
  .section-header h2 {
    font-size: 2.8rem;
  }
  
  .process-content {
    padding: 2.5rem;
  }
  
  .process-content h3 {
    font-size: 1.5rem;
  }
  
  .process-step {
    width: 80px;
    height: 80px;
    font-size: 1.8rem;
  }
  
  .process-item:nth-child(odd) .process-step {
    left: calc(50% + 40px);
  }
  
  .process-item:nth-child(even) .process-step {
    left: calc(50% - 40px);
  }
}

@media (max-width: 767px) {
  .process-content h3 {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .process-content h3 i {
    margin-bottom: 8px;
    margin-right: 0;
  }
  
  .process-step {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .process-content {
    margin-left: 60px;
  }
  
  .process-timeline::before {
    left: 25px;
  }
}

@media (max-width: 480px) {
  .process-container {
    padding: 1.5rem 0.5rem;
    border-radius: 15px;
  }
  
  .section-header {
    padding: 0 0.5rem;
    margin-bottom: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  .process-timeline {
    padding: 0 0.5rem;
  }
  
  .process-content {
    padding: 1.2rem;
    border-radius: 12px;
  }
  
  .process-content h3 {
    font-size: 1.2rem;
  }
  
  .process-content p {
    font-size: 0.95rem;
  }
  
  .process-step {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .process-content {
    margin-left: 55px;
  }
  
  .process-timeline::before {
    left: 22.5px;
  }
}