* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #000000cf;
  color: #fff;
  position: relative;
  overflow-x: hidden;
}
/* === Custom Scrollbar for Webkit Browsers (Chrome, Edge, Brave, Safari) === */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 5px; /* scrollbar ki motai */
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: #f3f3f3; /* background track color */
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background-color: #09d91f; /* actual scrollbar color */
  border-radius: 10px;
  border: 2px solid transparent; /* for spacing effect */
  background-clip: content-box;
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
  background-color: #09d91f; /* on hover color */
}
@media (min-width: 768px) {
  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    width: 5px; /* scrollbar width */
  }

  html::-webkit-scrollbar-track,
  body::-webkit-scrollbar-track {
    background: #f3f3f3;
  }

  html::-webkit-scrollbar-thumb,
  body::-webkit-scrollbar-thumb {
    background-color: #9333ea;
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: content-box;
  }

  html::-webkit-scrollbar-thumb:hover,
  body::-webkit-scrollbar-thumb:hover {
    background-color: #9333ea;
  }
}

/* === Firefox Support (limited) === */
* {
  scrollbar-width: thin;
  scrollbar-color: #9333ea #3b3b3b;
}

/* hero section  */

.hero {
  background-image: url("./download\ \(9\).png");
  background-size: cover;
  background-position: center;
  /* padding: 80px 40px; */
  position: relative;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.container {
  /* max-width: 1300px; */
  margin: auto;
  background-image: url("./Gradient.#7F00EA.png");
  background-size: cover;
  background-position: center;
  padding: 40px 70px;
  /* border-radius: 20px; */
}

.heading {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  letter-spacing: 1px;
  font-weight: normal;
  line-height: 1.1;
}

.heading span {
  background: linear-gradient(90deg, #7f00ea, #ff2c2c, #7302d0);
  background-size: 300% 300%;
  animation: gradientFlow 5s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  letter-spacing: 1px;
  display: inline-block;
  position: relative;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.heading span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  filter: blur(15px);
  opacity: 0.2;
  z-index: -1;
}

.subheading {
  margin: 20px auto 40px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 12px 24px;
  border-radius: 25px;
  text-align: center;
  font-size: 1rem;
  max-width: 600px;
}

.content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  align-items: center;
  padding: 0px 100px;
}

.video-wrapper {
  flex: 1 1 25%;
  /* was 60%, slightly reduced */
  width: 300px;
}

.video-wrapper iframe {
  width: 100%;
  height: 320px;
  border-radius: 12px;
  border: 2px solid #7f00ea;
}

.wrap {
  height: 100%;
  display: flex;
  margin-top: 50px;
  align-items: center;
  justify-content: center;
}

.premium-button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 55px;
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  background: linear-gradient(90deg, #7f00ea, #d500f9);
  border: none;
  border-radius: 1000px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 20px rgba(127, 0, 234, 0.4);
}

.premium-button:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 35px rgba(127, 0, 234, 0.6);
}

/* Ripple Animation */
.premium-button::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 5px solid rgba(127, 0, 234, 0.6);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring 1.5s infinite;
  z-index: 0;
}

.premium-button:hover::after {
  animation: none;
  display: none;
}

