/* Company Hero Section */
.company-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-dark) 100%);
    color: var(--neutral-100);
    padding-top: 80px;
    overflow: hidden;
}

.company-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.pexels.com/photos/3853972/pexels-photo-3853972.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}

.company-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,94,184,0.3) 0%, rgba(18,30,54,0.5) 100%);
    z-index: 2;
}

.company-hero .container {
    position: relative;
    z-index: 3;
}

.company-hero-content {
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}

.company-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--neutral-100);
    margin-bottom: var(--space-md);
}

.company-hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
}
.suchi-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 0;
}

.suchi-image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}


/* About Section */
.about-section {
    padding: var(--space-xxl) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-content h2 {
    margin-bottom: var(--space-md);
    color: var(--primary-color);
}

.about-content p {
    margin-bottom: var(--space-md);
    color: var(--neutral-700);
    line-height: 1.7;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}



/* Mission & Vision Section */
.mission-vision {
    padding: var(--space-xxl) 0;
    background-color: var(--neutral-200);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.mission-card, .vision-card {
    background-color: var(--neutral-100);
    padding: var(--space-xl);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.mission-card h2, .vision-card h2 {
    color: var(--primary-color);
    margin-bottom: var(--space-md);
}

.mission-card p, .vision-card p {
    color: var(--neutral-700);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.mission-icon, .vision-icon {
    font-size: 2.5rem;
    color: var(--primary-light);
    opacity: 0.15;
    position: absolute;
    bottom: var(--space-md);
    right: var(--space-md);
}

/* Values Section */
.values-section {
    padding: var(--space-xxl) 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.value-card {
    background-color: var(--neutral-100);
    padding: var(--space-lg);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--neutral-100);
    font-size: 1.5rem;
    margin: 0 auto var(--space-md);
}

.value-card h3 {
    margin-bottom: var(--space-sm);
}

.value-card p {
    color: var(--neutral-600);
    margin-bottom: 0;
}

/* Leadership Section */
.leadership-section {
    padding: var(--space-xxl) 0;
    background-color: var(--neutral-200);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.leader-card {
    background-color: var(--neutral-100);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.leader-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.leader-card h3 {
    margin: var(--space-md) var(--space-md) var(--space-xs);
}

.leader-title {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0 var(--space-md) var(--space-sm);
}

.leader-bio {
    color: var(--neutral-600);
    margin: 0 var(--space-md) var(--space-md);
    font-size: 0.9rem;
    line-height: 1.6;
}

.leader-social {
    display: flex;
    gap: var(--space-sm);
    margin: 0 var(--space-md) var(--space-md);
}

.leader-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--neutral-200);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.leader-social a:hover {
    background-color: var(--primary-color);
    color: var(--neutral-100);
}



/* Timeline Section Wrapper */
.timeline-section {
  padding: 60px 16px;
  background: #f9fafc;
  font-family: "Inter", sans-serif;
}

/* Scrollable Row */
.timeline-container {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  justify-content: center; /* Centers if no scroll needed */
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.timeline-container::-webkit-scrollbar {
  height: 6px;
}
.timeline-container::-webkit-scrollbar-thumb {
  background-color: #cfcfcf;
  border-radius: 3px;
}

.timeline-card {
  position: relative;
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

/* Connecting line to next card */
.timeline-card::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -20px; /* half of the gap between cards */
  width: 40px; /* length of the connector */
  height: 2px;
  background-color: #d1d5db; /* light gray line */
  transform: translateY(-50%);
  z-index: 0;
}

/* Remove line for the last card */
.timeline-card:last-child::after {
  display: none;
}


/* Individual Card */
.timeline-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.3s ease;
}

.timeline-card:hover {
  transform: translateY(-4px);
}

/* Year Pill */
.timeline-year {
  background: #1d4ed8;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 50px;
  width: fit-content;
  margin-bottom: 12px;
}

/* Title */
.timeline-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1d4ed8;
  margin: 0 0 8px;
}

/* Description */
.timeline-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  margin: 0;
}


/* Individual Cards */
.timeline-card {
  background-color: #fff;
  flex: 0 0 300px;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.3s ease;
}

.timeline-card:hover {
  transform: translateY(-6px);
}

.timeline-year {
  background-color: #0052cc;
  color: #fff;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 16px;
}

.timeline-card h3 {
  color: #0052cc;
  font-size: 18px;
  margin-bottom: 10px;
}

.timeline-card p {
  color: #444;
  font-size: 15px;
  line-height: 1.6;
}




/* Milestones Section */
.milestones-section {
    padding: var(--space-xxl) 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-lg) 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: var(--primary-light);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-xl);
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.timeline-year {
    position: relative;
    min-width: 90px;
    padding: var(--space-xs) var(--space-sm);
    background-color: var(--primary-color);
    color: var(--neutral-100);
    text-align: center;
    border-radius: 4px;
    font-weight: 600;
    z-index: 1;
}

.timeline-content {
    position: relative;
    width: calc(50% - 45px);
    padding: var(--space-md);
    background-color: var(--neutral-100);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-left: var(--space-md);
}

.timeline-content h3 {
    margin-bottom: var(--space-xs);
    color: var(--primary-color);
}

.timeline-content p {
    color: var(--neutral-600);
    margin-bottom: 0;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
    margin-right: var(--space-md);
    text-align: right;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-grid, .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .company-hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .values-grid, .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .company-hero {
        height: auto;
        padding: 120px 0 var(--space-xl);
    }
    
    .company-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item, .timeline-item:nth-child(even) {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .timeline-content, .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 90px);
        margin-left: var(--space-md);
        margin-right: 0;
        text-align: left;
    }
}

/* Mobile menu hidden by default */
.nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Default: hide on mobile */
@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .nav.open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    padding: 20px 0;
    margin: 0;
  }

  .nav-item {
    margin: 10px 0;
    text-align: center;
  }

  .nav-link {
    color: #000;
    font-size: 1.1rem;
    text-decoration: none;
  }

  .nav-link:hover {
    color: var(--primary-color); /* Optional brand color */
  }
}
@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .nav.open {
    display: flex;
  }

  .nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    width: 100%;
    margin: 0;
  }

  .nav-item {
    margin: 10px 0;
    text-align: center;
  }

  .nav-link {
    color: #000;
    font-size: 1.1rem;
    text-decoration: none;
  }

  .nav-link:hover {
    color: var(--primary-color); /* Brand color if defined */
  }
}
