* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lora", serif;
}

body {
    background: #ffffff;
}

/* NAVBAR */
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 20px 60px;
    transition: 0.3s ease;
}

header.sticky {
    background: white;
    padding: 14px 60px;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 200px;
    margin-bottom: -21px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: #1d2869;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    font-size: 16px;
}

.nav-links a:hover {
    color: #BF8B30;
}

/* BOOK NOW button */
.book-btn {
    padding: 10px 22px;
    background: #1d2869;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    font-size: 15px;
    transition: 0.3s;
}

.book-btn:hover {
    background: #b8925d;
}

/*dropdwoncss*/
/* Dropdown container */
.dropdown {
    position: relative;
}

/* Dropdown menu hidden */
.dropdown-menu {
    position: absolute;
    top: 30px;
    left: 0;
    background: #ffffff;
    list-style: none;
    padding: 10px 15px;
    border-radius: 5px;
    display: none;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 999;
}

/* Show dropdown */
.dropdown.show .dropdown-menu {
    display: flex;
}

/* Dropdown links */
.dropdown-menu a {
    white-space: nowrap;   /* ✅ text ek line me */
    display: block;
}

.dropdown-menu a:hover {
    color: #BF8B30;
}


/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #000000;
}

/* HERO SLIDER */
.hero {
    margin-top: 76px;
    position: relative;
    overflow: hidden;
    height: 640px;
    /* pehle slides ki height thi, keep same */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    object-fit: cover;
    z-index: -1;
}


/* video overlay (dark) */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.45); */
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
}

.hero-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    /*text-transform: uppercase;*/
    letter-spacing: 2px;
    text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.6);
    margin-top: 200px;
    text-align: center;
}

/* Only first line font change */
.script-line {
   font-family: "Lavishly Yours", cursive;
    font-size: 100px;
    text-transform: none; /* handwriting me uppercase achha nahi lagta */
    font-weight: 500;
    letter-spacing: 1px;
    display: block;
}

@media (max-width:768px){
    .script-line{
        font-size: 38px;
    }
}

.lavishly-yours-regular {
  font-family: "Lavishly Yours", cursive;
  font-weight: 400;
  font-style: normal;
}





/* RESPONSIVE */
@media (max-width: 992px) {
    header {
        padding: 15px 25px;
    }

    header.sticky {
        padding: 12px 25px;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        display: none;
    }

    .nav-links.show {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .desktop-only {
        display: none;
    }

    .hero {
        height: 520px;
    }

    .hero-content h2 {
        font-size: 28px;
        letter-spacing: 1px;
    }
}

@media(max-width:768px) {
    .hero-video {
        position: absolute;
        /* top: -47px; */
        left: 0;
        width: 100%;
        height: 90%;
        object-fit: cover;
        z-index: -1;
        /* bottom: 30px; */
    }
}



/* about section css */
.about-white-section {
    padding: 35px 5%;
    background: #ffffff;
}

.about-white-container {
    display: flex;
    align-items: stretch;
    /* IMPORTANT → equal height */
    gap: 50px;
    max-width: 1300px;
    margin: auto;
}

/* LEFT IMAGE */
.about-white-img {
    flex: 1;
}

.about-white-img img {
    width: 100%;
    height: 96%;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

/* RIGHT TEXT */
.about-white-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: -50px;
}

.aw-small-title {
    font-size: 15px;
    color: #b8925d;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.aw-main-title {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1d2869;
}

.aw-text {
    font-size: 17px;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 30px;
}

/* ICON ROW */


/* RESPONSIVE */
@media (max-width: 950px) {
    .about-white-container {
        flex-direction: column;
    }

    .aw-highlights {
        justify-content: center;
    }
}


/*  */
/* ICONS ROW */
/* ICON ROW */
.aw-highlights {
    display: flex;
    gap: 35px;
    margin: 30px 0;
}

.aw-box {
    text-align: center;
}

.aw-box i {
    font-size: 32px;
    color: #1d2869;
    /* premium gold */
    margin-bottom: 6px;
}

.aw-box p {
    font-size: 15px;
    font-weight: 500;
    color: #222;
}

/* READ MORE BUTTON */
.aw-read-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #1d2869;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
    align-self: flex-start;
    /* Always align left cleanly */
    margin-top: 10px;
    /* good spacing */
}

