/* Global Styles */
:root {
    --primary-color: #00ff8c;
    --secondary-color: #0077ff;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --light-bg: #121212;
    --lighter-bg: #1a1a1a;
    --text-color: #f0f0f0;
    --text-muted: #a0a0a0;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --shadow: 0 5px 15px rgba(0, 255, 140, 0.1);
    --glow: 0 0 10px rgba(0, 255, 140, 0.5);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
    text-shadow: var(--glow);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--darker-bg);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--glow);
}

.btn-apply {
    background-color: var(--primary-color);
    color: var(--darker-bg);
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    font-weight: 700;
}

.btn-apply:hover {
    background-color: var(--secondary-color);
    color: white;
}

.btn-notify {
    background-color: var(--light-bg);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
}

.btn-notify:hover {
    background-color: var(--primary-color);
    color: var(--darker-bg);
}

.btn-youtube {
    background-color: #ff0000;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
}

.btn-youtube:hover {
    background-color: #cc0000;
    color: white;
}

.btn-join {
    background-color: #25D366;
    color: white;
    margin-top: 1rem;
}

.btn-join:hover {
    background-color: #128C7E;
    color: white;
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--darker-bg);
    width: 100%;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* HEADER*/
/* HEADER STYLES */
.site-header {
    background: #000;
    padding: 20px 0;
    box-shadow: 0 0 10px #00ffc3;
    font-family: 'Share Tech Mono', monospace;
  }
  
  .logo-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .logo img {
    display: block;
  }
  
  .brand h1 {
    font-size: 24px;
    color: #00ffc3;
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 0 0 8px #00ffc3;
  }
  
  .brand h2 {
    font-size: 14px;
    color: #aaa;
    margin: 0;
    letter-spacing: 1px;
  }
  
  /* NAVIGATION */
  .main-nav {
    margin-top: 15px;
  }
  
  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding-left: 0;
    margin: 10px 0 0;
  }
  
  .nav-links li {
    margin: 0 12px;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    transition: color 0.3s;
    text-transform: uppercase;
    position: relative;
  }
  
  .nav-links li a::after {
    content: '';
    display: block;
    height: 2px;
    background: #00ffc3;
    width: 0;
    transition: width 0.3s;
    position: absolute;
    bottom: -5px;
    left: 0;
  }
  
  .nav-links li a:hover::after {
    width: 100%;
  }
  
  /* MOBILE MENU */
  .mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  
  .mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: #00ffc3;
    border-radius: 2px;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .nav-links {
      flex-direction: column;
      align-items: center;
      display: none;
      margin-top: 20px;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .mobile-menu-btn {
      display: flex;
      margin-top: 10px;
    }
  }
.mobile-menu-btn span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1526374965328-7f61d4dc18c5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.8), rgba(10, 10, 10, 0.95));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

.hero-content .btn {
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

/* Founder Section */
.founder {
    background-color: #0d0d0d;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    font-family: 'Share Tech Mono', monospace;
  }
  
  .founder .section-title {
    font-size: 36px;
    color: #00ffcc;
    margin-bottom: 40px;
    text-shadow: 0 0 10px #00ffcc;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .founder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .founder-image img {
    width: 220px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.2);
    transition: transform 0.3s ease;
  }
  
  .founder-image img:hover {
    transform: scale(1.05);
  }
  
  .founder-info {
    max-width: 600px;
    text-align: left;
  }
  
  .founder-info h3 {
    font-size: 24px;
    color: #00ffcc;
    margin-bottom: 15px;
  }
  
  .founder-info p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.6;
  }
  
  .founder-social {
    margin-top: 20px;
  }
  
  .founder-social a {
    display: inline-block;
    margin-right: 15px;
    color: #00ffcc;
    font-size: 20px;
    transition: color 0.3s ease;
  }
  
  .founder-social a:hover {
    color: #fff;
  }
  
  /* Responsive */
  @media (min-width: 768px) {
    .founder-content {
      flex-direction: row;
      justify-content: center;
      align-items: center;
    }
  
    .founder-info {
      text-align: left;
    }
  }
/* Mentors Section */
/* Mentors Section */
.mentors {
    padding: 80px 0;
    background-color: #000;
  }
  
  .mentors .section-title {
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
  }
  
  .mentors .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00ff87, #00c3ff);
  }
  
  /* Mentor Cards Grid */
  .mentors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
    padding: 0 20px;
  }
  
  /* Mentor Card Styling */
  .mentor-card {
    background: #111;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 255, 200, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
  }
  
  .mentor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(0, 255, 200, 0.4);
  }
  
  .mentor-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  
  .mentor-card h3 {
    color: #00ffcc;
    font-size: 20px;
    margin: 10px 0 5px;
  }
  
  .mentor-card .title {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .mentor-card .desc {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .mentor-card .social a {
    margin: 0 8px;
    color: #00ffcc;
    font-size: 18px;
    transition: color 0.3s ease;
  }
  
  .mentor-card .social a:hover {
    color: #fff;
  }

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--darker-bg);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.3rem;
    line-height: 1.8;
}

