/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img,
video {
    max-width: 100%;
    height: auto;
}

:root {
    --primary-blue: #004a99;
    --primary-green: #2ecc71;
    --dark-blue: #003366;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 74, 153, 0.1);
}

html {
    width: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.5;
    color: var(--text-dark);
    background-color: var(--white);
    font-size: 17px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Scroll Animations */
.section-fade {
    opacity: 1;
    transform: translateY(0);
}

.section-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utilities */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 74, 153, 0.2);
}

/* Sticky Header Container */
.sticky-nav-area {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(90deg, #004a99, #003366);
    color: #ffffff;
    padding: 12px 0;
    overflow: hidden;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.scrolling-text-container {
    display: flex;
    white-space: nowrap;
}

.scrolling-text {
    display: flex;
    animation: scroll-text 40s linear infinite;
    font-weight: 500;
}

.scrolling-text:hover {
    animation-play-state: paused;
    cursor: pointer;
}

.scrolling-text span {
    padding-right: 100px;
}

.announcement-bar strong {
    color: #ffde00;
    font-weight: 700;
}

@keyframes scroll-text {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}



/* Header */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid #e2e8f0;
    min-height: auto;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 15px;
}

.header-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.desktop-only {
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary-blue);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 85vh;
    width: 100%;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), url('assets/banner.jpeg');
    background-size: cover;
    background-position: left bottom;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
    /* padding: 20px 0; */
    background-color: #f8fafc;
}

/* Hero responsive sizes */
@media (max-width: 1200px) {
    .hero {
        min-height: 80vh;
        background-size: cover;
        background-position: center center;
    }
}

@media (max-width: 992px) {
    .hero {
        min-height: 70vh;
        background-size: cover;
        background-position: center top;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
        background-size: cover;
        background-position: center top;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 55vh;
        background-size: cover;
        background-position: center top;
    }
}

.hero .container {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
}

@media (max-width: 992px) {
    .hero .container {
        justify-content: center;
    }
}

.hero-form {
    width: 100%;
    max-width: 450px;
    display: flex;
    justify-content: center;
    scroll-margin-top: 130px;
}

/* .hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(46, 204, 113, 0.05);
    border-radius: 50%;
    top: -200px;
    left: -200px;
    z-index: 0;
} */

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.badge {
    background-color: #dcfce7;
    color: #166534;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-content {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-content h1 span {
    color: #ffde00;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.feature-item i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

/* Hero Form */

.hero-form .form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    border: 3px solid #ffde00;
    max-width: 360px;
    width: 100%;
    margin: 0;
}

/* Center the form on mobile screens */
@media (max-width: 768px) {
    .hero-form .form-card {
        transform: none;
    }
}

.hero-form h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.mobile-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.mobile-input-wrapper .prefix {
    position: absolute;
    left: 15px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    pointer-events: none;
    padding-right: 10px;
    border-right: 1.5px solid #e2e8f0;
}

.mobile-input-wrapper input {
    padding-left: 60px !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-blue);
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 74, 153, 0.05);
}

.btn-submit {
    width: 100%;
    background: var(--primary-blue);
    color: var(--white);
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--dark-blue);
}



.specialities {
    padding: 60px 0;
    background: linear-gradient(rgba(250, 250, 250, 0.95), rgba(250, 250, 250, 0.95)),
        url('assets/specialities-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

@media (max-width: 991px) {
    .specialities {
        background-attachment: scroll;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.showcase-header {
    margin-top: 100px;
    margin-bottom: 50px;
}

/* --- Glossy Speciality Cards --- */
.bento-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
}

.spec-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 30px rgba(0, 74, 153, 0.05);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 280px;
    z-index: 1;
}

/* Categorized Orb Containers */
.spec-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0%;
    height: 0%;
    background: radial-gradient(circle, rgba(0, 74, 153, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: -1;
    border-radius: 50%;
}

.icon-orb {
    width: 90px;
    height: 90px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
}

.icon-orb::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-blue), #2ecc71);
    z-index: -1;
    opacity: 1;
    transition: all 0.5s ease;
}

.spec-item:hover .icon-orb {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 74, 153, 0.2);
}



