:root {
    --primary-color: #1d527a;
    --secondary-color: #0d4f80;
    --accent-color: #4caf50;
    --light-color: #e0f2ff;
    --dark-color: #002347;
    --text-color: #333;
    --light-text: #f8f8f8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
header {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 3rem;

}

.logo {
    display: flex;
    align-items: center;
}

.logo2 {
    height: 70px; /* Adjusted size */
}

.brand {
    font-size: 2rem; /* Adjusted size */
    font-weight: bold;
    color: white;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .header-container {
        padding: 1rem;
    }

    .burger {
        display: block;
    }

    .logo2 {
        height: 50px;
    }

    .brand {
        font-size: 1.2rem;
    }

    #navbar {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background-color: var(--primary-color); /* Ensure background matches header */
        overflow: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        height: 0; /* Start collapsed */
    }

    #navbar.active {
        height: auto; /* Expand to show content */
        padding: 1rem 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    #navbar ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding: 0;
        list-style: none;
    }

    #navbar ul li {
        margin: 0.5rem 0;
        width: 100%;
    }

    #navbar a {
        color: var(--light-text); /* White text for visibility */
        font-size: 1.1rem;
        display: block; /* Ensure full width click area */
        padding: 0.5rem 0;
    }

    #navbar a:hover {
        color: var(--light-color);
    }

    #navbar a.active {
        border-bottom: 2px solid var(--light-text);
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .about-content {
        flex-direction: column;
    }

    .review {
        padding: 1.5rem;
    }

    .hero-video {
        width: 90%;
    }
}


/* Hero section */
.hero {
    height: 50vh;
    background-image: linear-gradient(rgba(180, 174, 178, 0.5), rgba(0,0,0,0.5)), url('images/pexels-domenicobertazzo-4769075.jpg');
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.video-container {
    display: flex;
    justify-content: center;
    margin: 3% 0;
}

.hero-video {
    width: 80%;
    max-width: 800px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero4 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3% auto;
    padding: 2rem 0;
    text-align: center;
}

.hero4-content {
    max-width: 600px;
    text-align: center;
}

.hero4 h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #3d8b40;
    transform: translateY(-3px);
}

.btn1 {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 0.8rem 1.9rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn1:hover {
    background-color: #3d8b40;
    transform: translateY(-3px);
}

/* Section styles */
section {
    padding: 5rem 0;
}

section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    font-size: 2.2rem;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

/* About us section */
.about-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Destinations section */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.destination-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 20px rgba(0,0,0,0.2);
}

.destination-image {
    height: 200px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-info {
    padding: 1.5rem;
}

.destination-info h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

/* Reviews section */
.reviews-container {
    max-width: 800px;
    margin: 0 auto;
}

.review {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    flex-shrink: 0;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-stars {
    color: #ffc107;
    margin-top: 0.5rem;
}

/* Footer styles */
footer {
    background-color: var(--dark-color);
    color: var(--light-text);
    padding: 3rem 0 1.5rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #b9b9b9;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.social-links a:hover .social-icon {
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}


/* Destinations Section */
.destinations1 {
    padding: 50px 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.destination1-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: calc(33.333% - 30px);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.destination1-card:hover {
    transform: scale(1.05);
}

.destination1-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.destination1-card .content {
    padding: 20px;
}

.destination1-card h3 {
    margin-bottom: 10px;
    color: #2196F3;
}

.destination1-card p {
    color: #666;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .destination-card {
        width: calc(50% - 30px);
    }
}

@media screen and (max-width: 768px) {
    .destination-card {
        width: 100%;
    }
}

#travel-guide {
    padding: 3rem 0;
    text-align: center;
}

#travel-guide h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.pdf-container {
    margin-top: 2rem;
}

.btn3 {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn3:hover {
    background-color: #3d8b40;
    transform: translateY(-3px);
}

/* Past Tours Section */
#past-tours {
    padding: 5rem 0;
    background-color: var(--light-color);
}

