/* ---------- GLOBAL ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
}

/* ---------- GLOWING EFFECTS ---------- */
.glow {
    text-shadow: 0 0 10px rgba(177, 121, 240, 0.7),
                 0 0 20px rgba(177, 121, 240, 0.5),
                 0 0 30px rgba(177, 121, 240, 0.3);
}

.glow-box {
    box-shadow: 0 0 15px rgba(177, 121, 240, 0.5),
                0 0 30px rgba(177, 121, 240, 0.3);
}

/* ---------- RUNNING TICKER ---------- */
.ticker {
    background: linear-gradient(90deg, #7b2ff7, #1f005c);
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 0 20px rgba(123, 47, 247, 0.7);
}

.ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 20s linear infinite;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ---------- FLOATING ICONS ---------- */
.icon {
    position: absolute;
    font-size: 2.5rem;
    opacity: .15;
    animation: float 15s ease-in-out infinite;
    z-index: 0;
    filter: drop-shadow(0 0 10px rgba(177, 121, 240, 0.5));
}

.icon:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.icon:nth-child(2) { top: 30%; left: 60%; animation-delay: 2s; }
.icon:nth-child(3) { top: 50%; left: 40%; animation-delay: 4s; }
.icon:nth-child(4) { top: 70%; left: 80%; animation-delay: 6s; }
.icon:nth-child(5) { top: 20%; left: 80%; animation-delay: 1s; }
.icon:nth-child(6) { top: 80%; left: 20%; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-25px); }
}

/* ---------- HEADER ---------- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(26, 26, 26, 0.9);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(177, 121, 240, 0.2);
    box-shadow: 0 0 20px rgba(177, 121, 240, 0.3);
}
.brand {
    color: #a855f7;
    font-size: 28px;
    font-weight: 900;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
    transition: all 0.3s ease;
}
.brand:hover {
    text-shadow: 
        0 0 15px rgba(168, 85, 247, 0.8),
        0 0 25px rgba(168, 85, 247, 0.6),
        0 0 35px rgba(168, 85, 247, 0.4);
    transform: scale(1.05);
}

nav a {
    margin-left: 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
}

nav a:hover {
    color: #b179f0;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #7b2ff7, #1f005c);
    transition: width 0.3s;
    box-shadow: 0 0 10px rgba(123, 47, 247, 0.7);
}

nav a:hover::after {
    width: 100%;
}

.btn {
    padding: 12px 28px;
    background: linear-gradient(90deg, #7b2ff7, #1f005c);
    border-radius: 12px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(123, 47, 247, 0.7);
}

.btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
    box-shadow: 0 0 25px rgba(123, 47, 247, 0.9);
}

/* ---------- HERO ---------- */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(120deg, #1a0f3f, #3a0f3f, #1a0a0a);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(177, 121, 240, 0.2);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 0 20px rgba(177, 121, 240, 0.7);
}

.hero .highlight {
    color: #b179f0;
    text-shadow: 0 0 10px rgba(177, 121, 240, 0.7),
                 0 0 20px rgba(177, 121, 240, 0.5),
                 0 0 30px rgba(177, 121, 240, 0.3);
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

/* ---------- KNOWLEDGE ---------- */
.knowledge {
    padding: 80px 20px;
    text-align: center;
    position: relative;
    background: linear-gradient(120deg, #0a0a0a, #1a0a0a);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 0 10px rgba(177, 121, 240, 0.7);
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: #b179f0;
    text-shadow: 0 0 10px rgba(177, 121, 240, 0.7);
}

.knowledge-sites {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.site {
    padding: 30px 20px;
    background: linear-gradient(135deg, #1a0f3f, #3a0f3f);
    border-radius: 16px;
    min-width: 250px;
    flex: 1;
    max-width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2),
                0 0 15px rgba(177, 121, 240, 0.3);
    border: 1px solid rgba(177, 121, 240, 0.2);
}

.site:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3),
                0 0 25px rgba(177, 121, 240, 0.5);
}

.site i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #b179f0;
    text-shadow: 0 0 10px rgba(177, 121, 240, 0.7);
}

