* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100vw;
  font-family: sans-serif;
  
  background-color: #111;
  
  color: white;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100vw;
  font-family: 'Poppins', sans-serif;
  background-color: #111;
  color: white;
  overflow-x: hidden;
}

/* Navigation Styles */
.navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(20, 20, 20, 0.75);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0 0 30px 30px;
}

.nav_bar {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

.logo img {
  width: 140px;
  height: 40px;
  object-fit: cover;
  border-radius: 30px;
}

/* Navigation Links */
.nav_content ul {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav_content li {
  list-style: none;
}

.nav_content a {
  position: relative;
  font-size: 16px;
  color: #ddd;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* Animated underline */
.nav_content a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #a569ff, #00fff6);
  left: 0;
  bottom: -6px;
  transition: 0.3s;
}

.nav_content a:hover::after {
  width: 100%;
}

.nav_content a:hover {
  color: #fff;
}

/* Active link */
.nav_content .active {
  color: #fff;
  font-weight: 600;
  background: linear-gradient(90deg, #6b30e3, #9a36ff);
  padding: 8px 16px;
  border-radius: 25px;
  box-shadow: 0 0 10px #6b30e3;
}

/* Hero placeholder */
.hero {
  padding-top: 100px;
  padding-left: 40px;
  padding-right: 40px;
}



.hero {
  padding-top: 100px;
  padding-left: 40px;
  padding-right: 40px;
}



/* hero sesctio */

.quotes {
    font-size: 2.5rem;
    font-weight: 700;
  }

  .loop-text {
    display: inline-block;
    position: relative;
    width: 20ch; 
    height: 2.8rem; 
    vertical-align: bottom;
    overflow: hidden;
    color: #6b30e3;
  }

  .loop-text span {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: loop 12s infinite;
  }

  .loop-text span:nth-child(1) { animation-delay: 0s; }
  .loop-text span:nth-child(2) { animation-delay: 2s; }
  .loop-text span:nth-child(3) { animation-delay: 4s; }
  .loop-text span:nth-child(4) { animation-delay: 6s; }
  .loop-text span:nth-child(5) { animation-delay: 8s; }
  .loop-text span:nth-child(6) { animation-delay: 10s; }

  @keyframes loop {
    0% { opacity: 0; transform: translateY(100%); }
    5% { opacity: 1; transform: translateY(0%); }
    20% { opacity: 1; transform: translateY(0%); }
    25% { opacity: 0; transform: translateY(-100%); }
    100% { opacity: 0; transform: translateY(-100%); }
  }

  .quotes,.disc{
   
    padding: 20px;
    margin: 20px;
  }

  .disc pre {
    text-align: left;
  }


.social ul {
 margin: 25px;
  list-style: none;
  padding: 0;
  display: flex;
  gap: 15px;
}

.social ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #333;
  color: #fff;
  font-size: 25px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social ul li a:hover {
  background-color: #1da1f2;
  color: #fff;
  transform: scale(1.1);
}




.paid_demo {
   margin-left: 20px;
  margin-top: 35px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.paid_demo button {
  background-color: #ff4d4d;
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.paid_demo button a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.paid_demo button:hover {
  background-color: #e60000;
  transform: scale(1.05);
}


.youtube_demo ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0;
  margin: 0;
}

.youtube_demo ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
  font-weight: 700;
}

/* YouTube Icon */
.youtube_demo ul li a i {
  font-size: 25px;
  color: #fff;
}

/* Watch Demo Button */
.youtube_demo ul li a.watch-demo {
  background-color: #ff4d4d;
  color: #fff;
}

.youtube_demo ul li a.watch-demo:hover {
  background-color: #e60000;
  transform: scale(1.05);
}

/* YouTube Icon Button */
.youtube_demo ul li a:not(.watch-demo) {
  background-color: #ff0000;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 25px;
  justify-content: center;
  align-items: center;
}

.youtube_demo ul li a:not(.watch-demo):hover {
  background-color: #cc0000;
  transform: scale(1.1);
}



.enroll_courese{
    margin-top: 35px;
    margin-left: 20px;
    display: flex;
    gap: 30px;
}

.student,.instructor,.course{
   box-shadow: 2px 2px 10px rgba(255, 77, 77, 0.6);
   border-radius: 10px;
}

.course ul{
    align-items: center;
}

.enroll_courese {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
  margin-left: 25px;
}

.enroll_courese > div {
  width: 100px;
  height: 100px;
  background-color: #1a1a1a;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(158, 111, 111, 0.4);
  transition: all 0.3s ease;
}

.enroll_courese > div:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(98, 77, 255, 0.5);
}

.enroll_courese ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.enroll_courese ul li {
  margin: 4px 0;
}

.enroll_courese ul li .icon {
  width: 35px;
  height: 35px;
}

.enroll_courese ul li h2 {
  color: #fff;
  font-size: 14px;
  margin: 0;
}


html, body {
  overflow-x: hidden;
  width: 100%;
}


.icon{
    border-radius: 30px;
}
    

.icon{
    width: 40px;
    object-fit: cover;
}

.enroll_courese div ul li h2{
    font-size: 20px;
    font-weight: 500;
}

body{
background-color: #1a1a1a;

}

.hero_right{
    display: flex;
    margin-top: 40px;
    gap: 30px;
    overflow: scroll;
    overflow-x: scroll;
    scrollbar-width: none;
    margin: 40px;
   
}
.hero_right img{
    margin-top: 100px;
    margin-left: 30px;
    box-shadow: 1px 2px 4px 3px rgb(150, 91, 43);
    width: 300px;
    height: 400px;
    border-radius: 20px;
    object-fit: cover;
    transition: transform 0.3s ease;
}


.hero_right img:hover{
    transform: scale(1.05);
}

.hero_section{

    display: flex;
}









/* Card Container */



.course-card {
  border-radius: 15px;
  width: 300px;
  height: 450px;
  perspective: 1000px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin-left: 25px;
  gap: 10px;

}

/* Inner Flipping Section */
.card-inner {
  border-radius: 15px;
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease-in-out;
  transform-style: preserve-3d;
  transform-origin: center;
  box-shadow: 0 0 15px 5px #7e4fff, 0 0 35px 12px #a177ff9a;
  cursor: pointer;

}
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}


.course-card:hover .card-inner {
  transform: rotateY(180deg);
}

/* Both sides */
.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  backface-visibility: hidden;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  top: 0;
  left: 0;
}