@keyframes ring {
  0% {
    width: 30px;
    height: 30px;
    opacity: 1;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}

@keyframes ring {
  0% {
    width: 30px;
    height: 30px;
    opacity: 1;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}


.svg-container {
  position: absolute;
  top: 10%;
  /* Adjust as per your requirement */
  bottom: 10%;
  /* Adjust as per your requirement */
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
}

.svg1,
.svg2 {
  position: absolute;
  /* top: 0; */
  bottom: 0;
}

.svg1 {
  /* left: 10px; */
  width: 150px;
  height: 150px;
  /* Adjust as needed */
}

.svg2 {
  right: 10px;
  width: 98px;
  height: 100px;
  /* Adjust as needed */
}

@media (max-width: 900px) {
  /* .features {
    display: none;
  } */
  .content {
    /* flex-direction: column; */
    align-items: center;
    padding: 0px 10px; /* Added padding to ensure it's not cramped on mobile */
  }

  .video-wrapper {
    flex: 1 1 80%;
    width: 100%;
    margin-bottom: 20px;
  }

  .video-wrapper iframe {
    height: 250px;
  }

  .features {
    padding: 0;
    gap: 20px;
  }

  .feature-box {
    /* flex-direction: column;
    text-align: center; */
    padding: 10px 10px;
    font-size: 1rem;
  }

  .feature-box i {
    font-size: 1.5rem;
  }

  .svg-container {
    flex-direction: column;
    justify-content: center;
  }

  .svg1,
  .svg2 {
    width: 140px;
    height: 140px;
    top: 99%;
  }

  .heading {
    /* margin-top: 65px; */
    font-size: 2.5rem;
    margin-bottom: 25px;
  }

  .subheading {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .enroll-button {
    font-size: 1.2rem;
    padding: 15px 40px;
  }

  /* Optional: Additional styles for smaller devices */
  .container {
    padding: 20px;
    padding-top: 50px;
  }
}

@media (max-width: 600px) {
  /* .features {
    display: none;
  } */
  .heading {
    /* margin-top: 65px; */
    font-size: 2rem;
    margin-bottom: 25px;
    line-height: 1.3;
  }

  .subheading {
    font-size: 0.9rem;
  }

  .enroll-button {
    font-size: 1.1rem;
    padding: 12px 30px;
  }
}

/* Top Scrolling Marquee */
.top-marquee {
  position: absolute;
  top: 0px; /* Hero top margin */
  left: 0;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  z-index: 20;
  padding: 10px 0;
  background: linear-gradient(to right, #7f00ea, #d500f9);
  box-shadow: 0 0 20px rgba(127, 0, 234, 0.5);
}

.top-marquee span {
  display: inline-block;
  padding-left: 100%;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  animation: marqueeScroll 15s linear infinite;
}

/* Smooth scrolling animation */
@keyframes marqueeScroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Optional premium glow effect on text */
.top-marquee span {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
}

/* about section  */

.about-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0c0c0ccf;
  background-image: url("./download\ \(9\).png");
  padding: 60px 10%;
  gap: 40px;
  flex-wrap: wrap;
}

.about-left {
  flex: 2;
  color: #fff;
}

.about-left h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  position: relative;
}

.about-left h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #ffffff;
  margin-top: 5px;
}

.about-left p {
  font-size: 15px;
  line-height: 1.7;
  margin: 15px 0;
  color: #ffffffcc;
}

.about-left strong {
  color: #fff;
  text-decoration: underline;
}

.about-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-right img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

/* ✅ Responsive for Mobile Devices */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    text-align: left;
    padding: 80px 5%;
  }

  .about-left,
  .about-right {
    flex: 1 1 100%;
  }

  .about-right {
    margin-top: 30px;
  }

  .about-left h2 {
    font-size: 28px;
  }

  .about-left p {
    font-size: 14px;
    margin: 30px 0px;
  }
}

/* pricing section  */

.pricing-section {
  background-color: #0c0c0ccf;
  /* background-image: url("./download\ \(9\).png"); */
}

/* Button Style */
.price-button {
  border: none;
  margin-top: 20px;
  /* border-radius: 10px; */
  padding: 15px 20px;
  position: relative;
  overflow: hidden;
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
  cursor: pointer;
  text-transform: uppercase;
}

.m-t-50 {
  margin-top: 70px;
}

/* Shine Effect */
.price-button:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  animation: shine 3s infinite linear;
}

/* Shine Animation */
@keyframes shine {
  0% {
    left: -100px;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

/* Hover Effect */
.price-button:hover {
  /* Slightly darker shade on hover */
}

/* Enroll Now Button Style */
.enroll-now-button {
  border: 1px solid white;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 12px 50px;
  background: transparent;
  color: white;
  font-weight: bold;
  font-size: 1.125rem;
  cursor: pointer;
  text-transform: uppercase;
  width: 100%;
  border-radius: 9999px;
  transition: background-color 0.3s, color 0.3s;
  position: relative;
  overflow: hidden;
}

/* Shine Effect */
.enroll-now-button:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  animation: shine 3s infinite linear;
}

/* Hover Effect */
.enroll-now-button:hover {
  color: black;
}

/* Styling for <hr> */
.courseItems hr {
  height: 2px;
  min-width: 200px;
  border-style: none;
  background-color: rgb(0 25 92);
  margin: 0.5rem 0;
}

@media (min-width: 420px) {
  .courseItems hr {
    width: 250px; /* Adjust the width for larger screens */
  }
}

/* Global reset for hr */
hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}
.text-16 {
  font-size: 15px;
}

