:root {
    --goaid-red: #BF0008;
    --goaid-red-hover: #E53E3E;
    --goaid-blue: #204C74;
    --goaid-dark: #2D3748;
    --goaid-gray: #718096;
    --goaid-black: #333333;
    --goaid-light: #FFFFF;
}

body {
    font-family: 'Inter', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--goaid-black);
}

p {
    font-size: 1.05rem;
    line-height: 1.5;
}

.navbar {
    padding: 0;
}

.tracking-wide {
    letter-spacing: 0.1em;
}

.navbar-brand {
    font-size: 1.5rem;
}

#home p {
    font-size: 1.05rem;
    font-weight: 500;
}

.plane-container {
    transition: transform 0.3s ease;
}

.plane-container:hover {
    transform: translateY(-10px);
}

.stat-item {
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.medical-image img {
    transition: transform 0.3s ease;
}

.medical-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem;
    }

    .hero-section {
        min-height: 80vh !important;
    }
}


.text-primary {
    color: var(--goaid-blue) !important;
}

.bg-danger, .btn-danger {
    /*background-color: var(--goaid-red) !important;*/
    background: radial-gradient(at center center, #BF0008 0%, #8F1418 100%);
    border: 0px solid var(--goaid-red) !important;
}

#home .btn-primary {
    /*background-color: var(--goaid-blue) !important;*/
    background: radial-gradient(at center center, #1F4469 0%, #2471B7 100%) !important;
    border: 1px solid var(--goaid-blue) !important;
    border-radius: 25px;
    font-weight: 500;
}

.btn-primary, .bg-primary {
    background: radial-gradient(at center center, #1F4469 0%, #2471B7 100%) !important;
    border: 1px solid #2370b6 !important;
}

.btn-rounded {
    border-radius: 25px !important;
}

/* About Us*/
.who-we-are-section {
    padding: 80px 0;
    /*background: linear-gradient(180deg, #f8fbff, #ffffff);*/
}

.who-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Image Styling */
.image-box {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.image-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 22px;
}

/* Content Styling */
.content-box .tag {
    display: inline-block;
    background: #F4C430;
    color: #0A3D62;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    margin-bottom: 15px;
}

.content-box h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0A3D62;
    line-height: 1.3;
    margin-bottom: 25px;
}

/* Tabs */
.tab-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.tab-buttons button {
    border: 1px solid #d1d9e6;
    background: #ffffff;
    color: #0A3D62;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-buttons button.active {
    background: #E63946;
    color: #ffffff;
    border-color: #E63946;
}

.tab-buttons button:hover {
    background: #0A3D62;
    color: #ffffff;
}

/* Text */
.description {
    color: #4b5563;
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Features */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    color: #0A3D62;
    font-weight: 600;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background: #F4C430;
    color: #0A3D62;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 900px) {
    .who-grid {
        grid-template-columns:1fr;
        gap: 40px;
    }

    .content-box h2 {
        font-size: 28px;
    }
}

/* Why Choose */


/* Stats Counter */
.stats-counter {
    background-color: #1e1e1e;
    background-image: url('https://www.goaid.in/wp-content/uploads/2023/12/Air-Ambulance-Service.webp'); /* optional: background image */
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.stats-counter::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(218, 234, 255, 0.95);
    z-index: -1;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
}

.stat-number span {
    color: var(--goaid-blue);
    margin-left: 3px;
}

.stat-label {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.text-danger {
    color: var(--goaid-blue) !important;
}

/* Section 4 */
.ambulance-services {
    padding: 100px 0;
}

.ambulance-services .heading-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

#ambulanceTabs {
    overflow: hidden;
    padding: 0 0 10px 0;
    width: 65%;
    margin: 0 auto;
}

.ambulance-services .nav-item {
    background-color: #fff;
}

.ambulance-services .nav-tabs .nav-link {
    background: #fff;
    color: #000;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 10px 10px 0 0;
    padding: 20px 20px;
    box-shadow: 0 5px 10px rgba(255, 223, 223, 0.18);
    border: 1px solid #e3eff4;
    margin: 0 1px;
}

.ambulance-services .nav-tabs .nav-link.active, .ambulance-services .nav-tabs .nav-link:hover {
    background-color: #dc3545;
    color: #fff;
    border-bottom: none;
    position: relative;
}

.ambulance-services .nav-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 10px;
    background: #dc3545;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.ambulance-services .tab-content {
    background-color: #fff;
    margin-top: -35px;
    padding: 75px 50px 20px 50px;
    border: 0;
    box-shadow: 0 5px 10px rgba(255, 223, 223, 0.18);
}


/* Section 5*/

.private-jet-section {
    /*background-image: linear-gradient(45deg, #daeaff 45%, #eff6ff 65%);*/
    color: #fff;
    padding: 100px 0;
}

.jet-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.jet-image-box {
    position: relative;
    max-width: 500px;
}

