/* ===== Hero Section ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 16px;
    font-family: 'Inter', sans-serif;
}

/* Hero Section */
.hero-title {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 50px;
    text-align: left;
    font-weight: bold;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start;
}

/* Image Box */
.hero-image {
    flex-shrink: 0;
}
.hero-image img {
    width: 320px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Text Box */
.hero-text {
    flex: 1;
    min-width: 300px;
    background-color: #ffeded;
    padding: 24px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-text h3 {
    margin-top: 0;
}

.hero-text a {
    color: #6b2e2e;
    font-weight: bold;
    text-decoration: underline;
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        align-items: center;
    }

    .hero-image img {
        width: 100%;
        max-width: 300px;
    }

    .hero-text {
        width: 100%;
    }
}

/* Career Highlight Section */

.career-highlight {
    margin-top: 80px;
}

.career-title {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 40px;
}

/* Cards in Row */
.card-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px;
}

.card {
    flex: 1 1 calc(33.333% - 20px);
    background-color: #ffeded;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card h6{
  color: #6b2e2e ;
  text-align: left;
  margin-bottom: 30px;

}

.card p{
  color: #6b2e2e ;
  text-align: left;
  margin-bottom: 30px;
  font-size: small;
  margin-bottom: 5px;

}

@media (max-width: 1024px) {
    .card {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .card-row {
        flex-direction: column;
    }

    .career-title {
        font-size: 1.5rem;
    }
}

/* Company Section */
.company {
  margin-top: 80px;
  text-align: center;
}

.company-title {
  text-align: left;
  font-size: 2rem;
  margin-bottom: 40px;
  padding-left: 20px;
}

/* Main wrapper with arrows outside */
.slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Card slider area */
.card-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 20px;
  width: 100%;
  padding: 10px 0;
}

.card-slider::-webkit-scrollbar {
  display: none; /* Hide scrollbar */
}

/* Individual company card */
.card-company { 
  flex: 0 0 500px;
  background-color: #ffffff;
  border-radius: 16px;
  border: 2px solid #f3b8b8;
  padding: 20px;
  scroll-snap-align: start;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Card title */
.card-company h3 {
  font-size: 18px;
  margin: 10px 0;
  color: #333;
}

/* Text styles */
.card-company p {
  font-size: 12px;
  margin: 4px 0;
  color: #eb2929;
}

.card-company a {
  font-size: 12px;
  margin: 4px 0;
  color: #333;
}

.card-company .company-data {
  margin-bottom: 8px;
  color: #444;
  font-weight: normal;
}

/* Image container */
.image-container {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
  margin-bottom: 10px;
  border-radius: 6px;
  overflow: hidden;
}

.image-container img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* Arrows */
.slider-arrow {
  background-color: #f34747;
  border: none;
  font-size: 24px;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  margin: 0 10px;
  color: white;
  transition: background-color 0.3s;
}

.slider-arrow:hover {
  background-color: #941515;
}

@media (max-width: 1024px) {
  .card-company {
    flex: 0 0 420px;
  }
}

@media (max-width: 768px) {
  .company-title {
    font-size: 1.5rem;
    padding-left: 10px;
  }

  .slider-wrapper {
    padding: 0 10px;
  }

  .card-slider {
    gap: 12px;
  }

  .card-company {
    flex: 0 0 90%;
    padding: 16px;
  }

  .slider-arrow {
    display: none;
  }
}


/* Activities Section */
.activities {
  margin-top: 80px;
}

.activities-title {
  text-align: left;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #941515;
}

/* Webapp Development Section */
.full-width-section {
    width: 100%;
    padding: 60px 0;
    background-color: white;
}

.webapp-development-title {
    color: #941515;
    font-size: 2rem;
    margin-bottom: 50px;
    text-align: center;
    font-weight: bold;
}

.logo-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    background: #fff;
    padding: 20px 0;
}

.logos {
      display: inline-block;
      animation: scroll 20s linear infinite;
    }

.logos img {
      width: 100px;
      height: 100px;
      margin: 0 50px;
      vertical-align: middle;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid #ddd;
    }

@keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }