
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

/* Body Styling */
body {
    background: linear-gradient(45deg, #003366, #ffffff); /* Elegant blue to white gradient */
    color: #333;
    line-height: 1.8;
    padding: 60px 0;
    font-family: 'Lora', serif;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Section Styling */
.section {
    background: #fff;
    padding: 4rem 3rem;
    margin-bottom: 3rem;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.section-heading {
    font-size: 3rem;
    color: #003366;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    font-weight: bold;
}

/* Paragraph Styling */
.section-paragraph {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Hover Effects */
.section:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Button Styling */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #f8b400;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    background-color: #ff9900;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .section-heading {
        font-size: 2.0rem;
    }

    .section-paragraph {
        font-size: 1.0rem;
    }

    .btn {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 1.5s ease-out forwards;
}
