:root {
  --primary-color: #c5109a;
  --bg-color: #ffffff;
  --text-color: #333333;
  --transition-speed: 0.3s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

 

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

#main-header {
  background-color: var(--bg-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition-speed) ease;
}

#main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: height var(--transition-speed) ease;
}

.logo img {
  height: 50px;
  transition: height var(--transition-speed) ease;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color:#8e13a6;
  font-weight: 600;
  transition: all var(--transition-speed) ease;
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--primary-color), #ff00ff);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-speed) ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--bg-color);
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1;
  border-radius: 4px;
  overflow: hidden;
  top: 100%;
  left: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: all var(--transition-speed) ease;
}

.dropdown-content a {
  color: var(--text-color);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.mobile-toggle {
  display: none;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 5px 0;
  transition: all var(--transition-speed) ease;
}

@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--bg-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 0;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 15px;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    display: none;
  }

  .dropdown:hover .dropdown-content {
    display: none;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }

  .mobile-toggle {
    display: block;
  }
}

/* Header shrink effect */
.header-shrink {
  transform: translateY(-10px);
}

.header-shrink .container {
  height: 60px;
}

.header-shrink .logo img {
  height: 40px;
}

.ml-banner-container {
  --primary-light: #8c54d0;
  --secondary-light: #e87ed3;
  --accent-light: #54c6eb;
  --text-dark: #2a2a2a;
  --text-light: #ffffff;

  font-family: "Raleway", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.ml-banner-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(
    -45deg,
    var(--primary-light),
    var(--secondary-light),
    var(--accent-light)
  );
  background-size: 400% 400%;
  animation: ml-gradient-shift 15s ease infinite;
}

.ml-banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--text-light);
  z-index: 2;
  width: 80%;
}

.ml-banner-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  opacity: 0;
  animation: ml-fade-in-up 1s ease forwards;
}

.ml-banner-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0;
  animation: ml-fade-in-up 1s ease 0.3s forwards;
}

.ml-banner-features {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  opacity: 0;
  animation: ml-fade-in-up 1s ease 0.6s forwards;
}

.ml-banner-feature {
  margin: 0 1rem;
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease;
}

.ml-banner-feature:hover {
  transform: translateY(-5px);
}

.ml-banner-feature-icon {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.ml-banner-cta {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--text-light);
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  opacity: 0;
  animation: ml-fade-in-up 1s ease 0.9s forwards, ml-pulse 2s infinite;
}

.ml-banner-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.ml-banner-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.ml-banner-shape {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  animation: ml-float 20s infinite;
}

.ml-banner-testimonial {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 1rem;
  border-radius: 10px;
  max-width: 80%;
  opacity: 0;
  animation: ml-fade-in-up 1s ease 1.2s forwards;
}

.ml-banner-testimonial-text {
  font-style: italic;
  margin-bottom: 0.5rem;
}

.ml-banner-testimonial-author {
  font-weight: 600;
  text-align: right;
}

@keyframes ml-gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes ml-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ml-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes ml-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@media (max-width: 768px) {
  .ml-banner-title {
    font-size: 2.5rem;
  }
  .ml-banner-subtitle {
    font-size: 1rem;
  }
  .ml-banner-features {
    flex-direction: column;
  }
  .ml-banner-feature {
    margin: 0.5rem 0;
  }
}

.ml-overview-section {
  background: linear-gradient(135deg, #f0f4ff 0%, #e6e9ff 100%);
  padding: 4rem 2rem;
  font-family: "Arial", sans-serif;
  overflow: hidden;
}

.ml-overview-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ml-overview-title {
  font-size: 2.5rem;
  color: #5014ad;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.ml-overview-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #c5109a;
  margin: 1rem auto 0;
  border-radius: 2px;
}

.ml-overview-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}

.ml-overview-text {
  flex: 1;
}

.ml-overview-intro {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 2rem;
}

.ml-overview-list {
  list-style-type: none;
  padding: 0;
}

.ml-overview-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #444;
  transition: transform 0.3s ease;
}

.ml-overview-item:hover {
  transform: translateX(10px);
}

