/* WebDev Academy - Main Styles */

/* CSS Variables for Color Scheme */
:root {
  --deep-indigo: #2c2c54;
  --light-lavender: #c8c6f4;
  --emerald: #2e8b57;
  --sand: #f2e9e4;
  --charcoal: #1c1c1c;
  --white: #ffffff;
  --shadow: rgba(44, 44, 84, 0.1);
  --shadow-dark: rgba(28, 28, 28, 0.2);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: var(--charcoal);
  background-color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--deep-indigo);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--charcoal);
}

a {
  color: var(--emerald);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--deep-indigo);
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--emerald);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--deep-indigo);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-dark);
}

.btn-secondary {
  background-color: var(--light-lavender);
  color: var(--deep-indigo);
  border: 2px solid var(--light-lavender);
}

.btn-secondary:hover {
  background-color: var(--deep-indigo);
  color: var(--white);
  border-color: var(--deep-indigo);
}

/* Header */
.header {
  background-color: var(--white);
  box-shadow: 0 2px 10px var(--shadow);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--deep-indigo);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-logo a:hover {
  color: var(--emerald);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--charcoal);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--emerald);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--emerald);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--deep-indigo);
  margin: 3px 0;
  transition: 0.3s;
}

/* Logo Styles */
.logo-icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  vertical-align: middle;
}

/* Statistics Section */
.statistics {
  padding: 80px 0;
  background-color: var(--sand);
}

.statistics h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.stat-card {
  text-align: center;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 8px 25px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px var(--shadow-dark);
}

.stat-icon {
  margin-bottom: 20px;
}

.stat-image {
  width: 60px;
  height: 60px;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--emerald);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--charcoal);
  font-weight: 500;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: var(--white);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--light-lavender);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 25px var(--shadow);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-avatar {
  text-align: center;
  margin-bottom: 30px;
}

.avatar-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.testimonial-content p {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: var(--charcoal);
}

.testimonial-author strong {
  display: block;
  color: var(--deep-indigo);
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.testimonial-author span {
  color: var(--emerald);
  font-size: 1rem;
}

/* Why Choose Us Extended Section */
.why-choose-extended {
  padding: 80px 0;
  background-color: var(--deep-indigo);
  color: var(--white);
}

.why-choose-extended h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.5rem;
  color: var(--white);
}

.extended-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.extended-feature {
  padding: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.extended-feature:hover {
  transform: translateY(-5px);
}

.feature-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--emerald);
  margin-bottom: 20px;
}

.extended-feature h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.extended-feature p {
  color: var(--light-lavender);
  line-height: 1.8;
  font-size: 1rem;
}

/* Gallery Section */
.gallery {
  padding: 80px 0;
  background-color: var(--sand);
}

.gallery h2 {
  text-align: center;
  color: var(--deep-indigo);
  margin-bottom: 1rem;
}

.gallery-description {
  text-align: center;
  color: var(--deep-indigo);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

.gallery-item {
  background-color: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-dark);
}

.gallery-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.gallery-content {
  padding: 1.5rem;
}

.gallery-content h3 {
  color: var(--deep-indigo);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.gallery-content p {
  color: var(--deep-indigo);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 800px;
  width: calc(100% - 40px);
  border-left: 5px solid var(--emerald);
  background-color: var(--deep-indigo);
  color: var(--white);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 20px var(--shadow-dark);
  z-index: 10000;
  display: none;
}

.cookie-popup.show {
  display: block;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-content p {
  margin: 0;
  color: var(--white);
}

.cookie-content a {
  color: var(--light-lavender);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../images/webdev.jpg") no-repeat center center/cover;
  color: var(--white);
  padding: 180px 0 80px;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-icon {
  margin-bottom: 30px;
}

.hero-image {
  width: 120px;
  height: 120px;
}

.hero h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--light-lavender);
  line-height: 1.6;
}

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

/* Page Header */
.page-header {
  background-color: var(--sand);
  padding: 120px 0 60px;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.1rem;
  color: var(--charcoal);
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: var(--white);
}

.features h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.5rem;
  color: var(--deep-indigo);
}

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

.feature-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  background-color: var(--sand);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--light-lavender);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px var(--shadow);
  background-color: var(--white);
}

.feature-icon {
  margin-bottom: 1.5rem;
}

.feature-icon img {
  width: 60px;
  height: 60px;
}

.feature-card h3 {
  color: var(--deep-indigo);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.feature-card p {
  color: var(--charcoal);
  line-height: 1.6;
  font-size: 1rem;
}

/* Courses Section */
.courses-preview {
  padding: 80px 0;
  background-color: var(--sand);
}

.courses-preview h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.5rem;
  color: var(--deep-indigo);
}

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

.course-card {
  background-color: var(--white);
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 8px 25px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--light-lavender);
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px var(--shadow-dark);
}

.course-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.course-icon {
  font-size: 2rem;
}

