/* Mystic Indigo Architecture Studio - Custom Styles */

:root {
  --primary-color: #1a237e;
  --secondary-color: #7c4dff;
  --dark-indigo: #0d1642;
  --light-indigo: #3949ab;
  --accent-glow: #b388ff;
  --text-light: #e8eaf6;
  --mystic-gradient: linear-gradient(135deg, #1a237e 0%, #0d1642 100%);
  --glow-effect: 0 0 20px rgba(124, 77, 255, 0.3);
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0a0e27;
  color: #e8eaf6;
  overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
  background: rgba(26, 35, 126, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(124, 77, 255, 0.2);
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar.sticky-top {
  box-shadow: 0 4px 30px rgba(124, 77, 255, 0.4);
}

.navbar-brand {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  color: #7c4dff !important;
  text-shadow: 0 0 15px rgba(124, 77, 255, 0.6);
  transform: translateY(-2px);
}

.navbar-toggler {
  border: 2px solid #7c4dff !important;
  color: #7c4dff !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%237c4dff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.nav-link {
  color: #e8eaf6 !important;
  font-weight: 500 !important;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff !important;
  background: rgba(124, 77, 255, 0.2) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 77, 255, 0.3);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: var(--secondary-color);
  box-shadow: 0 0 10px var(--secondary-color);
}

.nav-link .bi {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

/* Hero Section */
.position-relative.overflow-hidden {
  min-height: 100vh;
  background: var(--mystic-gradient);
  position: relative;
}

.position-absolute.w-100.h-100 {
  opacity: 0.15;
  filter: brightness(0.7) contrast(1.2);
}

.object-fit-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.flex-column.justify-content-center {
  min-height: 100vh;
  z-index: 2;
  position: relative;
}

.display-1 {
  font-size: clamp(2.5rem, 8vw, 6rem) !important;
  text-shadow: 0 0 30px rgba(124, 77, 255, 0.8), 0 0 60px rgba(124, 77, 255, 0.4);
  animation: fadeInUp 1s ease-out;
  letter-spacing: 3px;
}

.display-2 {
  font-size: clamp(2rem, 6vw, 4.5rem) !important;
  text-shadow: 0 0 25px rgba(124, 77, 255, 0.7);
}

.display-3 {
  font-size: clamp(1.8rem, 5vw, 3.5rem) !important;
  color: #7c4dff !important;
  text-shadow: 0 0 20px rgba(124, 77, 255, 0.6);
}

.display-4 {
  font-size: clamp(1.5rem, 4vw, 2.5rem) !important;
  color: #ffffff !important;
}

.display-5 {
  font-size: clamp(1.3rem, 3.5vw, 2rem) !important;
}

.display-6 {
  font-size: clamp(1.1rem, 3vw, 1.5rem) !important;
}

.text-white {
  color: #ffffff !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-muted {
  color: #b0b8d4 !important;
}

.text-dark {
  color: #0d1642 !important;
}

.lead {
  font-size: 1.25rem;
  color: var(--text-light) !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.fs-2 {
  font-size: clamp(1.3rem, 3vw, 2rem) !important;
}

.fs-3 {
  font-size: clamp(1.2rem, 2.5vw, 1.75rem) !important;
}

.fs-5 {
  font-size: clamp(1rem, 2vw, 1.25rem) !important;
}

.badge {
  background: rgba(124, 77, 255, 0.3) !important;
  color: #ffffff !important;
  border: 2px solid var(--secondary-color) !important;
  padding: 0.6rem 1.2rem !important;
  font-weight: 600 !important;
  margin: 0.3rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(124, 77, 255, 0.3);
}

.badge:hover {
  background: var(--secondary-color) !important;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(124, 77, 255, 0.5);
}

/* Buttons */
.btn {
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px !important;
  transition: all 0.4s ease !important;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent !important;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-lg {
  background: var(--secondary-color) !important;
  color: #ffffff !important;
  box-shadow: 0 5px 25px rgba(124, 77, 255, 0.4);
  border-color: var(--secondary-color) !important;
}

.btn-lg:hover {
  background: var(--light-indigo) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 35px rgba(124, 77, 255, 0.6) !important;
  color: #ffffff !important;
}

.btn-light {
  background: #ffffff !important;
  color: var(--primary-color) !important;
  border-color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-light:hover {
  background: var(--text-light) !important;
  color: var(--primary-color) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4) !important;
}

.btn-outline-light {
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
}

.btn-outline-light:hover {
  background: #ffffff !important;
  color: var(--primary-color) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4) !important;
}

.btn-outline-primary {
  background: transparent !important;
  color: var(--secondary-color) !important;
  border: 2px solid var(--secondary-color) !important;
}

.btn-outline-primary:hover,
.btn-outline-primary.active {
  background: var(--secondary-color) !important;
  color: #ffffff !important;
  border-color: var(--secondary-color) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 20px rgba(124, 77, 255, 0.5) !important;
}

.btn-sm {
  padding: 0.4rem 1rem !important;
  font-size: 0.875rem !important;
}

/* Chevron Animation */
.bi-chevron-down {
  animation: bounce 2s infinite;
  color: var(--secondary-color) !important;
  filter: drop-shadow(0 0 10px var(--secondary-color));
}

.animate-bounce {
  animation: bounce 2s infinite;
}

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

/* Sections */
.py-5 {
  padding: 4rem 0 !important;
  background: linear-gradient(180deg, #0a0e27 0%, #1a237e 50%, #0a0e27 100%);
}

.py-4 {
  padding: 3rem 0 !important;
}

.my-5 {
  margin: 4rem 0 !important;
}

.my-4 {
  margin: 3rem 0 !important;
}

.container {
  position: relative;
  z-index: 1;
}

/* Cards */
.card {
  background: rgba(26, 35, 126, 0.6) !important;
  border: 2px solid rgba(124, 77, 255, 0.3) !important;
  border-radius: 20px !important;
  transition: all 0.4s ease;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(124, 77, 255, 0.2);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(124, 77, 255, 0.4) !important;
  border-color: var(--secondary-color) !important;
}

.card-body {
  padding: 2rem !important;
  color: var(--text-light) !important;
}

.card-title {
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 1.5rem !important;
  margin-bottom: 1rem !important;
  text-shadow: 0 2px 10px rgba(124, 77, 255, 0.4);
}

.card-text {
  color: var(--text-light) !important;
  line-height: 1.7;
  font-size: 1.05rem;
}

.card-header {
  background: rgba(124, 77, 255, 0.3) !important;
  border-bottom: 2px solid var(--secondary-color) !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  padding: 1.2rem !important;
}

.card.border-0 {
  border: 2px solid rgba(124, 77, 255, 0.3) !important;
}

/* Split Hero Section */
.split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  gap: 0;
}

.founder-side {
  background: linear-gradient(135deg, #1a237e 0%, #0d1642 100%);
  padding: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.founder-side::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(124, 77, 255, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

.founder-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.philosophy-side {
  background: linear-gradient(135deg, #0d1642 0%, #1a237e 100%);
  padding: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.philosophy-text {
  max-width: 600px;
}

/* Staggered Grid */
.staggered-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: all 0.4s ease;
}

.grid-item:nth-child(even) {
  transform: translateY(2rem);
}

.grid-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(124, 77, 255, 0.5);
}

/* Timeline Section */
.timeline-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #0a0e27 0%, #1a237e 100%);
}

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

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

.timeline-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--secondary-color) 0%, transparent 100%);
  box-shadow: 0 0 20px rgba(124, 77, 255, 0.5);
}

.timeline-item {
  display: flex;
  margin: 3rem 0;
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
  text-align: left;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-right: auto;
  text-align: right;
}

.timeline-content {
  width: 45%;
  padding: 2rem;
  background: rgba(26, 35, 126, 0.6);
  border: 2px solid rgba(124, 77, 255, 0.4);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  position: relative;
  transition: all 0.4s ease;
}

.timeline-content:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(124, 77, 255, 0.5);
}

.timeline-year {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary-color);
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 0 30px rgba(124, 77, 255, 0.6);
  z-index: 10;
}

/* Values Section */
.values-section {
  padding: 5rem 0;
  background: radial-gradient(circle at center, #1a237e 0%, #0a0e27 100%);
}

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

.value-card {
  background: rgba(26, 35, 126, 0.5);
  padding: 2.5rem;
  border: 2px solid rgba(124, 77, 255, 0.3);
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.value-card:hover {
  transform: translateY(-15px) rotate(2deg);
  border-color: var(--secondary-color);
  box-shadow: 0 20px 50px rgba(124, 77, 255, 0.5);
}

.value-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 15px var(--secondary-color));
}

/* Contact Form */
.contact-form {
  background: rgba(26, 35, 126, 0.4);
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid rgba(124, 77, 255, 0.3);
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  color: #ffffff !important;
  font-weight: 600 !important;
  margin-bottom: 0.5rem;
  display: block;
}

.form-control,
.form-select {
  background: rgba(13, 22, 66, 0.6) !important;
  border: 2px solid rgba(124, 77, 255, 0.3) !important;
  color: #ffffff !important;
  padding: 0.8rem 1.2rem !important;
  border-radius: 10px !important;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  background: rgba(13, 22, 66, 0.8) !important;
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 20px rgba(124, 77, 255, 0.4) !important;
  color: #ffffff !important;
}

.form-control::placeholder {
  color: rgba(232, 234, 246, 0.5) !important;
}

.contact-input {
  transition: all 0.3s ease;
}

.contact-input:hover {
  border-color: var(--secondary-color) !important;
}

/* Contact Info Card */
.contact-info-card {
  background: rgba(26, 35, 126, 0.4);
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid rgba(124, 77, 255, 0.3);
  backdrop-filter: blur(10px);
  height: 100%;
}

.shield-container {
  text-align: center;
  padding: 2rem 0;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.hours-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(124, 77, 255, 0.2);
  color: var(--text-light);
}

/* Social Icons */
.social-runes,
.social-icon {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.social-icon {
  width: 50px;
  height: 50px;
  background: rgba(124, 77, 255, 0.2);
  border: 2px solid var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.social-icon:hover {
  background: var(--secondary-color);
  transform: translateY(-5px) rotate(360deg);
  box-shadow: 0 10px 30px rgba(124, 77, 255, 0.6);
  color: #ffffff !important;
}

/* Map Container */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  border: 3px solid rgba(124, 77, 255, 0.4);
  box-shadow: 0 10px 40px rgba(124, 77, 255, 0.3);
}

/* Images */
.img-fluid {
  border-radius: 15px;
  transition: all 0.4s ease;
}

.img-fluid:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 45px rgba(124, 77, 255, 0.4);
}

.rounded {
  border-radius: 15px !important;
}

.rounded-circle {
  border-radius: 50% !important;
  border: 4px solid var(--secondary-color);
  box-shadow: 0 0 30px rgba(124, 77, 255, 0.5);
}

.shadow-lg {
  box-shadow: 0 15px 50px rgba(124, 77, 255, 0.4) !important;
}

.shadow-sm {
  box-shadow: 0 5px 20px rgba(124, 77, 255, 0.2) !important;
}

.shadow {
  box-shadow: 0 10px 35px rgba(124, 77, 255, 0.3) !important;
}

/* Accordion */
.accordion {
  background: transparent;
}

.accordion-item {
  background: rgba(26, 35, 126, 0.5) !important;
  border: 2px solid rgba(124, 77, 255, 0.3) !important;
  margin-bottom: 1rem;
  border-radius: 15px !important;
  overflow: hidden;
}

.accordion-header {
  background: transparent;
}

.accordion-button {
  background: rgba(124, 77, 255, 0.2) !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  border: none !important;
  padding: 1.2rem 1.5rem !important;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background: var(--secondary-color) !important;
  color: #ffffff !important;
  box-shadow: 0 5px 20px rgba(124, 77, 255, 0.4) !important;
}

.accordion-button:focus {
  box-shadow: 0 0 20px rgba(124, 77, 255, 0.5) !important;
  border-color: var(--secondary-color) !important;
}

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

.accordion-collapse {
  background: rgba(13, 22, 66, 0.4);
}

.accordion-body {
  color: var(--text-light) !important;
  padding: 1.5rem !important;
  line-height: 1.8;
}

/* Program Cards */
.program-card {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.program-card:hover {
  transform: translateY(-10px);
}

.program-hover-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 35, 126, 0.95) 0%, rgba(124, 77, 255, 0.95) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.program-card:hover .program-hover-card {
  opacity: 1;
}

.card-img-top {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.program-card:hover .card-img-top {
  transform: scale(1.1);
}

.intensity-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(26, 35, 126, 0.9);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 2px solid var(--secondary-color);
  z-index: 5;
}

/* Filter Buttons */
.filter-btn {
  margin: 0.3rem;
  transition: all 0.3s ease;
}

.filter-btn.active {
  transform: scale(1.1);
}

/* Stage Cards */
.stage-card {
  background: rgba(26, 35, 126, 0.5);
  border: 2px solid rgba(124, 77, 255, 0.3);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  height: 100%;
}

.stage-card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary-color);
  box-shadow: 0 15px 45px rgba(124, 77, 255, 0.5);
}

