* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
}

img{
    width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: #fff;
    padding: 0.4rem 0;
}

.header-top-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: space-between;
}

.logo-left img {
    height: 100px;
}

.logo-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.logo-center img {
    height: 80px;
    width: auto;
}

.logo-right img {
    height: 80px;
    width: auto;
}

.header-nav {
    background: #f7931e;
}

.header-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-register-btn {
    display: none;
}

.mobile-menu-close {
    display: none;
    position: fixed;
    top: 1rem;
    right: -100%;
    background: #f7931e;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: right 0.3s;
}

.mobile-menu-close.active {
    right: 1rem;
}

.mobile-register {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin-bottom: 0px;
}

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
    text-transform: uppercase;
}

.nav-menu a:hover {
    color: #0133cd;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    list-style: none;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    margin-top: 1rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0.5rem;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    color: #000000;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
}

.btn-register {
    background: #0133cd;
    color: #fff;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background 0.3s;
}

.btn-register:hover {
    background: #fff;
    color: #0133cd;
}

/* Hero Section */

.hero33{
    padding: 0px;
}

.hero {
    background: linear-gradient(135deg, rgba(1, 51, 205, 0.9) 0%, rgba(10, 95, 239, 0.9) 100%), url('../images/logo.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    padding: 8rem 0;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/logo.png') center/contain no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn-primary {
    background: #fff;
    color: #0133cd;
    padding: 1rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

/* Sections */
section {
    padding: 3rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #0133cd;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.section-header h2 .highlight {
    color: #f7931e;
}

.section-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
}

/* About Section */
.about-section {
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: bold;
}

.about-text p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

.btn-secondary {
    background: #0133cd;
    color: #fff;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #012ba8;
}

.about-image {
    text-align: center;
    font-size: 15rem;
    color: #0133cd;
    opacity: 0.1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
    border-top: 4px solid transparent;
}

.service-card:nth-child(1) {
    background: #fff5e6;
    border-top-color: #f7931e;
}

.service-card:nth-child(2) {
    background: #e6f0ff;
    border-top-color: #0133cd;
}

.service-card:nth-child(3) {
    background: #e6f7e6;
    border-top-color: #138808;
}

.service-card:nth-child(4) {
    background: #fff5e6;
    border-top-color: #f7931e;
}

.service-card:nth-child(5) {
    background: #e6f0ff;
    border-top-color: #0133cd;
}

.service-card:nth-child(6) {
    background: #e6f7e6;
    border-top-color: #138808;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card:nth-child(1) .service-icon {
    color: #f7931e;
}

.service-card:nth-child(2) .service-icon {
    color: #0133cd;
}

.service-card:nth-child(3) .service-icon {
    color: #138808;
}

.service-card:nth-child(4) .service-icon {
    color: #f7931e;
}

.service-card:nth-child(5) .service-icon {
    color: #0133cd;
}

.service-card:nth-child(6) .service-icon {
    color: #138808;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card p {
    color: #555;
    line-height: 1.6;
}

/* Explore Mumbai Section */
.explore-section {
    background: #f1f1f1;
    position: relative;
}

.explore-section .owl-carousel {
    position: relative;
    padding: 0 60px;
}

.owl-carousel .place-card {
    margin: 10px;
}

.place-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    background: #fff;
}

.place-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.place-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.place-card h3 {
    padding: 1rem 0;
    text-align: center;
    color: #2c3e50;
    font-size: 1rem;
    background: #fff;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #0133cd !important;
    color: #fff !important;
    border-radius: 50%;
    font-size: 24px !important;
    line-height: 50px !important;
    transition: all 0.3s;
    border: none;
    outline: none;
}

.owl-carousel .owl-nav button.owl-prev {
    left: 0;
}

.owl-carousel .owl-nav button.owl-next {
    right: 0;
}

.owl-carousel .owl-nav button:hover {
    background: #012ba8 !important;
    transform: translateY(-50%) scale(1.1);
}

.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.owl-carousel button.owl-dot {
    width: 12px;
    height: 12px;
    background: #ddd !important;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s;
    border: none;
    outline: none;
}

.owl-carousel button.owl-dot.active {
    background: #0133cd !important;
    width: 30px;
    border-radius: 10px;
}

/* Contact Section */
.contact-section {
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0133cd;
}

