/* Intro Section Background with Dim White Overlay */
.intro_section {
  position: relative;
  width: 90%;
  margin-top: 5%;
  margin-left: 5%;
  margin-right: 5%;
  overflow: hidden;
}

.intro_section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7); /* White dim overlay */
  z-index: 0;
}

.intro_content,
.join_button_container {
  position: relative;
  z-index: 1;
}

/* Layout and Typography */
.intro_content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: #ffffff;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 80vh;
}

.text_content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;

}

.text_content h1 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
    font-family:Verdana, Geneva, Tahoma, sans-serif;

}

.text_content h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
    font-family:Verdana, Geneva, Tahoma, sans-serif;

  color: #444;
}

.text_content p {
  font-size: 1rem;
  text-align: center;
  line-height: 1.6;
  color: #555;
  font-family:Verdana, Geneva, Tahoma, sans-serif;
}

.image_content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image_content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}



/* Join Button */
.join_button_container {
  display: flex;
  justify-content: center;
  margin: 20px 0 40px 0;
}

.join_button {
  padding: 12px 24px;
  background-color: #d4cfcf;
  color: white;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.join_button:hover {
  background-color: #808181;
}

/* Fade-in Animation */
.intro_content > *,
.join_button_container {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.intro_content > *:nth-child(1) { animation-delay: 0.3s; }
.intro_content > *:nth-child(2) { animation-delay: 0.5s; }
.intro_content > *:nth-child(3) { animation-delay: 0.7s; }
.join_button_container { animation-delay: 1s; }

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*welcome message */
.welcome-hero {
    position: relative;
    width: 100%;
    margin-top: 1px;
    overflow: hidden;
}

.welcome-hero img {
    width: 100%;
    height: 100%;
    filter: brightness(10%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.welcome-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px; 
    color: white;
    box-sizing: border-box;
}

.welcome-overlay h1 {
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: bold;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.welcome-overlay p {
    font-size: 16px;
    max-width: 700px;
    line-height: 1.6;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}


/*for the package section*/
.package-section {
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family:Verdana, Geneva, Tahoma, sans-serif;
background: rgb(255, 255, 255);
  padding: 60px 20px 40px;
  color: #555;
display: none;

}

.package-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.package-section p {
  max-width:800px;
  font-size: 1rem;
  margin-top: 3rem;
  text-align: center;
  line-height: 1.6;
  color: #555;
  font-family:Verdana, Geneva, Tahoma, sans-serif;
}



/*desktop*/
.package-sectionDesktop {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
    background: #ffffff;

  font-family:Verdana, Geneva, Tahoma, sans-serif;
}

.package-sectionDesktop h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #222;
}

.package-cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 5rem;
  flex-wrap: nowrap;
}

.package-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0);
  flex: 1 1 30%;
  max-width: 360px;
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0);
}

.package-card img {
  width: 200px;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.package-card h3 {
  font-size: 20px;
  margin: 18px 0 12px;
  color: #333;
  text-align: center;
}

.package-card p {
  font-size: 15px;
  color: #555;
  padding: 0 20px;
  line-height: 1.5;
  text-align: center;
  margin: 0 0 12px;
}


/*one time sessions*/
.hourly_rates_section {
  background: #ffffff;
  padding: 60px 20px;
  text-align: center;
  font-family:Verdana, Geneva, Tahoma, sans-serif;
}

.hourly_rates_container {
  max-width: 800px;
  margin: auto;
}

.hourly_rates_container h2 {
  font-size: 26px;
  margin-bottom: 30px;
  color: #222;
}

.rate_box {
  background: #ffffff;
  border-left: 6px solid #3b82f6;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  border-radius: 8px;
  text-align: left;
}

.rate_box.college {
  border-left-color: #10b981;
}

.rate_box strong {
  font-size: 18px;
  color: #111827;
}

.rate_box span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #4b5563;
}

.view_packages_btn {
  margin-top: 30px;
  padding: 12px 28px;
  font-size: 16px;
  background: #111827;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.view_packages_btn:hover {
  background: #1f2937;
}



/* 3 packages list */
.packages_list_section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  font-family:Verdana, Geneva, Tahoma, sans-serif;
  text-align: center;
}
.packages_list_title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
    font-family:Verdana, Geneva, Tahoma, sans-serif;

  font-size: 28px;
  font-weight: bold;
  text-align: center;
  color: #222;
}

.packages_list_title::before,
.packages_list_title::after {
  content: "";
  width: 40px;         
  height: 2px;
  background-color: #ccc;
}


.packages_list_section h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #222;
    font-family:Verdana, Geneva, Tahoma, sans-serif;

}

