/* General Styles */
html, body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */

}




/* Header styles */
header {
    
    color: black;
    background-color: transparent; /* Transparent by default */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.0); /* Optional shadow for clarity */
    padding: 15px 30px;
    display: flex;
    justify-content: space-evenly; /* Align logo and navigation properly */
    align-items: center;
    position: fixed; /* Fixed to stay on top */
    top: 0;
    left: 0;
    width: 100%; /* Ensure header spans full width */
    z-index: 1000; /* Keep above video */
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    

    
}

header.scrolled {
    background-color: white; /* Header turns white on scroll */
    color: black;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.0); /* Add shadow for clarity */

}

.logo img {
    max-height: 33px;
}

/* Navigation Menu */
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: black;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    transition: color 0.3s, text-decoration 0.3s;
}

/* Highlight the active page link */
nav ul li a.active {
    color: #4B9FD0;
    text-decoration: underline;
}

/* Hover effect for navigation links */
nav ul li a:hover {
    color: #4B9FD0;
}

/* Button */
.main-button {
    background-color: transparent;
    color: black;
    border: 2px solid #4B9FD0;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 13px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.main-button:hover {
    background-color: #4B9FD0;
    color: white;
}




#video-section {
    position: relative;
    width: 100%;
    height: 65vh; /* Adjust as needed */
    overflow: hidden;

}

#video-section video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}



/* Text Container */
.text-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
    color: #4B9FD0;
    font-family: 'Roboto', sans-serif;
}

.text-container h1 {
    font-size: 45px;
    margin-bottom: 20px; /* Adds space below the static heading */
}

i {
    font-size: 15px;
    
}

/* Rotating Text Container */
.rotating-text-container {
    position: relative;
    height: 50px; /* Constrains height of rotating text */
    overflow: hidden; /* Ensures text outside container is hidden */
    min-width: 500px;
}

/* Rotating Text */
.rotating-text span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap; /* Ensures text stays on one line */
    font-size: 34px;
    font-weight: bold;
    color: crimson;
    opacity: 0; /* Hidden by default */
    animation: rotate-text 6s infinite;
}

/* Individual Span Animations */
.rotating-text span:nth-child(1) {
    animation-delay: 0s;
}

.rotating-text span:nth-child(2) {
    animation-delay: 2s;
}

.rotating-text span:nth-child(4) {
    animation-delay: 4s;
}



/* Animation Keyframes */
@keyframes rotate-text {
    0% {
        opacity: 0;
        transform: translate(-50%, 10px); /* Slide in from below */
    }
    10%, 30% {
        opacity: 1;
        transform: translate(-50%, 0); /* Fully visible */
    }
    40% {
        opacity: 0;
        transform: translate(-50%, -10px); /* Slide out above */
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -10px); /* Stay hidden */
    }
}

/* About Section */
#about-section {
    position: relative;
    background-color: white;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Adjusts the proportions between the icon list and content box */
    max-width: 1200px;
    width: 100%;
    gap: 30px; /* Spacing between the columns */
    align-items: start; /* Aligns items to the top */
}

/* Icon List */
.icon-container {
    display: flex;
    align-items: flex-start; /* Align items at the top */
    gap: 15px; /* Space between icon and text */
    margin-bottom: 30px; /* Space between entries */
}

.icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #4B9FD0; /* Background color for the icon */
    border-radius: 10px; /* Square with rounded corners */
    width: 50px;
    height: 50px; /* Makes the square */
}

.icon-wrapper i {
    color: white; /* Icon color */
    font-size: 20px; /* Icon size */
}

.icon-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.icon-title {
    font-size: 18px;
    font-weight: bold;
    color: #4B9FD0;
    margin-bottom: 5px;
}

.icon-description {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
}

/* Content Box */
.content-box {
    background-color: #4B9FD0;
    color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.content-box h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.content-box p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}



/* Right Side: Content Box */
.content-box {
    background-color: #4B9FD0; /* Blue background */
    color: white; /* White text */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    margin-top: -15%; /* Overlaps into the video section by 10% */
    height: auto; /* Adjusts based on the content */
    min-height: 400px; /* Ensures a minimum height */
    padding: 50px; /* Adds space inside the box */
    width: 80%;
    margin-left: 40px;
    z-index: 2;
}

.content-box h2 {
    font-size: 24px;
    margin-bottom: 50px;
    font-weight: bold;
}

.content-box p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}



/* Omni-Channel Section */
#omni-channel-section {
    background-color: white;
    padding: 50px 20px;
    color: #666666;
}

