/* ========================================
   Enhanced Custom CSS for Contact Us Page
   Modern UI with Improved Visual Design
   ======================================== */

/* ===== CSS Variables ===== */
:root {
    --primary-red: #cb0c0c;
    --secondary-red: #952624;
    --dark-red: #6b1a18;
    --light-red: #ff4444;
    --white: #ffffff;
    --off-white: #fafafa;
    --light-gray: #f5f7fa;
    --medium-gray: #e8ecef;
    --text-gray: #6c757d;
    --text-dark: #2c3e50;
    --border-color: #dee2e6;
    --input-bg: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      --transition-long: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
 
/* ===== Enhanced Header Section ===== */
.cntbanner {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-lg);
}

/* .cntbanner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
} */

.contact-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    width: 100%;
}

.contact-text-wrapper {
    text-align: center;
    z-index: 3;
    position: relative;
    animation: fadeInDown 0.8s ease-out;
}

.contact-title {
     font-size: 2.6rem;
    font-weight: 700;
    color: var(--white);
    margin: 0.5rem 0;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.title-icon {
    font-size: 2.5rem;
    opacity: 0.9;
}

.contact-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    margin: 0;
    letter-spacing: 0.5px;
}
 
.contact-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
}



/* =============================================
   3. ENHANCED ABOUT SECTION
   ============================================= */
.about-section {
    background-color: #fff !important;
    position: relative;
}

.about-intro-card {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

/* .about-intro-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(203, 12, 12, 0.03) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
} */

.about-icon-wrapper {
    position: relative;
}

.about-icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 8px 16px rgba(203, 12, 12, 0.3);
}

.about-icon-circle::before {
    content: '';
    position: absolute;
    width: 72px;
    height: 72px;
    border: 2px solid var(--primary-light);
    border-radius: 50%;
    opacity: 0.3;
    /* animation: ripple 2s ease-out infinite; */
}

/* @keyframes ripple {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0; }
} */

.about-icon-circle i {
    font-size: 1.8rem;
    color: var(--white);
}

.about-intro-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
}

.text-highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.content-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(203, 12, 12, 0.1);
}

/* .content-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
} */

.content-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.content-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.content-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.content-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.content-text {
    font-size: 1rem;
    line-height: 1.8;
    /* color: var(--text-light); */
    margin-bottom: 15px;
}

.content-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Sidebar Styles */
.info-sidebar .sidebar-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.sidebar-card.highlight-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-red));
    color: var(--white);
}

.sidebar-icon {
    width: 78px;
    height: 78px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.sidebar-icon i {
    font-size: 2rem;
    color: var(--white);
}

.sidebar-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.sidebar-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.95;
}

.sidebar-link {
    display: inline-flex;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: var(--transition);
}

.sidebar-link:hover {
    transform: translateX(5px);
    color: var(--white);
}

.stats-card {
    background: var(--white);
}

.stats-card h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
}

.faciliti-item {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-red));
    border-radius: 15px;
    color: var(--white);
    flex: 1;
    min-width: 150px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.faciliti-item  h4 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.faciliti-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.orstat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.orstat-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* =============================================
   4. ENHANCED FACILITIES SECTION
   ============================================= */
.facilities-section {
    /* background: linear-gradient(180deg, #fafafa 0%, #f0f0f0 100%); */
    position: relative;
    overflow: hidden;
}

.facilities-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 20% 20%, var(--primary-color) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, var(--secondary-red) 1px, transparent 1px);
    background-size: 50px 50px;
}

.actn-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-red));
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.actn-title-large {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 10px;
}

.title-underline-center {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-red));
    margin: 15px auto;
    border-radius: 10px;
}

.actn-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Enhanced Facility Cards */
.facility-card-enhanced {
    background: var(--white);
    border-radius: 12px;
    padding: 30px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-long);
    border: 2px solid transparent;
}

/* .facility-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.facility-card-enhanced:hover::before {
    transform: scaleX(1);
} */

