        :root {
            --white: #f0f4ff;
            --accent-teal: #64ffda;
            --accent-gold: #d4af37;
            --dark-blue: #0c1220;
            --darker-blue: #050811;
            --transition: all 0.4s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            overflow-x: hidden;
            background: linear-gradient(135deg, var(--dark-blue), #1a2440);
            color: #f0f4ff;
            min-height: 100vh;
            position: relative;
        }

        /* Stellar background */
        .stellar-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: radial-gradient(ellipse at center, var(--dark-blue) 0%, var(--darker-blue) 100%);
            overflow: hidden;
        }

        .star {
            position: absolute;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
            animation: twinkle 5s infinite ease-in-out;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        /* Elegant Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 100px;
            z-index: 1000;
            background: white;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 2rem;
            font-weight: 400;
            color: #000000;
            text-decoration: none;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .logo span {
            color: #d4af37;
            position: relative;
        }

        .logo span::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #d4af37;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
        }

        .logo:hover span::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin: 0 1.5rem;
        }

        .nav-links a {
            color: #000000;
            text-decoration: none;
            font-weight: 400;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #d4af37, #f9e076);
            transition: width 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
        }

        .nav-links a:hover {
            color: #0e0341;
        }

        .nav-links a:hover::after {
            width: 100%;
        }


        .nav-contact {
            background: linear-gradient(45deg, #d4af37, #f9e076);
            color: #1a2440;
            border: none;
            padding: 0.9rem 2.2rem;
            font-size: 1.05rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
            position: relative;
            overflow: hidden;
        }

        .nav-contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: 0.5s;
        }

        .nav-contact:hover::before {
            left: 100%;
        }

        .nav-contact:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
        }


    .contact-panel {
  position: fixed;
  top: 0;
  right: -110%;               
  width: 30%;
  height: 100%;
  background: linear-gradient(135deg, #0a1a3a 0%, #0f2a5a 100%);
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.5);
  padding: 30px 25px;
  box-sizing: border-box;
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1000;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #f0f4ff;
}

.contact-panel.active {
  right: 0;
}

/* Close button */
.close-btn1 {
  position: absolute;
  top: 15px;
  right: 15px;
  border: none;
  background: transparent;
  font-size: 1.8rem;
  color: #f0f4ff;
  cursor: pointer;
  transition: color 0.2s;
}
.close-btn1:hover {
  color: #1e90ff;
}

.contact-panel h2 {
  margin: 0 0 30px;
  font-size: 2.2rem;
  letter-spacing: 0.5px;
  padding-bottom: 15px;
  position: relative;
  font-weight: 600;
}

.contact-panel h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 4px;
  background: linear-gradient(to right, #6a11cb, #2575fc);
  border-radius: 2px;
}

/* Contact info */
.contact-panel p {
  margin: 18px 0;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-panel p a {
  color: #a8caff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-panel p a::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1e90ff;
  margin-right: 5px;
}

.contact-panel p a:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(30, 144, 255, 0.7);
}

/* Form */
.contact-panel form {
  margin-top: 35px;
}

.contact-panel label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  color: #d0e4ff;
}

.contact-panel input[type="email"],
.contact-panel textarea {
  width: 100%;
  resize: vertical;
  margin-bottom: 22px;
  padding: 16px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #eef6ff;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2);
  font-family: 'Poppins', sans-serif;
}

.contact-panel input[type="email"]::placeholder,
.contact-panel textarea::placeholder {
  color: #a8caff;
  opacity: 0.7;
}

.contact-panel input[type="email"]:focus,
.contact-panel textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 
    inset 0 2px 10px rgba(0, 0, 0, 0.2),
    0 0 0 3px rgba(106, 17, 203, 0.3);
}

/* Send button */
.contact-panel button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 6px 20px rgba(37, 117, 252, 0.4);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.contact-panel button[type="submit"]::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;
}

.contact-panel button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 117, 252, 0.6);
}

.contact-panel button[type="submit"]:hover::before {
  left: 100%;
}

.contact-panel button[type="submit"]:active {
  transform: translateY(1px);
}

