body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section-visible {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease-out forwards;
}
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

#loading-screen video {
    width: 100%;
    height: auto;
    z-index: 1000;
}
@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

#loading-screen {
    /* Other styles */
    opacity: 1; /* Ensure the initial opacity is set to 1 */
    transition: opacity 1s; /* This can be for smoothness */
}
#nav {
    display: none; /* Default hidden */
}

#nav.show {
    display: block; /* Display when 'show' class is added */
}

.allow-interaction {
    pointer-events: auto; /* Enable pointer events */
}
/* Prevent scrolling */
.no-scroll {
    overflow: hidden; /* Prevent scrolling */
    position: fixed; /* Fix the position */
    width: 100%; /* Ensure the width covers the full page */
    height: 100%; /* Ensure the height covers the full page */
    top: 0;
    left: 0;
}

/* Disable interactions */
.no-interaction {
    pointer-events: none;
}

/* Fade out effect */
.fade-out {
    opacity: 0.5; /* or any other style that hides or deactivates the content */
    pointer-events: none; /* Prevent interactions with the element */
}

/* Ensure the navigation bar is displayed correctly */
.left-nav.open {
    display: block; /* or any other style to make the nav visible */
}

#main-content {
    opacity: 0;
    transition: opacity 0.1s ease-in-out;
}

#main-content.visible {
    opacity: 1;
}
@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}
.main-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 20px; /* Space between items */
    max-width: 1600px; /* Increase max width for the main container */
    margin: 0 auto; /* Center the grid container */
    padding: 20px; /* Optional padding for better spacing */
    padding: 100px;
    transition: margin-left 0.3s;
    align-content: center; /* Adjust as needed */
}
.main-content1 {

    grid-template-columns: 3fr 1fr; /* Two equal columns */
    gap: 20px; /* Space between items */
    max-width: 100%; /* Increase max width for the main container */

    transition: margin-left 0.3s;
    /* Adjust as needed */
}

/* Style for the slideshow sections */
.slideshow {
    flex: 1;
    min-width: 300px; /* Adjust as needed */
}
.vision {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 300px;
    order:-2; 
    max-height:95%;/* Ensure it's on the first row */
}
.vision-container {
    text-align: center;
}

.vision-container h2 {
    font-size: 2em; /* Adjust size as needed */
    font-weight: bold;
    margin-bottom: 20px; 
    color: rgb(153, 185, 186);/* Adjust spacing as needed */
}

.vision-container p {
    font-size: 1.2em; /* Adjust size as needed */
    line-height: 1.5;
}

.vision-details {
    display: inline-flex;
    align-items: center;
    font-size: 1.2em; /* Adjust size as needed */
    color: #000; /* Adjust color as needed */
    text-decoration: none;
    margin-top: 10px; /* Adjust spacing as needed */
    transition: color 0.3s ease;
}
.visit-us {
    padding: 50px;
    background-color: transparent;
    text-align: center;
    color: rgb(153, 185, 186);
}

.visit-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px;
    background-color: transparent;
    text-align: center;
    color: rgb(153, 185, 186);
}

/* Title styles */
.visit-container h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Grid layout for cards */
.locations {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 20px; /* Space between cards */
    margin-bottom: 30px;
}

.location-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.location-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

/* Move the third card to a new row */


/* Style for the new "Our Story" section */
.our-story {
    flex: 1;
    min-width: 300px; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
  
}

.story-container {
    text-align: center;
    position: relative;
}

.story-container h2 {
    font-size: 2em; /* Adjust size as needed */
    font-weight: bold;
    margin-bottom: 20px; 
    color: rgb(153, 185, 186);/* Adjust spacing as needed */
}

.story-container p {
    font-size: 1.2em; /* Adjust size as needed */
    line-height: 1.5;
}

.see-details {
    align-items: center;
    font-size: 1.2em; /* Adjust size as needed */
    color: #000; /* Adjust color as needed */
    text-decoration: none;
    margin-top: 10px; /* Adjust spacing as needed */
    transition: color 0.3s ease;
    text-decoration: none;
}

.see-details:hover {
    color:rgb(153, 185, 186);
    transform: translateX(5px);
    text-decoration: none; /* Adjust hover color as needed */
}

.see-details .arrow {
    margin-left: 10px; /* Adjust spacing as needed */
    transition: transform 0.3s ease;
    visibility: visible;
 
}
.see-details:hover .arrow {
    transform: translateX(5px); /* Adjust distance as needed */
}
.slideshow1 {
    position: relative;
    max-width: 50%;
    margin: auto;
    max-height: 50%;
}

.container1 {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100%; /* Ensure the container takes the full height of the slideshow */
}

.slides1 {
    display: flex;
    width: 100%;
    height: 100%; /* Ensure the slides take the full height of the container */
    transition: transform 0.5s ease-in-out;
}

.slide1 {
    min-width: 100%;
    height: 100%; /* Ensure each slide takes the full height of the container */
}

.slide1 img {
    width: 100%;
    height: 100%; /* Ensure the images take the full height of the slide */
    object-fit: cover; /* Maintain the aspect ratio of the images */
}

/* Navigation Buttons */
.prev1, .next1 {
    cursor: pointer;
    position: absolute;
    bottom: 10px; /* Position buttons at the bottom */
    left: 48.8%; /* Center the buttons horizontally */
    transform: translateX(-50%); /* Adjust centering */
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 3px;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5); /* Adding a semi-transparent background for better visibility */
}

.prev1 {
    margin-right: 50px; /* Add space between prev and next buttons */
}

.next1 {
    margin-left: 50px; /* Add space between prev and next buttons */
}

.prev1:hover, .next1:hover {
    background-color: #2c3e50;
}

.slideshow {
    position: relative;
    max-width: 95%;
    margin: auto;
}

.slide {
    display: none;
}

.slide img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
    border-color: rgb(153, 185, 186);
    
}
.prev{
    left: 0;
    border-radius: 3px 0 0 3px;
    border-color: rgb(153, 185, 186);
}

.prev:hover, .next:hover {
    background-color: #2c3e50;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 90%;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* Facts and Figures Section Styles */
.facts-figures {
    padding: 20px;
    text-align: center;
    padding-top: 8%;
}
.facts-figures h2 {
    font-size: 2em;
    margin: 0;
    color: rgb(153, 185, 186);
    font-weight: bold;
}
.fact-item {
    margin: 20px;
}

.fact-item h2 {
    font-size: 3em;
    margin: 0;
    color: rgb(153, 185, 186);
    font-weight: bold;
}

.fact-item h3 {
    font-size: 1.2em;
    margin: 0;
    color: #666;
}


.vision, .slideshow1, .our-story {
    grid-column: span 1; /* Each takes one column */
    width: 100%; /* Ensure each section takes full column width */
}

.facts-figures {
    grid-column: span 2; /* Span both columns */
    text-align: center; /* Center the content */
    width: 100%; /* Ensure it takes full width */
}

section {
    box-sizing: border-box; /* Ensure padding/border are included in width/height */
    padding: 20px; /* Optional padding for content inside sections */
}

.facts-figures {
    height: 500px; 
    margin-top:10vh;/* Set a fixed height for all sections */
}
.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px; /* Adjust as needed */
}

.nav-east, .nav-west {
    margin: 0 15px;
}

