* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.header {
    min-height: 100vh;
    width: 100%;
    background-image:  url("images/seeni journes bg.webp");
    background-position: center;
    background-size: cover;
    position: relative;
    padding-top: 100px;
}

.sub-header {
    height: 20vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url("images/about us COver.png");
    background-position: center;
    background-size: cover;
    text-align: center;
    padding-top: 100px;
    color: #fff;
  }

  .sub-header h1 {
    font-size:  50px;
  }



NAV {
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7); /* Black tint with opacity */
    position: fixed; /* Fix the navbar at the top */
    width: 100%; /* Ensure it spans the full width */
    height: 3%;
    top: 0; /* Align to the top of the page */
    z-index: 1000; /* Ensure it stays above other elements */

}

nav img {
    width: 100px;
    height: 100px;
    margin-top: 50px;
    margin-left: 300px;
    margin-right: 10px;
}

.nav-links {
    flex: 1;
    margin-right: 200px ;
    text-align: right;
    display: flex; /* Ensure nav-links uses flexbox */
    justify-content: flex-end; /* Align nav links to the end */
    gap: 20px; 
}

.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}


.nav-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    padding: 10px 15px;
    transition: color 0.3s;
}

.nav-links ul li a:hover {
    color: #f0f0f0; /* Lighter color on hover */
}

.nav-links ul li a i {
    margin-right: 8px; /* Space between the icon and text */
}

.nav-links ul li:last-child a {
    background-color: #28a745; /* Green background for the contact link */
    border-radius: 5px; /* Rounded corners */
    padding: 10px 15px; /* Add padding for better button appearance */
    color: white; /* Ensure text color contrasts well */
}

.nav-links ul li:last-child a:hover {
    background-color: #218838; /* Darker green for hover effect */
}


.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #06f51a;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after {
    width: 100%
}

.nav-links ul li.active a {
    color: #06f51a !important; /* Bright green for the active page */
    font-weight: bold; /* Optional: Make it bold */
    border-bottom: 3px solid #06f51a; /* Underline effect */
}



.container {
    max-width: 1300px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 20px;
}

.row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
}



/* Destinations section */
.destinations {
    text-align: center;
    padding: 50px 0;
    background-color: #f9f9f9; /* Light background for contrast */
}

.destinations h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.destination-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* Ensure responsiveness */
    gap: 20px; /* Space between the images */
}

.destination {
    position: relative;
    width: 30%; /* Adjust based on the layout preference */
    text-align: center;
}

.image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 15px; /* Match the image's border radius */
}

.image-container img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease, box-shadow 0.5s ease; /* Smooth transition for hover effects */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.image-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent black tint */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 15px; /* Match the image's border radius */
    overflow: hidden; /* Ensure no content spills out */
}

.image-container .overlay .text {
    text-align: center;
    padding: 20px;
}

/* Hover Effects */
.image-container:hover img {
    transform: scale(1.05); /* Slight zoom on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

.image-container:hover .overlay {
    opacity: 1; /* Show overlay on hover */
}

.destination p {
    margin-top: 10px;
    font-size: 1.2em;
    color: #333;
    text-align: center;
}









/* Form Section */
.form-section {
    background-color: #f5f5f5;
    padding: 50px 0;
    text-align: center;
}

.form-section-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap; /* Ensure responsiveness */
}



/* Image Section */
.form-image {
    flex: 1;
    position: relative;
}

.image-carousel {
    position: relative;
    width: 100%;
    height: 600px; /* Ensure the height is equal to the width for square shape */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-carousel img {
    width: 100%; /* Full width of the container */
    height: 100%; /* Full height of the container */
    object-fit: contain; /* Ensures the full image is visible within the container */
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Initial image visibility */
.image-carousel img:nth-child(1) {
    opacity: 1;
}

.dots {
    text-align: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot.active {
    background-color: #fff;
}

/* Image Transition */
@keyframes slide {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    20% {
        opacity: 1;
    }
    25% {
        opacity: 0;
    }
    95% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Hide images when not in view */
.image-carousel img:not(:nth-child(1)) {
    display: none;
}




/* Custom Message Textarea */
#customMessage {
    width: 100%;
    padding: 12px;
    font-size: 1.1em;
    border-radius: 10px;
    border: 1px solid #ccc;
    resize: vertical; /* Allow resizing */
    min-height: 80px;
}

.custom-message p {
    display: inline-block;
    padding: 5px 10px;
    font-weight: bold;
}

.custom-message::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 10px;
}









/* Form Section */
.form-text {
    flex: 1;
    text-align: left;
    padding: 0 20px;
}

.form-text h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

.form-text form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.callback-option {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between checkbox and label */
    font-size: 1.1em;
    color: #333;
    margin-top: 10px; /* Space above the checkbox */
}

.callback-option input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}






.form-text input,
.form-text select,
.form-text button {
    padding: 12px;
    font-size: 1.1em;
    border-radius: 10px;
    border: 1px solid #ccc;
}

.form-text button {
    background-color: #333;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-text button:hover {
    background-color: #555;
}

/* Form Row */
.form-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.form-row input,
.form-row select {
    flex: 1;
}

@media (max-width: 768px) {
    .form-section-content {
        flex-direction: column;
        text-align: center;
    }

    .form-text {
        width: 80%;
        margin: 0 auto;
    }

    .form-image {
        width: 80%;
        margin: 0 auto;
    }

    .image-carousel img {
        height: auto;
    }
}


/* Success Message Box (Above Form) */
#successMessage {
    display: none;
    position: relative;
    margin-bottom: 20px; /* Creates space above the form */
    background: white;
    padding: 20px;
    width: 100%;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.5s ease-in-out;
}