/* FRONT SIDE */
.card-front {
  background-color: #1a1a1a;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-front img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}

/* FRONT CONTENT */
.card-front .content {
  padding: 15px;
  text-align: left;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.card-front .tag {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.card-front .level {
  background-color: #7c4dff;
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 8px;
}

.card-front .lectures {
  background-color: #262626;
  color: white;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 8px;
}

.card-front h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 8px 0;
  color: #fff;
}

.card-front p {
  font-size: 13px;
  color: #aaa;
  margin: 0;
}

.tag span{
  margin-top: 40px;
}

.content h3{
  margin-top: 20px;
}

.content p{
  margin-top: 15px;
}

.desc {
  margin-top: 30px;
}
.card-front .desc {
  font-size: 12px;
  color: #ccc;
  margin-top: 8px;
  line-height: 1.4;
}

/* BACK SIDE */
.card-back {
  background: linear-gradient(135deg, #1e1e2f, #3c3c5c);
  color: white;
  transform: rotateY(180deg);
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-back h2 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ffce00;
}

.card-back ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  line-height: 1.6;
  font-size: 14px;
}

.card-back .btn {
  background: #ff4d4d;
  color: white;
  text-decoration: none;
  text-align: center;
  padding: 10px 15px;
  border-radius: 8px;
  transition: background 0.3s;
}

.card-back .btn:hover {
  background: #cc0000;
}



.intermediate{
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}













/* Reset and base */


.flip-card {
  background-color: transparent;
  width: 100%; 
  max-width: 800px;
  height: 460px;
  perspective: 1000px;
  margin: 0 auto; 
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 0 15px 5px #7e4fff, 0 0 35px 12px #a177ff9a;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  cursor: pointer;
}


.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Front & Back sides */
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  backface-visibility: hidden;
  background: #11101a;
  padding: 20px;
  box-sizing: border-box;
  overflow-y: auto;
}

/* Front */
.flip-card-front img,
.flip-card-back img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto 15px;
  box-shadow: 0 0 15px 5px #7e4fff;
  object-fit: cover;
}


.flip-card-back {
  transform: rotateY(180deg);
}


.flip-card-front h2,
.flip-card-back h2 {
  margin-bottom: 5px;
  font-size: 1.8rem;
  color: white;
}

.flip-card-front p,
.flip-card-back p {
  margin: 5px 0;
  font-weight: 500;
  font-size: 1rem;
  color: #a7a7a7;
}


.tags {
  margin: 10px 0 15px;
}