.ml-overview-icon {
  width: 24px;
  height: 24px;
  margin-right: 1rem;
}

.ml-overview-cta {
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: #fff;
  background-color: #5014ad;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ml-overview-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: all 0.6s;
}

.ml-overview-cta:hover::before {
  left: 100%;
}

.ml-overview-cta:hover {
  background-color: #3b0f80;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ml-overview-svg {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.ml-overview-svg-group {
  animation: float 6s ease-in-out infinite;
}

.ml-overview-svg-path {
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  animation: drawPath 3s ease forwards;
}

.ml-overview-svg-node {
  opacity: 0;
  animation: fadeIn 0.5s ease forwards 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes drawPath {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .ml-overview-content {
    flex-direction: column-reverse;
  }

  .ml-overview-image {
    margin-bottom: 2rem;
  }
}
.ml-overview-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

#ml-lottie-animation {
  width: 100%;
  max-width: 400px;
  height: auto;
}
/* Objectives */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap");

.ml-objectives-section {
  background: linear-gradient(135deg, #f0f4ff 0%, #e6e9ff 100%);
  padding: 6rem 2rem;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

.ml-objectives-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ml-objectives-title {
  font-size: 2.5rem;
  color: #5014ad;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.ml-objectives-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #c5109a, transparent);
}

.ml-objectives-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.ml-objective-item {
  flex-basis: calc(33.333% - 2rem);
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ml-objective-item::before {
  content: attr(data-icon);
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  opacity: 0.2;
  transition: all 0.3s ease;
}

.ml-objective-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 48px rgba(31, 38, 135, 0.2);
}

.ml-objective-item:hover::before {
  opacity: 1;
  transform: scale(1.2);
}

.ml-objective-item h3 {
  font-size: 1.2rem;
  color: #5014ad;
  margin-bottom: 0.5rem;
}

.ml-objective-item p {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.6;
}

.ml-objectives-cta {
  text-align: center;
  margin-top: 4rem;
}

.ml-cta-button {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(45deg, #5014ad, #c5109a);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(80, 20, 173, 0.2);
}

.ml-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(80, 20, 173, 0.3);
}

.ml-background-shapes .shape {
  position: absolute;
  background: linear-gradient(
    45deg,
    rgba(80, 20, 173, 0.1),
    rgba(197, 16, 154, 0.1)
  );
  border-radius: 50%;
}

.shape1 {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
}

.shape2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  right: -100px;
}

.shape3 {
  width: 150px;
  height: 150px;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
}

@media (max-width: 1024px) {
  .ml-objective-item {
    flex-basis: calc(50% - 2rem);
  }
}

@media (max-width: 768px) {
  .ml-objective-item {
    flex-basis: 100%;
  }
}
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap");

:root {
  --primary-color: #5014ad;
  --secondary-color: #c5109a;
  --background-color: #f8f9fa;
  --text-color: #333;
  --light-text: #fff;
}
 

.course-preview-enrollment {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.background-animation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  opacity: 0.1;
  z-index: -2;
  animation: gradientAnimation 10s ease infinite;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.particles::before,
.particles::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.particles::before {
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  animation: particleAnimation 15s infinite linear;
}

.particles::after {
  width: 15px;
  height: 15px;
  background: var(--secondary-color);
  animation: particleAnimation 20s infinite linear reverse;
}

@keyframes particleAnimation {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(100%, 100%);
  }
  50% {
    transform: translate(100%, 0);
  }
  75% {
    transform: translate(0, 100%);
  }
  100% {
    transform: translate(0, 0);
  }
}

.main-heading {
  text-align: center;
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.video-preview {
  flex: 0 0 60%;
  position: relative;
  overflow: hidden;
}
.video-player {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.video-player:hover {
  transform: scale(1.02);
}

.video-player::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-player:hover::before {
  opacity: 1;
  animation: borderAnimation 2s linear infinite;
}

@keyframes borderAnimation {
  0% {
    clip-path: inset(0 100% 100% 0);
  }
  25% {
    clip-path: inset(0 0 100% 0);
  }
  50% {
    clip-path: inset(0 0 0 100%);
  }
  75% {
    clip-path: inset(100% 0 0 0);
  }
  100% {
    clip-path: inset(0 100% 100% 0);
  }
}
#course-video {
  width: 100%;
  display: block;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-player:hover .video-overlay {
  opacity: 1;
}

.control-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--light-text);
  font-size: 3rem;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.control-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.control-btn i {
  margin-left: 5px;
}
.video-playing .video-overlay {
  opacity: 0;
}
.video-playing:hover .video-overlay {
  opacity: 1;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.enrollment-section {
  flex: 0 0 35%;
}

.pricing {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.original-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.discounted-price {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--secondary-color);
}

.discount-badge {
  background: var(--secondary-color);
  color: var(--light-text);
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
  margin-left: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.course-features {
  display: flex;
  justify-content: space-around;
  margin-top: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.feature span {
  font-size: 0.9rem;
  text-align: center;
}

[data-tooltip] {
  position: relative;
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

[data-tooltip]:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}
.add-to-cart-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--light-text);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.add-to-cart-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    var(--secondary-color),
    var(--primary-color)
  );
  transition: left 0.3s ease;
  z-index: -1;
}
.add-to-cart-btn:hover::before {
  left: 0;
}

.add-to-cart-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(80, 20, 173, 0.4);
}


.course-details {
  background-color: rgba(241, 243, 245, 0.7);
  border-radius: 8px;
  padding: 1.5rem;
}

.detail-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.detail-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.detail-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-right: 0.8rem;
  width: 20px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.detail-item:hover i {
  transform: rotate(360deg);
  color: var(--secondary-color);
}

.interactive-footer {
  margin-top: 2rem;
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: var(--light-text);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  margin: 0 5px;
  text-decoration: none;
}

.social-icon.animate {
  animation: bounceIn 0.6s forwards;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
  60% {
    opacity: 1;
    transform: translateY(-5px) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.social-icon:hover {
  background: var(--secondary-color);
  transform: translateY(-3px) rotate(360deg);
}

@media (max-width: 992px) {
  .content-wrapper {
    flex-direction: column;
  }

  .video-preview,
  .enrollment-section {
    flex: 0 0 100%;
  }
}

@media (max-width: 576px) {
  .course-preview-enrollment {
    padding: 1.5rem;
  }

  .main-heading {
    font-size: 2rem;
  }

  .discounted-price {
    font-size: 1.5rem;
  }

  .social-icons {
    flex-wrap: wrap;
  }
}
.limited-offer {
    text-align: center;
    margin-top: 1rem;
  }
  
  .offer-text {
    font-weight: 600;
    color: var(--secondary-color);
    animation: blink 1s infinite;
  }
  
  @keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
  }
  
  .countdown {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 0.5rem;
  }
 /* Key Topics */


 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

 body {
     font-family: 'Poppins', sans-serif;
     background-color: #f0f4f8;
     margin: 0;  
     padding: 0;  
     width: 100%; 
     overflow-x: hidden;
 }
 @media (max-width: 768px) {  
  body {
    margin: 0;  
    padding: 0;  
    width: 100%; 
    overflow-x: hidden;  
  }
}
 .dl-key-topics {
     background-color: #ffffff;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     margin: 2rem auto;
     max-width: 1200px;
     overflow: hidden;
 }

 .dl-topics-heading {
     text-align: center;
     color: #2c3e50;
     font-size: 2.5rem;
     margin: 2rem 0;
     position: relative;
     padding-bottom: 10px;
 }

 .dl-topics-heading::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 100px;
     height: 4px;
     background: linear-gradient(90deg, #5014ad, #c5109a);
     border-radius: 2px;
 }

 .dl-tabs {
     display: flex;
 }

 .dl-tab-buttons {
     width: 25%;
     background-color: #e6e9f0;
     padding: 20px 0;
 }

 .dl-tab-button {
     display: block;
     width: 100%;
     padding: 15px 20px;
     border: none;
     background-color: transparent;
     cursor: pointer;
     font-family: 'Poppins', sans-serif;
     font-weight: 600;
     color: #2c3e50;
     text-align: left;
     transition: all 0.3s ease;
 }

 .dl-tab-button:hover,
 .dl-tab-button.active {
     background-color: #ffffff;
     color: #5014ad;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
 }

 .dl-tab-content {
     display: none;
     width: 75%;
     padding: 40px;
 }

 .dl-tab-content.active {
     display: flex;
     flex-direction: column;
 }

 .dl-content-header {
     display: flex;
     align-items: center;
     margin-bottom: 30px;
 }

 .dl-content-icon {
     font-size: 3rem;
     margin-right: 20px;
 }

 .dl-content-title {
     font-size: 2rem;
     color: #2c3e50;
     margin: 0;
 }

 .dl-content-description {
     color: #34495e;
     line-height: 1.6;
     margin-bottom: 30px;
 }

 .dl-content-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 20px;
 }

 .dl-grid-item {
     background-color: #f8f9fa;
     border-radius: 10px;
     padding: 20px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
     transition: all 0.3s ease;
 }

 .dl-grid-item:hover {
     transform: translateY(-5px);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .dl-grid-item h3 {
     color: #5014ad;
     margin-top: 0;
 }

 .dl-grid-item ul {
     list-style-type: none;
     padding: 0;
     margin: 0;
 }

 .dl-grid-item li {
     margin-bottom: 8px;
     padding-left: 20px;
     position: relative;
 }

 .dl-grid-item li::before {
     content: '→';
     position: absolute;
     left: 0;
     color: #c5109a;
 }

 @media (max-width: 768px) {
     .dl-tabs {
         flex-direction: column;
     }
     .dl-tab-buttons, .dl-tab-content {
         width: 100%;
     }
 }
 .dl-tab-content {
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
}
.dl-tab-content.active {
    opacity: 1;
}
.dl-grid-item {
    transition: all 0.3s ease;
}
.dl-grid-item:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.dl-content-icon {
    transition: transform 0.3s ease;
}
.dl-content-icon:hover {
    transform: scale(1.2) rotate(10deg);
}
.dl-key-topics {
    position: relative;
    overflow: hidden;
  }
  
  .animated-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #f0f4f8, #e6e9f0);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: -1;
  }
  
  @keyframes gradientShift {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
  }

  /* Instructor */



  :root {
    --primary-color: #5014ad;
    --secondary-color: #c5109a;
    --text-color: #333;
    --bg-color: #f7f9fc;
    --card-bg: #ffffff;
    --shadow-color: rgba(0, 0, 0, 0.1);
  }
   
  
  .instructor-profile {
    background-color: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-color);
    padding: 40px;
    max-width: 800px;
    width: 100%;
    margin: 40px auto;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    background-clip: padding-box;
  }
  .instructor-profile::before {
    content: '';
    position: absolute;
    top: -1px; right: -1px; bottom: -1px; left: -1px;
    z-index: -1;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: inherit;
    margin: -1px;
  }

