/********** Template CSS **********/
:root {
    --primary: #FEA116;
    --light: #F1F8FF;
    --dark: #0F172B;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
    border-radius: 20px;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
   
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
}

.navbar-brand h1{
    font-size: 1.5rem;
}

/* add new css start */

/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 43, .7);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

#header-carousel .carousel-item {
    height: 600px; /* Set the height you want */
}

#header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        height: 400px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

.breadcrumb-item{
    font-family:bold;
    font-weight:700;
    font-size: 18px;
}

.booking {
    position: relative;
    margin-top: -100px !important;
    z-index: 1;
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}


/*** Service ***/
.service-item {
    height: 320px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 30px auto;
    width: 65px;
    height: 65px;
    transition: .5s;
}

.service-item i,
.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover i,
.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF !important;
}


/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/video.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


.image-replace img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*** Testimonial ***/
.testimonial {
    background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    padding-left: 65px;
    padding-right: 65px;
}

.testimonial-carousel .testimonial-item {
    padding: 30px;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: #FFFFFF;
}


/*** Team ***/
.team-item,
.team-item .bg-primary,
.team-item .bg-primary i {
    transition: .5s;
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}


/*** Footer ***/
.newsletter {
    position: relative;
    z-index: 1;
}

.footer {
    position: relative;
    /* margin-top: -110px; */
    padding-top: 120px;
}

.footer h1{
    font-size: 1.5rem;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


/* add new css start */

 .booking-box {
        padding: 35px;
        border-radius: 12px;
        background: #ffffff;
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }
/* add new css end */

/* about css start */

.about-box {
        padding: 40px;
        background: #fff;
        border-radius: 14px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    }

    .about-img-wrap img {
        border-radius: 14px;
        transition: 0.5s;
        object-fit: cover;
    }

    .about-img-wrap img:hover {
        transform: scale(1.05);
    }

    .counter-box {
        padding: 25px;
        border-radius: 12px;
        background: #f8f9fc;
        transition: .4s ease;
    }

    .counter-box:hover {
        background: #e9efff;
        transform: translateY(-5px);
    }

    .counter-box i {
        font-size: 38px;
        margin-bottom: 10px;
    }

    .section-subtitle {
        letter-spacing: 2px;
        font-weight: 600;
        font-size: 15px;
    }
/* about css end */

/* room css start */

.room-item .position-relative {
    width: 100%;
    height: 250px; /* Set the desired fixed height */
    overflow: hidden;
    border-radius: 10px; /* optional, matches your card style */
}

.room-item .position-relative img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ensures image fills container without stretching */
    transition: 0.5s;
}

.room-item .position-relative img:hover {
    transform: scale(1.05);
}

/* room css end */

/* Contact Us css start */

/* General Section Styling */
.contact-section {
    position: relative;
    padding: 100px 0;
    color: #fff;
    overflow: hidden;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.parallax-bg {
    background-image: url('../img/flight.jpg'); /* Correct relative path */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    filter: brightness(0.5);
}

/* Header Text Center */
.contact-header h6 {
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #FEA116;
}

.contact-header h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color:#fff;
}

.contact-header p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

/* Contact Form */
.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: #333;
}

.contact-form-wrapper .form-group {
    margin-bottom: 20px;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    resize: none;
    transition: all 0.3s ease;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
    border-color: #007bff;
    outline: none;
}

.btn-submit {
    background-color: #FEA116;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #0F172B;
}

/* Form Message */
.form-message {
    margin-top: 15px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-section {
        padding: 70px 20px;
    }

    .contact-header h1 {
        font-size: 32px;
    }
}


.contact-form-wrapper label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.modal-box {
    background: #fff;
    padding: 30px;
    width: 90%;
    max-width: 450px;
    border-radius: 12px;
    text-align: center;
}

.modal-close {
    float: right;
    font-size: 26px;
    cursor: pointer;
}

/* Contact Us css End */

