/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0 60px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,192C1248,192,1344,128,1392,96L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center bottom;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.hero-section p {
    font-size: 1.0rem;
    max-width: 800px;
    margin: 0 auto 25px;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    font-weight: 700;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 15px auto;
    border-radius: 2px;
}

/* Guide Sections */
.guide-section {
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    background: white;
    border-top: 4px solid var(--primary-color);
}

.guide-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.section-icon {
    font-size: 1.2rem;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.section-title-text {
    color: #333;
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 1.2rem;
}

.section-subtitle {
    color: #666;
    margin-bottom: 0;
    font-size: 1.0rem;
}

.badge-custom {
    font-size: 0.85rem;
    padding: 8px 15px;
    margin-left: 15px;
    border-radius: 50px;
    font-weight: 600;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

/* Process Steps */
.mb-3{
    font-size: 1.2rem;
}

.mb-0{
    font-size: 1.0rem;
}

.process-step {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s;
}

.process-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    margin-right: 15px;
    font-weight: bold;
    font-size: 0.8rem;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.process-step p{
    font-size: 0.9rem;
}

/* Cards */
.info-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.card-header {
    font-weight: 700;
    border-bottom: none;
    padding: 20px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    margin-bottom: 10px;
}

.card-body ul li{
    font-size: 0.9rem;
}

/* Registration Type Cards */
.reg-type-card {
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
    border-top: 4px solid var(--primary-color);
    background: white;
}

.reg-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.reg-type-icon {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Lists */
.requirements-list,
.guidelines-list {
    padding-left: 20px;
}

.requirements-list li,
.guidelines-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 10px;
    font-size: 0.9rem;
}

.requirements-list li::before,
.guidelines-list li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}
.col-md-6 h5{
    font-size: 1.1rem;
}

.col-md-6 p{
    font-size: 0.9rem;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Quick Navigation */
.quick-nav {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border-top: 4px solid var(--primary-color);
}

.quick-nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

.quick-nav-item:hover {
    background-color: rgba(106, 17, 203, 0.1);
    transform: translateX(5px);
}

.quick-nav-item.active {
    background-color: rgba(106, 17, 203, 0.1);
    color: var(--primary-color);
    font-weight: 600;
}

.quick-nav-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 1.2rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

/* Timestamp */
.timestamp {
    font-size: 0.8em;
    color: #666;
    text-align: right;
    margin-top: 15px;
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        text-align: center;
    }

    .section-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .hero-section {
        padding: 60px 0 40px;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .guide-section {
        padding: 25px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-section p {
        text-align: left;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}