.success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.2em;
    color: #333;
}

.checkmark {
    font-size: 3em;
    color: green;
    font-weight: bold;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -55%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}















/* Reviews Section */
.reviews {
    background-color: #f5f5f5; /* Light background */
    padding: 50px 0;
    text-align: center;
}

.reviews h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #333;
}

.reviews-container {
    display: flex;
    justify-content: space-between; /* Ensure the cards are evenly spaced */
    gap: 30px;
    flex-wrap: wrap; /* Allow cards to wrap on smaller screens */
    margin: 0 auto;
    max-width: 1200px; /* Optional: to control the maximum width */
}

.review-card {
    background-color: #fff;
    border-radius: 15px;
    width: 30%; /* Ensure cards take up equal space */
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-sizing: border-box; /* Include padding and border in width calculation */
}

.review-card:hover {
    transform: scale(1.05); /* Slight zoom effect */
}

.review-image {
    width: 70px; /* Circle image size */
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    display: inline-block;
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-content {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 90px); /* Adjust text block width */
}

.review-content h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

.stars {
    color: #ffd700; /* Golden star color */
    margin-bottom: 10px;
}

.stars i {
    font-size: 1.2em;
}

.review-content p {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
    
    text-align: justify;
}

/* Ensure the cards stack nicely on smaller screens */
@media (max-width: 768px) {
    .review-card {
        width: 100%; /* Stack cards vertically on smaller screens */
        margin-bottom: 20px; /* Add space between stacked cards */
    }

    .reviews-container {
        flex-direction: column; /* Stack reviews vertically */
        align-items: center; /* Center the reviews */
    }
}





/* Contact Us Section */
.contact-us {
    background-color: #f5f5f5;
    padding: 50px 0;
    text-align: center;
}

.contact-us h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #333;
}

.contact-us-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1200px;
}

.contact-card {
    background-color: #fff;
    border-radius: 15px;
    width: 30%;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-sizing: border-box;
}

.contact-card:hover {
    transform: scale(1.05);
}

.contact-image {
    width: 80px; /* Circle image size */
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px auto;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-card h3 {
    font-size: 1.8em;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
    font-weight: bold;
}

.contact-details {
    margin-top: 15px;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1em;
    color: #555;
}

.contact-info p strong {
    font-size: 1.1em;
}

/* Ensure the cards stack nicely on smaller screens */
@media (max-width: 768px) {
    .contact-card {
        width: 100%;
        margin-bottom: 20px;
    }

    .contact-us-container {
        flex-direction: column;
        align-items: center;
    }
}





































.footer {
    background: #000;
    color: #8a8a8a;
    font-size: 14px;
    padding: 60px 0 20px;
    min-height: 200px; /* Ensure the footer has enough space */
}


.footer p{
    color: #8a8a8a;
    margin-bottom: 20px; 
}

.footer-col-1, .footer-col-2, .footer-col-3, .footer-col-4 {
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-col-1{
    flex-basis: 30%;
}

.footer-col-2{
    flex: 1;
    text-align: center;
    
}
.footer-col-2 img{
    width: 180px;
    margin-bottom: 20px;
}


.footer-col-3, .footer-col-4 {
    flex-basis: 12%;
    text-align: center;
     
}

ul{
    list-style-type: none;
}

.app-logo{
    margin-top: 20px;
    
}

.app-logo img{
    width: 140px;
}

.footer hr{
    border: none;
    background: #b5b5b5;
    height: 1px;
    margin: 20px 0;
    
}
.copyright{
    text-align: center; 
}

.menu-icon {
    width: 28px;
    margin-left: 20px;
    display: none;
}




/* About Seeni Section */
.about-seeni {
    background-color: #f5f5f5; /* Light background for contrast */
    padding: 50px 0;
}

.about-seeni-content {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Vertically align the content */
    gap: 20px; /* Space between the image and text */
    flex-wrap: wrap; /* Ensure responsiveness */
}

/* Default Layout: Image Left, Text Right */
.about-seeni-image {
    flex: 1; /* Allow the image section to take up available space */
    text-align: center; /* Center the image */
}

.about-seeni-image img {
    width: 90%; /* Image takes up 90% of the container width */
    height: auto;
    border-radius: 15px; /* Curved edges */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.about-seeni-text {
    flex: 1; /* Allow the text section to take up available space */
    text-align: left; /* Align text to the left */
    padding: 0 20px; /* Add some padding */
}

.about-seeni-text h2 {
    font-size: 2.5em;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
}

.about-seeni-text h6 {
    font-size: 1.8em;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
}

.about-seeni-text p {
    font-size: 1.2em;
    color: #555;
    line-height: 1.6;
    text-align: justify;
}

/* Reverse Layout: Image Right, Text Left */
.about-seeni.reverse .about-seeni-content {
    flex-direction: row-reverse;
}

/* Responsive Layout for Smaller Screens */
@media (max-width: 768px) {
    .about-seeni-content {
        flex-direction: column; /* Stack image and text vertically */
        text-align: center;
    }

    .about-seeni-image img {
        width: 80%; /* Reduce image size for small screens */
        margin: 0 auto 20px; /* Center the image */
    }

    .about-seeni-text {
        width: 80%; /* Adjust text container width */
        margin: 0 auto;
        text-align: center;
    }

    /* Ensure reverse class still works on small screens */
    .about-seeni.reverse .about-seeni-content {
        flex-direction: column;
    }
}



