/*slider-container*/

.hero-section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Do not use Bootstrap container here */
.hero-section .slider-container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.main-slider {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
}

.main-slider .swiper {
    width: 100%;
    height: 100%;
}

.main-slider .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.main-slider .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark overlay */
.main-slider .swiper-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(7, 25, 48, 0.42);
    z-index: 1;
}

.slide-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 40px);
    max-width: 850px;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 2;
}

.slide-caption h2 {
    margin-bottom: 15px;
    font-size: clamp(34px, 5vw, 68px);
    line-height: 1.15;
    font-weight: 700;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.65);
}

.slide-caption p {
    font-size: clamp(16px, 2vw, 22px);
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75);
}

/* Navigation buttons */
.main-slider .swiper-button-next,
.main-slider .swiper-button-prev {
    width: 50px;
    height: 50px;
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #ffffff;
    transition: 0.3s ease;
    z-index: 10;
}

.main-slider .swiper-button-next {
    right: 25px;
}

.main-slider .swiper-button-prev {
    left: 25px;
}

.main-slider .swiper-button-next::after,
.main-slider .swiper-button-prev::after {
    font-size: 20px;
    font-weight: 700;
}

.main-slider .swiper-button-next:hover,
.main-slider .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Pagination */
.main-slider .swiper-pagination {
    bottom: 25px;
    z-index: 10;
}

.main-slider .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    background: #ffffff;
    opacity: 0.6;
}

.main-slider .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 10px;
    opacity: 1;
}

/* Mobile */
@media (max-width: 768px) {
    .main-slider {
        height: 500px;
    }

    .main-slider .swiper-button-next,
    .main-slider .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .main-slider .swiper-button-next {
        right: 10px;
    }

    .main-slider .swiper-button-prev {
        left: 10px;
    }

    .main-slider .swiper-button-next::after,
    .main-slider .swiper-button-prev::after {
        font-size: 16px;
    }

    .slide-caption {
        padding: 0 25px;
    }

    .slide-caption p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .main-slider {
        height: 430px;
    }

    .slide-caption h2 {
        font-size: 32px;
    }

    .main-slider .swiper-button-next,
    .main-slider .swiper-button-prev {
        display: none;
    }
}





.booking-card img {
    width: 100%;
    /* Adjust size as needed */
    height: 150px;
    object-fit: contain;
}

.booking-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* ... existing styles ... */
}

.booking-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.booking-card {
    background: #f4f4f4;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    color: #333;
    border-radius: 10px;
    transition: 0.3s;
    border: 1px solid #ddd;
}

.booking-card:hover {
    background: #007bff;
    color: #fff;
    cursor: pointer;
}



/* =====================================
   PREMIUM BUS SECTION
===================================== */

.bus-hero-section {
    width: 100%;
    padding: 90px 20px;
    background:
        linear-gradient(rgba(7, 25, 48, 0.40),
            rgba(7, 25, 48, 0.40)),
        url("../images/him-banner.png") center/cover no-repeat;
    overflow: hidden;
}

.bus-hero-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 70px;
}


/* Left Content */

.bus-hero-content {
    animation: busFadeUp 0.8s ease forwards;
}

.bus-subtitle {
    display: inline-block;
    margin-bottom: 15px;
    color: #f6b800;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bus-hero-content h1 {
    max-width: 650px;
    margin: 0 0 22px;
    color: #ffffff;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.08;
    font-weight: 800;
}

.bus-hero-content p {
    max-width: 620px;
    margin: 0 0 32px;
    color: #e5eaf0;
    font-size: 17px;
    line-height: 1.8;
}


/* Buttons */

