@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}





h1,
h2,
h3,
.navbar a {
    font-family: 'Playfair Display', serif;
}

body {
    font-family: 'Roboto', sans-serif;
}

/* scroll */
#scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    background: #d4af37;
    color: #fff;
    border: none;
    padding: 12px 15px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    font-size: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

#scrollTopBtn:hover {
    background: #000;
}




/* Top Bar */
.top-bar {
    background: #0a3d62;
    color: white;
    font-size: 14px;
    padding: 8px 0;
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 11px;
    }
}

.top-bar .container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

/* Navbar */
header {
    background: white;
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
    position: sticky;
    top: 0;
    z-index: 100;
}


.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 47px;
}

.logo img {
    height: 174px;
    width: auto;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin-right: 300px;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-links li a:hover {
    color: rgb(209, 30, 114);
}

.hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* Dropdown Styling */
.dropdown {
    position: relative;
}

.dropdown .arrow {
    font-size: 12px;
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    display: none;
    flex-direction: column;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    min-width: 180px;
}

.dropdown-menu li {
    padding: 8px 15px;
}

.dropdown-menu li a {
    color: #333;
    text-decoration: none;
    display: block;
}

.dropdown-menu li a:hover {
    background: #f4f4f4;
    color: rgb(209, 30, 114);
}

/* Hover dropdown for Desktop */
@media(min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        display: flex;
    }
}

/* Mobile view dropdown */
@media(max-width: 768px) {
    .dropdown-menu {
        position: relative;
        box-shadow: none;
        border-radius: 0;
        min-width: 100%;
        padding-left: 15px;
    }

    .dropdown.open .dropdown-menu {
        display: flex;
    }
}


@media(max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        /* Fixed for mobile */
        top: 70px;
        /* Header ke neeche start hoga */
        right: 0;
        /* Right side se open hoga */
        width: 220px;
        /* Fixed width menu */
        background: white;
        padding: 20px;
        box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
        z-index: 200;
        margin-right: 0;
        /* ✅ yahan margin reset karna zaroori hai */
    }

    .nav-links li {
        margin: 15px 0;
        text-align: left;
        /* Tabs left align ho */
    }

    .nav-links.active {
        display: flex;
        /* Hamburger click hone ke baad show hoga */
    }

    .hamburger {
        display: block;
        font-size: 28px;
        cursor: pointer;
    }
}



/* Hero Slider */
.hero {
    position: relative;
    height: 90vh;
    width: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: none;
    align-items: center;
    justify-content: center;
}


.slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);

    z-index: 1;
}

.slide.active {
    display: flex;
    /* height: 997px; */
}

/* @media (max-width: 768px) {
    .slide.active {
        height: 661px;
    }
}

@media (max-width: 430px) {
    .slide.active {
        height: 650px;
    }
} */

.content {
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    /* margin-top: 409px; */
    /* margin-bottom: 172px; */
}

.content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.buttons .btn {
    padding: 12px 25px;
    border-radius: 5px;
    margin: 5px;
    text-decoration: none;
    font-weight: bold;
}

.btn.primary {
    background: #D9A441;
    color: white;
}

.btn.primary:hover {
    background-color: #244b86;
}

.btn.secondary {
    color: white;
    background: #244b86;
}

.btn.secondary:hover {
    background-color: #D9A441;
}

.arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    padding: 0 20px;
    z-index: 3;

}

@media (max-width: 768px) {
    .prev {
        margin-left: -20px;
    }

    .next {
        margin-right: -18px;
    }
}



.arrows span {
    cursor: pointer;
}


/* Responsive */
@media(max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 70px;
        right: 20px;
        padding: 15px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .content h1 {
        font-size: 1.8rem;
    }

    .content p {
        font-size: 1rem;
    }
}




/* CTA Section */
.cta-section {
    background: transparent;
    /* Transparent background */
    text-align: center;
    padding: 40px 20px;
}

.cta-container h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #111;
}

.cta-container p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #000000;
}

.cta-buttons {
    /* display: flex; */
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    /* mobile me wrap ho jaye */
}

.btn {
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}

.btn.whatsapp {
    background: #25d366;
    color: white;
}

.btn.whatsapp:hover {
    background: #1ebe5c;
}

.btn.call {
    background: #e84362;
    color: white;
}