.nav-east button, .nav-west button {
    padding: 10px 20px; /* Adjust padding as needed */
    font-size: 1em; /* Adjust font size as needed */
    color: #000;
    background-color: #fff; /* Ensure a visible background color */
    border: 2px solid #000; /* Ensure a visible border */
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-east button.active, .nav-west button.active {
    background-color: rgb(153, 185, 186); /* Change this to your desired active color */
    color: #fff; 
    font-weight: bolder ;/* Optional: Change text color */
}

/* Additional styles for hover and focus states for better UX */
.nav-east button:hover, .nav-west button:hover,
.nav-east button:focus, .nav-west button:focus {
    background-color: rgb(153, 185, 186); /* Adjust as needed */
    color: #fff;
    outline: none; /* Remove default focus outline */
}

.section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
}

.section-visible {
    opacity: 1;
    transform: translateY(0);
}



/* Additional Mobile Styles */
.social-media-buttons {
    display: flex;
    justify-content: center; /* Center social buttons */
    margin: 20px 0; /* Space around social buttons */
}

.social-button {
    margin: 0 10px; /* Space between social buttons */
}

/* Modal Styles */
.modalc-content {
    width: 90%; /* Width of modal on mobile */
    max-width: 500px; /* Max width to prevent overflow */
    margin: auto; /* Center modal */
}

.get-in-touch-container {
    text-align: center; /* Center text in get in touch section */
}

/* Input Styles */
input, select, textarea {
    width: 100%; /* Full-width inputs */
    padding: 10px; /* Add padding */
    margin-top: 5px; /* Space above inputs */
}





.fact-item {
    background-color: transparent; /* No color inside */
    color: #003366; /* Dark blue text */
    padding: 20px;
    margin: 20px;
    border-radius: 5px; /* Optional: rounded corners */
    border: 12px solid rgb(153, 185, 186); /* Dark blue frame */
    width: 250px; /* Fixed width */
    height: 250px; /* Fixed height to ensure square shape */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    
}

.fact-icon {
    margin-bottom: 15px;
}

.fact-icon img {
    width: 60px; /* Adjust size as needed */
    height: auto;
}

.fact-item h3 {
    margin: 10px 0;
}

.fact-item p {
    font-size: 16px;
    margin: 0;
}

.fact-item strong {
    font-weight: bold;
}

header {
    background-color: transparent;
    color: rgb(255, 255, 255);
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    transition: background-color 0.3s, transform 0.3s;
    z-index: 1000;
    animation: fadeIn 1.5s ease-out;
}

header.scrolled {
    background-color: rgb(153, 185, 186);
    color:#000000 ;
    transform: translateY(-10px);
}
header.scrolled .right-nav ul li a h2{
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000000;
}
header.scrolled .menu-toggle{
    display: block;
    cursor: pointer;
    font-size: 30px;
    color: #000000;
    padding: 0 10px;
}
header.scrolled .left-nav{
    position: fixed;
    left: -500px; /* Hidden off-screen */
    top: 0;
    width: 250px;
    height: 100%;
    background-color: rgba(153, 185, 186, 0.9); /* Light transparent color */
    color: white;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0,0,0,0.5);
    transition: left 0.3s ease-in-out;
    z-index: 1000;/* Ensure navigation bar is on top */
}

header.scrolled .menu-toggle:hover {
    transform: rotate(90deg); 
    color: #ffffff;}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
header h1 {
    display: inline-block;
    margin: 0;
    padding: 0 10px;
}

header .logo img {
    max-height: 70px;
    align-self: center;
}

.rtl .right-nav ul {
    flex-direction: row-reverse;
}
.rtl .header{
    flex-direction: row-reverse;
    width: 100% !important;
}

.ltr .main-content{
        overflow-x: hidden; /* Prevents horizontal scrolling */

}
.rtl .tel-icon {
    margin-left: 15px; 
    margin-right: 0;
}

.rtl .left-nav {
    left: unset;
    right: -500px; 
    z-index:1000;
}

.rtl .left-nav.open {
    right: 0;
    z-index:1000; 
}

.rtl .left-nav .close-btn {
    left: 20px;
    right: unset;
}

.rtl .left-nav ul li a {
    text-align: right;
    padding-left: 0;
    padding-right: 20px;
}

.rtl .left-nav ul li a:hover {
    padding-right: 30px; 
}

.location-container {
    position: absolute;
}

.new-alamein {
    top: 37%; 
    left: 19%; 
}

.new-mansoura {
    top: 30%; /* Adjust top position for New Mansoura */
    left: 54%; /* Adjust left position */
}

.new-capital {
    top: 35%; /* Adjust top position for New Capital */
    left: 60%; /* Adjust left position */
}
.sheikh-zayed {
    top: 30%; /* New position for SHEIKH ZAYED */
    left: 22%;
}
[dir="rtl"] .new-alamein {
    left: unset;   /* Clear the left property */
    right: 50%;    /* Apply right for RTL positioning */
}


[dir="rtl"] .sheikh-zayed {
    left: unset;
    right: 45%;
}
/* General styles for right-to-left layout */


.rtl .content h2{
    flex: 1; /* Text container takes space */
    padding-left: 20px;
    text-align: right ;
      /* Space between image and text */
}
.rtl .content p{
    flex: 1; /* Text container takes space */
    padding-left: 20px;
    text-align: right ;
      /* Space between image and text */
}
.rtl .content ul li{
    flex: 1; /* Text container takes space */
    padding-left: 20px;
    text-align: right;
      /* Space between image and text */
}

.content h2{
    flex: 1; /* Text container takes space */
    padding-left: 20px;
    text-align: left ;
      /* Space between image and text */
}
.content p{
    flex: 1; /* Text container takes space */
    padding-left: 20px;
    text-align: left ;
      /* Space between image and text */
}
.content ul li{
    flex: 1; /* Text container takes space */
    padding-left: 20px;
    text-align: left;
      /* Space between image and text */
}
@media (max-width: 768px) and (orientation: portrait) {
    #loading-video,
    #loading-image {
        display: none !important;
    }
}
@media (max-width: 768px) and (orientation: landscape) {
    #loading-video,
    #loading-image {
        display: none !important;
    }
}