.aw-read-btn:hover {
    background: #a88437;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .aw-highlights {
        justify-content: center;
        gap: 25px;
    }

    .aw-read-btn {
        margin-right: 185px;
    }
}

/* taj mahal tours css */
.taj-section {
    padding: 9px 5%;
    background: #ffffff;
    /* black like your screenshot */
}

.taj-container {
    max-width: 1400px;
    margin: auto;
}

.taj-title {
    font-size: 34px;
    font-weight: 600;
    color: #1d2869;
    margin-bottom: 40px;
    text-align: center;
}

.taj-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* CARD */
.taj-card {
    background: #ffffff;
    color: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s ease;
}

.taj-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
}

.taj-card h3 {
    font-size: 20px;
    margin: 15px 0 5px;
    color: rgb(0, 0, 0);
}

.taj-card h3:hover {
    color: #b8925d
}

.taj-card p {
    font-size: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgb(0, 0, 0);
}

.taj-card p i {
    color: #1d2869;
    /* premium gold */
    font-size: 17px;
}

.taj-card p span {
    font-weight: 600;
    color: #000000;
}

/* Hover Effect */
.taj-card:hover {
    transform: translateY(-6px);
}

.taj-card a {
    text-decoration: none;
    color: inherit;
    /* color h3 jaisa hi rahega */
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .taj-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .taj-title {
        font-size: 17px;
    }
}

@media (max-width: 600px) {
    .taj-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .taj-card img {
        height: 220px;
    }
}

/* agea delhi jaipur tours */
.city-tour-section {
    padding: 50px 5%;
    background: #ffffff;
}

.city-tour-title {
    font-size: 34px;
    font-weight: 600;
    color: #1d2869;
    margin-bottom: 40px;
    text-align: center;
}

.city-tour-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

/* CARD */
.city-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.city-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: .4s ease;
}

/* TEXT OVERLAY */
.city-content {
    position: absolute;
    bottom: 25px;
    left: 35px;
    z-index: 2;
    color: #fff;
}

.city-content h3 {
    font-size: 26px;
    margin-bottom: 6px;
    font-weight: 600;
}

.city-content p {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.95;
}

.city-content i {
    color: #ffffff;
}

/* BOOK NOW BUTTON (hidden by default) */
.city-btn {
    position: absolute;
    bottom: 30px;
    right: 35px;
    background: #1d2869;
    color: #fff;
    padding: 10px 26px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: .3s ease;
}

.city-btn:hover {
    color: #a88437;
}

/* HOVER EFFECT */
.city-card:hover img {
    transform: scale(1.07);
}

.city-card:hover .city-btn {
    opacity: 1;
    transform: translateY(0);
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
    .city-tour-grid {
        grid-template-columns: 1fr;
    }

    .city-card img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .city-tour-title {
        font-size: 20px;
        font-weight: bolder;
    }

    .city-tour-section {
        padding: 21px 5%;
    }
}

/* MOBILE FIX FOR BOOK NOW BUTTON */
@media (max-width: 600px) {
    .city-btn {
        right: 50%;
        bottom: 20px;
        transform: translateX(50%) translateY(10px);
        padding: 10px 22px;
        font-size: 14px;
    }

    .city-card:hover .city-btn {
        transform: translateX(50%) translateY(0);
        margin-bottom: -14px;
    }

    .city-content {
        left: 20px;
        bottom: 55px;
    }
}


/* our services */
.services-section {
    padding: 25px 20px;
    background: #ffffff;
    text-align: center;
}

.services-heading {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1d2869;
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-box {
    padding: 40px 25px;
    background: #1d2869;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.service-box .icon {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 15px;
}

.service-box h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #ffffff;
}

.service-box p {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.6;
}

/* Responsive */
@media(max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-box {
        padding: 30px 20px;
    }
}


/* cta section css */
.why-cta {
    position: relative;
    width: 100%;
    min-height: 57vh;
    background: url("img/ctabannerimage.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 60px 8%;
    color: #fff;
}

.why-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    /* backdrop-filter: blur(1px); */
}

.why-content {
    position: relative;
    max-width: 650px;
    z-index: 2;
}

.why-tag {
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

.why-tag span {
    margin-left: 5px;
}

.why-content h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    margin: 15px 0 20px;
}