/* about course section  */
.p-t-50 {
  padding-top: 80px;
}
.ac-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}
.text-18 {
  font-size: 20px;
}
.left-ac-content {
  width: 30vw;
}

/* our services section  */
/* p,a,h1,h2,h3,h4,h5,h6,ul,li {
	margin: 0;
	padding: 0;
} */
.flex-services {
  width: 80%;
  margin: auto;
}

.section-services {
  font-family: "Poppins", sans-serif;
  /* background: radial-gradient(circle at top, #0a0a0f, #000); */
  color: #fff;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}

/* Section Heading */
.section-services .heading {
  font-weight: 700;
  background: linear-gradient(90deg, #7f00ea, #d500f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Service Card */
.section-services .single-service {
  position: relative;
  margin-top: 30px;
  background: rgba(15, 15, 20, 0.85);
  border: 1px solid rgba(127, 0, 234, 0.3);
  border-radius: 15px;
  padding: 30px 25px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 0 0 rgba(127, 0, 234, 0);
}

.section-services .single-service:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(127, 0, 234, 0.4);
  border-color: rgba(127, 0, 234, 0.8);
}

/* Gradient Circle Animation */
.section-services .single-service .circle-before {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(127, 0, 234, 0.5),
    rgba(213, 0, 249, 0.2)
  );
  border-radius: 50%;
  z-index: 0;
  transition: all 0.6s;
}

.section-services .single-service:hover .circle-before {
  width: 250px;
  height: 250px;
  top: -100px;
  right: -100px;
  opacity: 0.4;
}

/* Icon */
.section-services .single-service .icon {
  display: inline-block;
  margin-bottom: 20px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  line-height: 70px;
  text-align: center;
  font-size: 30px;
  color: #fff;
  background: linear-gradient(135deg, #7f00ea, #d500f9);
  z-index: 2;
  position: relative;
  transition: 0.3s;
}

.section-services .single-service:hover .icon {
  transform: rotate(15deg) scale(1.1);
}

/* Title */
.section-services .single-service .title {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 22px;
  position: relative;
  z-index: 2;
}

/* Description */
.section-services .single-service .description {
  margin-bottom: 20px;
  font-size: 14px;
  color: #cfcfcf;
  position: relative;
  z-index: 2;
}

/* Learn More Button */
.section-services .single-service a.learn-more {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: #7f00ea;
  z-index: 2;
  transition: all 0.3s;
}

.section-services .single-service:hover a.learn-more {
  color: #d500f9;
}

.section-services .single-service a.learn-more::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #7f00ea, #d500f9);
  transition: width 0.3s;
}

.section-services .single-service:hover a.learn-more::after {
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .flex-services {
    width: 100%;
  }
}

/* Testimonial section  */
.p-t-80 {
  padding-top: 80px;
}



/* Section Background */
.testimonial-slider-section {
  width: 100%;
  padding: 80px 0;
  background: radial-gradient(circle at top, #0a0a0f, #000);
  overflow: hidden;
}

/* Swiper Container */
.testimonial-slider-section .swiper {
  width: 100%;
  overflow: hidden;
  padding-top: 30px;
}

/* Smooth Infinite Scroll Feel */
.testimonial-slider-section .swiper-wrapper {
  display: flex;
  transition-timing-function: linear !important;
}

/* Premium Card */
.testimonial-slider-section .swiper-slide {
  width: 450px;
  min-height: 380px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(127, 0, 234, 0.3);
  border-radius: 20px;
  padding: 30px 25px 90px 25px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 0 rgba(127, 0, 234, 0);
  position: relative;
  transition: 0.4s ease;
}

/* Hover Glow */
.testimonial-slider-section .swiper-slide:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(127, 0, 234, 0.4);
  border-color: rgba(127, 0, 234, 0.6);
}

/* Floating Glow Circle */
.testimonial-slider-section .swiper-slide::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 140px;
  height: 140px;
  background: radial-gradient(
    circle,
    rgba(127, 0, 234, 0.5),
    rgba(213, 0, 249, 0.2)
  );
  border-radius: 50%;
  opacity: 0.4;
  z-index: 0;
  transition: all 0.6s;
}
.testimonial-slider-section .swiper-slide:hover::before {
  width: 220px;
  height: 220px;
  top: -100px;
  right: -100px;
  opacity: 0.3;
}

