/* Variables */
:root {
  /* Primary Colors */
  --primary-color: #4a6fa1;
  --primary-color-dark: #3a5980;
  --primary-color-light: #7793bb;

  /* Neutral Colors */
  --neutral-100: #ffffff;
  --neutral-200: #f8f9fa;
  --neutral-300: #e9ecef;
  --neutral-400: #dee2e6;
  --neutral-500: #adb5bd;
  --neutral-600: #6c757d;
  --neutral-700: #495057;
  --neutral-800: #343a40;
  --neutral-900: #212529;

  /* Accent Colors */
  --accent-color: #61c4b7;
  --accent-color-dark: #4aa295;
  --accent-color-light: #8fd4cb;

  /* Text Colors */
  --text-dark: #333333;
  --text-light: #ffffff;
  --text-muted: #6c757d;

  /* Font Families */
  --heading-font: 'Space Grotesk', sans-serif;
  --body-font: 'DM Sans', sans-serif;

  /* Other Variables */
  --border-radius: 12px;
  --border-radius-sm: 6px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  --box-shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Base Styles */
body {
  font-family: var(--body-font);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--neutral-100);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--neutral-800);
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-color-dark);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: 80px 0;
  position: relative;
}

.section-padding {
  padding: 100px 0;
}

.section-padding-sm {
  padding: 60px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  text-align: center;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--neutral-600);
  margin-bottom: 3rem;
  text-align: center;
}

.bg-light {
  background-color: var(--neutral-200) !important;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

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

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

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

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

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 500;
  border-radius: var(--border-radius-sm);
  padding: 0.75rem 1.5rem;
  transition: var(--transition);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--box-shadow);
  border: none;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-hover);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--primary-color-dark);
  color: var(--text-light);
}

.btn-outline-light {
  background-color: transparent;
  border: 2px solid var(--neutral-100);
  color: var(--text-light);
}

.btn-outline-light:hover {
  background-color: var(--neutral-100);
  color: var(--primary-color);
}

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

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.btn-link {
  background: none;
  border: none;
  padding: 0;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  box-shadow: none;
}

.btn-link:hover {
  color: var(--primary-color-dark);
  text-decoration: underline;
  box-shadow: none;
  transform: none;
}

/* Navigation */
header {
  transition: var(--transition);
  z-index: 1000;
}

.navbar {
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--primary-color);
}

.navbar-nav .nav-link {
  color: var(--neutral-700);
  font-weight: 500;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
  background-color: rgba(74, 111, 161, 0.05);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: -90px;
  padding-top: 90px;
}

#hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

#hero .container {
  position: relative;
  z-index: 2;
}

.animated-title {
  animation: fadeInUp 1s ease-out;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

#hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Parallax Effect */
.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Cards */
.card {
  border-radius: var(--border-radius);
  border: none;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.card-image {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

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

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.card-text {
  color: var(--neutral-700);
  margin-bottom: 1.5rem;
}

/* Service Cards */
.service-card {
  border-radius: var(--border-radius);
  overflow: hidden;
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Testimonial Cards */
.testimonial-card {
  text-align: center;
  padding: 2rem;
}

.testimonial-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 5px solid var(--neutral-100);
  box-shadow: var(--box-shadow);
}

.testimonial-quote {
  font-style: italic;
  color: var(--neutral-700);
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0 1.5rem;
}

.testimonial-quote::before,
.testimonial-quote::after {
  content: '"';
  font-size: 2rem;
  color: var(--neutral-400);
  position: absolute;
}

.testimonial-quote::before {
  top: -10px;
  left: 0;
}

.testimonial-quote::after {
  bottom: -20px;
  right: 0;
}

.testimonial-author h4 {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

/* Webinar Cards */
.webinar-card .webinar-date {
  color: var(--accent-color);
  font-weight: 500;
}

/* Award Cards */
.award-card {
  text-align: center;
}

.award-img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
}

.award-organization {
  color: var(--accent-color);
  font-weight: 500;
}

/* Blog Cards */
.blog-card .blog-meta {
  color: var(--accent-color);
  font-weight: 500;
}

.blog-card .btn-link {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
}

.blog-card .btn-link i {
  margin-left: 0.5rem;
  transition: var(--transition);
}

.blog-card .btn-link:hover i {
  transform: translateX(5px);
}

/* Resource Cards */
.resource-card {
  text-align: center;
}

/* Contact Section */
.contact-info {
  margin-bottom: 2rem;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(74, 111, 161, 0.1);
  border-radius: 50%;
}

.contact-form-wrapper .card {
  border-radius: var(--border-radius);
  overflow: hidden;
}

.form-control {
  border: 1px solid var(--neutral-300);
  border-radius: var(--border-radius-sm);
  padding: 0.75rem 1rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(74, 111, 161, 0.25);
}

/* Map Section */
.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.map-container img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Footer */
.footer {
  background-color: var(--neutral-800);
  color: var(--text-light);
  padding-top: 4rem;
}

.footer h3, .footer h4 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.footer p {
  color: var(--neutral-400);
}

.footer a {
  color: var(--neutral-400);
  transition: var(--transition);
}

.footer a:hover {
  color: var(--text-light);
  text-decoration: none;
}

.social-links a {
  margin-right: 1rem;
  font-weight: 500;
}

.footer-bottom {
  padding: 1.5rem 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.footer-links a {
  margin-left: 1.5rem;
}

/* Cookie Consent */
.cookie-consent {
  background-color: rgba(33, 37, 41, 0.95);
  color: var(--text-light);
  padding: 1.5rem 0;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.cookie-consent p {
  margin-bottom: 0;
}

.cookie-consent a {
  color: var(--accent-color);
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 0;
}

.success-icon {
  font-size: 5rem;
  color: var(--accent-color);
  margin-bottom: 2rem;
}

/* Privacy & Terms Pages */
.page-content {
  padding-top: 100px;
  padding-bottom: 4rem;
}

.page-title {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--neutral-300);
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 1s ease-out;
}

/* Biomorphic Design Elements */
.biomorphic-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: -1;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background-color: var(--primary-color);
  top: -150px;
  right: -150px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background-color: var(--accent-color);
  bottom: -100px;
  left: -100px;
}

/* Media Queries */
@media (max-width: 991.98px) {
  .section-title {
    font-size: 2rem;
  }
  
  #hero h1 {
    font-size: 2.5rem;
  }
  
  #hero p {
    font-size: 1.25rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-info {
    padding-right: 0;
    margin-bottom: 3rem;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 70px 0;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  #hero h1 {
    font-size: 2rem;
  }
  
  .card-image img {
    height: 200px;
  }
  
  .testimonial-img {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 575.98px) {
  .section-padding {
    padding: 50px 0;
  }
  
  #hero h1 {
    font-size: 1.75rem;
  }
  
  .card-image img {
    height: 180px;
  }
  
  .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-links a {
    margin-left: 0;
  }
}