:root {
  --primary: #4f46e5;
  --primary-light: #6366f1;
  --secondary: #1e1e80;
  --accent: #7ec3ff;
  --text: #e2e8f0;
  --text-light: #cbd5e1;
  --dark: #0f172a;
  --gray:#64748b;
}

.about-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /* min-height: 80vh; */
  background: linear-gradient(135deg, #1f1f79 0%, #3e1f95 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: -300px;
  right: -300px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(126, 195, 255, 0.15) 0%, transparent 70%);
  z-index: 0;
}

.about-hero::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, transparent 70%);
  z-index: 0;
}

.about-hero-content {
  flex: 1;
  padding: 80px min(8vw, 120px);
  position: relative;
  z-index: 1;
  min-width: 300px;
}

.about-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 24px;
  background: linear-gradient(90deg, white 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-hero h1 span {
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-hero p {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 600px;
}

.about-hero-image {
  flex: 1;
  min-width: 300px;
  height: 100%;
  min-height: 400px;
  position: relative;
  /* right:30px; */
  padding-right: 70px;
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 21px;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(31, 31, 121, 0.7) 0%, rgba(62, 31, 149, 0.5) 100%);
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.stat-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 150px;
}

.stat-number {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}

.stat-label {
  font-size: 14px;
  color: var(--text-light);
}

@media (max-width: 1024px) {
  .about-hero {
    flex-direction: column;
  }
  
  .about-hero-content {
    padding: 60px 40px;
    text-align: center;
  }
  
  .about-hero p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .about-hero-image {
    min-height: 300px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .about-hero-content {
    padding: 40px 24px;
  }
  
  .hero-stats {
    gap: 15px;
  }
  
  .stat-item {
    min-width: 120px;
    padding: 15px;
  }
}


/* our story start */
      .our-story {
        padding: 100px 20px;
        background-color: white;
        position: relative;
      }
      
      .section-container {
        max-width: 1200px;
        margin: 0 auto;
      }
      
      .section-header {
        text-align: center;
        margin-bottom: 60px;
      }
      
      .section-title {
        font-size: clamp(2rem, 5vw, 3rem);
        font-weight: 800;
        margin-bottom: 16px;
        color: var(--dark);
      }
      
      .section-title span {
        background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
      }
      
      .section-subtitle {
        font-size: clamp(1rem, 2vw, 1.25rem);
        color: var(--gray);
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
      }
      
      .story-timeline {
        position: relative;
        max-width: 800px;
        margin: 0 auto;
        padding-left: 30px;
      }
      
      .story-timeline::before {
        content: "";
        position: absolute;
        top: 0;
        left: 7px;
        height: 100%;
        width: 2px;
        background: linear-gradient(to bottom, var(--primary), var(--accent));
      }
      
      .timeline-item {
        position: relative;
        margin-bottom: 40px;
        padding-bottom: 40px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      }
      
      .timeline-item:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
      }
      
      .timeline-year {
        position: absolute;
        left: -30px;
        top: 0;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--primary);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
      }
      
      .timeline-content {
        margin-left: 50px;
      }
      
      .timeline-content h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
        color: var(--dark);
      }
      
      .timeline-content p {
        color: var(--gray);
        line-height: 1.6;
      }
      
      @media (max-width: 768px) {
        .our-story {
          padding: 60px 20px;
          overflow-x: hidden;
        }
        
        .section-header {
          margin-bottom: 40px;
        }
        
        .story-timeline {
          padding-left: 20px;
        }
        
        .timeline-year {
          left: -20px;
          width: 30px;
          height: 30px;
          font-size: 0.8rem;
        }
        
        .timeline-content {
          margin-left: 40px;
        }
      }
    


/* our story end */


/* Mission section start*/

.mission-section {
  padding: 100px 20px;
  background-color: #f8fafc;
  position: relative;
}

.mission-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
}

.mission-image {
  flex: 1;
  min-width: 300px;
  height: 500px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.7) 0%, rgba(126, 195, 255, 0.5) 100%);
}

.mission-content {
  flex: 1;
  min-width: 300px;
}

.mission-content h2 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--dark);
}