.packages_list_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* Base card style */
.packages_list_card {
  flex: 1 1 280px;
  max-width: 340px;
  border-radius: 16px;
  padding: 24px;
  color: #555;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Color themes */
.packages_list_blue {
  background: linear-gradient(135deg, #fcfcfc, #ffffff);
}

.packages_list_green {
  background: linear-gradient(135deg, #fcfcfc, #ffffff);
}

.packages_list_purple {
  background: linear-gradient(135deg, #fcfcfc, #ffffff);
}
.packages_list_card {
  position: relative;
  flex: 1 1 280px;
  max-width: 340px;
  border-radius: 16px;
    font-family:Verdana, Geneva, Tahoma, sans-serif;

  padding: 48px 24px 24px;
  color: #555;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgb(0, 0, 0);
  text-align: center;
  background-clip: padding-box;
}
.packages_list_price {
  font-size: 16px;
  font-weight: bold;
  margin: 10px 0 20px;
  color: #fff;
}

.packages_list_image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  position: absolute;
  top: -40px;
  left: 40%;
  transform: translateX(-50%);
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.packages_list_card h3 {
  margin-top: 20px; 
  font-size: 20px;
    font-family:Verdana, Geneva, Tahoma, sans-serif;

  margin-bottom: 16px;
}

.packages_list_card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
    font-family:Verdana, Geneva, Tahoma, sans-serif;

  width: 100%;
}

.packages_list_card ul li {
  margin-bottom: 8px;
  font-size: 15px;
    font-family:Verdana, Geneva, Tahoma, sans-serif;

}

.packages_list_card button {
  padding: 10px 24px;
  background: #ffffff;
  color: inherit;
  border: none;
  border-radius: 6px;
  width: 80%;
  font-weight: bold;
  cursor: pointer;
    font-family:Verdana, Geneva, Tahoma, sans-serif;

  transition: background 0.3s ease;
}

.packages_list_card button:hover {
  background: rgba(255, 255, 255, 0.85);
}




/*why us*/
.why_choose_section {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}

.why_choose_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(5%);
  z-index: 1;
}

.why_choose_overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  height: auto;
  max-width: 800px;
}

.why_choose_overlay h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: bold;
}
.joins {
  padding: 10px 24px;
  background: #ffffff;
  color: inherit;
  color: #555;
  border: none;
  margin-top: 2rem;
  border-radius: 6px;
  width: 50%;
  font-weight: bold;
  cursor: pointer;
    font-family:Verdana, Geneva, Tahoma, sans-serif;

  transition: background 0.3s ease;
}
.why_choose_overlay p {
  font-size: 16px;
  line-height: 1.7;
      font-family:Verdana, Geneva, Tahoma, sans-serif;

}



/* Fade-in animation */
.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s ease-in-out forwards;
}







/*collab*/
.project_collab_section {
  padding: 70px 20px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  text-align: center;
}

.project_collab_container {
  max-width: 1100px;
  margin: auto;
}

.project_collab_container h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #111827;
}

.collab_intro {
  font-size: 16px;
  color: #4b5563;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
    font-family: Verdana, Geneva, Tahoma, sans-serif;

}

.collab_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.collab_card {
  background: #000000;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.01);
  flex: 1 1 calc(50% - 20px);
  max-width: 500px;
  text-align: left;
  box-sizing: border-box;
  border-left: 6px solid #10b981; 
  transition: transform 0.2s ease;
}

.collab_card:hover {
  transform: translateY(-4px);
}

.collab_card.green { border-left-color: #10b981; }  
.collab_card.blue { border-left-color: #3b82f6; }   
.collab_card.purple { border-left-color: #8b5cf6; } 
.collab_card.yellow { border-left-color: #f59e0b; }


.collab_card h3 {
  font-size: 18px;
  color: #48515e;
    font-family: Verdana, Geneva, Tahoma, sans-serif;

  margin-bottom: 10px;
}

.collab_card p {
  font-size: 14px;
  color: #6b7280;
    font-family: Verdana, Geneva, Tahoma, sans-serif;

  line-height: 1.6;
}

.discuss_project_btn {
  padding: 12px 28px;
  font-size: 16px;
  background: #000000;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.discuss_project_btn:hover {
  background: #0f0d22;
}


.collab_icon {
  font-size: 28px;
  color: #10b981;
  margin-bottom: 12px;
}
.collab_card.blue .collab_icon { color: #3b82f6; }
.collab_card.purple .collab_icon { color: #8b5cf6; }
.collab_card.yellow .collab_icon { color: #f59e0b; }




.auto-scroll-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #111827;
  color: white;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 20px;
  display: none; /* hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.auto-scroll-widget:hover {
  background: #1f2937;
}