.site h3 {
    color: #b179f0;
    margin-bottom: 10px;
    font-size: 1.4rem;
    text-shadow: 0 0 10px rgba(177, 121, 240, 0.5);
}

.site p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

/* ---------- COURSES 3D CUBES ---------- */
.courses {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(120deg, #0a0a0a, #1a0a0a);
    position: relative;
    overflow: hidden;
}

.courses::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(177, 121, 240, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(123, 47, 247, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(58, 15, 63, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    position: relative;
}

.highlight {
    background: linear-gradient(45deg, #b179f0, #7b2ff7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Pair Container Layout */
.courses-pair-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.course-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.cube-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    perspective: 1200px;
    margin: 20px;
    transform-style: preserve-3d;
}

/* Animated Cube */
.cube {
    position: relative;
    width: 200px;
    height: 200px;
    transform-style: preserve-3d;
    animation: spin 12s linear infinite;
    margin-bottom: 20px;
    transform-origin: center;
}

.cube:hover {
    animation-duration: 6s;
}

.cube-face {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    color: #ffffff;
    padding: 1rem;
    backface-visibility: hidden;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(177, 121, 240, 0.3),
        inset 0 0 20px rgba(177, 121, 240, 0.2);
    border: 1px solid rgba(177, 121, 240, 0.3);
    transition: all 0.3s ease;
    line-height: 1.3;
    font-size: 0.9rem;
}

.cube-face:hover {
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.6),
        0 0 25px rgba(177, 121, 240, 0.5),
        inset 0 0 30px rgba(177, 121, 240, 0.3);
}

/* Cube Face Positions with Your Colors */
.cube-face.front {
    background: linear-gradient(135deg, #3a0f3f, #1a0f3f);
    transform: translateZ(100px);
}

.cube-face.back {
    background: linear-gradient(135deg, #1a0a0a, #3a0f3f);
    transform: rotateY(180deg) translateZ(100px);
}

.cube-face.right {
    background: linear-gradient(135deg, #1f005c, #3a0f3f);
    transform: rotateY(90deg) translateZ(100px);
}

.cube-face.left {
    background: linear-gradient(135deg, #3a0f3f, #1f005c);
    transform: rotateY(-90deg) translateZ(100px);
}

.cube-face.top {
    background: linear-gradient(135deg, #7b2ff7, #3a0f3f);
    transform: rotateX(90deg) translateZ(100px);
}

.cube-face.bottom {
    background: linear-gradient(135deg, #3a0f3f, #7b2ff7);
    transform: rotateX(-90deg) translateZ(100px);
}

/* Cube Rotation Animation */
@keyframes spin {
    0% { 
        transform: rotateY(0deg) rotateX(10deg); 
    }
    100% { 
        transform: rotateY(360deg) rotateX(10deg); 
    }
}

/* Course Info Styles */
.course-info {
    margin-top: 20px;
    text-align: center;
    width: 100%;
    background: rgba(26, 10, 26, 0.7);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(177, 121, 240, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    max-width: 280px;
}

.course-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(177, 121, 240, 0.2);
    border-color: rgba(177, 121, 240, 0.6);
}

.course-info h3 {
    color: #b179f0;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(177, 121, 240, 0.5);
    font-size: 1.4rem;
    font-weight: 600;
}

.course-info p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Staggered Animations */
.course-pair:nth-child(1) .cube-wrapper:nth-child(1) .cube {
    animation-delay: 0s;
}

.course-pair:nth-child(1) .cube-wrapper:nth-child(2) .cube {
    animation-delay: -3s;
}

.course-pair:nth-child(2) .cube-wrapper:nth-child(1) .cube {
    animation-delay: -6s;
}

.course-pair:nth-child(2) .cube-wrapper:nth-child(2) .cube {
    animation-delay: -9s;
}

/* Responsive Design */
@media (max-width: 968px) {
    .course-pair {
        gap: 2rem;
    }
    
    .cube {
        width: 180px;
        height: 180px;
    }
    
    .cube-face {
        font-size: 0.85rem;
        padding: 0.8rem;
    }
    
    .cube-face.front {
        transform: translateZ(90px);
    }
    
    .cube-face.back {
        transform: rotateY(180deg) translateZ(90px);
    }
    
    .cube-face.right {
        transform: rotateY(90deg) translateZ(90px);
    }
    
    .cube-face.left {
        transform: rotateY(-90deg) translateZ(90px);
    }
    
    .cube-face.top {
        transform: rotateX(90deg) translateZ(90px);
    }
    
    .cube-face.bottom {
        transform: rotateX(-90deg) translateZ(90px);
    }
    
    .course-info {
        max-width: 240px;
        padding: 1.2rem;
    }
    
    .course-info h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .courses {
        padding: 60px 15px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .courses-pair-container {
        gap: 3rem;
    }
    
    .course-pair {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cube-wrapper {
        gap: 1.5rem;
    }
    
    .cube {
        width: 160px;
        height: 160px;
    }
    
    .cube-face {
        font-size: 0.8rem;
        padding: 0.7rem;
    }
    
    .cube-face.front {
        transform: translateZ(80px);
    }
    
    .cube-face.back {
        transform: rotateY(180deg) translateZ(80px);
    }
    
    .cube-face.right {
        transform: rotateY(90deg) translateZ(80px);
    }
    
    .cube-face.left {
        transform: rotateY(-90deg) translateZ(80px);
    }
    
    .cube-face.top {
        transform: rotateX(90deg) translateZ(80px);
    }
    
    .cube-face.bottom {
        transform: rotateX(-90deg) translateZ(80px);
    }
    
    .course-info {
        max-width: 220px;
        padding: 1rem;
    }
    
    .course-info h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .cube {
        width: 140px;
        height: 140px;
    }
    
    .cube-face {
        font-size: 0.75rem;
        padding: 0.6rem;
    }
    
    .cube-face.front {
        transform: translateZ(70px);
    }
    
    .cube-face.back {
        transform: rotateY(180deg) translateZ(70px);
    }
    
    .cube-face.right {
        transform: rotateY(90deg) translateZ(70px);
    }
    
    .cube-face.left {
        transform: rotateY(-90deg) translateZ(70px);
    }
    
    .cube-face.top {
        transform: rotateX(90deg) translateZ(70px);
    }
    
    .cube-face.bottom {
        transform: rotateX(-90deg) translateZ(70px);
    }
}

/* Enhanced Visual Effects */
.cube-face::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(177, 121, 240, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.cube-face:hover::before {
    opacity: 1;
}

/* Additional Glow Effects */
.cube-wrapper:hover .course-info h3 {
    text-shadow: 0 0 15px rgba(177, 121, 240, 0.7);
}

/* ---------- PROJECTS ---------- */
.projects {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(120deg, #1a0a0a, #0a0a0a);
}

.project-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.project-cards .card {
    background: linear-gradient(135deg, #1a0f3f, #3a0f3f);
    padding: 30px 20px;
    border-radius: 16px;
    min-width: 250px;
    flex: 1;
    max-width: 300px;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2),
                0 0 15px rgba(177, 121, 240, 0.3);
    border: 1px solid rgba(177, 121, 240, 0.2);
}

.project-cards .card:hover {
    transform: scale(1.05);
    opacity: 0.9;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3),
                0 0 25px rgba(177, 121, 240, 0.5);
}

.card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #b179f0;
    text-shadow: 0 0 10px rgba(177, 121, 240, 0.7);
}

.card h3 {
    color: #b179f0;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(177, 121, 240, 0.5);
}


 /* MENTORS SECTION */
.mentors-section {
  position: relative;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0f0f0f 100%);
  overflow: hidden;
}

.mentors-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(177, 121, 240, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(123, 47, 247, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-header .highlight {
  color: #b179f0;
  text-shadow: 0 0 15px rgba(177, 121, 240, 0.6);
}

.section-header p {
  color: #ccc;
  font-size: 1.2rem;
  margin-top: 0.8rem;
}

/* MENTOR CARDS GRID */
.mentor-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  justify-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

/* MENTOR CARD WRAPPER */
.mentor-card-wrapper {
  perspective: 1500px;
  width: 100%;
  max-width: 380px;
  animation: floatCard 6s ease-in-out infinite;
}

.mentor-card-wrapper:nth-child(2) {
  animation-delay: -3s;
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* MENTOR CARD */
.mentor-card {
  position: relative;
  width: 100%;
  height: 500px;
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 10px 30px rgba(177, 121, 240, 0.15);
}

.mentor-card:hover {
  box-shadow: 0 25px 60px rgba(177, 121, 240, 0.35);
  transform: rotateY(5deg) rotateX(5deg) scale(1.02);
}

/* CARD INNER FLIP */
.card-inner {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 1s cubic-bezier(0.25, 1, 0.35, 1);
}

.mentor-card:hover .card-inner {
  transform: rotateY(180deg);
}

/* CARD FRONT & BACK */
.card-front,
.card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
}

/* CARD FRONT */
.card-front {
  background: linear-gradient(145deg, #181818, #0f0f0f);
  border: 1px solid rgba(177, 121, 240, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.5rem;
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(circle at center, rgba(177, 121, 240, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mentor-card:hover .card-glow {
  opacity: 1;
}

/* MENTOR IMAGE */
.mentor-image {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  border: 3px solid #b179f0;
  background: radial-gradient(circle at 30% 30%, #b179f0 0%, #111 100%);
  box-shadow: 
    0 0 30px rgba(177, 121, 240, 0.4),
    inset 0 0 20px rgba(177, 121, 240, 0.2);
  animation: pulseAvatar 4s ease-in-out infinite;
}

@keyframes pulseAvatar {
  0%, 100% {
    box-shadow: 0 0 25px rgba(177, 121, 240, 0.4);
  }
  50% {
    box-shadow: 0 0 45px rgba(177, 121, 240, 0.7);
  }
}

.mentor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.5s ease;
}

.mentor-card:hover .mentor-img {
  transform: scale(1.1);
}

.avatar-shine {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(255, 255, 255, 0.25),
    transparent 40%,
    rgba(255, 255, 255, 0.25)
  );
  animation: spinShine 6s linear infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}

@keyframes spinShine {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.tech-icons {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.tech-icon {
  background: linear-gradient(135deg, #b179f0, #7b2ff7);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  box-shadow: 0 0 15px rgba(177, 121, 240, 0.6);
  animation: techFloat 3.5s ease-in-out infinite;
}

@keyframes techFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.tech-icon:nth-child(2) {
  animation-delay: 1s;
}
.tech-icon:nth-child(3) {
  animation-delay: 2s;
}

/* MENTOR INFO */
.mentor-info {
  text-align: center;
  color: #fff;
  width: 100%;
}

.mentor-info h3 {
  font-size: 1.5rem;
  color: #b179f0;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.mentor-role {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.mentor-stats {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.stat {
  text-align: center;
  background: rgba(177, 121, 240, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(177, 121, 240, 0.3);
}

.stat-number {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #b179f0;
}

.stat-label {
  font-size: 0.8rem;
  color: #ccc;
}

.companies {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.company-badge {
  background: rgba(177, 121, 240, 0.1);
  color: #b179f0;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  border: 1px solid rgba(177, 121, 240, 0.3);
}

.hover-hint {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  color: #b179f0;
  font-size: 0.8rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.mentor-card:hover .hover-hint {
  opacity: 0;
}

.hint-arrow {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

/* CARD BACK */
.card-back {
  background: linear-gradient(135deg, #b179f0, #7b2ff7);
  color: #fff;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 1.5rem;
  overflow: hidden;
}

.back-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  opacity: 0.3;
}

.back-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.back-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #fff;
}

.back-content > p {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.expertise h4 {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.skill-tag {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.skill-tag:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.achievements {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.achievement {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.8rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.achievement:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(5px);
}

.achievement-icon {
  font-size: 1rem;
}

/* FEATURES SECTION */
.features {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 60% 40%, rgba(123, 47, 247, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(177, 121, 240, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.card {
  position: relative;
  background: rgba(26, 10, 26, 0.7);
  padding: 2.5rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(177, 121, 240, 0.2);
  transition: all 0.4s ease;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.card:hover {
  transform: translateY(-10px);
  border-color: rgba(177, 121, 240, 0.5);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(177, 121, 240, 0.3);
}

.card-hover-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(177, 121, 240, 0.1), transparent);
  transition: left 0.6s ease;
}

.card:hover .card-hover-effect {
  left: 100%;
}

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #b179f0, #7b2ff7);
  box-shadow: 0 10px 25px rgba(177, 121, 240, 0.3);
  transition: all 0.3s ease;
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 35px rgba(177, 121, 240, 0.5);
}

.custom-icon::before {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  background: #fff;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.custom-icon.rocket::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2.5s4.5 2.04 4.5 10.5c0 2.49-1.04 4.5-1.04 4.5H8.54S7.5 15.49 7.5 13C7.5 4.54 12 2.5 12 2.5zm2 8.5h-4v2h4v-2zm-4 4h4v2h-4v-2z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2.5s4.5 2.04 4.5 10.5c0 2.49-1.04 4.5-1.04 4.5H8.54S7.5 15.49 7.5 13C7.5 4.54 12 2.5 12 2.5zm2 8.5h-4v2h4v-2zm-4 4h4v2h-4v-2z'/%3E%3C/svg%3E");
}

.custom-icon.ai::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 15h2v2h-2v-2zm3-10h-2v8h2V7z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 15h2v2h-2v-2zm3-10h-2v8h2V7z'/%3E%3C/svg%3E");
}

.custom-icon.target::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-13h2v6h-2V7zm0 8h2v2h-2v-2z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-13h2v6h-2V7zm0 8h2v2h-2v-2z'/%3E%3C/svg%3E");
}

.custom-icon.mentor::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
}

.card h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.card p {
  color: #ccc;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .mentors-section,
  .features {
    padding: 4rem 1rem;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .mentor-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .mentor-card {
    height: 460px;
  }
  
  .mentor-image {
    width: 120px;
    height: 120px;
  }
  
  .cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .card {
    padding: 2rem 1rem;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  .mentor-card {
    height: 440px;
  }
  
  .mentor-image {
    width: 100px;
    height: 100px;
  }
  
  .mentor-info h3 {
    font-size: 1.3rem;
  }
  
  .card-icon {
    width: 60px;
    height: 60px;
  }
  
  .custom-icon::before {
    width: 30px;
    height: 30px;
  }
}
/* ===== ENHANCED PLATFORM INTRO ===== */
.platform-intro {
  padding: 5rem 10%;
  background: rgba(10, 10, 10, 0.9);
  position: relative;
  overflow: hidden;
}

.platform-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(177, 121, 240, 0.05),
    transparent
  );
  animation: platformShine 6s infinite;
}

@keyframes platformShine {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}

.intro-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.intro-text {
  flex: 1;
}

.intro-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.intro-text h3 {
  font-size: 1.5rem;
  color: #b179f0;
  margin-bottom: 1.5rem;
}

.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  background: rgba(177, 121, 240, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  border: 1px solid #b179f0;
}

.premium-badge span:first-child {
  background: #b179f0;
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
}

.coming-soon {
  font-size: 0.9rem;
  font-weight: 500;
  color: #ccc;
}

.intro-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #ccc;
  line-height: 1.6;
}

.features-list {
  list-style: none;
}

.features-list li {
  padding: 0.5rem 0;
  font-size: 1.1rem;
  position: relative;
  padding-left: 3rem;
  display: flex;
  align-items: center;
  color: #fff;
}

.check-icon {
  width: 20px;
  height: 20px;
  background: #b179f0;
  border-radius: 50%;
  margin-right: 1rem;
  position: relative;
}

.check-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%) rotate(45deg);
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
}

.intro-visual {
  flex: 1;
  position: relative;
  height: 400px;
}

.platform-showcase {
  position: relative;
  width: 100%;
  height: 100%;
}

.showcase-item {
  position: absolute;
  background: rgba(26, 10, 26, 0.8);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(177, 121, 240, 0.3);
  text-align: center;
  transition: all 0.3s ease;
  animation: showcaseFloat 6s infinite ease-in-out;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4),
              0 0 15px rgba(177, 121, 240, 0.3);
}

.showcase-item:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6),
              0 0 25px rgba(177, 121, 240, 0.5);
  border-color: rgba(177, 121, 240, 0.6);
}

.item-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.item-2 {
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  animation-delay: 2s;
}

.item-3 {
  bottom: 10%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes showcaseFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.showcase-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
}

.showcase-icon.code::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      90deg,
      #b179f0 33%,
      transparent 33%,
      transparent 66%,
      #b179f0 66%
    ),
    linear-gradient(
      90deg,
      #b179f0 33%,
      transparent 33%,
      transparent 66%,
      #b179f0 66%
    ),
    linear-gradient(
      90deg,
      #b179f0 33%,
      transparent 33%,
      transparent 66%,
      #b179f0 66%
    );
  background-size: 100% 33%;
  background-position: 0 0, 0 50%, 0 100%;
  background-repeat: no-repeat;
}

.showcase-icon.project::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      45deg,
      transparent 40%,
      #b179f0 40%,
      #b179f0 60%,
      transparent 60%
    ),
    linear-gradient(
      -45deg,
      transparent 40%,
      #b179f0 40%,
      #b179f0 60%,
      transparent 60%
    );
  background-size: 50% 50%;
  background-position: 0 0, 100% 0;
  background-repeat: no-repeat;
}

.showcase-icon.career::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 50% 30%,
      #b179f0 8px,
      transparent 8px
    ),
    linear-gradient(
      90deg,
      transparent 40%,
      #b179f0 40%,
      #b179f0 60%,
      transparent 60%
    );
  background-repeat: no-repeat;
}

/* Responsive for platform intro */
@media (max-width: 968px) {
  .intro-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .intro-visual {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .platform-intro {
    padding: 3rem 5%;
  }
  
  .intro-text h2 {
    font-size: 2rem;
  }
  
  .intro-text h3 {
    font-size: 1.3rem;
  }
  
  .features-list li {
    font-size: 1rem;
    padding-left: 2.5rem;
  }
}
/* ---------- REVIEWS ---------- */
.reviews {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(120deg, #0a0a0a, #1a0a0a);
}

.review-container {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 0;
    scrollbar-width: none;
}

.review-container::-webkit-scrollbar {
    display: none;
}

.review-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 16px;
    min-width: 300px;
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4),
                0 0 15px rgba(177, 121, 240, 0.3);
    flex-shrink: 0;
    border: 1px solid rgba(177, 121, 240, 0.2);
}

.review-card p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
}

.review-card span {
    display: block;
    margin-top: 8px;
    font-weight: 700;
    color: #b179f0;
    text-shadow: 0 0 10px rgba(177, 121, 240, 0.5);
}

.stars {
    color: #ffc107;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.7);
}

/* ---------- QUERY FORM ---------- */
.query {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(120deg, #1a0a0a, #0a0a0a);
}

.query form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a0f3f, #3a0f3f);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(177, 121, 240, 0.4);
    border: 1px solid rgba(177, 121, 240, 0.2);
}

.query input, .query textarea {
    padding: 15px;
    margin: 10px 0;
    border-radius: 12px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 0 10px rgba(177, 121, 240, 0.2);
}

.query input::placeholder, .query textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.query button {
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(90deg, #7b2ff7, #1f005c);
    color: #fff;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 0 15px rgba(123, 47, 247, 0.7);
}

.query button:hover {
    transform: scale(1.05);
    opacity: 0.9;
    box-shadow: 0 0 25px rgba(123, 47, 247, 0.9);
}

/* ---------- ENROLL ---------- */
.enroll {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #1a0f3f, #3a0f3f);
    box-shadow: 0 0 30px rgba(177, 121, 240, 0.3);
}

.enroll-content {
    max-width: 700px;
    margin: 0 auto;
}

.enroll h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(177, 121, 240, 0.7);
}

.enroll p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    min-width: 200px;
    box-shadow: 0 0 15px rgba(177, 121, 240, 0.2);
    border: 1px solid rgba(177, 121, 240, 0.2);
}

.feature i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #b179f0;
    text-shadow: 0 0 10px rgba(177, 121, 240, 0.7);
}

/* ---------- FOOTER ---------- */
footer {
    background: #1a1a1a;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(177, 121, 240, 0.2);
    box-shadow: 0 0 20px rgba(177, 121, 240, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #b179f0;
    text-shadow: 0 0 10px rgba(177, 121, 240, 0.7);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icons a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #b179f0;
    text-shadow: 0 0 10px rgba(177, 121, 240, 0.7);
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    nav a {
        margin: 0 10px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
} /* These styles are only for the enrollment.html page 

/* ---------- ENROLLMENT PAGE SPECIFIC STYLES ---------- */

/* Active nav link */
nav a.active {
    color: #b179f0;
    text-shadow: 0 0 10px rgba(177, 121, 240, 0.7);
}
/* ---------- ENROLLMENT PAGE SPECIFIC STYLES ---------- */

/* Active nav link */
nav a.active {
    color: #b179f0;
    text-shadow: 0 0 10px rgba(177, 121, 240, 0.7);
}

nav a.active::after {
    width: 100%;
}

/* Enrollment Hero */
.enroll-hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(120deg, #1a0f3f, #3a0f3f, #1a0a0a);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(177, 121, 240, 0.2);
}

.enroll-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.enroll-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 0 20px rgba(177, 121, 240, 0.7);
}

.enroll-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Enrollment Form Section */
.enrollment-form-section {
    padding: 80px 20px;
    background: linear-gradient(120deg, #0a0a0a, #1a0a0a);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.form-container {
    background: linear-gradient(135deg, #1a0f3f, #3a0f3f);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(177, 121, 240, 0.4);
    border: 1px solid rgba(177, 121, 240, 0.2);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(177, 121, 240, 0.7);
}

.form-header p {
    color: rgba(255, 255, 255, 0.7);
}

/* Form Elements */
.enrollment-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #fdfbff;
    text-shadow: 0 0 10px rgb(162, 135, 223);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border-radius: 12px;
    border: none;
    background: rgba(251, 251, 251, 0.1);
    color: #d888fd;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 0 10px rgba(2, 2, 2, 0.2);
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 15px rgb(4, 4, 4);
    background: rgba(241, 241, 241, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgb(100, 100, 100);
}

.input-hint {
    font-size: 0.8rem;
    color: rgb(0, 0, 0);
    margin-top: 5px;
}

/* Checkbox and Radio Groups */
.checkbox-group,
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 5px;
}

.checkbox-item,
.radio-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-item input,
.radio-item input {
    width: auto;
    margin: 0;
}

.checkbox-item label,
.radio-item label {
    margin: 0;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.9);
}

.terms {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.terms label {
    margin: 0;
}

.terms a {
    color: #b179f0;
    text-decoration: none;
}

.terms a:hover {
    text-decoration: underline;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    margin-top: 10px;
    background: linear-gradient(90deg, #7b2ff7, #1f005c);
    box-shadow: 0 0 15px rgba(123, 47, 247, 0.7);
}

.btn-submit:hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px rgba(123, 47, 247, 0.9);
}

/* Enrollment Benefits */
.enrollment-benefits {
    background: linear-gradient(135deg, #1a0f3f, #3a0f3f);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(177, 121, 240, 0.4);
    border: 1px solid rgba(177, 121, 240, 0.2);
    position: sticky;
    top: 100px;
}

.enrollment-benefits h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 0 0 10px rgba(177, 121, 240, 0.7);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s;
    border: 1px solid rgba(177, 121, 240, 0.1);
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2),
                0 0 10px rgba(177, 121, 240, 0.3);
}

.benefit-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #b179f0;
    text-shadow: 0 0 10px rgba(177, 121, 240, 0.7);
}

.benefit-item h4 {
    color: #b179f0;
    margin-bottom: 10px;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(177, 121, 240, 0.5);
}

.benefit-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* ---------- RESPONSIVE STYLES ---------- */
@media (max-width: 968px) {
    .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .enrollment-benefits {
        position: static;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .enroll-hero h1 {
        font-size: 2.5rem;
    }
    
    .form-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .enrollment-form-section {
        padding: 60px 15px;
    }
    
    .form-container {
        padding: 25px 15px;
    }
    
    .enrollment-benefits {
        padding: 25px 15px;
    }
}