.course-card h3 {
  color: var(--deep-indigo);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.course-card p {
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.course-meta {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.course-meta span {
  background-color: var(--light-lavender);
  color: var(--deep-indigo);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.course-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--emerald);
  margin: 1.5rem 0;
}

/* Registration Form */
.registration {
  padding: 80px 0;
  background-color: var(--white);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--sand);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* New Sections Styles */
.development-tools,
.frameworks,
.database,
.deployment,
.testing {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.development-tools:nth-child(odd),
.frameworks:nth-child(odd),
.database:nth-child(odd),
.deployment:nth-child(odd),
.testing:nth-child(odd) {
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.section-header:hover .section-icon {
  transform: scale(1.1) rotate(5deg);
}

.section-header h2 {
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-header p {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* Tools Grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.tool-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.tool-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tool-card h3 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 15px;
  font-weight: 600;
}

.tool-card p {
  color: #64748b;
  line-height: 1.6;
}

/* Frameworks Grid */
.frameworks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.framework-card {
  background: white;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.framework-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4f46e5, #06b6d4);
}

.framework-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.framework-card h3 {
  font-size: 1.6rem;
  color: #1e293b;
  margin-bottom: 15px;
  font-weight: 600;
}

.framework-card p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.popularity {
  display: inline-block;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Database Content */
.database-content {
  margin-top: 40px;
}

.database-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.db-type {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.db-type h3 {
  font-size: 1.6rem;
  color: #1e293b;
  margin-bottom: 25px;
  font-weight: 600;
}

.db-type ul {
  list-style: none;
  padding: 0;
}

.db-type li {
  padding: 12px 0;
  color: #64748b;
  border-bottom: 1px solid #f1f5f9;
  position: relative;
  padding-left: 25px;
}

.db-type li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #8b5cf6;
  font-weight: bold;
}

.db-type li:last-child {
  border-bottom: none;
}

/* Deployment Options */
.deployment-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.deploy-option {
  background: white;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  text-align: center;
}

.deploy-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.deploy-option h3 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 20px;
  font-weight: 600;
}

.deploy-option p {
  color: #64748b;
  line-height: 1.6;
}

/* Testing Types */
.testing-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.test-type {
  background: white;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  position: relative;
}

.test-type::before {
  content: "✓";
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f59e0b;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.test-type:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.test-type h3 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 20px;
  font-weight: 600;
}

.test-type p {
  color: #64748b;
  line-height: 1.6;
}

/* Learning Materials Section */
.learning-materials {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.material-category {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.material-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #3b82f6, #06b6d4, #10b981, #f59e0b);
}

.material-category:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.category-icon {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 20px;
  display: block;
}

.material-category h3 {
  font-size: 1.6rem;
  color: #1e293b;
  margin-bottom: 25px;
  font-weight: 600;
  text-align: center;
}

.materials-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.materials-list li {
  margin-bottom: 12px;
}

.material-link {
  color: #64748b;
  text-decoration: none;
  padding: 10px 15px;
  display: block;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 35px;
}

.material-link::before {
  content: "▶";
  position: absolute;
  left: 15px;
  color: #3b82f6;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.material-link:hover {
  background: #f1f5f9;
  color: #3b82f6;
  transform: translateX(5px);
}

.material-link:hover::before {
  color: #1d4ed8;
  transform: scale(1.2);
}

.materials-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid #e2e8f0;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 10px;
  display: block;
}

.stat-label {
  color: #64748b;
  font-size: 1rem;
  font-weight: 500;
}

/* Student Projects Carousel */
.student-projects {
  padding: 80px 0;
  background-color: var(--sand);
  color: white;
}

.student-projects {
  color: white;
}

.student-projects {
  color: rgba(255, 255, 255, 0.9);
}

.projects-carousel {
  position: relative;
  margin-top: 50px;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 500%;
}

.project-slide {
  width: 20%;
  flex-shrink: 0;
  padding: 0 15px;
}

.project-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  color: #1e293b;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.project-image {
  width: 80%;
  margin: 0 auto;

  object-fit: cover;
  display: block;
}
.project-img {
  width: 80%;
  margin: 0 auto;
  height: 500px;
  object-fit: cover;
  display: block;
}

.project-info {
  padding: 60px;
  margin: 0 auto;
}

.project-info h3 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 15px;
  font-weight: 600;
}

.project-info p {
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.6;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tech-tag {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.project-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #e2e8f0;
  font-size: 0.9rem;
  color: #64748b;
}

.project-duration {
  font-weight: 600;
  color: #3b82f6;
}

.carousel-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  color: #3b82f6;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
  background: white;
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.prev-btn {
}

.next-btn {
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: white;
  transform: scale(1.2);
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.7);
}

/* Responsive Design for Carousel */
@media (max-width: 768px) {
  .project-slide {
    padding: 0 10px;
  }

  .project-info {
    padding: 20px;
  }

  .project-info h3 {
    font-size: 1.3rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .project-author {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}

/* Registration Form - Minimalist Style */
.registration {
  background: #ffffff;
  padding: 5rem 0;
  position: relative;
}

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

.registration h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2rem;
  color: #1a1a1a;
  font-weight: 300;
  letter-spacing: -0.5px;
}

.registration p {
  text-align: center;
  margin-bottom: 3rem;
  color: #666;
  font-size: 1rem;
  font-weight: 300;
}

.registration-form {
  max-width: 480px;
  margin: 0 auto;
  background: #ffffff;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

.form-group {
  margin-bottom: 2.5rem;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 400;
  color: #1a1a1a;
  font-size: 0.9rem;
  letter-spacing: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 0;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 0;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: transparent;
  color: #1a1a1a;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: #1a1a1a;
  transform: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
  font-size: 1rem;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("../images/dropdown-arrow.svg");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 1rem;
  padding-right: 2rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
  border-bottom: 1px solid #e0e0e0;
}

.error-message {
  display: block;
  color: #d32f2f;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  font-weight: 400;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.error-message.show {
  opacity: 1;
  transform: translateY(0);
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-bottom-color: #d32f2f;
}

.registration-form .btn-primary {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 400;
  border-radius: 0;
  background: #1a1a1a;
  border: none;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0;
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
}

.registration-form .btn-primary:hover {
  background: #333;
  transform: none;
  box-shadow: none;
}

.registration-form .btn-primary:active {
  transform: translateY(1px);
}

.registration-form .btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Loading state */
.registration-form.loading .btn-primary {
  pointer-events: none;
  opacity: 0.7;
}

.registration-form.loading .btn-primary::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  margin: auto;
  border: 2px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Success state */
.form-success {
  text-align: center;
  padding: 2rem;
  color: #1a1a1a;
}

.form-success svg {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .registration {
    padding: 3rem 0;
  }

  .registration-form {
    margin: 0 1rem;
    padding: 0;
  }

  .registration h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid var(--light-lavender);
  border-radius: 3px;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background-color: var(--emerald);
  border-color: var(--emerald);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: -2px;
  left: 2px;
  color: var(--white);
  font-size: 12px;
  font-weight: bold;
}

.error-message {
  color: #e74c3c;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: block;
}

/* About Content */
.about-content {
  padding: 80px 0;
  background-color: var(--white);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background-color: var(--sand);
  border-radius: 10px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--emerald);
  display: block;
}

.stat-label {
  color: var(--deep-indigo);
  font-weight: 500;
}

/* Team Section */
.team {
  padding: 80px 0;
  background-color: var(--sand);
}

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

.team-member {
  background-color: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px var(--shadow);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.member-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  overflow: hidden;
}

.member-photo svg {
  width: 100%;
  height: 100%;
}

.member-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--deep-indigo);
  margin-bottom: 0.5rem;
}

.member-role {
  color: var(--emerald);
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Values Section */
.values {
  padding: 80px 0;
  background-color: var(--white);
}

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

.value-item {
  padding: 2rem;
  border-left: 4px solid var(--emerald);
  background-color: var(--sand);
  border-radius: 0 10px 10px 0;
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Course Details */
.course-details {
  padding: 80px 0;
  background-color: var(--white);
}

.course-section {
  margin-bottom: 4rem;
  padding: 3rem;
  background-color: var(--sand);
  border-radius: 15px;
}

.course-curriculum {
  margin: 2rem 0;
}

.curriculum-list {
  list-style: none;
  padding: 0;
}

.curriculum-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--light-lavender);
  position: relative;
  padding-left: 2rem;
}

.curriculum-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--emerald);
  font-weight: bold;
}