.why-desc {
    font-size: 17px;
    line-height: 1.7;
    max-width: 90%;
    margin-bottom: 30px;
    opacity: 0.95;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1d2869;
    padding: 14px 28px;
    border-radius: 50px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.whatsapp-btn i {
    font-size: 20px;
}

.whatsapp-btn:hover {
    background: #a88437;
    transform: translateY(-2px);
}

/* ---------------- MOBILE RESPONSIVE ---------------- */
@media (max-width: 768px) {

    .why-cta {
        min-height: 69vh;
        padding: 50px 6%;
        text-align: left;
    }

    .why-content h2 {
        font-size: 32px;
    }

    .why-desc {
        font-size: 15px;
    }

    .whatsapp-btn {
        padding: 12px 22px;
        font-size: 15px;
    }
}


/* text or form */
.enquiry-section {
    background: #ffffff;
    padding: 80px 8%;
}

.enquiry-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    max-width: 1300px;
    margin: auto;
}

/* LEFT FORM */
.enquiry-left {
    flex: 1;
    background: #ffffff;
    color: #fff;
    padding: 40px;
    border-top: 4px solid #a88437;
}

.small-title {
    font-size: 14px;
    margin-bottom: 5px;
    letter-spacing: 1px;
    color: #a88437;
}

.form-heading {
    font-size: 42px;
    font-family: "Playfair Display", serif;
    margin-bottom: 25px;
    color: #1d2869;
}

.enquiry-form input,
.enquiry-form textarea {
    width: 100%;
    background: transparent;
    border: 2px solid #1d2869;
    margin-bottom: 15px;
    padding: 12px 14px;
    font-size: 15px;
    color: #000000;
    border-radius: 4px;
}

.enquiry-form textarea {
    height: 110px;
    resize: none;
}

.send-btn {
    width: 100%;
    background: #1d2869;
    border: none;
    padding: 14px;
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    border-radius: 4px;
    cursor: pointer;
}

.send-btn:hover {
    background: #b8925d;
}

/* RIGHT CONTENT */
.enquiry-right {
    flex: 1;
}

.right-tag {
    letter-spacing: 3px;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 10px;
    color: #a88437;
}

.right-tag span {
    margin-left: 5px;
}

.right-heading {
    font-size: 46px;
    font-family: "Playfair Display", serif;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1d2869;
}

.right-desc {
    margin-bottom: 20px;
    font-size: 17px;
    color: #000000;
}

.right-points li {
    font-size: 17px;
    margin-bottom: 10px;
    color: #000000;
}

/* CALL BOX */
.call-box {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.call-box i {
    font-size: 35px;
    margin-right: 15px;
    color: #1d2869;
}

.call-small {
    font-size: 15px;
    color: #000000;
}

.call-number {
    font-size: 22px;
    font-weight: 700;
    color: #000;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

    .enquiry-container {
        flex-direction: column;
    }

    .form-heading {
        font-size: 32px;
    }

    .right-heading {
        font-size: 32px;
    }

    .call-number {
        font-size: 20px;
    }

    .enquiry-section {
        padding: 52px 8%;
    }
}


/* footer */
/* MAIN FOOTER */
.main-footer {
    background: #000000;
    color: #dcdcdc;
    padding: 30px 8%;
    /* font-family: "Poppins", sans-serif; */
}

.footer-container {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 50px;
    max-width: 1400px;
    margin: auto;
}

/* ABOUT SECTION */
.footer-logo {
    width: 180px;
    margin-bottom: 20px;
}

.about-text {
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* SOCIAL ICONS */
.social-icons a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.3s;
}

/* .social-icons a:hover {
    background: #c7a674;
    border-color: #c7a674;
    color: #000;
} */

/* COLUMN TITLES */
.footer-col h3 {
    /* font-family: "Playfair Display", serif; */
    font-size: 22px;
    margin-bottom: 18px;
    color: #fff;
}

/* LINKS */
.footer-links li {
    margin-bottom: 10px;
    font-size: 15px;
    opacity: 0.9;
    transition: 0.3s;
    cursor: pointer;
}

.footer-links li:hover {
    color: #c7a674;
}

/* CONTACT INFO */
.info .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.info-item i {
    font-size: 18px;
    margin-right: 12px;
    color: #c7a674;
}

.paypal-img {
    margin-top: 20px;
    width: 150px;
}

/* RESPONSIVE 1024 PX */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-col {
        margin-bottom: -10px;
    }

    .social-icons a {
        margin-right: 6px;
    }
}

