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

body {
    font-family: 'Oxygen', sans-serif;
    line-height: 1.6;
}

header {
  
  
    color: white;
    text-align: center;
}
/* About Us Section */
.about-section {
    padding: 4rem 1rem;
    background: #f9f9f9;
    font-family: 'Oxygen', sans-serif;
}

.about-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-section .about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    animation: fadeInUp 2s ease-in-out;
}

.about-section .text-content {
    flex: 1;
    margin-right: 2rem;
}

.about-section .image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 2s ease-in-out;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
}

.about-section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.services-list {
    list-style: none;
    padding: 0;
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}

.services-list li {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.services-list li i {
    margin-right: 1rem;
    color: #007BFF; /* Change the color to match your design */
}

@media (max-width: 768px) {
    .about-section .about-content {
        flex-direction: column;
    }

    .about-section .text-content {
        margin-right: 0;
    }

    .about-section h2 {
        font-size: 2rem;
    }

    .about-section p {
        font-size: 1rem;
    }

    .services-list {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Add this at the end of your existing CSS */

.bubble-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 0; /* Ensure bubbles are behind the text */
}

.bubble {
    position: absolute;
    bottom: -100px;
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 0, 0.5);
    border-radius: 50%;
    animation: rise 10s infinite ease-in-out;
    opacity: 0;
}

.bubble:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.bubble:nth-child(2) {
    left: 40%;
    animation-delay: 2s;
    animation-duration: 8s;
}

.bubble:nth-child(3) {
    left: 60%;
    animation-delay: 4s;
    animation-duration: 10s;
}

.bubble:nth-child(4) {
    left: 80%;
    animation-delay: 6s;
    animation-duration: 14s;
}

.bubble:nth-child(5) {
    left: 50%;
    animation-delay: 1s;
    animation-duration: 9s;
}

@keyframes rise {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translateY(-1000px) scale(1);
        opacity: 0;
    }
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    width: 100%;
   /* Adjusted to account for the top bar */
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.menu-icon {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: white;
}

#menu-toggle {
    display: none;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #f0a500;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
}
p{
    text-align: justify;
}

.hero-heading {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: fadeIn 2s ease-in-out;
    font-family: 'Oxygen', sans-serif;
}
.hero-subcontent {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    max-width: 75%;
    animation: fadeIn 3s ease-in-out;
    font-family: 'Oxygen', sans-serif;
}

.book-now-btn {
    display: inline-block;
    font-family: 'Oxygen', sans-serif;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    color: white;
    background-color: #f0a500;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.book-now-btn:hover {
    background-color: #e59400;
    transform: scale(1.05);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.popular-destinations {
    text-align: center;
    padding: 2rem;
    background: #f9f9f9;
    font-family: 'Oxygen', sans-serif;  

}

.popular-destinations h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;

}

.destinations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.destination-card {
    background: white;
    margin: 1rem;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1 1 200px;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.destination-card img {
    width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.destination-card h3 {
    margin: 0.5rem 0;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.destination-card:hover img {
    transform: scale(1.1);
}
.more-destinations-btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    background-color: #e59400;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.more-destinations-btn:hover {
    background-color: #003399;
}


/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropbtn {
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #575757;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Travel Packages with Background and Gradient */
.travel-packages {
    font-family: 'Oxygen', sans-serif;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(to right, #11998e, #38ef7d); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */    color: white;
}

.travel-packages h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-family: 'Oxygen', sans-serif;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes backgroundMove {
    0% { background-position: 0 0; }
    100% { background-position: 100% 100%; }
}
.packages-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.package-card {
    background: rgba(255, 255, 255, 0.9);
    margin: 1rem;
    padding: 1rem;
    flex: 1 1 200px;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    color: black;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: var(--animation-delay);
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;

    
   
}

.package-card img {
    width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.package-card h3 {
    margin: 0.5rem 0;
}

.package-card:hover {
    transform: translateY(-10px);
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  
}

.package-card:hover img {
    transform: scale(1.1);
}
/* Specific delay for each package card */
#package1 {
    --animation-delay: 0s;
}
#package2 {
    --animation-delay: 0.2s;
}
#package3 {
    --animation-delay: 0.4s;
}
.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 128, 0, 0.4), rgba(0, 128, 0, 0.2));
    z-index: -1;
    transition: opacity 0.3s ease-in-out;
    animation: backgroundMove 5s linear infinite;
    background-size: 200% 200%;
    opacity: 0;
    border-radius: 15px;
}
.package-card:hover::before {
    opacity: 1;
}
.card-content img {
    width: 100%;
    border-radius: 15px;
    transition: transform 0.3s ease-in-out;
}