/* Testimonial Text */
.testimonial-slider-section p {
  margin-top: 20px;
  color: #f0f0f0;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.3px;
  z-index: 2;
  position: relative;
}

/* Profile Card */
.testimonial-slider-section .profile {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.testimonial-slider-section .profile img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid #7f00ea;
  box-shadow: 0 0 10px rgba(127, 0, 234, 0.5);
}

.testimonial-slider-section .profile .name {
  font-weight: 600;
  font-size: 18px;
  text-align: start;
  line-height: 25px;
  letter-spacing: 0.3px;
}

.testimonial-slider-section .profile .role {
  font-size: 12px;
  font-weight: 500;
  color: #c0c0c0;
  text-align: start;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-slider-section .swiper-slide {
    width: 320px !important;
    min-height: 350px;
  }

  .testimonial-slider-section .profile {
    flex-direction: column;
    text-align: center;
    bottom: 15px;
  }
}

/* frequently asked question section  */
/* FAQ Container */
.process__container {
  margin: auto;
  padding: 0px 100px;
  width: 70%;
  font-family: "Space Grotesk", sans-serif;
}

/* Section */
.process {
  padding: 80px 0;
  background: radial-gradient(circle at top, #000000, #000);
  color: #fff;
}

/* Accordion List */
.accordions__list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  padding-top: 40px;
}

/* Accordion Item */
.accordions__item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(127, 0, 234, 0.3);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 0 rgba(127, 0, 234, 0);
  transition: 0.4s ease;
  position: relative;
}

.accordions__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(127, 0, 234, 0.4);
  border-color: rgba(127, 0, 234, 0.6);
}

/* Accordion Control */
.accordions__control {
  display: flex;
  align-items: center;
  padding: 18px 30px;
  width: 100%;
  position: relative;
  cursor: pointer;
}

/* Number */
.accordions__number {
  font-size: 20px;
  font-weight: 600;
  color: #d500f9;
  padding-right: 1.5rem;
}

/* Title */
.accordions__title {
  font-size: 20px;
  font-weight: 500;
  flex: 1;
  text-align: left;
  line-height: 1.3;
}

/* Icon */
.accordions__icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(127, 0, 234, 0.3);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s ease;
}

.accordions__icon::before,
.accordions__icon::after {
  content: "";
  position: absolute;
  background-color: #fff;
  transition: 0.3s ease;
}

.accordions__icon::before {
  width: 18px;
  height: 2px;
}
.accordions__icon::after {
  width: 2px;
  height: 18px;
}

.accordions__content {
  padding: 0 40px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 15px;
  color: #ccc;
}

.open .accordions__content {
  padding: 15px 40px 25px;
  color: #eee;
}

