* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial;
}

body {
      
    font-family: 'Poppins', sans-serif;
    background: #f7f0df;
}

nav {
    width: 100%;
    padding: 12px 20px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    position: relative;
}

.logo img {
    width: 120px;
}

.nav-links {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-links a ,.mobile-menu a{
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    transition: .3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ed1c24;
}

.contact-btn {
    text-transform: uppercase;
    padding: 12px 20px;
    border: none;
    background: #c02a2f;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    transition: .3s;
}

.contact-btn:hover {
    background: #ed1c24;
}

.toggle {
    font-size: 28px;
    display: none;
    cursor: pointer;
    color: #ed1c24;
}

.mobile-menu {
    z-index: 100;
    width: 100%;
    background: #fff;
    position: absolute;
    top: 70px;
    left: 0;
    padding: 25px 20px;
    display: none;
    flex-direction: column;
    gap: 20px;
    border-bottom: 1px solid #eee;
    animation: drop .3s ease;
}

@keyframes drop {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media(max-width: 767px) {
    .container h5{
        margin-bottom: 20px;
        font-weight: 600;
        font-size: 20px;
    }
    .gallery-grid {
        width: 100%;
        margin: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .gallery-grid4 {
        margin-top: 55px;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .inner-flex{
        width: 90%;
    }
    .inner-flex img{
        height: 200px;
        object-fit: cover;
        width: 100%;
    }
    .carousel-item img {
        width: 100%;
        height: 200px;
        display: block;
        border-radius: 4px; 
        object-fit: cover;
    }
    .main-title {
        text-align: center;
        font-size: 22px;
        font-weight: bold;
        text-transform: uppercase;
        margin-top: 40px;
        margin-bottom: 30px;
    }
    .dimension-group{
        text-align: left;
    }
    .dimension-group p{
        text-align: left !important;
    }
    .div-img {
        width: 100%;
        margin-top: 20px;
        height: 200px;
    }
    iframe {
        height: 250px;
    }

    .hero-text {
        text-transform: capitalize;
        color: white;
        font-size: 30px;
        font-weight: 700;
        text-shadow: 2px 2px 6px black;
        width: 90%;
        text-align: center;
    }

    .div-container {
        padding: 50px 35px;
    }

    .div-container h2 {
        margin-bottom: 20px;
        text-transform: capitalize;
        font-size: 25px;
    }

    .nav-links,
    .contact-btn {
        display: none;
    }

    .toggle {
        display: block;
    }

    .hero {
        position: relative;
        width: 100%;
        height: 250px;
        overflow: hidden;
    }

    .hero img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transition: opacity 1.2s ease-in-out;
    }
    .carousel-item {
        margin: auto;    flex: 0 0 40.666%;
            box-sizing: border-box;
            padding: 10px; 
            display: flex;
            justify-content: center;
            align-items: center;
        }
}

@media(min-width: 768px) and (max-width: 900px) {
    .container h5{
        margin-bottom: 20px;
        font-weight: 600;
        font-size: 25px;
    }
    .gallery-grid {
        width: 100%;
        margin: auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .gallery-grid4 {
        margin-top: 55px;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    .inner-flex{
        width: 65%;
    }
    .inner-flex img{
        height: 400px;
        object-fit: cover;
        width: 100%;
    }
    .carousel-item {
        margin: auto;    flex: 0 0 16.666%;
            box-sizing: border-box;
            padding: 10px; 
            display: flex;
            justify-content: center;
            align-items: center;
        }
    .carousel-item img {
        width: 100%;
        height: 300px;
        display: block;
        border-radius: 4px; 
        object-fit: cover;
    }
    .main-title {
        text-align: center;
        font-size: 28px;
        font-weight: bold;
        text-transform: uppercase;
        margin-top: 40px;
        margin-bottom: 30px;
    }
    .div-img {
        width: 100%;
        height: 300px;
    }
    .hero {
        position: relative;
        width: 100%;
        height: 480px;
        overflow: hidden;
    }

    .hero img {
        width: 100%;
        height: 480px;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transition: opacity 1.2s ease-in-out;
    }

    .hero-text {
        text-transform: capitalize;
        color: white;
        font-size: 50px;
        font-weight: 700;
        text-shadow: 2px 2px 6px black;
        width: 90%;
        text-align: center;
    }

    .div-container {
        padding: 50px 160px;
    }

    .div-container h2 {
        margin-bottom: 20px;
        text-align: center;
        text-transform: capitalize;
        font-size: 50px;
    }
}

@media (min-width: 901px) {
    .container h5{
        margin-bottom: 20px;
        font-weight: 600;
        font-size: 25px;
    }
    .gallery-grid {
        width: 100%;
        margin: auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .gallery-grid4 {
        margin-top: 55px;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    .inner-flex{
        width: 65%;
    }
    .inner-flex img{
        height: 400px;
        object-fit: cover;
        width: 100%;
    }
    .carousel-item {
        margin: auto;    flex: 0 0 16.666%;
            box-sizing: border-box;
            padding: 10px; 
            display: flex;
            justify-content: center;
            align-items: center;
        }
    .carousel-item img {
        width: 100%;
        height: 300px;
        display: block;
        border-radius: 4px; 
        object-fit: cover;
    }
    .main-title {
        text-align: center;
        font-size: 28px;
        font-weight: bold;
        text-transform: uppercase;
        margin-top: 40px;
        margin-bottom: 30px;
    }
    .div-img {
        width: 100%;
        height: 300px;
    }
    .hero {
        position: relative;
        width: 100%;
        height: 480px;
        overflow: hidden;
    }

    .hero img {
        width: 100%;
        height: 480px;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transition: opacity 1.2s ease-in-out;
    }

    .div-container {
        padding: 50px 160px;
    }

    .div-container h2 {
        font-weight: 600;
        margin-bottom: 25px;
        text-align: center;
        text-transform: capitalize;
        font-size: 42px;
    }

    .hero-text {
        text-transform: capitalize;
        color: white;
        font-size: 50px;
        font-weight: 700;
        text-shadow: 2px 2px 6px black;
        width: 90%;
        text-align: center;
    }
}




.hero img.active {
    opacity: .89;
}

.info-section {
    width: 80%;
    margin: auto;
    padding: 40px 0;
}

.video-box {
    width: 100%;
    margin-bottom: 30px;
}

.info-content h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
}

.info-content p {
    line-height: 1.7;
    margin-bottom: 18px;
    font-size: 17px;
}

.divider {
    margin: 8px auto 0;
    width: 80%;
    height: 2px;
    background: linear-gradient(to right, red, transparent);
    position: relative;
}

.divider::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 2px;
    background: linear-gradient(to left, red, transparent);
}

.star {
    position: absolute;
    left: 50%;
    top: -15px;
    transform: translateX(-50%);
    background: #f8f1df;
    padding: 0 10px;
    font-size: 22px;
}



.pricing-section {
    margin-top: 20px;
    display: flex;
    width: 100%;
    background: #f7f0df;
    gap: 40px;
}

.price-list {
    width: 50%;
}

.price-item {
    background: white;
    border: 1px solid #e8e1d1;
    padding: 20px;
    margin-bottom: 18px;
    border-radius: 4px;
}

.price-item h3 {
    font-size: 20px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
}

.price-item span {
    color: red;
    font-weight: 700;
}

.price-item p {
    margin-top: 8px;
    color: #444;
}

.offer-box {
    width: 50%;
    background: white;
    padding: 0;
    border-radius: 4px;
    overflow: hidden;
}

.offer-box .offer-header img {
    width: 100%;
    object-fit: cover;
}

.offer-content {
    text-align: center;
    padding: 25px;
}

.offer-price-big {
    font-size: 48px;
    color: #d41c1c;
    font-weight: 800;
}

.offer-old-price {
    text-decoration: line-through;
    color: #666;
    font-size: 20px;
}

.offer-list {

    padding: 0 20px;
}

.offer-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
}

.offer-content h2 {
    font-size: 28px !important;
}

.offer-content button {
    background: #d41c1c;
    color: white;
    border: none;
    padding: 12px 35px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 15px;
}

@media(max-width:900px) {
    .pricing-section {
        flex-direction: column;
    }

    .price-list,
    .offer-box {
        width: 100%;
    }
}
.div-container p ,.container p{
    margin-bottom: 15px;
    line-height: 1.7rem;
    font-size: 18px;
    color: #444;
}




.gallery-grid img ,.gallery-grid4 img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}
.gallery-grid4 img:hover {
    transform: scale(1.03);
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup img {
    object-fit: cover;
    width: 70%;
    max-height: 80%;
    border-radius: 8px;
    box-shadow: 0 0 20px #000;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 50px;
    cursor: pointer;
    user-select: none;
    padding: 10px;
}

.prev {
    left: 5%;
}

.next {
    right: 5%;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .popup img {
        width: 90%;
    }
}


.fare-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
}

.fare-table th {
    background-color: white;
    color: #333;
    font-weight: normal; 
    padding: 15px 10px;
    text-align: center;
    border: 1px solid #ddd; 
    border-left: none; 
}

.fare-table th:first-child {
    border-left: 1px solid #ddd;
}

.fare-table td {
    padding: 15px 10px;
    text-align: center;
    border: 1px solid #ddd; 
    color: #444;
}

.bus-type-cell {
    font-weight: normal;
    text-align: left; 
    border-right: none; 
    border-bottom: none; 
    padding-left: 20px;
}

.fare-table tbody tr:first-child .bus-type-cell {
    border-bottom: 1px solid #ddd;
}

.fare-table tbody tr td {
    border-left: none; 
}

.fare-table tbody tr td:first-child {
    border-left: 1px solid #ddd; 
}

.extra-charges-note {
    text-align: left;
    font-size: 0.9em;
    color: #666;
    margin-top: 5px; 
    padding-left: 5px;
}
.dimensions-section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.column {
    flex: 1; 
    padding: 0 20px;
    line-height: 1.6;
}

.column p {
    margin: 5px 0; 
    font-size: 16px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

    
}



.dimension-group h2 {
    font-size: 18px;
    font-weight: bold;
    margin-top: 25px;
    margin-bottom: 5px;
}
.seating-table {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    text-align: center;
    border-radius: 4px; 
    overflow: hidden; 
}

.table-header-row, .table-data-row {
    display: flex;
    width: 100%;
}

.header-cell, .data-cell {
    flex: 1;
    padding: 15px 10px;
    border: none;
    font-size: 18px;
    font-weight: 500;
}

.yellow-bg {
    background-color: #d8e03e;
    color: #333;
    font-weight: bold;
}

.light-gray-bg {
    background-color: #ececec; 
}

.table-data-row:not(.light-gray-bg) {
    background-color: #fff;
}

.table-data-row:first-of-type .data-cell {
    padding-top: 20px; 
}

@media (max-width: 768px) {
  
    .seating-table {
        width: 100%;
    }
}
.carousel-container {
    width: 100%; 
    margin: 40px auto;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.carousel-wrapper {
    display: flex;
    width: 200%; 
    animation: autoSlide 15s linear infinite;
}

.carousel-wrapper:hover {
    animation-play-state: paused;
}





@keyframes autoSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); 
    }
}.img-flex{
    display: flex;
    flex-direction: column;
    align-content: stretch;
    align-items: center;
    gap: 25px;
}

.container ul {
    line-height: 37px;
    text-align: center;
    margin: 0;
    padding: 0;
    font-size: 18px;
    list-style: none;
    align-items: center;
}
.faq-container {
    margin: 50px auto;
    padding: 20px;
}

.accordion-item {
    cursor: pointer;
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 15px 0;
    font-size: 16px;
    font-weight: bold;
    user-select: none; 
}

.arrow {
    font-size: 12px;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header {
    font-weight: bold;
    font-size: 18px; 
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 0 0 30px; 
}

.accordion-content.open {
    max-height: 500px;
    padding: 10px 0 20px 30px;
}

.accordion-content p {
    margin: 5px 0;
    font-weight: 400;
    line-height: 1.6;
}

.highlight {
    color: #db4c4b; 
}

.separator {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 0;
}
.bg-acc{
    padding: 2px 5px;
      background: #d7cfc2 !important;
}
.site-footer {
    margin-top: 55px;
    background-color: #1a0706d9; 
    color: #b0c2a5;
    padding: 40px 20px;
    font-size: 16px;
    line-height: 1.6;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-between;
    gap: 30px; 
}

.footer-col {
    flex: 1;
    min-width: 250px; 
}

.footer-col-info {
    flex: 1.2; 
    min-width: 280px;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
    display: block;
    margin-bottom: 5px;
}

.logo-tagline {
    font-size: 14px;
    text-transform: uppercase;
    color: #8c9f80;
    margin-bottom: 20px;
}

.office-address p {
    margin: 0 0 10px 0;
}

.office-address strong {
    color: #dbe4d4;
}

.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-icon {
    color: #b0c2a5;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #ffffff;
}

.footer-col h3 {
    color: #ffffff; 
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #b0c2a5; 
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.nested-list-parent {
    margin-bottom: 0; 
}

.nested-list {
    margin-top: 5px;
    padding-left: 15px;
}

.nested-list li {
    margin-bottom: 5px;
}

.nested-list li a {
    font-size: 16px; 
    color: #92a488;
}

.nested-list li a:hover {
    color: #b0c2a5;
}

.footer-col-connect .blog-title {
    margin-top: 30px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-col {
        min-width: 100%; 
        margin-bottom: 30px;
    }
    .footer-col:last-child {
        margin-bottom: 0;
    }
}

.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366; 
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    text-decoration: none;
    z-index: 1000;
}

.whatsapp-icon img {
    width: 30px; 
    height: 30px;
    object-fit: contain;
}
.btn-scale-pop {
    cursor: pointer;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.btn-scale-pop:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3); /* Adds a stronger shadow */
}
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    
    .fade-in-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
    }
    .hero-content{
        display: flex;
        width: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        flex-direction: column;
        align-content: space-between;
        align-items: center;
    }
    .hero-btn {
        font-weight: 600;
        text-transform: uppercase;
        padding: 10px 22px;
        border: 1px solid #c02a2f;
        color: #c02a2f;
        cursor: pointer;
        font-size: 15px;
        transition: .3s;
      margin-top: 15px;
        text-align: center;
    }
    .hero-btn:hover {
        background: #c02a2f;
        color: white;
    }
    .div-container h5{
        margin-bottom: 20px;
    font-weight: 700;
    font-size: 30px;
}
    .div-p  p{
        margin-bottom: 30px;
    }