/* Styles specific to the Landing Content Type */

.container {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}
.call-button{
    display: flex;
    gap: 5px;
    color: white;
}
.fa-solid{
    margin-top: 4px;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}



.landing-content .wrapper {
    padding: 0px;
}

.landing-content-page {
    margin: 0 auto;
}

/* Header */
.landing-content-page .landing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: white;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.landing-content-page .header-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.landing-content-page .logo img {
    max-width: 180px;
    height: auto;
}

.landing-content-page .contact {
    display: flex;
    align-items: flex-start;
    background-image: linear-gradient(to right, #107498 , #052D3B);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 16px;
    gap: 10px;
    font-weight: 600;
}

.landing-content-page .cta {
    background-image: linear-gradient(to right, #107498 , #052D3B);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
}

.landing-content-page .cta-container {
    display: grid;
    justify-items: center;
}

/* Main Content */
.landing-content-page .landing-main {
    text-align: center;
    padding: 20px;
    min-height: unset;
    background-image: url(https://www.gleneagleshospitals.co.in/assets/2025-03/main-section-bg.png);
    background-position: bottom left;
}

.landing-content-page .video-section img,
.landing-content-page .video-section video {
    width: 100%;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.landing-content-page .video-section iframe {
    width: 100%;
    height: 800px;
}

.landing-content-page .video-section {
    margin-bottom: 20px;
}

/* Footer */
.landing-content-page .landing-footer {
    text-align: center;
    padding: 20px;
    background: white;
    border-bottom: 8px solid #00556F;
}

.landing-content-page .footer-content {
    max-width: 900px;
    margin: 0 auto;
}

.landing-content-page .description {
    font-size: 16px;
    color: #444;
    margin-bottom: 20px;
}

.landing-content-page .cta a {
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    display: inline-block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .landing-content-page .header-container {
        flex-direction: column;
        align-items: center;
    }
    
    .landing-content-page .contact {
        margin-top: 10px;
        font-size: 12px;
    }
    
    .landing-content-page .video-section img,
    .landing-content-page .video-section video {
        max-width: 100%;
    }
    
    .landing-content-page .cta a {
        width: 100%;
        display: block;
    }

    .landing-content-page .contact .phone-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .landing-content-page .landing-main {
        padding: 10px;
    }
    .landing-content-page .landing-header {
        padding: 20px 10px;
    }

    .container {
        padding: 0px;
    }
}