/* Progress Bar */
.progress {
  height: 8px !important;
  background: rgba(13, 22, 66, 0.6) !important;
  border-radius: 50px !important;
  overflow: hidden;
}

.progress-bar {
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
  box-shadow: 0 0 15px rgba(124, 77, 255, 0.6);
  transition: width 1s ease;
}

/* Form Check */
.form-check-input {
  background-color: rgba(13, 22, 66, 0.6) !important;
  border: 2px solid rgba(124, 77, 255, 0.3) !important;
  width: 1.5rem;
  height: 1.5rem;
}

.form-check-input:checked {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 15px rgba(124, 77, 255, 0.6);
}

.form-check-input:focus {
  box-shadow: 0 0 20px rgba(124, 77, 255, 0.5) !important;
  border-color: var(--secondary-color) !important;
}

.form-check-label {
  color: var(--text-light) !important;
  margin-left: 0.5rem;
}

/* Table */
.table-responsive {
  border-radius: 15px;
  overflow: hidden;
}

.table {
  color: var(--text-light) !important;
  margin-bottom: 0;
}

.table-hover tbody tr {
  transition: all 0.3s ease;
}

.table-hover tbody tr:hover {
  background: rgba(124, 77, 255, 0.2) !important;
  transform: scale(1.02);
}