.contact-info-box {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-item i {
    font-size: 2rem;
    color: #0133cd;
}

.info-item h4 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.info-item p {
    color: #7f8c8d;
}

.captach-sec{
    display:flex; align-items:center; gap:10px;
}

/* Footer */
.footer {
    background: #0d4008;
    color: #fff;
    padding: 3rem 0 1rem;
    border-top: 4px solid #f7931e;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-col p {
    color: #bdc3c7;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    padding-left: 0px;
    margin-left: 0px;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #f7931e;
}

.contact-info li {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    color: #bdc3c7;
}

.contact-info i {
    color: #f7931e;
    margin-top: 0.2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #34495e;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #f7931e;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}

/* Register Page */
.register-section {
    background: #f8f9fa;
    min-height: 100vh;
}

.register-form-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.register-form {
    background: #fff;
    padding: 1rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 5px solid #0133cd;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.required {
    color: #e74c3c;
    font-weight: 700;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="file"],
.form-group select {
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #0133cd;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(1, 51, 205, 0.1);
}

#registrationStep .select2-hidden-accessible{
    padding: 0.9rem !important;
}

#registrationStep .select2-container .select2-selection--single {
    height: 52px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
}

#registrationStep .select2-container .select2-selection--single .select2-selection__rendered{
    padding-left: 15px;
}

#registrationStep .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 52px;
}

#registrationStep .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 52px;
}

.form-group input[type="file"] {
    padding: 0.7rem;
    cursor: pointer;
}

.form-section-title {
    font-size: 1.4rem;
    color: #0133cd;
    font-weight: 700;
    margin: 2.5rem 0 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #e6f0ff 0%, #fff5e6 100%);
    border-left: 5px solid #f7931e;
    border-radius: 5px;
}

.radio-group,
.checkbox-group {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.radio-group label,
.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background 0.3s;
}

.radio-group label:hover,
.checkbox-group label:hover {
    background: #f0f0f0;
}

.radio-group input[type="radio"],
.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #0133cd;
}

.form-submit {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
}

.form-submit .btn-primary {
    padding: 1.2rem 5rem;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(1, 51, 205, 0.3);
    transition: all 0.3s;
}

.form-submit .btn-primary:hover {
    box-shadow: 0 8px 20px rgba(1, 51, 205, 0.4);
}

.form-note {
    background: #fff5e6;
    padding: 1rem;
    border-left: 4px solid #f7931e;
    border-radius: 5px;
    margin-bottom: 2rem;
    color: #555;
    font-size: 0.9rem;
}

/* Sightseeing Page */
.sightseeing-section {
    background: #fff;
}

.sightseeing-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.sight-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.sight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.sight-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.sight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sight-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sight-content h3 {
    font-size: 1.6rem;
    color: #0133cd;
    margin-bottom: 1rem;
    font-weight: 600;
}

