* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #f8f6f3 0%, #e5ded7 100%);
  min-height: 100vh;
}
header {
  background: linear-gradient(135deg, #b88c61 0%, #ccb9a3 100%);
  padding: 1rem 0;
  min-height: 80px;
  position: relative;
  box-shadow: 0 4px 20px rgba(184, 140, 97, 0.15);
  backdrop-filter: blur(10px);
  overflow: hidden;
}
header::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
  height: 100%;
  min-height: 70px;
}
.logo-container {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 20;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 12px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
.logo-container:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}
.logo {
  height: 45px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.nav-container {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 15;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.main-nav {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}
.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  border: 1px solid transparent;
  white-space: nowrap;
}
.main-nav a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.main-nav a:hover::before {
  opacity: 1;
}
.main-nav a:hover {
  color: #e5ded7;
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
footer {
  background: linear-gradient(135deg, #b88c61 0%, #ccb9a3 100%);
  color: #fff;
  padding: 3rem 0 1.5rem;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}
footer::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="hexagon" width="20" height="20" patternUnits="userSpaceOnUse"><polygon points="10,1 18,6 18,14 10,19 2,14 2,6" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagon)"/></svg>');
  opacity: 0.4;
  z-index: 1;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
}
.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #e5ded7;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-section h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #e5ded7, transparent);
}
.footer-section p,
.footer-section a {
  color: #fff;
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.footer-section a:hover {
  color: #e5ded7;
  transform: translateX(5px);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  text-align: center;
  color: #e5ded7;
  font-size: 0.9rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 400px;
  margin: 0 auto;
  background: rgba(184, 140, 97, 0.95);
  color: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1000;
  display: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.cookie-consent.show {
  display: block;
  animation: slideUp 0.5s ease;
}
@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.cookie-consent p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
}
.cookie-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.cookie-btn {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.cookie-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}
.cookie-btn.accept {
  background: rgba(229, 222, 215, 0.9);
  color: #b88c61;
  text-shadow: none;
}
.cookie-btn.accept:hover {
  background: #e5ded7;
}
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  .nav-container {
    width: 100%;
    justify-content: center;
  }
  .main-nav {
    gap: 1rem;
    justify-content: center;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .cookie-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
}
@media (max-width: 480px) {
  .main-nav {
    flex-direction: column;
    gap: 0.5rem;
  }
  .main-nav a {
    padding: 0.8rem 1.5rem;
    text-align: center;
    width: 100%;
  }
  .nav-container {
    padding: 1rem;
  }
}
.learning-pathway-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.pathway-hero-section {
  background: linear-gradient(135deg, #b88c61 0%, #ccb9a3 100%);
  padding: 80px 0;
  text-align: center;
  margin-bottom: 40px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}
.pathway-hero-section::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: subtle-pulse 6s ease-in-out infinite;
}
@keyframes subtle-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.1;
  }
}
.pathway-hero-title {
  font-size: 2.8rem;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}
.pathway-hero-subtitle {
  font-size: 1.3rem;
  color: #f8f8f8;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}
.pathway-hero-cta {
  background: #ffffff;
  color: #b88c61;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.pathway-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: #b88c61;
}
.skill-progression-section {
  margin: 60px 0;
  padding: 50px 0;
  background: #f9f7f5;
  border-radius: 20px;
  position: relative;
}
.skill-progression-title {
  font-size: 2.4rem;
  color: #b88c61;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
}
.skill-tree-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0 30px;
}
.skill-level-card {
  flex: 1;
  min-width: 300px;
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(184, 140, 97, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.skill-level-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #b88c61 0%, #ccb9a3 100%);
}
.skill-level-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(184, 140, 97, 0.2);
}
.skill-level-number {
  width: 60px;
  height: 60px;
  background: #b88c61;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.skill-level-title {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}
.skill-level-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}
.skill-objectives-list {
  list-style: none;
  padding: 0;
}
.skill-objectives-list li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
  color: #555;
}
.skill-objectives-list li::before {
  content: "";
  position: absolute;
  left: 0;
  color: #b88c61;
  font-weight: bold;
}
.curriculum-breakdown-section {
  margin: 60px 0;
  padding: 50px 0;
  background: linear-gradient(135deg, #e5ded7 0%, #f8f6f3 100%);
  border-radius: 20px;
}
.curriculum-title {
  font-size: 2.4rem;
  color: #b88c61;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
}
.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  padding: 0 30px;
}
.curriculum-module {
  background: #ffffff;
  border-radius: 15px;
  padding: 35px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}
