:root {
    --primary: #2c3e50;
    --secondary: #ed1e23;
    --tertiary: #fbb719;
    --dark: #0d223f;
    --light: #f8fafc;
    --font-main: 'Poppins', sans-serif
}

html {
    scroll-behavior: smooth
}



p {
    font-size: 17px !important
}

.navbar {
    background: #fff;
    box-shadow: 0 2px 8px rgb(0 0 0 / .04)
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary) !important;
    letter-spacing: 1px
}

.navbar-nav .nav-link {
    color: var(--dark) !important;
    font-weight: 600;
    margin-right: 10px;
    transition: color 0.2s;
    text-transform: uppercase
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: #ed1e23 !important
}

.btn-primary {
    background: var(--primary);
    border: none;
    font-weight: 600;
    border-radius: 30px;
    border: 2px solid #fff;
    padding: 12px 32px;
    transition: background 0.2s
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--secondary)
}

.btn-secondary {
    background: var(--secondary);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    padding: 12px 32px;
    transition: background 0.2s
}

.btn-secondary:hover {
    background: #b80d18
}

.btn-tertiary {
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    padding: 12px 32px;
    transition: background 0.2s
}

.btn-tertiary:hover {
    background: var(--secondary);
    color: #ffffff
}

.btn-read {
   background: var(--primary);
    border: none;
    font-weight: 600;
    border-radius: 30px;
    border: 2px solid #fff;
    padding: 12px 32px;
    transition: background 0.2s;
    color: #fff;

}

.btn-read:hover {
    background: var(--secondary);
    color: #ffffff
}

.Logo-0 img {
    width: 145px;
    height: auto
}

.hero-section {
    min-height: 70vh;
    background: linear-gradient(90deg, rgb(1 90 170 / .95) 60%, rgb(237 30 35 / .85) 100%), url(/images/banner1.jpg) center/cover no-repeat;
    color: #fff;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 0 0 0
}

.hero-section .container {
    position: relative;
    z-index: 2
}

.hero-section h1 {
    font-weight: 700;
    font-size: 39px;
    line-height: 1.2;
        margin-bottom: 8px
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 0;
    font-weight: 400
}

.hero-section .btn {
    margin-right: 10px;
    margin-bottom: 10px
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    height: auto;
    background: url(https://www.transparenttextures.com/patterns/diagmonds-light.png);
    opacity: .08;
    z-index: 1
}

.about-section {
    background: #fff;
    padding: 60px 0 40px 0
}

.about-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 12px
}

.about-feature {
    text-align: center;
    padding: 24px 12px;
    border-radius: 16px;
    background: var(--light);
    box-shadow: 0 2px 12px rgb(1 90 170 / .06);
    margin-bottom: 24px;
    transition: transform 0.2s, box-shadow 0.2s
}

.about-feature:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px rgb(1 90 170 / .1)
}

.services-section {
    background: var(--light);
    padding: 30px 0 40px 0
}

.service-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgb(1 90 170 / .07);
    margin-bottom: 24px;
    background: #fff;
    transition: transform 0.2s, box-shadow 0.2s
}

.service-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px rgb(237 30 35 / .1)
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px
}

.why-section {
    background: #fff;
    padding: 60px 0 40px 0
}

.why-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    list-style: none;
    padding: 0
}

.why-list li {
    font-size: 1.1rem;
    position: relative;
    padding-left: 2.2rem;
    min-height: 40px;
    display: flex;
    align-items: flex-start
}

.why-list li::before {
    content: "✔";
    color: var(--tertiary);
    font-size: 1.5rem;
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 0
}

.testimonials-section {
    background: var(--light);
    padding: 60px 0 40px 0
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgb(1 90 170 / .07);
    padding: 32px 24px;
    text-align: center;
    margin: 0 8px
}

.testimonial-img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary);
    margin-bottom: 12px
}

.testimonial-name {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px
}

.testimonial-quote {
    font-style: italic;
    color: #555
}

.contact-section {
    background: #fff;
    padding: 60px 0 40px 0
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    background: var(--light);
    border-radius: 16px;
    box-shadow: 0 2px 16px rgb(1 90 170 / .07);
    padding: 32px 24px
}

