:root {
  /* Main Colors */
  --primary-color: #0056b3;
  --primary-dark: #004494;
  --primary-light: #3d7cc9;
  --secondary-color: #ff6b35;
  --secondary-dark: #e55a2b;
  --secondary-light: #ff8c61;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
  --gradient-dark: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
  --gradient-overlay: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
  
  /* Text Colors */
  --text-dark: #333333;
  --text-medium: #555555;
  --text-light: #b9b5b5;
  --text-muted: #6c757d;
  
  /* Background Colors */
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --bg-dark: #212529;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  
  /* Border Radius */
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  
  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
  --shadow-md: 0 5px 15px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
  
  /* Transitions */
  --transition-fast: all 0.2s ease;
  --transition-normal: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

/* Base Styles */
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
}

p {
  margin-bottom: var(--spacing-sm);
}

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

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

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

.section-title {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
  text-align: center;
  position: relative;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 0 auto var(--spacing-md);
  border-radius: 2px;
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-md);
  font-weight: 500;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: var(--transition-normal);
  z-index: -1;
}

.btn:hover::before {
  width: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(0, 86, 179, 0.2);
}

.btn-primary:hover, .btn-primary:focus {
  background: var(--primary-dark);
  color: var(--text-light);
  box-shadow: 0 6px 20px rgba(0, 86, 179, 0.3);
  transform: translateY(-2px);
}

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

.btn-outline-primary:hover, .btn-outline-primary:focus {
  background: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
}

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

.btn-outline-light:hover, .btn-outline-light:focus {
  background: var(--text-light);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Form Elements */
.form-control, .form-select {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-md);
  transition: var(--transition-fast);
  box-shadow: none;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(0, 86, 179, 0.25);
}

.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

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

/* Header & Navigation */
.header {
  transition: var(--transition-normal);
  padding: 1rem 0;
  background: transparent;
}

.header.scrolled {
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
}

.navbar-dark .navbar-nav .nav-link {
  color: var(--text-light);
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: var(--secondary-light);
}

.navbar-dark .navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-dark .navbar-toggler:focus {
  box-shadow: none;
}

.navbar-dark .navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-light);
}

.bg-gradient {
  background: var(--gradient-primary);
}

/* Hero Section */
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-overlay);
  z-index: 1;
}

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

.hero-content {
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--text-light);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-md);
}

.hero-buttons .btn {
  margin-right: 1rem;
  margin-bottom: 1rem;
}