/* flight service card css start */

.flight-services-section {
    position: relative;
}

/* Unique Service Cards */
.service-unique {
    perspective: 1000px;
}

.service-bg {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 350px;
    display: flex;
    align-items: flex-end;
    color: #fff;
    transition: transform 0.5s, box-shadow 0.5s;
    padding: 30px;
}

.service-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
    transition: transform 0.5s;
    z-index: 1;
}

.service-content {
    position: relative;
    z-index: 2;
    text-align: left;
}

.service-content h5 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    color:#fff;
}

.service-content p {
    font-size: 16px;
    margin-bottom: 15px;
}

.service-content .price {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffd700;
}

.btn-book {
    background-color: #ff6600;
    border: none;
    padding: 10px 25px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-book:hover {
    background-color: #e65c00;
    transform: scale(1.05);
}

/* Different backgrounds for uniqueness */
.service-affordable::before {
    background-image: url('../img/flight.jpg');
}

.service-luxury::before {
    background-image: url('../img/ford_explore.jpg');
}

.service-deals::before {
    background-image: url('../img/car.jpg');
}

/* Hover Effects */
.service-unique:hover .service-bg {
    transform: rotateY(5deg) scale(1.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.service-unique:hover .service-bg::before {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
    .service-bg {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .service-bg {
        height: 250px;
        padding: 20px;
    }
}


/* flight service card css end */

/* train section css start */

/* Section */
.zigzag-section {
    padding: 80px 0;
    overflow-x: hidden;
}

/* ROW spacing */
.zigzag-row {
    margin-bottom: 80px;
}

/* IMAGE BOX */
.zigzag-img {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.zigzag-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    display: block;
}

/* Hover line glow */
.hover-line {
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #00aaff, transparent);
    transition: all 0.5s ease;
}

.zigzag-img:hover img {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.zigzag-img:hover .hover-line {
    left: 0;
}

.zigzag-section .row {
    margin-left: 0;
    margin-right: 0;
}


/* CONTENT */
.zigzag-content {
    padding: 20px 10px;
}

.zigzag-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.zigzag-content p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #444;
    line-height: 1.6;
}

.zigzag-content .price {
    font-size: 30px;
    font-weight: 800;
    color: #007bff;
    margin-bottom: 18px;
}

/* BUTTON */
.btn-reserve {
    background-color: #ff6600;
    border: none;
    padding: 12px 30px;
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    transition: 0.3s ease;
    cursor: pointer;
}

.btn-reserve:hover {
    background-color: #e65c00;
    transform: scale(1.08);
}

/* ZIG-ZAG DESKTOP */
@media (min-width: 992px) {
    .zigzag-row.reverse .col-lg-6:first-child {
        order: 2;
    }

    .zigzag-row.reverse .col-lg-6:last-child {
        order: 1;
    }
}

/* TABLET (768px–991px) */
@media (max-width: 991px) {
    .zigzag-img img {
        height: 330px;
    }

    .zigzag-content h3 {
        font-size: 28px;
    }

    .zigzag-content p {
        font-size: 16px;
    }

    .zigzag-row {
        margin-bottom: 60px;
    }
}

/* MOBILE (up to 767px) */
@media (max-width: 767px) {
    .zigzag-img img {
        height: 260px;
    }

    /* Cancel zig-zag effect for mobile */
    .zigzag-row.reverse .col-lg-6 {
        order: unset !important;
    }

    .zigzag-content {
        margin-top: 20px;
        text-align: center;
    }

    .btn-reserve {
        width: 100%;
    }
}


/* train section css end */


/* Privacy Section start */

/* Privacy Section */
.privacy-section {
    background: #f8f9fc;
    font-family: var(--bs-font-sans-serif);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 25px;
}

.privacy-box {
    background: #ffffff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    border-left: 5px solid var(--bs-primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
}

.privacy-box h3 {
    font-size: 1.5rem;
    color: var(--bs-primary);
    font-weight: 700;
    margin-bottom: 12px;
}

.privacy-box p,
.privacy-box ul li {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.7;
}

.privacy-box ul {
    padding-left: 18px;
}

.privacy-box ul li {
    margin-bottom: 5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .privacy-box {
        padding: 20px;
    }

    .privacy-box h3 {
        font-size: 1.3rem;
    }

    .intro-text {
        font-size: 1rem;
    }
}

/* privacy section end */

/* add new  css start */

.booking-box {
            padding: 35px;
            border-radius: 12px;
            background: #ffffff;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        .suggestions {
            position: absolute;
            background: white;
            width: 100%;
            border: 1px solid #ddd;
            max-height: 150px;
            overflow-y: auto;
            z-index: 10;
        }

        .suggestions div {
            padding: 8px 12px;
            cursor: pointer;
        }

        .suggestions div:hover {
            background: #e9e9e9;
        }

/* add new css end  */

/* add new css start */

.deals-section {
    background: linear-gradient(135deg, #e0f7fa, #f8f9fc);
    padding-top: 80px;
    padding-bottom: 80px;
}

.deal-card {
    background: linear-gradient(135deg, #ffffff, #e3f2fd);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.4s, box-shadow 0.4s, background 0.4s;
    position: relative;
    overflow: hidden;
}

.deal-card::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,123,255,0.15) 0%, transparent 70%);
    top: -50%;
    left: -50%;
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.deal-card:hover::before {
    transform: rotate(45deg) scale(1.2);
}

.deal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, #d0e8ff, #f1faff);
}

.deal-card i {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 15px;
    display: inline-block;
}

.deal-card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.deal-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    min-height: 48px; /* Keeps card height consistent */
}

.deal-card .btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    background: #FEA116;
    color: #fff;
    box-shadow: 0 6px 12px rgba(0,123,255,0.3);
    transition: all 0.3s ease;
}

.deal-card .btn:hover {
    background: #0F172B;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 16px rgba(0,86,179,0.4);
}

@media (max-width: 768px) {
    .deal-card {
        margin: 0 auto;
    }
}


 /* add new css end  */

 /* add new css start */

.suggestions {
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    width: 100%;
    max-height: 150px;
    overflow-y: auto;
    z-index: 10;
}
.suggestions div {
    padding: 7px;
    cursor: pointer;
}
.suggestions div:hover {
    background: #e0e0e0;
}
.booking-box {
    padding: 20px;
    background: #fafafa;
    border-radius: 10px;
    margin-top: 20px;
}


 /* add new css end */

 /* new css start */

 .disclaimer-section {
    padding: 25px;
    background: var(--bs-light);
    text-align: center;
    border-top: 3px solid var(--bs-primary);
    border-bottom: 3px solid var(--bs-primary);
}

.note-text {
    font-size: 16px;
    color: var(--bs-dark);
    margin-bottom: 20px;
    line-height: 1.5;
}

.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 12px 25px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
}

