/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: tahoma, arial, sans-serif;
}

body {
    background-color: #fff;
    line-height: 1.6;
}

.section-title h2 {
    color: white ! IMPORTANT;
    text-shadow: 2px 2px 5px rgb(0 0 0) !important;
}


/* Header */
.glass-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
}

.back-btn {
    background:linear-gradient(90deg, #434343, #000000) !important;

    color: #fff !important;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
}

.logo {
    height: 60px;
    filter: grayscale(1) brightness(0);
    margin: 5px 0px;
}

/* Hero Section */
.hero-section {
    width: 100%;
}

.about-img {
    width: 100%;
    display: block;
    height: auto;
    margin-top: -60px; /* Overlap header */
}

/* Image Sections */
.image-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.section-bg {
    width: 100%;
    display: block;
    height: auto; /* Responsive background */
}

/* Content Container */
.content {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.section-title {
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.section-title p {
    font-size: 1.2rem;
    font-weight: bold;
}

/* 2x2 Grid */
.cards-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    justify-items: center;
}

.card {
    background: transparent;
    text-decoration: none;
    transition: 0.3s;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 12px;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 1.5rem;
    }
    .section-title p {
        font-size: 1rem;
    }
    .card img {
        max-width: 100%;
    }
        body {
        overflow-x: visible !important;
    }
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 1.2rem;

    }
    .section-title p {
        font-size: 0.9rem;
    }
    /* Adjusted for smaller screens to keep 2x2 layout fitting nicely */
    .card img {
        max-width: 100%;
    }
        body {
        overflow-x: visible !important;
    }
        .hospa-bottom-menu {
        background: rgba(255, 255, 255, 0.2) !important;
        border-top: 1px solid #45454500 !important;
   
    }
}

/* Footer Styles */
.hospa-custom-footer {
    padding: 0px !important;
    border-radius: 0px !important;
}

.hospa-footer-container {
    border-radius: 0px !important;
    box-shadow: none !important;
}


