.elementor-7719 .elementor-element.elementor-element-48347dd{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-7719 .elementor-element.elementor-element-48347dd.e-con{--flex-grow:0;--flex-shrink:0;}@media(min-width:768px){.elementor-7719 .elementor-element.elementor-element-48347dd{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-1927fd0 */:root {
    --primary: #27bcbd;
    /* Karauli Teal */
    --primary-dark: #1e969a;
    --primary-light: rgba(39, 188, 189, 0.08);
    --secondary: #062124;
    /* Very dark teal */
    --accent: #25D366;
    /* WhatsApp Green */
    --bg-light: #f2f7f8;
    --bg-grad: radial-gradient(at 0% 0%, #ffffff 0%, transparent 50%), radial-gradient(at 100% 100%, #eaf8f8 0%, #ffffff 100%);
    --bg-white: #ffffff;
    --text-main: #0f292c;
    --text-muted: #546b6d;
    --border-light: rgba(39, 188, 189, 0.2);
    --shadow-sm: 0 4px 15px rgba(39, 188, 189, 0.05);
    --shadow-md: 0 8px 32px rgba(39, 188, 189, 0.08);
    --shadow-lg: 0 16px 48px rgba(39, 188, 189, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --radius: 20px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    color: var(--text-main);
    background: var(--bg-light);
    background-image: var(--bg-grad);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: var(--secondary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

a {
    text-decoration: none;
    color: var(--primary-dark);
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.my-auto {
    margin-top: auto;
    margin-bottom: auto;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.py-5 {
    padding: 4rem 0;
}

.py-6 {
    padding: 80px 0;
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1.05rem;
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white !important;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, #1c9b4a 100%);
    color: white !important;
}

.btn-accent:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0 120px;
    background: radial-gradient(circle at 80% 20%, rgba(39, 188, 189, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(37, 211, 102, 0.05) 0%, transparent 40%),
        linear-gradient(135deg, #ffffff 0%, #f0fafa 100%);
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 2;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.animated-float {
    animation: float 6s ease-in-out infinite;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--primary-dark);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--secondary);
}

.hero-feature i {
    color: var(--primary);
    font-size: 1.25rem;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero {
        padding: 60px 0 80px;
        text-align: center;
    }

    .hero::before {
        width: 100%;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }
}

/* Glass Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(39, 188, 189, 0.3);
}

/* Section formatting */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Info Grid */
.info-grid {
    align-items: center;
}

.info-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 4px solid white;
}

/* Table Section */
.comparison-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid white;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 1.05rem;
}

.comparison-table th {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    font-weight: 700;
    color: white;
}

.comparison-table th:nth-child(2) {
    background: #e2e8f0;
    color: var(--text-main);
}

.comparison-table td:nth-child(3) {
    background: var(--primary-light);
    font-weight: 600;
    color: var(--primary-dark);
}

@media (max-width: 768px) {

    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--glass-bg);
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid white;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(39, 188, 189, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

/* Locations */
.location-card {
    background: var(--glass-bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid white;
}

.location-card img {
    height: 250px;
    object-fit: cover;
    width: 100%;
    border-bottom: 5px solid var(--primary);
}

.location-body {
    padding: 30px;
    flex-grow: 1;
}

.location-list {
    list-style: none;
}

.location-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05rem;
}

.location-list i {
    color: var(--primary);
    margin-top: 4px;
}

/* Scans Menu */
.scan-category {
    background: var(--glass-bg);
    border-radius: var(--radius);
    padding: 40px;
    height: 100%;
    border-top: 5px solid var(--primary);
    box-shadow: var(--shadow-md);
}

.scan-category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 24px;
}

.scan-category-header i {
    font-size: 2.2rem;
    color: var(--primary);
}

.scan-list {
    list-style: none;
}

.scan-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 24px;
    font-size: 1.05rem;
}

.scan-list li::before {
    content: '\f105';
    /* FontAwesome angle-right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Flow/Steps */
.step-item {
    position: relative;
    padding-left: 70px;
    margin-bottom: 30px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 10px rgba(39, 188, 189, 0.3);
}

/* FAQ */
.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    margin-bottom: 16px;
    border: 1px solid white;
    box-shadow: var(--shadow-sm);
}

.faq-item summary {
    padding: 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--secondary);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 50px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    font-weight: 300;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item[open] summary::after {
    content: '−';
    color: var(--primary-dark);
}

.faq-content {
    padding: 0 24px 24px;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Testimonial Slider */
.slider-container {
    position: relative;
    margin: 0 -15px;
    padding: 10px 15px;
}

.slider-track {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
}

.slider-track::-webkit-scrollbar {
    display: none;
}

.slider-track>div {
    flex: 0 0 100%;
    scroll-snap-align: center;
    max-width: 100%;
}

@media (min-width: 768px) {
    .slider-track>div {
        flex: 0 0 calc(50% - 15px);
    }
}

.testimonial-card {
    background: var(--glass-bg);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid white;
    border-top: 5px solid var(--primary);
    height: 100%;
}

.stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #031517 100%);
    color: white;
    text-align: center;
    border-radius: var(--radius);
    margin: 40px 24px;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(39, 188, 189, 0.1) 0%, transparent 60%);
    z-index: 0;
}

.cta-section>* {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: white;
}

/* --- CT SCAN SPECIFIC STYLES --- */
.scan-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.scan-card {
    background: var(--glass-bg);
    border: 1px solid white;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 5px solid var(--primary);
}

.scan-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-light);
}

.scan-card h4 {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
}

.scan-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.scan-card ul {
    list-style: none;
    padding-left: 0;
    margin-top: 8px;
    margin-bottom: 0;
}

.scan-card ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 4px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.scan-card ul li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
    top: -1px;
    font-weight: 800;
    font-size: 1.2rem;
}

.price-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 12px;
}/* End custom CSS */