.card-content h3 {
    margin: 0.5rem 0;
    font-size: 1.5rem;
}

.card-content .book-now-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    color: white;
    background-color: #f0a500;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.card-content .book-now-btn:hover {
    background-color: #e59400;
    transform: scale(1.05);
}

/* Horizontal image section styles */
.travel-images {
    text-align: center;
    padding: 3rem 1rem;
    background: #f3f3f3;
}

.travel-images h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.travel-images p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.horizontal-images-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem;
}
.image-grid {
    
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.image-card:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 128, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
}

.image-card:hover .image-overlay {
    opacity: 1;
}

.image-overlay h3 {
    color: white;
    font-size: 1.5rem;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease-in-out;
}

.image-card:hover .image-overlay h3 {
    transform: translateY(0);
}
/* Footer styles */
.site-footer {
    background: linear-gradient(to right, #000000, #0c0c0c);
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
    font-family: 'Oxygen', sans-serif;  /* Add this line */
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin: 1rem;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-column p, .footer-column ul {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

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

.footer-column ul li a:hover {
    color: #1abc9c;
}

.social-links a {
    margin: 0 0.5rem;
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #1abc9c;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.newsletter-form input[type="email"] {
    padding: 0.5rem;
    border: none;
    border-radius: 5px;
    margin-bottom: 0.5rem;
    width: 80%;
    max-width: 300px;
}

.newsletter-form button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    background: #1abc9c;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #16a085;
}

.footer-bottom {
    margin-top: 2rem;
    border-top: 1px solid #444;
    padding-top: 1rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 1rem;
}
/* Banner Section */

.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
    background: url('tp.jpg') no-repeat center center/cover;
    position: relative;
}

.banner-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.banner-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}


.banner p {
    font-size: 1.2rem;
}

/* Content Section */
.content {
    display: flex;
    flex-wrap: wrap;
    padding: 40px;
}

.content-text {
    flex: 1;
    padding: 20px;
    font-size: 1.1rem;
}

.content-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.content-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.destination-section {
    padding: 4rem 1rem;
    background: #f9f9f9;
}

.destination-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.destination-content .image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.destination-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.destination-content .text-content {
    flex: 1;
    margin-left: 2rem;
}

.destination-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.destination-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.destination-content a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.destination-content a:hover {
    text-decoration: underline;
}




/* Responsive Design */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        display: none;
        width: 100%;
        background: rgba(0, 0, 0, 0.8);
        position: absolute;
        top: 60px; /* height of the nav bar */
        left: 0;
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links li a {
        padding: 1rem;
        display: block;
    }

    #menu-toggle:checked + .menu-icon + .nav-links {
        display: flex;
    }

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

    .dropdown-content {
        position: static;
    }

    .dropdown:hover .dropdown-content {
        display: none;
    }

    .dropdown .dropbtn::after {
        content: '\25BC';
        font-size: 0.6em;
        margin-left: 0.5em;
    }

    .dropdown-content {
        display: none;
    }

    .dropdown .dropbtn:focus + .dropdown-content {
        display: block;
    }
    .image-card {
        width: 90%;
        margin-bottom: 1rem;
    }
    .details-container {
        flex-direction: column;
    }

    .details-image, .details-text {
        max-width: 100%;
    }
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        margin: 1rem 0;
    }
    .destination-content {
        flex-direction: column;
    }

    .destination-content .text-content {
        margin-left: 0;
        margin-top: 2rem;
    }
}
/* Vision and Mission Section */
.vision-mission-section {
    padding: 4rem 1rem;
    background: #fff;
    font-family: 'Oxygen', sans-serif;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.vision-mission-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.vision-mission-section .vision-mission-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    animation: fadeInUp 2s ease-in-out;
}

.vision-mission-section .text-content {
    flex: 1;
    margin-right: 2rem;
    margin-bottom: 2rem;
}