/* Projects */
.projects-filter {
  padding: 80px 0 40px;
  background-color: var(--white);
  text-align: center;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.filter-btn {
  padding: 0.8rem 1.5rem;
  border: 2px solid var(--light-lavender);
  background-color: var(--white);
  color: var(--deep-indigo);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--emerald);
  color: var(--white);
  border-color: var(--emerald);
}

.projects-grid {
  padding: 40px 0 80px;
  background-color: var(--white);
}

.project-card {
  background-color: var(--sand);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow-dark);
}

.project-image {
  width: 80%;

  overflow: hidden;
}

.project-image svg {
  width: 100%;
  height: 100%;
}

.project-info {
  padding: 1.5rem;
}

.project-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--deep-indigo);
  margin-bottom: 0.5rem;
}

.project-author {
  color: var(--emerald);
  font-weight: 500;
  margin-bottom: 1rem;
}

.project-tech {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.tech-tag {
  background-color: var(--light-lavender);
  color: var(--deep-indigo);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Materials */
.materials-categories {
  padding: 80px 0;
  background-color: var(--white);
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 1rem 2rem;
  border: 2px solid var(--light-lavender);
  background-color: var(--white);
  color: var(--deep-indigo);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.tab-btn:hover,
.tab-btn.active {
  background-color: var(--emerald);
  color: var(--white);
  border-color: var(--emerald);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.material-card {
  background-color: var(--sand);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px var(--shadow);
  transition: transform 0.3s ease;
}

.material-card:hover {
  transform: translateY(-5px);
}

.material-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.material-meta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.material-meta span {
  background-color: var(--light-lavender);
  color: var(--deep-indigo);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 500;
}

.difficulty {
  background-color: var(--emerald) !important;
  color: var(--white) !important;
}

/* Newsletter */
.newsletter {
  padding: 80px 0;
  background-color: var(--deep-indigo);
  color: var(--white);
  text-align: center;
}

.newsletter h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.newsletter p {
  color: var(--light-lavender);
  margin-bottom: 2rem;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form .form-group {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.newsletter-form input {
  flex: 1;
  padding: 12px;
  border: 2px solid var(--light-lavender);
  border-radius: 5px;
  font-size: 1rem;
}

/* Contact Info */
.contact-info {
  padding: 80px 0;
  background-color: var(--white);
}

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

.contact-card {
  background-color: var(--sand);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px var(--shadow);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  margin-bottom: 1rem;
}

.contact-card a {
  color: var(--emerald);
  font-weight: 500;
}

.contact-card small {
  color: var(--charcoal);
  font-size: 0.9rem;
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background-color: var(--sand);
}

.map-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.map-container-wrapper {
  position: relative;
  background-color: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--shadow);
}

.map-container-wrapper iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 15px;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.map-container-wrapper:hover .map-overlay {
  background: rgba(0, 0, 0, 0.1);
  opacity: 1;
  pointer-events: all;
}

.map-click-hint {
  background: var(--white);
  color: var(--primary);
  padding: 12px 20px;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.map-container-wrapper:hover .map-click-hint {
  transform: translateY(0);
}

.map-click-hint svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.map-info {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px var(--shadow);
}

.map-info ul {
  list-style: none;
  padding: 0;
}

.map-info li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--light-lavender);
}

.map-info li:last-child {
  border-bottom: none;
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
  background-color: var(--white);
}

.contact-form-section .form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  background-color: var(--sand);
}

.form-info h2 {
  margin-bottom: 1rem;
}

.contact-benefits {
  margin-top: 2rem;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.benefit-icon {
  font-size: 1.5rem;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background-color: var(--sand);
}

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

.faq-item {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px var(--shadow);
}

.faq-item h3 {
  color: var(--deep-indigo);
  margin-bottom: 1rem;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--emerald) 0%,
    var(--deep-indigo) 100%
  );
  color: var(--white);
  text-align: center;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta p {
  color: var(--light-lavender);
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  background-color: var(--deep-indigo);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: var(--white);
  margin-bottom: 1rem;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--light-lavender);
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--white);
}

.footer-section p {
  color: var(--light-lavender);
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid var(--light-lavender);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--light-lavender);
  font-size: 0.9rem;
}

