/* homesections.css
   Styles specific to home page sections such as Facility Highlights & Safety Standards
   and other premium service grids.  These rules supplement the global styles in
   style.css and responsive.css, and ensure the layout behaves correctly when
   using the Bootstrap grid system.
*/

/* ensure each card takes full height of its column for equal-height rows */
.hs-grid .hs-card {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 1.25rem;
    border-radius: 0.5rem;
    background-color: #ffffff; /* keep cards white by default */
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* adjust icon size within these cards */
.hs-grid .hs-icon {
    font-size: 2.5rem;
    margin-right: 0.75rem;
    color: #4B0082;
}

/* responsive tweaks if additional spacing needed */
@media (max-width: 575px) {
    .hs-grid .hs-card {
        padding: 1rem;
    }
}

/* innovation care section cards */
.inno-care-grid .inno-care-card {
    height: 100%;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.inno-care-grid .inno-care-icon-wrapper {
    font-size: 3rem;
    margin-bottom: 1rem;
    color:#4e71f3;
    background: rgb(230, 229, 229);
}

.inno-care-grid .inno-care-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #4B0082;
}

.inno-care-grid .inno-care-card-desc {
    font-size: 1rem;
    color: #555;
}

.banner-content-desc h2 {
    font-size: 25px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;

   color:white;
}

@media (max-width: 768px) {
    #hero-video {
        object-fit: cover;
        height: 100%;
    }
}
/* Common Button Style */
.hero-cta {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    color: #fff;
}

/* Golden Gradient Button */
.call-btn {
    background: linear-gradient(90deg, #3B82F6 0%, #9333EA 100%);
    box-shadow: 0 6px 18px rgba(255, 193, 7, 0.35);
    margin-right: 20px;
}

/* Purple Button */
.book-appointment-btn {
    background: linear-gradient(90deg, #3B82F6 0%, #9333EA 100%);
    gap: 8px;
}

/* Hover Effect */
.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.25);
}

#heroHeading {
   
    min-height: 1.7em;   /* Prevent layout shift */
    font-size: 30px;
    font-family: 'Times New Roman', Times, serif!important;
}

/* ==========================================================================
   Global Button Styling - Enforcing Hero Section Style
   ========================================================================== */

/* Target all major button classes to apply the hero gradient style */
.btn-primary,
.call-act-btn-primary,
.consultationBtn a,
.modal-submit-btn,
.copng-cta-button,
.hithalaya-contact-form button[type="submit"],
#career-form button[type="submit"],
.compact-contact-form a,
.cta-buttons .btn,
.service-overview-card .btn {
    background: linear-gradient(90deg, #3B82F6 0%, #9333EA 100%) !important;
    color: #ffffff !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    transition: all 0.3s ease !important;
    border: none !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1) !important;
    text-align: center;
    cursor: pointer;
}

/* Hover States */
.btn-primary:hover,
.call-act-btn-primary:hover,
.consultationBtn a:hover,
.modal-submit-btn:hover,
.copng-cta-button:hover,
.hithalaya-contact-form button[type="submit"]:hover,
#career-form button[type="submit"]:hover,
.compact-contact-form a:hover,
.cta-buttons .btn:hover,
.service-overview-card .btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 28px rgba(0,0,0,0.25) !important;
    color: #ffffff !important;
    background: linear-gradient(90deg, #3B82F6 0%, #9333EA 100%) !important;
}

/* Reset icon margins inside these buttons to ensure consistent spacing via gap */
.btn-primary i,
.call-act-btn-primary i,
.consultationBtn a i,
.modal-submit-btn i,
.copng-cta-button i,
.hithalaya-contact-form button[type="submit"] i,
#career-form button[type="submit"] i,
.compact-contact-form a i,
.cta-buttons .btn i,
.service-overview-card .btn i {
    margin: 0 !important;
}