.omni-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.omni-text {
    flex: 1;
}

.omni-text h2 {
    font-size: 16px;
    font-weight: bold;
    color: #4B9FD0;
    margin-bottom: 10px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.omni-text h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #4B9FD0;
}

.omni-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.features {
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.feature-item i {
    font-size: 24px;
    color: #4B9FD0;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #4B9FD0;
}

.feature-item p {
    font-size: 14px;
    margin: 0;
}

.omni-image {
    flex: 1;
    position: relative; /* Make this the positioning context for the counter-box */
}

.omni-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.counter-box {
    text-align: center;
    font-family: 'Roboto', sans-serif;
    border: 2px solid #4B9FD0;
    border-radius: 10px;
    padding: 20px;
    width: 150px; /* Adjust the width if necessary */
    display: inline-block;
    position: absolute; /* Position it relative to the .omni-image container */
    bottom: -10%; /* Overlap by 10% */
    left: 50%; /* Center horizontally */
    transform: translateX(-180%); /* Adjust to center */
    background-color: white; /* Ensure it's visible on the image */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Add a shadow for better visibility */
    z-index: 2; /* Ensure it appears above the image */
    bottom: -30px;
}

#counter {
    font-size: 32px;
    color: #4B9FD0;
    font-weight: bold;
    display: inline-block;
    vertical-align: middle; /* Aligns with the "+" */
}

.plus {
    font-size: 20px; /* Adjust the size of the "+" */
    margin-left: 5px;
    color: #4B9FD0;
    display: inline-block;
    vertical-align: middle; /* Ensures alignment with the number */
}

.global-clients {
    font-size: 14px; /* Makes "Global Clients" smaller */
    color: #666666; /* Adjust color to match your design */
    margin-top: 5px;
    display: block; /* Keeps it below the number */
}



/*MODDULAR SERVICE SECTION*/


#modular-service-section {
    display: flex;
    align-items: center;
    padding: 50px 20px;
    background-color: white;
    color: #666666;
}

.modular-service-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Adjust proportions between the image and the content */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.modular-image img {
    width: 75%;
    border-radius: 10px;
    transform: scale(1.2); /* Start zoomed-in */
    opacity: 0; /* Start hidden */
    transition: transform 2s ease, opacity 2s ease; /* Smooth zoom effect */
    
}

.modular-image.visible img {
    transform: scale(1); /* Reset to normal size */
    opacity: 1; /* Fade in */
}

.modular-content h5 {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: #4B9FD0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modular-content h2 {
    font-size: 32px;
    font-weight: bold;
    color: #4B9FD0;
    margin-bottom: 20px;
}

.modular-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.modular-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modular-point {
    display: flex;
    align-items: start;
    gap: 15px;
}

.modular-point i {
    font-size: 24px;
    color: #4B9FD0;
}

.modular-point p {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
}

hr {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 10px 0;
}


/*AIRLINE BOOKING 1 STARTS HERE*/

/* Audit Section */
#audit-section {
    position: relative;
    background-color: white;
    padding: 50px 20px;
}

.audit-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Adjusts the content/image proportions */
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
    align-items: start;
}

/* Left Side: Content */
.audit-content {
    position: relative; /* Make it the parent for the absolutely positioned button */
    z-index: 2;
    padding-right: 20px;
}

.audit-content h5 {
    font-size: 16px;
    font-weight: bold;
    color: #4B9FD0;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.audit-content h2 {
    font-size: 32px;
    color: #4B9FD0;
    margin-bottom: 20px;
}

.audit-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 30px;
}

.audit-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.audit-points li {
    font-size: 16px;
    color: #666666;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.audit-points i {
    font-size: 20px;
    color: #4B9FD0;
}

/* Button Styling */
.audit-button {
    position: absolute; /* Position it within the audit-content */
    bottom: 0; /* Align to the bottom */
    right: 0; /* Align to the right */
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #4B9FD0;
    text-decoration: none;
    border: 2px solid #4B9FD0;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-align: center;
    background-color: transparent;
}

.audit-button:hover {
    background-color: #4B9FD0;
    color: white;
}

/* Right Side: Image */
.audit-image {
    position: relative;
    overflow: hidden;
}

.audit-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transform: scale(1.2); /* Start zoomed-in */
    opacity: 0; /* Start hidden */
    transition: transform 1s ease, opacity 1s ease; /* Smooth zoom effect */
}

