/* Mobile Responsive Design */
@media (max-width: 768px) {
    .hero-header {
        height: 30vh !important;
        padding: 10px 5%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .hero-header h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero-header p {
        font-size: 14px;
        height: auto;
        margin-bottom: 5px;
    }

    .header-logo {
        width: 60px; /* Mobile ke liye chhota logo */
    }

    .search-container {
        width: 80% !important;
    }


    .search-bar {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px;
        width: 90%;
        max-width: 500px;
        margin: auto;
    }


    .search-bar input,
    .search-bar select,
    .search-bar button {
        width: 100%;
        padding: 8px;
    }

    .category-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
        padding: 10px;
    }

    .offer-section {
        display: flex;
        flex-direction: column; /* ✅ Ek ke niche ek lane ke liye */
        align-items: center !important;
        justify-content: center;
        gap: 20px; /* ✅ Boxes ke beech gap */
        width: 85%;
        max-width: 100%;
        padding: 10px;
    }

    .offer-box {
        width: 90% !important; /* ✅ Full width le raha hai */
        max-width: 450px; /* ✅ Badiya responsive limit */
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        background: white;
    }

    .offer-box img {
        width: 100%;
        height: auto;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    .offer-content {
        position: relative;
        width: 70%;
        background: rgba(0, 0, 0, 0.6);
        padding: 15px;
        text-align: center;
        color: white;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .offer-content h2 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .offer-content p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .open-popup-btn {
        display: block;
        width: 90%;
        margin: 10px auto;
        padding: 10px;
        background-color: blue;
        color: white;
        border-radius: 5px;
        text-align: center;
        font-size: 16px;
    }



    .footer-container {
        display: flex;
        flex-direction: column-reverse !important;
        align-items: center !important;
        text-align: center !important;
        padding: 15px;
        width: 90%;
        margin-bottom: 120px;
    }
    .fixed-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #003580;
        color: white;
        text-align: center;
        padding: 15px;
        font-size: 16px;
        font-weight: bold;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }
    .footer-section {
        width: 100% !important;
        max-width: 500px;
        text-align: center !important;
        margin-bottom: 10px;
        
    }
    

    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .footer-section p {
        font-size: 14px;
        line-height: 1.4;
        word-wrap: break-word;
    }
    /* ✅ Phone Info Fix */
    .phone-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    }

    .phone-info img {
        width: 50px;
        height: 50px;
        margin-bottom: 5px;
    }
   
    .popup {
        width: 100%;
        height: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .popup-content {
        width: 90%;  /* Adjust width for mobile */
        max-width: 350px;  /* Max limit */
        padding: 20px;
        max-height: none;
    }
    .popup.show .popup-content {
        transform: scale(1);
    }
} 



body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    text-align: center;
}

.hero-header {
    background: #003580;
    color: white;
    text-align: center;
    height: 27vh; /* Header ki height ko 1/4 screen (25% viewport height) set kiya */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding:20px; /* Height aur kam karne ke liye padding adjust ki */
}

.header-logo {
    width: 80px; /* Logo size adjust kar sakte hain */
    height: auto;
    display: block;
    margin: 0 auto 10px; /* Center align */
}

.hero-header h3 {
    font-size: 22px;
    font-weight: bold;
}

.hero-header h1 {
    font-size: 36px;
    font-weight: bold;
    margin: 5px 0;
}

.hero-header p {
    font-size: 16px;
    margin-top: 5px;
}


nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #ffeb3b;
}

.hero {
    background: url('https://source.unsplash.com/1600x900/?tourism,travel') no-repeat center center/cover;
    color: white;
    padding: 120px 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    font-size: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #0056b3;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.card {
    background: white;
    width: 250px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    overflow: hidden;
}

.card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.card h3 {
    color: #333;
    padding: 10px 0;
}

.card .btn {
    width: 80%;
    margin-bottom: 15px;
}

form input, form select, form button {
    display: block;
    width: 80%;
    margin: 15px auto;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 1rem;
}