.instructor-name {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
  .profile-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
  }
  
  .profile-picture {
    position: relative;
    margin-right: 30px;
  }
  
  #profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  #profile-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(80, 20, 173, 0.5);
  }
  
  .profile-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    transform: translateX(30%);
  }
  
  .profile-info {
    flex-grow: 1;
  }
  
  .instructor-name {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    color: var(--primary-color);
  }
  
  .instructor-title {
    font-size: 18px;
    color: var(--secondary-color);
    margin: 5px 0 15px;
  }
  
  .rating {
    font-size: 18px;
    color: #ffc107;
  }
  
  .rating-value {
    color: var(--text-color);
    margin-left: 5px;
  }
  
  .profile-bio {
    background-color: rgba(80, 20, 173, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 0 10px 10px 0;
  }
  
  .stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  
  .stat-item {
    text-align: center;
    flex-basis: 25%;
  }
  
  .stat-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 5px;
  }
  
  .stat-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
  }
  
  .stat-label {
    font-size: 14px;
    color: var(--text-color);
  }
  
  .skills, .achievements {
    margin-bottom: 30px;
  }
  
  .skills h3, .achievements h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .skill-tag {
    background-color: rgba(80, 20, 173, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .skill-tag:hover {
    background-color: var(--primary-color);
    color: white;
  }
  
  .achievements ul {
    list-style-type: none;
    padding: 0;
  }
  
  .achievements li {
    margin-bottom: 10px;
    transition: transform 0.3s ease;
  }
  
  .achievements li:hover {
    transform: translateX(5px);
  }
  
  .achievements i {
    color: var(--secondary-color);
    margin-right: 10px;
  }
  
  .cta-section {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
  }
  .cta-button::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: all 0.5s ease;
  }
  .cta-button:hover::before {
  left: 100%;
}

  
   
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .instructor-name, .instructor-title, .stat-item, .skill-tag, .achievements li {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
  }
  
  .instructor-name { animation-delay: 0.1s; }
  .instructor-title { animation-delay: 0.2s; }
  .stat-item:nth-child(1) { animation-delay: 0.3s; }
  .stat-item:nth-child(2) { animation-delay: 0.4s; }
  .stat-item:nth-child(3) { animation-delay: 0.5s; }
  .stat-item:nth-child(4) { animation-delay: 0.6s; }


  
.background-container {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: 
    linear-gradient(135deg, rgba(80, 20, 173, 0.1) 0%, rgba(197, 16, 154, 0.1) 100%),
    url('data:image/svg+xml,%3Csvg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%239C92AC" fill-opacity="0.05" fill-rule="evenodd"%3E%3Ccircle cx="3" cy="3" r="3"/%3E%3Ccircle cx="13" cy="13" r="3"/%3E%3C/g%3E%3C/svg%3E');
  overflow: hidden;
}
  
.floating-shape {
  position: absolute;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  opacity: 0.1;
  animation: float 15s infinite ease-in-out;
}
  
  .shape1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 5%;
  }
  
  .shape2 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 10%;
    animation-delay: -2s;
  }
  
  .shape3 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 10%;
    animation-delay: -5s;
  }
  
  .shape4 {
    width: 120px;
    height: 120px;
    bottom: 15%;
    right: 5%;
    animation-delay: -8s;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
  }
  
  .side-element-1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .side-element-1:hover {
    transform: translateY(-50%) scale(1.05);
  }
  
  .left-element {
    left: 40px;
  }
  
  .right-element {
    right: 40px;
  }
  
  .quote-container {
    font-style: italic;
    color: var(--primary-color);
  }
  
  .quote-container blockquote {
    margin: 0 0 10px 0;
    font-size: 16px;
  }
  
  .quote-container cite {
    font-size: 14px;
    color: var(--secondary-color);
  }
  
  .upcoming-events h4 {
    color: var(--primary-color);
    margin-top: 0;
  }
  
  .upcoming-events ul {
    list-style-type: none;
    padding: 0;
  }
  
  .upcoming-events li {
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-color);
  }
  
  @media (max-width: 1200px) {
    .side-element-1 {
      display: none;

    }
     
  }
  @media (max-width: 768px) {
    .instructor-profile {
      padding: 20px;
      max-width: 90%;
    }
  
    .profile-header {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .profile-picture {
      margin-right: 0;
      margin-bottom: 20px;
    }
  
    #profile-img {
      width: 120px;
      height: 120px;
    }
  
    .instructor-name {
      font-size: 28px;
    }
  
    .stat-item {
      flex-basis: 50%;
      margin-bottom: 20px;
    }
  
    .cta-button {
      padding: 10px 20px;
      font-size: 16px;
    }
  }
  
  /* FAQ */
  @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap');

  :root {
    --course-faq-primary-color: #5014ad;
    --course-faq-secondary-color: #c5109a;
    --course-faq-background-color: #f8f9fa;
    --course-faq-text-color: #333;
    --course-faq-transition: all 0.3s ease;
  }
  
  .course-faq-section {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 80px 0;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
  }
  
  .course-faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
  }
  
  .course-faq-title {
    text-align: center;
    color: var(--course-faq-primary-color);
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 500;
  }
  
  .course-faq-search-container {
    position: relative;
    margin-bottom: 30px;
  }
  
  #course-faq-search {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border: 2px solid var(--course-faq-secondary-color);
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    transition: var(--course-faq-transition);
  }
  
  #course-faq-search:focus {
    box-shadow: 0 0 0 3px rgba(197, 16, 154, 0.3);
  }
  
  .course-faq-search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--course-faq-secondary-color);
  }
  
  .course-faq-list {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  }
  
  .course-faq-item {
    border-bottom: 1px solid #e0e0e0;
    transition: var(--course-faq-transition);
  }
  
  .course-faq-item:last-child {
    border-bottom: none;
  }
  
  .course-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    transition: var(--course-faq-transition);
  }
  
  .course-faq-question:hover {
    background-color: rgba(80, 20, 173, 0.05);
  }
  
  .course-faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--course-faq-text-color);
    font-weight: 400;
  }
  
  .course-faq-toggle {
    width: 20px;
    height: 20px;
    position: relative;
    transition: var(--course-faq-transition);
  }
  
  .course-faq-toggle::before,
  .course-faq-toggle::after {
    content: '';
    position: absolute;
    background-color: var(--course-faq-primary-color);
    transition: var(--course-faq-transition);
  }
  
  .course-faq-toggle::before {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .course-faq-toggle::after {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .course-faq-item.active .course-faq-toggle {
    transform: rotate(180deg);
  }
  
  .course-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    padding: 0 20px;
  }
  
  .course-faq-item.active .course-faq-answer {
    max-height: 1000px;
    opacity: 1;
    padding: 20px;
  }
  
  .course-faq-progress-container {
    margin-top: 30px;
    background-color: #e0e0e0;
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
  }
  
  .course-faq-progress-bar {
    width: 0;
    height: 100%;
    background-color: var(--course-faq-primary-color);
    transition: var(--course-faq-transition);
  }
  
  .course-faq-progress-text {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: var(--course-faq-text-color);
    font-size: 0.9rem;
  }
  
  .course-faq-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--course-faq-secondary-color);
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: var(--course-faq-transition);
  }
  
  .course-faq-fab:hover {
    transform: scale(1.1);
  }
  
  .course-faq-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
  }
  
  .course-faq-shape {
    position: absolute;
    background-color: rgba(80, 20, 173, 0.05);
    border-radius: 50%;
  }
  
  .shape1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
  }
  
  .shape2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
  }
  
  .shape3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  @media (max-width: 768px) {
    .course-faq-title {
      font-size: 2rem;
    }
    
    .course-faq-question h3 {
      font-size: 1rem;
    }
    
    .course-faq-fab {
      width: 50px;
      height: 50px;
      font-size: 1.2rem;
    }
  }
  @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