.call-btn:hover {
    background: #e78f12;
    color:#000;
    transform: translateY(-2px);
    box-shadow: 0px 6px 14px rgba(0,0,0,0.2);
}

.call-icon {
    font-size: 22px;
}




 /* new css end */

 /* add new css on popup start */

 .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-box {
    width: 350px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}


 /* add new css on popup end */

 .call-modal {
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.call-modal-box {
    width: 90%;
    max-width: 400px;
    background: #fff;
    padding: 25px;
    text-align: center;
    border-radius: 12px;
    animation: slideUp 0.35s ease-out;
}

.call-title {
    font-size: 22px;
    font-weight: bold;
}

.call-text {
    font-size: 15px;
    margin-top: 10px;
}

.call-subtitle {
    margin: 12px 0;
    font-size: 14px;
    color: #333;
}

.call-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #e78f12;
    color: #fff;
    margin-top: 8px;
    text-decoration: none;
    font-size: 17px;
    border-radius: 8px;
}

.call-btn:hover {
    background: #e78f12;
}

.close-modal-btn {
    margin-top: 15px;
    padding: 7px 15px;
    border: none;
    background: #d3d3d3;
    border-radius: 6px;
    cursor: pointer;
}

@keyframes slideUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-icon {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 22px;
    cursor: pointer;
    color: #333;
    transition: 0.2s ease;
}