/* Open State */
.open .accordions__icon {
  background: linear-gradient(45deg, #7f00ea, #d500f9);
  border-color: transparent;
  transform: rotate(180deg);
}
.open .accordions__icon::after {
  opacity: 0; /* Hide vertical bar on open */
}

/* Responsive */
@media (max-width: 768px) {
  .process__container {
    width: 90%;
    padding: 0;
  }
  .accordions__title {
    font-size: 18px;
  }
  .accordions__number {
    font-size: 18px;
  }
}

/* Contact Section */
.contact-section {
  background: radial-gradient(circle at top, #0a0a0f, #000);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  padding: 80px 20px;
}

/* Section Heading */
.contact-section h2 {
  font-size: 3rem;
  font-weight: 700;
}
.contact-section h2 span {
  background: linear-gradient(45deg, #7f00ea, #d500f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Grid Layout */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 4rem;
  margin-top: 4rem;
}

/* Left: Form Box */
.contact-form {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(127, 0, 234, 0.3);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 0 0 rgba(127, 0, 234, 0);
  transition: 0.4s;
}
.contact-form:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(127, 0, 234, 0.4);
}

/* Form Inputs */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  margin-bottom: 1.2rem;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(127, 0, 234, 0.12);
  box-shadow: 0 0 10px rgba(127, 0, 234, 0.5);
}

/* Submit Button */
.contact-form button {
  width: 100%;
  background: linear-gradient(45deg, #7f00ea, #d500f9);
  color: #fff;
  font-weight: 600;
  padding: 12px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(127, 0, 234, 0.6);
}

/* Right: Info Cards */
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(127, 0, 234, 0.3);
  border-radius: 14px;
  padding: 15px 20px;
  margin-bottom: 1rem;
  transition: 0.4s;
}
.contact-info-card:hover {
  transform: translateX(6px);
  box-shadow: 0 0 20px rgba(127, 0, 234, 0.3);
}
.contact-info-card i {
  color: #d500f9;
  font-size: 1.5rem;
}
.contact-info-card p {
  margin: 0;
}

/* Follow Us Icons */
.contact-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(127, 0, 234, 0.1);
  border: 1px solid rgba(127, 0, 234, 0.3);
  color: #d500f9;
  font-size: 1.2rem;
  transition: 0.3s;
}
.contact-social a:hover {
  background: linear-gradient(45deg, #7f00ea, #d500f9);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(127, 0, 234, 0.5);
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: none;
  background: linear-gradient(45deg, #7f00ea, #d500f9);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(127, 0, 234, 0.4);
  font-weight: 500;
  animation: slideUp 0.4s ease;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translate(-50%, 30px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.toast.hidden {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    gap: 2rem;
  }
}

/* Base Hero Styles - Already Present */
.new-layout {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  padding: 40px 70px;
}

/* Video Wrapper */
.video-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-wrapper iframe,
.video-wrapper video {
  width: 100%;
  max-width: 100%;
  height: 320px;
  border-radius: 15px;
  border: 2px solid #7f00ea;
}
.participants {
  margin-top: 15px;
  background: #1a1a1a;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 0.95rem;
  box-shadow: 0px 0px 10px rgba(127, 0, 234, 0.5);
}

/* Event Box */
.event-box {
  flex: 1;
  background: rgba(15, 15, 30, 0.8);
  border: 2px solid rgba(127, 0, 234, 0.5);
  border-radius: 20px;
  padding: 30px;
  color: white;
  backdrop-filter: blur(10px);
  box-shadow: 0px 0px 20px rgba(127, 0, 234, 0.2);
}

.venue-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #d500f9;
}

.venue-details {
  margin-bottom: 20px;
  line-height: 1.6;
}

.event-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.info-box {
  padding: 10px 15px;
  border: 1px solid rgba(127, 0, 234, 0.4);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-box i {
  color: #d500f9;
}

.countdown {
  font-size: 1.1rem;
  margin: 15px 0;
}

.countdown span {
  color: #d500f9;
  font-weight: bold;
}

/* Premium Button */
.premium-btn {
  width: 100%;
  padding: 15px 25px;
  background: linear-gradient(to right, #7f00ea, #d500f9);
  color: white;
  border: none;
  border-radius: 40px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 10px;
}

.premium-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0px 0px 20px rgba(127, 0, 234, 0.6);
}

.price-note {
  font-size: 0.9rem;
  text-align: center;
  color: #aaa;
}

#countdown-timer {
  color: #d500f9; /* Purple highlight */
  font-weight: bold;
  font-size: 1.2rem;
}

.premium-btn {
  background-size: 300% 300%;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 16px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 15px rgba(127, 0, 234, 0.5);
  position: relative;
  overflow: hidden;
    width: auto; /* PC par apna content ke hisaab se */
  max-width: 100%;

  /* Premium animations */
  animation: gradientShift 5s linear infinite, pulseGlow 2s ease-in-out infinite;
}

/* Smooth moving gradient */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Grow-up & Grow-down pulse animation */
@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(127, 0, 234, 0.5);
  }
  50% {
    transform: scale(1.08);
  }
}