.table thead {
  background: var(--primary-color) !important;
  color: #ffffff !important;
}

.table thead th {
  border: none !important;
  padding: 1.2rem !important;
  font-weight: 600 !important;
}

.table tbody td {
  border-color: rgba(124, 77, 255, 0.2) !important;
  padding: 1rem !important;
  vertical-align: middle !important;
}

/* Parallax Hero */
.parallax-hero {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 35, 126, 0.8) 0%, rgba(13, 22, 66, 0.8) 100%);
}

/* Icons */
.bi {
  display: inline-block;
  vertical-align: middle;
}

.text-success {
  color: #4caf50 !important;
}

.text-danger {
  color: #f44336 !important;
}

.text-warning {
  color: #ff9800 !important;
}

.bi-check-circle-fill {
  color: #4caf50;
}

.bi-x-circle-fill,
.bi-x {
  color: #f44336;
}

.bi-fire-fill,
.bi-fire {
  color: #ff9800;
}

.bi-trophy-fill {
  color: #ffd700;
}

/* List Styles */
.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-unstyled li {
  padding: 0.5rem 0;
  color: var(--text-light);
}

/* Text Decoration */
.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-none:hover {
  text-decoration: underline !important;
}

/* Background */
.bg-light {
  background: rgba(232, 234, 246, 0.1) !important;
}

