/* ============================================
   Global Styles & Variables
   ============================================ */

:root {
    --primary-color: #602d8c;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --download-btn-color: #E7000B;
    --nav-link-color: #1E2939;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* ============================================
   Common Button Styles
   ============================================ */

.btn-download-app {
    background-color: var(--download-btn-color);
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-download-app:hover {
    background-color: #c50009;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(231, 0, 11, 0.3);
}

/* ============================================
   Hero Section Styles
   ============================================ */

.hero-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.hero-card {
    background: linear-gradient(100.93deg, #AF2245 0%, #602D8A 100%);
    border-radius: 24px;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    opacity: 0.5;
    pointer-events: none;
}

.hero-card::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transform: rotate(15deg);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

.hero-badge i {
    font-size: 18px;
}

.hero-heading {
    font-family: 'Alexandria', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 24px;
}

.hero-description {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 32px;
    opacity: 0.95;
}

.btn-login {
    display: inline-block;
    background-color: #ffffff;
    color: #AF2245;
    padding: 14px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-login:hover {
    background-color: #f0f0f0;
    color: #AF2245;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    max-height: 600px;
    width: 100%;
    max-width: 400px;
    object-fit: cover;
    border-radius: 12px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 3;
}

.floating-card-text {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
}

.floating-card-clients {
    bottom: 25%;
    right: -3%;
    text-align: center;
    min-width: 160px;
}

@media (min-width: 992px) {
    .floating-card-clients {
        right: -8%;
    }
}

.clients-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #AF2245 0%, #602D8A 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.clients-icon i {
    font-size: 24px;
    color: #ffffff;
}

.floating-card-number {
    font-family: 'Alexandria', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 4px;
}

.floating-card-label {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
}

/* ============================================
   Our Services Section Styles
   ============================================ */

.services-section {
    background: #F7F0FF;
    padding: 80px 0;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(96, 45, 140, 0.05) 1px, transparent 0);
    background-size: 20px 20px;
    pointer-events: none;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.services-title-wrapper {
    flex: 1;
}

.services-title {
    font-family: 'Alexandria', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.2;
}

.services-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-primary);
    margin: 0;
    opacity: 0.8;
}

.btn-help {
    background-color: #90EE90;
    color: #ffffff;
    padding: 12px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
}

.btn-help:hover {
    background-color: #7dd87d;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(144, 238, 144, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.service-icon i {
    font-size: 36px;
}

.service-name {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
}

/* ============================================
   About Us Section Styles
   ============================================ */

.about-section {
    background: #ffffff;
    padding: 100px 0;
}

.about-images {
    position: relative;
    height: 600px;
    width: 100%;
}

.about-image {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.about-image-1 {
    top: 0;
    left: 0;
    width: 40%;
    height: 45%;
    z-index: 3;
}

.about-image-2 {
    top: 20%;
    right: 0;
    width: 50%;
    height: 50%;
    z-index: 2;
}

.about-image-3 {
    bottom: 0;
    left: 0;
    width: 45%;
    height: 40%;
    z-index: 1;
}

.about-content {
    padding-left: 40px;
}

.about-label {
    display: inline-block;
    color: #E7000B;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.about-heading {
    font-family: 'Alexandria', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 24px;
}

.about-description {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.btn-book-appointment {
    display: inline-block;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-book-appointment:hover {
    background-color: #4a2370;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(96, 45, 140, 0.3);
}

/* ============================================
   Zuwara In 3 Simple Steps Section Styles
   ============================================ */

.steps-section {
    background: #F7F0FF;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.steps-title {
    font-family: 'Alexandria', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 50px;
    line-height: 1.2;
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: #ffffff;
    border: 1px solid rgba(96, 45, 140, 0.2);
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.step-card:hover {
    box-shadow: 0 4px 12px rgba(96, 45, 140, 0.1);
    transform: translateY(-2px);
}

.step-number {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Alexandria', sans-serif;
    font-size: 28px;
    font-weight: 700;
}

.step-content {
    flex: 1;
}

.step-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.step-description {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Phone Mockup Styles */
.phone-mockup-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.phone-mockup {
    position: relative;
    width: 350px;
    height: 600px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 36px;
    padding: 12px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        inset 0 0 0 2px rgba(255, 255, 255, 0.5);
    z-index: 2;
    transform: rotate(-5deg);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* App Header */
.app-header {
    background: var(--text-primary);
    color: #ffffff;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.app-header i {
    font-size: 20px;
    cursor: pointer;
}

/* App Content */
.app-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.app-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

/* Search Bar */
.app-search {
    position: relative;
    margin-bottom: 20px;
}

.search-input {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--text-primary);
    background: #f8fafc;
}

.search-input::placeholder {
    color: #94a3b8;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #ffffff;
}

.app-search i {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 18px;
    cursor: pointer;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.category-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.category-item:hover {
    background: #f1f5f9;
    border-color: var(--primary-color);
}

.category-item i {
    font-size: 24px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
}

.category-item span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    display: block;
}

.category-selected {
    background: var(--primary-color) !important;
    border-color: var(--primary-color);
}

.category-selected i,
.category-selected span {
    color: #ffffff;
}

/* App Footer Text */
.app-footer-text {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 16px;
    margin-top: auto;
}

/* Continue Button */
.app-continue-btn {
    width: 100%;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.app-continue-btn:hover {
    background: #4a2370;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(96, 45, 140, 0.3);
}

/* Background Decorative Shapes */
.phone-bg-shapes {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(96, 45, 140, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(96, 45, 140, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 500px) {
    .category-item {
        padding: 5px;
    }
    
    /* We Care Section Small Mobile */
    .we-care-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .we-care-title {
        font-size: 24px;
    }
}

/* ============================================
   Real Help Section Styles
   ============================================ */

.real-help-section {
    background: linear-gradient(180deg, #F7F0FF 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.real-help-content {
    position: relative;
    z-index: 2;
}

.real-help-heading {
    font-family: 'Alexandria', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 24px;
}

.real-help-description {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.btn-read-more {
    display: inline-block;
    background-color: #E7000B;
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-read-more:hover {
    background-color: #c50009;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(231, 0, 11, 0.3);
}

/* Illustration Styles */
.real-help-illustration {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 500px;
}

.illustration-main {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* Thought Bubble */
.thought-bubble {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 120px;
    height: 100px;
    z-index: 4;
    animation: float 3s ease-in-out infinite;
}

.thought-bubble svg {
    width: 100%;
    height: 100%;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Abstract Background Shapes */
.abstract-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.shape-1 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #AF2245, #602D8A);
    top: 10%;
    right: 5%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-2 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #602D8A, #AF2245);
    top: 60%;
    right: 15%;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: #AF2245;
    top: 5%;
    right: 20%;
    border-radius: 50%;
}

.shape-4 {
    width: 60px;
    height: 60px;
    background: #602D8A;
    bottom: 20%;
    right: 10%;
    border-radius: 50%;
}

/* Dotted Lines */
.dotted-lines {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 0.3;
}

.dotted-lines svg {
    width: 100%;
    height: 100%;
}

/* ============================================
   We Care Section Styles
   ============================================ */

.we-care-section {
    background: #ffffff;
    padding: 100px 0;
}

.we-care-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.we-care-title {
    font-family: 'Alexandria', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.we-care-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.we-care-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.we-care-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.we-care-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card-illustration {
    margin-bottom: 24px;
}

.illustration-circle {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #F7F0FF 0%, #EADEF3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 20px;
}

.illustration-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-description {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   Patients Feedback Section Styles
   ============================================ */

.patients-feedback-section {
    background: linear-gradient(135deg, #AF2245 0%, #602D8A 100%);
    padding: 100px 0 150px;
    position: relative;
    overflow: hidden;
}

.feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.feedback-title-wrapper {
    flex: 1;
}

.feedback-title {
    font-family: 'Alexandria', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.feedback-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    opacity: 0.95;
}

.feedback-navigation {
    display: flex;
    gap: 12px;
}

.nav-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-arrow:hover:not(.disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.nav-arrow.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.nav-arrow i {
    font-size: 24px;
    color: #E7000B;
}

.testimonials-slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 24px;
}

.testimonials-slider .testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 0;
}

@media (max-width: 991px) {
    .testimonials-slider .testimonial-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 767px) {
    .testimonials-slider .testimonial-card {
        flex: 0 0 100%;
    }
}

.testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    font-size: 20px;
    color: #FF8C00;
}

.testimonial-quote {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 16px;
}

.profile-image {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f1f5f9;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.profile-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    margin: 0;
}

/* Wavy Bottom Shape */
.feedback-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: #1e293b;
    clip-path: polygon(
        0% 60%,
        10% 55%,
        20% 50%,
        30% 45%,
        40% 40%,
        50% 35%,
        60% 30%,
        70% 35%,
        80% 40%,
        90% 45%,
        100% 50%,
        100% 100%,
        0% 100%
    );
    z-index: 1;
}

/* ============================================
   App Download Section Styles
   ============================================ */

.app-download-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
}

.app-download-card {
    background: linear-gradient(135deg, #AF2245 0%, #602D8A 100%);
    border-radius: 32px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(96, 45, 140, 0.2);
}

.app-download-content {
    position: relative;
    z-index: 3;
}

.app-download-heading {
    font-family: 'Alexandria', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.app-download-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #000000;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    text-decoration: none;
}

.download-btn i {
    font-size: 32px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-label {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 400;
    opacity: 0.9;
}

.btn-name {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
}

/* Phone Screenshots */
.phone-screenshots {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.phone-screenshot {
    position: absolute;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: #ffffff;
    padding: 8px;
}

.phone-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.phone-1 {
    width: 280px;
    height: 560px;
    left: 0;
    z-index: 1;
    transform: rotate(-8deg) translateY(20px);
}

.phone-2 {
    width: 300px;
    height: 600px;
    right: 0;
    z-index: 2;
    transform: rotate(5deg) translateY(-10px);
}

/* Organic Background Shapes */
.organic-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.organic-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(40px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-2 {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: -50px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 20%;
    border-radius: 40% 60% 50% 50% / 50% 50% 60% 40%;
}

/* ============================================
   Header Styles
   ============================================ */

.main-header {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .navbar {
    padding: 0;
}

.main-header .navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
    max-width: 135px;
}
.footer-logo-image{
    max-width: 150px;
}

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

.logo-icon {
    display: inline-block;
    background: linear-gradient(135deg, #602d8c 0%, #E7000B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    position: relative;
    font-size: 24px;
    line-height: 1;
}

/* Stylized r icon with house - person shape */
.logo-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, #602d8c 0%, #E7000B 100%);
    border-radius: 50% 50% 50% 0;
    z-index: 1;
}

/* House inside the r */
.logo-icon::before {
    content: '';
    position: absolute;
    bottom: 2px;
    right: -8px;
    width: 8px;
    height: 6px;
    background: #E7000B;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    z-index: 2;
}

.main-header .navbar-nav {
    align-items: center;
    gap: 10px;
}

.main-header .nav-link {
    color: var(--nav-link-color) !important;
    font-weight: 400;
    font-size: 15px;
    padding: 8px 16px !important;
    transition: color 0.3s ease;
    text-decoration: none;
}

.main-header .nav-link:hover {
    color: var(--primary-color) !important;
}

.main-header .navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.main-header .navbar-toggler:focus {
    box-shadow: none;
}

.main-header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(30, 41, 57, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   Footer Styles
   ============================================ */

.main-footer {
    background: linear-gradient(180deg, #F7F0FF 0%, #EADEF3 100%);
    padding: 60px 0 40px;
    margin-top: auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-icon-footer {
    display: inline-block;
    background: linear-gradient(135deg, #602d8c 0%, #E7000B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    position: relative;
    font-size: 24px;
    line-height: 1;
}

/* Stylized r icon with house for footer - person shape */
.logo-icon-footer::after {
    content: '';
    position: absolute;
    top: -6px;
    right: -6px;
    width: 12px;
    height: 12px;
    background: #602d8c;
    border-radius: 50% 50% 50% 0;
    z-index: 1;
}

/* House inside the r for footer */
.logo-icon-footer::before {
    content: '';
    position: absolute;
    top: -4px;
    right: -8px;
    width: 7px;
    height: 5px;
    background: #E7000B;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    z-index: 2;
}

.footer-description {
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-address {
    color: var(--text-primary);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-address p {
    margin-bottom: 8px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* Hide mobile social on desktop */
.footer-social-mobile {
    display: none;
}

/* Show mobile social, hide desktop social on mobile */
@media (max-width: 991px) {
    .footer-social-desktop {
        display: none;
    }
    
    .footer-social-mobile {
        display: flex;
        margin-top: 30px;
        margin-bottom: 0;
    }
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.social-icon i {
    font-size: 18px;
    line-height: 1;
}

.social-icon:hover {
    color: var(--primary-color);
    text-decoration: none;
    background-color: rgba(96, 45, 140, 0.1);
    transform: translateY(-2px);
}

.footer-heading {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-list a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* Divider line in footer */
.footer-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(30, 41, 57, 0.2);
    margin: 40px 0 0;
}

.footer-content {
    position: relative;
}

/* ============================================
   Responsive Styles
   ============================================ */

@media (max-width: 991px) {
    .main-header .navbar-nav {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .main-header .nav-link {
        padding: 10px 0 !important;
    }
    
    .btn-download-app {
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
    
    .main-footer {
        padding: 40px 0 30px;
    }
}

@media (max-width: 767px) {
    .main-header .navbar-brand {
        font-size: 20px;
    }
    
    .logo-image,
    .footer-logo-image {
        height: 32px;
    }
    
    .logo-icon,
    .logo-icon-footer {
        font-size: 20px;
    }
    
    .footer-heading {
        margin-top: 30px;
        margin-bottom: 15px;
    }
    
    .footer-heading:first-of-type {
        margin-top: 0;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-card {
        padding: 40px 30px;
        border-radius: 16px;
    }
    
    .hero-heading {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .hero-image-wrapper {
        min-height: 400px;
        margin-top: 30px;
    }
    
    
    .floating-card-clients {
        bottom: 15%;
        right: 0;
        min-width: 140px;
    }
    
    /* Services Section Mobile */
    .services-section {
        padding: 50px 0;
    }
    
    .services-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .services-title {
        font-size: 32px;
    }
    
    .services-subtitle {
        font-size: 14px;
    }
    
    .btn-help {
        align-self: flex-start;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .service-card {
        padding: 24px 16px;
    }
    
    .service-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }
    
    .service-icon i {
        font-size: 32px;
    }
    
    .service-name {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .hero-heading {
        font-size: 36px;
    }
    
    .hero-card {
        padding: 50px 40px;
    }
    
    
    .floating-card-clients {
        right: -3%;
    }
    
    /* Services Section Tablet */
    .services-section {
        padding: 60px 0;
    }
    
    .services-header {
        margin-bottom: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .services-title {
        font-size: 36px;
    }
    
    .service-card {
        padding: 28px 20px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 40px 0;
    }
    
    .services-header {
        margin-bottom: 30px;
    }
    
    .services-title {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .services-subtitle {
        font-size: 13px;
    }
    
    .btn-help {
        padding: 10px 24px;
        font-size: 14px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .service-card {
        padding: 20px 12px;
        border-radius: 12px;
    }
    
    .service-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }
    
    .service-icon i {
        font-size: 28px;
    }
    
    .service-name {
        font-size: 13px;
        line-height: 1.3;
    }
    
    /* About Us Section Mobile */
    .about-section {
        padding: 60px 0;
    }
    
    .about-content {
        padding-left: 0;
        padding-top: 40px;
    }
    
    .about-heading {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .about-description {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .about-images {
        height: 500px;
    }
    
    .about-image-1 {
        width: 40%;
        height: 40%;
        top: 100px;
    }
    
    .about-image-2 {
        width: 55%;
        height: 45%;
        top: 15%;
    }
    
    .about-image-3 {
        width: 65%;
        height: 35%;
    }
    
    /* Steps Section Mobile */
    .steps-section {
        padding: 60px 0;
    }
    
    .steps-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .step-card {
        padding: 24px;
        gap: 20px;
    }
    
    .step-number {
        width: 56px;
        height: 56px;
        min-width: 56px;
        font-size: 24px;
    }
    
    .step-heading {
        font-size: 18px;
    }
    
    .step-description {
        font-size: 14px;
    }
    
    .phone-mockup {
        width: 280px;
        height: 560px;
        transform: rotate(0deg);
    }
    
    .phone-mockup-wrapper {
        padding: 20px 0;
    }
    
    /* Real Help Section Mobile */
    .real-help-section {
        padding: 60px 0;
    }
    
    .real-help-heading {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .real-help-description {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .real-help-illustration {
        height: 400px;
        margin-top: 40px;
    }
    
    .thought-bubble {
        width: 80px;
        height: 70px;
        top: 10%;
        right: 5%;
    }
    
    .shape-1 {
        width: 100px;
        height: 100px;
    }
    
    .shape-2 {
        width: 70px;
        height: 70px;
    }
    
    .shape-3 {
        width: 60px;
        height: 60px;
    }
    
    .shape-4 {
        width: 50px;
        height: 50px;
    }
    
    /* We Care Section Mobile */
    .we-care-section {
        padding: 60px 0;
    }
    
    .we-care-header {
        margin-bottom: 40px;
    }
    
    .we-care-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .we-care-subtitle {
        font-size: 14px;
    }
    
    .we-care-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .we-care-card {
        padding: 24px 16px;
    }
    
    .illustration-circle {
        width: 100px;
        height: 100px;
        padding: 15px;
    }
    
    .card-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .card-description {
        font-size: 13px;
    }
    
    /* Patients Feedback Section Mobile */
    .patients-feedback-section {
        padding: 60px 0 120px;
    }
    
    .feedback-header {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 40px;
    }
    
    .feedback-title {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .feedback-subtitle {
        font-size: 16px;
    }
    
    .feedback-navigation {
        align-self: flex-start;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .feedback-wave {
        height: 80px;
    }
    
    /* App Download Section Mobile */
    .app-download-section {
        padding: 60px 0;
    }
    
    .app-download-card {
        padding: 40px 30px;
        border-radius: 24px;
    }
    
    .app-download-heading {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .app-download-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .download-buttons {
        gap: 12px;
    }
    
    .download-btn {
        min-width: 180px;
        padding: 10px 20px;
    }
    
    .download-btn i {
        font-size: 28px;
    }
    
    .btn-name {
        font-size: 16px;
    }
    
    .btn-label {
        font-size: 10px;
    }
    
    .phone-screenshots {
        height: 400px;
        margin-top: 40px;
    }
    
    .phone-1 {
        width: 200px;
        height: 400px;
        left: 10%;
        transform: rotate(-5deg) translateY(10px);
    }
    
    .phone-2 {
        width: 220px;
        height: 440px;
        right: 10%;
        transform: rotate(3deg) translateY(-5px);
    }
}

@media (max-width: 991px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-content {
        padding-left: 20px;
    }
    
    .about-heading {
        font-size: 36px;
    }
    
    .about-images {
        height: 550px;
    }
    
    /* Steps Section Tablet */
    .steps-section {
        padding: 80px 0;
    }
    
    .steps-title {
        font-size: 36px;
    }
    
    .phone-mockup {
        width: 300px;
        height: 600px;
        transform: rotate(-3deg);
    }
    
    /* Real Help Section Tablet */
    .real-help-section {
        padding: 80px 0;
    }
    
    .real-help-heading {
        font-size: 36px;
    }
    
    .real-help-illustration {
        height: 500px;
    }
    
    /* We Care Section Tablet */
    .we-care-section {
        padding: 80px 0;
    }
    
    .we-care-title {
        font-size: 36px;
    }
    
    .we-care-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Patients Feedback Section Tablet */
    .patients-feedback-section {
        padding: 80px 0 130px;
    }
    
    .feedback-title {
        font-size: 36px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* App Download Section Tablet */
    .app-download-section {
        padding: 80px 0;
    }
    
    .app-download-card {
        padding: 60px 50px;
    }
    
    .app-download-heading {
        font-size: 36px;
    }
    
    .phone-screenshots {
        height: 500px;
    }
    
    .phone-1 {
        width: 240px;
        height: 480px;
    }
    
    .phone-2 {
        width: 260px;
        height: 520px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .we-care-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* ============================================
   Utility Classes
   ============================================ */

.container {
    max-width: 1200px;
}

