/* General Site Styles */
html, body {
    display: flex;
    flex-direction: column;
    width: 100vw;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', Arial, sans-serif;
    background: linear-gradient(135deg, #e0f7fa, #ffffff);
    color: #1a1a1a;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: rgba(11, 47, 74, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    flex-wrap: wrap;
}

.navbar .logo img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: contain;
    box-shadow: 0 0 15px rgba(255,255,255,0.4);
}

.nav-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 8px 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* About Section */
.about {
    max-width: 900px;
    margin: 60px auto;
    padding: 50px 30px;
    background: linear-gradient(135deg, #e0f7fa, #ffffff);
    backdrop-filter: blur(15px);
    border:none;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border-top: 6px solid #1e90ff;
    position: relative;
}

.about::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    opacity: 0.3;
    border-radius: 50%;
}

.about h1 {
    margin-bottom: 25px;
    font-size: 2.2rem;
    color: #0b2f4a;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about p span {
    color: #1e90ff;
    font-weight: 600;
}

/* Buttons */
.button-primary {
    display: inline-block;
    background: linear-gradient(135deg, #1e90ff, #00cfff);
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.button-primary:hover {
    background: linear-gradient(135deg, #0b2f4a, #1e90ff);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Footer */
footer {
    width: 100%;
    text-align: center;
    padding: 30px 0;
    background-color: rgba(11, 47, 74, 0.9);
    color: #fff;
    font-size: 0.95rem;
    backdrop-filter: blur(8px);
}


/* Section Title Styling */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    margin-top: 4rem;
    letter-spacing: 1px;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00bcd4, #3f51b5);
    margin: 1rem auto 0;
    border-radius: 2px;
}