.contact-panel button[type="submit"] i {
  font-size: 1.2rem;
}



#successBox {
  /* Original positioning styles (unchanged) */
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2000;
  
  /* New visual styling */
  background: linear-gradient(135deg, #0c2461, #1e3799);
  color: #f8f9fa;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  max-width: 380px;
  width: 90%;
}

#successBox.show {
  display: block;
  opacity: 1;
  visibility: visible;
}

#successBox p {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

#closeSuccess {
  background-color: #4a69bd;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px;
}

#closeSuccess:hover {
  background-color: #6a89cc;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

#closeSuccess:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

        /* Mobile Navigation */
        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: none;
            color: #03133e;
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 1001;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn:hover {
            color: #f9e076;
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: rgba(15, 23, 42, 0.98);
            backdrop-filter: blur(20px);
            z-index: 1002;
            display: flex;
            flex-direction: column;
            padding: 120px 30px 40px;
            transition: right 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
            border-left: 1px solid rgba(192, 160, 80, 0.2);
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav-links {
            list-style: none;
            margin-top: 30px;
        }

        .mobile-nav-links li {
            margin-bottom: 25px;
        }

        .mobile-nav-links a {
            color: #d0d8f0;
            text-decoration: none;
            font-size: 1.4rem;
            font-weight: 500;
            display: block;
            padding: 12px 20px;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .mobile-nav-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
            transition: 0.5s;
        }

        .mobile-nav-links a:hover::before {
            left: 100%;
        }

        .mobile-nav-links a:hover {
            color: #f9e076;
            background: rgba(15, 23, 42, 0.6);
        }

        .mobile-nav .nav-contact {
            margin-top: 40px;
            width: 100%;
            text-align: center;
            padding: 1rem;
        }

        .close-nav-btn {
            position: absolute;
            top: 30px;
            right: 30px;
            background: transparent;
            border: none;
            color: #d0d8f0;
            font-size: 1.8rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .close-nav-btn:hover {
            color: #f9e076;
            transform: rotate(90deg);
        }

        .nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
            background: linear-gradient(rgba(12, 18, 32, 0.9), rgba(12, 18, 32, 0.7));
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
            position: relative;
            z-index: 2;
        }

        .hero-left {
            flex: 1;
            min-width: 300px;
            padding-top: 2rem;
        }

        .hero-right {
            flex: 1;
            min-width: 300px;
        }

        .hero h1 {
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--white);
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            color: var(--white);
            line-height: 1.7;
            max-width: 90%;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: var(--accent-teal);
            border: 2px solid var(--accent-teal);
            padding: 1rem 2.5rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            cursor: pointer;
            margin-top: 20px;
        }

        .cta-button:hover {
            background: rgba(100, 255, 218, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .stat-item {
            background: rgba(17, 34, 64, 0.6);
            padding: 1.8rem 1.5rem;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(100, 255, 218, 0.1);
        }

        .stat-item:hover {
            transform: translateY(-7px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
        }

        .stat-item .number {
            font-size: 2.3rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
        }

        .stat-item .number i {
            margin-right: 10px;
            font-size: 1.8rem;
            color: var(--accent-teal);
        }

        .stat-item .label {
            font-size: 0.95rem;
            color: var(--white);
            font-weight: 500;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }


@media (max-width: 768px) {
    .hero {
        margin-top: 100px;
    }
  .hero-content {
    flex-direction: column;
    gap: 2rem;
    padding: 0 15px;
  }

  .hero-left,
  .hero-right {
    width: 100%;
    min-width: auto;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
    max-width: 100%;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-item {
    padding: 1.5rem 1rem;
  }
}

/* Mobile / small screens */
@media (max-width: 480px) {
  .hero {
    padding-top: 60px;
  }

  .hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .stat-item .number {
    font-size: 2rem;
  }

  .stat-item .number i {
    font-size: 1.5rem;
    margin-right: 8px;
  }

  .stat-item .label {
    font-size: 0.9rem;
  }
}


        /* Projects Section */
        .projects {
            padding: 120px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--white);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-gold);
            border-radius: 2px;
        }

        .featured-container {
            display: flex;
            gap: 40px;
            align-items: center;
            margin-top: 4rem;
            position: relative;
            z-index: 2;
        }

        .featured-project {
            flex: 1;
            position: relative;
        }

        /* Project Card */
        .project-card {
            background: rgba(17, 34, 64, 0.6);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transition: var(--transition);
            position: relative;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
        }

        .card-image {
            height: 280px;
            overflow: hidden;
            position: relative;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .project-card:hover .card-image img {
            transform: scale(1.05);
        }

        .category-tag {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--accent-gold);
            color: #1a2440;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 2;
        }

        .card-content {
            padding: 2rem;
        }

        .card-content h3 {
            font-size: 1.8rem;
            margin-bottom: 0.8rem;
            color: var(--white);
        }

        .card-content p {
            color: #d0d8f0;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .project-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--accent-teal);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.1rem;
        }

        .project-link i {
            transition: var(--transition);
        }

        .project-link:hover {
            color: var(--accent-gold);
            gap: 12px;
        }

        .project-link:hover i {
            transform: translateX(5px);
        }

        @media(max-width: 768px) {
            .projects {
                margin-top: 170px;
            }
        }

        /* Instructor Section */
        .instructor-section {
            flex: 1;
            position: relative;
            padding: 30px;
            background: rgba(17, 34, 64, 0.6);
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            min-height: 400px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            z-index: 2;
        }

        .instructor-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 8px;
            background: linear-gradient(90deg, var(--accent-teal), var(--accent-gold));
            border-radius: 4px 4px 0 0;
        }

        .instructor-title {
            font-size: 2rem;
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .instructor-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--accent-teal);
            border-radius: 2px;
        }

        .instructor-content {
            margin-bottom: 2rem;
        }

        .instructor-content p {
            font-size: 1.1rem;
            margin-bottom: 1.2rem;
            line-height: 1.7;
            color: #d0d8f0;
        }

        .highlight {
            color: var(--accent-gold);
            font-weight: 600;
        }

        /* 3D Instructor Character */
        .instructor-character {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 300px;
            height: 300px;
            transform: translate(20%, 10%);
            z-index: 1;
            animation: float 6s ease-in-out infinite;
        }

        .character-body {
            position: absolute;
            width: 180px;
            height: 180px;
            background: linear-gradient(135deg, var(--accent-teal), var(--accent-gold));
            border-radius: 50%;
            bottom: 0;
            right: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .character-head {
            position: absolute;
            width: 80px;
            height: 80px;
            background: #f9d5bb;
            border-radius: 50%;
            bottom: 140px;
            right: 70px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .character-eye {
            position: absolute;
            width: 12px;
            height: 12px;
            background: #333;
            border-radius: 50%;
            top: 32px;
        }

        .eye-left {
            left: 20px;
        }

        .eye-right {
            right: 20px;
        }

        .character-mouth {
            position: absolute;
            width: 30px;
            height: 8px;
            background: #e75480;
            border-radius: 0 0 15px 15px;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
        }

        .character-arm {
            position: absolute;
            width: 15px;
            height: 100px;
            background: var(--accent-teal);
            border-radius: 10px;
            bottom: 30px;
            right: 190px;
            transform-origin: bottom;
            animation: wave 4s ease-in-out infinite;
            box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.1);
        }

        .character-hand {
            position: absolute;
            width: 25px;
            height: 25px;
            background: #f9d5bb;
            border-radius: 50%;
            top: 0;
            left: -5px;
        }

        .speech-bubble {
            position: absolute;
            background: white;
            padding: 20px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            max-width: 250px;
            top: 20px;
            left: -200px;
            z-index: 10;
            animation: pulse 2s infinite;
        }

        .speech-bubble::after {
            content: '';
            position: absolute;
            bottom: -15px;
            right: 30px;
            border-width: 15px 15px 0;
            border-style: solid;
            border-color: white transparent transparent;
        }

        .speech-bubble p {
            font-size: 1rem;
            margin: 0;
            color: var(--dark-blue);
            font-weight: 500;
        }

        /* Animations */
        @keyframes float {
            0% { transform: translate(20%, 10%); }
            50% { transform: translate(20%, 15%); }
            100% { transform: translate(20%, 10%); }
        }

        @keyframes wave {
            0% { transform: rotate(0deg); }
            25% { transform: rotate(15deg); }
            50% { transform: rotate(0deg); }
            75% { transform: rotate(-10deg); }
            100% { transform: rotate(0deg); }
        }

        @keyframes pulse {
            0% { box-shadow: 0 10px 30px rgba(100, 255, 218, 0.2); }
            50% { box-shadow: 0 15px 40px rgba(100, 255, 218, 0.3); }
            100% { box-shadow: 0 10px 30px rgba(100, 255, 218, 0.2); }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .navbar {
                padding: 15px 40px;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
            .featured-container {
                flex-direction: column;
            }
            .instructor-character {
                position: relative;
                transform: none;
                margin: 0 auto;
                height: 250px;
                width: 250px;
            }
            .character-body {
                width: 150px;
                height: 150px;
                right: 50px;
            }
            .character-head {
                width: 70px;
                height: 70px;
                bottom: 120px;
                right: 90px;
            }
            .speech-bubble {
                left: 160px;
                top: 0px;
            }
            .section-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .hero {
                overflow: visible;
            }
            .nav-links, .nav-contact:not(.mobile-nav .nav-contact) {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .section-title {
                font-size: 2.2rem;
            }
            .card-image {
                height: 220px;
            }
            .navbar {
                padding: 15px 20px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .instructor-title {
                font-size: 1.7rem;
            }
            .character-body {
                width: 120px;
                height: 120px;
                right: 70px;
            }
            .character-head {
                width: 60px;
                height: 60px;
                bottom: 100px;
                right: 100px;
            }
            .character-arm {
                height: 80px;
                right: 160px;
            }
            .speech-bubble {
                max-width: 160px;
                left: 160px;
                top: 0px;
                font-size: 0.9rem;
            }
            .stats {
                grid-template-columns: 1fr;
            }
        }

        /* Footer Styles */
        .footer {
            background: linear-gradient(135deg, #0a0e1c, #14192d);
            color: #a0a8c0;
            position: relative;
            overflow: hidden;
            border-top: 1px solid rgba(192, 160, 80, 0.1);
        }
        
        .footer-top {
            padding: 80px 20px 60px;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .logo1 {
            display: flex;
            align-items: center;
            font-size: 2rem;
            font-weight: 400;
            color: white;
            text-decoration: none;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .logo1 span {
            color: #d4af37;
            position: relative;
        }

        .logo1 span::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #d4af37;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
        }

        .logo1:hover span::after {
            transform: scaleX(1);
            transform-origin: left;
        }
        
        .footer-col:first-child {
            max-width: 350px;
        }
        
        .footer-col h4 {
            font-size: 1.4rem;
            color: #f0f4ff;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, #d4af37, #f9e076);
        }
        
        .footer-description {
            margin: 20px 0 25px;
            line-height: 1.8;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(30, 40, 70, 0.4);
            border-radius: 50%;
            color: #f9e076;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: linear-gradient(45deg, #d4af37, #f9e076);
            color: #1a2440;
            transform: translateY(-5px);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: #a0a8c0;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #f9e076;
            gap: 15px;
        }
        
        .footer-links a i {
            color: #d4af37;
            font-size: 0.8rem;
        }
        
        .footer-contact {
            list-style: none;
            padding: 0;
        }
        
        .footer-contact li {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            align-items: flex-start;
            line-height: 1.6;
        }
        
        .footer-contact i {
            color: #d4af37;
            font-size: 1.1rem;
            margin-top: 4px;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 25px 20px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }
        
        .footer-legal {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .footer-legal a {
            color: #a0a8c0;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-legal a:hover {
            color: #f9e076;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-top {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .footer-legal {
                flex-direction: column;
                gap: 10px;
            }
        }






 /* Lions Panel */
        .lions-panel {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: black;
            z-index: 1000;
            display: flex;
            transform: translateY(100%);
            transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.5);
            overflow: hidden;
        }
        
        .lions-panel.active {
            transform: translateY(0);
        }
        
        .close-btn {
            position: absolute;
            top: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: rgb(7, 3, 69);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 1010;
            border: 1px solid rgb(13, 1, 67);
        }
        
        .close-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }
        
        .close-btn i {
            font-size: 24px;
            color: white;
        }
        
        /* Form Section */
        .form-section {
            width: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px;
            position: relative;
            z-index: 2;
        }
        
        .form-container {
            max-width: 500px;
            width: 100%;
            padding: 40px;
            background: white;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
        }
        
        .form-title {
            text-align: center;
            margin-bottom: 30px;
            font-size: 2rem;
            background: blue;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 700;
        }
        
        .form-group {
            position: relative;
            margin-bottom: 30px;
        }
        
 .form-section .form-input {
            width: 100%;
            padding: 15px 20px;
            font-size: 16px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgb(0, 0, 0);
            border-radius: 10px;
            color: black;
            transition: all 0.3s ease;
        }
        
        .form-input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.12);
        }
        
        .form-label {
            position: absolute;
            top: 15px;
            left: 20px;
            pointer-events: none;
            transition: all 0.3s ease;
            color: black;
        }
        
        .form-input:focus + .form-label,
        .form-input:not(:placeholder-shown) + .form-label {
            top: -10px;
            left: 15px;
            font-size: 12px;
            background: linear-gradient(135deg, #0f2027, #203a43);
            padding: 2px 8px;
            border-radius: 10px;
            color: #00f2fe;
        }
        
        textarea.form-input {
            min-height: 120px;
            resize: vertical;
        }
        
        .submit-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(45deg, #00c9ff, #00f2fe);
            color: #0f2027;
            border: none;
            border-radius: 10px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 242, 254, 0.4);
        }
        
        .submit-btn:active {
            transform: translateY(0);
        }
        
        .submit-btn::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -60%;
            width: 20px;
            height: 200%;
            background: rgba(255, 255, 255, 0.4);
            transform: rotate(30deg);
            transition: all 0.6s;
        }
        
        .submit-btn:hover::after {
            left: 120%;
        }
        
        /* Character Section */
        .character-section {
            width: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px;
            position: relative;
        }
        
        .character-container {
            position: relative;
            width: 100%;
            height: 70vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        #character-canvas {
            width: 100%;
            height: 100%;
            border-radius: 20px;
            overflow: hidden;
            background: transparent;
        }
        
        .speech-bubble1 {
            position: absolute;
            top: 20%;
            right: 35%;
            background: rgb(255, 255, 255);
            color: #0f2027;
            padding: 20px 25px;
            border-radius: 20px;
            max-width: 400px;
            font-weight: 600;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            animation: float 3s ease-in-out infinite;
            z-index: 10;
        }
        
        .speech-bubble1::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 20%;
            border-width: 15px 15px 0;
            border-style: solid;
            border-color: rgba(255, 255, 255, 0.95) transparent transparent;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .lions-panel {
                flex-direction: column;
                overflow-y: auto;
            }
            
            .form-section, .character-section {
                width: 100%;
                padding: 20px;
            }
            
            .form-section {
                order: 2;
                padding-top: 0;
            }
            
            .character-section {
                height: 50vh;
            }
            
            .character-container {
                height: 45vh;
            }
            
            .speech-bubble1 {
                top: 10%;
                right: 10%;
            }
            
            .form-container {
                max-width: 100%;
            }
            
            h1 {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 576px) {
            h1 {
                font-size: 2.2rem;
            }
            
            .form-container {
                padding: 30px 20px;
            }
            
            .speech-bubble1 {
                font-size: 14px;
                max-width: 180px;
                padding: 15px;
                top: 5%;
                right: 5%;
            }
        }
        
      



.success-box1 {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: #f0f9f0;
  border: 1px solid #4caf50;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  color: #2e7d32;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 10000;
  text-align: center;
}