.vision-mission-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.vision-mission-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .vision-mission-section .vision-mission-content {
        flex-direction: column;
    }

    .vision-mission-section .text-content {
        margin-right: 0;
    }

    .vision-mission-section h2 {
        font-size: 2rem;
    }

    .vision-mission-section p {
        font-size: 1rem;
    }
}
/* WhatsApp Inquiry Section */
.whatsapp-inquiry {
    background: #25d366; /* WhatsApp Green */
    color: white;
    padding: 2rem 1rem;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.whatsapp-inquiry .container {
    max-width: 800px;
    margin: 0 auto;
}

.whatsapp-inquiry h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    animation: fadeInDown 1.5s ease-in-out;
}

.whatsapp-inquiry p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1.5s ease-in-out;
}

.whatsapp-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1.2rem;
    color: #25d366;
    background-color: white;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
    font-weight: bold;
    animation: fadeInUp 2s ease-in-out;
}

.whatsapp-btn:hover {
    background-color: #e0f2e9;
    transform: translateY(-5px);
}

.whatsapp-btn i {
    margin-right: 0.5rem;
    font-size: 1.5rem;
    vertical-align: middle;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .whatsapp-inquiry h2 {
        font-size: 2rem;
    }

    .whatsapp-inquiry p {
        font-size: 1rem;
    }

    .whatsapp-btn {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
}
/* WhatsApp Chat Icon */
.whatsapp-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    font-size: 30px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
}

.whatsapp-popup {
    display: none;
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: fadeInUp 0.5s ease;
}

.whatsapp-header {
    background-color: #25d366;
    color: white;
    padding: 10px;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-popup {
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
}

.whatsapp-body {
    padding: 15px;
    font-size: 1rem;
    color: #333;
}

.start-chat {
    display: inline-block;
    padding: 10px 15px;
    background-color: #25d366;
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.start-chat:hover {
    background-color: #1ebe57;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Gallery Section */
.gallery-section {
    padding: 50px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 10px;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: #e67e22;
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #777;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-grid a {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-grid a:hover {
    transform: scale(1.05);
}

.gallery-grid img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.gallery-grid a:hover img {
    opacity: 0.8;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.container {
    width: 90%;
    margin: 0 auto;
    padding: 20px 0;
}
main {
    padding: 2rem 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.contact-info .contact-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
    width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease-in-out;
}

.contact-info .contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.contact-info .contact-card i {
    font-size: 2rem;
    background-color: white;
    margin-bottom: 1rem;
}

.contact-info .contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-info .contact-card p {
    font-size: 1rem;
    color: #555;
}

.contact-info .contact-card p a {
    color: #007BFF;
    text-decoration: none;
}

.contact-info .contact-card p a:hover {
    text-decoration: underline;
}

.map {
    margin-top: 2rem;
    padding: 2rem 1rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.map h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}
/* Main Content Styles */
.main {
    flex: 1;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.intro {
    text-align: center;
    margin-bottom: 40px;
}

.intro h1 {
    font-size: 2.5rem;
    color: #36383a;
}

.intro p {
    font-size: 1.2rem;
    color: #6c757d;
    margin-top: 10px;
}

.trekking-spots {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trekking-spot {
    display: flex;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.trekking-spot img {
    width: 250px;
    height: auto;
    border-radius: 8px;
    margin-right: 20px;
}

.trekking-spot .content {
    max-width: 800px;
}

.trekking-spot:hover {
    transform: translateY(-5px);
}

.trekking-spot h2 {
    margin-top: 0;
    color: #414242;
    font-size: 1.5rem;
}

.trekking-spot p {
    color: #6c757d;
}

/* Mobile View Styles */
@media (max-width: 768px) {
  

   
    .intro h1 {
        font-size: 2rem;
    }

    .intro p {
        font-size: 1rem;
    }

    .trekking-spot {
        flex-direction: column;
        align-items: center;
    }

    .trekking-spot img {
        width: 100%;
        max-width: 400px;
        margin: 0 0 20px 0;
    }

    .trekking-spot .content {
        text-align: center;
    }

    .trekking-spot h2 {
        font-size: 1.2rem;
    }

    .trekking-spot p {
        font-size: 1rem;
    }

    .main {
        padding: 20px;
    }

    
}

/* Call Now Button Styles */
.call-now a {
    background-color: #e59400;/* Change this to your desired color */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.call-now a:hover {
    background: #ba7600; /* Change this to your desired hover color */
}