.spec-item img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    z-index: 2;
    mix-blend-mode: multiply;
}

.card-badge {
    position: relative;
    background: linear-gradient(135deg, #004a99, #003a7a);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 74, 153, 0.2);
    margin-bottom: 0;
    white-space: nowrap;
    display: inline-block;
    z-index: 5;
}

/* Text Styling */
.spec-info {
    width: 100%;
    text-align: center;
}

.spec-info span {
    display: block;
    color: var(--dark-blue);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.spec-info p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.4;
    font-weight: 400;
    opacity: 0.9;
    transition: color 0.3s ease;
}

/* Hover States */
.spec-item:hover {
    transform: translateY(-15px);
    background: #ffffff;
    box-shadow: 0 30px 60px rgba(0, 74, 153, 0.15);
    border-color: rgba(0, 74, 153, 0.2);
}

.spec-item:hover .spec-info span,
.spec-item:hover .spec-info p {
    color: var(--primary-blue);
    background: none;
    -webkit-text-fill-color: initial;
    opacity: 1;
}

.spec-item:hover::before {
    width: 150%;
    height: 150%;
}

/* Specialized Colors */
.spec-item[data-cat="laser"] .icon-orb::after {
    background: linear-gradient(45deg, #00d2ff, #3a7bd5);
}

.spec-item[data-cat="surgery"] .icon-orb::after {
    background: linear-gradient(45deg, #f093fb, #f5576c);
}

.spec-item[data-cat="medical"] .icon-orb::after {
    background: linear-gradient(45deg, #5ee7df, #b490ca);
}

.spec-item[data-cat="special"] .icon-orb::after {
    background: linear-gradient(45deg, #ff9a9e, #fecfef);
}

/* Responsive Grid */
@media (max-width: 1300px) {
    .spec-item {
        width: 260px;
    }
}

@media (max-width: 1000px) {
    .spec-item {
        width: 240px;
    }
}

@media (max-width: 800px) {
    .spec-item {
        width: calc(100% - 20px);
        min-width: 0;
    }
}

@media (max-width: 500px) {
    .bento-grid {
        gap: 12px;
        padding: 10px;
    }

    .spec-item {
        padding: 25px 12px 20px;
        border-radius: 20px;
    }

    .icon-orb {
        width: 70px;
        height: 70px;
    }

    .spec-item img {
        width: 40px;
        height: 40px;
    }

    .spec-info span {
        font-size: 1rem;
    }

    .spec-info p {
        font-size: 0.8rem;
    }
}

/* Speciality Icon Animations */
.anim-smile:hover img {
    animation: smile-bright 1.5s infinite ease-in-out;
}

@keyframes smile-bright {

    0%,
    100% {
        filter: brightness(1) drop-shadow(0 0 0px var(--primary-blue));
    }

    50% {
        filter: brightness(1.3) drop-shadow(0 0 15px var(--primary-blue));
    }
}

.anim-cataract:hover img {
    animation: cataract-refocus 2s infinite linear;
}

@keyframes cataract-refocus {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: scale(1.1) rotate(5deg);
        opacity: 0.8;
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.anim-pulse img {
    animation: icon-pulse 2.5s infinite ease-in-out;
}

@keyframes icon-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.anim-float:hover img {
    animation: icon-float 2s infinite ease-in-out;
}

@keyframes icon-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes icon-breathe {

    0%,
    100% {
        transform: scale(1);
        filter: brightness(100%);
    }

    50% {
        transform: scale(1.1);
        filter: brightness(110%);
    }
}

.spec-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--primary-blue);
}

.spec-item img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    padding: 8px;
    border-radius: 50%;
    background: rgba(236, 246, 255, 0.8);
    /* Subtle Blue */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: icon-breathe 4s ease-in-out infinite;
}

.spec-item:nth-child(even) img {
    background: rgba(236, 253, 245, 0.8);
    /* Subtle Green */
}

.spec-item:nth-child(odd) img {
    animation-duration: 5s;
}

.spec-item:nth-child(3n) img {
    animation-delay: 1s;
    background: rgba(255, 247, 237, 0.8);
    /* Subtle Orange */
}

.spec-item:hover img {
    animation: none;
    transform: scale(1.15) rotate(5deg);
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 74, 153, 0.15);
}





/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Infrastructure */
.infrastructure {
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(240, 249, 255, 0.95) 0%, rgba(224, 242, 254, 0.95) 50%, rgba(240, 253, 244, 0.95) 100%),
        url('assets/infrastructure-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

@media (max-width: 991px) {
    .infrastructure {
        background-attachment: scroll;
    }
}

.infrastructure::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 74, 153, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    top: -400px;
    right: -200px;
    z-index: 0;
}

/* Stats Section */
.infra-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin: 40px 0;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(0, 74, 153, 0.1);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: stat-pop-in 0.6s ease-out forwards;
}

.stat-card:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.25s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.4s;
}

