:root {
  --primary: #e63946;
  /* Red */
  --dark: #1a1a1a;
  /* Dark gray/black */
  --light: #f8f9fa;
  /* Off-white */
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--light);
}

/* Navbar Styles */
.navbar {
  background-color: var(--light);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-container {
  width: 25%;
  display: flex;
  align-items: center;
}

.logo {
  max-height: 40px;
  width: auto;
  transition: var(--transition);
}

.logo:hover {
  opacity: 0.5;

}

.nav-center {
  width: 50%;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-right {
  width: 25%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
}

.nav-social {
  display: flex;
  gap: 1rem;
}

.nav-social a {
  color: var(--dark);
  font-size: 1.1rem;
  transition: var(--transition);
}

.nav-social a:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.signup-btn {
  background-color: var(--primary);
  color: var(--light);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
}

.signup-btn:hover {
  background-color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--dark);
  font-size: 1.5rem;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: var(--light);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  transition: var(--transition);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  right: 0;
}

.mobile-logo {
  max-height: 40px;
  width: auto;
  margin-bottom: 2rem;
  align-self: flex-start;
}

.close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--dark);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.mobile-links a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: var(--transition);
}

.mobile-links a:hover {
  color: var(--primary);
  padding-left: 0.5rem;
}

.mobile-social {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.mobile-social a {
  color: var(--dark);
  font-size: 1.3rem;
}

.signup-btn-mobile {
  background-color: var(--primary);
  color: var(--light);
  padding: 0.8rem;
  border-radius: 50px;
  text-align: center;
  font-weight: 500;
  text-decoration: none;
}

.signup-btn-mobile:hover {
  background-color: var(--dark);
  transition-duration: 0.5s;
  transform: translateY(-2px);

  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Main Content */
main {
  flex: 1;
  padding: 2rem;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Footer Styles */
footer {
  background-color: var(--dark);
  color: var(--light);
  padding: 3rem 2rem 1rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  max-height: 80px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-left p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  opacity: 0.8;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: var(--light);
  font-size: 1.2rem;
  transition: var(--transition);
}

.footer-social a:hover {
  color: var(--primary);
  transform: translateY(-3px);
}

.footer-middle {
  flex: 1;
  min-width: 150px;
}

.footer-middle h3,
.footer-right h3 {
  color: var(--light);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-middle h3::after,
.footer-right h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.footer-middle ul {
  list-style: none;
}

.footer-middle li {
  margin-bottom: 0.8rem;
}

.footer-middle a {
  color: var(--light);
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-middle a:hover {
  color: var(--primary);
  padding-left: 5px;
  opacity: 1;
}

.footer-right {
  flex: 1;
  min-width: 250px;
}

.footer-right p {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.8;
}

.footer-right i {
  width: 20px;
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .nav-links {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {

  .nav-center,
  .nav-right {
    display: none;
  }

  .logo-container {
    width: auto;
  }

  .hamburger {
    display: block;
  }

  .nav-container {
    justify-content: space-between;
  }

  .footer-container {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 1rem;
  }

  .mobile-menu {
    width: 80%;
  }
}















/* Base Styles */
:root {
  --primary: #e63946;
  --secondary: #e63946;
  --accent: #e63946;
  --dark: #1a1a1a;
  --light: #ffffff;
  --success: #e63946;
  --light-gray: #f8f9fa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  overflow-x: hidden;
  background: var(--light);
}

/* Loading Screen */
.capital-loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #e63946 0%, #c62d36 50%, #a61e25 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: all 0.5s cubic-bezier(0.87, 0, 0.13, 1);
}

.capital-loading-screen.fade-out {
  opacity: 0;
  transform: scale(1.1);
  pointer-events: none;
}

.capital-logo-container {
  position: relative;
  margin-bottom: 2rem;
}

.capital-logo {
  width: 175px;
  height: 175px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: logoFloat 2s ease-in-out infinite;
  overflow: hidden;
}

.capital-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.capital-company-name {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.5s;
}

.capital-loading-tagline {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.8s;
}

.capital-loading-dots {
  display: flex;
  gap: 8px;
  margin-top: 2rem;
}

.capital-dot {
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  animation: dotPulse 1.5s ease-in-out infinite;
}

.capital-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.capital-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes capitalLogoFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes capitalFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dotPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Main Content */
.main-content {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease 0.5s;
}

.main-content.show {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Section */
.mentor-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 2rem;
  background: var(--light);
  overflow: hidden;
}

.mentor-hero-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  gap: 3rem;
}

.mentor-hero-content {
  order: 1;
  text-align: center;
  padding: 2rem 0;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.mentor-hero-content.animate {
  opacity: 1;
  transform: translateY(0);
}

.mentor-company {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.mentor-company .mentor-accent {
  color: var(--accent);
  position: relative;
}

.mentor-company .mentor-accent::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--success));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s cubic-bezier(0.86, 0, 0.07, 1) 0.5s;
}

.mentor-hero-content.animate .mentor-company .mentor-accent::after {
  transform: scaleX(1);
}

.mentor-tagline {
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  color: var(--dark);
  opacity: 0.9;
  margin: 0 auto 3rem;
  max-width: 800px;
  line-height: 1.5;
  font-weight: 500;
  display: inline-block;
  white-space: normal;
  /* allow wrapping */
  word-wrap: break-word;
}

#typing-wrapper {
  display: inline;
}

.cursor {
  display: inline;
  animation: blink-caret 0.75s step-end infinite;
  font-weight: 500;
  color: var(--dark);
}

@keyframes blink-caret {
  50% {
    opacity: 0;
  }
}




.mentor-btn-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

.mentor-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-align: center;
  width: 220px;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.mentor-hero-content.animate .mentor-btn:nth-child(1) {
  animation: slideUpFade 0.8s ease forwards 0.8s;
}

.mentor-hero-content.animate .mentor-btn:nth-child(2) {
  animation: slideUpFade 0.8s ease forwards 1s;
}

@keyframes slideUpFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mentor-btn span {
  position: relative;
  z-index: 2;
}

.mentor-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  z-index: 1;
  transition: all 0.4s ease;
}

.mentor-btn-about::before {
  background: linear-gradient(45deg, var(--dark), #333);
}

.mentor-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.mentor-btn:hover::before {
  transform: scale(1.05);
  opacity: 0.75;
}

.mentor-btn-about,
.mentor-btn-signup {
  color: white;
}

.mentor-hero-image {
  order: 2;
  width: 100%;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  position: relative;
  transform: translateY(50px);
  opacity: 0;
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.mentor-hero-content.animate~.mentor-hero-image {
  transform: translateY(0);
  opacity: 1;
}

.mentor-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.mentor-hero-image:hover img {
  transform: scale(1.05);
}

/* Modern Background Elements */
.background-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(230, 57, 70, 0.05));
  animation: float 8s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  right: -150px;
  animation-delay: -3s;
}

.orb-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  right: 10%;
  animation-delay: -6s;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }

  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

.grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(230, 57, 70, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230, 57, 70, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}

/* Gradient overlay */
.gradient-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.05) 0%, transparent 70%);
  z-index: 2;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