.footer-bottom p {
  color: var(--light-lavender);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  /* Navigation */
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px var(--shadow);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Typography */
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  /* Grids */
  .features-grid,
  .courses-grid,
  .team-grid,
  .values-grid,
  .projects-grid,
  .materials-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  /* Forms */
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    max-width: 300px;
  }

  /* Contact Form */
  .contact-form-section .form-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Map */
  .map-container {
    grid-template-columns: 1fr;
  }

  /* Newsletter */
  .newsletter-form .form-group {
    flex-direction: column;
  }

  .newsletter-form input {
    margin-bottom: 1rem;
  }

  /* Footer */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  /* Cookie Popup */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  /* Buttons */
  .filter-buttons,
  .category-tabs {
    flex-direction: column;
    align-items: center;
  }

  .filter-btn,
  .tab-btn {
    width: 100%;
    max-width: 300px;
  }

  /* New Sections Responsive */
  .section-header h2 {
    font-size: 2rem;
  }

  .section-icon {
    width: 60px;
    height: 60px;
  }

  .tools-grid,
  .frameworks-grid,
  .database-types,
  .deployment-options,
  .testing-types {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tool-card,
  .framework-card,
  .db-type,
  .deploy-option,
  .test-type {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .page-header {
    padding: 100px 0 40px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }

  .feature-card,
  .course-card,
  .team-member,
  .material-card,
  .contact-card,
  .faq-item {
    padding: 1.5rem;
  }

  .form-container {
    padding: 2rem;
  }

  .course-section {
    padding: 2rem;
  }
}

/* Print Styles */
@media print {
  .header,
  .cookie-popup,
  .hamburger {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .container {
    max-width: none;
    padding: 0;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for keyboard navigation */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
  outline: 2px solid var(--emerald);
  outline-offset: 2px;
}

/* Policy Pages Styling */
.policy-text {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.policy-text h2 {
  color: var(--deep-indigo);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  border-bottom: 2px solid var(--emerald);
  padding-bottom: 0.5rem;
}

.policy-text h3 {
  color: var(--deep-indigo);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.policy-text p {
  margin-bottom: 1.5rem;
  color: var(--deep-indigo);
}

.policy-text ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.policy-text li {
  margin-bottom: 0.8rem;
  color: var(--deep-indigo);
}

.policy-text strong {
  color: var(--emerald);
  font-weight: 600;
}

/* Cookie Tables */
.cookie-table {
  margin: 2rem 0;
  overflow-x: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px var(--shadow-light);
}

.cookie-table table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white);
}

.cookie-table th {
  background-color: var(--emerald);
  color: var(--white);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.cookie-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--light-lavender);
  color: var(--deep-indigo);
}

.cookie-table tr:last-child td {
  border-bottom: none;
}

.cookie-table tr:nth-child(even) {
  background-color: var(--sand);
}

/* Contact Information in Policy Pages */
.policy-contact {
  background-color: var(--sand);
  padding: 2rem;
  border-radius: 10px;
  margin: 3rem 0;
  text-align: center;
}

.policy-contact h3 {
  color: var(--deep-indigo);
  margin-bottom: 1rem;
}

.policy-contact p {
  color: var(--deep-indigo);
  margin-bottom: 0.5rem;
}

.policy-contact a {
  color: var(--emerald);
  text-decoration: none;
  font-weight: 600;
}

.policy-contact a:hover {
  text-decoration: underline;
}

/* Thank You Page Styling - Completely Redesigned */
.thank-you-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  min-height: calc(100vh - 200px);
  margin-top: 100px;
}

/* Hero Section with Icon */
.thank-you-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
  animation: bounceIn 1s ease-out;
  position: relative;
}

.thank-you-icon::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border: 3px solid rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