.facility-card-enhanced:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(203, 12, 12, 0.2);
}

.facility-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(203, 12, 12, 0.08);
    line-height: 1;
}

.facility-icon-enhanced {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-red) 100%);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    position: relative;
    transition: var(--transition);
}
 

.facility-icon-enhanced i {
    font-size: 1.6rem;
    color: var(--white);
    z-index: 1;
    position: relative;
}

.facility-title-enhanced {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.4;
}

.facility-description-enhanced {
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 20px;
}

.facility-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.facility-tag {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(203, 12, 12, 0.1), rgba(149, 38, 36, 0.1));
    color: var(--primary-color);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.facility-tag i {
    margin-right: 5px;
}
.technology-section {
    background-color: var(--white);
}
    .tabs-sticky-wrapper {
        position: sticky;
        top: 0;
        z-index: 100;
        background: var(--white);
        margin: 0 -15px 30px;
        padding: 0 15px;
         
    }


/* Tab Navigation Styling */
.technology-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    border: none;
    margin-bottom: 0px;
    justify-content: center;
}
.technology-tabs {
    display: flex
;
    gap: 15px;
    padding: 15px 0;
    margin: 0;
    border-bottom: none;
    flex-wrap: nowrap;
    min-width: min-content;
}

.tech-tab {
    background-color: #f8f9fa;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-dark);
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.tech-tab i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.tech-tab:hover {
    background-color: #e9ecef;
    border-color: var(--primary-color);
    
}

.tech-tab.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-red));
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(203, 12, 12, 0.3);
}
.technology-tabs .nav-link:hover{color: var(--secondary-red);}
.technology-tabs .nav-pills .nav-link.active, .nav-pills .show>.nav-link{color: var(--secondary-red);}
.tech-tab.active:hover{color:#fff;}

.nav-pills .nav-link.active{background-color: transparent;}

/* Sticky Tabs Wrapper */
.tabs-sticky-wrapper {
    position: relative;
     
}

/* Tabs Scroll Container */
.tabs-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.tabs-scroll-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

 .tabs-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(270deg, var(--white) 70%, transparent);
    padding: 10px 20px 10px 40px;
    pointer-events: none;
    display: none;
}

.scroll-indicator i {
    color: var(--primary-color);
    font-size: 1.2rem;
    animation: bounceRight 1.5s ease-in-out infinite;
}

@keyframes bounceRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}


/* Tab Content Box */
.tab-content-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 36px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid #e9ecef;
}

/* Tab 1: Robotic Surgery Content */
.tech-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.tech-image-wrapper img {
    transition: var(--transition);
}

.tech-image-wrapper:hover img {
    transform: scale(1.05);
}

.tech-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-red));
    color: var(--white);
    padding: 12px 25px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.tech-badge i {
    font-size: 1.2rem;
}

.tech-content-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.tech-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.technology-list {
    list-style: none;
    padding-left: 0;
}

.technology-list li {
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
    color: var(--text-light);
    font-size: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.technology-list li:last-child {
    border-bottom: none;
}

.technology-list li i {
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.3rem;
    top: 15px;
}

.tech-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
 

/* Tab 2: Advanced Technology Content */
.tech-feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.tech-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.tech-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.tech-feature-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.stat-item {
    display: flex
;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.tech-feature-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.tech-feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.tech-highlight-box {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 40px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.tech-highlight-box h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.highlight-list {
    list-style: none;
    padding: 0;
}

.highlight-list li {
    padding: 10px 0;
    color: var(--text-light);
    font-size: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.highlight-list li:last-child {
    border-bottom: none;
}

/* Tab 3: Expert Doctors Content */
.doctor-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.doctor-image {
    position: relative;
    overflow: hidden;
    
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.doctor-card:hover .doctor-image img {
    transform: scale(1.1);
}

.doctor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(203, 12, 12, 0.9));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.doctor-card:hover .doctor-overlay {
    opacity: 1;
}

.doctor-overlay i {
    font-size: 3rem;
    color: var(--white);
}

/* .doctor-info {
    padding: 30px;
} */

.doctor-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.doctor-qualification {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.doctor-experience {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.doctor-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.expertise-tag {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-dark);
    border: 1px solid #dee2e6;
}

.credentials-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-red));
    padding: 40px;
    border-radius: 15px;
    color: var(--white);
}

.credentials-box h4 {
    color: var(--white);
    font-size: 1.5rem;
}

.credential-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: var(--transition);
}

.credential-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.credential-item i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--white);
}