/* Footer */
footer {
  background: var(--dark-indigo);
  padding: 3rem 0 1rem;
  border-top: 3px solid var(--secondary-color);
  box-shadow: 0 -5px 30px rgba(124, 77, 255, 0.3);
}

.copyright {
  text-align: center;
  padding: 1.5rem 0;
  color: var(--text-light);
  border-top: 1px solid rgba(124, 77, 255, 0.2);
  margin-top: 2rem;
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(124, 77, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(124, 77, 255, 0.6);
  }
}

.card,
.value-card,
.stage-card {
  animation: glow 3s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .timeline-line {
    left: 30px;
  }
  
  .timeline-item {
    flex-direction: column;
  }
  
  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px !important;
    text-align: left !important;
  }
  
  .timeline-year {
    left: 30px;
    transform: translateX(0);
  }
}

@media (max-width: 992px) {
  .split-hero {
    grid-template-columns: 1fr;
  }
  
  .founder-side,
  .philosophy-side {
    padding: 3rem 1.5rem;
    min-height: 50vh;
  }
  
  .navbar-collapse {
    background: rgba(13, 22, 66, 0.98);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1rem;
    border: 2px solid rgba(124, 77, 255, 0.3);
  }
  
  .nav-link {
    margin: 0.5rem 0;
    padding: 0.8rem 1rem !important;
  }
  
  .display-1 {
    font-size: 2.5rem !important;
  }
  
  .display-2 {
    font-size: 2rem !important;
  }
  
  .display-3 {
    font-size: 1.8rem !important;
  }
}

