/* ===== RETRO DESIGN SYSTEM WITH CURVED GRID ELEMENTS - PASTEL COLOR SCHEME ===== */

:root {
  /* Primary Colors */
  --primary-color: #f0a3c3;
  --primary-dark: #d6809f;
  --primary-light: #ffd7e5;
  
  /* Secondary Colors */
  --secondary-color: #96d7c6;
  --secondary-dark: #6fb3a2;
  --secondary-light: #c2f0e4;
  
  /* Accent Colors */
  --accent-color: #ffd166;
  --accent-dark: #e0b84a;
  --accent-light: #ffe9a8;
  
  /* Neutral Colors */
  --neutral-100: #ffffff;
  --neutral-200: #f5f5fa;
  --neutral-300: #e9ecef;
  --neutral-400: #dee2e6;
  --neutral-500: #adb5bd;
  --neutral-600: #6c757d;
  --neutral-700: #495057;
  --neutral-800: #343a40;
  --neutral-900: #212529;
  
  /* Background Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary-color) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-color) 100%);
  
  /* Overlay Gradients */
  --overlay-dark: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
  --overlay-light: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.95));
  
  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Work Sans', sans-serif;
  
  /* Border Radius */
  --border-radius-sm: 0.5rem;
  --border-radius-md: 1rem;
  --border-radius-lg: 1.5rem;
  --border-radius-xl: 2rem;
  
  /* Box Shadows */
  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 20px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 12px 28px rgba(0, 0, 0, 0.15);
  
  /* Transition Timings */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ===== BASE STYLES ===== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--neutral-700);
  background-color: var(--neutral-200);
  overflow-x: hidden;
}

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

p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

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

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

section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

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

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

/* ===== UTILITY CLASSES ===== */

.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.text-accent {
  color: var(--accent-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.bg-accent {
  background-color: var(--accent-color) !important;
}

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

.bg-gradient-secondary {
  background: var(--gradient-secondary) !important;
}

.bg-gradient-accent {
  background: var(--gradient-accent) !important;
}

.rounded-3d {
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform var(--transition-normal);
}

.rounded-3d:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

/* ===== BUTTONS ===== */

.btn {
  border-radius: var(--border-radius-md);
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  transition: all 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: rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
  z-index: -1;
}

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

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--neutral-100);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--neutral-100);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  color: var(--neutral-100);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background-color: var(--accent-color);
  color: var(--neutral-800);
}

.btn-accent:hover {
  background-color: var(--accent-dark);
  color: var(--neutral-800);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline-light:hover {
  background-color: var(--neutral-100);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

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

/* ===== NAVIGATION ===== */

.retro-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--neutral-100);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
  transition: all var(--transition-normal);
}

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

.navbar-brand img {
  max-height: 60px;
  transition: all var(--transition-normal);
}

.navbar-scrolled .navbar-brand img {
  max-height: 50px;
}

.navbar-nav .nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--neutral-700);
  padding: 0.5rem 1rem;
  transition: all var(--transition-normal);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: all var(--transition-normal);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

.navbar-nav .nav-link:hover::after {
  width: 70%;
}

/* ===== HERO SECTION ===== */
.hero-content{
  padding-top: 160px !important;
}
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
  padding: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-dark);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--neutral-100);
  max-width: 800px;
  padding: 2rem;
  margin: 0 auto;
  transform: translateY(2rem);
  animation: fadeInUp 1s ease forwards;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--neutral-100);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--neutral-100);
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

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

/* ===== VISION SECTION ===== */

.vision-section {
  background-color: var(--neutral-100);
  position: relative;
  overflow: hidden;
}

.vision-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: var(--primary-light);
  border-radius: 50%;
  opacity: 0.2;
  transform: translate(50%, -50%);
}

.vision-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background-color: var(--secondary-light);
  border-radius: 50%;
  opacity: 0.2;
  transform: translate(-50%, 50%);
}

.vision-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.vision-content {
  padding: 1rem 0;
}

.vision-content h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

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

.stat-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.stat-circle:hover {
  transform: scale(1.05);
}

.stat-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--neutral-100);
}

/* ===== SUCCESS STORIES SECTION ===== */