/* Tablet Layout (768px and up) */
@media (min-width: 768px) {
  .mentor-hero {
    padding: 3rem;
    min-height: 90vh;
  }

  .mentor-btn-group {
    flex-direction: row;
    justify-content: center;
  }

  .mentor-hero-image {
    height: 400px;
  }

  .logo {
    width: 140px;
    height: 140px;
  }

  .logo img {
    width: 85%;
    height: 85%;
  }

  .company-name {
    font-size: 3.5rem;
  }
}

/* Desktop Layout (992px and up) */
@media (min-width: 992px) {
  .mentor-hero-container {
    flex-direction: row;
    align-items: center;
    gap: 5rem;
  }

  .mentor-hero-content {
    order: 0;
    flex: 1;
    text-align: left;
    padding-right: 4rem;
  }

  .mentor-btn-group {
    justify-content: flex-start;
  }

  .mentor-hero-image {
    order: 1;
    flex: 1;
    height: 500px;
  }
}

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
  .mentor-hero-image {
    height: 550px;
  }

  .mentor-company {
    margin-bottom: 2rem;
  }

  .mentor-tagline {
    margin-bottom: 3.5rem;
  }

  .logo {
    width: 160px;
    height: 160px;
  }

  .logo img {
    width: 90%;
    height: 90%;
  }

  .company-name {
    font-size: 4rem;
  }
}












/* Add these new styles to your existing CSS */
.ca-hero-animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/hero_3.jpg") no-repeat center center;
  background-size: cover;
  z-index: 0;
  animation: zoomPan 30s ease-in-out infinite alternate;
}

.ca-about-hero {
  /* Keep existing styles but remove the background property */
  position: relative;
  /* ... other existing styles ... */
}

/* New animation for background */
@keyframes zoomPan {
  0% {
    transform: scale(1) translateY(0);
  }

  100% {
    transform: scale(1.1) translateY(-20px);
  }
}

/* Particle animation styles */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: float linear infinite;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100vh) translateX(20vw);
    opacity: 0;
  }
}

:root {
  --ca-primary: #e63946;
  --ca-primary-light: rgba(230, 57, 70, 0.8);
  --ca-dark: #1a1a1a;
  --ca-light: #f8f9fa;
  --ca-gray: #6c757d;
  --ca-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}



/* Hero Section */
.ca-about-hero {
  height: 92.5vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url("../images/hero_3.jpg") no-repeat center center;
  background-size: cover;
  color: white;
  overflow: hidden;
}

.ca-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(230, 57, 70, 0.4) 100%);
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards 0.3s;
}

.ca-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards 0.5s;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards 0.7s;
}



.hero-title span {
  color: white;
}




.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.3rem);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards 0.9s;
}

.ca-hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards 1.1s;
}

.hero-btn-1 {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards 1.3s;
}

.hero-btn-2 {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards 1.5s;
}

.ca-btn {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--ca-transition);
  min-width: 160px;
  text-align: center;
  transform: scale(1);
}

.ca-btn-primary {
  background: var(--ca-primary);
  color: white;
  border: 2px solid var(--ca-primary);
}

.ca-btn-primary:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
}

.ca-btn-secondary {
  background: white;
  color: rgb(0, 0, 0);
  border: 2px solid white;
}

.ca-btn-secondary:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 20px rgba(211, 211, 211, 0.3);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards 2s;
}

.scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid white;
  border-radius: 12px;
  position: relative;
}

.scroll-indicator span::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: white;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollIndicator 2s infinite;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes scrollIndicator {
  0% {
    opacity: 1;
    top: 6px;
  }

  100% {
    opacity: 0;
    top: 20px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Learn More Section */
.ca-learn-section {
  padding: 6rem 2rem;
  background: white;
}

.ca-learn-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ca-learn-section h2 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.ca-learn-section h2:after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--ca-primary);
  border-radius: 2px;
}

.ca-learn-section span {
  color: var(--ca-primary);
}

.ca-learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.ca-learn-card {
  background: #f3f3f3;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  transition: var(--ca-transition);
}

.ca-learn-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ca-learn-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ca-learn-icon i {
  font-size: 2rem;
  color: var(--ca-primary);
}

.ca-learn-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.ca-learn-card p {
  color: var(--ca-gray);
  line-height: 1.6;
}










/* Team Section - Larger Version */
.ca-team-section {
  padding: 4rem 2rem;
  background: #f9fafc;
  position: relative;
  overflow: hidden;
}

.ca-team-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.ca-team-section h2 {
  font-size: clamp(2.5rem, 7vw, 3.5rem);
  text-align: center;
  margin-bottom: 2rem;
  color: #1a1a1a;
  font-weight: 800;
  position: relative;
}

.ca-team-section h2:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background-color: #e63946;
  border-radius: 3px;
}

.ca-team-section span {
  color: #e63946;
}

.ca-team-subtitle {
  text-align: center;
  margin-bottom: 5rem;
  font-size: 1.4rem;
  color: #6c757d;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.ca-team-categories {
  margin-top: 6rem;
}

.ca-team-category h3 {
  font-size: 2.2rem;
  margin-bottom: 4rem;
  color: #1a1a1a;
  text-align: center;
  position: relative;
  padding-bottom: 1.5rem;
  font-weight: 700;
}

.ca-team-category h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #e63946;
}

.ca-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 5rem 3rem;
  margin-bottom: 6rem;
  justify-items: center;
}

.ca-team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 300px;
  text-align: center;
}

.ca-team-img-wrapper {
  position: relative;
  width: 280px;
  height: 280px;
  margin-bottom: 2.5rem;
}

.ca-team-img-container {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 6px solid white;
}

.ca-team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.6s ease;
  filter: grayscale(20%);
}

.ca-team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.ca-team-social {
  display: flex;
  gap: 1.5rem;
}

.ca-team-social a {
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1.3rem;
  backdrop-filter: blur(4px);
}

.ca-team-social a:hover {
  background: white;
  color: #e63946;
  transform: translateY(-5px) scale(1.1);
}

.ca-team-info {
  padding: 0 1.5rem;
  /* Increased from 0 0.5rem */
  min-height: auto;
  width: 100%;
  /* Ensure it takes full width */
  max-width: 320px;
  /* Or whatever maximum width you prefer */
  margin: 0 auto;
  /* Center the content */
}

.ca-team-card h4 {
  font-size: 1.6rem;
  margin: 0 0 0.8rem;
  color: #1a1a1a;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ca-team-role {
  font-size: 1.1rem;
  /* Slightly larger font */
  line-height: 1.5;
  /* Better spacing */
  margin-bottom: 1.2rem;
  color: #e63946;
  font-weight: 600;
  max-width: 100%;
  /* Ensure it doesn't constrain */
}

.ca-team-bio {
  color: #6c757d;
  line-height: 1.7;
  font-size: 1.05rem;
  max-width: 100%;
  /* Remove any max-width constraints */
  margin: 0 auto;
  /* Center the text */
  padding: 0 0.5rem;
  /* Add some padding if needed */
}