@media (max-width: 600px) {
    html, body {
        overflow-x: hidden; /* Prevents horizontal scrolling */
        max-width: 100vw; /* Ensures the page does not exceed the screen width */
    }
    body {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Arial, sans-serif;
        max-height: 100vh !important;
        overflow-x: hidden ;
        scroll-behavior: smooth !important;
    }
    .section {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    display: block !important;
}
    .hero{
        max-width: 100% !important;
        height:260px !important;
    }
    .hero img {
        max-width: 100% !important;  /* Ensure the image doesn't exceed the container's width */
        height: 260px !important; 
            /* Maintain aspect ratio */
    }
    .header{
        background-color: rgb(153, 185, 186);
    }
    nav ul li a:hover::before {
        visibility: hidden !important; /* Hide the pseudo-element */
        width: 0 !important;           /* Remove any width that could appear as an underline */
    }
    a:hover {
        text-decoration: none !important;
    }
    .left-nav a{
        text-decoration: none !important;
        transition: none !important;
    }
    .destination-container{
        width: 320px;

    }
    .destination-container1{
        width: 320px;
    }



    .social-media-buttons{
        display: none !important;
    }
    li h2 {
        display: none; /* Hides the h2 element */
    }

    header.scrolled .right-nav ul li a h2 {
        display: none;
    }

    .hero-slide h1 {
        align-content: center;
        margin-left: 25%;
    
    }
    .right-nav{
        overflow: hidden;
        margin-right: 17px;
    }

    .location-container {
        position: absolute; /* Allow for absolute positioning */
    }


    .new-alamein {
        top: 35%; /* New position for 6TH OF OCTOBER */
        left: 5%;
    }

    .new-mansoura {
        top: 29%; /* New position for NEW CAIRO */
        left: 54%;
    }

    .new-capital {
        top: 33%; /* New position for NEW CAPITAL */
        left: 58%;
    }

    .sheikh-zayed {
        top: 28%; /* New position for SHEIKH ZAYED */
        left: 10%;
    }

    .main-content {
        display: flex;
        flex: 1;
        flex-direction: column; /* Stack elements vertically */
        padding: 10px; 
        animation: none !important;
        transition:none !important;
        max-width: 90%;/* Adjust padding for smaller screens */
    }

    .location-card {
        width: 100%; /* Full width for cards */
        margin-bottom: 20px; /* Space between cards */
    }
    .next23{
        display: none;
    }
    .prev23{
        display: none;
    }
    .nav-east button, .nav-west button {
        width: 100%; /* Full-width buttons */
        margin: 5px 0; /* Space between buttons */
    }
    #facts-figures {
        display: block; /* Ensures it's displayed */
        opacity: 1; 
     /* Fully visible */
    }
    .modalc-content {
        width: 90%; /* Make the modal responsive, using 90% of the viewport width */
        max-width: 100%; /* Prevent overflow beyond screen width */
        padding: 20px; /* Add some padding for readability */
        box-sizing: border-box; /* Ensure padding doesn't exceed container width */
        overflow-y: auto; /* Allow scrolling if the content exceeds modal height */
    }

    /* Adjust the modal CEO image */
    .modal-ceo-image {
        width: 100%; /* Ensure the image is responsive */
        height: auto; /* Maintain the aspect ratio */
        margin-bottom: 20px; /* Add some space below the image */
    }

    /* Style the modal message text */
    .modal-message-text {
        font-size: 14px; /* Slightly smaller font for mobile */
        line-height: 1.6; /* Improve readability */
    }

    /* Adjust the modal heading */
    .modal-message-text h2 {
        font-size: 18px; /* Make the heading smaller */
        margin-bottom: 15px; /* Add space below the heading */
        text-align: center; /* Center the heading */
    }

    /* Ensure paragraphs don't overflow */
    .modal-message-text p {
        word-wrap: break-word; /* Break long words if needed */
        margin-bottom: 15px; /* Add space between paragraphs */
    }

    /* Adjust the close button position */
    .close-btnc {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 24px;
        cursor: pointer;
    }

    .facts-figures .container {
        
        display: block;
        height: fit-content;
        max-height: none; /* Ensure items stack */
    }
    
    .fact-item {
        width: 70% !important; /* Full width for items */
        height:50% !important;
        text-align: center; /* Center the text */
    }
    .location-logo {
        width: 20px !important; /* Smaller size for logos */
        height: 20px !important; /* Maintain aspect ratio */
    }

    .location-name {
        font-size: 12px; /* Smaller text size */
        text-align: center; /* Center align text */
    }
    #index-page .footer {
        color: #fff;
        padding: 20px;
        text-align: center;
        position: relative; /* Change to relative for scrolling */
        bottom: -400px;
        width: 100%;
        max-width: 100%;
    }

    .footer-container {
       /* Use flexbox for layout */
        flex-direction: column; /* Stack elements vertically */
        align-items: center; 
        max-width: 95%;
    }

    .footer-logo img {
        max-width: 150px; /* Adjust logo size */
        margin-bottom: 15px; /* Space below the logo */
    }

    .footer-links ul {
        list-style: none; /* Remove bullet points */
        padding: 0; /* Remove padding */
        margin: 15px 0; /* Margin above and below */
    }

    .footer-links li {
        margin: 5px 0; /* Space between links */
    }

    .footer-links a {
        color: #fff; /* Link color */
        text-decoration: none; /* Remove underline */
    }

    .footer-links a:hover {
        text-decoration: underline; /* Underline on hover */
    }

    .footer-contact p {
        margin: 10px 0; /* Margin around contact info */
    }

    .footer-social {
        margin: 15px 0; /* Margin around social icons */
    }

    .footer-social a {
        margin: 0 10px; /* Space between icons */
    }

    .footer-social img {
        width: 30px; /* Icon size */
        height: auto; /* Maintain aspect ratio */
    }

    .footer-copy {
        margin-top: 20px; /* Space above copyright */
        font-size: 0.9em; /* Slightly smaller font size */
    }
    .destinations-map{
        display: block;
        opacity: 1;
        margin-bottom:10vh;
    }
    .maps{
        display: block;
        opacity: 1;
    }
    .our-story{
        display: block;
        opacity: 1;
    }


    .social-media-buttons {
        display: none !important; /* Hide social media buttons */
    }

    li h2 {
        display: none; /* Hide the h2 element */
    }

    header.scrolled .right-nav ul li a h2 {
        display: none; /* Hide h2 in the header when scrolled */
    }






    .main-content22 {
        display: flex;
        flex-direction: column; /* Stack elements vertically */
        padding: 10px; /* Adjust padding for smaller screens */
    }


    .hero img {
        width: 100%; /* Responsive image */
        height: 300px; /* Maintain aspect ratio */
        margin-right: -700px;/* Space above the image */
        margin-bottom: 10px; /* Space below the image */
    }

    .footer {
        margin-top: -150px;
        padding: 10px; /* Adjust padding if needed */
        text-align: center; /* Center text */
        width: 100%; /* Full width */
    }


    .grid-container {
        display: flex;
        flex-direction: column; /* Stack elements vertically */
        width: 100%; /* Full width */
        padding: 10px; /* Add padding */
    }
    
    .image-container {
        display: flex;
        justify-content: center; /* Center the image */
        margin-bottom: 15px; /* Space below image */
    }
    
    .image-container img {
        max-width: 100%; /* Responsive image */
        height: auto; /* Maintain aspect ratio */
    }
    
    .text-container {
        display: flex;
        flex-direction: column; /* Stack content vertically */
        align-items: center; /* Center align content */
        padding: 0 10px; /* Side padding */
    }
    
    .navigation-links {
        display: flex;
        justify-content: space-between; /* Space links evenly */
        margin-bottom: 10px; /* Space below navigation links */
        width: 100%; /* Full width */
    }
    
    .navigation-links a {
        flex: 1; /* Equal space for each link */
        text-align: center; /* Center align text */
        padding: 10px; /* Padding around links */
        background: #f0f0f0; /* Background for visibility */
        border-radius: 5px; /* Rounded corners */
        margin: 0 5px; /* Margin between links */
    }
    .navigation-links {
        flex-direction: column; /* Stack navigation links vertically on smaller screens */
        align-items: center; /* Center the links */
    }

    .navigation-links a {
        width: 100%; /* Ensure the links take the full width on mobile */
        padding: 10px 0; /* Add some padding for easier tapping on mobile */
    }

    .text-container {
        padding: 10px; /* Add padding for better spacing on mobile */
    }
    .content {
        display:block;
        width: 100%; /* Full width */
        text-align: center; /* Center align text */
    }
    
    .content h2 {
        font-size: 1.5em; /* Adjust heading size */
        margin: 10px 0; /* Space around heading */
    }
    
    .content p {
        font-size: 1em; /* Adjust paragraph size */
        line-height: 1.5; /* Improve readability */
    }
    .section-hidden {
        display: block !important; /* Ensure it remains visible without opacity transitions */
        visibility: visible !important; /* Prevents visibility animation */
        opacity: 1; /* Keep it fully opaque */
    }

    .section {
        max-width: 100% !important;
        display: block !important; /* Ensure sections are displayed without transitions */
        visibility: visible !important; /* Prevents visibility animation */
        opacity: 1;
        margin-bottom: 20px!important; /* Fully visible */
    }


}

