/* GLOBAL SETTINGS */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #FBF3FF;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: #333;
  width: 100%;
  overflow-x: hidden;

}

section {
  margin-top: 80px;
  margin-bottom: 80px;
  width: 100%;
}

/* HERO BANNER */
.services-hero {
  background: url('/assets/banner/banner-services.png') no-repeat center center/cover;
  height: 85vh;
  margin-top: 70px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 80px;
}

.hero-overlay {
  background: rgba(1, 58, 99, 0.6);
  width: 100%;
  height: 100%;
  padding: 60px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Only this one should stay */
  align-items: center;
  text-align: center;
}


.hero-overlay h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;

}

.hero-overlay p {
  font-size: 22px;
  max-width: 800px;
  margin: 0 auto;
  color: white;

}

/* WHAT WE OFFER */
.what-we-offer {
  padding: 100px 30px;
  background-color: #FBF3FF;
  width: 100%;
}

.what-we-offer h2 {
  font-size: 36px;
  color: #013A63;
}

.what-we-offer .intro {
  font-size: 20px;
  max-width: 900px;
  margin: 0 auto 60px;
  color: #555;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  width: 100%;
}

.service-card {
  background-color: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card i {
  font-size: 48px;
  color: #757BC8;
  margin-bottom: 20px;
}

.service-card h4 {
  font-size: 22px;
  color: #013A63;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 18px;
  color: #444;
}

.service-card.hidden-service {
  display: none;
}

.service-card.hidden-service.show {
  display: block;
}

@media (min-width: 768px) {
  .service-cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

/* STUDIX BUSINESS SERVICES */
.studix-business-services {
  padding: 100px 30px;
  background: #f9faff;
  text-align: center;
  width: 100%;
}

.studix-business-services h2 {
  font-size: 36px;
  color: #013A63;
  margin-bottom: 20px;
}

.studix-business-services .section-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 20px;
  color: #555;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.biz-service-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

.biz-service-card i {
  font-size: 36px;
  color: #757BC8;
  margin-bottom: 18px;
}

.biz-service-card h4 {
  color: #013A63;
  font-size: 22px;
  margin-bottom: 12px;
}

.biz-service-card p {
  font-size: 18px;
  color: #444;
}

.biz-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

/* EDUCATION & CAREER */
.studix-education-career {
  padding: 100px 30px;
  background: linear-gradient(180deg, #fdfbff 0%, #f1effd 100%);
  text-align: center;
  width: 100%;
}

.studix-education-career h2 {
  font-size: 38px;
  color: #013A63;
  margin-bottom: 25px;
}

.studix-education-career .section-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 20px;
  color: #555;
  line-height: 1.8;
}

.education-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.edu-card {
  background: #fff;
  border-radius: 24px;
  padding: 50px 30px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.edu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}

.edu-icon {
  background-color: #757BC8;
  color: white;
  font-size: 32px;
  width: 70px;
  height: 70px;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.edu-content h4 {
  font-size: 22px;
  color: #013A63;
  margin-bottom: 12px;
}

.edu-content p {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}

/* SUPPORT SECTION */
.studix-tech-support {
  padding: 100px 30px;
  background-color: #f3f6ff;
  text-align: center;
  width: 100%;
}

.studix-tech-support h2 {
  font-size: 36px;
  color: #013A63;
  margin-bottom: 20px;
}

.studix-tech-support .section-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 20px;
  color: #555;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.support-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.support-card i {
  font-size: 36px;
  color: #757BC8;
  margin-bottom: 18px;
}

.support-card h4 {
  color: #013A63;
  font-size: 22px;
  margin-bottom: 12px;
}

.support-card p {
  font-size: 18px;
  color: #444;
}

.support-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

/* RECOMMENDED SERVICES */
.recommended-list-section {
  background-color: #fbf3ff;
  width: 100%;
}

.recommended-service-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.service-item {
  gap: 24px;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: #757BC8;
  color: white;
  font-size: 28px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

@media (max-width: 576px) {
  .service-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-icon {
    margin-bottom: 12px;
  }
}

.success-stories {
  background: linear-gradient(180deg, #fbf3ff 0%, #f1effd 100%);
  padding: 100px 20px;
  text-align: center;
}

.success-stories h2 {
  font-size: 2.5rem;
  color: #013A63;
  margin-bottom: 10px;
}

.success-stories .section-intro {
  max-width: 750px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

/* Scroll Wrapper with Arrows */
.scroll-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 0;
  overflow: hidden;
}

/* Scrollable container */
.story-scroll-container {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.story-scroll-container::-webkit-scrollbar {
  display: none;
}

.story-card {
  flex: 0 0 auto;
  width: 300px;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  scroll-snap-align: start;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease;
  text-align: center;
}

.story-card:hover {
  transform: translateY(-6px);
}

.story-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 18px;
}

.story-card h4 {
  font-size: 1.2rem;
  color: #013A63;
  margin-bottom: 10px;
}

.story-card p {
  font-size: 1rem;
  color: #555;
}

/* Arrows */
.scroll-btn {
  background-color: #013A63;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 1;
  transition: background 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.scroll-btn:hover {
  background-color: #757BC8;
}

.scroll-btn.left {
  left: -10px;
}

.scroll-btn.right {
  right: -10px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .scroll-btn {
    display: none;
  }

  .story-card {
    width: 250px;
  }

  .story-card img {
    height: 260px;
  }
}


.partner-form {
  max-width: 650px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.partner-form input,
.partner-form textarea {
  padding: 18px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 18px;
}

.partner-form button {
  background-color: #013A63;
  color: white;
  padding: 16px;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.partner-form button:hover {
  background-color: #757BC8;
}

.get-started-today {
  background: linear-gradient(to right, #013A63, #757BC8);
  color: white;
  padding: 120px 30px;
  position: relative;
  overflow: hidden;
}

.get-started-today h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
}

.get-started-today .section-intro {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.get-started-today .start-btn {
  display: inline-block;
  background-color: #fff;
  color: #013A63;
  padding: 18px 40px;
  font-size: 20px;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.get-started-today .start-btn:hover {
  background-color: #f4f4ff;
  color: #013A63;
  transform: translateY(-4px);
}

.get-started-today .text-muted {
  opacity: 0.85;
  font-size: 16px;
}

@media (max-width: 768px) {
  .get-started-today {
    padding: 90px 20px;
  }

  .get-started-today h2 {
    font-size: 30px;
  }

  .get-started-today .start-btn {
    padding: 16px 30px;
    font-size: 18px;
  }
}