.curriculum-module:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.module-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.module-icon {
  width: 50px;
  height: 50px;
  background: #b88c61;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 1.5rem;
  color: white;
}
.module-title {
  font-size: 1.3rem;
  color: #333;
  font-weight: 600;
  margin: 0;
}
.module-duration {
  color: #888;
  font-size: 0.9rem;
  margin-top: 5px;
}
.module-content {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}
.module-outcomes {
  background: #f8f6f3;
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid #b88c61;
}
.module-outcomes h4 {
  color: #b88c61;
  margin: 0 0 10px 0;
  font-size: 1rem;
}
.module-outcomes ul {
  margin: 0;
  padding-left: 20px;
  color: #555;
}
.assessment-tracking-section {
  margin: 60px 0;
  padding: 50px 0;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.assessment-title {
  font-size: 2.4rem;
  color: #b88c61;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
}
.assessment-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 0 30px;
}
.assessment-info {
  padding: 20px;
}
.assessment-methods {
  margin-bottom: 30px;
}
.assessment-methods h3 {
  color: #b88c61;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.method-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 15px;
  background: #f9f7f5;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.method-item:hover {
  background: #e5ded7;
  transform: translateX(5px);
}
.method-icon {
  width: 40px;
  height: 40px;
  background: #b88c61;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: white;
  font-weight: bold;
}
.method-details h4 {
  color: #333;
  margin: 0 0 5px 0;
  font-size: 1.1rem;
}
.method-details p {
  color: #666;
  margin: 0;
  font-size: 0.9rem;
}
.assessment-visual {
  background: url("./uploads/art10.jpg") center/cover;
  height: 400px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}
.assessment-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(184, 140, 97, 0.8),
    rgba(204, 185, 163, 0.6)
  );
}
.visual-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
}
.visual-content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.visual-content p {
  font-size: 1.1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.instructor-profiles {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.instructor-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 250px;
  transition: all 0.3s ease;
}
.instructor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.instructor-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 15px;
  background-size: cover;
  background-position: center;
  border: 3px solid #b88c61;
}
.instructor-image.instructor-1 {
  background-image: url("./uploads/art12.jpg");
}
.instructor-image.instructor-2 {
  background-image: url("./uploads/art13.jpg");
}
.instructor-image.instructor-3 {
  background-image: url("./uploads/art14.jpg");
}
.instructor-name {
  font-size: 1.1rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 8px;
}
.instructor-title {
  color: #b88c61;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.instructor-bio {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .learning-pathway-container {
    padding: 0 15px;
  }
  .pathway-hero-title {
    font-size: 2.2rem;
  }
  .pathway-hero-subtitle {
    font-size: 1.1rem;
  }
  .skill-tree-container {
    flex-direction: column;
    padding: 0 15px;
  }
  .skill-level-card {
    min-width: auto;
    margin-bottom: 20px;
  }
  .curriculum-grid {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }
  .assessment-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 15px;
  }
  .instructor-profiles {
    flex-direction: column;
    align-items: center;
  }
  .assessment-visual {
    height: 300px;
  }
}
@media (max-width: 480px) {
  .pathway-hero-section {
    padding: 60px 20px;
  }
  .pathway-hero-title {
    font-size: 1.8rem;
  }
  .skill-progression-section,
  .curriculum-breakdown-section,
  .assessment-tracking-section {
    padding: 30px 0;
    margin: 40px 0;
  }
  .skill-level-card,
  .curriculum-module {
    padding: 25px;
  }
  .curriculum-title,
  .skill-progression-title,
  .assessment-title {
    font-size: 2rem;
  }
}