.jet-main-img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.features-card {
    background-color: #FFEAEA;
    color: var(--goaid-dark);;
    border-radius: 12px;
    padding: 20px;
    position: absolute;
    bottom: -40px;
    left: -60px;
    width: 250px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.features-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-card li {
    margin-bottom: 15px;
    font-size: 14px;
}

.features-card li:last-child {
    margin-bottom: 0px;
}

.features-card i {
    color: var(--goaid-red);
    background-color: transparent;
    border-radius: 50%;
    padding: 4px;
    margin-right: 8px;
}

.jet-text-box {
    max-width: 600px;
}

.jet-text-box .subheading {
    font-size: 16px;
    color: var(--goaid-blue);
    letter-spacing: 2px;
    font-weight: 500;
}

.jet-text-box h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--goaid-dark);
    margin: 15px 0;
}

.jet-text-box p {
    color: var(--goaid-dark);
    margin-bottom: 10px;
    font-size: 1.05rem;
    display: flex;
}

.jet-text-box p .text-danger {
    margin-right: 10px;
    color: var(--goaid-red) !important;
}

.btn-view {
    color: #fff;
    display: inline-block;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 10px;
}


/* Why Us */
.why-choose {
    padding: 100px 20px;
    text-align: center;
    /*background-image: linear-gradient(45deg, #daeaff 45%, #eff6ff 65%);*/
    /*background-image: linear-gradient(45deg, #eff6ff 45%, #eff6ff 65%);*/
    /*background-color: #22609A;*/
    background: linear-gradient(135deg, #0A3D62, #1E5FA3);
    /*background-image: url("https://www.goaid.in/wp-content/uploads/2025/11/testimonails-bg.jpg");
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;*/
    /*background-image : radial-gradient(at center center, #eff6ff 0%, #95c6f2 100%);*/
}

.why-choose h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-choose .subtitle {
    color: #666;
    margin-bottom: 40px;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.feature-box {
    /*background-color: #204C74;*/
    /*border: 1px solid #e8ebf1;*/
    /* border-radius: 12px;
     padding: 25px;
     box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);*/
    width: 400px;
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.feature-box:hover {
    /*background-image: linear-gradient(45deg, #daeaff 45%, #eff6ff 15%);*/
    background-image: radial-gradient(at center center, #BF0008 0%, #8F1418 100%);
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon i {
    font-size: 20px;
    color: #fff;
}

/* Icon background colors */
.bg-blue {
    background-color: #2563eb;
}

.bg-green {
    background-color: #10b981;
}

.bg-red {
    background-color: #ef4444;
}

.feature-box h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0f172a;
    font-weight: 600;
}

.feature-box p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
}


.faq-section {
    background-image: radial-gradient(at center center, #eff6ff 0%, #95c6f2 100%);
    /*background-image: linear-gradient(45deg, #eff6ff 45%, #eff6ff 65%);*/
    padding: 100px 0;
}

.accordion-button {
    font-weight: 600;
}


.accordion-flush .accordion-item, .accordion-header, .accordion-button {
    border-radius: 50px !important;
}

.accordion-button:focus {
    box-shadow: none !important;
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
}

.blog-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin: 0 10px;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.blog-slider .card-img-top {
    height: 250px;
    object-fit: cover;
}

.slick-prev, .slick-next {
    background: #fff;
    border-radius: 50%;
    padding: 10px;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.slick-prev:before, .slick-next:before {
    color: #000;
    font-size: 20px;
}

/* Our Clients */
.our-clients {
    background-image: radial-gradient(at center center, #eff6ff 0%, #95c6f2 100%);
    /*background-image: linear-gradient(45deg, #eff6ff 45%, #eff6ff 65%);*/
}

.partner-box {
    padding: 20px 30px;
    margin: 10px;
    /*background-color: #fff;*/
    /*border: 1px solid #e0e0e0;*/
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: #1a1a1a;
    /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);*/
    transition: transform 0.3s ease;
}

.partner-box:hover {
    transform: translateY(-3px);
    /*box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);*/
}

.slick-slide {
    display: flex;
    justify-content: center;
}

/* CTA */
.emergency-banner {
    /*background-color: #1f77c7;*/
    background-image: radial-gradient(at center center, #1F4469 0%, #2471B7 100%);
    padding: 100px 0;
}

.footer {
    background-color: #0d1523;
    padding: 100px 0;
}

.footer h6 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.footer li {
    font-size: 1.05rem;
    line-height: 1.5;
    padding: 5px 0;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .fab,
.footer .fas {
    font-size: 14px;
}


/* Responsive CSS */
@media only screen and (max-width: 1440px) {
    .hero-section {
        min-height: 75vh;
        height: 75vh;

    }

    .display-4 {
        font-size: 3rem !important;
    }

    #home p {
        font-size: 1.05rem;
    }

    .display-5 {
        font-size: 2rem !important;
    }

    .why-choose h2 {
        font-size: 28px;
    }
}

@media only screen and (max-width: 991px) {

}

@media (max-width: 500px) {
    p {
        font-size: 1rem;
    }

    .elementor-background-overlay {
        /*background: linear-gradient(0deg, #daeaff 45%, transparent 65%);*/
    }

    .hero-section {
        min-height: 60vh !important;
        height: 100% !important;
        padding: 50px 0 !important;
    }

    #home .align-items-center {
        align-items: flex-end !important;
    }

    #home .position-relative {
        /*top: 50px !important;*/
    }

    #home .display-6 {
        font-size: calc(1.075rem + 1.2vw);
        margin-bottom: 10px !important;
    }

    .display-4 {
        font-size: calc(1.25rem + 2vw);
    }

    .display-5 {
        font-size: calc(1.05rem + 1.75vw);
    }

    #home p {
        font-size: 14px;
    }

    .btn-emergency {
        display: none;
    }

    .btn-emergency, #home .btn-primary {
        padding: 10px 15px !important;
        font-size: 16px;
    }

    #home .form-label {
        display: none;
    }

    #services, .why-choose, .ambulance-services, .stats-counter, .private-jet-section, .faq-section, .blog-section, .emergency-banner {
        padding: 50px 0;
    }

    #services .badge {
        margin-top: 15px;
    }

    #services .btn {
        font-size: 14px;
    }

    .why-choose h2 {
        font-size: 24px;
    }

    .feature-box p {
        font-size: 1rem;
    }

    #ambulanceTabs {
        padding: 0 0 10px 0;
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: left !important;
    }

    .ambulance-services .nav-tabs .nav-link {
        padding: 10px 10px;
        width: 100%;
        min-width: 200px;
    }

    .ambulance-services .tab-content {
        padding: 50px 0 20px 0;
    }

    .features-card {
        bottom: -40px;
        left: 50%;
        width: 250px;
        transform: translateX(-50%);
    }

    .jet-text-box {
        margin-top: 25px;
    }

    .jet-text-box .subheading {
        margin-top: 20px;
    }

    .jet-text-box h2 {
        font-size: 26px;
    }

    .jet-text-box p {
        font-size: 1rem;
    }

    .partner-box {
        padding: 0;
    }
}