.tags span {
  display: inline-block;
  background: #7e4fff;
  padding: 5px 14px;
  border-radius: 20px;
  font-weight: 600;
  margin-right: 8px;
  font-size: 0.85rem;
}




.text-image-fill {
  font-size: 12vw; 
  font-weight: 900;
  font-family: 'Arial Black', Arial, sans-serif;
  background-image: url('./image/indain_Flag/flag.png'); 
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: calc(100vw - 30px);
  text-align: center;
  user-select: none;
}





@media (min-width: 1025px) {
  .nav_bar {
    padding: 0 60px;
  }
  .intermediate {
    grid-template-columns: repeat(3, 1fr);
  }
}


@media (max-width: 1024px) {
  .nav_bar {
    padding: 0 30px;
  }

  .nav_content ul {
    gap: 20px;
  }

  .hero_section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero_right {
    margin: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .intermediate {
    grid-template-columns: repeat(2, 1fr);
  }

  .enroll_courese {
    flex-wrap: wrap;
    justify-content: center;
  }

  .quotes {
    font-size: 2rem;
  }
}

/* 📱 Small Screens (Mobiles) */
@media (max-width: 768px) {
  /* Navigation */
  .nav_bar {
    padding: 0 15px;
    flex-direction: column;
    height: auto;
    align-items: flex-start;
  }

  .logo img {
    width: 120px;
    height: 60px;
  }

  .nav_content ul {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-top: 10px;
  }

  .nav_content ul li a {
    font-size: 16px;
  }

  /* Hero section */
  .hero {
    padding: 80px 20px 20px 20px;
    text-align: center;
  }

  .quotes {
    font-size: 1.8rem;
  }

  .loop-text {
    font-size: 1.5rem;
  }

  .disc pre {
    font-size: 0.9rem;
    white-space: normal;
  }

  /* Buttons */
  .paid_demo {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .youtube_demo ul {
    flex-direction: column;
  }

  /* Cards and Enroll Section */
  .enroll_courese {
    flex-direction: column;
    align-items: center;
  }

  .enroll_courese > div {
    width: 80px;
    height: 80px;
  }

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

  .course-card {
    width: 90%;
    margin: 0 auto;
  }

  /* Text Image */
  .text-image-fill {
    font-size: 18vw;
  }

  /* Hide Scrollbar in Hero Images */
  .hero_right {
    overflow-x: auto;
    scrollbar-width: none;
  }
}

/* 📱 Extra Small Screens (under 480px) */
@media (max-width: 480px) {
  .quotes {
    font-size: 1.5rem;
  }

  .nav_bar {
    padding: 10px;
  }

  .hero_right img {
    width: 250px;
    height: 350px;
  }

  .paid_demo button a,
  .youtube_demo ul li a {
    font-size: 16px;
  }

  .text-image-fill {
    font-size: 22vw;
  }
}




.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  display: block;
  height: 3px;
  background: white;
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* Animation when active (turns into X) */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


.nav_content {
  transition: right 0.3s ease;
}


@media (max-width: 900px) {
  .nav_bar {
    padding: 0 20px;
    height: 70px;
  }
  .hamburger {
    display: flex;
  }


  .nav_content {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 70%;
    height: calc(100vh - 70px);
    background: #000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease;
  }

  .nav_content ul {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }

  /* When opened */
  .nav_content.open {
    right: 0;
  }

  /* Smooth link styling */
  .nav_content ul li a {
    font-size: 18px;
    padding: 10px 20px;
  }

 
  body.menu-open {
    overflow: hidden;
  }
}




/* Section Layout */
.contact-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100vw;
  margin: 10px auto;
  padding: 40px 5%;
  gap: 30px;
}

/* Left side (Form) */
.contact-form {
  flex: 1 1 450px;
  background-color: #18181b;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(120, 0, 255, 0.3);
}

.contact-form h2 {
  color: #a97fff;
  margin-bottom: 20px;
  font-size: 28px;
}

.contact-form label {
  display: block;
  margin: 12px 0 6px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #333;
  border-radius: 8px;
  background-color: #121214;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #a97fff;
}

.contact-form textarea {
  resize: none;
  height: 120px;
}

.contact-form button {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background-color: #8b5cf6;
  border: none;
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background-color: #7c3aed;
}

/* Right side (Image) */
.contact-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(120, 0, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 900px) {
  .contact-section {
    flex-direction: column;
    text-align: center;
  }

  .contact-image img {
    max-width: 80%;
  }
}



:root {
  --primary: #ff6600;
  --primary-light: #ffbb33;
  --secondary: #00a8ff;
  --accent: #ff3366;
  --dark: #0d0d0d;
  --darker: #080808;
  --light: #f5f5f5;
  --gray:#241544;
  --card-bg: #151515;
  --text-light: #bbb;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
}


.hero_section{
  background: var(--gray);
  color: var(--light);
 
}



/* RESET */


/* CONTAINER */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 10px auto;
  text-align: center;
  padding: 0 15px;
}


