body {
    font-family: 'Poppins', sans-serif;
    background-color: #F9F6FF;
}

:root {
    --primary-purple: #7A28CB;
    --secondary-purple: #9933FF;
    --dark-purple: #1a002b;
    --light-lavender: #F9F6FF;
}

.btn-primary-gradient {
    background-image: linear-gradient(to right, var(--primary-purple), var(--secondary-purple));
    color: white;
    border: none;
    transition: all 0.3s ease;
    background-size: 200% auto;
}
.btn-primary-gradient:hover {
    background-position: right center;
    color: white;
    transform: scale(1.05);
}
.btn-outline-primary {
    color: var(--primary-purple);
    border-color: var(--primary-purple);
    transition: all 0.3s ease;
}
.btn-outline-primary:hover {
    background-color: var(--primary-purple);
    color: white;
    transform: scale(1.05);
}
.btn-light:hover, .btn-outline-light:hover {
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.navbar-brand span { color: var(--dark-purple); }
.navbar-brand img { height: 32px; width: auto; }
.nav-link {
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--primary-purple) !important; }

.hero-section {
    padding: 120px 0;
    background: linear-gradient(rgba(26, 0, 43, 0.7), rgba(26, 0, 43, 0.7)), url('https://placehold.co/1920x1080/1a002b/FFFFFF?text=Devverse') no-repeat center center;
    background-size: cover;
}

.page-header {
    background-color: var(--light-lavender);
    padding: 80px 0;
}
.page-header h1 { color: var(--dark-purple); }

.feature-card, .info-card {
    background-color: #fff;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}
.feature-card:hover, .info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}
.icon-circle {
    width: 70px;
    height: 70px;
    background-image: linear-gradient(to right, var(--primary-purple), var(--secondary-purple));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.course-card {
    border-radius: 15px;
    overflow: hidden;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.course-card-img {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.footer-section { background-color: var(--dark-purple); }
.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}
.footer-link:hover {
    color: white;
    padding-left: 5px;
}
.footer-bottom { background-color: rgba(0,0,0,0.2); }

.verify-box {
  max-width: 420px;
  margin: 30px auto;
  padding: 25px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.verify-box input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
}

.verify-box button {
  width: 100%;
  padding: 12px;
  background: #4f46e5;
  color: white;
  border: none;
  cursor: pointer;
}

.verify-box button:hover {
  background: #3730a3;
}

#result {
  margin-top: 15px;
}