form button {
    background: #28a745;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

form button:hover {
    background: #218838;
}

footer {
    background: #343a40;
    color: white;
    padding: 15px;
    margin-top: 30px;
    font-size: 0.9rem;
}

.search-container {
    background: #ffcc00; /* Background Color (Change as needed) */
    padding: 20px; /* Space inside container */
    border-radius: 10px; /* Rounded Corners */
    width: 100%; /* Width Adjusted */
    max-width: 900px; /* Maximum width */
    margin: 10px auto; /* Centering */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Shadow Effect */
}

.search-bar {
    display: flex;
    align-items: center;
    flex-wrap: nowrap; /* Responsive handling */
    gap: 10px;
    justify-content: space-between; /* Centering elements */
}

.search-bar input,
.search-bar select,
.search-bar button {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.search-bar input {
    width: 170px;
}

.search-bar select {
    width: 200px;
}

.search-bar button {
    background: #003580;
    color: white;
    cursor: pointer;
    font-weight: bold;
    border: none;
    width: 120px;
}

.search-bar button:hover {
    background: #002766;
}

input[type="date"] {
    font-size: 16px;
    padding: 10px;
    width: 200px;
}



.call-button {
    display: inline-block;
    background: #003580; /* Default Blue Background */
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s, transform 0.1s;
}

.call-button strong {
    font-weight: bold;
}

.call-button:hover {
    background: #0056b3;
}

.call-button:active {
    background: red; /* Red color on touch/click */
    transform: scale(0.95); /* Slightly shrink effect */
}

.call-action-btn {
    background: #003580; /* Dark Blue Background */
    color: white;
    font-size: 13px;
    font-weight: bold;
    
}

.call-action-btn:hover {
    background: #0056b3; /* Hover effect */
}

.call-action-btn:active {
    background: red; /* Touch/click karne par red ho jayega */
    transform: scale(0.95); /* Button halka chhota hoga */
}

.offer-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.offer-box {
    position: relative;
    width: 45%;
    border-radius: 10px;
    overflow: hidden;
}

.offer-box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.offer-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    background: rgba(241, 185, 185, 0.5);
    padding: 15px;
    border-radius: 5px;
}

.offer-content h2 {
    font-size: 20px;
    margin: 0;
}

.offer-content p {
    font-size: 14px;
    margin: 5px 0;
}

.btn {
    display: inline-block;
    padding: 8px 15px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #0056b3;
}

.category-section {
    text-align: center;
    padding: 40px 20px;
}

.category-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.category-box {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.category-box img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.category-box h3 {
    margin: 10px 0;
    font-size: 18px;
}

.btn {
    display: inline-block;
    padding: 10px 15px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #0056b3;
}

.footer {
    background: #003580;
    color: white;
    padding: 30px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.footer-section {
    width: 48%;
    text-align: justify;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: bold;
}

.footer-section hr {
    border: none;
    height: 1px;
    background: gold;
    margin: 10px 0;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
}

.fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #003580;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.fixed-footer p {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px; /* Text ke niche gap */
}

.fixed-footer .contact-info {
    display: flex;
    align-items: center;
}

.fixed-footer img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.fixed-footer a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}


.phone-info {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.phone-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

/* Pop-up Button */
.open-popup-btn {
    background: #007bff;
    color: white;
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.open-popup-btn:hover {
    background: #0056b3;
}

/* Pop-up Modal */
.popup {
    padding: 20px;
    margin-top: -30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    z-index: 999;
}

.popup-content {
    background: white;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    transform: scale(0.8); /* Initially small */
    transition: transform 0.3s ease-in-out;
}

.popup.show {
    opacity: 1;
    visibility: visible;
}

.popup.show .popup-content {
    transform: scale(1); /* Zoom-in effect */
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

/* Typography & Layout */
h2 {
    color: #003580;
    margin-bottom: 10px;
}

.subtext {
    color: #e74c3c;
    font-size: 14px;
}

.phone-number {
    font-size: 24px;
    font-weight: bold;
    color: #003580;
}

.agent-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 10px 0;
}

.note {
    font-size: 12px;
    color: gray;
}

/* Call Button */
.call-btn {
    display: block;
    background: #003580;
    color: white;
    padding: 12px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 10px;
    border: 3px solid #222;
}



/*********** Form Style *******************/

.form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.form-row div {
    display: flex;
    flex-direction: column;
    width: 48%;
}
label {
    font-weight: bold;
    margin-bottom: 5px;
}
input, select {
    padding: 8px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
}
button {
    background-color: green;
    color: white;
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}
button:hover {
    background-color: darkgreen;
}