.sight-content p {
    color: #555;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Hotel Booking Page */
.hotel-section {
    background: #f8f9fa;
}

.hotel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.hotel-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.hotel-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hotel-content {
    padding: 2rem;
}

.hotel-content h3 {
    font-size: 1.8rem;
    color: #0133cd;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.hotel-price {
    font-size: 1.3rem;
    color: #f7931e;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hotel-rating {
    margin-bottom: 0rem;
}

.hotel-rating i {
    color: #f7931e;
    font-size: 1rem;
}

.hotel-location {
    color: #555;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.hotel-location i {
    color: #0133cd;
    margin-right: 0.5rem;
}

.hotel-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.hotel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hotel-features span {
    background: #e6f0ff;
    color: #0133cd;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.hotel-features span i {
    margin-right: 0.3rem;
}

.btn-book {
    display: block;
    background: #f7931e;
    color: #fff;
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-book:hover {
    background: #e67e0a;
}

/* Hotel Details Modal */
.hotel-modal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 500px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 20px rgba(0,0,0,0.3);
    z-index: 10000;
    overflow-y: auto;
    transition: right 0.4s;
}

.hotel-modal.active {
    right: 0;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: none;
}

.modal-overlay.active {
    display: block;
}

.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.booking-form .form-group {
    display: flex;
    flex-direction: column;
}

.booking-form .form-group.full-width {
    grid-column: 1 / -1;
}

.booking-form label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.booking-form input,
.booking-form select {
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
}

.booking-form input:focus,
.booking-form select:focus {
    outline: none;
    border-color: #0133cd;
}

.modal-header {
    background: linear-gradient(135deg, #0133cd, #0a5fef);
    color: #fff;
    padding: 2rem;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.modal-body {
    padding: 2rem;
}

.detail-section {
    margin-bottom: 2rem;
}

.detail-section h3 {
    color: #0133cd;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    border-bottom: 2px solid #f7931e;
    padding-bottom: 0.5rem;
}

.detail-item {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.6;
}

.detail-item i {
    color: #0133cd;
    margin-top: 0.2rem;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.pricing-table th,
.pricing-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #ddd;
}

.pricing-table th {
    background: #0133cd;
    color: #fff;
    font-weight: 600;
}

.pricing-table tr:nth-child(even) {
    background: #f8f9fa;
}

.pricing-table td {
    color: #555;
}

.price-highlight {
    color: #0133cd;
    font-weight: 600;
    font-size: 1.1rem;
}

.policy-note {
    background: #fff5e6;
    padding: 1rem;
    border-left: 4px solid #f7931e;
    border-radius: 5px;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #555;
}

.terms-list {
    list-style: none;
    padding: 0;
}

.terms-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.terms-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #138808;
    font-weight: 700;
} color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #f7931e;
}

.contact-info li {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    color: #bdc3c7;
}

.contact-info i {
    color: #f7931e;
    margin-top: 0.2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #34495e;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #f7931e;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .header-top-content {
        gap: 1rem;
    }

    .logo-left img,
    .logo-right img {
        height: 60px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-register-btn {
        display: block;
    }

    .mobile-menu-close {
        display: block;
    }

    .desktop-register {
        display: none;
    }

    .mobile-register {
        display: block;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255,255,255,0.2);
    }

    .mobile-register .btn-register {
        display: block;
        text-align: center;
        color: #ffffff;
        padding: 15px 18px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 4rem 2rem 2rem;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        transition: right 0.3s;
        z-index: 9999;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        color: #2c3e50;
        padding: 1rem 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu a:hover {
        color: #0133cd;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        margin-top: 0;
        padding-left: 1rem;
    }

    .dropdown-menu a {
        padding: 0.5rem 0;
    }

    .header-nav-content {
        flex-direction: row;
        justify-content: flex-end;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .about-content,
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .sightseeing-grid {
        grid-template-columns: 1fr;
    }

    .sight-card {
        grid-template-columns: 1fr;
    }

    .sight-image {
        height: 200px;
    }

    .hotel-grid {
        grid-template-columns: 1fr;
    }

    .hotel-modal {
        width: 100%;
        right: -100%;
    }

    .hotel-modal.active {
        right: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .explore-section .owl-carousel {
        padding: 0 40px;
    }

    .owl-carousel .owl-nav button.owl-prev,
    .owl-carousel .owl-nav button.owl-next {
        width: 35px;
        height: 35px;
        font-size: 18px !important;
    }
}

/* News and Events Sections */
.news-section, .events-section {
    background: #fff;
    position: relative;
}

.news-section .section-header, .events-section .section-header {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    text-align: left;
}

.news-section:nth-of-type(even) {
    background: #f8f9fa;
}

.news-carousel, .events-carousel {
    padding: 0 60px;
}

.news-card, .event-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    overflow: hidden;
    margin: 10px;
}

.news-card:hover, .event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.news-card img, .event-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.news-date, .event-date {
    color: #0133cd;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.news-card h3, .event-card h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.news-card p, .event-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.btn-read {
    display: inline-block;
    background: #f7931e;
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.btn-read:hover {
    background: #e67e0a;
}

/* Breadcrumb Section */
.breadcrumb-section {
    background: linear-gradient(135deg, rgba(1, 51, 205, 0.9) 0%, rgba(10, 95, 239, 0.9) 100%), url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1200');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    position: relative;
}

.breadcrumb-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(1, 51, 205, 0.7);
    z-index: 0;
}

.breadcrumb-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breadcrumb-content h1 {
    font-size: 1.5rem;
    margin-bottom: 0rem;
    font-weight: 700;
}

.breadcrumb-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.breadcrumb-nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-nav a:hover {
    color: #f7931e;
}

.breadcrumb-nav i {
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .breadcrumb-content h1 {
        font-size: 1rem;
        text-align: left;
    }
    .section-header h2{
        font-size: 1.5rem;
    }
    .logo-center img{
        height: 60px;
    }
   .form-submit .btn-primary {
        padding: 12px;
        font-size: 1rem;
    }
}

/* Active Navigation */
.nav-menu a.active {
    color: #0133cd;
    font-weight: 700;
}