.credential-item p {
    margin: 0;
    font-size: 0.95rem;
}

/* Tab 4: Clinical Experience Content */
.experience-stat-card {
    background: var(--white);
    padding: 30px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.experience-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-red));
    color: var(--white);
}

.experience-stat-card:hover .faciliti-icon,
.experience-stat-card:hover .faciliti-number,
.experience-stat-card:hover .faciliti-label {
    color: var(--white);
}

.faciliti-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    transition: var(--transition);
}

.experience-stat-card:hover .faciliti-icon {
    background: var(--white);
}

.experience-stat-card:hover .faciliti-icon i {
    color: var(--primary-color);
}

.faciliti-icon i {
    font-size: 1.6rem;
    color: var(--white);
    transition: var(--transition);
}

.faciliti-number {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    transition: var(--transition);
}

.faciliti-label {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
    transition: var(--transition);
}

.experience-highlight {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    /* box-shadow: var(--shadow-sm); */
    height: 100%;
    border-left: 4px solid var(--primary-color);
}

.highlight-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.highlight-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.highlight-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.experience-list {
    list-style: none;
    padding: 0;
}

.experience-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    color: var(--text-light);
    border-bottom: 1px solid #e9ecef;
    transition: var(--transition);
}

.experience-list li:last-child {
    border-bottom: none;
}

.experience-list li i {
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    top: 12px;
}

.experience-list li:hover {
    padding-left: 40px;
    color: var(--primary-color);
}

.testimonial-quote {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 50px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-quote i {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 30px;
    left: 40px;
}

.testimonial-quote p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.quote-author {
    text-align: right;
    color: var(--primary-color);
    font-size: 1rem;
}

.accommodation-section {
    background: var(--light-bg);
}

.actn-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.hotel-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 35px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.hotel-category {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.star-rating i {
    color: #ffc107;
    font-size: 1.2rem;
    margin-right: 3px;
}

.hotel-list {
    list-style: none;
    padding-left: 0;
}

.hotel-list li {
    padding: 10px 0;
    padding-left: 25px;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    transition: var(--transition);
}

.hotel-list li:last-child {
    border-bottom: none;
}

.hotel-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}
/* 
.hotel-list li:hover {
    padding-left: 30px;
    color: var(--primary-color);
} */

/* =============================================
   7. TESTIMONIALS SECTION
   ============================================= */
.testimonials-section {
    background-color: var(--white);
}

.title-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 10px auto 0;
}