@media (max-width: 768px) {
  .staggered-grid {
    grid-template-columns: 1fr;
  }
  
  .grid-item:nth-child(even) {
    transform: translateY(0);
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  .py-5 {
    padding: 3rem 0 !important;
  }
  
  .card-body {
    padding: 1.5rem !important;
  }
  
  .social-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
  
  .badge {
    padding: 0.5rem 1rem !important;
    font-size: 0.9rem !important;
  }
}

@media (max-width: 576px) {
  .container-fluid {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .btn-lg {
    padding: 0.8rem 2rem !important;
    font-size: 1rem !important;
  }
  
  .navbar-brand {
    font-size: 1.2rem !important;
  }
  
  .display-1 {
    font-size: 2rem !important;
  }
  
  .lead {
    font-size: 1.1rem;
  }
  
  .value-card,
  .stage-card {
    padding: 1.5rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
    padding: 1.5rem;
  }
  
  .card-img-top {
    height: 200px;
  }
}

/* Utility Classes */
.position-sticky {
  position: sticky !important;
  top: 80px;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.top-0 {
  top: 0 !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.start-0 {
  left: 0 !important;
}

.end-0 {
  right: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.d-flex {
  display: flex !important;
}

.d-grid {
  display: grid !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-none {
  display: none !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-end {
  justify-content: end !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-middle {
  vertical-align: middle !important;
}

.text-center {
  text-align: center !important;
}

.text-md-start {
  text-align: left !important;
}

.text-md-end {
  text-align: right !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.g-2 {
  gap: 0.5rem !important;
}

.g-3 {
  gap: 1rem !important;
}

.g-4 {
  gap: 1.5rem !important;
}

.g-0 {
  gap: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-lg-0 {
  margin-bottom: 0 !important;
}

.mb-md-0 {
  margin-bottom: 0 !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

@media (min-width: 992px) {
  .d-lg-block {
    display: block !important;
  }
  
  .col-lg-2 {
    width: 16.666667%;
  }
  
  .col-lg-3 {
    width: 25%;
  }
  
  .col-lg-4 {
    width: 33.333333%;
  }
  
  .col-lg-5 {
    width: 41.666667%;
  }
  
  .col-lg-6 {
    width: 50%;
  }
  
  .col-lg-7 {
    width: 58.333333%;
  }
  
  .col-lg-8 {
    width: 66.666667%;
  }
  
  .col-lg-9 {
    width: 75%;
  }
  
  .col-lg-10 {
    width: 83.333333%;
  }
}

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

/* Selection */
::selection {
  background: var(--secondary-color);
  color: #ffffff;
}

::-moz-selection {
  background: var(--secondary-color);
  color: #ffffff;
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(124, 77, 255, 0.5);
}

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

/* Loading Animation */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.loading {
  animation: shimmer 2s infinite;
  background: linear-gradient(to right, transparent 0%, rgba(124, 77, 255, 0.3) 50%, transparent 100%);
  background-size: 1000px 100%;
}