/* Prevent Horizontal Scrolling */
html,
body {
    overflow-x: hidden;
    width: 100%;
}

/* Fixed Sticky Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    background: #eee;
    /* Dark Blue */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Prevent content from being hidden under navbar */
body {
    padding-top: 0px;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: url('../img/banners/about.jpg') no-repeat center 30% / cover,
    linear-gradient(120deg, #24a9e2, #006bb3);
    color: white;
    padding: 100px 0;
    margin-top: 50px;
    /* opacity: 0.5; */
    clip-path: ellipse(100% 90% at 30% 10%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    /* Inherit the background properties (image and gradient) */
    filter: blur(2px);
    background: rgba(0, 0, 0, 0.5);
    /* Apply blur effect */
    z-index: 0;
    /* Place it behind the content */
}


.hero-section .container {
    position: relative;
    z-index: 1;
    /* Ensure the text is above the blurred background */
}

/* Gradients (Hidden on Small Screens) */
.top-right-gradient {
    position: absolute;
    top: 1%;
    right: 0%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #24a9e2;
    z-index: 1;
}

.bottom-left-gradient {
    position: absolute;
    bottom: 0;
    left: -2%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #24a9e2;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
    z-index: 1;
    margin-bottom: 30px;
}

/* Section Titles */
.section-title {
    font-size: 2.0rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 30px;
    color: #004d99;
}

/* Feature Cards */
.feature-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid #004d99;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

/* Benefit Cards */
.benefit-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid #004d99;
    border-right: 5px solid #004d99;
}

.benefit-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

/* Call-to-Action Button */
.cta-button {
    background-color: #f4c430;
    color: #004d99;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #e5b722;
    color: #003366;
}

#about {
    background-color: #f1f1f1;
}

/* Footer */
.footer-icons a {
    font-size: 1.5rem;
    margin-right: 10px;
    transition: transform 0.3s;
    color: #f4c430;
}

.footer-icons a:hover {
    transform: scale(1.2);
}

/* Hide Gradients on Small Screens */
@media (max-width: 768px) {

    .top-right-gradient,
    .bottom-left-gradient {
        display: none;
    }
}

.floating-icons {
    position: absolute;
    font-size: 2rem;
    color: rgba(36, 169, 226, 0.8);
    z-index: 1;
    opacity: 0.4;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.icon1 {
    top: 30%;
    right: 5%;
}

.icon2 {
    top: 20%;
    right: 15%;
}

.icon3 {
    top: 50%;
    left: 10%;
}

.icon4 {
    bottom: 15%;
    left: 5%;
}

.icon5 {
    bottom: 15%;
    right: 20%;
}

.icon6 {
    top: 5%;
    left: 15%;
}

@media (max-width: 768px) {
    .floating-icons {
        display: none;
    }
}