.mission-content h2 span {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mission-content p {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.value-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--primary);
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.value-card p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 0;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .mission-container {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .mission-section {
    padding: 60px 20px;
    overflow: hidden;
  }
  
  .mission-image {
    height: 400px;
  }
}

/* Mission section end*/

/* team section start */

      .team-section {
        padding: 100px 20px;
        background-color: white;
        position: relative;
        overflow: hidden;
      }
      
      /*.team-grid {*/
      /*  display: grid;*/
      /*  grid-template-columns: repeat( minmax(250px, 1fr));*/
      /*  gap: 30px;*/
      /*  margin-bottom: 60px;*/
      /*}*/
      .team-grid{
          height: auto;
          display: flex;
          justify-content: center;
          align-items: center;
      }
      
      .team-card {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }
      
      .team-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
      }
      
      .team-image {
        height: 300px;
        position: relative;
        overflow: hidden;
      }
      
      .team-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
      }
      
      .team-card:hover .team-image img {
        transform: scale(1.05);
      }
      
      .social-links {
        position: relative;
        /*bottom: -60px;*/
        /*left: 0;*/
        width: 100%;
        display: flex;
        justify-content: start;
        gap: 15px;
        padding: 15px;
        /*background: rgba(255, 255, 255, 0.9);*/
        transition: bottom 0.3s ease;
      }
      
      .team-card:hover .social-links {
        bottom: 0;
      }
      
      .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--primary);
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
      }
      
      .social-links a:hover {
        background: var(--primary-light);
        transform: translateY(-3px);
      }
      
      .team-info {
        padding: 25px;
        text-align: center;
      }
      
      .team-info h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
        color: var(--dark);
      }
      
      .team-info p {
        color: var(--primary);
        font-weight: 600;
        margin-bottom: 15px;
      }
      
      .expertise {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
      }
      
      .expertise span {
        font-size: 0.8rem;
        padding: 4px 12px;
        border-radius: 20px;
        background: rgba(79, 70, 229, 0.1);
        color: var(--primary);
      }
      
      .join-team {
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
        padding: 40px;
        background: #f8fafc;
        border-radius: 16px;
      }
      
      .join-team h3 {
        font-size: 1.5rem;
        margin-bottom: 16px;
        color: var(--dark);
      }
      
      .join-team p {
        color: var(--gray);
        margin-bottom: 25px;
        line-height: 1.6;
      }
      
      .cta-button {
        background: var(--primary);
        color: white;
        border: none;
        padding: 14px 28px;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        display: inline-block;
        text-decoration: none;
        transition: all 0.3s ease;
      }
      
      .cta-button:hover {
        background: var(--primary-light);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
      }
      
      @media (max-width: 768px) {
        .team-section {
          padding: 60px 20px;
        }
        
        .join-team {
          padding: 30px 20px;
        }
      }
    /* team section end */
  :root {
    --primary: #4f46e5;
    --primary-light: #6366f1;
    --primary-dark: #4338ca;
    --secondary: #312e81;
    --text-dark: #0f172a;
    --text-light: #f8fafc;
    --accent: #a5b4fc;
  }

  .cta-section {
    width: 100%;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
  }

  .cta-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }

  .cta-text {
    flex: 1;
    max-width: 700px;
  }

  .cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-dark);
  }

  .cta-title span {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .cta-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-dark);
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
  }

  .cta-button {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
    white-space: nowrap;
  }

  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.4);
  }

  .cta-button:active {
    transform: translateY(0);
  }

  .cta-button svg {
    transition: transform 0.3s ease;
  }

  .cta-button:hover svg {
    transform: translateX(4px);
  }

  .cta-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
  }

  .decoration-circle {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(165, 180, 252, 0.15) 0%, transparent 70%);
  }

  .decoration-dots {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(rgba(79, 70, 229, 0.2) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
  }

  @media (max-width: 1024px) {
    .cta-container {
      padding: 50px 40px;
    }
    
    .cta-content {
      gap: 30px;
    }
  }

  @media (max-width: 768px) {
    .cta-section {
      padding: 60px 20px;
    }
    
    .cta-container {
      padding: 40px 30px;
    }
    
    .cta-content {
      flex-direction: column;
      text-align: center;
      gap: 30px;
    }
    
    .cta-button {
      width: 100%;
    }
  }

  @media (max-width: 480px) {
    .cta-container {
      padding: 40px 20px;
    }
  }


  
/* detailed-services start */

.detailed-services {
  padding: 100px 20px;
  background-color: #f8fafc;
}

.detailed-services-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.detailed-service-item {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.detailed-service-item.reverse {
  flex-direction: row-reverse;
}

.detailed-service-image {
  flex: 1;
  min-width: 300px;
  height: 400px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.detailed-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detailed-service-content {
  flex: 1;
  min-width: 300px;
}

.detailed-service-content h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--dark);
}

.detailed-service-content p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 24px;
}

.detailed-cta-button {
  background: var(--primary);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.detailed-cta-button:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

@media (max-width: 1024px) {
  .detailed-service-item {
    flex-direction: column;
  }

  .detailed-service-item.reverse {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .detailed-services {
    padding: 60px 20px;
  }

  .detailed-service-image {
    height: 300px;
  }
}

/* detailed-services end */