#past-tours h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    font-size: 2.2rem;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.tour-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 20px rgba(0,0,0,0.2);
}

.tour-image {
    height: 270px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-info {
    padding: 1.5rem;
    text-align: center;
}

.tour-info h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

/* Past Tour Reviews Section */
#past-tour-reviews {
    padding: 5rem 0;
}

#past-tour-reviews h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    font-size: 2.2rem;
}

/* Existing review styles are reused, no additional changes needed unless customization is desired */

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .tours-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .tour-image {
        height: 180px;
    }
}

@media screen and (max-width: 480px) {
    .tours-grid {
        grid-template-columns: 1fr;
    }

    .tour-image {
        height: 150px;
    }

    #past-tours h2, #past-tour-reviews h2 {
        font-size: 1.5rem;
    }
}

/* Contact Page Section */
#contact-page {
    padding: 5rem 0;
    background-color: var(--light-color);
}

#contact-page h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    font-size: 2.2rem;
}

.contact-content {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-details h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.contact-details ul {
    list-style: none;
    margin-bottom: 2rem;
}

.contact-details ul li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-details ul li a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-details ul li a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-form h3 {
    color: var (--secondary-color);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block/* filepath: d:\app deveop\style.css */
}
:root {
    --primary-color: #1d527a;
    --secondary-color: #0d4f80;
    --accent-color: #4caf50;
    --light-color: #e0f2ff;
    --dark-color: #002347;
    --text-color: #333;
    --light-text: #f8f8f8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
header {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo2 {
    height: 70px; /* Adjusted size */
}

.brand {
    font-size: 2rem; /* Adjusted size */
    font-weight: bold;
    color: white;
    text-decoration: none;
}

/* Navigation styles */
nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

nav a:hover {
    color: var(--light-color);
}

nav a.active {
    border-bottom: 2px solid rgb(255, 244, 244);
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero section */
.hero {
    height: 50vh;
    background-image: linear-gradient(rgba(180, 174, 178, 0.5), rgba(0,0,0,0.5)), url('images/pexels-domenicobertazzo-4769075.jpg');
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.video-container {
    display: flex;
    justify-content: center;
    margin: 3% 0;
}

.hero-video {
    width: 80%;
    max-width: 800px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero4 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3% auto;
    padding: 2rem 0;
    text-align: center;
}

.hero4-content {
    max-width: 600px;
    text-align: center;
}

.hero4 h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #3d8b40;
    transform: translateY(-3px);
}

.btn1 {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 0.8rem 1.9rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn1:hover {
    background-color: #3d8b40;
    transform: translateY(-3px);
}

/* Section styles */
section {
    padding: 5rem 0;
}

section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    font-size: 2.2rem;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

/* About us section */
.about-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Destinations section */
.destinations-container {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.destination-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    background-color: #fff;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 20px rgba(0,0,0,0.2);
}

.destination-image {
    height: 200px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-info {
    padding: 1.5rem;
}

.destination-info h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

/* Media queries for mobile responsiveness */
@media screen and (max-width: 768px) {
    .destinations-container {
        padding: 1rem;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .destination-image {
        height: 180px;
    }
    
    .destination-info {
        padding: 1rem;
    }
    
    .destination-info h3 {
        font-size: 1.2rem;
    }
    
    .destination-info p {
        font-size: 0.9rem;
    }
}

.map1 {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(51, 176, 248, 0.1);
    width: 30%;
    height: auto;
    display: block;
    margin: 0 auto; /* Center align the map */
    gap: 2rem;

}

.map-container {
    margin: 2rem 0;
}

/* Reviews section */
.reviews-container {
    max-width: 800px;
    margin: 0 auto;
}

.review {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    flex-shrink: 0;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-stars {
    color: #ffc107;
    margin-top: 0.5rem;
}

/* Footer styles */
footer {
    background-color: var(--dark-color);
    color: var(--light-text);
    padding: 3rem 0 1.5rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #b9b9b9;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.social-links a:hover .social-icon {
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive styles */
@media screen and (max-width: 1024px) {
    .brand {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    header {
        padding: 1rem 0;
    }
    
    .burger {
        display: block;
    }
    
    .logo2 {
        height: 50px;
    }
    
    .brand {
        font-size: 1.2rem;
    }
    
    nav {
        position: absolute;
        right: 0;
        top: 70px;
        background-color: var(--primary-color);
        width: 100%;
        clip-path: circle(0px at 90% -10%);
        transition: all 0.5s ease-out;
        pointer-events: none;
        padding: 0;
    }
    
    nav.active {
        clip-path: circle(1500px at 90% -10%);
        pointer-events: all;
    }
    
    nav ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding: 2rem 0;
    }
    
    nav ul li {
        margin: 1rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .review {
        padding: 1.5rem;
    }
    
    .hero-video {
        width: 90%;
    }
}

@media screen and (max-width: 480px) {
    .logo2 {
        height: 40px;
    }
    
    .brand {
        font-size: 1rem;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .review-avatar {
        width: 45px;
        height: 45px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .destination-image {
        height: 150px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}


/* Destinations Section */
.destinations1 {
    padding: 50px 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.destination1-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: calc(33.333% - 30px);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.destination1-card:hover {
    transform: scale(1.05);
}

.destination1-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.destination1-card .content {
    padding: 20px;
}

.destination1-card h3 {
    margin-bottom: 10px;
    color: #2196F3;
}

.destination1-card p {
    color: #666;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .destination-card {
        width: calc(50% - 30px);
    }
}

@media screen and (max-width: 768px) {
    .destination-card {
        width: 100%;
    }
}

#travel-guide {
    padding: 3rem 0;
    text-align: center;
}

#travel-guide h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.pdf-container {
    margin-top: 2rem;
}

.btn3 {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn3:hover {
    background-color: #3d8b40;
    transform: translateY(-3px);
}

/* Past Tours Section */
#past-tours {
    padding: 5rem 0;
    background-color: var(--light-color);
}

#past-tours h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    font-size: 2.2rem;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.tour-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 20px rgba(0,0,0,0.2);
}

.tour-image {
    height: 270px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-info {
    padding: 1.5rem;
    text-align: center;
}

.tour-info h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

/* Past Tour Reviews Section */
#past-tour-reviews {
    padding: 5rem 0;
}

#past-tour-reviews h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    font-size: 2.2rem;
}

/* Existing review styles are reused, no additional changes needed unless customization is desired */

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .tours-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .tour-image {
        height: 180px;
    }
}

@media screen and (max-width: 480px) {
    .tours-grid {
        grid-template-columns: 1fr;
    }

    .tour-image {
        height: 150px;
    }

    #past-tours h2, #past-tour-reviews h2 {
        font-size: 1.5rem;
    }
}

/* Contact Page Section */
#contact-page {
    padding: 5rem 0;
    background-color: var(--light-color);
}

#contact-page h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    font-size: 2.2rem;
}

.contact-content {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-details h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.contact-details ul {
    list-style: none;
    margin-bottom: 2rem;
}

.contact-details ul li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-details ul li a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-details ul li a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-form h3 {
    color: var (--secondary-color);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}



.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #3d8b40;
    transform: translateY(-3px);
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-details, .contact-form {
        min-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    #contact-page h2 {
        font-size: 1.5rem;
    }

    .contact-details h3, .contact-form h3 {
        font-size: 1.2rem;
    }
}


/* Smooth Transition Styles */
.fade-in-init {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

/* Responsive Back to Top Button */
@media screen and (max-width: 480px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 20px;
        right: 10px;
        bottom: 10px;
    }
}



/*tour package

/* Tour Packages Styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    margin: auto;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin: 30px 0;
    color: #333;
    font-size: 2.5rem;
}

.tour-packages {
    padding: 20px 0;
}

.tour-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.tour-category {
    width: 300px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.tour-category img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-category:hover img {
    transform: scale(1.05);
}

.tour-category-content {
    padding: 20px;
    text-align: center;
}

.tour-category-content h2 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.tour-category-content p {
    color: #7f8c8d;
    margin-bottom: 20px;
    font-size: 1rem;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background-color: #2980b9;
    transform: scale(1.05);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .tour-categories {
        flex-direction: column;
        align-items: center;
    }

    .tour-category {
        width: 90%;
        max-width: 400px;
    }
}

/* Additional styles for header and other elements can be added here */


/* Global Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Tour Packages Section */
.tour-packages {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
    font-size: 2.5rem;
}

.tour-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.tour-category {
    width: calc(33.333% - 20px);
    min-width: 250px;
    max-width: 350px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.tour-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.15);
}

.tour-category img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.tour-category-content {
    padding: 20px;
    text-align: center;
}

.tour-category-content h2 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.tour-category-content p {
    color: #7f8c8d;
}

/* Tour Details */
.tour-details {
    display: none;
    background-color: #f9f9f9;
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
}

.tour-details.active {
    display: block;
}

.tour-details h3 {
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.tour-itinerary {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.tour-day {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: 100%;
}
/* Route Maps Section Styles */
.route-maps-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.route-maps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.route-map-box {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.route-map-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.route-map-box h3 {
    background-color: #2c3e50;
    color: white;
    margin: 0;
    padding: 15px;
    text-align: center;
    font-size: 1.2rem;
}

.route-map-image {
    height: 600px;
    overflow: hidden;
}

.route-map-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.route-map-box:hover .route-map-image img {
    transform: scale(1.05);
}

.route-map-box p {
    padding: 15px;
    margin: 0;
    text-align: center;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Responsive design */
@media (max-width: 768px) {
    .route-maps-container {
        flex-direction: column;
        align-items: center;
    }
    
    .route-map-box {
        width: 100%;
        max-width: 450px;
    }
}
/* Custom Itinerary Section */
.custom-itinerary-section {
    background-color: #f4f4f4;
    padding: 50px 15px;
}

.custom-itinerary-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.custom-itinerary-content h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 2rem;
}

.custom-itinerary-content p {
    color: #7f8c8d;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.custom-itinerary-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.custom-itinerary-content ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.custom-itinerary-content ul li {
    color: #7f8c8d;
    padding: 5px 10px;
    background-color: #f4f4f4;
    border-radius: 5px;
}

.custom-itinerary-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.custom-itinerary-btn:hover {
    background-color: #2980b9;
    transform: scale(1.05);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .tour-category {
        width: calc(50% - 20px);
    }

    .custom-itinerary-content {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 768px) {
    .tour-category {
        width: 100%;
        max-width: 450px;
    }

    .section-title {
        font-size: 2rem;
    }

    .custom-itinerary-content {
        padding: 20px 15px;
    }

    .custom-itinerary-content h2 {
        font-size: 1.5rem;
    }

    .custom-itinerary-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .tour-category {
        min-width: 100%;
    }

    .custom-itinerary-content ul {
        flex-direction: column;
        align-items: center;
    }

    .custom-itinerary-content ul li {
        text-align: center;
        width: 100%;
    }
}


.special{
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 70%;
    gap: 2rem;
    margin: 0 auto; /* Center align the map */
    margin-top: 2rem;
}


/* CSS - Add this to your style.css file */
.pdf-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.download-btn {
    position: relative;
    padding: 12px 24px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.download-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.download-icon {
    margin-right: 8px;
}

.download-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.download-btn:hover:before {
    left: 100%;
}

.click-here {
    margin-top: 10px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #555;
    animation: bounce 2s infinite;
}

.arrow-down {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    animation: pulse 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}