.success-stories-section {
  background-color: var(--neutral-200);
  position: relative;
}

.success-story-card {
  background-color: var(--neutral-100);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  margin: 0 0.5rem;
  transition: transform var(--transition-normal);
}

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

.card-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.card-image img.rounded-circle {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 5px solid var(--primary-light);
  box-shadow: var(--shadow-md);
}

.card-content h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.job-title {
  font-style: italic;
  color: var(--neutral-600);
  margin-bottom: 1rem;
}

.rating {
  color: var(--accent-color);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial {
  font-style: italic;
  position: relative;
  padding: 0 1.5rem;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 0;
  left: 0;
  font-size: 3rem;
  line-height: 1;
  color: var(--primary-light);
  font-family: serif;
}

.testimonial::after {
  content: '"';
  position: absolute;
  bottom: -1.5rem;
  right: 0;
  font-size: 3rem;
  line-height: 1;
  color: var(--primary-light);
  font-family: serif;
}

.carousel-control-prev,
.carousel-control-next {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
}

.carousel-control-prev {
  left: -20px;
}

.carousel-control-next {
  right: -20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--primary-color);
  opacity: 0.5;
  margin: 0 5px;
}

.carousel-indicators button.active {
  opacity: 1;
}

/* ===== PORTFOLIO SECTION ===== */

.portfolio-section {
  background-color: var(--neutral-100);
}

.portfolio-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.portfolio-card .card-image {
  height: 220px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

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

.portfolio-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.portfolio-card p {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.course-details {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.course-details li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.course-details li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* ===== RESEARCH SECTION ===== */

.research-section {
  background-color: var(--neutral-200);
  position: relative;
}

.research-image {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.research-content h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.research-topics {
  margin-top: 1.5rem;
}

.research-topics h4 {
  margin-bottom: 1rem;
  color: var(--neutral-700);
}

.research-topics ul {
  padding-left: 1.5rem;
}

.research-topics li {
  margin-bottom: 0.5rem;
  position: relative;
}

.research-topics li::before {
  content: '→';
  position: absolute;
  left: -1.5rem;
  color: var(--primary-color);
}

/* ===== EXTERNAL RESOURCES SECTION ===== */

.external-resources-section {
  background-color: var(--neutral-100);
}

.resource-card {
  height: 100%;
  border-radius: var(--border-radius-md);
  border: none;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

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

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

.resource-card .card-title {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.resource-card .card-text {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* ===== PARTNERS SECTION ===== */

.partners-section {
  background-color: var(--neutral-200);
}

.partner-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  padding: 1.5rem;
  background-color: var(--neutral-100);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

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

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all var(--transition-normal);
}

.partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ===== BLOG SECTION ===== */

.blog-section {
  background-color: var(--neutral-100);
}

.blog-card {
  height: 100%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.blog-card .card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.date-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: var(--primary-color);
  color: var(--neutral-100);
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
}

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

.blog-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.blog-card p {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.read-more {
  align-self: flex-start;
  color: var(--primary-color);
  font-weight: 500;
  transition: all var(--transition-normal);
  position: relative;
}

.read-more::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-normal);
}

.read-more:hover {
  color: var(--primary-dark);
}

.read-more:hover::after {
  width: 100%;
}

/* ===== CONTACT SECTION ===== */

.contact-section {
  background-color: var(--neutral-200);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background-color: var(--primary-light);
  border-radius: 50%;
  opacity: 0.2;
  transform: translate(30%, -30%);
}

.contact-info {
  padding: 2rem 0;
}

.contact-details {
  margin: 2rem 0;
}

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

.contact-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: var(--primary-color);
}

.email-icon::before {
  content: '✉';
  font-size: 1.25rem;
}

.phone-icon::before {
  content: '☏';
  font-size: 1.25rem;
}

.location-icon::before {
  content: '⌖';
  font-size: 1.25rem;
}

.office-hours h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.contact-form-container {
  background-color: var(--neutral-100);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.contact-form .form-label {
  font-weight: 500;
  color: var(--neutral-700);
}

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

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(240, 163, 195, 0.25);
}

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

.contact-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(240, 163, 195, 0.25);
}

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

/* ===== FOOTER ===== */

.footer-section {
  background-color: var(--neutral-800);
  color: var(--neutral-300);
  padding: 4rem 0 0;
}

.footer-about {
  margin-bottom: 2rem;
}

.footer-about p {
  margin-bottom: 1.5rem;
}

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

.social-links a {
  color: var(--neutral-300);
  transition: color var(--transition-normal);
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}

.social-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-normal);
}

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

.social-links a:hover::after {
  width: 100%;
}

.footer-links h3 {
  color: var(--neutral-100);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-links h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

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

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

.footer-links ul li a {
  color: var(--neutral-300);
  transition: all var(--transition-normal);
  position: relative;
  padding-left: 1.25rem;
  display: inline-block;
}

.footer-links ul li a::before {
  content: '›';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 1.25rem;
  transition: transform var(--transition-normal);
}

.footer-links ul li a:hover {
  color: var(--primary-color);
  padding-left: 1.5rem;
}

.footer-links ul li a:hover::before {
  transform: translateY(-50%) translateX(5px);
}

.footer-newsletter h3 {
  color: var(--neutral-100);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-newsletter h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

.newsletter-form .form-control {
  border-radius: var(--border-radius-sm);
  border: none;
  padding: 0.75rem;
  background-color: var(--neutral-700);
  color: var(--neutral-100);
}

.newsletter-form .form-control::placeholder {
  color: var(--neutral-400);
}

.newsletter-form .form-control:focus {
  box-shadow: none;
  background-color: var(--neutral-600);
}

.footer-bottom {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--neutral-300);
  transition: color var(--transition-normal);
}

.footer-bottom a:hover {
  color: var(--primary-color);
}

/* ===== COURSE MODALS ===== */

.modal-content {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: none;
}

.modal-header {
  background-color: var(--primary-color);
  color: var(--neutral-100);
  border-bottom: none;
}

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

.modal-body {
  padding: 2rem;
}

.modal-footer {
  border-top: none;
  padding: 1rem 2rem 2rem;
}

.course-details-bottom {
  background-color: var(--neutral-200);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  margin-top: 2rem;
}

.course-details-bottom h5 {
  font-size: 1rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* ===== COOKIE CONSENT ===== */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--neutral-800);
  padding: 1rem;
  z-index: 9999;
  display: none;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--neutral-100);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.cookie-content p {
  margin-bottom: 0;
  margin-right: 1rem;
}

/* ===== SUCCESS PAGE ===== */

.success-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
  background-color: var(--neutral-200);
}

