
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8f9fa;
}

.container {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 ;
}

/* Hero Section - Same format as legal page */
.hero {
  background: linear-gradient(135deg, #024173 0%, #1a5490 100%);
  color: #fff;
  text-align: center;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  height: min-content;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="legal-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10,0 L20,10 L10,20 L0,10 Z" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23legal-pattern)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(2deg);
  }

}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  line-height: 4rem;
  background: linear-gradient(45deg, #C8A451, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.hero p {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* Main Content */
.main-content {
  padding: 0 0;
}

.section-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.section-intro h2 {
  font-size: 2.5rem;
  color: #024173;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-intro p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Why Choose ICU Section */
.why-choose-section {
  background: linear-gradient(135deg, #024173 0%, #1a5490 100%);
  color: white;
  border-radius: 25px;
  padding: 4rem;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(200, 164, 81, 0.1) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }

}

.why-choose-content {
  position: relative;
  z-index: 2;
}

.why-choose-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 700;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.feature-item i {
  font-size: 3rem;
  color: #C8A451;
  margin-bottom: 1.5rem;
}

.feature-item h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Pathways Section */
.pathways-section {
  background: white;
  border-radius: 25px;
  padding: 4rem;
  margin: 3rem 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.pathways-title {
  text-align: center;
  font-size: 2.5rem;
  color: #024173;
  margin-bottom: 3rem;
  font-weight: 700;
}

.pathways-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pathway-card {
  border: 2px solid #f0f0f0;
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pathway-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #024173, #C8A451);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.pathway-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(200, 164, 81, 0.15);
}

.pathway-card:hover::before {
  transform: scaleX(1);
}

.pathway-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pathway-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #024173, #1a5490);
  color: white;
  border-radius: 15px;
  font-size: 1.5rem;
}

.pathway-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #024173;
}

/* Process Steps */
.process-section {
  margin: 4rem 0;
}

.process-title {
  text-align: center;
  font-size: 2.5rem;
  color: #024173;
  margin-bottom: 3rem;
  font-weight: 700;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #024173, #1a5490);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #024173;
  margin-bottom: 1rem;
}

.step-description {
  color: #666;
  font-size: 0.95rem;
}

/* What We Look For */
.criteria-section {
  background: linear-gradient(135deg, #C8A451 0%, #d4b666 100%);
  color: white;
  border-radius: 25px;
  padding: 4rem;
  margin: 3rem 0;
  text-align: center;
}

.criteria-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.criteria-subtitle {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.criteria-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  list-style: none;
  padding: 0;
}

.criteria-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.criteria-item i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
}

/* Scholarships Section */
.scholarships-section {
  background: white;
  border-radius: 25px;
  padding: 4rem;
  margin: 3rem 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.scholarships-title {
  text-align: center;
  font-size: 2.5rem;
  color: #024173;
  margin-bottom: 3rem;
  font-weight: 700;
}

.scholarships-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.scholarship-card {
  background: linear-gradient(135deg, #024173 0%, #1a5490 100%);
  color: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.scholarship-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(200, 164, 81, 0.1) 0%, transparent 70%);
  transition: all 0.3s ease;
  transform: scale(0);
}

.scholarship-card:hover::before {
  transform: scale(1);
}

.scholarship-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(2, 65, 115, 0.3);
}

.scholarship-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  color: #C8A451;
}

.scholarship-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.scholarship-card p {
  position: relative;
  z-index: 2;
  opacity: 0.9;
}

/* Director Quote */
.quote-section {
  background: #f8f9fa;
  border-radius: 25px;
  padding: 4rem;
  margin: 3rem 0;
  text-align: center;
  border-left: 6px solid #C8A451;
}

.quote-text {
  font-size: 1.4rem;
  font-style: italic;
  color: #024173;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.quote-author {
  font-size: 1.1rem;
  font-weight: 600;
  color: #C8A451;
}