/* Objectives Section */
.objectives {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.objective-card {
    background-color: var(--lighter-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border-bottom: 3px solid transparent;
}

.objective-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--primary-color);
    box-shadow: var(--glow);
}

.objective-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.objective-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
/*Cources*/
/* COURSES SECTION */
.courses {
    padding: 80px 20px;
    background-color: #000;
    color: #fff;
    font-family: 'Share Tech Mono', monospace;
  }
  
  .courses .section-title {
    text-align: center;
    font-size: 36px;
    color: #00ffc3;
    text-shadow: 0 0 10px #00ffc3;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  /* Cards Grid */
  .course-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
  }
  
  /* Each Card */
  .course-card {
    background: #111;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 0 15px rgba(0, 255, 200, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 255, 200, 0.3);
  }
  
  .course-badge {
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    color: #000;
    background: #00ffcc;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 10px;
  }
  
  .advanced .course-badge {
    background: #ff004c;
    color: #fff;
  }
  
  /* Headings */
  .course-card h3 {
    font-size: 22px;
    color: #00ffcc;
    margin: 10px 0;
  }
  
  .course-card h4 {
    font-size: 18px;
    margin: 20px 0 10px;
    color: #00ffc3;
    border-bottom: 1px solid #222;
    padding-bottom: 5px;
  }
  
  .course-tagline {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 15px;
  }
  
  /* Feature List */
  .course-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
    text-align: left;
  }
  
  .course-features li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #ccc;
    display: flex;
    align-items: center;
  }
  
  .course-features li span {
    margin-right: 8px;
    font-size: 16px;
  }
  
  /* Highlights */
  .course-highlights {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    color: #00ffcc;
  }
  
  .course-highlights .highlight {
    display: flex;
    align-items: center;
  }
  
  .course-highlights .highlight span {
    margin-right: 8px;
  }
  
  /* Apply Button */
  .btn-apply {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 25px;
    border-radius: 30px;
    background: #00ffc3;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 0 10px #00ffc3;
  }
  
  .btn-apply:hover {
    background: #00c9a2;
    transform: scale(1.03);
    color: #000;
  }
.highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.highlight span {
    color: var(--primary-color);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: var(--darker-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--light-bg);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--lighter-bg);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}
/* Review*/
.student-reviews {
    background-color: #0d0d0d;
    color: #ffffff;
    padding: 80px 20px;
    font-family: 'Share Tech Mono', monospace;
    text-align: center;
  }
  
  .student-reviews .section-title {
    font-size: 36px;
    margin-bottom: 15px;
    color: #00ffc3;
    text-shadow: 0 0 10px #00ffc3;
  }
  
  .section-subtitle {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 16px;
    color: #ccc;
  }
  
  .reviews-counter {
    margin-bottom: 40px;
  }
  
  .counter {
    font-size: 36px;
    color: #00ffcc;
    font-weight: bold;
  }
  
  .counter-label {
    color: #aaa;
    font-size: 14px;
    margin-top: 5px;
  }
  
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
  }
  
  .review-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.1);
    transition: all 0.3s ease;
  }
  
  .review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 255, 204, 0.2);
  }
  
  .review-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  
  .review-info h3 {
    color: #00ffcc;
    margin-bottom: 5px;
  }
  
  .review-rating i {
    color: #ffcc00;
    margin: 0 1px;
  }
  
  .review-text {
    font-size: 14px;
    color: #ccc;
    margin: 10px 0 15px;
    line-height: 1.5;
  }
  
  .review-course {
    font-size: 12px;
    color: #888;
    font-style: italic;
  }
  
  .review-cta {
    margin-top: 50px;
  }
  
  .review-cta .btn-primary {
    padding: 12px 25px;
    background: #00ffcc;
    color: #000;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .review-cta .btn-primary:hover {
    background: #00d4a3;
    color: #000;
  }
.coming-soon {
    position: relative;
    opacity: 0.8;
}

