/* Scholarly Journey - Intro Section */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-image-container {
    position: relative;
    padding: 2rem;
}

.intro-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(#00f6fe 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.3;
}

.circular-frame {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50% 50% 50% 0%;
    overflow: hidden;
    border: 5px solid rgba(0, 246, 254, 0.3);
    box-shadow: 0 0 20px rgba(0, 246, 254, 0.2);
}

.circular-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-text-box {
    padding: 3rem;
    border: 2px solid #00f6fe;
    border-radius: 20px;
    background: rgba(1, 6, 28, 0.4);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(0, 246, 254, 0.2), inset 0 0 10px rgba(0, 246, 254, 0.1);
    animation: introBoxGlow 4s ease-in-out infinite alternate;
}

@keyframes introBoxGlow {
    from {
        box-shadow: 0 0 15px rgba(0, 246, 254, 0.2), inset 0 0 10px rgba(0, 246, 254, 0.1);
        border-color: rgba(0, 246, 254, 0.4);
    }

    to {
        box-shadow: 0 0 25px rgba(0, 246, 254, 0.4), inset 0 0 15px rgba(0, 246, 254, 0.2);
        border-color: rgba(0, 246, 254, 1);
    }
}

.intro-text h2 {
    color: #ff4a3f;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.intro-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.feature-mini-box {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(0, 246, 254, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.feature-mini-box:hover {
    transform: translateX(10px);
    border-color: #00f6fe;
    background: rgba(255, 255, 255, 0.1);
}

.feature-mini-box i {
    font-size: 1.5rem;
    color: #00f6fe;
    margin-top: 5px;
}

.feature-mini-box h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.feature-mini-box p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}