.close-icon:hover {
    color: red;
    transform: scale(1.15);
}

#callPopup .popup-box {
    position: relative; /* Important for close icon to stay inside */
}


/* add new css start */

.contact-box {
    background: var(--bs-light);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--bs-primary);
}

.form-wrapper {
    background: var(--bs-white);
    border-left: 5px solid var(--bs-primary);
}

/* add new css end */

/* sticky footer css start */

/* GLOBAL STICKY FOOTER BAR */
.global-sticky-footer {
    position: fixed;
    bottom: -120px;
    left: 0;
    width: 100%;
    background: #f2f2f2 !important; /* light grey on all screens  #efeeee59 */     
    color: #000;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999999;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.15);
    border-radius: 16px 16px 0 0;
    font-family: Arial, sans-serif;
    animation: slideUp 0.8s ease-out forwards;
}

/* Slide-up animation */
@keyframes slideUp {
    from { bottom: -150px; opacity: 0; }
    to   { bottom: 0; opacity: 1; }
}

/* Left block (mobile default – stacked) */
.gsf-left {
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: left;
}

.gsf-title {
    font-weight: 700;
    font-size: 16px;
}

.gsf-sub {
    font-size: 14px;
    opacity: 0.95;
}

.gsf-call-text {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: 0.25s ease-in-out;
}

.gsf-call-text:hover {
    color: #e63946;
    text-decoration: underline;
}

/* Button (mobile only) */
.gsf-call-btn {
    background: #28a745;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    transition: 0.25s ease-in-out;
}

/* Hover animation */
.gsf-call-btn:hover {
    background: #1e7e34;
    transform: scale(1.08);
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

/* -------------------------
   DESKTOP (LARGE SCREEN)
   ------------------------- */
@media (min-width: 992px) {
    .global-sticky-footer {
        justify-content: center;
        text-align: center;
        padding: 15px;
    }

    /* Convert 3 lines → 1 line */
    .gsf-left {
        flex-direction: row;
        gap: 20px;
        font-size: 18px;
    }

    .gsf-sub {
        display: none; /* hide the second line */
    }

    /* Merge first + third line */
    .gsf-title::after {
        /* content: " — Call Now: 1-888-908-4898"; */
        font-weight: 700;
        margin-left: 10px;
    }

       .gsf-call-text {
        display: inline-block;
        font-size: 18px;
        font-weight: 700;
    }

    /* Hide mobile button */
    .gsf-call-btn {
        display: none;
    }
}

/* -------------------------
   MOBILE SMALL SCREENS
   ------------------------- */
@media (max-width: 480px) {
    .global-sticky-footer {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding-bottom: 18px;
    }

    .gsf-call-btn {
        width: 100%;
        text-align: center;
    }
}



/* sticky footer css end */

/* contact page css start */


.contact-box {
    background: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    transition: all .3s ease;
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

.contact-heading {
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.contact-link {
    color: var(--bs-primary);
    font-weight: 600;
}

.support-list li {
    margin: 6px 0;
    color: #666;
}

/*** POPUP ***/
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 350px;
    text-align: center;
    box-shadow: 0 0 40px rgba(0,0,0,0.2);
    animation: pop .3s ease;
}

@keyframes pop {
    0% { transform: scale(0.7); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.popup-icon {
    font-size: 55px;
    color: var(--bs-primary);
    margin-bottom: 15px;
}

.note-text {
    font-size: 14px;
    color: #777;
}

/* contact page css end  */