.coming-soon-badge {
    background-color: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

/* YouTube Section */
/* YOUTUBE SECTION */
.youtube {
    background-color: #0a0a0a;
    color: #fff;
    padding: 80px 20px;
    font-family: 'Share Tech Mono', monospace;
  }
  
  .youtube .section-title {
    font-size: 36px;
    text-align: center;
    color: #ff0000;
    text-shadow: 0 0 10px #ff4d4d;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  
  .youtube-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 16px;
    color: #ccc;
    line-height: 1.7;
  }
  
  .youtube-spotlight {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #111;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.1);
    margin-bottom: 40px;
  }
  
  .youtube-spotlight h3 {
    font-size: 20px;
    color: #ff4d4d;
    margin-bottom: 10px;
  }
  
  .youtube-spotlight ul {
    padding-left: 20px;
    color: #eee;
    font-size: 14px;
  }
  
  .youtube-spotlight iframe {
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
  }
  
  .youtube-topics {
    background: #1a1a1a;
    border-left: 4px solid #ff4d4d;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
  }
  
  .youtube-topics h3 {
    font-size: 18px;
    color: #00ffc3;
    margin-bottom: 10px;
  }
  
  .youtube-topics ul {
    list-style: none;
    padding-left: 0;
  }
  
  .youtube-topics ul li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #ddd;
  }
  
  /* Button */
  .btn-youtube {
    display: inline-block;
    padding: 12px 25px;
    background-color: #ff0000;
    color: #fff;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0 0 10px #ff4d4d;
    transition: background 0.3s, transform 0.3s;
    text-align: center;
  }
  
  .btn-youtube i {
    margin-right: 8px;
  }
  
  .btn-youtube:hover {
    background-color: #cc0000;
    transform: scale(1.05);
  }
  
  /* Responsive */
  @media (min-width: 768px) {
    .youtube-spotlight {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
  
    .spotlight-text {
      flex: 1;
      padding-right: 20px;
    }
  
    .spotlight-video {
      flex: 1;
    }
  }
/* Community Section */
.community {
    padding: 5rem 0;
    background-color: var(--darker-bg);
    text-align: center;
}

.community-content p {
    max-width: 700px;
    margin: 0 auto 1.5rem;
    font-size: 1.2rem;
}

.community-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.community-perks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}

.perk-card {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.perk-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow);
}

.perk-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.perk-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.counter-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.counter {
    text-align: center;
}

.counter-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.counter-label {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section */

/* CONTACT SECTION */
.contact {
    background-color: #0a0a0a;
    color: #fff;
    padding: 80px 20px;
    font-family: 'Share Tech Mono', monospace;
  }
  
  .contact .section-title {
    text-align: center;
    font-size: 36px;
    color: #00ffc3;
    text-shadow: 0 0 10px #00ffc3;
    margin-bottom: 40px;
  }
  
  .contact-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  
  /* Contact Info Block */
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }
  
  .contact-item i {
    font-size: 24px;
    color: #00ffc3;
    margin-bottom: 8px;
  }
  
  .contact-item p {
    font-size: 14px;
    color: #ccc;
  }
  
  .contact-item a {
    color: #00ffc3;
    text-decoration: underline;
  }
  
  /* Contact Form */
  .contact-form {
    background: #111;
    padding: 30px;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0, 255, 195, 0.1);
  }
  
  .contact-form h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #00ffc3;
    text-align: center;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #00ffc3;
    border-radius: 8px;
    background: #000;
    color: #fff;
    font-size: 14px;
    resize: none;
    transition: border 0.3s, box-shadow 0.3s;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: #00ffc3;
    box-shadow: 0 0 10px #00ffc3;
    outline: none;
  }
  
  /* Submit Button */
  .btn-submit {
    background-color: #00ffc3;
    color: #000;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 0 15px #00ffc3;
  }
  
  .btn-submit:hover {
    background-color: #00cfa0;
    transform: scale(1.03);
  }
  
  /* Responsive */
  @media (min-width: 768px) {
    .contact-content {
      flex-direction: row;
      justify-content: space-between;
    }
  
    .contact-info {
      flex: 1;
      align-items: flex-start;
      text-align: left;
    }
  
    .contact-form {
      flex: 1;
    }
  }
/* Footer */


/* Font Awesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

footer {
  background: linear-gradient(135deg, #050505, #0d0d0d);
  color: #e0e0e0;
  padding: 50px 20px 30px;
  font-family: 'Courier New', monospace;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #222;
  padding-bottom: 30px;
}

.footer-logo h3 {
  font-size: 30px;
  color: #00fff7;
  text-shadow: 0 0 5px #00fff7, 0 0 10px #00fff7;
  margin: 0;
}

.footer-logo p {
  font-size: 14px;
  color: #ccc;
  margin-top: 5px;
}

.footer-links h4,
.footer-social h4 {
  font-size: 20px;
  color: #00ffcc;
  margin-bottom: 15px;
  position: relative;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: #00ffcc;
  padding-left: 5px;
}

.social-icons a {
  color: #ccc;
  font-size: 22px;
  margin-right: 15px;
  transition: 0.4s ease-in-out;
}

.social-icons a:hover {
  color: #00fff7;
  transform: scale(1.2);
  text-shadow: 0 0 5px #00fff7, 0 0 10px #00fff7;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #888;
}

.footer-bottom .disclaimer {
  font-size: 12px;
  color: #999;
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links,
  .footer-social {
    margin-top: 30px;
  }

  .social-icons a {
    margin: 10px;
  }
}
  
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-bg);
    border-radius: 50%;
    color: var(--text-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--darker-bg);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--light-bg);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.disclaimer {
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .founder-content {
        flex-direction: column;
        text-align: center;
    }
    
    .founder-image {
        margin: 0 auto;
    }
    
    .founder-social {
        align-items: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .objective-card {
        padding: 1.5rem;
    }
    
    .course-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links h4::after,
    .footer-social h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .founder-info h3 {
        font-size: 1.8rem;
    }
    
    .counter-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
}