@media (max-width: 789px) {


    /* --- Header --- */
    header.header {
        padding: 15px 0;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        transform: translateY(0) !important; /* Override desktop scrolled effect */
    }

    header.header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
    }
    header.header .menu-toggle {
        font-size: 26px;
        color: #333; /* Darker for better visibility on light bg */
        padding: 5px;
        background: transparent;
        border: none;
    }

    header.header .logo img {
        max-height: 50px; /* Adjust logo size */
        display: block; /* Helps with alignment */
    }
    header.header .right-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    header.header .right-nav ul li a {
        display: flex;
        align-items: center;
        text-decoration: none;

    }
    header.header .right-nav ul li a h2 {
        display: none; /* Show number */


    }

    header.header .tel-icon {
        height: 23px;
        filter: invert(20%);
        color:white;/* Make icon darker if it's light by default */
    }
}
@media (orientation: landscape) and (max-width: 768px) {
    .left-nav {
        max-height: 100vh; /* Or set a smaller height if needed */
        overflow-y: auto;
        padding-right: 10px; /* Optional spacing for scrollbar */
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    }

    .left-nav ul {
        display: block;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .left-nav ul li {
        margin-bottom: 10px; /* Optional: space between items */
    }
}
/* Animation on hover for links in LTR */
.left-nav ul li a:hover {
    padding-left: 30px; /* Move text slightly to the right on hover in LTR */
    transition: padding-left 0.3s ease-in-out;
}

/* Animation on hover for links in RTL */
.rtl .left-nav ul li a:hover {
    padding-right: 30px; /* Move text slightly to the left on hover in RTL */
    transition: padding-right 0.3s ease-in-out;
}
.right-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    color: rgb(255, 255, 255);
}

.right-nav ul li {
    margin: 0;
    padding: 0;
    color: rgb(255, 255, 255);
}

.right-nav ul li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: rgb(255, 255, 255);
    text-emphasis-color:rgb(255, 255, 255) ;
}
.right-nav ul li a h2{
    color: rgb(255, 255, 255);
}
.right-nav ul li a h2:hover{
    color: #000000;
    text-decoration: none !important;
}
.tel-icon {
    margin-right: 10px; 
    /* Adjust this value to control spacing */
}


.menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 24px;
    color: rgb(250, 250, 250);
    padding: 0 10px;
}

.left-nav {
    position: fixed;
    left: -500px; /* Hidden off-screen */
    top: 0;
    width: 250px;
    height: 100%;
    background-color: rgba(153, 185, 186, 0.9); /* Light transparent color */
    color: white;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0,0,0,0.5);
    transition: left 0.3s ease-in-out;
    z-index: 1000;/* Ensure navigation bar is on top */
}
.left-nav.open {
    left: 0;
}

.left-nav .close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
}
.left-nav .close-btn:hover {
    color: #000000;
    transform: rotate(-90deg); /* Rotates the icon on hover */
}
.left-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    position: relative;
    transition: color 0.3s, transform 0.3s;
    z-index: 1000; /* Ensure links are on top */
}

nav ul li a:hover {
    color: #000000;
    transform: translateX(5px); /* Slide in from left */
}

nav ul li a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: black; /* Change to black */
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

nav ul li a:hover::before {
    visibility: visible;
    width: 100%;
    color: #000000;
}

.left-nav > ul > li {
    position: relative;
    overflow: hidden;
    color: #000000;
    /* Ensure the sub-nav doesn't overflow the parent item */
    transition: none !important; /* Smooth margin adjustment */
}

/* Styling for the 'Our Projects' nav item */
.left-nav > ul > li:nth-child(3).expanded {
    margin-bottom: 20px; /* Adjust to create space for sub-nav */
}

/* Initial styles for sub-nav */
.sub-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0; /* Hide sub-nav initially */
    overflow: hidden; /* Ensure no overflow is visible */
    opacity: 0; /* Hide sub-nav initially */
    background-color: rgba(153, 185, 186, 0.9); /* Match the parent menu's color */
    transition: max-height 0.5s ease, opacity 0.3s ease;
    z-index: 1000; /* Ensure it appears above other elements */
    width: 100%;/* Ensure it matches the width of the parent item */
}

/* Show sub-nav with sliding effect */
.left-nav > ul > li.expanded .sub-nav {
    max-height: 200px; /* Adjust according to your content height */
    opacity: 1;
    display:contents; 
}

/* Initial styles for sub-nav */
.sub-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0; /* Hide sub-nav initially */
    overflow: hidden; /* Ensure no overflow is visible */
    opacity: 0; /* Hide sub-nav initially */
    background-color: rgba(153, 185, 186, 0.9); /* Match the parent menu's color */
    transition: max-height 0.5s ease, opacity 0.3s ease;
    z-index: 1000; /* Ensure it appears above other elements */
    width: 100%;/* Ensure it matches the width of the parent item */
}
#projects-nav-item {
    position: relative; /* Required for absolute positioning of the arrow */
    padding-right: 30px; /* Ensure space for the arrow */
}
.arrow {
    display: inline-block;
    margin-left: 10px;
    transition: transform 0.3s ease; /* Smooth rotation transition */
}

/* Arrow rotates to point down on hover */
#projects-link:hover .arrow {
    transform: rotate(90deg); /* Rotate 90 degrees to point down */
}
/* Adjust alignment and spacing if needed */
#left-nav.expanded .arrow {
    transform: rotate(90deg); /* Arrow points down when sub-nav is expanded */
}
#projects-nav-item .arrow {
    /* Adjust these values based on your specific design */
    position: absolute; /* Positioning if you need to fine-tune */
    right: 10px; /* Distance from the right edge */
    top: 50%; /* Center vertically */
    transform: translateY(-50%); /* Center the arrow vertically */
}
/* Style for the arrow */


/* Rotate arrow when sub-nav is visible */

/* Show sub-nav with sliding effect */
.left-nav > ul > li.expanded .sub-nav {
    max-height: 200px; /* Adjust according to your content height */
    opacity: 1;
    display:contents; 
}

/* Style for sub-nav links */
.sub-nav a {
    padding: 10px;
    text-decoration: none;
    display:list-item;
    color: white;
    transition: background-color 0.3s;
    z-index: 1001; /* Ensure links are above other content */
}


/* Hamburger Menu Hover Animation */
.menu-toggle {
    font-size: 30px;
    cursor: pointer;
    transition: transform 0.3s;
    z-index: 1000; /* Ensure menu toggle is on top */
}

.menu-toggle:hover {
    transform: rotate(90deg); 
    color: #000000;/* Rotates the icon on hover */
}

/* Close Button Animation */
.close-btn {
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
    z-index: 1000; /* Ensure close button is on top */
}

.close-btn:hover {
    color: rgb(153, 185, 186);
    transform: rotate(-90deg); /* Rotates the icon on hover */
}



/* Navigation Bar Style */




.left-nav ul li {
    margin: 20px 0;
}



.left-nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s;
}