/* Main Title */
.thank-you-content h1 {
  color: var(--deep-indigo);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, #2c2c54 0%, #40407a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Thank You Message Section */
.thank-you-message {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
  text-align: center;
  border: 1px solid rgba(16, 185, 129, 0.1);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.thank-you-message .main-message {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--deep-indigo);
  margin-bottom: 1rem;
}

.thank-you-message p {
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Next Steps Section */
.next-steps {
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.next-steps h2 {
  text-align: center;
  color: var(--deep-indigo);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  position: relative;
}

.next-steps h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 2px;
}

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

.step {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.step-content h3 {
  color: var(--deep-indigo);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.step-content p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Contact Information Section */
.policy-contact {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
  border: 1px solid rgba(16, 185, 129, 0.1);
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.policy-contact h2 {
  color: var(--deep-indigo);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact-details {
  display: grid;
  gap: 1rem;
  text-align: center;
}

.contact-details p {
  color: #64748b;
  font-size: 1.1rem;
  margin: 0;
  padding: 0.8rem;
  background: #f8fafc;
  border-radius: 10px;
  border-left: 4px solid #10b981;
}

.contact-details a {
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #059669;
}

/* Useful Links Section */
.useful-links {
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out 1s both;
}

.useful-links h2 {
  text-align: center;
  color: var(--deep-indigo);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.useful-links > p {
  text-align: center;
  color: #64748b;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.link-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.1);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.link-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  border-color: #10b981;
}

.link-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.link-content h3 {
  color: var(--deep-indigo);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.link-content p {
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out 1.2s both;
}

.action-buttons .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 180px;
  justify-content: center;
}

.action-buttons .btn-primary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.action-buttons .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

.action-buttons .btn-secondary {
  background: white;
  color: var(--deep-indigo);
  border: 2px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.action-buttons .btn-secondary:hover {
  background: #f8fafc;
  border-color: #10b981;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Social Follow Section */
.social-follow {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
  text-align: center;
  border: 1px solid rgba(16, 185, 129, 0.1);
  animation: fadeInUp 0.8s ease-out 1.4s both;
}

.social-follow h3 {
  color: var(--deep-indigo);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.social-follow p {
  color: #64748b;
  margin-bottom: 2rem;
}

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

.social-link {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-indigo);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(16, 185, 129, 0.1);
}

.social-link:hover {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

/* Additional Info Section */
.additional-info {
  animation: fadeInUp 0.8s ease-out 1.6s both;
}

.info-box {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  padding: 2rem;
  border-radius: 16px;
  border-left: 5px solid #f59e0b;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.15);
}

.info-box:last-child {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border-left-color: #3b82f6;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.info-box h3 {
  color: var(--deep-indigo);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-box p {
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

.info-box strong {
  color: var(--deep-indigo);
  font-weight: 700;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .thank-you-content {
    padding: 1rem 0.5rem 2rem;
  }

  .thank-you-content h1 {
    font-size: 2.2rem;
  }

  .next-steps h2 {
    font-size: 1.8rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .links-grid {
    grid-template-columns: 1fr;
  }

  .link-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .action-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .social-links {
    gap: 0.8rem;
  }

  .thank-you-message,
  .policy-contact,
  .social-follow {
    padding: 1.5rem;
  }

  .step {
    padding: 1.5rem;
  }

  .info-box {
    padding: 1.5rem;
  }
}

/* Enhanced Interactivity and Visual Improvements */

/* Smooth transitions for all interactive elements */
* {
  transition: all 0.3s ease;
}

/* Enhanced hover effects for cards */
.feature-card,
.course-card,
.project-card,
.material-card,
.tool-item,
.framework-item,
.database-item,
.deployment-item,
.testing-item {
  position: relative;
  overflow: hidden;
}

.feature-card::before,
.course-card::before,
.project-card::before,
.material-card::before,
.tool-item::before,
.framework-item::before,
.database-item::before,
.deployment-item::before,
.testing-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.feature-card:hover::before,
.course-card:hover::before,
.project-card:hover::before,
.material-card:hover::before,
.tool-item:hover::before,
.framework-item:hover::before,
.database-item:hover::before,
.deployment-item:hover::before,
.testing-item:hover::before {
  left: 100%;
}

/* Hero section without parallax */
.hero {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Floating animation for icons */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.feature-icon,
.course-icon,
.about-icon,
.tools-icon,
.frameworks-icon,
.database-icon,
.deployment-icon,
.testing-icon,
.materials-icon {
  animation: float 3s ease-in-out infinite;
}

.feature-icon:nth-child(2n) {
  animation-delay: 0.5s;
}
.feature-icon:nth-child(3n) {
  animation-delay: 1s;
}

/* Pulse effect for buttons */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 139, 87, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(46, 139, 87, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(46, 139, 87, 0);
  }
}

.btn-primary:hover {
  animation: pulse 1.5s infinite;
}

/* Gradient text effect */
.gradient-text {
  background: linear-gradient(45deg, var(--emerald), var(--deep-indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Apply gradient text to headings */
.hero h1,
.section h2 {
  background: #10b981;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Enhanced scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays */
.animate-on-scroll:nth-child(1) {
  transition-delay: 0.1s;
}
.animate-on-scroll:nth-child(2) {
  transition-delay: 0.2s;
}
.animate-on-scroll:nth-child(3) {
  transition-delay: 0.3s;
}
.animate-on-scroll:nth-child(4) {
  transition-delay: 0.4s;
}

/* Interactive background patterns */
.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(46, 139, 87, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(139, 69, 19, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}

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

/* Enhanced loading states */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Interactive hover states for navigation */
.nav-links a {
  position: relative;
  overflow: hidden;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--emerald);
  transition: width 0.3s ease;
}

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

/* Enhanced focus states for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
  outline: 2px solid var(--emerald);
  outline-offset: 2px;
}

/* Smooth page transitions */
body {
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}

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

/* Interactive statistics counters */
.stat-number {
  position: relative;
  overflow: hidden;
}

.stat-number::before {
  content: attr(data-count);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--emerald), var(--deep-indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.stat-item:hover .stat-number::before {
  transform: translateY(0);
}

/* Enhanced mobile interactions */
@media (max-width: 768px) {
  .feature-card,
  .course-card,
  .project-card,
  .material-card {
    transform: none !important;
    transition: box-shadow 0.3s ease;
  }

  .feature-card:active,
  .course-card:active,
  .project-card:active,
  .material-card:active {
    box-shadow: 0 8px 25px var(--shadow);
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  :root {
    --white: #1a1a1a;
    --light-lavender: #2d2d2d;
    --sand: #333333;
    --deep-indigo: #e0e0e0;
    --shadow: rgba(255, 255, 255, 0.1);
  }

  .hero {
    background-blend-mode: overlay;
  }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* About Us Section */
.about-us {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--light-lavender) 0%,
    var(--sand) 100%
  );
  position: relative;
  overflow: hidden;
}

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

.about-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}

.about-header h2 {
  color: var(--deep-indigo);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-header p {
  color: var(--deep-indigo);
  font-size: 1.2rem;
  opacity: 0.8;
}

.about-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.about-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 2;
}

.nav-btn {
  background-color: var(--white);
  border: 2px solid var(--emerald);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  box-shadow: 0 4px 15px var(--shadow);
}

.nav-btn:hover {
  background-color: var(--emerald);
  color: var(--white);
  transform: scale(1.1);
}

.nav-btn svg {
  width: 24px;
  height: 24px;
}

.about-slides {
  background-color: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px var(--shadow);
  margin: 0 60px;
  position: relative;
  overflow: hidden;
}

.about-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.about-slide.active {
  display: block;
  opacity: 1;
}

.slide-content h3 {
  color: var(--deep-indigo);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.slide-content p {
  color: var(--deep-indigo);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;

  border-radius: 15px;
  color: var(--white);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

.team-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--light-lavender);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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

.feature-icon {
  font-size: 2rem;
}

.approach-list {
  margin-top: 2rem;
}

.approach-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: var(--sand);
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.approach-item:hover {
  transform: translateX(10px);
}

.approach-number {
  background: linear-gradient(135deg, var(--emerald), var(--deep-indigo));
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.approach-text h4 {
  color: var(--deep-indigo);
  margin-bottom: 0.5rem;
}

.approach-text p {
  color: var(--deep-indigo);
  opacity: 0.8;
  margin: 0;
  text-align: left;
}

.about-indicators {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--light-lavender);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background-color: var(--emerald);
  transform: scale(1.2);
}

.indicator:hover {
  background-color: var(--deep-indigo);
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
  .about-slides {
    margin: 0 20px;
    padding: 2rem 1.5rem;
  }

  .about-navigation {
    position: static;
    transform: none;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .team-features {
    gap: 1rem;
  }

  .approach-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .approach-text {
    text-align: center;
  }

  .approach-text p {
    text-align: center;
  }
}

/* Cookie Policy Specific Styles */
.browser-instructions {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.browser-instructions:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.browser-instructions h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.browser-instructions h4:first-child {
  margin-top: 0;
}

.browser-instructions h4::before {
  content: "🌐";
  font-size: 1.1rem;
}

.browser-instructions ol {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1rem 0;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.browser-instructions ol li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e9ecef;
  transition: all 0.2s ease;
  position: relative;
  padding-left: 1rem;
}

.browser-instructions ol li:last-child {
  border-bottom: none;
}

.browser-instructions ol li:hover {
  background-color: #f8f9fa;
  padding-left: 1.5rem;
}

.browser-instructions ol li::marker {
  color: var(--primary-color);
  font-weight: bold;
}

/* Cookie Controls Section */
.cookie-controls {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 15px;
  padding: 2.5rem;
  margin: 3rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cookie-controls::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

.cookie-controls h2 {
  color: white;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.cookie-controls p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.consent-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.consent-buttons .btn {
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-width: 160px;
}

.consent-buttons .btn-primary {
  background: white;
  color: var(--primary-color);
  border-color: white;
}

.consent-buttons .btn-primary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.consent-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.consent-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.consent-buttons .btn-outline {
  background: transparent;
  color: white;
  border-color: white;
}

.consent-buttons .btn-outline:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Policy Footer */
.policy-footer {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 3rem;
  border-left: 4px solid var(--secondary-color);
  text-align: center;
}

.policy-footer p {
  margin: 0.5rem 0;
  color: #6c757d;
  font-size: 0.95rem;
}

.policy-footer strong {
  color: var(--text-color);
}

/* Enhanced styling for consequences section */
.policy-text h3 + p + ul {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border-radius: 10px;
  padding: 1.5rem;
  border-left: 4px solid #ffc107;
  margin: 1rem 0;
  list-style: none;
}

.policy-text h3 + p + ul li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 2rem;
  border-bottom: 1px solid rgba(255, 193, 7, 0.2);
}

.policy-text h3 + p + ul li:last-child {
  border-bottom: none;
}

.policy-text h3 + p + ul li::before {
  content: "⚠️";
  position: absolute;
  left: 0;
  top: 0.5rem;
}

/* Enhanced contact information styling */
.policy-text h2 + p + ul {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  list-style: none;
  margin: 1.5rem 0;
}

.policy-text h2 + p + ul li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.policy-text h2 + p + ul li:last-child {
  border-bottom: none;
}

.policy-text h2 + p + ul li strong {
  color: var(--primary-color);
  min-width: 120px;
}

.policy-text h2 + p + ul li:first-child::before {
  content: "📧";
  font-size: 1.1rem;
}

.policy-text h2 + p + ul li:nth-child(2)::before {
  content: "📞";
  font-size: 1.1rem;
}

.policy-text h2 + p + ul li:nth-child(3)::before {
  content: "📍";
  font-size: 1.1rem;
}

.policy-text h2 + p + ul li:nth-child(4)::before {
  content: "🕒";
  font-size: 1.1rem;
}

/* Responsive Design for Cookie Policy */
@media (max-width: 768px) {
  .browser-instructions {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .browser-instructions ol {
    padding: 1rem;
  }

  .cookie-controls {
    padding: 2rem 1.5rem;
    margin: 2rem 0;
  }

  .consent-buttons {
    flex-direction: column;
    align-items: center;
  }

  .consent-buttons .btn {
    width: 100%;
    max-width: 250px;
  }

  .policy-footer {
    padding: 1rem;
    text-align: left;
  }

  .policy-text h2 + p + ul li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .policy-text h2 + p + ul li strong {
    min-width: auto;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* About Page New Sections Styles */

/* Common section styles */
.education-section,
.career-section,
.innovation-section,
.community-section,
.support-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.support-section {
}

/* Section headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.section-icon:hover {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--deep-indigo);
  position: relative;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--charcoal);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Education Section */
.education-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.education-item {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.education-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--emerald), var(--deep-indigo));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.education-item:hover::before {
  transform: scaleX(1);
}

.education-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px var(--shadow-dark);
}

.education-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--emerald);
  margin-bottom: 15px;
}

.education-item p {
  color: var(--charcoal);
  line-height: 1.6;
}

/* Career Section */
.career-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.career-stat {
  text-align: center;
  background: white;
  padding: 50px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
}

.career-stat::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--deep-indigo), var(--emerald));
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.career-stat:hover::before {
  opacity: 1;
}

.career-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px var(--shadow-dark);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--deep-indigo);
  margin-bottom: 10px;
  display: block;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--charcoal);
  font-weight: 500;
}

/* Innovation Section */
.innovation-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.innovation-feature {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.innovation-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--shadow-dark);
  border-color: var(--emerald);
}

.innovation-feature h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--emerald);
  margin-bottom: 15px;
}

.innovation-feature p {
  color: var(--charcoal);
  line-height: 1.6;
}

/* Community Section */
.community-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.community-benefit {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
}

.community-benefit::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, var(--deep-indigo), var(--light-lavender));
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.community-benefit:hover::after {
  opacity: 0.1;
  transform: scale(1);
}

.community-benefit:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--shadow-dark);
}

.community-benefit h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--deep-indigo);
  margin-bottom: 15px;
}

.community-benefit p {
  color: var(--charcoal);
  line-height: 1.6;
}

/* Support Section */
.support-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.support-channel {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  border-left: 5px solid transparent;
}

.support-channel:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--shadow-dark);
  border-left-color: var(--emerald);
}

.support-channel h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--emerald);
  margin-bottom: 15px;
}

.support-channel p {
  color: var(--charcoal);
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .education-section,
  .career-section,
  .innovation-section,
  .community-section,
  .support-section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1.1rem;
  }

  .section-icon {
    width: 60px;
    height: 60px;
  }

  .education-grid,
  .innovation-features,
  .community-benefits,
  .support-channels {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .career-stats {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

/* Course Grid Layout */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.course-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.course-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4f46e5, #7c3aed, #ec4899);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.course-card:hover::before {
  opacity: 1;
}

.course-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.course-icon-img {
  width: 64px;
  height: 64px;
  transition: transform 0.3s ease;
}

.course-card:hover .course-icon-img {
  transform: scale(1.1) rotate(5deg);
}

.course-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.course-header h2 {
  font-size: 1.5rem;
  margin: 0 auto;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.course-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: #059669;
  background: linear-gradient(135deg, #10b981, #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f8fafc;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.meta-item:hover {
  background: #e2e8f0;
  transform: scale(1.05);
}

.meta-icon {
  font-size: 1rem;
}

.meta-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
}

.course-description {
  margin-bottom: 1.5rem;
}

.course-description p {
  color: #64748b;
  line-height: 1.6;
  font-size: 0.95rem;
}

.course-curriculum,
.course-projects {
  margin-bottom: 1.5rem;
}

.course-curriculum h3,
.course-projects h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.course-curriculum h3::before {
  content: "📚";
  font-size: 1.2rem;
}

.course-projects h3::before {
  content: "🚀";
  font-size: 1.2rem;
}

.curriculum-list,
.projects-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.curriculum-list li,
.projects-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: #475569;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.curriculum-list li:hover,
.projects-list li:hover {
  color: #1f2937;
  transform: translateX(4px);
}

.curriculum-icon {
  color: #10b981;
  font-weight: bold;
  font-size: 0.875rem;
}

.project-icon {
  font-size: 1rem;
}

.course-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.btn-primary,
.btn-secondary {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-align: center;
  min-width: 140px;
}

.btn-primary {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #3730a3, #6d28d9);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

.btn-secondary {
  background: white;
  color: #4f46e5;
  border: 2px solid #4f46e5;
}

.btn-secondary:hover {
  background: #4f46e5;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

/* Responsive Design for Course Cards */
@media (max-width: 768px) {
  .courses-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .course-card {
    padding: 1.5rem;
  }

  .course-header h2 {
    font-size: 1.25rem;
  }

  .course-price {
    font-size: 1.5rem;
  }

  .meta-item {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }

  .course-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .courses-grid {
    gap: 1rem;
  }

  .course-card {
    padding: 1rem;
  }

  .course-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .meta-item {
    justify-content: center;
  }
}

/* New Thematic Sections Styling */

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: block;
  transition: transform 0.3s ease;
}

.section-icon:hover {
  transform: scale(1.1);
}

/* Career Growth Section */
.career-growth {
  padding: 80px 0;
  background-color: var(--sand);
}

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

.stage-card {
  background-color: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.stage-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--emerald), var(--deep-indigo));
}

.stage-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--emerald);
  margin-bottom: 1rem;
  opacity: 0.8;
}

.stage-salary {
  background-color: var(--emerald);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  margin-top: 1rem;
  display: inline-block;
}

/* Mentorship Section */
.mentorship {
  padding: 80px 0;
  background-color: var(--white);
}

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

.mentor-card {
  background-color: var(--sand);
  border-radius: 15px;
  padding: 2rem;
  transition: transform 0.3s ease;
  border-left: 5px solid var(--emerald);
}

.mentor-card:hover {
  transform: translateX(10px);
}

.mentor-stats {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.mentor-stats span {
  background-color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.9rem;
  color: var(--deep-indigo);
  font-weight: 500;
}

/* Certification Section */
.certification {
  padding: 80px 0;
  background-color: var(--sand);
}

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

.cert-card {
  background-color: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px var(--shadow);
  transition: transform 0.3s ease;
  position: relative;
}

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

.cert-features {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cert-features span {
  background-color: var(--emerald);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Portfolio Building Section */
.portfolio-building {
  padding: 80px 0;
  background-color: var(--white);
}

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

.project-type {
  background-color: var(--sand);
  border-radius: 15px;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.project-type:hover {
  transform: translateY(-5px);
}

.project-tech {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.tech-tag {
  background-color: var(--deep-indigo);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Networking Section */
.networking {
  padding: 80px 0;
  background-color: var(--sand);
}

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

.network-card {
  background-color: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.network-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px var(--shadow);
}

.network-stats {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.network-stats span {
  background-color: var(--emerald);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Innovation Section */
.innovation-section {
  padding: 80px 0;
  background-color: var(--white);
}

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

.innovation-card {
  background-color: var(--sand);
  border-radius: 15px;
  padding: 2rem;
  transition: transform 0.3s ease;
  border-top: 4px solid var(--emerald);
}

.innovation-card:hover {
  transform: translateY(-5px);
}

.innovation-tech {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

/* Learning Methods Section */
.learning-methods {
  padding: 80px 0;
  background-color: var(--sand);
}

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

.method-card {
  background-color: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px var(--shadow);
  transition: transform 0.3s ease;
  position: relative;
}

.method-card:hover {
  transform: scale(1.02);
}

.method-stats {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.method-stats span {
  background-color: var(--deep-indigo);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Community Section */
.community-section {
  padding: 80px 0;
  background-color: var(--white);
}

.community-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.community-stat {
  text-align: center;
  padding: 2rem;
  background-color: var(--sand);
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.community-stat:hover {
  transform: translateY(-5px);
}

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

.feature-item {
  background-color: var(--sand);
  border-radius: 15px;
  padding: 2rem;
  transition: transform 0.3s ease;
  border-left: 5px solid var(--emerald);
}

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

/* Support Section */
.support-section {
  padding: 80px 0;
  background-color: var(--sand);
}

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

.support-card {
  background-color: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px var(--shadow);
  transition: transform 0.3s ease;
}

.support-card:hover {
  transform: translateY(-5px);
}

.support-availability {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.support-availability span {
  background-color: var(--emerald);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Success Stories Section */
.success-stories {
  padding: 80px 0;
  background-color: var(--white);
}

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

.success-story {
  background-color: var(--sand);
  border-radius: 15px;
  padding: 2rem;
  transition: transform 0.3s ease;
  border-left: 5px solid var(--emerald);
}

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

.story-header {
  margin-bottom: 1rem;
}

.story-role {
  color: var(--emerald);
  font-weight: 600;
  font-size: 0.9rem;
}

.story-stats {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.story-stats span {
  background-color: var(--deep-indigo);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Enhanced Interactivity */
.stage-card,
.mentor-card,
.cert-card,
.project-type,
.network-card,
.innovation-card,
.method-card,
.community-stat,
.feature-item,
.support-card,
.success-story {
  cursor: pointer;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .career-growth,
  .mentorship,
  .certification,
  .portfolio-building,
  .networking,
  .innovation-section,
  .learning-methods,
  .community-section,
  .support-section,
  .success-stories {
    padding: 60px 0;
  }

  .growth-stages,
  .mentorship-benefits,
  .certification-types,
  .portfolio-projects,
  .networking-opportunities,
  .innovation-grid,
  .methods-grid,
  .community-features,
  .support-types,
  .success-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .community-stats {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }

  .stage-number {
    font-size: 2.5rem;
  }

  .section-icon {
    width: 60px;
    height: 60px;
  }
}

/* ===== PROJECTS PAGE ENHANCED STYLES ===== */

/* Projects Grid Layout */
/* Projects Section */
.projects-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 1200px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

/* Enhanced Project Cards */
.project-card {
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--emerald), var(--deep-indigo));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.project-card:hover::before {
  transform: scaleX(1);
}

.project-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.project-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.project-info {
  padding: 60px;
}

.project-info h3 {
  color: var(--deep-indigo);
  font-size: 1.4rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.project-author {
  color: var(--emerald);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.project-description {
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* Project Features */
.project-features {
  margin: 20px 0;
  padding: 15px;
  background: rgba(200, 198, 244, 0.1);
  border-radius: 10px;
  border-left: 4px solid var(--light-lavender);
}

.project-features h4 {
  color: var(--deep-indigo);
  font-size: 1rem;
  margin-bottom: 10px;
}

.project-features ul {
  list-style: none;
  padding: 0;
}

.project-features li {
  color: var(--charcoal);
  font-size: 0.85rem;
  margin-bottom: 5px;
  padding-left: 15px;
  position: relative;
}

.project-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--emerald);
  font-weight: bold;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tech-tag {
  background: linear-gradient(135deg, var(--emerald), var(--deep-indigo));
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tech-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 139, 87, 0.3);
}

.project-actions {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(200, 198, 244, 0.3);
}

/* Theme Sections */
.theme-section {
  padding: 60px 0;
  background: linear-gradient(
    135deg,
    rgba(200, 198, 244, 0.05),
    rgba(46, 139, 87, 0.05)
  );
  margin: 40px 0;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.theme-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23C8C6F4" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.section-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: block;
  transition: transform 0.3s ease;
}

.section-icon:hover {
  transform: rotate(5deg) scale(1.1);
}

.section-header h2 {
  color: var(--deep-indigo);
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-header p {
  color: var(--charcoal);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.theme-content {
  position: relative;
  z-index: 1;
}

.theme-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(200, 198, 244, 0.2);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--deep-indigo));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-item:hover::before {
  transform: scaleX(1);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.feature-item h4 {
  color: var(--deep-indigo);
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.feature-item p {
  color: var(--charcoal);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Category Filters */
.category-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 40px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.filter-btn {
  padding: 12px 24px;
  border: 2px solid var(--light-lavender);
  background: white;
  color: var(--deep-indigo);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--emerald);
  color: white;
  border-color: var(--emerald);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(46, 139, 87, 0.3);
}

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

.project-card,
.feature-item {
  animation: fadeInUp 0.6s ease forwards;
}

.project-card:nth-child(2) {
  animation-delay: 0.1s;
}
.project-card:nth-child(3) {
  animation-delay: 0.2s;
}
.project-card:nth-child(4) {
  animation-delay: 0.3s;
}

/* Responsive Design for Projects */
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .theme-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .category-filters {
    flex-direction: column;
    align-items: center;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .project-info {
    padding: 20px;
  }

  .feature-item {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .project-card {
    margin: 0 10px;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .filter-btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }
}

/* Loading States */
.project-card.loading {
  opacity: 0.7;
  pointer-events: none;
}

.project-card.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid var(--light-lavender);
  border-top: 2px solid var(--emerald);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  transform: translate(-50%, -50%);
}

/* ===== MODAL WINDOW STYLES ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  animation: modalFadeIn 0.3s ease;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: linear-gradient(
    135deg,
    var(--white) 0%,
    var(--light-lavender) 100%
  );
  border-radius: 20px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.4s ease;
  position: relative;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem 1rem;
  border-bottom: 2px solid var(--light-lavender);
}

.modal-header h2 {
  color: var(--deep-indigo);
  font-size: 1.8rem;
  margin: 0;
  font-weight: 700;
}

.modal-close {
  font-size: 2rem;
  color: var(--deep-indigo);
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
}

.modal-close:hover {
  background: var(--emerald);
  color: var(--white);
  transform: rotate(90deg);
}

.modal-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.modal-image {
  width: 100%;
  max-width: 600px;
}

.modal-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-text {
  color: var(--deep-indigo);
  line-height: 1.7;
  width: 100%;
  max-width: 800px;
  text-align: left;
}

.modal-text h3 {
  color: var(--deep-indigo);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

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

.modal-text ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.modal-text li {
  margin-bottom: 0.5rem;
}

.modal-footer {
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem 2rem;
  border-top: 2px solid var(--light-lavender);
}

.modal-nav-btn {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--teal) 100%);
  color: var(--white);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 211, 153, 0.3);
}

.modal-nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 211, 153, 0.4);
}

.modal-nav-btn:disabled {
  background: var(--light-gray);
  color: var(--gray);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Modal Animations */
@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes modalSlideOut {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-50px);
    opacity: 0;
  }
}

.modal.closing {
  animation: modalFadeOut 0.3s ease;
}

.modal.closing .modal-content {
  animation: modalSlideOut 0.3s ease;
}

/* Responsive Modal */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 1rem;
  }

  .modal-body {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .modal-image {
    max-width: 100%;
  }

  .modal-text {
    max-width: 100%;
  }

  .modal-header {
    padding: 1.5rem 1.5rem 1rem;
  }

  .modal-header h2 {
    font-size: 1.5rem;
  }

  .modal-footer {
    padding: 1rem 1.5rem 1.5rem;
    flex-direction: column;
    gap: 1rem;
  }

  .modal-nav-btn {
    width: 100%;
  }
}

/* Animation Classes for Filtering */
.fade-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: all 0.3s ease !important;
}

.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Initial state for project cards */
.project-card {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease;
}

/* Hidden state for filtered cards */
.project-card.hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s ease;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.project-card.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid var(--light-lavender);
  border-top: 2px solid var(--emerald);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  transform: translate(-50%, -50%);
}

/* ===== CTA SECTION STYLES ===== */
.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  margin: 4rem 0 0 0;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out;
}

.cta-content h2 {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-width: 200px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-primary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: 2px solid transparent;
}

.cta-buttons .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.cta-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.cta-buttons .btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.cta-buttons .btn-primary::before,
.cta-buttons .btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.cta-buttons .btn-primary:hover::before,
.cta-buttons .btn-secondary:hover::before {
  left: 100%;
}

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

/* Responsive design for CTA section */
@media (max-width: 768px) {
  .cta-section {
    padding: 3rem 0;
  }

  .cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    max-width: 280px;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .cta-content h2 {
    font-size: 1.75rem;
  }

  .cta-content p {
    font-size: 1rem;
  }
}

/* ===== CONFIRMATION MODAL STYLES ===== */
.confirmation-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease-out;
}

.confirmation-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.confirmation-modal-content {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
  animation: slideInUp 0.4s ease-out;
  position: relative;
}

.confirmation-modal-header {
  padding: 2rem 2rem 1rem 2rem;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.confirmation-modal-header h3 {
  margin: 0;
  color: var(--deep-indigo);
  font-size: 1.5rem;
  font-weight: 700;
}

.confirmation-close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  color: #9ca3af;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.confirmation-close-btn:hover {
  background-color: #f3f4f6;
  color: #374151;
}

.confirmation-modal-body {
  padding: 2rem;
  text-align: center;
}

.confirmation-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.confirmation-modal-body p {
  margin: 0 0 1rem 0;
  color: var(--deep-indigo);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
}

.confirmation-subtitle {
  color: #64748b !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  margin-bottom: 0 !important;
}

.confirmation-modal-footer {
  padding: 1rem 2rem 2rem 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.confirmation-btn-cancel,
.confirmation-btn-confirm {
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-width: 140px;
}

.confirmation-btn-cancel {
  background: #f8fafc;
  color: #64748b;
  border-color: #e2e8f0;
}

.confirmation-btn-cancel:hover {
  background: #e2e8f0;
  color: #475569;
  transform: translateY(-1px);
}

.confirmation-btn-confirm {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.confirmation-btn-confirm:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

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

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive design for confirmation modal */
@media (max-width: 768px) {
  .confirmation-modal-content {
    margin: 1rem;
    width: calc(100% - 2rem);
  }

  .confirmation-modal-header,
  .confirmation-modal-body,
  .confirmation-modal-footer {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .confirmation-modal-footer {
    flex-direction: column;
  }

  .confirmation-btn-cancel,
  .confirmation-btn-confirm {
    width: 100%;
  }
}