.btn.call:hover {
    background: #cc2c4e;
}

/* Responsive */
@media(max-width: 768px) {
    .cta-container h2 {
        font-size: 1.5rem;
    }

    .cta-container p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* 3rd section read more btn */
/* Info Section */
.info-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.info-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.info-left iframe {
    border-radius: 10px;
    width: 100%;
    height: 320px;
}

.info-right h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #222;
}

.info-right ul {
    margin: 10px 0 20px;
    padding-left: 20px;
    color: #333;
}

.info-right p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

.read-more-btn {
    margin-top: 15px;
    padding: 10px 20px;
    background: #e84362;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease;
}

.read-more-btn:hover {
    background: #000000;
}

/* Responsive */
@media(max-width: 768px) {
    .info-container {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }

    .info-left iframe {
        height: 220px;
    }
}







/* 5th section */
/* Golden Triangle Tour Packages Section */
.golden-packages {
    padding: 50px 20px;
    background: #fff;
    text-align: center;
}

a {
    text-decoration: none;
    /* underline hata dega */
    color: inherit;
    /* parent ke color jaisa ho jayega */
}


.golden-heading {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.golden-heading span {
    color: #e63946;
}

.golden-subtitle {
    font-size: 14px;
    color: #000000;
    margin-bottom: 30px;
}

.golden-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.golden-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.golden-card:hover {
    transform: translateY(-5px);
}

.golden-img {
    position: relative;
}

.golden-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.ribbon {
    position: absolute;
    top: 10px;
    left: -25px;
    background: #e63946;
    color: #fff;
    padding: 5px 40px;
    transform: rotate(-45deg);
    font-size: 12px;
    font-weight: 600;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 5px 12px;
    font-size: 14px;
}

.golden-title {
    font-size: 16px;
    font-weight: 700;
    padding: 15px;
    text-transform: uppercase;
}


/* 6th section */
.tour-cards-section {
    text-align: center;
    padding: 32px 20px;
    background: #fff;
}

/* .tour-cards-section h2 {
    text-align: center;
} */

.tour-cards-section h2 {
    font-size: 30px;
    /* text-align: center; */
    font-weight: 700;
    color: #244b86;
    /* text-transform: uppercase; */
    position: relative;
    display: inline-block;
    margin-bottom: 3px;
    letter-spacing: 2px;
    /* margin-left: 586px; */
}

.tour-cards-section h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    /* background: #d63333;  */
    margin: 10px auto 0;
    border-radius: 2px;
}

.tour-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 11px;
}

.tour-card {
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-5px);
}

.tour-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tour-card h3 {
    font-size: 20px;
    margin: 15px 0 10px;
    color: #244b86;
}

.tour-card p {
    font-size: 14px;
    padding: 0 15px;
    color: #000000;
    min-height: 80px;
    line-height: 1.6;
    /* line spacing thoda smooth hoga */
    text-align: justify;
    /* text dono side barabar align */
    text-justify: inter-word;
    /* words evenly distribute honge */
}

.tour-btn {
    display: inline-block;
    margin: 15px 0 20px;
    padding: 10px 18px;
    background: #d4af37;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.tour-btn:hover {
    background: #244b86;
}

/* Responsive */
@media (max-width: 992px) {
    .tour-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .tour-cards-grid {
        grid-template-columns: 1fr;
    }
}


/* faq */
.faq-section {
    padding: 6px 20px;
    background: #fafafa;
    font-family: 'Segoe UI', sans-serif;
}

.faq-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    color: #244b86;
}

.faq-item {
    margin-bottom: 25px;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 15px;
    color: #000000;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-title {
        font-size: 24px;
    }

    .faq-item h3 {
        font-size: 16px;
    }

    .faq-item p {
        font-size: 14px;
    }
}


/* footer */
.footer-logo {
    max-width: 180px;
    /* apne logo size ke hisaab se adjust karna */
    height: auto;
    display: block;
    margin-top: -61px;
}


.site-footer {
    background: #222;
    color: #eee;
    font-family: 'Segoe UI', sans-serif;
    padding: 40px 20px 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.footer-col h4,
.footer-col h5 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    line-height: 2.6;
    color: #ccc;
}

.footer-col a:hover {
    color: #fff;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col i {
    margin-right: 8px;
    color: #ffcc00;
}

.payment-img {
    margin-top: -52px;
    max-width: 160px;
}