.left-nav ul li a:hover {
    color: #000000;
}


.main-content.shifted {
    margin-left: 200px; /* Adjust this value according to the width of your left nav */
}

.hero {
    position: relative;
    width: 100%;
    height: 70vh;

}
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}
.hero-slideshow {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: block;  /* Ensure it's visible */
    visibility: visible;
    z-index: 10;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100vh;
    opacity: 0;
    display: none;
    transition: opacity 1s ease-in-out;
}
.hero-slide h1{
    position: absolute;
    font-size: 60px;
    top: 40%;
    left: 25%;
    transform: translate(-50%, -50%);
    text-align: center;
    color:#ffffff;

}
.hero-slide img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.hero-slide.active {
    display: block;
    opacity: 1;
}
.prev2, .next2 {
    cursor: pointer;
    position: absolute;
    bottom: 10px; /* Position buttons at the bottom */
    left: 48.8%; /* Center the buttons horizontally */
    transform: translateX(-95%); /* Adjust centering */
    width: auto;
    padding: 16px;
    color: rgb(153, 185, 186);
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 3px;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5); /* Adding a semi-transparent background for better visibility */
}

.prev2 {
    margin-right: 50px; /* Add space between prev and next buttons */
}

.next2 {
    margin-left: 50px; /* Add space between prev and next buttons */
}

.prev2:hover, .next2:hover {
    background-color: #2c3e50;
}
.rtl .prev2 {
    left: 52%; /* Space from left for the previous button */
    right: auto; /* Reset right for LTR */
}

.rtl .next2 {
    right: 50%; /* Space from right for the next button */
    left: auto; /* Reset left for RTL */
}
.rtl .prev23 {
    left: 65.9%; /* Space from left for the previous button */
    right: auto; /* Reset right for LTR */
}

.rtl .next23 {
    right: 65.9%; /* Space from right for the next button */
    left: auto; /* Reset left for RTL */
}
.hero-content h1 {
    font-size: 48px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.hero h2 {
    margin: 0;
    font-size: 3em;
}

.hero p {
    font-size: 1.2em;
}
.our-partners {
    padding: 60px 0;
    background-color: #fafafa; /* Light background for contrast */
    text-align: center;
}

.our-partners .container {
    max-width: 1200px;
    margin: 0 auto;
}

.our-partners h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: rgb(153, 185, 186); /* Company color */
    font-weight: bold; /* Make it bold */
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Space between items */
}

.partner-item {
    width: 220px; /* Set a fixed width for uniformity */
    background: #ffffff; /* White background for partner items */
    border: 2px solid #ffffff; /* Border in company color */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transition for hover effects */
}

.partner-item:hover {
    transform: translateY(-5px); /* Slight upward movement on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Increase shadow on hover */
}

.partner-item img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.partner-item p {
    margin-top: 10px;
    font-size: 18px;
    color: #555;
    font-weight: bold; /* Make partner names bold */
}

.get-in-touch-container {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.get-in-touch-tab {
    background-color: rgb(153, 185, 186);
    color: white;
    padding: 15px 30px; /* Increased padding */
    cursor: pointer;
    border-radius: 5px 5px 0 0;
    font-size: 1.2em; /* Increased font size */
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.get-in-touch-tab:hover {
    background-color: rgb(153, 185, 186); /* Darker blue on hover */
    transform: scale(1.1); /* Slightly bigger on hover */
}

.contact-form {
    display: none;
    background-color: white;
    padding: 25px; /* Increased padding */
    border: 1px solid #ddd;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 350px; /* Increased width */
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(10px);
    opacity: 0;
}

.contact-form.show {
    transform: translateY(0);
    opacity: 1;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 5px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    margin-bottom: 10px;
    padding: 12px; /* Increased padding */
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em; /* Increased font size */
}

.contact-form button {
    color: #ffffff;
    background-color: #454f50;
    padding: 12px; /* Increased padding */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em; /* Increased font size */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-form button:hover {
    background-color: rgb(153, 185, 186);
    transform: scale(1.05); /* Slightly bigger on hover */
}

/* Updated Footer Style */
/* Footer Styles */
.footer {
    background-color: #454f50;
    color: #f0ecec;
    padding: 40px 0;
    text-align: center;
}
/* Initially hide the footer */

/* Define the fadeIn animation */
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.footer {
    position: relative; /* Ensures it follows the document flow */
    clear: both; /* Clears any floated elements above */
    width: 100%; /* Ensures it spans the page width */
}
.footer-contact a {
    color: #fff;
    text-decoration: none;
}
.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo img {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links ul li {
    margin: 0 15px;
}

.footer-links ul li a {
    color: #f0ecec;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #ccc;
}

.footer-social h3 {
    margin-bottom: 10px;
}

.footer-social a {
    margin: 0 10px;
    display: inline-block;
}

.footer-social img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s;
}

.footer-social img:hover {
    transform: scale(1.1);
}

.footer-copy {
    margin-top: 20px;
}

.footer-copy p {
    margin: 0;
}


/* Fade-in Animation for Footer */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px); /* Slide up from below */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* Final position */
    }
}

footer {
    animation: fadeIn 1.5s ease-out; /* Apply fade-in animation */
}


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(50px); }
    to { transform: translateY(0); }
}

.main-content2 {
    margin-top: 30px;
    padding: 10px;
        align-items: center;
        right:30vh;
    
}
.hero0 {
    position: relative;
    width: 100%;

}
.hero0 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container while maintaining aspect ratio */
}
.visit {
    background-color: #ffffff;
    padding: 40px 0;
}
.location0 {
    display: none;
    color: #ffffff;
}

.location0.active {
    display: block;
    background-color: #454f50;
}

.container0 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.locations-nav0 {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.locations-nav0 button {
    background-color: rgb(153, 185, 186);
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.locations-nav0 button:hover,
.locations-nav0 button.active {
    background-color: #2c3e50;
}

.locations0 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    color: rgb(153, 185, 186);
}

.location0 {
    background-color: #fff;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    width: 100%;
    max-width: 800px;
    text-align: center;
    display: none;

}

.location0 iframe {
    width: 100%;
    height: 300px;
    border: none;
    margin-bottom: 10px;
}

.location0 h3 {
    margin: 10px 0;
}

.location0 p {
    margin: 0;
}

.location0.active {
    display: block;
}

.location0:hover {
    transform: translateY(-10px);
}

.contact-form0 {
    background-color: #fff;
    padding: 40px 20px;
    margin: 40px 0;
    text-align: center;
    z-index: 1; /* Ensuring form is on top */
    position: relative;
    overflow: hidden;
}
.section-title0{
    text-align: center;
    margin-bottom: 20px;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px; 
    color: rgb(90, 139, 133);
}
.section-title01{
    text-align: center;
    margin-bottom: 20px;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px; 
    color: rgb(90, 139, 133);
}
.form-group0 {
    margin-bottom: 20px;
    text-align: center;
}

.form-group0 label {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
    color: #34495e;
}

.form-group0 input,
.form-group0 textarea {
    width: 80%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s;
}
.contact-form0 input[type="text"],
.contact-form0 input[type="number"],
.contact-form0 input[type="email"],
.contact-form0 textarea,
.contact-form0 select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: rgb(153, 185, 186);
    outline: none;
}

button[type="submit0"] {
    background-color: rgb(153, 185, 186);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;


}

button[type="submit0"]:hover {
    background-color: #2c3e50;
}
.hero13 {
    position: relative;
    overflow: hidden;
    width:100%;
    height: 30vh;
    /* Reduce margin to bring small-nav closer */
}