/* BOTTOM COPYRIGHT BAR */
.footer-bottom {
    background: #181414;
    text-align: center;
    padding: 16px 10px;
    color: #cfcfcf;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-top: 1px solid #2a2a2a;
    /* font-family: "Poppins", sans-serif; */
}

.footer-bottom p {
    margin: 0;
}


/* scroller css */
#scrollTopBtn {
    position: fixed;
    right: 18px;
    bottom: 22px;
    width: 48px;
    height: 48px;
    background: #191788ad;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    z-index: 9999;
    transition: 0.3s;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}

#scrollTopBtn:hover {
    transform: scale(1.1);
    background: #c7a674;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    #scrollTopBtn {
        width: 42px;
        height: 42px;
        font-size: 18px;
        right: 14px;
        bottom: 18px;
    }
}


/* itinerary css */
/* SMALL HERO */
.itinerary-hero-small {
    margin-top: 76px;
    height: 450px;
    background: url('img/delhiagraitinerary1.png') center/cover no-repeat;
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    margin-bottom: 18px;
    margin-left: 38px;
}

.tour-rating i {
    color: #c7a674;
    /* Golden star */
    font-size: 18px;
}

.tour-rating span {
    font-size: 15px;
    margin-left: 4px;
    color: #444;
    font-weight: 500;
}

/* Mobile fix */
@media(max-width:768px) {
    .tour-rating i {
        font-size: 17px;
    }
}


@media(max-width:768px) {
    .itinerary-hero-small {
        height: 180px;
    }
}

/* TOUR SUMMARY */
/* Container row: left title+rating, right summary boxes */
.tour-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 40px;
    flex-wrap: wrap;
}

/* LEFT SIDE */
.title-rating {
    max-width: 45%;
}

.tour-title {
    font-size: 34px;
    font-weight: 700;
    color: #1d2869;
    margin-bottom: 6px;
}

.tour-rating {
    display: flex;
    gap: 4px;
    align-items: center;
    font-size: 16px;
}

.tour-rating i {
    color: #1d2869;
}

/* RIGHT SIDE */
.summary-right {
    display: flex;
    /* flex-direction: column; */
    gap: 18px;
    max-width: 50%;
}

.summary-row {
    display: flex;
    gap: 20px;
}

/* ITEM BOXES */
.summary-item {
    background: #1d2869;
    padding: 14px 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 12.5px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.summary-item:hover {
    background: #c7a674;
}

.summary-item i {
    font-size: 18px;
}

/* RESPONSIVE */
@media(max-width: 991px) {
    .tour-header-row {
        flex-direction: column;
        gap: 25px;
    }

    .title-rating {
        max-width: 100%;
    }

    .summary-right {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        /* Important: mobile me again column */
        gap: 18px;
        overflow: hidden;
        /* Scroll stop */
    }
}

@media(max-width: 768px) {
    .summary-row {
        display: flex;
        flex-direction: row;
        gap: 12px;
        width: 100%;
    }

    .summary-item {
        width: 50%;
        flex: 1;
        white-space: normal;
        /* Text wrap so no scroll */
    }

    .tour-title {
        font-size: 25px;
        margin-top: -3px;
    }
}


/* LAYOUT */
.tour-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: -17px;
    padding: 43px 52px;
}

@media(max-width:768px) {
    .tour-layout {
        grid-template-columns: 1fr;
        /* margin-left: -22px; */
        margin-left: -41px;
    }
}

/* TOUR OVERVIEW */
.tour-overview h2 {
    font-size: 26px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #1d2869;
}

.tour-overview p {
    line-height: 1.7;
    color: #000000;
}

/* Price Table Section */
/* -----------------------------------------
   TABLE WRAPPER (Page Safe Structure)
----------------------------------------- */
.table-responsive {
    width: 100%;
    overflow: hidden !important;
    /* Prevent scrolling */
}

/* -----------------------------------------
   MAIN TABLE STYLING
----------------------------------------- */
.price-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    /* Force equal column auto-fit */
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
}



