.addon-section {
    padding: 80px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.addon-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Grid */
.addon-grid {
    display: flex;
    flex-wrap: wrap;
}

/* Cards */
.addon-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.addon-card:hover {
    transform: translateY(-10px);
    border-color: #e63946;
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.15);
}

/* Icon */
.addon-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #d60909;
    transition: transform 0.4s ease;
}

.addon-card:hover .addon-icon {
    transform: rotateY(360deg) scale(1.1);
}

/* Text */
.addon-card h3 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 10px;
    font-weight: 600;
}

.addon-card p {
    margin: 0;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .addon-section {
        padding: 60px 15px;
    }

    .addon-grid {
        gap: 20px;
    }
}


.trust-section {
    padding: 80px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.addon-icon {
    font-size: 2.5rem;
    color: #d60909;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card-mortal {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.service-card-mortal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.6s;
}

.service-card-mortal:hover::before {
    left: 100%;
}

.service-card-mortal:hover {
    transform: translateY(-10px);
    border-color: #e63946;
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.15);
}

.icon-wrapper {
    font-size: 40px;
    margin-bottom: 15px;
    transition: transform 0.4s ease;
}

.service-card-mortal:hover .icon-wrapper {
    transform: rotateY(360deg) scale(1.1);
}

.addon-icon {
    stroke: white;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    background: none;
}

.service-card-mortal h3 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 10px;
    font-weight: 600;
}



/* Quote Section */
.founder-quote {
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
    border: 2px solid #f0f0f0;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.founder-quote blockquote {
    font-size: 1.4rem;
    font-style: italic;
    color: #2d3748;
    line-height: 1.6;
    margin: 0 0 20px;
    position: relative;
    padding-left: 20px;
}

.founder-quote blockquote::before {
    content: '"';
    font-size: 5rem;
    color: #e63946;
    opacity: 0.2;
    position: absolute;
    left: -20px;
    top: -30px;
    font-family: Georgia, serif;
}

.founder-quote cite {
    color: #e63946;
    font-weight: 600;
    font-style: normal;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .trust-section {
        padding: 60px 15px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .mission-statement {
        font-size: 1.05rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .founder-quote {
        padding: 40px 25px;
    }

    .founder-quote blockquote {
        font-size: 1.1rem;
        padding-left: 10px;
    }

    .founder-quote blockquote::before {
        left: -10px;
        font-size: 3.5rem;
    }
}

/* ---------- Medical Hero Section ---------- */
.medical-hero {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background: #f9fbfd;
    font-family: 'Poppins', sans-serif;
}

/* Section Title */
.medical-hero .section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    /* color: #0d1a2b; */
    margin-bottom: 15px;
}

.medical-hero .section-title p.lead-text {
    font-size: 1.1rem;
    color: #555;
    font-style: italic;
}

/* ---------- Left Testimonial Block ---------- */
.medical-hero .transfer-left {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 880px;
}

.medical-hero .transfer-left:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.medical-hero .transfer-left img {
    max-width: 100%;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.medical-hero .transfer-left img:hover {
    transform: scale(1.05) rotate(1deg);
}

.medical-hero .transfer-left p.lead-text {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
}

/* ---------- Right Cards Section ---------- */
.medical-hero .card {
    border-radius: 20px;
    transition: all 0.5s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.medical-hero .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.medical-hero .card-body {
    padding: 25px 20px;
}

.medical-hero .card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #d60909;
    margin-bottom: 10px;
}

.medical-hero .card-text {
    font-size: 0.95rem;
    color: #333;
}

/* ---------- Availability / Feature List ---------- */
.medical-hero .availability {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    margin-top: 30px;
}

.medical-hero .availability:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.medical-hero .availability ul {
    padding: 0;
    margin: 0;
}

.medical-hero .availability ul li {
    list-style: none;
    font-size: 1rem;
    color: #333;
    padding: 14px 0 14px 40px;
    border-bottom: 1px solid #f1f1f1;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
}

.medical-hero .availability ul li:last-child {
    border-bottom: none;
}

.medical-hero .availability ul li::before {
    content: "\2713";
    /* Tick */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #d60909;
    font-weight: bold;
    font-size: 1.3rem;
    transition: transform 0.4s ease, color 0.4s ease;
}

.medical-hero .availability ul li:hover {
    color: #d60909;
    padding-left: 50px;
}

.medical-hero .availability ul li:hover::before {
    transform: translateY(-50%) scale(1.2);
    color: #ff3b3b;
}

/* ---------- Responsive Enhancements ---------- */
@media (max-width: 991px) {
    .medical-hero .section-title h2 {
        font-size: 2rem;
    }

    .medical-hero {
        padding: 60px 15px;
    }

    .medical-hero .transfer-left,
    .medical-hero .availability,
    .medical-hero .card {
        margin-bottom: 25px;
    }
}

.mortal-sub-head{
    color: #0a1754;
    font-size: 25px;
}

.availability {
    padding: 20px;
}