/* Hover Effects */
.ca-team-card:hover .ca-team-img-container {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(230, 57, 70, 0.25);
}

.ca-team-card:hover .ca-team-img {
  transform: scale(1.1);
  filter: grayscale(0%);
}

.ca-team-card:hover .ca-team-overlay {
  opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .ca-team-img-wrapper {
    width: 240px;
    height: 240px;
  }
}

@media (max-width: 992px) {
  .ca-team-section {
    padding: 8rem 2rem;
  }

  .ca-team-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem 2rem;
  }
}

@media (max-width: 768px) {
  .ca-team-img-wrapper {
    width: 220px;
    height: 220px;
  }

  .ca-team-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem 1rem;
  }

  .ca-team-social a {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    text-decoration: none;
  }
}

.ca-team-social a i {
  text-decoration: none;
}







/* Mobile Responsiveness */
@media (max-width: 768px) {
  .ca-hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .ca-btn {
    width: 200px;
  }

  .ca-learn-grid,
  .ca-team-grid {
    grid-template-columns: 1fr;
  }

  .ca-team-category {
    margin-bottom: 3rem;
  }
}












/* Mentorship Hero Section */
.mentorship-hero {
  position: relative;
  min-height: 92.5vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #752828 100%);
  overflow: hidden;
  padding: 2rem;
  color: white;
}

.mentorship-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.mentorship-content {
  animation: fadeInUp 1s ease-out;
}

.mentorship-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.mentorship-title span {
  color: #e63946;
  position: relative;
}

.mentorship-title span:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #e63946;
  transform: scaleX(0);
  transform-origin: right;
  animation: underlineGrow 1.5s ease-in-out forwards 1s;
}

.mentorship-subtitle {
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  margin-bottom: 2.5rem;
  opacity: 0.9;
  animation: fadeIn 1.5s ease-out;
}

.mentorship-cta {
  margin-top: 3rem;
  animation: fadeIn 2s ease-out;
}

.mentorship-cta p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  opacity: 0.8;
}

.mentorship-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: #e63946;
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
  transform: translateY(0);
  font-size: 1.1rem;
}

.mentorship-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(230, 57, 70, 0.4);
  background: #f04d5a;
}

.mentorship-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.15;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.8) 0%, transparent 15%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.8) 0%, transparent 15%),
    radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.8) 0%, transparent 15%);
  background-size: 200% 200%;
  animation: particleMove 20s linear infinite;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes underlineGrow {
  from {
    transform: scaleX(0);
    transform-origin: right;
  }

  to {
    transform: scaleX(1);
    transform-origin: left;
  }
}

@keyframes particleMove {
  0% {
    background-position: 0% 0%;
  }

  50% {
    background-position: 100% 100%;
  }

  100% {
    background-position: 0% 0%;
  }
}






/* Main Container */
.capital-aid-tutoring {
  padding: 6rem 1rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f0f4f8 100%);
  overflow: hidden;
}

.ca-tutoring-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* This will center child elements */
}


/* Header */
.ca-tutoring-intro {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeIn 0.8s ease-out;
}

