/*=============================================
*****Welcome Section CSS start here
=============================================*/
/* Welcome Section */
.welcome-section {
    background: #f8f9fa; /* light gray */
    padding: 60px 0;
}

/* Title */
.welcome-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0d3b66; /* deep academic blue */
    position: relative;
}

/* Underline decoration */
.welcome-section h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #f4a261; /* accent color */
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Paragraph */
.welcome-section p {
    font-size: 1rem;
    color: #444;
    text-align: justify;
    line-height: 1.9;
}

/* Button */
.welcome-section .btn {
    background-color: #0d3b66;
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

/* Button hover */
.welcome-section .btn:hover {
    background-color: #f4a261;
    color: #fff;
    transform: translateY(-2px);
}

/* Optional: Add subtle shadow */
.welcome-section .container {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .welcome-section {
        padding: 40px 15px;
    }

    .welcome-section h2 {
        font-size: 1.5rem;
    }

    .welcome-section p {
        font-size: 0.95rem;
    }
}

/*=====================
****Add Fade Animation
=====================*/
.welcome-section {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(20px);}
    to {opacity: 1; transform: translateY(0);}
}