.form-control,
.form-control:focus {
    border-radius: 30px;
    border: 1.5px solid var(--primary);
    box-shadow: none;
    font-size: 1rem;
    padding: 12px 20px;
    background: #fff
}

.form-label {
    font-weight: 500;
    color: var(--primary)
}

.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-top: 3px solid #007bff
}

.footer-logo {
    border-radius: 4px;
    padding: 10px;
    background-color: #fff
}

section.map-section {
    padding: 20px 0 80px
}

.footer .text-primary {
    color: #4dabf7 !important
}

.footer .contact-info a:hover {
    color: #4dabf7 !important;
    transition: color 0.3s ease
}

.footer .btn-primary {
    background: linear-gradient(45deg, #007bff, #0056b3);
    border: none;
    padding: 10px 20px;
    font-weight: 500;
    transition: transform 0.2s ease
}

.footer .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgb(0 123 255 / .4)
}

.footer .btn-outline-light {
    border: 2px solid #ffffff;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease
}

.footer .btn-outline-light:hover {
    background-color: #ffffff;
    border-color: #6c757d;
    transform: translateY(-2px);
    color: #000;
}

.footer .social-links a {
    transition: all 0.3s ease
}

.footer .social-links a:hover {
    color: #4dabf7 !important;
    transform: translateY(-2px)
}

@media (max-width:768px) {
    .footer .d-grid {
        margin-top: 1rem
    }

    .footer-logo {
        width: 130px;
        height: auto
    }
}

.section-title {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: .5px
}

.text-section {
    background: #fff;
    padding: 60px 0 10px 0
}

.text-p-15 {
    margin-bottom: 32px !important
}

body {
    margin: 0;
    font-family: 'Poppins', 'Roboto', Arial, sans-serif;
}

.why-section {
    padding: 60px 20px;
    background: linear-gradient(265deg, rgb(1 90 170 / .95) 60%, rgb(237 30 35 / .85) 100%), url(/images/banner1.jpg) center / cover no-repeat;
    color: #fff
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: #2c3e50
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto
}

.why-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 6px rgb(0 0 0 / .1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgb(0 0 0 / .15)
}

.why-card i {
    font-size: 35px;
    color: #e74c3c;
    margin-bottom: 15px
}

.why-card h3 {
    font-size: 1.25rem;
    color: #34495e;
    margin-bottom: 10px
}

.why-card p {
    font-size: .95rem;
    color: #555;
    line-height: 1.6
}

.p-lr {
    padding: 30px 39px
}

.service-card {
    border: 1px solid #fff0;
    border-radius: 1.25rem;
    background: #fff;
    height: 100%;
    text-align: center;
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, #00b4ff, #ff37a6);
    background-origin: border-box;
    background-clip: content-box, border-box
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgb(0 0 0 / .12)
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    color: #fff
}