/* -----------------------------------------
   TABLE HEADERS & CELLS
----------------------------------------- */
.price-table th,
.price-table td {
    padding: 14px 12px;
    border: 1px solid #e5e5e5;
    font-size: 16px;
    font-weight: 500;
    color: #1d2869;
    white-space: normal;
    /* Allow line break */
    word-wrap: break-word;
    /* Wrap long text */
    vertical-align: middle;
}

/* Header */
.price-table th {
    background: #1d2869;
    color: #fff;
    font-weight: 600;
}

/* Alternate row color */
.price-table tr:nth-child(even) {
    background: #f9fafc;
}

/* -----------------------------------------
   MOBILE RESPONSIVENESS
----------------------------------------- */
@media(max-width: 768px) {

    /* Table stays table — No break, No scroll */
    .price-table {
        table-layout: fixed !important;
        /* super important */
    }

    .price-table th,
    .price-table td {
        padding: 10px 8px;
        font-size: 14px;
        word-wrap: break-word;
    }

    .price-table td i {
        font-size: 14px;
        /* icons smaller */
    }

    /* Make sure table never scrolls */
    .table-responsive {
        overflow-x: hidden !important;
    }
}

/* -----------------------------------------
   SUPER SMALL DEVICES (OPTIONAL)
----------------------------------------- */
@media(max-width: 480px) {

    .price-table th,
    .price-table td {
        font-size: 13px;
        padding: 8px 6px;
    }
}



/* DETAILED ITINERARY */
.detailed-itinerary h2 {
    margin: 40px 0 20px;
    font-size: 26px;
    font-weight: 700;
    color: #1d2869;
}

.day-box {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgb(0 0 0);
    ;
    margin-bottom: 20px;
}

.day-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #000000;
}

.day-box p {
    color: #000000;
}

/* INCLUSION / EXCLUSION */
.inc-exc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.inc-exc h2 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1d2869;
}

.inc-exc ul li {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.inc-exc i {
    color: #1d2869;
    font-size: 18px;
    width: 22px;
}

@media(max-width:768px) {
    .inc-exc {
        grid-template-columns: 1fr;
    }
}

/* RIGHT SECTION FORM */
.booking-box {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    margin-top: -246px;
}

@media(max-width:768px) {
    .booking-box {
        margin-top: -27px;
    }
}

.booking-box h3 {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
    color: #1d2869;
}

.booking-box input,
.booking-box select,
.booking-box textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    font-size: 15px;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: #1d2869;
    color: #fff;
    border-radius: 10px;
    margin-top: 12px;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.btn-submit:hover {
    background-color: #c7a674;
}

/* CTA BOX */
.sidebar-cta {
    background: #ffffff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 4px 20px #9E9E9E;
    margin-top: 25px;
    text-align: left;
}

.sidebar-cta h4 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #000000;
}

.sidebar-cta p {
    font-size: 15px;
    color: #000000;
    margin-bottom: 12px;
}

.cta-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0;
}

.cta-row i {
    font-size: 18px;
    color: #1d2869;
}

.cta-text {
    font-size: 16px;
    color: #1d2869;
    text-decoration: none;
    font-weight: 500;
}

.reach-whatsapp {
    font-size: 14px;
    margin-top: 10px;
    color: #444;
}

.cta-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 15px;
    background: #1d2869;
    color: white;
    text-decoration: none;
    font-size: 16px;
    border-radius: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    transition: 0.3s ease;
    margin-right: 136px;
}

.cta-whatsapp-btn:hover {
    background: #c7a674;
}

.cta-whatsapp-btn i {
    font-size: 20px;
}

.cta-small-text {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

/* Mobile Responsive */
@media(max-width:768px) {
    .sidebar-cta {
        margin-top: 35px;
        padding: 22px;
    }

    .cta-row i {
        font-size: 17px;
    }

}

/* cts */
/* Common CTA Button */
.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 15px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    transition: 0.3s ease;
}

/* Phone Button */
.phone-btn {
    background: #1d2869;
    color: #fff;
    margin-right: 110px;
}

.phone-btn:hover {
    background: #c7a674;
}

/* WhatsApp Button (already done) */
.cta-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 15px;
    background: #1d2869;
    color: white;
    text-decoration: none;
    font-size: 16px;
    border-radius: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    transition: 0.3s ease;
}

.cta-whatsapp-btn:hover {
    background: #c7a674;
}