/* Optional Hover: Slight extra grow */
.premium-btn:hover {
  transform: scale(1.1);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .new-layout {
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px;
  }

  .video-wrapper iframe,
  .video-wrapper video {
    height: 250px;
  }

  .event-box {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .heading {
    font-size: 1.5rem;
    text-align: center;
  }

  .participants {
     text-align: center;
    font-size: 0.85rem;
    padding: 10px 18px;
  }

  .event-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .info-box {
    padding: 8px 12px;
    font-size: 0.9rem;
  }

 .premium-btn {
    width: 100%;   /* Mobile par full width */
    max-width: 100%;
    font-size: 1rem;
    padding: 14px 20px;
    border-radius: 40px;
  }

  .price-note {
    font-size: 0.8rem;
  }

  .video-wrapper iframe,
  .video-wrapper video {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .heading {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .new-layout {
    padding: 20px 15px;
  }

  .video-wrapper iframe,
  .video-wrapper video {
    height: 200px;
  }
 .premium-btn {
    width: 100%;  /* Full screen width */
    font-size: 0.95rem;
    padding: 12px 18px;
    border-radius: 35px;
 }

  .price-note {
    font-size: 0.75rem;
  }

  .participants {
     text-align: center;
    font-size: 0.8rem;
    padding: 8px 16px;
  }
}



.checklist-section {
  background-color: #0c0c0ccf;
  /* background-image: url("./download\ \(9\).png"); */
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.checklist-heading {
  font-size: 2.5rem; /* same as checklist-heading */
  font-weight: 700;
  margin-bottom: 40px; /* adjust spacing */
  text-align: center;
}

.checklist-heading span {
  background: linear-gradient(90deg, #00ff95, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.checklist-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #111;
  padding: 15px 20px;
  border-radius: 10px;
  border: 1px solid #222;
  cursor: pointer;
  transition: 0.3s;
}

.check-item:hover {
  border-color: #9333ea; /* Purple glow */
  box-shadow: 0 0 10px #9333ea55;
}

.check-item input[type="checkbox"] {
  transform: scale(1.2);
  accent-color: #00ff95;
}

.check-item span {
  text-align: left;
  font-size: 0.95rem;
}
/* Tablet */
@media (max-width: 768px) {
  .checklist-heading {
    font-size: 2rem;
    margin-bottom: 30px;
    line-height: 1.3;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .checklist-heading {
    font-size: 1.6rem;
    margin-bottom: 25px;
    line-height: 1.2;
  }
}


/* Highlighted text */
.highlight {
  background: linear-gradient(90deg, #00ff95, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 1.3rem;
  display: inline-block;
  margin-top: 10px;
}

/* Small text */
.small-text {
  color: #bbb;
  margin: 10px 0 20px;
}

/* Register Button with pulse animation */
.premium-btn {
  /* background: linear-gradient(90deg, #9333ea, #00ff95); */
  color: white;
  font-weight: 600;
  border: none;
  padding: 16px 30px;
  font-size: 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 10px;
  /* width: 50%; */
  animation: growPulse 2.5s infinite ease-in-out;
}
.width-50 {
  width: 40%;
}
.premium-btn:hover {
  transform: scale(1.05);
}

@keyframes growPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.price-note {
  color: #bbb;
  font-size: 0.9rem;
  margin-top: 8px;
}

.webinar-premium {
  background: radial-gradient(circle at top, #0a0a0f, #000);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 100px 20px;
  color: white;
  font-family: "Poppins", sans-serif;
}

.webinar-premium::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url("grid-pattern.png") repeat;
  opacity: 0.05;
  animation: moveGrid 30s linear infinite;
}
@keyframes moveGrid {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(50px, 50px);
  }
}

.premium-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
}
.premium-heading span {
  background: linear-gradient(90deg, #00ff95, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.premium-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto 50px;
}

.premium-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(147, 51, 234, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: 0.4s;
  box-shadow: 0 0 0px transparent;
}
.premium-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 0 25px rgba(147, 51, 234, 0.4);
}

.premium-card.wide {
  grid-column: span 2;
}

.premium-icon {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 5px #00ff95);
}

.premium-extra {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.premium-btn .width-50 {
  /* background: linear-gradient(90deg, #9333ea, #00ff95); */
  color: white;
  font-weight: 700;
  border: none;
  padding: 18px 40px;
  font-size: 1.3rem;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 15px;
  animation: growPulse 2.5s infinite ease-in-out;
}
@keyframes growPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.07);
  }
}

.price-note {
  color: #bbb;
  font-size: 1rem;
  margin-top: 8px;
}

.countdown {
  margin-top: 25px;
  color: #00ff95;
  font-weight: bold;
  font-size: 1.1rem;
}
#width-50 {
  width: 55%;
}

/* webinar section 0 */

.webinar-premium {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0c0c0ccf;
  /* background-image: url("./download\ \(9\).png"); */
  padding: 60px 10%;
  gap: 40px;
  flex-wrap: wrap;
}

/* ceo section  */

/* === Instructor Section (Purple Theme) === */
.instructor-section {
  position: relative;
  background: radial-gradient(circle at top, #000000, #000000);
  padding: 100px 20px;
  color: #fff;
  overflow: hidden;
}

.instructor-section .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  align-items: center;
  justify-content: center;
}

/* Instructor Image */
.instructor-image {
  position: relative;
  width: 380px;
  height: 520px;
}

.instructor-image img {
  width: 100%;
  height: 100%;
  /* border-radius: 50%; */
  object-fit: contain;
  /* border: 3px solid #7f00ea; */
  /* box-shadow: 0 0 30px rgba(127, 0, 234, 0.5); */
  /* animation: floatImage 6s ease-in-out infinite; */
}

@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Purple Glows */
.glow-circle {
  position: absolute;
  border-radius: 50%;
  background: #7f00ea;
  filter: blur(80px);
  opacity: 0.3;
  animation: pulseGlow 5s infinite ease-in-out;
}

.glow1 {
  width: 160px;
  height: 160px;
  top: -50px;
  left: -50px;
}
.glow2 {
  width: 120px;
  height: 120px;
  bottom: -50px;
  right: -50px;
  animation-delay: 2.5s;
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.5;
  }
}

/* Right Content */
.instructor-content {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.instructor-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.instructor-content h2 span {
  background: linear-gradient(90deg, #7f00ea, #d500f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.instructor-content p {
  color: #bbb;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.highlight {
  color: #d500f9;
  font-weight: 600;
}

/* Highlight Cards */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.highlight-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(127, 0, 234, 0.3);
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(127, 0, 234, 0.4);
}

.highlight-card i {
  font-size: 1.6rem;
  color: #7f00ea;
}

.highlight-card h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.highlight-card p {
  margin: 0;
  font-size: 0.85rem;
  color: #aaa;
}

/* Responsive */
@media (max-width: 992px) {
  .instructor-section .container {
    flex-direction: column;
    text-align: center;
  }

  .highlight-grid {
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }

  .instructor-content {
    text-align: center;
  }
}

/* about courses section */

/* Card Premium Look */
.about-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(127, 0, 234, 0.3);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 0 rgba(127, 0, 234, 0);
  transition: 0.4s;
}
.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(127, 0, 234, 0.4);
}

/* Animated List Items */
.course-item {
  position: relative;
  padding-left: 35px;
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeSlideIn 0.8s forwards;
}
.course-item::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #d500f9;
  font-weight: bold;
}

/* Sequential Delay for Items */
.course-item:nth-child(1) {
  animation-delay: 0.2s;
}
.course-item:nth-child(2) {
  animation-delay: 0.4s;
}
.course-item:nth-child(3) {
  animation-delay: 0.6s;
}
.course-item:nth-child(4) {
  animation-delay: 0.8s;
}
.course-item:nth-child(5) {
  animation-delay: 1s;
}
.course-item:nth-child(6) {
  animation-delay: 1.2s;
}
.course-item:nth-child(7) {
  animation-delay: 1.4s;
}

/* Animation Keyframes */
@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slow Floating Glows */
@keyframes ping-slow {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1);
    opacity: 0.4;
  }
}
.animate-ping-slow {
  animation: ping-slow 6s infinite ease-in-out;
}

@keyframes pulse-slow {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.35;
    transform: scale(1.05);
  }
}
.animate-pulse-slow {
  animation: pulse-slow 8s infinite ease-in-out;
}