.bg-grad-blue {
    background: linear-gradient(135deg, #00b4ff, #3a7bfd)
}

.bg-grad-purple {
    background: linear-gradient(135deg, #a66cff, #e264ff)
}

.bg-grad-orange {
    background: linear-gradient(135deg, #ff7e5f, #ffb347)
}

.bg-grad-green {
    background: linear-gradient(135deg, #34e89e, #0f3443)
}

@media (min-width:768px) {
    .row.gy-4 {
        row-gap: 2rem
    }
}

.map-responsive {
    overflow: hidden;
    padding-bottom: 55.25%;
    position: relative;
    height: 0;
    width: 100%
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.service-icon img {
    width: 100%
}

.about-hero {
    background: linear-gradient(269deg, rgb(1 90 170 / .95) 60%, rgb(237 30 35 / .85) 100%), url(/images/hero-img/patient-transportation.jpg) center/cover no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Poppins', 'Roboto', Arial, sans-serif
}

.about-hero h1 {
    font-weight: 700;
    letter-spacing: -1px
}

.about-hero .lead {
    font-size: 1.25rem;
    font-weight: 400
}

.about-content-section {
    background: #fff;
    font-family: 'Poppins', 'Roboto', Arial, sans-serif;
}

.about-content-section .section-title {
    font-weight: 600;
    color: #2c3e50
}

.about-content-section img {
    border-radius: 12px;
    border: 1px solid #e5d9d9;
    box-shadow: 0 4px 24px rgb(13 110 253 / .08)
}

.about-extra-section {
    background: #f8f9fa
}

.about-extra-section .card {
    border-radius: 14px;
    border: none;
    transition: box-shadow 0.2s
}

.about-extra-section .card:hover {
    box-shadow: 0 6px 32px rgb(13 110 253 / .1)
}

.about-extra-section .card-title {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.3rem
}

.about-extra-section i {
    font-size: 1.5rem;
    vertical-align: middle
}

.cta-section {
    background: linear-gradient(90deg, #0d6efd 0%, #0a58ca 100%);
    color: #fff;
    padding: 60px 0
}

.cta-section h2 {
    font-weight: 600
}

.cta-section .btn-primary,
.cta-section .btn-outline-light {
    font-size: 1.1rem;
    padding: .75rem 2rem;
    border-radius: 30px;
    font-weight: 600
}

.cta-section .btn-outline-light {
    border: 2px solid #fff;
    color: #fff
}

.cta-section .btn-outline-light:hover {
    background: #fff;
    color: #0d6efd;
    border-color: #fff
}

@media (max-width:991.98px) {
    .about-content-section .row {
        flex-direction: column-reverse
    }

    .about-content-section img {
        margin-bottom: 2rem
    }
}

.faq-content-section .accordion-item {
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid #dee2e6
}

.faq-content-section .accordion-button {
    padding: 15px 20px;
    font-weight: 500;
    position: relative
}

.faq-content-section .accordion-button::after {
    background-image: none !important;
    content: '+';
    font-weight: 700;
    margin-left: auto;
    position: absolute;
    right: 20px
}

.faq-content-section .accordion-button:not(.collapsed)::after {
    content: '-'
}

.faq-content-section .accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #000
}

.faq-content-section .accordion-button:hover {
    background-color: #e9ecef
}

.faq-content-section .accordion-body {
    padding: 20px;
    background-color: #f8f9fa
}

.services-hero {
    background: linear-gradient(269deg, rgb(1 90 170 / .95) 60%, rgb(237 30 35 / .85) 100%), url(/images/hero-img/Servies.jpg) center/cover no-repeat;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Poppins', 'Roboto', Arial, sans-serif;
}

.services-list-section .card {
    border-radius: 14px;
    border: none;
    transition: box-shadow 0.2s;
    background: #fff
}

.services-list-section .card:hover {
    box-shadow: 0 6px 32px rgb(13 110 253 / .1)
}

.services-list-section .service-icon img {
    width: 48px;
    height: 48px
}

.services-list-section .card-title {
    font-weight: 600;
    color: #2c3e50 !important;
    font-size: 1.15rem
}

@media (max-width:991.98px) {
    .services-list-section .row {
        row-gap: 2rem
    }
}

.careers-hero {
    background: linear-gradient(269deg, rgb(1 90 170 / .95) 60%, rgb(237 30 35 / .85) 100%), url(/images/hero-img/join.jpg) center/cover no-repeat;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Poppins', 'Roboto', Arial, sans-serif;
}

.now-hiring-section .card {
    border-radius: 14px;
    border: none;
    transition: box-shadow 0.2s;
    background: #fff
}

.now-hiring-section .card:hover {
    box-shadow: 0 6px 32px rgb(13 110 253 / .1)
}

.now-hiring-section .card-title {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.15rem
}

.why-work-section .list-group-item {
    font-size: 1.1rem;
    border: none;
    background: #f8f9fa;
    padding-left: 0
}

.apply-section .btn-primary,
.apply-section .btn-outline-light {
    font-size: 1.1rem;
    padding: .75rem 2rem;
    border-radius: 30px;
    font-weight: 600
}

.apply-section .btn-outline-light {
    border: 2px solid #fff;
    color: #fff
}

.apply-section .btn-outline-light:hover {
    background: #fff;
    color: #0d6efd;
    border-color: #fff
}

.faq-hero {
    background: linear-gradient(269deg, rgb(1 90 170 / .95) 60%, rgb(237 30 35 / .85) 100%), url(/images/hero-img/FAQ.jpg) center/cover no-repeat;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Poppins', 'Roboto', Arial, sans-serif;
}

.faq-content-section .accordion-button {
    font-weight: 500;
    font-size: 1.1rem;
    color: #2c3e50;
    background: #fff
}

.faq-content-section .accordion-button:not(.collapsed) {
    color: #fff;
    background: #2c3e50
}

.faq-content-section .accordion-body {
    font-size: 1rem;
    background: #fff
}

.faq-content-section .accordion-item {
    border-radius: 10px;
    margin-bottom: 1rem;
    border: none;
    box-shadow: 0 2px 12px rgb(13 110 253 / .06)
}

.contact-hero {
    background: linear-gradient(269deg, rgb(1 90 170 / .95) 60%, rgb(237 30 35 / .85) 100%), url(/images/hero-img/Contect.jpg) center/cover no-repeat;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Poppins', 'Roboto', Arial, sans-serif;
}

.contact-info-section .card {
    border-radius: 14px;
    border: none;
    background: #fff;
    box-shadow: 0 4px 24px rgb(13 110 253 / .08)
}

.contact-info-section .form-label {
    font-weight: 500
}

.contact-info-section .btn-primary {
    font-size: 1.1rem;
    padding: .75rem 2rem;
    border-radius: 30px;
    font-weight: 600
}

.gallery-hero {
    background: linear-gradient(269deg, rgb(1 90 170 / .95) 60%, rgb(237 30 35 / .85) 100%), url(/images/hero-img/gallery.jpg) center/cover no-repeat;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Poppins', 'Roboto', Arial, sans-serif;
}

.gallery-section {
    background: #fff;
    padding: 60px 0 40px 0
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px
}

.gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgb(44 62 80 / .07);
    transition: transform 0.2s, box-shadow 0.2s;
    background: #f8fafc
}

.gallery-img:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 24px rgb(237 30 35 / .13)
}

@media (max-width:767.98px) {
    .gallery-img {
        height: 140px
    }

    .gallery-section {
        padding: 32px 0 20px 0
    }
}


/* gallry css  */



.gallery-hero {
    background: url('images/gallery/hero.jpg') center center/cover no-repeat;
    min-height: 320px;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(269deg, rgb(1 90 170 / .95) 60%, rgb(237 30 35 / .85) 100%), url(/images/hero-img/FAQ.jpg) center/cover no-repeat;
    z-index: 1;
}

.gallery-hero .container {
    position: relative;
    z-index: 2;
}

.gallery-section {
    padding: 60px 0 40px 0;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.gallery-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.2s;
}

.gallery-img:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

@media (max-width: 575.98px) {
    .gallery-img {
        height: 120px;
    }
}


.modern-services .service-card-modern {
    background: #ffffff;
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: #f0f5ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    box-shadow: inset 0 0 0 2px #d6e4ff;
}

.icon-wrapper img {
    width: 40px;
    height: 40px;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.service-list {
    padding-left: 1rem;
    font-size: 0.95rem;
    color: #555;
    list-style: disc;
}

.service-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .icon-wrapper img {
        width: 30px;
        height: 30px;
    }
}





.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.why-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
}

.service-icon img {
    width: 60px;
    margin-bottom: 1rem;
}

/* Tablet and up: 2 columns */
@media (min-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.card {
    border-radius: 0.75rem;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Clean Event Styles */
.eventWrapClean {
    background-color: #f9f9f9;
}

.eventTextClean p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.eventImageBoxClean img {
    transition: 0.3s ease-in-out;
}

.eventImageBoxClean:hover img {
    transform: scale(1.03);
}

.eventDetailsClean p {
    color: #444;
}

.alert-light {
    font-size: 1rem;
    background-color: #f8f9fa;
    border-left: 4px solid #0d6efd;
}

.color-21 {
    color: #2c3e50;
}