/* Email Button */
.email-btn {
    background: #1d2869;
    color: #fff;
    margin-right: 108px;
}

.email-btn:hover {
    background: #c7a674;
}

/* Icons size */
.cta-btn i,
.cta-whatsapp-btn i {
    font-size: 18px;
}

/* Mobile */
@media(max-width:768px) {

    .cta-btn,
    .cta-whatsapp-btn {
        font-size: 15px;
    }
}


/* footer links  */
.footer-links a {
    color: #fff;
    /* White or jo color tu chahe */
    text-decoration: none;
    /* Underline hat jayega */
    font-weight: 400;
}

.footer-links a:hover {
    color: #c7a674;
    /* Hover color (optional, premium look) */
}

/* popupformcss */
.tailor-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

/* POPUP BOX */
.tailor-popup {
    background: #ffffff;
    width: 90%;
    max-width: 450px;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    position: relative;
    animation: popupFade 0.35s ease;
}

@keyframes popupFade {
    from {
        transform: translateY(10px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* CLOSE BUTTON */
.tailor-close-btn {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 26px;
    cursor: pointer;
    color: #222;
    transition: 0.3s;
}

.tailor-close-btn:hover {
    color: #e63946;
}

/* HEADING */
.tailor-popup-title {
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
    color: #222;
    font-weight: 600;
}

/* FORM GROUP */
.tailor-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.tailor-form-group label {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.tailor-form-group input {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: border 0.3s ease;
}

.tailor-form-group input:focus {
    border-color: #ff7f27;
}

/* SUBMIT BUTTON */
.tailor-submit-btn {
    width: 100%;
    padding: 12px;
    background: #1d2869;
    border: none;
    color: #fff;
    font-size: 17px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.35s ease;
}

.tailor-submit-btn:hover {
    background: #c7a674;
}

/* RESPONSIVE */
@media (max-width: 480px) {
    .tailor-popup {
        padding: 20px;
        border-radius: 12px;
    }

    .tailor-popup-title {
        font-size: 20px;
    }
}

/* about us css */
.aboutVM_section {
    padding: 20px 0;
    background: #f8f8f8;
}

.aboutVM_container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 0 20px;
}

.aboutVM_box {
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease-in-out;
    position: relative;
}

.aboutVM_box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.aboutVM_iconBox {
    width: 65px;
    height: 65px;
    background: #1d2869;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    margin-bottom: 20px;
    box-shadow: 0 6px 18px rgba(230, 57, 70, 0.3);
}

.aboutVM_iconBox i {
    font-size: 28px;
    color: #fff;
}

.aboutVM_heading {
    font-size: 32px;
    font-weight: 700;
    color: #1d2869;
    margin-bottom: 18px;
    position: relative;
}

/* .aboutVM_heading::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #e63946;
    position: absolute;
    left: 0;
    bottom: -8px;
    border-radius: 2px;
} */

.aboutVM_box p {
    font-size: 16px;
    color: #000000;
    line-height: 1.7;
    margin-top: 10px;
}

/* Responsive */
@media(max-width: 768px) {
    .aboutVM_container {
        grid-template-columns: 1fr;
    }

    .aboutVM_box {
        padding: 28px;
    }

    .aboutVM_heading {
        font-size: 26px;
    }

    .aboutVM_iconBox {
        width: 55px;
        height: 55px;
    }

    .aboutVM_iconBox i {
        font-size: 24px;
    }
}

.aboutVM_titleRow {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.aboutVM_iconBox {
    width: 55px;
    height: 55px;
    background: #1d2869;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(230, 57, 70, 0.3);
}

.aboutVM_iconBox i {
    font-size: 24px;
    color: #fff;
}

.aboutVM_heading {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    color: #1d2869;
    position: relative;
}

/* .aboutVM_heading::after {
    content: "";
    width: 45px;
    height: 3px;
    background: #e63946;
    position: absolute;
    left: 0;
    bottom: -8px;
    border-radius: 2px;
} */

/* Responsive */
@media(max-width: 768px) {
    .aboutVM_titleRow {
        gap: 12px;
    }

    .aboutVM_iconBox {
        width: 50px;
        height: 50px;
    }

    .aboutVM_iconBox i {
        font-size: 22px;
    }

    .aboutVM_heading {
        font-size: 24px;
    }
}


 