@media only screen and (max-width: 375px) {
    p, .feature-box p {
        font-size: 0.9rem;
    }

    .why-choose h2 {
        font-size: 22px;
    }
}

:root {
    --primary-blue: #0A3D62;
    --accent-red: #E63946;
    --accent-yellow: #F4C430;
    --light-blue: #EFF6FF;
    --dark-blue: #083454;
}

.hero-section {
    position: relative;
    min-height: 60vh;
    background: linear-gradient(rgba(10, 61, 98, 0.85), rgba(10, 61, 98, 0.85)),
    url("../images/ambulance.jpg") no-repeat center center/cover;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.hero-content h6 {
    color: var(--accent-yellow);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--accent-yellow);
}

.hero-tagline {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
}

.hero-description {
    color: #e5e7eb;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 600px;
}

.btn-emergency {
    background: var(--accent-red);
    color: #fff;
    border-radius: 30px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.btn-emergency:hover {
    background: #c92f3a;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

.btn-emergency i {
    margin-right: 8px;
}

.btn-book {
    background: transparent;
    color: #fff;
    border-radius: 30px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid #fff;
    transition: all 0.3s;
}

.btn-book:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-3px);
}

.btn-book i {
    margin-right: 8px;
}

.booking-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    color: var(--primary-blue);
}

.booking-card h5 {
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-blue);
    font-size: 1.5rem;
    text-align: center;
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #555;
}

.form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.25rem rgba(10, 61, 98, 0.25);
}

.btn-submit {
    background: var(--primary-blue);
    color: #fff;
    border-radius: 25px;
    padding: 14px;
    font-weight: 600;
    font-size: 1.1rem;
    width: 100%;
    border: none;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 61, 98, 0.3);
}

.availability-note {
    background: #F8F9FA;
    border-radius: 8px;
    padding: 12px 15px;
    margin-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    border-left: 4px solid var(--accent-yellow);
}

.availability-note i {
    color: var(--accent-yellow);
    margin-right: 5px;
}

.trust-strip {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-top: -50px;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(10, 61, 98, 0.1);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
}

.trust-icon {
    background: var(--light-blue);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.trust-text {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.95rem;
}

.emergency-number {
    background: var(--accent-red);
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-top: 15px;
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
}

.emergency-number i {
    margin-right: 8px;
}

@media (max-width: 992px) {
    .hero-section {
        min-height: auto;
        padding: 80px 0 60px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .trust-strip {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-tagline {
        font-size: 1.5rem;
    }

    .btn-emergency, .btn-book {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }

    .trust-strip {
        padding: 15px;
    }

    .trust-item {
        margin-bottom: 15px;
    }
}