.audit-image.visible img {
    transform: scale(1); /* Reset to normal size */
    opacity: 1; /* Fade in */
}


/* Vacation Packages STARTS HERE */
#strategy-section {
    background-color: white;
    padding: 50px 20px;
    top: -10px;
}

.strategy-container {
    display: grid;
    grid-template-columns: 1fr 2fr; /* Adjusts the proportions */
    align-items: center;
    gap: 80px; /* Space between image and text */
    max-width: 1200px;
    margin: 0 auto;
}

.strategy-image {
    position: relative;
    top: 40px;
}

.strategy-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: none;
    border-radius: 10px;
    transform: scale(1.2); /* Start zoomed-in */
    opacity: 0; /* Start hidden */
    transition: transform 1s ease, opacity 1s ease; /* Smooth zoom effect */
}

.strategy-image.visible img {
    transform: scale(1); /* Reset to normal size */
    opacity: 1; /* Fade in */
}


.strategy-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-left: 50px; /* Moves the content further to the right */
}

.strategy-content h3 {
    font-size: 16px;
    font-weight: bold;
    color: #4B9FD0;
    display: flex; /* Use flexbox */
    align-items: center; /* Center icon and text vertically */
    gap: 10px; /* Add spacing between icon and text */
    text-transform: uppercase; /* Apply uppercase text */
    margin-bottom: 15px; /* Add some bottom margin for spacing */
}



.strategy-content h2 {
    font-size: 32px;
    color: #4B9FD0;
    margin-bottom: 20px;
}

.strategy-content p {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.strategy-points {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px; /* Space between points */
    padding-left: 280px; /* Shifts the points to the right */
}

.strategy-points li {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #666666;
}

.strategy-points i {
    color: #4B9FD0;
    margin-right: 10px;
    font-size: 20px;
}

.strategy-button {
    text-decoration: none;
    font-size: 16px;
    color: #4B9FD0;
    border: 2px solid #4B9FD0;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    width: fit-content;
    margin: 10px 0 0 30px; /* Positions button between content and points */
    transition: all 0.3s ease;
    margin-top: -60px;
    margin-left: -20px;
    font-weight: bold;
}

.strategy-button:hover {
    background-color: #4B9FD0;
    color: white;
}



/* Hotel Section Starts Here*/

#hotel-section {
    position: relative;
    background-color: white;
    padding: 50px 20px;
}

.hotel-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Adjusts the content/image proportions */
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
    align-items: start;
}

/* Left Side: Content */
.hotel-content {
    position: relative; /* Make it the parent for the absolutely positioned button */
    z-index: 2;
    padding-right: 20px;
}

.hotel-content h5 {
    font-size: 16px;
    font-weight: bold;
    color: #4B9FD0;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hotel-content h2 {
    font-size: 32px;
    color: #4B9FD0;
    margin-bottom: 20px;
}

.hotel-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 30px;
}

.hotel-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hotel-points li {
    font-size: 16px;
    color: #666666;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hotel-points i {
    font-size: 20px;
    color: #4B9FD0;
}

/* Button Styling */
.hotel-button {
    position: absolute; /* Position it within the audit-content */
    bottom: 0; /* Align to the bottom */
    right: 0; /* Align to the right */
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #4B9FD0;
    text-decoration: none;
    border: 2px solid #4B9FD0;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-align: center;
    background-color: transparent;
}

.hotel-button:hover {
    background-color: #4B9FD0;
    color: white;
}

/* Right Side: Image */
.hotel-image {
    position: relative;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: none;
    transform: scale(1.2); /* Start zoomed-in */
    opacity: 0; /* Start hidden */
    transition: transform 1s ease, opacity 1s ease; /* Smooth zoom effect */
}

.hotel-image.visible img {
    transform: scale(1); /* Reset to normal size */
    opacity: 1; /* Fade in */
}

/* Airport Transfers Section STARTS HERE */
#luxtransfer-section {
    background-color: white;
    padding: 50px 20px;
    top: -10px;
}

.luxtransfer-container {
    display: grid;
    grid-template-columns: 1fr 2fr; /* Adjusts the proportions */
    align-items: center;
    gap: 80px; /* Space between image and text */
    max-width: 1200px;
    margin: 0 auto;
}

.luxtransfer-image {
    position: relative;
    top: 40px;
}

.luxtransfer-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: none;
    transform: scale(1.2); /* Start zoomed-in */
    opacity: 0; /* Start hidden */
    transition: transform 1s ease, opacity 1s ease; /* Smooth zoom effect */
}