.ca-tutoring-title {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.ca-tutoring-title span {
  color: #e63946;
  position: relative;
}

.ca-tutoring-title span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.ca-tutoring-title:hover span::after {
  transform: scaleX(1);
  transform-origin: left;
}

.ca-tutoring-subtitle {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Subject Grid */
.ca-subject-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Subject Blocks */
.ca-subject-block {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
  width: 100%;
  max-width: 800px;
  /* Adjust this value to control the width of the centered blocks */
  margin-bottom: 1.5rem;
  /* Space between blocks */
}


.ca-subject-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.ca-subject-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.08) 0%, rgba(230, 57, 70, 0.03) 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ca-subject-icon {
  width: 56px;
  height: 56px;
  background: rgba(230, 57, 70, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e63946;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.ca-subject-block:hover .ca-subject-icon {
  transform: rotate(10deg) scale(1.1);
  background: rgba(230, 57, 70, 0.15);
}

.ca-subject-name {
  font-size: 1.4rem;
  color: #1a1a1a;
  margin: 0;
  font-weight: 700;
}

.ca-subject-content {
  padding: 2rem;
}

.ca-topic-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ca-topic-list li {
  padding: 0.8rem 0;
  color: #555;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.ca-topic-list li:last-child {
  border-bottom: none;
}

.ca-topic-list li:hover {
  color: #333;
  transform: translateX(5px);
}

.ca-topic-list i.fas.fa-check {
  color: #e63946;
  font-size: 0.9rem;
  background: rgba(230, 57, 70, 0.1);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.ca-topic-list li:hover i.fas.fa-check {
  background: rgba(230, 57, 70, 0.2);
  transform: scale(1.1);
}

/* Centered Blocks */
.centered-block {
  grid-column: 1 / -1;
  max-width: 400px;
  margin: 0 auto;
}

/* CTA Section */
.ca-tutoring-cta {
  text-align: center;
  margin-top: 6rem;
  /* Extra space for absolute positioned blocks */
  padding: 3rem 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  animation: fadeIn 0.8s ease-out;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.ca-cta-heading {
  font-size: 1.8rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.ca-button-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.ca-primary-button {
  display: inline-flex;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #e63946 0%, #d62839 100%);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
  position: relative;
  overflow: hidden;
}

.ca-primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
}

.ca-primary-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.ca-primary-button:hover::after {
  transform: translateX(100%);
}

.ca-secondary-button {
  display: inline-flex;
  padding: 1rem 2.5rem;
  background: white;
  color: #1a1a1a;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid rgba(0, 0, 0, 0.1);
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.ca-secondary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-color: rgba(230, 57, 70, 0.3);
}

.ca-secondary-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.05) 0%, rgba(230, 57, 70, 0) 100%);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.ca-secondary-button:hover::after {
  transform: translateX(100%);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger animations for grid items */
.ca-subject-block:nth-child(1) {
  animation-delay: 0.1s;
}

.ca-subject-block:nth-child(2) {
  animation-delay: 0.2s;
}

.ca-subject-block:nth-child(3) {
  animation-delay: 0.3s;
}

.ca-subject-block:nth-child(4) {
  animation-delay: 0.4s;
}

.ca-subject-block:nth-child(5) {
  animation-delay: 0.5s;
}

/* Desktop Layout for Centered Blocks */
@media (min-width: 900px) {
  .ca-subject-grid {
    position: relative;
    padding-bottom: 250px;
    /* Space for absolute positioned blocks */
  }

  .centered-block {
    position: absolute;
    top: 100%;
    margin-top: 2rem;
    width: calc(50% - 1rem);
    max-width: none;
  }

  .centered-block:nth-child(4) {
    left: 0;
  }

  .centered-block:nth-child(5) {
    right: 0;
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .capital-aid-tutoring {
    padding: 4rem 1rem;
  }

  .ca-subject-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .centered-block {
    max-width: 100%;
  }

  .ca-button-group {
    flex-direction: column;
    gap: 1rem;
  }

  .ca-primary-button,
  .ca-secondary-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .ca-tutoring-title {
    font-size: 2rem;
  }

  .ca-tutoring-subtitle {
    font-size: 1.1rem;
  }

  .ca-subject-header {
    padding: 1.25rem 1.5rem;
  }

  .ca-subject-content {
    padding: 1.5rem;
  }
}






/* Full-Width Centered Tutoring Preview */
.ca-tutoring-preview-wide {
  padding: 3rem 1rem;
  background: #f8fafc;
  width: 100%;
  margin: 2rem 0;
}

.ca-wide-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.ca-wide-header {
  margin-bottom: 3rem;
}

.ca-wide-icon {
  width: 70px;
  height: 70px;
  background: rgba(230, 57, 70, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e63946;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem;
}

.ca-wide-header h2 {
  font-size: 2.2rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.ca-wide-intro {
  color: #555;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.ca-wide-subjects {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 0 auto 3rem;
  max-width: 1100px;
}

.ca-wide-card {
  background: white;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  width: 200px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.ca-wide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(230, 57, 70, 0.1);
}

.ca-wide-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(230, 57, 70, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e63946;
  font-size: 1.6rem;
  margin: 0 auto 1.5rem;
}

.ca-wide-card h3 {
  font-size: 1.3rem;
  color: #1a1a1a;
  margin-bottom: 0.8rem;
}

.ca-wide-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.ca-wide-cta {
  margin-top: 2rem;
}

.ca-wide-button {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2.5rem;
  background: #e63946;
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(230, 57, 70, 0.2);
}

.ca-wide-button:hover {
  background: #d62f3e;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .ca-wide-subjects {
    gap: 1.5rem;
  }

  .ca-wide-card {
    width: 160px;
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 700px) {
  .ca-wide-subjects {
    grid-template-columns: repeat(2, 1fr);
    max-width: 500px;
  }

  .ca-wide-card {
    width: 100%;
    max-width: 220px;
  }
}

@media (max-width: 480px) {
  .ca-wide-header h2 {
    font-size: 1.8rem;
  }

  .ca-wide-intro {
    font-size: 1rem;
  }

  .ca-wide-subjects {
    gap: 1rem;
  }

  .ca-wide-card {
    max-width: 100%;
  }
}








/* Elegant Contact Section */
.elegant-contact-section {
  padding: 5rem 2rem;
  background: #f8fafc;
  position: relative;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.contact-header h2 {
  font-size: 2.3rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.contact-header h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #e63946;
}

.contact-header p {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.contact-card {
  background: #f3f3f3;
  border-radius: 16px;
  padding: 2.5rem;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(230, 57, 70, 0.1);
}

.contact-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
}

.email-card .contact-icon {
  background: rgba(230, 57, 70, 0.1);
  color: #e63946;
}

.instagram-card .contact-icon {
  background: rgba(233, 89, 80, 0.1);
  color: #e96750;
}

.linkedin-card .contact-icon {
  background: rgba(10, 102, 194, 0.1);
  color: #0A66C2;
}

.contact-card h3 {
  font-size: 1.4rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.contact-link {
  display: block;
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.email-card .contact-link:hover {
  color: #e63946;
}

.instagram-card .contact-link:hover {
  color: #E95950;
}

.linkedin-card .contact-link:hover {
  color: #0A66C2;
}

.contact-cta {
  font-size: 0.9rem;
  color: #666;
  padding-top: 1rem;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

/* Decorative Elements */
.elegant-contact-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%23e63946" opacity="0.03" d="M0,0 L100,0 L100,100 L0,100 Z"/></svg>');
  background-size: cover;
  opacity: 0.1;
  z-index: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .elegant-contact-section {
    padding: 3rem 1.5rem;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-card {
    max-width: 100%;
  }
}



/* Wider Programs Section */
.programs-section-wide {
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.program-card-wide {
  background: white;
  border-radius: 18px;
  padding: 2.5rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.program-card-wide:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(230, 57, 70, 0.12);
}

.program-icon-wide {
  width: 80px;
  height: 80px;
  background: rgba(230, 57, 70, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: #e63946;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.program-card-wide:hover .program-icon-wide {
  transform: scale(1.1);
}

.program-card-wide h3 {
  font-size: 1.7rem;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.program-description-wide {
  color: #555;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.7;
  font-size: 1.1rem;
}

.program-form-wide {
  flex-grow: 1;
  margin-bottom: 2rem;
  border-radius: 12px;
  overflow: hidden;
  min-height: 300px;
}

.form-embed-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(230, 57, 70, 0.2);
  border-radius: 12px;
  background: rgba(230, 57, 70, 0.03);
  padding: 2rem;
}

.form-placeholder {
  text-align: center;
  color: #999;
}

.form-placeholder i {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
  color: #e63946;
}

.program-footer-wide {
  text-align: center;
  font-size: 0.95rem;
  color: #666;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.program-footer-wide a {
  color: #e63946;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.program-footer-wide a:hover {
  text-decoration: underline;
}

/* Join Team Card Specific Styles */
.join-card-wide {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 1px solid rgba(230, 57, 70, 0.15);
}

.join-card-wide .program-icon-wide {
  background: rgba(10, 102, 194, 0.1);
  color: #0A66C2;
}

.join-content-wide {
  text-align: left;
  margin-bottom: 2rem;
}

.join-content-wide p {
  text-align: left;
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.benefits-list-wide {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.benefits-list-wide li {
  padding: 0.7rem 0;
  color: #555;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
}

.benefits-list-wide i {
  color: #e63946;
  font-size: 1rem;
}

.join-button-wide {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1.1rem 2rem;
  background: #e63946;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
  width: 100%;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(230, 57, 70, 0.2);
}

.join-button-wide:hover {
  background: #d62f3e;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3);
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.pulse {
  animation: pulse 2s infinite ease-in-out;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .programs-section-wide {
    grid-template-columns: 1fr 1fr;
  }

  .join-card-wide {
    grid-column: span 2;
    max-width: 800px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .programs-section-wide {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
  }

  .join-card-wide {
    grid-column: span 1;
  }

  .program-card-wide {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .program-card-wide {
    padding: 1.8rem;
  }

  .program-icon-wide {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .program-card-wide h3 {
    font-size: 1.5rem;
  }
}













/* Structured About Section */
.ca-about-structured {
  padding: 5rem 1rem;
  background: #f9fafc;
}

.ca-structured-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styles */
.ca-structured-header {
  text-align: center;
  margin-bottom: 3.5rem;
  padding: 0 1rem;
}

.ca-structured-header h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.ca-structured-header h2 span {
  color: #e63946;
}

.ca-header-divider {
  width: 80px;
  height: 4px;
  background: #e63946;
  margin: 1.5rem auto;
  border-radius: 2px;
}

.ca-header-description {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Content Grid */
.ca-structured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.ca-grid-image {
  position: relative;
}

.ca-image-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.ca-structured-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

.ca-grid-image:hover .ca-structured-img {
  transform: scale(1.03);
}

.ca-main-text {
  margin-bottom: 2.5rem;
}

.ca-main-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

/* Value Cards */
.ca-value-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ca-value-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  border-left: 4px solid #e63946;
}

.ca-value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.1);
}

.ca-value-card i {
  font-size: 1.5rem;
  color: #e63946;
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.ca-value-card h3 {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.ca-value-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .ca-structured-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ca-grid-image {
    max-width: 600px;
    margin: 0 auto;
  }

  .ca-value-cards {
    gap: 1.2rem;
  }
}

@media (max-width: 600px) {
  .ca-about-structured {
    padding: 3rem 1rem;
  }

  .ca-value-card {
    flex-direction: column;
    gap: 1rem;
  }

  .ca-header-description {
    font-size: 1.1rem;
  }
}









/* Join Mission Section */
.ca-join-mission {
  padding: 5rem 2rem;
  background: white;
  position: relative;
  overflow: hidden;
}

.ca-join-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.ca-join-content {
  flex: 1;
  min-width: 300px;
}

.ca-join-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.ca-join-content h2 span {
  color: #e63946;
}

.ca-join-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.ca-join-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #e63946;
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
  border: 2px solid #e63946;
}

.ca-join-button:hover {
  background: white;
  color: #e63946;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

.ca-join-graphic {
  flex: 1;
  min-width: 300px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ca-join-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

.ca-join-graphic:hover .ca-join-img {
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 900px) {
  .ca-join-container {
    flex-direction: column;
    gap: 2.5rem;
  }

  .ca-join-content {
    text-align: center;
    margin-bottom: 1rem;
  }

  .ca-join-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .ca-join-graphic {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .ca-join-mission {
    padding: 3rem 1.5rem;
  }

  .ca-join-button {
    width: 100%;
    text-align: center;
  }
}


/* Scroll Down Indicator */
.ca-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem;
  cursor: pointer;
  animation: bounce 2s infinite;
}

.ca-scroll-indicator span {
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.ca-arrow-down {
  width: 24px;
  height: 24px;
  border-left: 2px solid #e63946;
  border-bottom: 2px solid #e63946;
  transform: rotate(-45deg);
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/* Responsive Design */
@media (max-width: 900px) {
  .ca-scroll-indicator {
    margin-top: 1.5rem;
  }
}



/* Perks Section */
.perks-section {
  padding: 6rem 2rem;
  background: white;
  position: relative;
}

.perks-container {
  max-width: 1200px;
  margin: 0 auto;
}

.perks-header {
  text-align: center;
  margin-bottom: 4rem;
}

.perks-header h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-weight: 700;
}

.perks-header h2 span {
  color: #e63946;
  position: relative;
}

.perks-header h2 span::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #e63946;
  border-radius: 2px;
}

.perks-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.perk-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.perk-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(230, 57, 70, 0.1);
}

.perk-icon {
  width: 70px;
  height: 70px;
  background: rgba(230, 57, 70, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #e63946;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.perk-card:hover .perk-icon {
  transform: scale(1.1);
  background: #e63946;
  color: white;
}

.perk-card h3 {
  font-size: 1.4rem;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 1.5rem;
}

.perk-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.perk-list li {
  padding: 0.7rem 0;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  line-height: 1.6;
}

.perk-list i {
  color: #e63946;
  font-size: 0.9rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.perks-cta {
  text-align: center;
}

.perks-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 2.5rem;
  background: #e63946;
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  box-shadow: 0 5px 20px rgba(230, 57, 70, 0.2);
  margin-bottom: 1rem;
}

.perks-button:hover {
  background: #d62f3e;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.3);
}

.perks-note {
  font-size: 0.95rem;
  color: #777;
}

/* Responsive Design */
@media (max-width: 768px) {
  .perks-section {
    padding: 4rem 1.5rem;
  }

  .perks-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .perks-grid {
    grid-template-columns: 1fr;
  }

  .perk-card {
    padding: 2rem 1.5rem;
  }

  .perks-button {
    width: 100%;
    justify-content: center;
  }
}









/* Modern Timeline Styles */
.ca-timeline-section {
  padding: 6rem 2rem;
  background: #f9fafc;
  position: relative;
}

.ca-timeline-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Title Styles */
.ca-timeline-header {
  text-align: center;
  margin-bottom: 4rem;
}

.ca-section-title-container {
  display: inline-block;
  position: relative;
  margin-bottom: 1.5rem;
}

.ca-section-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  position: relative;
  display: inline-block;
}

.ca-title-accent {
  color: #e63946;
  position: relative;
}

.ca-title-divider {
  width: 80%;
  height: 4px;
  background: linear-gradient(90deg, rgba(230, 57, 70, 0.1) 0%, #e63946 50%, rgba(230, 57, 70, 0.1) 100%);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.ca-header-description {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Timeline Styles */
.ca-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 50px;
}

.ca-timeline:before {
  content: '';
  position: absolute;
  top: 0;
  left: 25px;
  height: calc(100% - 60px);
  width: 2px;
  background: linear-gradient(to bottom,
      rgba(230, 57, 70, 0.2) 0%,
      rgba(230, 57, 70, 1) 30%,
      rgba(230, 57, 70, 1) 70%,
      rgba(230, 57, 70, 0.2) 100%);
}

.ca-timeline-item {
  position: relative;
  margin-bottom: 3rem;
  transition: all 0.4s ease;
}

.ca-timeline-dot {
  position: absolute;
  left: -42px;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.2);
  z-index: 2;
}

.ca-timeline-dot:after {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #e63946;
  transition: all 0.3s ease;
}

.ca-dot-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.1);
  animation: pulse 2s infinite;
}

.ca-timeline-item:hover .ca-timeline-dot:after {
  transform: scale(1.2);
  background: #d62f3e;
}

.ca-timeline-date {
  font-weight: 600;
  color: #e63946;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  position: relative;
  padding-left: 1.5rem;
}

.ca-timeline-date:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 2px;
  background: #e63946;
}

.ca-timeline-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.ca-content-inner {
  padding: 2rem;
  position: relative;
}

.ca-content-inner:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #e63946;
  transition: all 0.3s ease;
}

.ca-timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(230, 57, 70, 0.1);
}

.ca-timeline-content:hover .ca-content-inner:before {
  width: 6px;
  background: #d62f3e;
}

.ca-timeline-content h3 {
  font-size: 1.4rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
  position: relative;
}

.ca-timeline-content p {
  color: #666;
  line-height: 1.6;
}

/* Future Section */
.ca-timeline-future {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
}

.ca-future-line {
  flex-grow: 1;
  height: 2px;
  background: linear-gradient(to right, #e63946, rgba(230, 57, 70, 0.2));
}

.ca-future-arrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #e63946;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.ca-future-arrow i {
  font-size: 1.2rem;
  animation: pulseArrow 2s infinite;
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.7;
  }

  70% {
    transform: scale(1.3);
    opacity: 0;
  }

  100% {
    transform: scale(0.8);
    opacity: 0;
  }
}

@keyframes pulseArrow {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(5px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .ca-timeline {
    padding-left: 30px;
  }

  .ca-timeline:before {
    left: 15px;
  }

  .ca-timeline-dot {
    left: -32px;
    width: 26px;
    height: 26px;
  }

  .ca-content-inner {
    padding: 1.5rem;
  }

  .ca-section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .ca-header-description {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
}




/* Advisors Grid Layout */
.ca-advisors-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: 100%;
}

.ca-advisors-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.ca-advisors-row.centered {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  max-width: 66%;
}

/* Remove bio space */
.ca-team-info {
  padding: 0 0.5rem;
  min-height: auto;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .ca-advisors-row.centered {
    max-width: 75%;
  }
}

@media (max-width: 992px) {

  .ca-advisors-row,
  .ca-advisors-row.centered {
    gap: 2rem;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .ca-advisors-row {
    flex-direction: column;
    align-items: center;
  }

  .ca-advisors-row.centered {
    left: 0;
    transform: none;
  }
}

/* Advisors Section - Matching Team Spacing */
.ca-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 5rem 3rem;
  margin-bottom: 6rem;
  justify-items: center;
}

/* Centered bottom row for 2 advisors */
.centered-advisors {
  max-width: 66.666%;
  margin-left: auto;
  margin-right: auto;
}

/* Remove bio space */
.ca-team-info {
  padding: 0 0.5rem;
  min-height: auto;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .centered-advisors {
    max-width: 75%;
  }
}

@media (max-width: 992px) {
  .ca-team-grid {
    gap: 4rem 2rem;
  }

  .centered-advisors {
    max-width: 83.333%;
  }
}

@media (max-width: 768px) {
  .ca-team-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .centered-advisors {
    max-width: 100%;
  }
}



/* Add this CSS to your stylesheet */
.ca-team-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 190px;
  margin-bottom: 30px;
  max-width: 1900px;
  margin-left: auto;
  margin-right: auto;
}

.ca-team-card {
  max-width: 300px;
  /* Increased from 300px */
  width: 100%;
}

.centered-row {
  justify-content: center;
}

.centered-row .ca-team-card {
  width: calc(33.33% - 30px);
  /* 3 cards per row */
}

@media (max-width: 1024px) {

  .ca-team-card,
  .centered-row .ca-team-card {
    width: calc(50% - 30px);
    /* 2 cards per row on tablets */
  }
}

@media (max-width: 600px) {

  .ca-team-card,
  .centered-row .ca-team-card {
    width: 100%;
    /* 1 card per row on mobile */
  }
}



 :root {
        --primary: #e63946;
        --dark: #1a1a1a;
        --light: #f8f9fa;
    }
    
    .hero-about {
        position: relative;
        height: 100vh;
        min-height: 600px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--light);
        text-align: center;
        padding: 0 2rem;
    }
    
    .hero-animated-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--dark);
        z-index: -2;
    }
    
    .gradient-circle {
        position: absolute;
        border-radius: 50%;
        filter: blur(60px);
        opacity: 0.15;
        animation: float 15s infinite linear;
    }
    
    .gradient-circle.x1 {
        background: var(--primary);
        width: 400px;
        height: 400px;
        top: 20%;
        left: 10%;
    }
    
    .gradient-circle.x2 {
        background: var(--primary);
        width: 600px;
        height: 600px;
        bottom: -100px;
        right: 15%;
        animation-delay: 5s;
        opacity: 0.1;
    }
    
    .gradient-circle.x3 {
        background: var(--light);
        width: 300px;
        height: 300px;
        top: 60%;
        left: 30%;
        animation-delay: 8s;
        opacity: 0.08;
    }
    
    .grid-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
        background-size: 40px 40px;
        animation: grid-scroll 20s linear infinite;
        z-index: -1;
    }
    
    .hero-content-wrapper {
        max-width: 800px;
        animation: fade-in 1s ease-out;
    }
    
    .hero-heading {
        font-size: 4rem;
        margin-bottom: 1.5rem;
        text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    }
    
    .hero-highlight {
        color: var(--primary);
        text-shadow: 0 0 15px rgba(230, 57, 70, 0.7);
    }
    
    .hero-description {
        font-size: 1.5rem;
        margin-bottom: 3rem;
        opacity: 0.9;
        color: rgba(248, 249, 250, 0.9);
    }
    
    .hero-actions {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-btn {
        padding: 1rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .hero-btn-primary {
        background: var(--primary);
        color: var(--light);
        box-shadow: 0 4px 20px rgba(230, 57, 70, 0.5);
    }
    
    .hero-btn-secondary {
        background: transparent;
        color: var(--light);
        border: 2px solid rgba(248, 249, 250, 0.3);
        backdrop-filter: blur(5px);
    }
    
    .hero-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 25px rgba(230, 57, 70, 0.7);
        background: #f02a3a;
    }
    
    .hero-btn-secondary:hover {
        background: rgba(248, 249, 250, 0.1);
        border-color: rgba(248, 249, 250, 0.6);
    }
    
    /* Animations */
    @keyframes float {
        0% { transform: translate(0, 0) rotate(0deg); }
        25% { transform: translate(50px, 30px) rotate(5deg); }
        50% { transform: translate(0, 50px) rotate(0deg); }
        75% { transform: translate(-30px, 20px) rotate(-5deg); }
        100% { transform: translate(0, 0) rotate(0deg); }
    }
    
    @keyframes grid-scroll {
        0% { background-position: 0 0; }
        100% { background-position: 40px 40px; }
    }
    
    @keyframes fade-in {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .animate-float {
        animation: float-btn 3s ease-in-out infinite;
    }
    
    .animate-float-delay {
        animation: float-btn 3s ease-in-out infinite 0.5s;
    }
    
    @keyframes float-btn {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .hero-heading {
            font-size: 2.5rem;
        }
        
        .hero-description {
            font-size: 1.2rem;
        }
        
        .hero-actions {
            flex-direction: column;
            gap: 1rem;
        }
    }






    :root {
            --primary: #e63946;
            --dark: #1a1a1a;
            --light: #f8f9fa;
        }
        
        .cat-hero-section {
            position: relative;
            height: 100vh;
            min-height: 600px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light);
            text-align: center;
            padding: 0 2rem;
        }
        
        .cat-hero-bg-animated {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark);
            z-index: -2;
        }
        
        .cat-gradient-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.15;
            animation: cat-float-animation 15s infinite linear;
        }
        
        .cat-gradient-orb.orb-1 {
            background: var(--primary);
            width: 400px;
            height: 400px;
            top: 20%;
            left: 10%;
        }
        
        .cat-gradient-orb.orb-2 {
            background: var(--primary);
            width: 600px;
            height: 600px;
            bottom: -100px;
            right: 15%;
            animation-delay: 5s;
            opacity: 0.1;
        }
        
        .cat-gradient-orb.orb-3 {
            background: var(--light);
            width: 300px;
            height: 300px;
            top: 60%;
            left: 30%;
            animation-delay: 8s;
            opacity: 0.08;
        }
        
        .cat-grid-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            animation: cat-grid-move 20s linear infinite;
            z-index: -1;
        }
        
        .cat-content-container {
            max-width: 800px;
        }
        
        .cat-main-title {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
            min-height: 5rem;
        }
        
        .cat-typing-element {
            display: inline-block;
            overflow: hidden;
            white-space: nowrap;
        }
        
        .cat-text-highlight {
            color: var(--primary);
            text-shadow: 0 0 15px rgba(230, 57, 70, 0.7);
        }
        
        .cat-cursor-blink {
            display: inline-block;
            width: 3px;
            height: 1em;
            background-color: var(--primary);
            margin-left: 2px;
            animation: cat-blink-effect 1s infinite;
            vertical-align: baseline;
        }
        
        .cat-subtitle-text {
            font-size: 1.5rem;
            margin-bottom: 3rem;
            opacity: 0;
            color: rgba(248, 249, 250, 0.9);
            transform: translateY(20px);
            animation: cat-fade-up 1s ease-out 3.5s forwards;
        }
        
        .cat-button-group {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(20px);
            animation: cat-fade-up 1s ease-out 4s forwards;
        }
        
        .cat-action-btn {
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .cat-btn-primary {
            background: var(--primary);
            color: var(--light);
            box-shadow: 0 4px 20px rgba(230, 57, 70, 0.5);
        }
        
        .cat-btn-secondary {
            background: transparent;
            color: var(--light);
            border: 2px solid rgba(248, 249, 250, 0.3);
            backdrop-filter: blur(5px);
        }
        
        .cat-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(230, 57, 70, 0.7);
            background: #f02a3a;
        }
        
        .cat-btn-secondary:hover {
            background: rgba(248, 249, 250, 0.1);
            border-color: rgba(248, 249, 250, 0.6);
        }
        
        /* Animations */
        @keyframes cat-float-animation {
            0% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(50px, 30px) rotate(5deg); }
            50% { transform: translate(0, 50px) rotate(0deg); }
            75% { transform: translate(-30px, 20px) rotate(-5deg); }
            100% { transform: translate(0, 0) rotate(0deg); }
        }
        
        @keyframes cat-grid-move {
            0% { background-position: 0 0; }
            100% { background-position: 40px 40px; }
        }
        
        @keyframes cat-fade-up {
            from { 
                opacity: 0; 
                transform: translateY(20px); 
            }
            to { 
                opacity: 1; 
                transform: translateY(0); 
            }
        }
        
        @keyframes cat-blink-effect {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }
        
        .cat-float-primary {
            animation: cat-btn-float 3s ease-in-out infinite 4.5s;
        }
        
        .cat-float-secondary {
            animation: cat-btn-float 3s ease-in-out infinite 5s;
        }
        
        @keyframes cat-btn-float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .cat-main-title {
                font-size: 2.5rem;
                min-height: 3.5rem;
            }
            
            .cat-subtitle-text {
                font-size: 1.2rem;
            }
            
            .cat-button-group {
                flex-direction: column;
                gap: 1rem;
            }
        }

        

        .ca-team-container {
  padding-left: 60px;   /* was probably smaller before */
  padding-right: 60px;
}

@media (max-width: 768px) {
  .ca-team-container {
    padding-left: 20px;  /* smaller on mobile */
    padding-right: 20px;
  }
}
.ca-team-header {
  text-align: center;
  margin-bottom: 3rem;
}


.ca-hiring-section {
  padding: 5rem 1rem;
  background: #f9fafc;
  position: relative;
}

.ca-hiring-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styles */
.ca-hiring-header {
  text-align: center;
  margin-bottom: 3.5rem;
  padding: 0 1rem;
  position: relative;
}

.ca-new-badge {
  display: inline-block;
  background: #e63946;
  color: white;
  padding: 0.4rem 1.2rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.25);
  animation: pulse 2s ease-in-out infinite;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.ca-hiring-header h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.ca-hiring-header h2 span {
  color: #e63946;
}

.ca-header-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #e63946, #ff4757);
  margin: 1.5rem auto;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(230, 57, 70, 0.3);
}

.ca-header-description {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Content Grid */
.ca-hiring-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.ca-grid-image {
  position: relative;
}

.ca-image-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.ca-image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.ca-hiring-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

.ca-grid-image:hover .ca-hiring-img {
  transform: scale(1.03);
}

.ca-main-text {
  margin-bottom: 2.5rem;
}

.ca-main-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

/* Position Cards */
.ca-position-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.ca-position-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: white;
  padding: 1.8rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  border-left: 4px solid #e63946;
  position: relative;
  overflow: hidden;
}

.ca-position-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.05), transparent);
  transition: all 0.6s ease;
}