.hac-footer {
  background-color: #4f00a0;
  font-family: 'Roboto', sans-serif;
  color: #ffffff;
  padding: 50px 0 0;
  position: relative;
}

.hac-footer-content {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hac-footer-section {
  flex: 1;
  margin-right: 40px;
}

.hac-footer-section:last-child {
  margin-right: 0;
}

.hac-footer h3 {
  color:#ff7ea0; 
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hac-footer p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.hac-footer ul {
  list-style-type: none;
  padding: 0;
}

.hac-footer ul li {
  margin-bottom: 10px;
}

.hac-footer a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hac-footer a:hover {
  color: #c5109a;
}

.hac-social-icons {
  margin-top: 20px;
}

.hac-social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 2px solid #c5109a;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  font-size: 1.2rem;
  color: #c5109a;
  transition: all 0.3s ease;
}

.hac-social-icons a:hover {
  background-color: #c5109a;
  color: #ffffff;
}

.hac-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  margin-top: 50px;
  text-align: center;
  font-size: 0.8rem;
}

.hac-footer-bottom ul {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.hac-footer-bottom ul li {
  margin: 0 10px;
}

.hac-scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #c5109a;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hac-scroll-to-top.visible {
  opacity: 1;
}

.hac-about {
  max-width: 300px;
}

.hac-logo {
  width: 204px;
  height: 74px;
  margin-bottom: 10px;
}


.hac-about h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .hac-footer-content {
    flex-direction: column;
  }

  .hac-footer-section {
    margin-right: 0;
    margin-bottom: 30px;
  }
}