.stat-card:nth-child(4) {
    animation-delay: 0.55s;
}

@keyframes stat-pop-in {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes stat-number-pulse {
    0% {
        transform: scale(1);
        color: var(--dark-blue);
    }

    50% {
        transform: scale(1.1);
        color: var(--primary-blue);
    }

    100% {
        transform: scale(1);
        color: var(--dark-blue);
    }
}



.stat-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 40px rgba(0, 74, 153, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
    line-height: 1;
    animation: stat-number-pulse 3s ease-in-out infinite;
}

.stat-label {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes stat-number-pulse {

    0%,
    100% {
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.08);
        filter: brightness(1.2);
    }
}

/* Features Section */
/* Features Section - Parallax Style */
.infra-features {
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

.infra-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 80px;
}

.infra-row:last-child {
    margin-bottom: 0;
}

.infra-row.reversed {
    flex-direction: row-reverse;
}

.infra-content-side {
    flex: 1;
    padding-right: 20px;
}

.infra-row.reversed .infra-content-side {
    padding-right: 0;
    padding-left: 20px;
}

.category-header {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-header i {
    font-size: 2rem;
    color: var(--primary-blue);
    background: #e0f2fe;
    padding: 12px;
    border-radius: 12px;
}

.category-header h3 {
    font-size: 2rem;
    color: var(--dark-blue);
    font-weight: 700;
}

.infra-detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.infra-detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 74, 153, 0.1);
    background: #ffffff;
}

.infra-icon-small {
    min-width: 50px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.detail-text h4 {
    font-size: 1.1rem;
    color: var(--dark-blue);
    margin-bottom: 5px;
    font-weight: 600;
}

.detail-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Parallax Image Container */
.infra-image-side {
    flex: 1;
    position: relative;
}

.parallax-image-container {
    width: 100%;
    height: 450px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 74, 153, 0.15);
    background: #f1f5f9;
    position: relative;
    border: 4px solid #ffffff;
}

.parallax-img {
    width: 100%;
    height: 120%;
    /* Taller for parallax */
    object-fit: cover;
    position: absolute;
    top: -10%;
    /* Start slightly shifted up */
    left: 0;
    transition: transform 0.1s linear;
    /* Smooth but instant for scroll */
    will-change: transform;
}



/* Elegant Infrastructure Showcase Grid */
.infra-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    padding-bottom: 20px;
}

.infra-card-new {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

/* Glass Shimmer Animation */
.infra-card-new::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: 0.5s;
    z-index: 5;
    pointer-events: none;
}

.infra-card-new:hover::after {
    left: 150%;
    transition: 0.8s;
}

