:root {
  --primary: #4f46e5;
  --primary-dark: #4338ca;
  --accent: #06b6d4;
  --accent-dark: #0891b2;
  --background: #ffffff;
  --background-alt: #f8fafc;
  --text-main: #1e293b;
  --text-secondary: #64748b;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
}

body {
  background: var(--background);
  color: var(--text-main);
  font-family: 'Raleway', sans-serif;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

a, .link {
  color: var(--primary);
  transition: all 0.3s ease;
  text-decoration: none;
}

a:hover, .link:hover {
  color: var(--accent);
  text-decoration: none;
}

.btn-primary, .action-button {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 0.75rem;
  font-weight: 600;
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.1), 0 2px 4px -1px rgba(79, 70, 229, 0.06);
}

.btn-primary:hover, .action-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.1), 0 4px 6px -2px rgba(79, 70, 229, 0.05);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  border-radius: 0.75rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

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

.feature-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
  opacity: 0.05;
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-card i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s ease;
  display: inline-block;
}

.feature-card:hover i {
  transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.feature-card:hover h3 {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.testimonial-card {
  background: var(--background-alt);
  border-radius: 1rem;
  padding: 2rem;
  margin: 1rem 0;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.hero {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(6, 182, 212, 0.05));
  position: relative;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.hero .btn {
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.hero .d-flex {
  position: relative;
  z-index: 2;
}

.section-spaced {
  padding: 6rem 0;
}

.section-spaced.bg-light {
  background: var(--background-alt);
}

#features {
  background: var(--background-alt);
}

#about {
  background: var(--background);
}

#contact {
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
}

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

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

.section-title p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Modern Footer Styles */
.footer-modern {
  background: linear-gradient(135deg, var(--text-main), #1a1a1a);
  color: #ffffff;
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

.footer-brand {
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.footer-brand .d-flex {
  align-items: center;
  gap: 2.5rem;
  text-align: left;
}

.footer-logo {
  height: 120px;
  width: auto;
  margin-bottom: 0;
  display: block;
  flex-shrink: 0;
}

.footer-description {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 340px;
}

.footer-heading {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  margin-top: 1rem;
  padding-left: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
  margin-left: 1.25rem;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  text-align: center;
}

/* Make sure all interactive elements are clickable */
.footer-modern .btn,
.footer-modern a {
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: #ffffff;
}

@media (max-width: 991.98px) {
  .footer-brand .d-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-logo {
    height: 90px;
  }
  .footer-description {
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .footer-brand {
    display: block;
    margin-bottom: 0;
  }
  .footer-logo {
    height: 120px;
  }
  .footer-description {
    font-size: 1.15rem;
  }
  .footer-links, .footer-heading {
    display: block;
    justify-content: flex-start;
    align-items: flex-start;
    height: auto;
  }
}

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

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  .hero {
    padding: 4rem 0;
  }
  
  .section-spaced {
    padding: 4rem 0;
  }
}

/* About Section Styles */
.about-image {
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  max-width: 90%;
  margin: 0 auto;
}

.about-image img {
  transition: all 0.4s ease;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-image:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

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

.about-content {
  padding-left: 2rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateX(10px);
}

.about-feature i {
  font-size: 1.5rem;
  color: var(--success);
  margin-right: 1rem;
  transition: all 0.3s ease;
}

.about-feature:hover i {
  transform: scale(1.2);
}

.about-feature h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.about-feature p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.6;
}

@media (min-width: 992px) {
  .about-content {
    padding-left: 3rem;
  }
}

@media (max-width: 768px) {
  .about-content {
    padding-left: 0;
    margin-top: 2rem;
  }
  
  .about-image {
    max-width: 100%;
  }
  
  .feature-card {
    padding: 2rem;
  }
  
  .feature-card i {
    font-size: 2.5rem;
  }
  
  .feature-card h3 {
    font-size: 1.5rem;
  }
}

/* Contact Form Styles */
.contact-form-wrapper {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(6, 182, 212, 0.08));
  border-radius: 1.5rem;
  z-index: -1;
}

.contact-form-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.form-label {
  color: var(--text-main);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-control {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn-primary {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .contact-form-wrapper {
    padding: 2rem;
  }
  
  .contact-form .btn-primary {
    width: 100%;
  }
}

/* Registration Form Styles */
.form-card {
  background: linear-gradient(135deg, #f8fafc 60%, #e0e7ff 100%);
  border-radius: 1.5rem;
  border: 1.5px solid #e0e7ff;
  box-shadow: 0 8px 32px rgba(79, 70, 229, 0.10), 0 1.5px 4px rgba(6, 182, 212, 0.08);
  padding: 2.5rem 2rem;
  transition: box-shadow 0.3s;
}

.form-card:hover {
  box-shadow: 0 16px 48px rgba(79, 70, 229, 0.13), 0 3px 8px rgba(6, 182, 212, 0.10);
}

.form-control, .form-select {
  background: #f4f7fa;
  border: 2px solid #e0e7ff;
  color: var(--text-main);
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.10);
}

.input-group-text {
  background: #e0e7ff;
  color: var(--primary-dark);
  border: 2px solid #e0e7ff;
}

.btn-primary, .action-button {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.10);
}

.btn-primary:hover, .action-button:hover {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
  box-shadow: 0 6px 18px rgba(6, 182, 212, 0.13);
}

.form-label {
  color: var(--primary-dark);
}

.form-check-input:checked {
  background-color: var(--accent);
  border-color: var(--accent);
}

/* Form Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.form-group {
  animation: slideInLeft 0.5s ease-out forwards;
  opacity: 0;
}

.form-group:nth-child(2) {
  animation-delay: 0.1s;
}

.form-group:nth-child(3) {
  animation-delay: 0.2s;
}

.form-group:nth-child(4) {
  animation-delay: 0.3s;
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Hover Effects */
.form-control:hover, .form-select:hover {
  border-color: rgba(79, 70, 229, 0.3);
}

.input-group:hover .input-group-text {
  border-color: rgba(79, 70, 229, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .form-control, .form-select, .input-group-text {
    padding: 0.6rem 0.8rem;
  }
  
  .form-label {
    font-size: 0.9rem;
  }
}

@media (min-width: 992px) {
  .footer-brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }
  .footer-links, .footer-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }
} 