/* ================ GLOBAL STYLES ================ */
:root {
  --primary: #6C63FF;
  --secondary: #4D44DB;
  --accent: #FF6584;
  --dark: #2D3748;
  --light: #F7FAFC;
  --gradient: linear-gradient(135deg, #6C63FF 0%, #FF6584 100%);
  --rainbow-gradient: linear-gradient(90deg, 
    #A24AC0 0%,     /* Purple */
    #D66BBF 33%,    /* Magenta */
    #3FC7BC 66%,    /* Turquoise */
    #F4B841 100%    /* Yellow */
  );
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #fff;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
  position: relative;
}

h1, h2, h3, h4 {
  margin-bottom: 1rem;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.section-subtitle {
  color: #718096;
  margin-bottom: 2rem;
  text-align: center;
}

/* ================ BUTTONS ================ */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.btn.primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(108, 99, 255, 0.4);
}

.btn.secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn.secondary:hover {
  background: var(--primary);
  color: white;
}

.btn.small {
  padding: 8px 16px;
  font-size: 0.9rem;
}

/* ================ HEADER ================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 15px 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
}

.logo img {
  height: 80px;
  margin-right: 10px;
}

nav ul {
  display: flex;
  align-items: center;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  font-weight: 600;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: var(--primary);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ================ HERO SECTION ================ */
/* ================ HERO SECTION (Original Size) ================ */
.hero {
  background: var(--rainbow-gradient);
  background-size: 300% 300%;
  animation: gradientWave 12s ease infinite;
  padding: 120px 0 80px; /* Original padding values */
  margin-top: 80px; /* Accounts for fixed header */
  color: white;
  position: relative;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Original layout */
}

.hero-content {
  flex: 1;
  padding-right: 50px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--light); /* Original light text */
  text-shadow: none; /* Remove if not needed */
}

.hero-content p {
  font-size: 1.2rem;
  color: #111111; /* Original gray text */
  margin-bottom: 2rem;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  
}





/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero {
    padding: 100px 0 60px;
  }
  .hero .container {
    flex-direction: column;
  }
  .hero-content {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }
  .hero-image img {
    max-width: 90%;
  }
}
/* ================ COURSES SECTION - COMPLETE ================ */
.courses {
  background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Section Header Styling */
.section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-subtitle {
  color: #718096;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.vr-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 25px 0;
}

.vr-line {
  height: 2px;
  width: 80px;
  background: var(--gradient);
  opacity: 0.5;
}

.vr-decoration i {
  color: var(--primary);
  font-size: 1.5rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Course Grid Layout */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

/* Individual Course Cards */
.course-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 4px 20px rgba(108, 99, 255, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--course-color);
  transition: all 0.3s ease;
  z-index: -1;
}

.course-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    135deg,
    rgba(108, 99, 255, 0.03) 0%,
    rgba(255, 101, 132, 0.03) 100%
  );
  z-index: -1;
  border-radius: 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 15px 40px rgba(108, 99, 255, 0.15),
    inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.course-card:hover::before {
  width: 6px;
}

.course-card:hover::after {
  opacity: 1;
}

/* Course Icon Styling */
.course-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(
    135deg, 
    var(--course-color) 0%, 
    var(--secondary) 100%
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 
    0 8px 20px rgba(108, 99, 255, 0.2),
    inset 0 4px 4px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.course-card:hover .course-icon {
  transform: rotate(10deg) scale(1.1);
  box-shadow: 
    0 12px 25px rgba(108, 99, 255, 0.3),
    inset 0 4px 4px rgba(255, 255, 255, 0.2);
}

/* Course Content Styling */
.course-card h3 {
  margin-bottom: 15px;
  color: var(--dark);
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
}

.course-card h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--course-color);
  transition: all 0.3s ease;
  border-radius: 3px;
}

.course-card:hover h3::after {
  width: 60px;
  background: var(--accent);
}

.course-card p {
  color: #4A5568;
  margin-bottom: 25px;
  font-size: 1rem;
  line-height: 1.6;
}

/* Button Styling */
.course-card .btn.small {
  margin-top: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108, 99, 255, 0.1);
  color: var(--primary);
  border: none;
  transition: all 0.3s ease;
  padding: 10px 20px;
  font-weight: 600;
}

.course-card .btn.small i {
  transition: transform 0.3s ease;
}