.bus-hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.bus-btn {
    min-width: 145px;
    padding: 15px 28px;
    border: 2px solid transparent;
    border-radius: 7px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bus-btn-primary {
    color: #071930;
    background: #f6b800;
    border-color: #f6b800;
}

.bus-btn-primary:hover {
    color: #071930;
    background: #ffffff;
    border-color: #ffffff;
    transform: translateY(-3px);
}

.bus-btn-outline {
    color: #ffffff;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.65);
}

.bus-btn-outline:hover {
    color: #071930;
    background: #ffffff;
    border-color: #ffffff;
    transform: translateY(-3px);
}


/* Testimonial Card */

.bus-testimonial-card {
    position: relative;
    padding: 42px 35px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
    animation: busFadeUp 1s ease forwards;
}

.bus-quote-icon {
    height: 65px;
    color: #f6b800;
    font-family: Georgia, serif;
    font-size: 90px;
    line-height: 1;
}

.bus-review {
    margin: 5px 0 30px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
}


/* Customer Images */

.customer-section {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.customer-images {
    display: flex;
    align-items: center;
}

.customer-images img {
    width: 54px;
    height: 54px;
    margin-left: -13px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    object-fit: cover;
}

.customer-images img:first-child {
    margin-left: 0;
}

.customer-text {
    display: flex;
    flex-direction: column;
}

.customer-text strong {
    color: #f6b800;
    font-size: 23px;
    line-height: 1.2;
}

.customer-text span {
    margin-top: 3px;
    color: #ffffff;
    font-size: 14px;
}


/* Animation */

@keyframes busFadeUp {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* Tablet Responsive */

@media screen and (max-width: 900px) {

    .bus-hero-section {
        padding: 70px 20px;
    }

    .bus-hero-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .bus-hero-content {
        text-align: center;
    }

    .bus-hero-content p {
        margin-right: auto;
        margin-left: auto;
    }

    .bus-hero-buttons {
        justify-content: center;
    }

    .bus-testimonial-card {
        max-width: 600px;
        margin: auto;
    }

}


/* Mobile Responsive */

@media screen and (max-width: 576px) {

    .bus-hero-section {
        padding: 55px 15px;
    }

    .bus-hero-content h1 {
        font-size: 38px;
    }

    .bus-hero-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .bus-hero-buttons {
        flex-direction: column;
    }

    .bus-btn {
        width: 100%;
    }

    .bus-testimonial-card {
        padding: 32px 22px;
    }

    .bus-review {
        font-size: 17px;
    }

    .customer-section {
        align-items: flex-start;
        flex-direction: column;
    }

    .customer-images img {
        width: 48px;
        height: 48px;
    }

}





/* Booking Section CSS */
/* Booking section ko upar / overlap me lane ke liye */
.booking-section {
    position: relative;
    z-index: 10;
    background: transparent;
    padding: 0 20px;
    margin-bottom: -120px;
    /* form ko next section ke upar chadhata hai */
}

/* Form box */
.booking-container {
    /*max-width: 1100px;*/
    margin: 0 auto;
    background: #ffffff;
    padding: 45px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    position: relative;
}

.booking-container h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 35px;
    color: #071930;
}

.booking-form {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #071930;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #d8e0e8;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ff7a00;
}

.full-width {
    margin-top: 22px;
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.booking-btn {
    margin-top: 25px;
    background: #ff7a00;
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.booking-btn:hover {
    background: #071930;
}

/* Responsive */
@media (max-width: 991px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-container {
        padding: 35px 25px;
    }
}

@media (max-width: 575px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .booking-container h2 {
        font-size: 28px;
    }

    .booking-btn {
        width: 100%;
    }
}





/* home page About Section */
.about-section {
    position: relative;
    z-index: 1;
    padding-top: 180px;
    padding-bottom: 50px;
    background: #000;
}

/* Travel Partner */
.partner-box {
    max-width: 1200px;
    margin: 0 auto 70px;
    text-align: center;
}

.partner-box h2 {
    font-size: 34px;
    color: #ff7a00;
    margin-bottom: 35px;
}

.partner-slider {
    overflow: hidden;
    width: 100%;
}

.partner-track {
    display: flex;
    gap: 40px;
    animation: slidePartner 25s linear infinite;
}

.partner-track img {
    width: 180px;
    height: 90px;
    object-fit: contain;
    background: #ffffff;
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}

@keyframes slidePartner {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}






/* About Layout */

.about-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 24px;
}

.star-icon {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 90px;
    height: 90px;
    background: #ff7a00;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
}

.about-content span {
    color: #ff7a00;
    font-weight: 700;
    font-size: 18px;
}

.about-content h2 {
    font-size: 42px;
    color: white;
    margin: 15px 0;
    line-height: 1.2;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: white;
    margin-bottom: 25px;
}

.about-buttons {
    display: flex;
    gap: 15px;
}

.about-buttons a {
    display: inline-block;
    padding: 14px 28px;
    background: #ff7a00;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    transition: 0.3s;
}

.about-buttons a:nth-child(2) {
    background: white;
}

.about-buttons a:hover {
    transform: translateY(-3px);
}

/* Counter */
.counter-section {
    max-width: 1200px;
    margin: 70px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.counter-box {
    background: #ffffff;
    text-align: center;
    padding: 35px 20px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.counter-box h3 {
    font-size: 42px;
    color: #ff7a00;
    margin-bottom: 10px;
}

.counter-box p {
    font-size: 16px;
    color: #071930;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .counter-section {
        grid-template-columns: 1fr;
    }

    .about-content h2 {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    .about-section {
        padding: 50px 15px;
    }

    .partner-box h2 {
        font-size: 28px;
    }

    .partner-track img {
        width: 140px;
        height: 75px;
    }

    .about-image img {
        height: 300px;
    }

    .star-icon {
        width: 65px;
        height: 65px;
        font-size: 30px;
        right: 10px;
        bottom: -20px;
    }

    .about-buttons {
        flex-direction: column;
    }

    .about-buttons a {
        text-align: center;
    }
}




/* Benefits Section */
.benefits-section {
    padding: 80px 20px;
    background: #f5f8fb;
}

.section-title {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-title span {
    color: #ff7a00;
    font-size: 18px;
    font-weight: 700;
}

.section-title h2 {
    font-size: 42px;
    color: #071930;
    margin: 12px 0;
}

.section-title p {
    color: #555;
    font-size: 16px;
}

/* Benefits Cards */
.benefits-grid {
    /*max-width: 1200px;*/
    margin: auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
}

.benefit-card {
    background: #ffffff;
    padding: 28px 15px;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
}

.benefit-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 18px;
    transition: 0.3s ease;
}

.benefit-card:hover img {
    transform: scale(1.15);
}

.benefit-card h3 {
    font-size: 16px;
    color: #071930;
    margin: 0;
}

/* More Section */
.more-section {
    /*max-width: 1200px;*/
    margin: 80px auto 0;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.more-content h2 {
    font-size: 38px;
    color: #071930;
    margin-bottom: 15px;
}

.more-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.more-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.more-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.more-item img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.more-item h4 {
    font-size: 16px;
    color: #071930;
    margin: 0;
}

.more-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 24px;
}

/* Responsive */
@media (max-width: 991px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .more-section {
        grid-template-columns: 1fr;
    }

    .section-title h2,
    .more-content h2 {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    .benefits-section {
        padding: 55px 15px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .more-list {
        grid-template-columns: 1fr;
    }

    .section-title h2,
    .more-content h2 {
        font-size: 28px;
    }

    .more-image img {
        height: 300px;
    }
}






/* Services Section */
.services-section {
    padding: 80px 20px;
    background: #ffffff;
}

.services-title {
    max-width: 780px;
    margin: 0 auto 50px;
    text-align: center;
}

.services-title span {
    color: #ff7a00;
    font-size: 18px;
    font-weight: 700;
}

.services-title h2 {
    font-size: 42px;
    color: #071930;
    margin: 12px 0 15px;
}

.services-title p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* Grid */
.services-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card */
.service-card {
    background: #f5f8fb;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.service-content {
    padding: 25px;
}

.service-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin: 0 0 22px;
}

.service-bottom {
    border-top: 1px solid #dde5ec;
    padding-top: 18px;
}

.service-bottom h3 {
    font-size: 22px;
    color: #071930;
    margin: 0 0 15px;
}

.service-bottom a {
    display: inline-block;
    padding: 11px 22px;
    background: #ff7a00;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
}

.service-bottom a:hover {
    background: #071930;
}

/* Responsive */
@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-title h2 {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    .services-section {
        padding: 55px 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-title h2 {
        font-size: 28px;
    }

    .service-card img {
        height: 190px;
    }
}







/* How It Works Section */
.how-works-section {
    position: relative;
    padding: 90px 25px;
    background:
        linear-gradient(rgba(7, 25, 48, 0.72), rgba(7, 25, 48, 0.72)),
        url("../images/index-image.jpg") center center / cover no-repeat;
    overflow: hidden;
}

.how-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: auto;
    display: grid;
    grid-template-columns: 38% 62%;
    gap: 55px;
    align-items: center;
}

/* Left Text */
.how-left span {
    color: #ff6b1a;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 8px;
    display: inline-block;
    margin-bottom: 18px;
}

.how-left h2 {
    color: #ffffff;
    font-size: 52px;
    line-height: 1.08;
    font-weight: 800;
    margin: 0 0 25px;
}

.how-left p {
    color: #ffffff;
    font-size: 17px;
    line-height: 1.6;
    max-width: 520px;
    margin: 0;
}

/* Right Grid */
.how-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Glass Card */
.how-step-card {
    min-height: 250px;
    padding: 42px 40px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    background: rgba(7, 25, 48, 0.35);
    backdrop-filter: blur(4px);
    transition: 0.3s ease;
}

.how-step-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 107, 26, 0.16);
}

.how-step-card h3 {
    color: #ff6b1a;
    font-size: 64px;
    line-height: 1;
    font-weight: 800;
    margin: 0 0 20px;
}

.how-step-card h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 18px;
}

.how-step-card p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .how-wrapper {
        grid-template-columns: 1fr;
    }

    .how-left h2 {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .how-works-section {
        padding: 65px 15px;
    }

    .how-right {
        grid-template-columns: 1fr;
    }

    .how-left span {
        font-size: 16px;
        letter-spacing: 5px;
    }

    .how-left h2 {
        font-size: 34px;
    }

    .how-step-card {
        padding: 30px 25px;
        min-height: auto;
    }

    .how-step-card h3 {
        font-size: 50px;
    }
}





/* Testimonials Section */
.testimonial-section {
    padding: 90px 48px;
    background: #ffffff;
}

.testimonial-wrapper {
    max-width: 1320px;
    margin: auto;
    display: grid;
    grid-template-columns: 405px 1fr;
    gap: 40px;
    align-items: center;
}

/* Left Image */
.testimonial-image img {
    width: 100%;
    height: 545px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

/* Title */
.testimonial-title {
    margin-bottom: 40px;
}

.testimonial-title span {
    color: #ff6418;
    font-size: 20px;
    letter-spacing: 8px;
    font-weight: 500;
}

.testimonial-title h2 {
    font-size: 62px;
    line-height: 1.05;
    color: #202124;
    margin: 15px 0 12px;
    font-weight: 900;
}

.testimonial-title p {
    font-size: 16px;
    color: #111111;
    margin: 0;
}

/* Cards */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: #f1f1f1;
    border-radius: 14px;
    padding: 35px 20px 20px;
    min-height: 330px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.quote-left {
    color: #ff6418;
    font-size: 90px;
    line-height: 0.5;
    font-weight: 900;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.42;
    color: #000000;
    margin: 0;
    max-width: 360px;
}

.quote-right {
    color: #ff6418;
    font-size: 90px;
    line-height: 0.7;
    font-weight: 900;
    text-align: right;
    margin-top: auto;
    margin-bottom: 25px;
}

/* Client */
.client-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.client-box img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
}

.client-box h4 {
    font-size: 18px;
    color: #000000;
    margin: 0;
    font-weight: 500;
}

.client-box span {
    font-size: 16px;
    color: #000000;
}

/* Responsive */
@media (max-width: 1100px) {
    .testimonial-wrapper {
        grid-template-columns: 1fr;
    }

    .testimonial-image img {
        height: 420px;
    }

    .testimonial-title h2 {
        font-size: 46px;
    }
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 60px 15px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .testimonial-title h2 {
        font-size: 34px;
    }

    .testimonial-title span {
        font-size: 16px;
        letter-spacing: 5px;
    }

    .testimonial-card {
        min-height: auto;
    }
}







/* FAQ Section */
.faq-section {
    padding: 90px 20px;
    background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
    font-family: Arial, sans-serif;
}

.faq-container {
    max-width: 1050px;
    margin: auto;
}

/* Heading */
.faq-header {
    text-align: center;
    margin-bottom: 45px;
}

.faq-title span {
    display: inline-block;
    color: #ff6b1a;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 12px;
    animation: fadeUp 0.7s ease both;
}

.faq-title h2 {
    font-size: 46px;
    color: #071930;
    margin: 0 0 15px;
    line-height: 1.2;
    animation: fadeUp 0.9s ease both;
}

.faq-title p {
    max-width: 650px;
    margin: auto;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    animation: fadeUp 1.1s ease both;
}

/* Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-accordion details {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e7edf3;
    box-shadow: 0 10px 28px rgba(7, 25, 48, 0.07);
    transition: all 0.35s ease;
    animation: fadeUp 0.7s ease both;
}

.faq-accordion details:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(7, 25, 48, 0.12);
}

.faq-accordion details[open] {
    border-color: #ff6b1a;
    box-shadow: 0 16px 40px rgba(255, 107, 26, 0.16);
}

/* Question */
.faq-accordion summary {
    list-style: none;
    cursor: pointer;
    padding: 24px 70px 24px 26px;
    font-size: 19px;
    font-weight: 700;
    color: #071930;
    position: relative;
    transition: 0.3s ease;
}

.faq-accordion summary::-webkit-details-marker {
    display: none;
}

.faq-accordion details[open] summary {
    color: #ff6b1a;
}

/* Plus Icon */
.faq-accordion summary::after {
    content: "+";
    position: absolute;
    right: 24px;
    top: 50%;
    width: 36px;
    height: 36px;
    background: #fff3eb;
    color: #ff6b1a;
    border-radius: 50%;
    transform: translateY(-50%) rotate(0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 600;
    transition: 0.35s ease;
}

.faq-accordion details[open] summary::after {
    content: "−";
    background: #ff6b1a;
    color: #ffffff;
    transform: translateY(-50%) rotate(180deg);
}

/* Answer */
.faq-accordion details p {
    padding: 0 26px 24px;
    margin: 0;
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    animation: faqSlide 0.35s ease both;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes faqSlide {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 65px 15px;
    }

    .faq-title h2 {
        font-size: 34px;
    }

    .faq-accordion summary {
        font-size: 17px;
        padding: 20px 62px 20px 20px;
    }

    .faq-accordion details p {
        padding: 0 20px 22px;
    }
}

@media (max-width: 480px) {
    .faq-title h2 {
        font-size: 28px;
    }

    .faq-title span {
        font-size: 15px;
        letter-spacing: 4px;
    }
}




/* CTA Section */
.cta-section {
    padding: 70px 50px;
    background: #ffffff;
}

.cta-box {
    max-width: 1390px;
    min-height: 485px;
    margin: auto;
    border-radius: 18px;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background:
        linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
        url("../images/index-image2.jpg") center center / cover no-repeat;
}

/* Small Title */
.cta-box span {
    color: #ff6418;
    font-size: 21px;
    letter-spacing: 10px;
    font-weight: 500;
    margin-bottom: 25px;
}

/* Main Heading */
.cta-box h2 {
    color: #ffffff;
    font-size: 58px;
    line-height: 1.18;
    font-weight: 900;
    letter-spacing: 2px;
    margin: 0 0 25px;
    text-transform: uppercase;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
}

.cta-buttons a {
    min-width: 156px;
    padding: 15px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: 0.3s ease;
}

/* Orange Button */
.btn-primary {
    background: #ff6418;
    color: #ffffff;
    border: 1px solid #ff6418;
}

/* Outline Button */
.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.cta-buttons a:hover {
    transform: translateY(-4px);
}

.btn-primary:hover {
    background: #ffffff;
    color: #071930;
    border-color: #ffffff;
}

.btn-outline:hover {
    background: #ff6418;
    border-color: #ff6418;
}

a.btn-outline {
    color: white !important;
}

/* Responsive */
@media (max-width: 991px) {
    .cta-section {
        padding: 50px 25px;
    }

    .cta-box {
        min-height: 420px;
        padding: 40px 20px;
    }

    .cta-box h2 {
        font-size: 42px;
    }
}

@media (max-width: 575px) {
    .cta-section {
        padding: 40px 15px;
    }

    .cta-box {
        min-height: 360px;
        border-radius: 14px;
    }

    .cta-box span {
        font-size: 15px;
        letter-spacing: 6px;
    }

    .cta-box h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons a {
        width: 80%;
        text-align: center;
    }
}