.ca-position-card:hover::before {
  left: 100%;
}

.ca-position-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(230, 57, 70, 0.12);
  border-left-color: #ff4757;
}

.ca-position-card i {
  font-size: 1.8rem;
  color: #e63946;
  margin-top: 0.3rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.ca-position-card:hover i {
  color: #ff4757;
  transform: scale(1.1);
}

.ca-position-card h3 {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.ca-position-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Apply Section */
.ca-apply-section {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid #e5e7eb;
}

.ca-apply-button {
  display: inline-block;
  background: linear-gradient(45deg, #e63946, #ff4757);
  color: white;
  padding: 1.1rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.25);
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.ca-apply-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s ease;
}

.ca-apply-button:hover::before {
  left: 100%;
}

.ca-apply-button:hover {
  background: linear-gradient(45deg, #dc2f3d, #ff3742);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.35);
}

.ca-apply-note {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .ca-hiring-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ca-grid-image {
    max-width: 600px;
    margin: 0 auto;
  }

  .ca-position-cards {
    gap: 1.2rem;
  }
}

@media (max-width: 600px) {
  .ca-hiring-section {
    padding: 3rem 1rem;
  }

  .ca-position-card {
    flex-direction: column;
    gap: 1rem;
  }

  .ca-header-description {
    font-size: 1.1rem;
  }

  .ca-apply-button {
    width: 100%;
    max-width: 300px;
  }

  .ca-new-badge {
    font-size: 0.8rem;
    padding: 0.35rem 1rem;
  }
}


.hero-notification {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(230, 57, 70, 0.2);
  border-radius: 50px;
  padding: 0.8rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  animation: slideUp 0.6s ease-out 1s both, float 3s ease-in-out infinite 2s;
  z-index: 10;
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
}

.notification-icon {
  color: #e63946;
  display: flex;
  align-items: center;
  animation: sparkle 2s ease-in-out infinite;
}

.notification-text {
  color: #333;
  font-weight: 500;
  white-space: nowrap;
}

.notification-link {
  color: #e63946;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.notification-link:hover {
  color: #dc2f3d;
  transform: translateX(2px);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0px); }
  50% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes sparkle {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(-10deg) scale(1.1); }
  75% { transform: rotate(10deg) scale(1.1); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-notification {
    bottom: 1.5rem;
    left: 1rem;
    right: 1rem;
    transform: none;
    border-radius: 25px;
    padding: 0.7rem 1.2rem;
  }
  
  .notification-content {
    font-size: 0.85rem;
    gap: 0.6rem;
    justify-content: center;
  }
  
  .notification-text {
    flex: 1;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .notification-content {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }
  
  .notification-text,
  .notification-link {
    font-size: 0.8rem;
  }
}


.mentor-hero-content.animate .mentor-btn:nth-child(3) {
  animation: slideUpFade 0.8s ease forwards 1.2s;
}

.mentor-btn-hiring::before {
  background: linear-gradient(45deg, #667eea, #764ba2);
}

.mentor-btn-hiring {
  color: white;
  position: relative;
}

.mentor-btn-hiring::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.6s ease;
  z-index: 3;
}

.mentor-btn-hiring:hover::after {
  left: 100%;
}

.mentor-btn-hiring:hover::before {
  background: linear-gradient(45deg, #5a67d8, #6b46c1);
}

/* Hero Notification Styles */
.hero-notification {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(230, 57, 70, 0.2);
  border-radius: 25px;
  padding: 0.5rem 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  animation: slideUp 0.6s ease-out 1s both, float 3s ease-in-out infinite 2s;
  z-index: 10;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hero-notification:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.notification-dot {
  width: 8px;
  height: 8px;
  background: #e63946;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.notification-text {
  color: #333;
  font-weight: 500;
  white-space: nowrap;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0px); }
  50% { transform: translateX(-50%) translateY(-3px); }
}

@keyframes pulse-dot {
  0%, 100% { 
    transform: scale(1);
    opacity: 1;
  }
  50% { 
    transform: scale(1.2);
    opacity: 0.7;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-notification {
    position: fixed;
    bottom: 1.5rem;
    right: 1rem;
    left: auto;
    transform: none;
    border-radius: 20px;
    padding: 0.4rem 0.8rem;
    z-index: 1000;
  }
  
  .hero-notification:hover {
    transform: translateY(-2px);
  }
  
  .notification-content {
    font-size: 0.8rem;
    gap: 0.4rem;
  }
  
  .notification-dot {
    width: 6px;
    height: 6px;
  }
}

@media (max-width: 480px) {
  .hero-notification {
    bottom: 1.2rem;
    right: 0.8rem;
    padding: 0.35rem 0.7rem;
  }
  
  .notification-content {
    font-size: 0.75rem;
  }
  
  .notification-dot {
    width: 5px;
    height: 5px;
  }
}
/* ===== Open registration banner ===== */
a.hero-notification.hero-notification--open {
  text-decoration: none;
  border-color: rgba(16, 185, 129, 0.35);
  background: rgba(240, 253, 244, 0.97);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.18);
}
a.hero-notification.hero-notification--open:hover {
  border-color: rgba(16, 185, 129, 0.65);
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.28);
  background: rgba(220, 252, 231, 0.98);
}
a.hero-notification.hero-notification--open .notification-icon {
  color: #10b981;
}
a.hero-notification.hero-notification--open .notification-text {
  color: #065f46;
  font-weight: 600;
}

/* ==========================================================================
   BECOME A TUTOR PAGE STYLES (signup.html)
   ========================================================================== */
.tutor-hero-section {
  background: linear-gradient(135deg, #111827 0%, #1f2937 50%, #374151 100%);
  padding: 4.5rem 1.5rem 4rem;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tutor-hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 900px;
  height: 400px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.tutor-hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.tutor-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(230, 57, 70, 0.18);
  border: 1px solid rgba(230, 57, 70, 0.4);
  color: #ff6b6b;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  box-shadow: 0 0 15px rgba(230, 57, 70, 0.2);
}

.tutor-hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.tutor-hero-title span {
  color: #e63946;
  background: linear-gradient(135deg, #ff4d5a 0%, #e63946 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tutor-hero-subtitle {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: #d1d5db;
  max-width: 750px;
  margin: 0 auto 2.2rem;
  line-height: 1.6;
}

.tutor-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.highlight-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.6rem 1.1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #f3f4f6;
  transition: all 0.3s ease;
}

.highlight-chip i {
  color: #e63946;
}

.highlight-chip:hover {
  background: rgba(230, 57, 70, 0.15);
  border-color: rgba(230, 57, 70, 0.4);
  transform: translateY(-2px);
}

/* Form Embed Card */
.tutor-application-section {
  padding: 3.5rem 1.5rem;
  background: #f8fafc;
}

.tutor-app-container {
  max-width: 960px;
  margin: 0 auto;
}

.tutor-app-header {
  text-align: center;
  margin-bottom: 2rem;
}

.tutor-app-header h2 {
  font-size: 2.2rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.tutor-app-header p {
  color: #64748b;
  font-size: 1.05rem;
}

.form-embed-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  position: relative;
}

.form-iframe-container {
  width: 100%;
  min-height: 850px;
  background: #ffffff;
}

.form-iframe-container iframe {
  width: 100%;
  border: none;
  display: block;
}

.form-fallback-bar {
  background: #f1f5f9;
  border-top: 1px solid #e2e8f0;
  padding: 1.2rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.form-fallback-bar p {
  color: #475569;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.form-fallback-bar p i {
  color: #e63946;
}

.form-direct-btn {
  background: #e63946;
  color: #ffffff;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s ease;
}

.form-direct-btn:hover {
  background: #1e293b;
  color: #ffffff;
  transform: translateY(-1px);
}

/* Volunteer Benefits Section */
.tutor-benefits-section {
  padding: 4.5rem 1.5rem;
  background: #ffffff;
}

.tutor-benefits-container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title-center {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title-center h2 {
  font-size: 2.2rem;
  color: #0f172a;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.section-title-center h2 span {
  color: #e63946;
}

.section-title-center p {
  color: #64748b;
  font-size: 1.1rem;
}

.tutor-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
}

.benefit-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem 1.6rem;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
  border-color: rgba(230, 57, 70, 0.3);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  background: rgba(230, 57, 70, 0.1);
  color: #e63946;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.benefit-card h3 {
  font-size: 1.2rem;
  color: #0f172a;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.benefit-card p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Steps Section */
.tutor-steps-section {
  padding: 4.5rem 1.5rem;
  background: #f1f5f9;
}

.tutor-steps-container {
  max-width: 1000px;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.step-card {
  background: #ffffff;
  padding: 2.2rem 1.8rem;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  text-align: center;
}

.step-number {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #e63946 0%, #b71c1c 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.step-card h3 {
  font-size: 1.25rem;
  color: #0f172a;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.step-card p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.5;
}

.tutor-contact-callout {
  text-align: center;
  background: #ffffff;
  border: 1px dashed #cbd5e1;
  padding: 1.5rem;
  border-radius: 12px;
}

.tutor-contact-callout p {
  color: #475569;
  font-size: 1rem;
  margin: 0;
}

.tutor-contact-callout a {
  color: #e63946;
  font-weight: 600;
  text-decoration: none;
}

.tutor-contact-callout a:hover {
  text-decoration: underline;
}
