/* Custom CSS Variables */
:root {
  --primary-color: #0f52ba;
  --secondary-color: #00ffff;
  --accent-color: #00ff00;
  --dark-bg: #1a1a1a;
  --darker-bg: #0d1117;
  --text-light: #ffffff;
  --text-gray: #8b949e;
  --border-color: #30363d;
  --hover-color: #1e6091;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --error-color: #dc3545;
}

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

body {
  font-family: "Inter", sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "JetBrains Mono", monospace;
  font-weight: 600;
}

.text-gradient {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation Styles */
.navbar {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: none;
}

.brand-text {
  color: var(--text-light);
  transition: color 0.3s ease;
}

.navbar-brand:hover .brand-text {
  color: var(--secondary-color);
}

.nav-link {
  color: var(--text-gray) !important;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  margin: 0 0.5rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-color) !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      var(--primary-color) 20 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      var(--secondary-color) 20 0%,
      transparent 50%
    );
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

.cta-button {
  background: linear-gradient(135deg, var(--primary-color), var(--hover-color));
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-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: left 0.5s;
}

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

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(15, 82, 186, 0.3);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-arrow {
  color: var(--text-gray);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  padding: 150px 0 100px;
  text-align: center;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Partnership Section */
.partnership-section {
  background: var(--darker-bg);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.partnership-title {
  color: var(--text-gray);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.partner-logo {
  padding: 1rem 2rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--dark-bg);
  color: var(--text-light);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.partnership-connector {
  color: var(--secondary-color);
  font-size: 1.5rem;
}

.partnership-desc {
  color: var(--text-gray);
  font-size: 0.95rem;
}

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Mission Section */
.mission-section {
  padding: 5rem 0;
}

.mission-text {
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.7;
}

.mission-stats {
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Code Preview */
.code-preview {
  background: var(--darker-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.code-header {
  background: #21262d;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
}

.code-dots {
  display: flex;
  gap: 0.5rem;
}

.code-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text-gray);
}

.code-dots span:first-child {
  background: #ff5f56;
}

.code-dots span:nth-child(2) {
  background: #ffbd2e;
}

.code-dots span:last-child {
  background: #27ca3f;
}

.code-title {
  font-family: "JetBrains Mono", monospace;
  color: var(--text-gray);
  font-size: 0.9rem;
}

.code-content {
  padding: 1.5rem;
  background: var(--darker-bg);
}

.code-content pre {
  margin: 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9rem;
  line-height: 1.6;
}

.code-keyword {
  color: #ff7b72;
}
.code-var {
  color: #ffa657;
}
.code-property {
  color: #79c0ff;
}
.code-string {
  color: #a5d6ff;
}

/* Team Section */
.team-section {
  background: var(--darker-bg);
  padding: 5rem 0;
}

.team-card {
  background: var(--dark-bg);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-color: var(--primary-color);
}

.team-avatar {
  position: relative;
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card:hover .team-avatar img {
  transform: scale(1.05);
}

.avatar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.contact-links {
  display: flex;
  gap: 1rem;
}

.contact-link {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-link:hover {
  background: var(--secondary-color);
  color: var(--dark-bg);
  transform: scale(1.1);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.team-role {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.team-contact {
  margin-bottom: 0;
}

.team-contact a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.team-contact a:hover {
  color: var(--primary-color);
}

/* Values Section */
.values-section {
  padding: 5rem 0;
}

.value-card {
  background: var(--dark-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.value-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

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

/* Featured Program Section */
.featured-program {
  padding: 5rem 0;
}

.program-badge .badge {
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
}

.program-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-light);
}

.program-description {
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.7;
}

.program-features {
  background: var(--darker-bg);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
}

.feature-item {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.feature-item i {
  color: var(--primary-color);
}

/* Code Editor */
.program-visual {
  padding-left: 2rem;
}

.code-editor {
  background: var(--darker-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
}

.editor-header {
  background: #21262d;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
}

.editor-controls {
  display: flex;
  gap: 0.5rem;
}

.control {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.control.red {
  background: #ff5f56;
}
.control.yellow {
  background: #ffbd2e;
}
.control.green {
  background: #27ca3f;
}

.file-name {
  font-family: "JetBrains Mono", monospace;
  color: var(--text-gray);
  font-size: 0.9rem;
}

.editor-content {
  padding: 1.5rem;
  background: var(--darker-bg);
}

.editor-content pre {
  margin: 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  line-height: 1.6;
}

.html-tag {
  color: #ff7b72;
}
.html-attr {
  color: #79c0ff;
}

/* Partnership Highlight */
.partnership-highlight {
  background: var(--darker-bg);
  padding: 3rem 0;
}

.partnership-card {
  background: var(--dark-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 0 auto;
  max-width: 100%;
  overflow: hidden;
}

.partnership-title {
  color: var(--text-light);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.partnership-desc {
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Responsive partnership section */
@media (max-width: 991.98px) {
  .partnership-card {
    padding: 1.5rem;
    text-align: center;
  }

  .partnership-title {
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
  }

  .partnership-desc {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .partnership-highlight {
    padding: 2rem 0;
  }

  .partnership-card {
    padding: 1.25rem;
  }

  .partnership-title {
    font-size: 1.2rem;
  }
}

.partnership-benefits {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.benefit-tag {
  background: linear-gradient(135deg, var(--primary-color), var(--hover-color));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  display: inline-block;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 8px rgba(15, 82, 186, 0.2);
  transition: all 0.3s ease;
}

.benefit-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 82, 186, 0.3);
}

/* Responsive benefit tags */
@media (max-width: 768px) {
  .partnership-benefits {
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
  }

  .benefit-tag {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
  }
}

@media (max-width: 576px) {
  .partnership-benefits {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .benefit-tag {
    width: fit-content;
    text-align: center;
  }
}

/* Curriculum Cards */
.program-details {
  background: var(--darker-bg);
  padding: 5rem 0;
}

.curriculum-card {
  background: var(--dark-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.curriculum-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.curriculum-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.curriculum-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.curriculum-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.curriculum-list li {
  color: var(--text-gray);
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.curriculum-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

/* Join Process */
.join-process {
  padding: 5rem 0;
}

.step-card {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.step-card h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

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

/* Registration Section */
.progress-section {
  background: var(--darker-bg);
  padding: 3rem 0;
}

.progress-card {
  background: var(--dark-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.progress-title {
  color: var(--text-light);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.progress-desc {
  color: var(--text-gray);
  margin-bottom: 0;
}

.stat-circle {
  position: relative;
  margin: 0 auto;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  display: block;
}

.stat-label {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.progress-bar-custom {
  width: 100%;
  height: 8px;
  background: var(--border-color);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 4px;
  transition: width 0.3s ease;
}

/* Registration Cards */
.registration-section {
  padding: 5rem 0;
}

.registration-card {
  background: var(--dark-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.registration-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.card-header {
  background: linear-gradient(135deg, var(--primary-color), var(--hover-color));
  color: white;
  padding: 2rem;
  text-align: center;
}

.card-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
}

.card-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.card-header p {
  opacity: 0.9;
  margin-bottom: 0;
}

.card-body {
  padding: 2rem;
}

.benefits-list {
  margin-bottom: 2rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--text-gray);
}

.benefit-item i {
  color: var(--secondary-color);
  margin-right: 0.75rem;
  font-size: 1.1rem;
}

/* Instructions Section */
.instructions-section {
  background: var(--darker-bg);
  padding: 5rem 0;
}

.instructions-card {
  background: var(--dark-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.instruction-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content h5 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--text-gray);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Community Section */
.community-section {
  padding: 5rem 0;
}

.community-feature {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--dark-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
}

.community-feature:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.community-feature h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.community-feature p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
}

.contact-form-card {
  background: var(--dark-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.form-title {
  color: var(--text-light);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.contact-form .form-label {
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
  background: var(--darker-bg);
  border: 1px solid var(--border-color);
  color: var(--text-light);
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background: var(--darker-bg);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(15, 82, 186, 0.25);
  color: var(--text-light);
}

.contact-form .form-control::placeholder {
  color: var(--text-gray);
}

.contact-info-card {
  background: var(--dark-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  height: fit-content;
}

.info-title {
  color: var(--text-light);
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-details h5 {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: var(--text-gray);
  margin-bottom: 0;
  line-height: 1.5;
}

.contact-details a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--primary-color);
}

/* Team Contact */
.team-contact-card {
  background: var(--dark-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
}

.team-contact-title {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.team-contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: var(--darker-bg);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.team-contact-item:hover {
  background: var(--border-color);
}

.team-member-info h6 {
  color: var(--text-light);
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.team-member-info small {
  color: var(--text-gray);
  font-size: 0.8rem;
}

.contact-btn {
  width: 35px;
  height: 35px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.contact-btn:hover {
  background: var(--secondary-color);
  color: var(--dark-bg);
  transform: scale(1.1);
}

/* FAQ Section */
.faq-section {
  background: var(--darker-bg);
  padding: 5rem 0;
}

.accordion-item {
  background: var(--dark-bg);
  border: 1px solid var(--border-color);
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-button {
  background: var(--dark-bg);
  color: var(--text-light);
  border: none;
  padding: 1.25rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-color);
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.accordion-button::after {
  filter: brightness(0) invert(1);
}

.accordion-body {
  background: var(--darker-bg);
  color: var(--text-gray);
  padding: 1.25rem;
  line-height: 1.6;
}

/* Modal Styles */
.modal-content {
  background: var(--dark-bg);
  border: 1px solid var(--border-color);
  color: var(--text-light);
}

.modal-header {
  border-bottom: 1px solid var(--border-color);
}

.modal-title {
  color: var(--text-light);
}

.btn-close {
  filter: brightness(0) invert(1);
}

.modal-footer {
  border-top: 1px solid var(--border-color);
}

/* Footer */
.footer-section {
  background: var(--darker-bg);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0 1rem;
}

.footer-brand h5 {
  color: var(--text-light);
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
}

.footer-brand p {
  color: var(--text-gray);
  line-height: 1.6;
}

.footer-title {
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.contact-info p {
  color: var(--text-gray);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.contact-info i {
  color: var(--primary-color);
  margin-right: 0.5rem;
  width: 20px;
}

.contact-info a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--primary-color);
}

.footer-divider {
  border-color: var(--border-color);
  margin: 2rem 0 1rem;
}

.footer-copyright {
  color: var(--text-gray);
  text-align: center;
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Button Styles */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--hover-color));
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--hover-color), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(15, 82, 186, 0.3);
}

.btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.btn-outline-light {
  border-color: var(--text-light);
  color: var(--text-light);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: var(--text-light);
  border-color: var(--text-light);
  color: var(--dark-bg);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--text-gray);
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--dark-bg);
  transform: translateY(-2px);
}

/* Alert Styles */
.alert-info {
  background: rgba(15, 82, 186, 0.1);
  border: 1px solid rgba(15, 82, 186, 0.3);
  color: var(--text-light);
  border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .program-visual {
    padding-left: 0;
    margin-top: 2rem;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .team-avatar img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .cta-button,
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .navbar-brand {
    font-size: 1.3rem;
  }

  .partnership-logos {
    flex-direction: column;
    gap: 1rem;
  }

  .partnership-connector {
    transform: rotate(90deg);
  }

  .team-avatar img {
    height: 250px;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
  }

  .team-contact-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .page-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .cta-button {
    margin-right: 0 !important;
  }

  .step-card {
    padding: 1rem;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--hover-color);
}

/* Selection Styling */
::selection {
  background: var(--primary-color);
  color: white;
}

::-moz-selection {
  background: var(--primary-color);
  color: white;
}

/* Focus Styles */
.btn:focus,
.form-control:focus,
.form-select:focus {
  box-shadow: 0 0 0 0.2rem rgba(15, 82, 186, 0.25);
}

/* Loading Animation */
@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.loading {
  animation: pulse 2s infinite;
}

/* Smooth Transitions */
* {
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease;
}