.course-card:hover .btn.small {
  background: var(--course-color);
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.course-card:hover .btn.small i {
  transform: translateX(3px);
}



/* ===== PERFECT COMING SOON RIBBON ===== */
.course-card.coming-soon {
  position: relative;
  overflow: hidden; /* Ensures ribbon doesn't extend beyond card */
}

.course-card.coming-soon::before {
  content: 'COMING SOON';
  position: absolute;
  top: 85px;
  Left: -10px;
  background: #FFD700; /* Yellow color */
  color: #333;
  padding: 3px 0;
  font-size: 0.7rem;
  font-weight: bold;
  text-transform: uppercase;
  transform: rotate(-45deg);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  z-index: 1;
  width: 160px;
  height: 20px;
  text-align: center;
  /* Perfect positioning */
  transform-origin: left center;
}

/* Content adjustments */
.course-card.coming-soon h3 {
  padding-right: 40px; /* Space for ribbon */
  position: relative;
  z-index: 2;
}
.course-card.coming-soon:hover .btn.small {
  background: var(--course-color);
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .course-card.coming-soon::before {
    top: 12px;
    right: -28px;
    font-size: 0.65rem;
    width: 110px;
  }
}




/* Responsive Adjustments */
@media (max-width: 1200px) {
  .course-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .courses {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .course-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .course-card {
    padding: 25px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: white;
  }
  
  .vr-decoration {
    margin: 20px 0;
  }
  
 
}



@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    padding: 0 15px;
  }
  
  .course-icon {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
  }
  
  .course-card h3 {
    font-size: 1.3rem;
  }
  
  .course-card p {
    font-size: 0.95rem;
  }
}

/* ================ ABOUT SECTION ================ */
.about {
  background-color: #F9FAFB;
}

.about .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-image {
  flex: 1;
}

.about-image img {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(108, 99, 255, 0.2);
}

.about-content {
  flex: 1;
}

.features-list {
  margin-top: 30px;
}

.features-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.features-list i {
  color: var(--primary);
  margin-right: 10px;
  font-size: 1.2rem;
}

/* ================ DEMO SECTION ================ */

.demo {
  background: var(--gradient); /* Using your original gradient */
  color: white;
  padding: 60px 0; /* Reduced height */
  position: relative;
}

.demo .container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1100px; /* Slightly narrower container */
}

.demo-content {
  flex: 1;
  padding-right: 30px;
}

.demo-subtitle {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* Form Styles */
.styled-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row .form-group {
  flex: 1;
}

.form-group {
  position: relative;
  margin-bottom: 10px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 15px 12px 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.form-group select option {
  color: black; 
  background: white; 
}
.form-group input::placeholder {
  color: transparent;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: white;
  background: rgba(255,255,255,0.15);
}

.form-group label {
  position: absolute;
  left: 40px;
  top: 12px;
  color: rgba(255,255,255,0.8);
  transition: all 0.2s ease;
  pointer-events: none;
  font-size: 0.9rem;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
  transform: translateY(-18px);
  font-size: 0.75rem;
  background: var(--secondary);
  padding: 0 5px;
  left: 35px;
  border-radius: 4px;
}

.form-group i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.select-wrapper {
  position: relative;
}

.select-wrapper i {
  pointer-events: none;
  right: 15px;
  left: auto;
}

/* Button Styles */
.demo .btn.primary {
  background: white;
  color: var(--primary);
  padding: 12px 20px;
  margin-top: 5px;
  border: none;
  font-weight: 600;
}

.demo .btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.demo .btn.primary i {
  margin-right: 8px;
}

/* Image Styles */
.demo-image {
  flex: 1;
  text-align: center;
}


.demo-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(108, 99, 255, 0.3); /* Brand-colored shadow */
  border: 3px solid rgba(255,255,255,0.2); /* Subtle border */
  transform: perspective(800px) rotateY(-8deg); /* 3D tilt effect */
  transition: transform 0.4s ease;
}

.demo-image:hover {
  transform: perspective(800px) rotateY(-3deg);
}

.demo-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3/2; /* Match your image's ratio */
}
/* Responsive Styles */
@media (max-width: 992px) {
  .demo .container {
    flex-direction: column;
  }
  
  .demo-content {
    padding-right: 0;
    margin-bottom: 30px;
  }
  
  .demo-image img {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 10px;
  }
  
  .demo {
    padding: 50px 0;
  }
}

@media (max-width: 480px) {
  .form-group input,
  .form-group select {
    padding: 10px 12px 10px 35px;
  }
  
  .form-group i {
    left: 12px;
    font-size: 0.8rem;
  }
  
  .form-group label {
    left: 35px;
    font-size: 0.8rem;
  }
}
/* ================ CONTACT SECTION ================ */
.contact-container {
  display: flex;
  gap: 50px;
  margin-top: 40px;
}