.hero13 .hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    object-fit: cover;
}

/* Small Navigation */
/* Base styles */
/* Base styles */
.hidden {
    display: none;
}



/* Small nav styles */
.small-nav {
    background-color: #333;
    overflow: hidden;
    position: relative;
    bottom: 64%;
    width: 100%;
}

.small-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.small-nav ul li {
    flex: 1;
    text-align: center;
}

.small-nav ul li a {
    display: block;
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    font-weight: bolder;
}

.small-nav ul li a:hover {
    background-color: #ddd;
    color: black;
    font-weight: bolder;
}

.small-nav a.active {
    background-color: #ddd;
    color: black;
    font-weight: bolder;/* Underline effect for active link */
}
.container22 {
    margin: 50px auto;
    max-width: 1200px;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
    color: rgb(153, 185, 186);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-items: center;
    padding: 20px;
}

/* Team Member Card */
.team-member {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    max-width: 300px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

/* Image */
.team-member img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Name Styling */
.team-member h3 {
    font-size: 1.5rem;
    margin: 15px 0 5px;
    color: #333;
}

/* Title Styling */
.team-member p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #777;
}

/* Grid layout */
.grid-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.image-container {
    width: 45%;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.text-container {
    width: 50%;
}

/* Navigation links styling */
.navigation-links {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.navigation-links a {
    text-decoration: none;
    padding: 10px 20px;
    background-color: transparent;
    border-radius: 5px;
    font-size: larger;
    color: #a1a1a1;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.navigation-links a {
    background-color: transparent;
    color: #969696;
    text-decoration: none; /* Remove default underline */
    position: relative; /* Create a positioning context for the pseudo-element */
}

.navigation-links a:hover {
    background-color: transparent;
    color: rgb(153, 185, 186);
    text-decoration: none;
    /* No underline for hover */
}

.navigation-links a.active{
    color: rgb(153, 185, 186);
}

.navigation-links a.active::after {
    content: ""; /* Empty content for the pseudo-element */
    display: block;
    width: 100%; /* Full width of the anchor tag */
    height: 3.5px; /* Thickness of the underline */
    background-color: rgb(153, 185, 186); /* Color of the underline */
    position: absolute;
    color: rgb(153, 185, 186);
    bottom: -10px; /* 20px space below the text */
    left: 0; /* Align to the left edge */
}

/* Content styling */
.content {
    display: none;
}

.content h2 {
    font-size: 50px;
    color: rgb(153, 185, 186);
    text-align: left;
    margin-bottom: 10px;
}
#values-content {
    text-align: left; /* Left-aligns all text within the div */
}


#values-content ul {
    font-size: 0.875em; /* Smaller font size for the list items */
    padding-left: 20px; /* Optional: adds padding to align list items */
}

#values-content li {
    margin-bottom: 5px; /* Optional: space between list items */
}
.content p, .content ul {
    font-size: 18px;
    line-height: 1.6;
}

.content ul {
    padding-left: 20px;
}

.content ul li {
    margin-bottom: 10px;
}

#mission-content {
    display: block;
    text-align: left; /* Show the first content section by default */
}
#vision-content {
    display: block;
    text-align: left; /* Show the first content section by default */
}


.ceo-message-box {

    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
  
}

.message-text {
    width: 50%; /* Adjust this as needed */
    padding-right: 20px;
    text-align: left;
    
}

.message-text h2 {
    font-size: 2.5rem;
    color: rgb(153, 185, 186);
    margin-bottom: 15px;
}

.message-text p {
    font-size: 1.2rem;
    color: #3d3d3d;
    margin-bottom: 20px;
}

.ceo-image {
    width: 45%;
    height: auto;
    padding-left: 70%;
}



#read-more-btn {
    background-color: rgb(153, 185, 186);
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#read-more-btn:hover {
    background-color: #083a3e;
}

/* Modal Styles */
.modalc {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

.modalc-content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    position: relative;
    display: flex;
    justify-content: flex-start; /* Aligns items to the start (image first) */
    align-items: center; /* Centers the items vertically */
    text-align: left;
    flex-wrap: wrap; /* In case content overflows on small screens */
}

.close-btnc {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    color: #333;
    cursor: pointer;
}

.modal-ceo-image {
    width: 30%;
    height: auto;
    border-radius: 10px;
    margin-right: 20px; /* Space between image and text */
}

.modal-message-text {
    width: 100%;
    align-items: center ;
    text-align: center;
}

.modal-message-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.modal-message-text p {
    font-size: 1.2rem;
    color: #333;
}


.modal99 {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    padding-top: 15%;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4); /* Black with opacity */
}

/* Modal content */
.modal-content99 {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

/* Close button */
.close99 {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close99:hover,
.close99:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}





.main-content23{
    padding: 20px;
}
.main-content23 h2 {
    font-size:xx-large;
    text-align: center;
    font-style: inherit;
}
/* Slideshow styles */
/* Slideshow container style */
#slideshow-container23 {
    position: relative;
    width: 100%;
    display: block;
/* Set a minimum height, adjust based on your design */
    overflow: hidden;

}
.slideshow-container23 {
    min-height: 300px; /* Adjust as needed */
    position: relative;
}
.slideshow-container23 {
    position: relative;
    width: 100%; /* Make the slideshow take up the full width of its container */
    max-width: 40%; /* Ensure the slideshow does not exceed 100% width */
    margin: auto;
    overflow: hidden; /* Hide anything that goes beyond the boundaries of the container */
}

/* Slides */
.mySlides23 {
    display: none; /* Hide all slides by default */
    width: 100%; /* Make each slide take up 100% of the slideshow container */
    height: auto; /* Maintain aspect ratio for the images */
}

/* Image styling to ensure it scales properly */
.mySlides23 img {
    width: 100%; /* Make the image width fill the container */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Ensure the image covers the full slide area */
}

/* Navigation arrows */
.prev23, .next23 {
    position: absolute;
    top: 90%;
    padding: 16px;
    color: rgb(243, 248, 248);
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s; /* Added transition for color */
    z-index: 1000;
}

.prev23 {
    left: 31.2%;
    transform: translateY(-50%);
}

.next23 {
    right: 31.2%;
    transform: translateY(-50%);
}

/* Hover effect for .prev23 and .next23 */
.prev23:hover, .next23:hover {
    background-color: rgba(0, 0, 0, 0.6); /* Dark background */
    color: #fff; /* Change text color on hover */
}


/* Navigation dots */
.dot {
    height: 15px;
    width: 15px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s;
}

/* Active dot style */
.dot.active {
    background-color: #717171;
}

/* Small screens */
@media (max-width: 768px) {
    /* Adjust the slideshow for smaller screens */
    .slideshow-container23 {
        position: relative;
        width: 100%; /* Make the slideshow take up the full width of its container */
        max-width: 100%; /* Ensure the slideshow does not exceed 100% width */
        margin: auto;
        overflow: hidden; /* Hide anything that goes beyond the boundaries of the container */
    }
    .mySlides23 img {
        width: 100%;
        height: auto;
        object-fit: contain; /* Keep image fully visible */
    }

    .prev23, .next23 {
        font-size: 16px; /* Slightly smaller navigation arrows */
        padding: 12px;
    }

    .dot {
        height: 10px; /* Smaller dots on mobile */
        width: 10px;
    }
    .main-content2 {
        text-align: center;
        padding: 10px;
        margin-left: calc(30% - 150px);
    }
    .destinations-map {
        position: relative;
        text-align: center; /* Center text if you want the heading to be centered */
        padding-top: 100px; 
        margin-top: 40px;/* Add some space above the map if needed */
    }
.destination-container {
    padding-top: 0;
    margin-top: -160px;
    margin-bottom:60vh;/* Pull it upward */
}
}