.tripadvisor-card img {
    max-width: 200px;
    border-radius: 6px;
    margin-top: 10px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #444;
    margin-top: -26px;
    padding-top: 7px;
    text-align: center;
}

.social-icons {
    margin-bottom: 10px;
}

.social-icons a {
    display: inline-block;
    margin: 0 8px;
    color: #ccc;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ce0f0f;
}

.footer-bottom p {
    font-size: 13px;
    color: #aaa;
}

.footer-col i {
    margin-right: 8px;
    color: #ce0f0f;
    /* Golden touch */
    font-size: 14px;
}

.footer-col ul li a i {
    margin-right: 6px;
    color: #ce0f0f;
}


/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-bottom {
        text-align: left;
    }
}



/* itenarydetailscss */
/* tour info heading */
/* Tour Info Section */
.tour-info {
    background: #ffffff;
    padding: 30px 20px;
    border-bottom: 1px solid #eee;
}

.tour-info .container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Left Title */
.tour-title h1 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    color: rgb(6, 6, 66);
}

/* Right Details */
.tour-details {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    /* margin-right: 220px; */
}

.detail-box {
    text-align: left;
}

.detail-box i {
    color: #cc7817;
    margin-right: 8px;
}

.detail-box h4 {
    color: rgb(6, 6, 66);
    font-size: 1rem;
    margin: 0 0 5px 0;
}

.detail-box p {
    margin: 0;
    font-size: 0.95rem;
    color: black;
}

/* Responsive */
@media(max-width: 768px) {
    .tour-info .container {
        flex-direction: column;
        text-align: center;
    }

    .tour-details {
        justify-content: center;
        gap: 30px;
    }

    .detail-box {
        text-align: center;
    }
}


/* tour overview + booking form */
/* Tour Overview */
.tour-overview {
    padding: 60px 20px;
    background: #ffffff;
}

.tour-overview .container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

/* Left Side */
.overview-text h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: rgb(6, 6, 66);

}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #000000;
}

.overview-text ul {
    list-style: none;
    padding: 0;
}

.overview-text ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: black;
}

/* Right Side Form */
/* .booking-form {
    
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    
    top: 100px;
    height: fit-content;
} */

.booking-form h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: center;
    color: rgb(6, 6, 66);
}

.booking-form form input,
.booking-form form select,
.booking-form form textarea,
.booking-form form button {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid black;
    border-radius: 8px;
    font-size: 1rem;
}

/* ✅ Fix for iPhone blue placeholder */
.booking-form form select:required:invalid {
    color: #000000;
}

.booking-form form select option[value=""] {
    color: #000000;
}

/* ✅ Custom dropdown arrow styling */
.booking-form form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url("data:image/svg+xml;utf8,<svg fill='black' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 12px center;
    background-color: #fff;
    background-size: 16px;
    padding-right: 40px;
    /* arrow ke liye jagah */
    color: #000;
}

.booking-form form textarea {
    resize: none;
    height: 100px;
}

.booking-form form button {
    background: #031666;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.booking-form form button:hover {
    background: #000000;
}




.support-card {
    text-align: center;
}

.support-card .icon img {
    width: 60px;
    margin-bottom: 10px;
}

.support-card h4 {
    margin-bottom: 10px;
}

.whatsapp-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background: #25d366;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

.whatsapp-btn:hover {
    background-color: darkgreen;
}

.whatsapp-btn i {
    margin-right: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .tour-overview .container {
        flex-direction: column;
        align-items: center;
    }

    .right-section {
        max-width: 100%;
        width: 100%;
    }
}

/* Responsive */
@media(max-width: 768px) {
    .tour-overview .container {
        grid-template-columns: 1fr;
    }

    .booking-form {
        position: relative;
        top: unset;
    }
}



/* itenary */
.tour-itinerary {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.tour-itinerary h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: rgb(6, 6, 66);
    font-weight: 600;
    /* text-align: center; */
    /* margin-right: 580px; */
}