.infra-card-new:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 74, 153, 0.15);
    border-color: rgba(0, 74, 153, 0.3);
}

.card-content-flex {
    display: flex;
    flex-direction: row-reverse;
    align-items: stretch;
    height: 100%;
}

.card-left-text {
    flex: 1;
    padding: 10px 20px 10px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-right-img {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.card-right-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    transition: transform 0.6s ease;
}

.infra-card-new:hover .card-right-img img {
    transform: scale(1.1);
}

.infra-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 74, 153, 0.1);
    border-color: rgba(0, 74, 153, 0.2);
}

.card-bg-icon {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 8rem;
    color: rgba(0, 74, 153, 0.03);
    z-index: 0;
    pointer-events: none;
    transition: all 0.6s ease;
}

.infra-card-new:hover .card-bg-icon {
    transform: rotate(-10deg) scale(1.1);
    color: rgba(0, 74, 153, 0.06);
}

.card-header-main {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.card-header-main h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-blue);
    white-space: nowrap;
}

.header-orb {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
    animation: orb-breathe 3s infinite ease-in-out;
}

@keyframes orb-breathe {

    0%,
    100% {
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.1);
        filter: brightness(1.2);
    }
}

/* Variety Color Themes */
.header-orb.theme-1 {
    background: linear-gradient(135deg, #004a99, #0088ff);
    color: #fff;
}

/* Classic Blue */
.header-orb.theme-2 {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: #fff;
}

/* Emerald Green */
.header-orb.theme-3 {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: #fff;
}

/* Warm Rose */
.header-orb.theme-4 {
    background: linear-gradient(135deg, #8e2de2, #4a00e0);
    color: #fff;
}

/* Royal Purple */
.header-orb.theme-5 {
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    color: #fff;
}

/* Fresh Cyan */

.card-header-main h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin: 0;
}

.card-body-items {
    display: grid;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.inner-feature {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    border-radius: 12px;
    border: 1px solid rgba(0, 74, 153, 0.05);
    transition: all 0.3s ease;
}

.inner-feature:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 74, 153, 0.1);
}


.feature-info strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0px;
}

.feature-info p {
    font-size: 1rem;
    color: #334155;
    /* Darker Slate for better visibility */
    line-height: 1.4;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 991px) {
    .infra-showcase-grid {
        grid-template-columns: 1fr;
    }
}

.centers {
    padding: 20px 0;
    text-align: center;
}