.learning-section {
  padding: 80px 10px;
  background: radial-gradient(circle at top left, #2a004d 0%, #0d0d0d 80%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.learning-section h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.learning-section p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 800px;
  margin-inline: auto;
}

/* BUTTON */
.btn {
  background-color: #8a2be2;
  color: #fff;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 0 12px rgba(138, 43, 226, 0.4);
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  background-color: #6b1ecf;
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.7);
  transform: translateY(-2px);
}


.get-section {
  padding: 80px 10px;
  background: linear-gradient(135deg, #0f0f0f 0%, #1b0034 100%);
}

.get-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.get-section h2 span {
  color: #8a2be2;
  text-shadow: 0 0 10px rgba(138, 43, 226, 0.7);
}

.get-section p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
  max-width: 800px;
  margin-inline: auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .learning-section,
  .get-section {
    padding: 60px 15px;
  }

  .learning-section h1,
  .get-section h2 {
    font-size: 1.8rem;
  }

  .learning-section p,
  .get-section p {
    font-size: 1rem;
  }

  .btn {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .learning-section h1,
  .get-section h2 {
    font-size: 1.5rem;
  }

  .learning-section p,
  .get-section p {
    font-size: 0.9rem;
  }

  .btn {
    width: 80%;
    padding: 12px;
  }
}




 .instructor-section {
      width: 100vw;
      margin: 10px;
      padding: 80px 20px;
      background: linear-gradient(135deg, #1b1b23 0%, #2c2c38 100%);
      border-radius: 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .instructor-section::before {
      content: "";
      position: absolute;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(167,112,255,0.3) 0%, transparent 70%);
      top: -100px;
      right: -100px;
      z-index: 0;
    }

    .instructor-section h1 {
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 1rem;
      position: relative;
      z-index: 1;
    }

    .instructor-section h1 span {
      color: #a970ff;
    }

    .instructor-section p {
      font-size: 1.1rem;
      color: #c5c5d1;
      max-width: 600px;
      margin: 0 auto 40px auto;
      position: relative;
      z-index: 1;
    }

    .btn {
      display: inline-block;
      padding: 14px 28px;
      font-size: 1rem;
      font-weight: 600;
      color: white;
      background-color: #7b42f6;
      border: none;
      border-radius: 50px;
      text-decoration: none;
      transition: background 0.3s ease;
      position: relative;
      z-index: 1;
      box-shadow: 0 0 20px #7b42f680;
    }

    .btn:hover {
      background-color: #a970ff;
    }

    .btn.secondary {
      background-color: transparent;
      color: #a970ff;
      border: 2px solid #a970ff;
      margin-top: 20px;
      border-radius: 50px;
      padding: 12px 26px;
    }

    .btn.secondary:hover {
      background-color: #a970ff22;
    }

    @media (max-width: 600px) {
      .instructor-section h1 {
        font-size: 2rem;
      }

      .instructor-section p {
        font-size: 1rem;
      }

      .btn {
        width: 90%;
        padding: 12px 0;
      }
    }











    
    footer {
      width: 100vw;
      margin: 10px;
      padding: 60px 30px 30px 30px;
      background-color: #13131a;
      border-radius: 12px;
      position: relative;
    }

    footer::before {
      content: "";
      position: absolute;
      top: 0;
      left: 10px;
      width: calc(100% - 20px);
      height: 3px;
      background: linear-gradient(to right, #a970ff, #ff6a00);
      border-radius: 2px;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 40px;
      margin-top: 20px;
    }

    .footer-column {
      flex: 1;
      min-width: 200px;
    }

    .footer-column h3 {
      color: #a970ff;
      margin-bottom: 20px;
      font-size: 1.4rem;
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column ul li {
      margin-bottom: 12px;
    }

    .footer-column ul li a {
      color: #bcbccd;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-column ul li a:hover {
      color: #a970ff;
    }

    .footer-about p {
      margin-bottom: 20px;
      color: #c3c3cf;
      line-height: 1.5;
    }

    .social-icons {
      display: flex;
      gap: 10px;
    }

    .social-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background-color: #22222a;
      border: 1px solid #2e2e38;
      border-radius: 50%;
      color: #c3c3cf;
      font-size: 18px;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .social-icons a:hover {
      background-color: #a970ff;
      color: #ffffff;
    }

    .footer-bottom {
      text-align: center;
      padding-top: 30px;
      margin-top: 30px;
      border-top: 1px solid #2e2e38;
      font-size: 0.95rem;
      color: #888;
    }

    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
      }

      footer {
        padding: 50px 20px;
      }
    }


.hero_right img{
  box-shadow: 0 0 15px 5px #7e4fff, 0 0 35px 12px #a177ff9a;
  object-fit: cover;
    }



/* ===== PREMIUM COURSES SECTION ===== */
.premium-section {
  width: 100vw;
  margin: 10px auto;
  background: linear-gradient(135deg, #0f0f0f 0%, #1b0034 100%);
  padding: 80px 10px;
  color: #f5f5f5;
  text-align: center;
}

.premium-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.premium-section h2 span {
  color: #8a2be2;
  text-shadow: 0 0 10px rgba(138, 43, 226, 0.7);
}

.premium-section p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 50px;
  line-height: 1.6;
  max-width: 800px;
  margin-inline: auto;
}


.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
  align-items: stretch;
  margin-top: 20px;
}


@media (max-width: 768px) {
  .premium-section {
    padding: 60px 15px;
  }

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

  .premium-section p {
    font-size: 1rem;
  }

  .course-grid {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .premium-section h2 {
    font-size: 1.5rem;
  }

  .premium-section p {
    font-size: 0.9rem;
  }

  .course-card {
    max-width: 90%;
  }
}








/* Base Reset */


/* Section Container */
.upcoming-section {
  width: 100vw;
  margin: 10px;
  text-align: center;
  padding: 70px 20px;
  position: relative;
  background: linear-gradient(135deg, rgba(80, 0, 255, 0.15), rgba(255, 0, 150, 0.1));
  backdrop-filter: blur(8px);
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(120, 50, 255, 0.2);
}

/* Header */
.section-header h1 {
  font-size: 2.5em;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-header h1 span {
  color: #9b4dff;
  background: linear-gradient(90deg, #ff007a, #a569ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  font-size: 1.1em;
  color: #ccc;
  margin-bottom: 40px;
}

/* Courses Container */
.course-container1 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}



/* Individual Course Cards */
.course-card1 {
  width: 340px;
  height: 420px;
  border-radius: 20px;
  padding: 25px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(120, 50, 255, 0.2);
}

.course-card1::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 180deg, #ff007a, #a569ff, #00fff6, #ff007a);
  animation: rotate 5s linear infinite;
  z-index: 0;
  opacity: 0.15;
}

.course-card1:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 40px rgba(150, 70, 255, 0.4);
}



/* Inner content */
.course-content1 {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.course-content1 h2 {
  font-size: 1.8em;
  background: linear-gradient(90deg, #ff007a, #a569ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.course-content1 p {
  color: #ccc;
  font-size: 1em;
  line-height: 1.5;
  padding: 0 10px;
}

.btn {
  background: linear-gradient(90deg, #ff007a, #a569ff);
  color: #fff;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn:hover {
  background: linear-gradient(90deg, #a569ff, #00fff6);
  transform: scale(1.05);
}


.course-card1.ai {
  border: 2px solid rgba(0, 255, 255, 0.3);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.15);
}

.course-card1.dsa {
  border: 2px solid rgba(255, 0, 120, 0.3);
  box-shadow: 0 0 30px rgba(255, 0, 120, 0.15);
}



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




@media (max-width: 1024px) {
  .section-header h1 {
    font-size: 2em;
  }
  .course-container1 {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .course-card1 {
    width: 90%;
    height: auto;
    padding: 30px 15px;
  }

  .section-header h1 {
    font-size: 1.8em;
  }
  .section-header p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .section-header h1 {
    font-size: 1.5em;
  }

  .btn {
    font-size: 0.9em;
    padding: 10px 20px;
  }
}



.strip-gradient {
  width: 100vw;
  margin: 10px;
  height: 6px;
  border-radius: 10px;
  background: linear-gradient(270deg, #ff007a, #a569ff, #00fff6);
  background-size: 600% 600%;
  animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


.free_course {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 40px;
  width: 100%;
  margin: 10px auto;
  padding: 10px;
  box-sizing: border-box;
}


@media (max-width: 992px) {
  .free_course {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}


@media (max-width: 600px) {
  .free_course {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}