.testimonial-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.video-wrapper {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.video-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.video-wrapper:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(203, 12, 12, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.play-button:hover {
    background-color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    font-size: 2rem;
    color: var(--white);
    margin-left: 3px;
}
@media (max-width: 767px) {

 /* STICKY HORIZONTAL SCROLL TABS FOR MOBILE */
    
    .tabs-scroll-container {
        padding: 10px 0;
    }
    
    .technology-tabs {
        gap: 12px;
        padding: 5px 0;
    }

    .facility-icon-enhanced {
        width: 80px;
        height: 80px;
    }
    
    .facility-icon-enhanced i {
        font-size: 2rem;
    }
    
    .tech-tabs-container {
        grid-template-columns: 1fr;
    }
    
    .tech-tab-button {
        padding: 20px;
    }
    
    .tab-icon {
        width: 50px;
        height: 50px;
    }
    
    .tab-icon i {
        font-size: 1.5rem;
    }
    
    .tab-title {
        font-size: 1rem;
    }
    
    .tech-heading {
        font-size: 1.6rem;
    }
    
    .tech-content {
        padding: 0;
    }
    
    .experience-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-feature-item {
        flex-direction: column;
        text-align: center;
    }
        .tabs-sticky-wrapper {
        position: sticky;
        top: 138px;
        z-index: 100;
        background: var(--white);
        margin: 0 -15px 12px;
        padding: 0 15px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 576px) {
    .cntbanner {min-height: auto;}
.facility-card-enhanced {
        padding: 30px 20px;
    }
    
    .facility-number {
        font-size: 2.5rem;
        top: 15px;
        right: 15px;
    }
    
    .faciliti-number {
        font-size: 1.8rem;
    }
    
    .faciliti-label {
        font-size: 0.8rem;
    }

.contact-content{padding: 30px 20px;}
.contact-title{font-size: 1.75rem;letter-spacing: 0;}
.about-intro-title {
    font-size: 1.2rem;}
    .about-icon-circle {
    width: 46px;
    height: 46px;}
    .about-icon-circle::before{width: 56px;
    height: 56px;}
    .about-icon-circle i {
    font-size: 1.4rem;}
.content-header h3 {
    font-size: 1.2rem;}
    .content-text{margin-bottom: 0px;}
    .sidebar-icon {
    width: 46px;
    height: 46px;
    }
    .sidebar-icon i{font-size: 1.6rem;}
    .info-sidebar .sidebar-card{padding: 20px;}
    .actn-title-large{font-size: 1.6rem;}
        .facility-icon-enhanced {
        width: 46px;
        height: 46px;
        border-radius:9px;
            margin: 0 auto 10px;
    }
    .facility-icon-enhanced i{font-size: 1.2rem; border-radius: 9px;}
    
    
    .tech-tab {
        width: 100%;
        text-align: center;
    }
    .tech-content-title {
    font-size: 1.2rem;
    }
    .actn-title{font-size: 1.4rem;}
    .tab-content-box{padding: 20px;}
    .tech-highlight-box h4, .credentials-box h4, .highlight-header h4{font-size: 1rem;}
    .tech-highlight-box, .credentials-box, .experience-highlight, .testimonial-quote{padding: 20px;}
}

/*Prasad css to fix button on banner */

/* Make both wrapper variants behave identically */
.video-wrapper1,
.video-wrapper {
    position: relative; /* positioning context for absolute play button */
    overflow: hidden;
    cursor: pointer;
}

/* Ensure thumbnail rule applies regardless of wrapper name */
.video-wrapper1 img,
.video-wrapper img,
.video-wrapper1 .yt-thumb,
.video-wrapper .yt-thumb {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

/* Hover scale for both */
.video-wrapper1:hover img,
.video-wrapper:hover img,
.video-wrapper1:hover .yt-thumb,
.video-wrapper:hover .yt-thumb {
    transform: scale(1.05);
}

/* Ensure play button appears on top and is visible */
.video-wrapper1 .play-button1,
.video-wrapper .play-button1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(203, 12, 12, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .18s ease, background-color .18s ease;
    z-index: 30;
    box-shadow: 0 6px 18px rgba(0,0,0,0.28);
    cursor: pointer;
}

/* Hover state (fallback var) */
.video-wrapper1 .play-button1:hover,
.video-wrapper .play-button1:hover {
    background-color: var(--primary-red, #ff4b4b);
    transform: translate(-50%, -50%) scale(1.08);
}

.video-wrapper1 .play-button1 i,
.video-wrapper .play-button1 i {
    font-size: 1.85rem;
    color: var(--white, #fff);
    margin-left: 0;
    line-height: 1;
}

/* Mobile shrink */
@media (max-width: 576px) {
    .video-wrapper1 .play-button1,
    .video-wrapper .play-button1 {
        width: 56px;
        height: 56px;
    }
    .video-wrapper1 .play-button1 i,
    .video-wrapper .play-button1 i {
        font-size: 1.4rem;
    }
}