/* Extra small screens (mobile portrait) */
@media (max-width: 480px) {
    /* Adjust the slideshow for smaller mobile screens */
    .slideshow-container23 {
        position: relative;
        width: 100%; /* Make the slideshow take up the full width of its container */
        max-width: 100%; /* Ensure the slideshow does not exceed 100% width */
        margin: auto;
        overflow: hidden; /* Hide anything that goes beyond the boundaries of the container */
    }
    .mySlides23 img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .prev23, .next23 {
        font-size: 14px; /* Even smaller arrows */
        padding: 10px;
    }

    .dot {
        height: 8px; /* Even smaller dots */
        width: 8px;
    }
}


.text23 {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

.numbertext23 {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

.fade23 {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade23 {
    from {opacity: .4}
    to {opacity: 1}
}

/* Hexagon grid styles */
.hex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.hex-title h2 {
    font-size:xx-large;
    text-align: center;
    padding: 20px;
    font-style: inherit;
}


.hex {
    position: relative;
    width: 200px;
    height: 200px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    overflow: hidden;
    cursor: pointer;
    opacity: 0; /* Initial state */
    transform: translateY(20px); /* Initial state */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out; /* Smooth transition */
}

.hex:before, .hex:after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
}

.hex:before {
    bottom: 100%;
    border-bottom: 28.87px solid rgb(153, 185, 186);
}

.hex:after {
    top: 100%;
    width: 0;
    border-top: 28.87px solid rgb(153, 185, 186);
}
.hex.in-view {
    opacity: 1; /* Fade in */
    transform: translateY(0); /* Move to original position */
}
.hex img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hex:hover {
    transform: scale(1.1);
}
.modal3 {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 9999; /* Ensure it's above all other elements */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.8); /* Black background with opacity */
}

.modal3-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
    animation: fadeIn 0.3s; /* Optional: Add a fade-in effect */
}

.close3 {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

/* Add a fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


.close3:hover,
.close3:focus {
    color: #bbb; /* Light grey color when hovered/focused */
}




/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}
#img23 {
    width: 100%;
    height: auto;
}
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.modal-content {    
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform: scale(0)} 
    to {transform: scale(1)}
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
.hero14 {
    position: relative;
    overflow: hidden;
    width: 100vw; /* Full viewport width */
    height: 40vh; /* Set the desired height */
}

.hero14 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Full width of the container */
    height: 100%; /* Full height of the container */
    object-fit: cover; /* Ensures the image covers the entire container */
    object-position: center; /* Centers the image content */
}


/* Discover Our Destination Section */
/* Basic styles for the navigation */
/* Basic styles for the navigation */
.nav-container {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}


button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: 2px solid #333;
    background-color: #fff;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #333;
    color: #fff;
}

/* Hide sections by default */
.location-section {
    display: none;
}

.hidden {
    display: none;
}

/* Animation for fading in */
.fade-in {
    display: block;
    opacity: 0;
    animation: fadeIn 1s forwards;
}

/* Keyframes for fade-in effect */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Container for the location sections */
.location-section {
    display: flex; /* Flexbox for side-by-side alignment */
    flex-wrap: wrap; /* Ensure responsiveness and wrapping */
    gap: 20px; /* Space between each place */
    padding: 20px; /* Padding around the container */
    justify-content: space-evenly; /* Even spacing between items */
}

/* Style each place */
.place {
    position: relative;
    width: 45%; /* Adjust width to ensure two cards fit side by side */
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
    margin-bottom: 20px; /* Add some space below each card */
}

/* Image styling */
.place img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease; /* Add hover effect to the image */
}

/* Hover effect: Lift the card and increase the shadow */
.place:hover {
    transform: translateY(-10px); /* Lift the card */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Deeper shadow on hover */
}

/* Hover effect for image */
.place:hover img {
    transform: scale(1.1); /* Slight zoom on hover */
}

/* Style the heading and paragraph */
.place h4 {
    font-size: 20px; /* Slightly larger heading */
    margin-top: 15px;
    color: #333;
}

.place p {
    font-size: 16px; /* Larger paragraph text */
    color: #666;
    margin: 10px 0;
}

/* Button overlay that appears on hover */
.place-buttons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark transparent overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0; /* Initially hidden */
    transition: opacity 0.3s ease; /* Smooth transition */
}

/* Show button overlay on hover */
.place:hover .place-buttons {
    opacity: 1;
}