/* About Section */
.about-section {
  background-color: var(--bg-white);
  padding: var(--spacing-xl) 0;
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.image-container img {
  transition: var(--transition-slow);
  width: 100%;
}

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

/* Services Section */
.services-section {
  background-color: var(--bg-light);
  padding: var(--spacing-xl) 0;
}

.card {
  border: none;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.card-image {
  width: 100%;
  text-align: center;
  overflow: hidden;
  border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
  height: 250px;
}

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

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

.card-body {
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-grow: 1;
}

.card-title {
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.card-text {
  color: var(--text-medium);
  margin-bottom: var(--spacing-sm);
}

/* Webinars Section */
.webinars-section {
  background-color: var(--bg-white);
  padding: var(--spacing-xl) 0;
}

.webinar-card .card-image {
  height: 300px;
}

.badge {
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Instructors Section */
.instructors-section {
  background-color: var(--bg-light);
  padding: var(--spacing-xl) 0;
}

.instructor-card {
  text-align: center;
}

.instructor-card .card-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
}

.social-links a {
  font-weight: 500;
  transition: var(--transition-fast);
}

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

/* Resources Section */
.resources-section {
  background-color: var(--bg-white);
  padding: var(--spacing-xl) 0;
}

.resource-card {
  height: 100%;
}

.resource-link {
  display: block;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  border-radius: var(--border-radius-md);
  background-color: var(--bg-light);
  transition: var(--transition-fast);
}

.resource-link:hover {
  background-color: var(--primary-light);
  color: var(--text-light);
  transform: translateX(5px);
}

/* Case Studies Section */
.case-studies-section {
  background-color: var(--bg-light);
  padding: var(--spacing-xl) 0;
}

.case-study-card {
  overflow: hidden;
}

.case-study-card .img-fluid {
  transition: var(--transition-normal);
  object-fit: cover;
}

.case-study-card:hover .img-fluid {
  transform: scale(1.05);
}

/* Customer Stories Section */
.customer-stories-section {
  background-color: var(--bg-white);
  padding: var(--spacing-xl) 0;
}

.testimonial-card {
  padding: var(--spacing-md);
  text-align: center;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

.testimonial-rating {
  color: #ffc107;
  font-size: 1.25rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-medium);
  font-size: 1.1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-image img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 1rem;
}

.author-name {
  margin-bottom: 0.25rem;
}

.author-position {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* Workshops Section */
.workshops-section {
  background-color: var(--bg-light);
  padding: var(--spacing-xl) 0;
}

.workshop-card .card-image {
  height: 300px;
}

/* Behind the Scenes Section */
.behind-scenes-section {
  background-color: var(--bg-white);
  padding: var(--spacing-xl) 0;
}

.process-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: var(--text-light);
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

/* Community Section */
.community-section {
  background-color: var(--bg-light);
  padding: var(--spacing-xl) 0;
}

.community-card {
  padding: var(--spacing-md);
}

.check-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: var(--spacing-md);
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 0.75rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  transition: var(--transition-normal);
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Careers Section */
.careers-section {
  background-color: var(--bg-white);
  padding: var(--spacing-xl) 0;
}

.benefit-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--text-light);
  border-radius: 50%;
  font-size: 1.5rem;
}

.job-item {
  transition: var(--transition-normal);
  margin-bottom: var(--spacing-md);
}

.job-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.job-title {
  font-weight: 600;
}

.job-location {
  color: var(--text-muted);
}

.job-requirements ul {
  padding-left: 1.5rem;
}

/* Contact Section */
.contact-section {
  background-color: var(--bg-light);
  padding: var(--spacing-xl) 0;
}

.contact-info {
  margin-bottom: var(--spacing-md);
}

.contact-item {
  margin-bottom: var(--spacing-md);
}

.contact-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: var(--text-light);
  border-radius: 50%;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-map {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-form {
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding-top: var(--spacing-xl);
}

.footer-logo {
  max-width: 180px;
  margin-bottom: var(--spacing-md);
}

.footer-links a {
  color: var(--text-light);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--secondary-light);
  padding-left: 5px;
}

.social-links a {
  margin-right: var(--spacing-sm);
  color: var(--text-light);
}

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

hr.bg-light {
  opacity: 0.1;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(33, 37, 41, 0.95);
  color: var(--text-light);
  padding: var(--spacing-md);
  z-index: 9999;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
}

.success-card {
  max-width: 600px;
  width: 100%;
  padding: var(--spacing-xl);
  text-align: center;
  border-radius: var(--border-radius-lg);
  background: var(--bg-white);
  box-shadow: var(--shadow-lg);
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: var(--text-light);
  border-radius: 50%;
  font-size: 2.5rem;
}

/* Privacy & Terms Pages */
.privacy-page, .terms-page {
  padding-top: 100px;
  padding-bottom: var(--spacing-xl);
}

.privacy-content, .terms-content {
  background: var(--bg-white);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

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

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

.animate-fadeIn {
  animation: fadeIn 0.5s ease-out;
}

.animate-slideInLeft {
  animation: slideInLeft 0.5s ease-out;
}

.animate-slideInRight {
  animation: slideInRight 0.5s ease-out;
}

/* Media Queries */
@media (max-width: 991.98px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .navbar-collapse {
    background: var(--gradient-primary);
    padding: 1rem;
    border-radius: var(--border-radius-md);
    margin-top: 0.5rem;
  }
}

@media (max-width: 767.98px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .process-item, .contact-item, .benefit-item {
    flex-direction: column;
    text-align: center;
  }
  
  .process-number, .contact-icon, .benefit-icon {
    margin-bottom: var(--spacing-sm);
    margin-right: 0;
  }
  
  .testimonial-author {
    flex-direction: column;
  }
  
  .author-image {
    margin-bottom: var(--spacing-sm);
  }
  
  .author-image img {
    margin-right: 0;
  }
}

@media (max-width: 575.98px) {
  .btn {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .hero-buttons .btn {
    margin-right: 0;
  }
}
.navbar-brand{
  width: 30px;
  height: 30px;
}