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

body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    line-height: 1.6;
}

/* Header & Navigation */
.header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: contain;
}

.brand-text {
    font-size: 32px;
    font-weight: bold;
    color: #7CB342;
}

.community-text {
    color: #5B9BD5;
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #7CB342;
}

.register-btn {
    background: #7CB342;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.register-btn:hover {
    background: #689F38;
}

/* Hero Section */
.hero {
    background: #7CB342;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.free-badge {
    background: black;
    color: white;
    padding: 8px 24px;
    font-size: 24px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 30px;
    border-radius: 4px;
}

.hero-title {
    font-size: 64px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: white;
    color: #7CB342;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 40px;
    border: 2px solid white;
    border-radius: 8px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: #7CB342;
}

/* About Section */
.about-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #7CB342;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

.about-features {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 18px;
    color: #333;
}

.feature-item i {
    color: #5B9BD5;
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.course-info {
    background: #5B9BD5;
    padding: 80px 0;
}

.course-info .section-title {
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title {
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.info-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border-left: 6px solid #7CB342;
}

.info-card.blue {
    border-left-color: #7CB342;
}

.info-card h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-card h3 i {
    font-size: 28px;
    color: #7CB342;
    width: 32px;
    text-align: center;
}

.info-card.blue h3 i {
    color: #7CB342;
}

.info-card p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.highlight {
    color: #7CB342;
    font-weight: bold;
}

.logo-text-image {
    height: 42px;
    object-fit: contain;
    margin-bottom: 30px;
}

/* Courses Section */
.courses-section {
    background: white;
    padding: 80px 0;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.course-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.course-card.past {
    border-color: #6c757d;
}

.course-card.current {
    border-color: #7CB342;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
}

.course-card.upcoming {
    border-color: #5B9BD5;
}

.course-status {
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    color: white;
}

.course-status.past {
    background: #6c757d;
}

.course-status.current {
    background: #7CB342;
}

.course-status.upcoming {
    background: #5B9BD5;
}

.course-content h3 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    margin-top: 10px;
}

.course-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.course-details {
    margin-bottom: 25px;
}

.course-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
}

.course-detail i {
    color: #7CB342;
    width: 16px;
    text-align: center;
    font-size: 14px;
}

.course-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #7CB342;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.course-badge i {
    font-size: 12px;
}

.course-card .btn-primary,
.course-card .btn-secondary {
    width: 100%;
    margin-top: 10px;
    padding: 12px 24px;
    font-size: 16px;
}

/* Registration Section */
.registration {
    background: white;
    color: #333;
    padding: 80px 0;
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.registration-info h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

.registration-details {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 18px;
}

.detail-label {
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-label i {
    font-size: 18px;
    color: #7CB342;
    width: 20px;
    text-align: center;
}

.detail-value {
    color: #7CB342;
    font-weight: bold;
}

.qr-section {
    text-align: center;
}

.qr-placeholder {
    width: 200px;
    height: 200px;
    background: #7CB342;
    border: 4px solid #5B9BD5;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    text-align: center;
    border-radius: 12px;
}

.university-logo {
    margin-top: 20px;
    color: #333;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-content p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 18px;
}

.footer-content p i {
    font-size: 18px;
    color: #7CB342;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #7CB342;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }

    .logo-section {
        gap: 10px;
    }

    .logo-image {
        width: 45px;
        height: 45px;
    }

    .brand-text {
        font-size: 24px;
    }

    .nav-menu {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-menu a {
        font-size: 16px;
        padding: 8px 12px;
    }

    .register-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-container,
    .container {
        padding: 0 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .registration-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .courses-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .course-card {
        padding: 25px;
    }

    .course-content h3 {
        font-size: 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    /* Mobile-specific registration fixes */
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 20px;
        padding: 18px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .detail-label {
        font-size: 16px;
        font-weight: 600;
    }

    .detail-value {
        font-size: 18px;
        margin-left: 0px;
        font-weight: 600;
        color: #333;
    }

    .registration-details {
        padding: 15px;
        background: #f8f9fa;
        border-radius: 10px;
    }

    .registration-info h2 {
        font-size: 28px;
        margin-bottom: 20px;
        text-align: center;
    }

    .qr-section {
        padding: 20px;
    }

    .qr-section h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .btn-primary,
    .btn-secondary {
        font-size: 16px;
        padding: 12px 20px;
    }

    .university-logo img {
        height: 60px !important;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .detail-item {
        padding: 15px;
        margin-bottom: 15px;
    }

    .detail-label {
        font-size: 15px;
    }

    .detail-value {
        font-size: 16px;
        padding-left: 5px;
    }

    .registration-info h2 {
        font-size: 24px;
    }

    .btn-primary,
    .btn-secondary {
        font-size: 14px;
        padding: 10px 15px;
    }

    .container {
        padding: 0 15px;
    }

    .course-card {
        padding: 20px;
    }

    .course-content h3 {
        font-size: 18px;
    }

    .course-detail {
        font-size: 14px;
    }

    .university-logo img {
        height: 50px !important;
    }
}


#cd-box {
  text-align: center;
  margin: 0;
}


#demo {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: clamp(1.8rem, 4vw, 4rem);
  max-width: 100%;
}

#socials a{
    padding: 15px;
}