/* Style for buttons */
.place-buttons .btn {
    background-color: #ffffff;
    color: #333;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px; /* Larger button size */
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Button hover effect */
.place-buttons .btn:hover {
    background-color: rgb(153, 185, 186);
    color: #ffffff;
}

/* Responsive adjustments */


.success-message {
    color: green;
    margin-top: 10px;
}

.error-message {
    color: red;
    margin-top: 10px;
}
.destination-container h1{
    font-size: 2em; /* Adjust size as needed */
    font-weight: bold;
    margin-bottom: 20px; 
    color: rgb(153, 185, 186);
    margin-left: 50%;


}
.rtl .destination-container h1{
    font-size: 2em; /* Adjust size as needed */
    font-weight: bold;
    margin-bottom: 20px; 
    color: rgb(153, 185, 186);
    margin-right: 50%;


}
.destination-container {
    margin-top: 25px !important;
    grid-column: span 2;
    margin-bottom: 105px;
    justify-content: center;
    align-items: center;
    height: 60vh;
    
}

.destination-container1 {
    margin-top: 25px !important;
    grid-column: span 2;
    justify-content: center;
    align-items: center;
    height: 60vh;
    
}

.destination1 {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: rgba(153, 185, 186, 0.7); 
}

.destination1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(153, 185, 186, 0.8); /* Persistent semi-transparent background color */
    transition: all 0.5s ease;
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.destination1 h2{
    margin: 0;
    padding: 10px;
    color: #fff;
    z-index: 2;
    text-align: center;
    
}



.destination1:hover::before {
    width: 70%;
    height: 50%;
    top: 25%;
    left: 15%;
    background-color: rgba(131, 165, 165, 0.8); /* Maintain the background color but shrink to cover only the content */
}

.destination1:hover h2,
.destination1:hover a {
    color: #fff; /* Ensure the text color remains white */
}
.custom-button {
    width: 35%; /* Ensures the buttons take up the full width within the container */
    padding: 10px 20px;
    background-color: #ffa500;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin: 5px 0;
    position: relative;
    text-align: center; /* Center the text */
    transition: all 0.3s ease;
    z-index: 1;
}

.custom-button:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    width: 20px;
    height: 2px;
    background-color: #fff;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.custom-button:hover:before {
    opacity: 1;
    left: 0;
}
.destination1:hover h2,
.destination1:hover .custom-button {
    z-index: 3;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(131, 165, 165, 0.4); /* Semi-transparent background */
  }
  
  /* Modal Content */
  .modal-content {
    position: relative;
    background-color: rgba(131, 165, 165, 0.4); /* Semi-transparent window */
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    color: white;
    width: 80%;
    max-width: 400px;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px); /* Blur effect for background */
  }
  .modal-content h2{
    color: white;
  }
  /* Close Button */
  .close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #420505;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
  }
  
  /* Form Styles */
  form {
    display: flex;
    flex-direction: column;
  }
  
  label {
    margin-top: 10px;
  }
  
  input[type="text"],
  input[type="password"] {
    padding: 10px;
    margin-top: 5px;
    width: 95%;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  button {
    margin-top: 20px;
    padding: 10px;
    background-color: transparent; /* Transparent background */
    border: 2px solid white; /* Optional: Add a border */
    color: white;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: rgb(153, 185, 186);
  }
  
  a {
    color: #717171;
    text-decoration: none;
    margin-top: 10px;
  }
  
    a :hover {
    text-decoration: underline;
  }
  
  .hidden {
    display: none;
  }



/* Language switcher button styles */
.lang-button {
     /* Green background */
     background-color: transparent; /* Transparent background */
     border: 2px solid white; /* Optional: Add a border */
     color: white; /* Green text */
     padding: 5px 10px; /* Padding */
     text-align: center;
     text-decoration: none;
     display: inline-block !important;
     z-index: 1300;
     font-size: 18px; /* Font size */
     font-weight: bold;
     margin: 4px 5px;
     cursor: pointer; /* Pointer cursor on hover */
     border-radius: 5px; /* Rounded corners */
     transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition */
}

.lang-button.active {
    background-color: #000000;
    color: #fff;
    border-color: #fff;
}

.lang-button:hover {
    background-color: black ;
}

.language-switcher {
    display: flex !important;
    align-items: center;
    margin-left: 20px;
}

  .login-button {
     /* Green background */
     background-color: transparent; /* Transparent background */
     border: 2px solid white; /* Optional: Add a border */
     color: white; /* Green text */
     padding: 10px 20px; /* Padding */
     text-align: center;
     text-decoration: none;
     display: inline-block;
     font-size: 18px; /* Font size */
     font-weight: bold;
     margin: 4px 20px;
     cursor: pointer; /* Pointer cursor on hover */
     border-radius: 5px; /* Rounded corners */
     transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition */


  }
  
  
  .login-button:hover {
    background-color: rgb(153, 185, 186); /* Darker green on hover */
  }
  /* Careers Page Main Content */
.main-content-careers {
    background-color: #f8f9fa;
    padding: 50px 0;
    font-family: 'Arial', sans-serif;
    top: 0;
}

.container-careers {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.careers-info h2 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.careers-info p {
    font-size: 1.2em;
    color: #7f8c8d;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.current-openings {
    margin-top: 50px;
}

.current-openings h2 {
    font-size: 2em;
    color: #27ae60;
    margin-bottom: 20px;
    text-align: center;
}

.current-openings ul {
    list-style-type: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
}

.current-openings ul li {
    background-color: #ecf0f1;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 1.1em;
    color: #34495e;
    display: flex;
    align-items: center;
}

.current-openings ul li strong {
    color: #2c3e50;
    margin-right: 10px;
    font-size: 1.2em;
}

.current-openings p {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1em;
    color: #7f8c8d;
}

/* Hover effects */
.current-openings ul li:hover {
    background-color: #d1e8e4;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.map-container {
    position: relative;
    display: inline-block;
    max-width: 80%; /* Adjust as needed */
    margin: 0 auto;
}

.map-image {
    display: block;
    width: 100%; /* Responsive */
    height: auto; /* Maintain aspect ratio */
}

.location-container {
    position: absolute;
    display: flex;
    align-items: center;
    text-decoration: none; /* Remove underline */
    color: #fff; /* Default color */
}
.destinations-map {
    position: relative;
    text-align: center; /* Center text if you want the heading to be centered */
    padding-top: 50px; /* Add some space above the map if needed */
}

.container55 {
    position: relative;
}

.container55 h2 {
    margin-bottom: 20px;
    font-size: 2em; /* Space between heading and map */
}
.location-logo {
    width: 30px; /* Adjust size */
    height: auto; /* Maintain aspect ratio */
    margin-right: 10px;
}

.map-container {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.map-image {
    display: block;
    width: 100%;
    height: auto;
}

.location-name {
    font-weight: bold;
    
}

/* Link styling */
.location-container a {
    display: inline-block;
    color: #fff; /* Default text color */
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease; /* Smooth transitions for color and movement */
}

/* Hover state styling */
.location-container a:hover {
    transform: translateX(10px); /* Move link 10px to the right */
    color: #fff; /* Change text color to white */
}

/* Optionally, change the background color to white on hover */
.location-container a:hover::after {
    background-color: #fff; /* Change underline color to white */
}

/* Styling for the line (if used for visual effects) */
.location-container .line {
    background: #fff; /* Default line color */
    transition: background 0.3s ease; /* Smooth transition for line color */
}

/* Change line color on link hover */
.location-container a:hover .line {
    background: #fff; /* Change line color to white */
}


.social-media-buttons {
    position: fixed;
    right: 20px; /* Adjust spacing from the right edge */
    top: 50%; /* Position at the center vertically */
    transform: translateY(-50%); /* Center the buttons vertically */
    z-index: 900; /* Ensure they are above other content */
    display: flex;
    flex-direction: column;
    gap: 10px; /* Space between buttons */
}

/* Social Media Button Styling */
.social-button {
    background-color: rgb(153, 185, 186); /* White background for buttons */
    border-radius: 50%; /* Circular buttons */
    padding: 10px; /* Space inside the button */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); /* Add shadow */
    transition: transform 0.3s, background-color 0.3s; /* Smooth transition */
}

/* Icon Styling */
.social-button img {
    width: 24px; /* Adjust size as needed */
    height: 24px;
}

/* Hover Effect */
.social-button:hover {
    background-color: rgb(153, 185, 186); /* Light grey background on hover */
    transform: translateX(5px); /* Move the button slightly to the right */
}
/* Styling the Coming Soon message */
/* Styling the Coming Soon message */
.coming-soon-container {
    position: fixed;
    bottom: 20px; /* Positioning at the bottom of the screen */
    right: 20px; /* Right side of the screen */
    z-index: 1000;
}

/* Coming Soon Button Styling */
.coming-soon-button {
    padding: 15px 30px;
    background-color: #ff5757;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-right:1420px;
    animation: pulse 2s infinite; /* Button animation */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.coming-soon-button:hover {
    transform: scale(1.05); /* Slightly grows on hover */
}

/* Pulse Animation for the Button */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Modal Styling */
.event-modal{
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

/* Modal Content */
.modalevent-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
    position: relative;
}

.modalevent-content img {
    width: 100%;
    height: auto;
    max-height: 70vh; /* Limit the image height */
}

/* Close Button Styling */
.closeevent-button {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    color: #333;
    cursor: pointer;
}

.closeevent-button:hover {
    color: #ff5757;
}

.login-b {
    padding: 10px 20px; /* Padding for the button */
    background-color: rgb(153, 185, 186); /* Your specified RGB color */
    color: white; /* Text color */
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Rounded corners */
    font-weight: bold; /* Bold text */
    transition: background-color 0.3s, transform 0.3s; /* Smooth transitions */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Shadow for the button */
    align-self: flex-end; /* Align login button to the right */
    margin-top: 15px; /* Margin to create space from close button */
}

.login-b:hover {
    background-color: black; /* Darker background on hover */
    transform: translateY(-2px); /* Lift effect on hover */
}