.luxtransfer-image.visible img {
    transform: scale(1); /* Reset to normal size */
    opacity: 1; /* Fade in */
}

.luxtransfer-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-left: 50px; /* Moves the content further to the right */
}

.luxtransfer-content h3 {
    font-size: 16px;
    font-weight: bold;
    color: #4B9FD0;
    display: flex; /* Use flexbox */
    align-items: center; /* Center icon and text vertically */
    gap: 10px; /* Add spacing between icon and text */
    text-transform: uppercase; /* Apply uppercase text */
    margin-bottom: 15px; /* Add some bottom margin for spacing */
}



.luxtransfer-content h2 {
    font-size: 32px;
    color: #4B9FD0;
    margin-bottom: 20px;
}

.luxtransfer-content p {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.luxtransfer-points {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px; /* Space between points */
    padding-left: 280px; /* Shifts the points to the right */
}

.luxtransfer-points li {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #666666;
}

.luxtransfer-points i {
    color: #4B9FD0;
    margin-right: 10px;
    font-size: 20px;
}

.luxtransfer-button {
    text-decoration: none;
    font-size: 16px;
    color: #4B9FD0;
    border: 2px solid #4B9FD0;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    width: fit-content;
    margin: 10px 0 0 30px; /* Positions button between content and points */
    transition: all 0.3s ease;
    margin-top: -60px;
    margin-left: -20px;
    font-weight: bold;
}

.luxtransfer-button:hover {
    background-color: #4B9FD0;
    color: white;
}



/* Rental Section Starts Here*/

#rental-section {
    position: relative;
    background-color: white;
    padding: 50px 20px;
}

.rental-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Adjusts the content/image proportions */
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
    align-items: start;
}

/* Left Side: Content */
.rental-content {
    position: relative; /* Make it the parent for the absolutely positioned button */
    z-index: 2;
    padding-right: 20px;
}

.rental-content h5 {
    font-size: 16px;
    font-weight: bold;
    color: #4B9FD0;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.rental-content h2 {
    font-size: 32px;
    color: #4B9FD0;
    margin-bottom: 20px;
}

.rental-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 30px;
}

.rental-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rental-points li {
    font-size: 16px;
    color: #666666;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rental-points i {
    font-size: 20px;
    color: #4B9FD0;
}

/* Button Styling */
.rental-button {
    position: absolute; /* Position it within the audit-content */
    bottom: 0; /* Align to the bottom */
    right: 0; /* Align to the right */
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #4B9FD0;
    text-decoration: none;
    border: 2px solid #4B9FD0;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-align: center;
    background-color: transparent;
}

.rental-button:hover {
    background-color: #4B9FD0;
    color: white;
}

/* Right Side: Image */
.rental-image {
    position: relative;
    overflow: hidden;
}

.rental-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: none;
    transform: scale(1.2); /* Start zoomed-in */
    opacity: 0; /* Start hidden */
    transition: transform 2s ease, opacity 2s ease; /* Smooth zoom effect */
}

.rental-image.visible img {
    transform: scale(1); /* Reset to normal size */
    opacity: 1; /* Fade in */
}

/* Airport Transfers Section STARTS HERE */
#tours-section {
    background-color: white;
    padding: 50px 20px;
    top: -10px;
}

.tours-container {
    display: grid;
    grid-template-columns: 1fr 2fr; /* Adjusts the proportions */
    align-items: center;
    gap: 80px; /* Space between image and text */
    max-width: 1200px;
    margin: 0 auto;
}

.tours-image {
    position: relative;
    top: 40px;
}

.tours-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: none;
    transform: scale(1.2); /* Start zoomed-in */
    opacity: 0; /* Start hidden */
    transition: transform 1s ease, opacity 1s ease; /* Smooth zoom effect */
}



.tours-image.visible img {
    transform: scale(1); /* Reset to normal size */
    opacity: 1; /* Fade in */
}



.tours-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-left: 50px; /* Moves the content further to the right */
}

.tours-content h3 {
    font-size: 16px;
    font-weight: bold;
    color: #4B9FD0;
    display: flex; /* Use flexbox */
    align-items: center; /* Center icon and text vertically */
    gap: 10px; /* Add spacing between icon and text */
    text-transform: uppercase; /* Apply uppercase text */
    margin-bottom: 15px; /* Add some bottom margin for spacing */
}



.tours-content h2 {
    font-size: 32px;
    color: #4B9FD0;
    margin-bottom: 20px;
}