.contact-info {
  flex: 1;
  background: #F9FAFB;
  padding: 40px;
  border-radius: 10px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.contact-item i {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 15px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.contact-form {
  flex: 1;
}

.contact-form form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}



/* Collaboration Section */
.collaboration-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
}

.collaboration-section .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.collaboration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.collaboration-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 5px 30px rgba(108, 99, 255, 0.08);
  border-top: 4px solid var(--card-color);
}

.cta-box {
  background: var(--gradient);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  color: white;
  margin-top: 50px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .collaboration-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-box {
    padding: 30px 20px;
  }
}

/* ================ FOOTER ================ */
footer {
  background: #384458;
  color: white;
  padding: 60px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo img {
  height: 80px;
  margin-right: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ================ ANIMATIONS ================ */
@keyframes gradientWave {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* ================ RESPONSIVE STYLES ================ */
@media (max-width: 992px) {
  .hero .container,
  .about .container,
  .demo .container {
    flex-direction: column;
  }
  
  .hero-content,
  .about-content,
  .demo-content {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .contact-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }
  
  nav ul.show {
    display: flex;
  }
  
  nav ul li {
    margin: 10px 0;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero {
    padding: 150px 0 80px;
    margin-top: 60px;
  }
  
  .demo-form {
    grid-template-columns: 1fr;
  }
  
  .demo-form button {
    grid-column: span 1;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    margin-top: 15px;
  }
}




/* ================ COURSE PAGE STYLES ================ */

/* Course Hero Section */
.course-hero {
    background: linear-gradient(135deg, var(--course-color) 0%, var(--secondary) 100%);
    padding: 120px 0 80px;
    margin-top: 80px;
    color: white;
    position: relative;
}

.course-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.course-hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.course-hero .hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.course-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.course-badge i {
    font-size: 1.2rem;
}

/* Course Highlights */
.course-highlights {
    padding: 60px 0;
    background-color: #F9FAFB;
}

.highlight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.highlight-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(108, 99, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(108, 99, 255, 0.1);
}

.highlight-card i {
    font-size: 2.5rem;
    color: #6C63FF;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--course-color) 0%, var(--secondary) 100%);
}

.highlight-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.highlight-card p {
    color: #4A5568;
    font-size: 1rem;
}

/* Course Details Section */
.course-details {
    padding: 80px 0;
    background-color: white;
}

.details-container {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.details-content {
    flex: 2;
}

.details-sidebar {
    flex: 1;
}

.sidebar-card {
    background: #F9FAFB;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(108, 99, 255, 0.05);
}

.sidebar-card h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--dark);
    position: relative;
    padding-bottom: 10px;
}

.sidebar-card h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--course-color);
    border-radius: 3px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(108, 99, 255, 0.1);
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--course-color);
    width: 40px;
    height: 40px;
    background: rgba(244, 184, 65, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item div span {
    display: block;
    font-size: 0.8rem;
    color: #718096;
    margin-bottom: 3px;
}

.info-item div p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.full-width {
    width: 100%;
    display: block;
    text-align: center;
}

.audience-list {
    list-style: none;
}

.audience-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.audience-list i {
    color: var(--course-color);
}

/* Modules */
.modules-container {
    margin-top: 30px;
}

.module {
    border: 1px solid rgba(108, 99, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.module:hover {
    border-color: rgba(108, 99, 255, 0.3);
}

.module-header {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    background-color: #F9FAFB;
}

.module.active .module-header {
    background-color: rgba(244, 184, 65, 0.05);
}

.module-number {
    width: 40px;
    height: 40px;
    background: var(--course-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.module-header h4 {
    flex: 1;
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark);
}

.module-header i {
    color: var(--course-color);
    transition: transform 0.3s ease;
}

.module.active .module-header i {
    transform: rotate(180deg);
}

.module-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.module.active .module-content {
    padding: 0 20px 20px;
    max-height: 500px;
}

.module-content p {
    margin-bottom: 15px;
    color: #4A5568;
}

.module-content ul {
    list-style: none;
    margin-top: 15px;
}

.module-content ul li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4A5568;
    font-size: 0.9rem;
}

.module-content ul li::before {
    content: '•';
    color: var(--course-color);
    font-size: 1.2rem;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: #F9FAFB;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(108, 99, 255, 0.05);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-content {
    margin-bottom: 25px;
}

.rating {
    color: var(--course-color);
    margin-bottom: 15px;
}

.rating i {
    margin-right: 3px;
}

.testimonial-content p {
    font-style: italic;
    color: #4A5568;
    position: relative;
    padding-left: 20px;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: rgba(108, 99, 255, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h5 {
    margin: 0;
    font-size: 1rem;
    color: var(--dark);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: #718096;
}

/* Demo Form Section */
.demo-form-section {
    padding: 80px 0;
    background: var(--primary);
    color: white;
}

.demo-form-section .form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.demo-form-section .form-header {
    text-align: center;
    margin-bottom: 40px;
}

.demo-form-section .form-header h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 15px;
}

.demo-form-section .form-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .course-hero .container {
        flex-direction: column;
    }
    
    .course-hero .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .details-container {
        flex-direction: column;
    }
    
    .details-sidebar {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .course-hero {
        padding: 100px 0 60px;
    }
    
    .course-hero .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .highlight-cards {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-form-section .form-container {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .course-hero .hero-buttons {
        flex-direction: column;
    }
    
    .course-hero .btn {
        width: 100%;
    }
    
    .demo-form-section .form-container {
        padding: 20px;
    }
    
    .demo-form-section .form-header h2 {
        font-size: 1.8rem;
    }
}



/* ================ CONTACT PAGE STYLES ================ */

/* Contact Hero Section */
.contact-hero {
  background: var(--rainbow-gradient);
  background-size: 300% 300%;
  animation: gradientWave 12s ease infinite;
  padding: 120px 0 80px;
  margin-top: 80px;
  color: white;
  position: relative;
}

.contact-hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-hero .hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: white;
}

.contact-hero .hero-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.contact-hero .hero-buttons {
  display: flex;
  gap: 15px;
}

/* Contact Info Section */
.contact-info-section {
  padding: 80px 0;
  background-color: #F9FAFB;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.contact-method {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 30px rgba(108, 99, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(108, 99, 255, 0.15);
}

.method-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--method-color) 0%, var(--secondary) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 8px 20px rgba(108, 99, 255, 0.2);
}

.contact-method h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.contact-method p {
  color: #4A5568;
  margin-bottom: 25px;
  font-size: 1rem;
}

.contact-method .btn.small {
  background: rgba(108, 99, 255, 0.1);
  color: var(--primary);
  border: none;
  transition: all 0.3s ease;
  padding: 10px 20px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-method .btn.small:hover {
  background: var(--primary);
  color: white;
}

/* Contact Form Section - Matching Demo Section Style */
.contact-form-section {
  padding: 80px 0;
  background: var(--gradient);
  color: white;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  font-size: 2.2rem;
  color: white;
  margin-bottom: 15px;
}

.form-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.styled-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row .form-group {
  flex: 1;
}

.form-group {
  position: relative;
  margin-bottom: 10px;
}

.styled-form .form-group input,
.styled-form .form-group select,
.styled-form .form-group textarea {
  width: 100%;
  padding: 12px 15px 12px 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.styled-form .form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.styled-form .form-group input::placeholder,
.styled-form .form-group textarea::placeholder {
  color: transparent;
}

.styled-form .form-group label {
  position: absolute;
  left: 40px;
  top: 12px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.2s ease;
  pointer-events: none;
  font-size: 0.9rem;
}

.styled-form .form-group i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.styled-form .form-group input:focus,
.styled-form .form-group select:focus,
.styled-form .form-group textarea:focus {
  outline: none;
  border-color: white;
  background: rgba(255, 255, 255, 0.15);
}

.styled-form .form-group input:focus + label,
.styled-form .form-group input:not(:placeholder-shown) + label,
.styled-form .form-group textarea:focus + label,
.styled-form .form-group textarea:not(:placeholder-shown) + label {
  transform: translateY(-18px);
  font-size: 0.75rem;
  background: var(--secondary);
  padding: 0 5px;
  left: 35px;
  border-radius: 4px;
}

.select-wrapper {
  position: relative;
}

.select-wrapper i {
  pointer-events: none;
  right: 15px;
  left: auto;
}

.styled-form .btn.primary {
  background: white;
  color: var(--primary);
  padding: 12px 20px;
  margin-top: 5px;
  border: none;
  font-weight: 600;
  width: 100%;
}

.styled-form .btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Section Enhancements */
.faq-section {
    padding: 80px 0;
    background-color: #F9FAFB;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background-color: rgba(108, 99, 255, 0.03);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: var(--course-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-item.active .faq-question {
    background-color: rgba(108, 99, 255, 0.05);
}

.faq-answer p {
    color: #4A5568;
    line-height: 1.6;
    padding-top: 10px;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 15px;
    }
}