.success-content {
  max-width: 600px;
  background-color: var(--neutral-100);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

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

/* ===== PRIVACY & TERMS PAGES ===== */

.privacy-page, .terms-page {
  padding-top: 100px;
}

.privacy-content, .terms-content {
  background-color: var(--neutral-100);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

/* ===== ANIMATIONS ===== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.fadeInUp {
  animation: fadeInUp 1s ease forwards;
}

.fadeIn {
  animation: fadeIn 1s ease forwards;
}

/* ===== MEDIA QUERIES ===== */

@media (max-width: 1199.98px) {
  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 991.98px) {
  section {
    padding: 4rem 0;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .vision-image {
    margin-bottom: 2rem;
  }
  
  .contact-info {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  section {
    padding: 3rem 0;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .card-image img.rounded-circle {
    width: 120px;
    height: 120px;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-content p {
    margin-bottom: 1rem;
    margin-right: 0;
  }
}

@media (max-width: 575.98px) {
  .section-header {
    margin-bottom: 2rem;
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .stat-circle {
    width: 80px;
    height: 80px;
  }
  
  .stat-number {
    font-size: 1.25rem;
  }
  
  .success-content,
  .privacy-content,
  .terms-content {
    padding: 2rem;
  }
}

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

/* 3D Effect for certain images */
.img-3d-effect {
  transform: perspective(1000px) rotateY(-15deg);
  transition: transform 0.5s ease;
  box-shadow: var(--shadow-lg);
}

.img-3d-effect:hover {
  transform: perspective(1000px) rotateY(0deg);
}