.centers h3 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.centers-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.centers-list a {
    padding: 8px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.centers-list a.active {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

@media (min-width: 768px) {
    .fa-map-marker-alt {
        margin-bottom: 19px;
    }
}

@media (max-width: 768px) {
    .centers {
        padding: 30px 0;
    }

    .centers h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .centers-list {
        gap: 6px;
        padding: 0 10px;
    }

    .centers-list a {
        padding: 5px 10px;
        font-size: 0.75rem;
        border-radius: 4px;
    }
}

/* Footer Professionals Styles */
footer {
    background: linear-gradient(135deg, #001d3d 0%, #003566 100%);
    color: #e2e8f0;
    padding: 40px 0 0;
    font-size: 0.9rem;
}

/* Simplified Footer Styles */
/* Simplified Footer Styles */
.footer-simple {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding-bottom: 25px;
    gap: 40px;
}

.footer-logo {
    height: 60px;
    width: auto;
    background: #ffffff;
    padding: 2px 4px;
    border-radius: 6px;
    opacity: 1;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
}

.footer-address,
.footer-phone {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #cbd5e1;
    font-size: 0.95rem;
    max-width: 500px;
    line-height: 1.4;
    justify-content: flex-end;
}

.footer-address i,
.footer-phone i {
    color: var(--primary-green);
    font-size: 1.1rem;
    min-width: 20px;
    text-align: left;
}

.footer-phone a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-phone a:hover {
    color: var(--primary-green);
}

.footer-sep {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.2);
}

.developer-credit {
    font-size: 0.85rem;
    color: #94a3b8;
}

.developer-credit strong {
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer-simple {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-info {
        align-items: flex-start;
        text-align: left;
    }

    .footer-address,
    .footer-phone {
        text-align: left;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }

    .bottom-flex p {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .footer-sep {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        padding: 15px 0;
    }
}

.footer-bottom {
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottom-flex p {
    text-align: center;
    margin: 0;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Mobile Sticky */
.mobile-sticky {
    display: none;
}

.placeholder-img {
    width: 100%;
    border-radius: 20px;
    margin-top: 30px;
    border: 2px dashed #cbd5e1;
    padding: 10px;
}

/* Infrastructure Intro Layout (New) */
.infra-intro {
    display: flex;
    align-items: stretch;
    gap: 50px;
    margin-bottom: 80px;
}

.infra-image-container {
    flex: 1.3;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.infra-building-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 74, 153, 0.15);
    border: 4px solid #ffffff;
    transition: transform 0.5s ease;
}

/* .infra-building-img:hover {
    transform: scale(1.05);
} */

.infra-right-content {
    flex: 0.7;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.grand-opening-box {
    background: linear-gradient(135deg, #004a99 0%, #002d62 100%);
    padding: 25px;
    border-radius: 20px;
    color: var(--white);
    margin-bottom: 5px;
    box-shadow: 0 15px 35px rgba(0, 74, 153, 0.3);
    position: relative;
    overflow: visible;
    /* Changed to visible so button glow isn't clipped */
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: box-shimmer 3s infinite alternate, box-blink 2s infinite ease-in-out;
}

@keyframes box-blink {

    0%,
    100% {
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 5px rgba(0, 74, 153, 0.2), 0 0 10px rgba(0, 74, 153, 0.1);
    }

    50% {
        border-color: #ffde00;
        box-shadow: 0 0 15px #ffde00, 0 0 30px rgba(255, 222, 0, 0.4), inset 0 0 10px rgba(255, 222, 0, 0.2);
    }
}

@keyframes box-shimmer {
    0% {
        box-shadow: 0 15px 35px rgba(0, 74, 153, 0.3);
    }

    100% {
        box-shadow: 0 15px 45px rgba(0, 74, 153, 0.5), 0 0 20px rgba(255, 222, 0, 0.2);
    }
}

.grand-opening-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.opening-badge {
    background: #ffde00;
    color: #000;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(255, 222, 0, 0.3);
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.grand-opening-box h4 {
    margin: 0 0 10px 0;
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.grand-opening-box p {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.5;
}

.opening-offer {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.opening-offer i {
    font-size: 1.5rem;
    color: #ffde00;
    filter: drop-shadow(0 0 5px rgba(255, 222, 0, 0.5));
}

.opening-offer span {
    font-size: 1.05rem;
    font-weight: 600;
}

.grand-opening-box.elaborated {
    padding: 30px;
}

.opening-offer {
    margin-top: 15px;
    background: rgba(255, 255, 255, 0.15);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border: 1px dashed rgba(255, 255, 255, 0.5);
    animation: offer-box-glow 2s ease-in-out infinite;
}

.offer-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.offer-btn {
    align-self: flex-end;
    padding: 8px 18px !important;
    font-size: 0.9rem !important;
    white-space: nowrap;
    animation: btn-yellow-blink 1s infinite alternate;
    margin-top: -15px;
    /* Shifted up for balance */
}

@keyframes btn-yellow-blink {
    0% {
        background: var(--primary-blue);
        color: #fff;
        box-shadow: 0 0 0px transparent;
    }

    100% {
        background: #ffdb00;
        color: #000;
        box-shadow: 0 0 15px #ffdb00;
    }
}

@keyframes offer-box-glow {

    0%,
    100% {
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 0 5px rgba(255, 222, 0, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
    }

    50% {
        background: rgba(255, 222, 0, 0.15);
        box-shadow: 0 0 20px rgba(255, 222, 0, 0.4);
        border-color: #ffde00;
    }
}

.opening-offer i {
    font-size: 1.2rem;
    color: #ffde00;
}

.opening-offer span {
    font-size: 1.2rem;
    animation: soft-blink 2s ease-in-out infinite;
}

@keyframes soft-blink {

    0%,
    100% {
        color: #ffffff;
        transform: scale(1);
    }

    50% {
        color: #ffde00;
        transform: scale(1.03);
    }
}

/* Adjust stats grid to fit right side */
.infra-stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Force 2 columns */
    gap: 25px;
    margin: 0;
    /* Remove old margin */
}

/* Make stats look good in the grid */
/* Make stats look good in the grid */
.stat-card {
    padding: 20px;
    /* Slightly more compact */
}

@media (max-width: 991px) {
    .infra-intro {
        flex-direction: column;
        gap: 40px;
    }

    .infra-image-container,
    .infra-right-content {
        width: 100%;
        flex: none;
    }

    .infra-building-img {
        max-height: 400px;
        object-fit: cover;
    }
}

/* Moved Features Style */
.infra-features-horizontal {
    display: flex;
    justify-content: space-around;
    gap: 15px;
    margin-top: 0;
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.6);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(0, 74, 153, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.infra-features-horizontal .feature-item {
    font-size: 0.95rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .infra-features-horizontal {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-form .form-card {
        margin-left: 0;
        margin-right: auto;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }



    .footer-grid {
        grid-template-columns: 1fr;
    }

    .category-items {
        grid-template-columns: 1fr;
    }

    .infra-row {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }

    .infra-row.reversed {
        flex-direction: column;
    }

    .infra-content-side,
    .infra-row.reversed .infra-content-side {
        padding: 0;
    }

    .parallax-image-container {
        height: 300px;
    }

    .infra-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {

    .showcase-header {
        margin-top: 40px;
        margin-bottom: 30px;
    }

    /* Responsive Header & Buttons */
    .nav-container {
        padding: 10px 15px;
        justify-content: center;
    }

    .header-logo {
        height: 55px;
        max-width: 100%;
        width: auto;
    }

    .desktop-only {
        display: none;
    }

    .btn-primary {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .hero {
        padding: 0;
        text-align: center;
        background: url('assets/mobilehd.jpeg');
        /* Placeholder for your mobile banner */
        background-size: contain;
        background-position: top center;
        background-repeat: no-repeat;
        min-height: auto;
        display: block;
    }

    .hero .container {
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    .hero-form {
        margin-top: 132vw;
        padding: 10px;
        background: #f8fafc;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-form .form-card {
        margin: 0 auto;
        padding: 25px 20px;
        max-width: 100%;
        width: 100%;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-radius: 15px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .hero-content p {
        font-size: 1rem;
        margin: 0 auto 20px;
    }

    .hero-features {
        justify-content: center;
        margin-bottom: 40px;
    }

    /* Mobile Sticky Footer CTAs */
    .mobile-sticky {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #2c3e6b;
        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
        z-index: 2000;
        padding: 0;
        gap: 0;
        align-items: stretch;
        transform: translateZ(0);
        /* Hardware acceleration to prevent shaking */
        -webkit-transform: translateZ(0);
    }

    .sticky-item {
        flex: 1;
        text-align: center;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        font-weight: 600;
        font-size: 0.75rem;
        padding: 10px 0;
        border-radius: 0;
        transition: all 0.3s ease;
        color: #ffffff;
        background: transparent;
        border-right: 1px solid rgba(255, 255, 255, 0.15);
    }

    .sticky-item:last-child {
        border-right: none;
    }

    .sticky-item.call {
        background: transparent;
        color: #ffffff;
        box-shadow: none;
        animation: none;
    }

    .sticky-item.whatsapp {
        background: transparent;
        color: #ffffff;
        box-shadow: none;
        animation: none;
    }

    .sticky-item.book {
        background: transparent;
        color: #ffffff;
        box-shadow: none;
        animation: yellow-blink 1s infinite ease-in-out;
        font-weight: 800;
        border-right: none;
    }

    @keyframes yellow-blink {

        0%,
        100% {
            color: #ffffff;
            text-shadow: none;
            transform: scale(1);
        }

        50% {
            color: #ffdb00;
            text-shadow: 0 0 5px #ffdb00, 0 0 10px #ffdb00, 0 0 15px #ffffff, 2px -2px 1px rgba(255, 255, 255, 0.9);
            transform: scale(1.05);
        }

        25%,
        75% {
            text-shadow: -2px 2px 2px rgba(255, 255, 255, 0.5);
        }
    }

    .sticky-item i {
        font-size: 1.3rem;
    }

    /* Infrastructure Card Mobile Overlay Style */
    .infra-showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .infra-card-new {
        height: 300px;
        /* Fixed height for consistent overlay */
    }

    .card-content-flex {
        flex-direction: row;
        /* Reset for mobile overlay */
        position: relative;
        height: 100%;
        overflow: hidden;
    }

    .card-right-img {
        flex: none;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

    .card-right-img img {
        mask-image: none !important;
        -webkit-mask-image: none !important;
        transform: scale(1) !important;
    }

    .card-left-text {
        flex: none;
        position: absolute;
        top: 0;
        right: 0;
        width: 75%;
        /* Reduced from 85% to show more of the image */
        height: 100%;
        background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.7));
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        z-index: 2;
        padding: 20px !important;
        transform: translateX(100%);
        transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: #ffffff;
    }

    .infra-card-new:hover .card-left-text,
    .infra-card-new:active .card-left-text,
    .infra-card-new.is-visible .card-left-text {
        transform: translateX(0);
    }

    .card-left-text h3,
    .card-left-text p,
    .card-left-text strong {
        color: #ffffff !important;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
    }

    .card-header-main h3 {
        white-space: normal;
        /* Allow wrap if needed on mobile overlay */
        font-size: 1.3rem;
    }

    .inner-feature {
        margin-bottom: 12px;
        background: transparent !important;
        border: none !important;
    }

    .feature-info p {
        color: rgba(255, 255, 255, 0.9) !important;
    }

    .card-bg-icon {
        display: none;
        /* Hide background icons on mobile overlay */
    }

    body {
        padding-bottom: 60px;
    }
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    font-size: 1.5rem;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        display: none;
        /* Hide on mobile because sticky footer already has WhatsApp */
    }
}

/* Floating WhatsApp */
.whatsapp-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.whatsapp-float {
    position: relative;
    bottom: 0;
    left: 0;
    background: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-message {
    position: absolute;
    bottom: 70px;
    left: 0;
    width: 280px;
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-message.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 5px;
}

.message-header strong {
    font-size: 0.9rem;
    color: #004a99;
}

.close-chat {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #94a3b8;
    cursor: pointer;
    line-height: 1;
}

.whatsapp-message p {
    margin: 0;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.4;
}

.whatsapp-message::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 25px;
    border-width: 10px 10px 0 0;
    border-style: solid;
    border-color: white transparent transparent transparent;
}

@media (max-width: 768px) {
    .whatsapp-container {
        display: none;
    }
}

/* Form Validation Errors */
.error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
    font-weight: 500;
}

.form-group.error input,
.form-group.error select {
    border-color: #dc3545;
    background-color: #fff8f8;
}

.form-group.success input {
    border-color: #2ecc71;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-5px);
    }
}

.shake {
    animation: shake 0.3s ease-in-out;
    border-color: #dc3545 !important;
    color: #dc3545 !important;
}