/* Accordion container */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Accordion items (as separate boxes) */
.accordion-item {
    border: 1px solid #000000;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

/* Accordion header (button) */
.accordion-header {
    width: 100%;
    padding: 19px 20px;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    border: none;
    outline: none;
    cursor: pointer;
    background: #ffffff;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: #f5f5f5;
}

/* Plus/Minus Icon */
.accordion-header::after {
    content: '+';
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-header::after {
    content: '−';
}

/* Accordion content */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 20px;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    /* enough space for content */
    padding: 15px 20px;
    border-top: 1px solid #ddd;
}

.accordion-content p {
    margin: 0;
    color: #000000;
    line-height: 1.6;
}


/* included excluded */
.includes-excludes {
    margin-top: 40px;
}

.includes-excludes h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.inc-exc-wrapper {
    display: flex;
    gap: 30px;
}

.includes,
.excludes {
    flex: 1;
}

.includes ul li::before {
    content: "✔️ ";
    color: green;
}

.excludes ul li::before {
    content: "❌ ";
    color: red;
}


/* herobanner2 */
.hero2 {
    position: relative;
    height: 74vh;
    /* kam height */
    width: 100%;
    overflow: hidden;
}

.slide2 {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: none;
    align-items: center;
    justify-content: center;
}

/* Dark overlay */
/* .slide2::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
} */

.slide2.active {
    display: flex;
}

.content2 {
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

.content2 h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.content2 p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.buttons2 .btn2 {
    padding: 10px 22px;
    border-radius: 5px;
    margin: 5px;
    text-decoration: none;
    font-weight: bold;
}

.btn2.primary2 {
    background: #e84393;
    color: white;
}

.btn2.primary2:hover {
    background-color: black;
}

.btn2.secondary2 {
    color: white;
    background: rgb(4, 4, 53);
}

.btn2.secondary2:hover {
    background-color: black;
}

.arrows2 {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    padding: 0 20px;
    z-index: 3;
}

.arrows2 span {
    cursor: pointer;
}

@media (max-width: 768px) {
    .hero2 {
        height: 50vh;
        /* mobile pe aur chhota */
    }

    .content2 h1 {
        font-size: 1.5rem;
    }

    .content2 p {
        font-size: 0.9rem;
    }
}



/* tourhighlights css */
.highlights {
    padding: 31px 20px;
    /* background: #f9f9f9; */
    border-radius: 10px;
    margin: 0px 0;
    margin-left: -25px;
}

.highlight-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #222;
    font-weight: bold;
    text-align: left;
    /* heading left aligned */
}

.highlight-list {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    /* background: #fff; */
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    /* transition: transform 0.3s ease; */
}

/* .highlight-item:hover {
    transform: translateY(-5px);
} */

.highlight-item i {
    color: #28a745;
    /* green tick */
    margin-right: 12px;
    font-size: 1.2rem;
    margin-top: 3px;
}

.highlight-item p {
    margin: 0;
    font-size: 1rem;
    color: #000000;
}


/* cabsectioncss */
.cab-section {
    padding: 0px 20px;
    background: #f9f9f9;
}

.cab-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.cab-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cab-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.cab-card img {
    width: 100%;
    height: 161px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.cab-card h3 {
    font-size: 20px;
    color: #000000;
    margin-bottom: 12px;
}

.cab-btn {
    background: #D9A441;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.3s ease;
}

.cab-btn:hover {
    background: #244b86;
}

.cab-heading {
    text-align: center;
    margin-bottom: 40px;
}

.cab-heading h2 {
    font-size: 32px;
    color: #244b86;
    margin-bottom: 10px;
    font-weight: 700;
}

.cab-heading p {
    font-size: 16px;
    color: #000000;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 992px) {
    .cab-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .cab-container {
        grid-template-columns: 1fr;
    }
}


/* cta */
.cta-section {
    background: linear-gradient(rgba(40, 52, 107, 0.6), rgba(230, 164, 22, 0.6)),
        url('https://images.unsplash.com/photo-1594476798165-4dc2621c99c9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 29px 20px;
    border-radius: 12px;
    margin: 40px auto;
    /* max-width: 1000px; */
    max-width: 1311px;
}

@media (max-width: 768px) {
    .cta-section {
        margin: 11px 15px;
        padding: 13px;
    }
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-block;
    background: #244b86;
    color: #fff;
    padding: 14px 28px;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #D9A441;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 600px) {
    .cta-section h2 {
        font-size: 1.6rem;
    }

    .cta-section p {
        font-size: 1rem;
    }
}


/* tour gallery */
.gallery-section {
    padding: 8px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a2a49;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ensures vertical alignment */
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}