.tours-content p {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.tours-points {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px; /* Space between points */
    padding-left: 280px; /* Shifts the points to the right */
}

.tours-points li {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #666666;
}

.tours-points i {
    color: #4B9FD0;
    margin-right: 10px;
    font-size: 20px;
}

.tours-button {
    text-decoration: none;
    font-size: 16px;
    color: #4B9FD0;
    border: 2px solid #4B9FD0;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    width: fit-content;
    margin: 10px 0 0 30px; /* Positions button between content and points */
    transition: all 0.3s ease;
    margin-top: -60px;
    margin-left: -20px;
    font-weight: bold;
}

.tours-button:hover {
    background-color: #4B9FD0;
    color: white;
}



/*testimonials start here*/


.testimonials-section {
    text-align: center;
    padding: 50px 20px;
    background-color: white;
}

.testimonials-section h3 {
    color: #4B9FD0;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: bold;
}

.testimonials-section h4 {
    color: black;
    font-size: 36px;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly; /* Ensure proper spacing across rows */
    gap: 10px; /* Control spacing between items */
    padding: 0; /* Ensure no extra padding in the grid */
    margin: 0 auto; /* Center the grid in its container */
    max-width: 1200px; /* Limit grid width for better layout control */
}

.testimonial-item {
    background-color: white;
    border: 2px solid #4B9FD0;
    border-radius: 10px;
    max-width: 300px; /* Control the width of each item */
    flex: 1 1 300px; /* Allow items to grow/shrink while maintaining a grid layout */
    padding: 15px;
    margin: 0; /* Remove any external margins */
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for aesthetics */
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.testimonial-item blockquote {
    font-style: italic;
    margin-bottom: 15px;
    color: #333;
    position: relative;
}

.testimonial-item blockquote::before {
    content: "“";
    font-size: 20px;
    color: #0066cc;
    position: absolute;
    left: -8px;
    top: -8px;
}

.testimonial-item .client-info {
    display: flex;
    align-items: center;
    gap: 10px; /* Proper spacing between image and text */
}

.testimonial-item .client-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.testimonial-item .client-info h5 {
    color: #4B9FD0;
    font-size: 16px;
    margin: 0;
}

.testimonial-item .client-info p {
    color: #333;
    font-size: 13px;
    margin: 0;
}









/* Footer Section */
.footer-section {
    background-color: white; /* Black background */
    color: #666666; /* White text color */
    padding: 50px 20px;
}




.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1140px;
    margin: 0 auto;
}

.footer-logo-description {
    text-align: left;
    display: flex;
    flex-direction: column; /* Stack the logo and text */
    justify-content: flex-start; /* Align items at the top */
    gap: 15px; /* Add spacing between the logo and the text */
}

.footer-logo {
    width: 120px;
    margin-bottom: 15px;
}

.footer-logo-description p {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.linkedin-link {
    color: #4B9FD0; /* Red for LinkedIn icon */
    text-decoration: none;
    font-size: 16px;
    margin-top: -30px;
}

.linkedin-link:hover {
    text-decoration: underline;
}



/* Contact Info */
.footer-contact-info h4,
.footer-useful-info h4,
.footer-newsletter h4 {
    font-size: 16px;
    font-weight: bold;
    color: #4B9FD0;
    margin-bottom: 10px;
}

.footer-contact-info p {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-contact-info i {
    color: #4B9FD0;
    margin-right: 10px;
}

/* Useful Info */
.footer-useful-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-useful-info li {
    margin-bottom: 10px;
}

.footer-useful-info a {
    color: #666666;
    text-decoration: none;
    font-size: 14px;
}

.footer-useful-info a:hover {
    color: #4B9FD0;
    text-decoration: underline;
}

/* Newsletter */
.footer-newsletter p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #666666;
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.newsletter-form input {
    padding: 10px;
    border: 2px solid #4B9FD0;
    border-radius: 5px;
    font-size: 14px;
    flex: 1;
    background-color: white;
    color: #666666;
}

.newsletter-form input::placeholder {
    color: #666666;
    opacity: 0.8;
}

.newsletter-form button {
    background-color: white;
    border: 2px solid #4B9FD0;
    color: #4B9FD0;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #4B9FD0;
    color: white;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #4B9FD0;
    padding-top: 15px;
    font-size: 14px;
    color: #666666;
}

.newsletter-form {
    position: relative;
    margin-bottom: 10px;
}

#newsletter-message {
    font-size: 14px;
    margin-top: 5px;
    min-height: 20px;
}

.newsletter-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}