@font-face {
    font-family: 'Moric';
    src: url('fonts/Moric.woff') format('woff'),
         url('fonts/Moric.ttf') format('truetype'),
         url('fonts/Morise.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GROSTICK';
    src: url('fonts/GROSTICK.ttf') format('truetype'),
         url('fonts/GROSTICK.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Vonca';
    src: url('fonts/Vonca-Light.ttf') format('truetype'),
         url('fonts/Vonca-Light.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Aloevera Display';
    src: url('fonts/AloeveraDisplay-Light.ttf') format('truetype'),
         url('fonts/AloeveraDisplay-Light.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Golden';
    src: url('fonts/Golden.woff') format('woff'),
         url('fonts/Golden.ttf') format('truetype'),
         url('fonts/Golden.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    font-family: Aloevera Display;
}

.top-header {
    background-color: #f2efe7; /* Updated background color */
    color: black; /* Change text color for better contrast */
    padding: 10px;
    text-align: right;
}
.country {
    margin-left: 20px; /* Space between countries */
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to right, #3EAD51, #007C86, #292E70);
    padding: 10px 20px;
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 0;
    z-index: 100;
    font-size: 18px;
}
.country-flag {
    height: 20px; /* Adjust height of country flags */
    margin-right: 10px; /* Space between flags */
}
.logo {
    flex: 1;
}

.menu {
    flex: 2;
    text-align: center;
    color: white;
}

/* Style for the main menu */
.menu ul {
    list-style: none; /* Remove default list styling */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
}

/* Style for the main menu items */
.menu li {
    position: relative; /* Positioning for submenu */
    display: inline-block; /* Display items inline */
    margin: 0 15px; /* Space between items */
}

/* Style for submenu */
.menu li ul {
    display: none; /* Hide submenu by default */
    position: absolute; /* Position submenu */
    top: 100%; /* Position below the parent item */
    left: 0; /* Align to the left */
    background-color: #f4f4f4; /* Background color for submenu */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Shadow for depth */
    z-index: 1000; /* Ensure it appears above other content */
    white-space: nowrap; /* Prevent text wrapping */
}

/* Show submenu on hover */
.menu li:hover > ul {
    display: block; /* Show submenu on hover */
}

/* Style for submenu items */
.menu li ul li {
    display: block; /* Display submenu items as block */
    margin: 0; /* No margin */
}

/* Style for links in the menu and submenu */
.menu a {
    text-decoration: none; /* Remove underline */
    color: white; /* Text color for main menu */
    padding: 10px; /* Padding for clickable area */
    display: block; /* Make the entire area clickable */
}

/* Style for links in the submenu */
.menu li ul a {
    color: black; /* Text color for submenu items */
    padding: 10px 15px; /* Padding for submenu items */
    white-space: nowrap; /* Prevent text wrapping in submenu items */
}

/* Change background color on hover for submenu items */
.menu li ul a:hover {
    background-color: #f2efe7; /* Background color on hover */
}

.hamburger {
    flex: 1;
    text-align: right;
}

.hamburger-button {
    cursor: pointer;
    font-size: 40px;
    background: none;
    border: none;
    color: white;
}
/* Mobile styles */
.mobile-menu {
    display: none; /* Hidden by default */
    position: fixed; /* Change to fixed positioning */
    top: 0; /* Stick to the top */
    height: 100vh; /* Make the menu full height */
    right: 0; /* Align to the right */
    background-color: #f4f4f4; /* Background color for mobile menu */
    width: 200px; /* Width of the mobile menu */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    z-index: 1000; /* Ensure it appears above other content */
    overflow-y: auto; /* Allow scrolling if content exceeds height */
    text-decoration: none;

}

.mobile-menu.active {
    display: block; /* Show the mobile menu when active */
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-decoration: none;
}

.mobile-nav-links li {
    padding: 15px 20px; /* Padding for each menu item */
    border-bottom: 1px solid #ddd; /* Optional border for separation */
    text-decoration: none;
}

.mobile-nav-links a {
    text-decoration: none; /* Remove underline */
    color: inherit; /* Inherit color from parent */
}

/* Remove highlighting on mobile menu links */
.mobile-nav-links a:focus, .mobile-nav-links a:hover {
    outline: none; /* Remove outline */
    background: none; /* Remove background highlight */
}

@media (max-width: 768px) {
    .menu {
        display: none; /* Hide desktop menu */
        text-decoration: none;
    }

    .hamburger {
        display: block; /* Show hamburger button */
    }
}

.video-banner {
    position: relative;
    width: 100%;
    height: 750px; /* Set height for the video banner */
    overflow: hidden; /* Hide overflow */
}

.video-banner iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%; /* Make the video responsive */
    height: 100%; /* Make the video responsive */
    transform: translate(-50%, -50%); /* Center the video */
    pointer-events: none; /* Prevent interaction with the video */
}

.about-us {
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Align items vertically */
    padding: 40px 100px; /* Add vertical padding and 100px left/right padding */
    background-color: #f9f9f9; /* Background color for the section */
}



.about-us h2 {
    color: #c8bfa2; /* Change the title color */
    padding: 10px; /* Optional padding for the title */
    font-weight: 300;
    text-align: center;
    font-size: 36px;
}

.about-text {
    flex: 1; /* Allow text to take available space */
    padding-right: 20px; /* Add space between text and image */
    text-align: justify;
    line-height: 35px;
    font-size: 20px;
}

.about-image {
    flex: 1; /* Allow image to take available space */
    text-align: right; /* Align image to the right */
}

.about-image img {
    max-width: 100%; /* Make the image responsive */
    height: auto; /* Maintain aspect ratio */
}

.about-text {
    flex: 1; /* Allow text to take available space */
    padding-right: 20px; /* Add space between text and image */
    text-align: justify; /* Justify the text */
}

.contact-us-button {
    background: linear-gradient(to right, #3EAD51, #007C86, #292E70); /* Gradient background */
    color: white; /* Text color */
    border: none; /* Remove default border */
    border-radius: 5px; /* Rounded corners */
    padding: 10px 20px; /* Padding for the button */
    font-size: 16px; /* Font size */
    cursor: pointer; /* Pointer cursor on hover */
    margin: 20px auto 0; /* Center the button with auto left/right margins */
    display: block; /* Make the button a block element to center it */
    transition: background 0.3s; /* Smooth background transition */
}



.contact-us-button:hover {
    background: linear-gradient(to right, #007C86, #3EAD51, #292E70); /* Reverse gradient on hover */
}

@media (max-width: 768px) {
    .about-us {
        flex-direction: column; 
        padding: 20px; 
    }

    .about-text {
        padding-right: 0; 
        text-align: center; 
    }

    .about-image {
        text-align: center; 
        margin-top: 20px; 
    }
}

.help-section {
    background-color: #f2efe7; /* Change background color */
    padding: 20px; /* Padding for the section */
    text-align: center; /* Center align text */
    font-weight: 200; /* Light font weight */
    font-size: 20px;
    
}

.help-section h1{
    font-size: 40px;
}

.image-row {
    display: flex; /* Use flexbox for row alignment */
    justify-content: space-around; /* Space out the images */
    margin-top: 20px; /* Space above the image row */
}

.image-container {
    position: relative; /* Position for tag overlay */
    margin: 10px; /* Margin around each image container */
}

.image-container img {
    width: 100%; /* Make images responsive */
    max-width: 350px; /* Set a max width */
    border-radius: 5px; /* Rounded corners */
}

.tag {
    position: absolute; /* Position tag over the image */
    top: 10px; /* Position from the top */
    left: 10px; /* Position from the left */
    background-color: #c8bfa2; /* Background color for the tag */
    padding: 5px 10px; /* Padding for the tag */
    border-radius: 5px; /* Rounded corners */
    font-weight: lighter; /* Bold text for the tag */
    color: white;
}

.overlay {
    position: absolute; /* Position overlay on top of the image */
    bottom: 0; /* Align to the bottom of the image */
    left: 0; /* Align to the left */
    right: 0; /* Align to the right */
    background-color: rgba(200, 191, 162, 0.8); /* Semi-transparent background */
    color: white; /* Text color */
    text-align: center; /* Center align text */
    padding: 10px; /* Padding for the overlay */
    border-radius: 0 0 5px 5px; /* Rounded corners at the bottom */
}

h3 {
    margin: 0; /* Remove margin for the title */
    font-weight: 300; /* Light font weight for the title */
    margin-bottom: 10px;
    font-size: 20px;
}

.read-more-button {
    background: linear-gradient(to right, #3EAD51, #007C86, #292E70); /* Gradient background */
    color: white; /* Text color */
    border: none; /* Remove default border */
    border-radius: 5px; /* Rounded corners */
    padding: 10px 20px; /* Padding for the button */
    font-size: 16px; /* Font size */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background 0.3s; /* Smooth background transition */
}

/* Change background color on hover */
.read-more-button:hover {
    background: linear
}

.additional-image-row {
    display: flex;
    width: 100%; /* Ensure the row takes the full width */
    margin: 100px 0 0 0; /* Add 100px gap at the top, remove margins on the sides and bottom */
    padding: 0; /* Remove padding around the row */
}

.additional-image-container {
    position: relative;
    flex: 1; /* Allows each container to take equal space */
    /* No margin or padding to ensure no gaps */
}

.additional-image {
    width: 100%;
    height: 240px; /* Sets the height of the images */
    object-fit: cover; /* Ensures images cover the container without distortion */
    transition: filter 0.3s ease; /* Smooth transition for hover effect */
}

.additional-image-container:hover .additional-image {
    filter: brightness(40%); /* Darkens image on hover */
}

.title-overlay {
    position: absolute;
    top: 50%; /* Centers title vertically */
    left: 50%; /* Centers title horizontally */
    transform: translate(-50%, -50%); /* Adjusts position to center */
    color: white; /* Title text color */
    font-size: 40px; /* Title text size */
    text-align: center; /* Centers text */
    z-index: 1; /* Ensures title is above the image */
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .about-us {
        flex-direction: column; /* Stack items vertically */
    }

    .about-text {
        padding-right: 0; /* Remove right padding */
        text-align: center; /* Center text */
        line-height: 25px; /* Adjust line height for readability */
    }


    .video-banner {
        height: 200px; /* Reduce height for mobile */
    }

    .contact-us-button, .read-more-button {
        width: 100%; /* Make buttons full width */
        margin: 10px 0; /* Add margin for spacing */
    }

    .image-row, .additional-image-row {
        flex-direction: column; /* Stack images vertically */
        align-items: center; /* Center images */
    }

    .image-container, .additional-image-container {
        width: 100%; /* Make containers full width */
    }

    .tag, .overlay {
        font-size: 14px; /* Adjust font size for tags and overlays */
    }

    h3 {
        font-size: 18px; /* Adjust heading size for better visibility */
    }
}

.our-key-partners {
    background-color: #f2efe7;
    padding: 40px 20px; /* Adjust padding for smaller screens */
    text-align: center;
}

h1 {
    font-size: 28px; /* Smaller font size for mobile */
    font-weight: lighter;
    margin-bottom: 20px; /* Space between title and logos */
}

/* Logo slider styles */
.logo-slider {
    overflow: hidden;
    padding: 30px 0 0 0;
    white-space: nowrap;
    position: relative;
}

.logo-slider:hover .logos-slide {
    animation-play-state: paused;
}

.logos-slide {
    display: inline-block;
    animation: 45s slide infinite linear;
}

/* Responsive logo styles */
.logos-slide img {
    width: 150px; /* Adjust width for mobile */
    height: auto; /* Maintain aspect ratio */
    margin: 0 20px; /* Reduced margin for mobile */
}

/* Media query for larger screens */
@media (min-width: 768px) {
    .logos-slide img {
        width: 183px; /* Original width for larger screens */
        margin: 0 40px; /* Original margin for larger screens */
    }

    h1 {
        font-size: 36px; /* Original font size for larger screens */
    }
}

@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.newsletter-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('images/newsletter.jpg') no-repeat center center fixed;
    background-size: cover;
    padding: 50px 0;
    height: 500px;
}
.newsletter-container {
    text-align: left;
    color: white;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    max-width: 800px;
    width: 100%;
}
.newsletter-container h1 {
    font-size: 48px;
    margin: 0;
    font-weight: 300; /* Lighter font weight */
}
.newsletter-container p {
    font-size: 20px;
    margin: 10px 0 20px;
}
.email-input {
    width: 60%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #333;
    background-color: rgba(255, 255, 255, 0.7); /* Added transparency */
}
.submit-button {
    background-color: #d4c29c;
    color: #333;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.footer {
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Space out sections */
    align-items: flex-start; /* Align items to the top */
    padding: 40px 80px;
    border-top: 1px solid #d3cbb8;
}

.footer .logo {
    text-align: center; /* Center the logo */
    flex: 1; /* Allow logo section to grow */
}

.footer .logo img {
    width: 100px; /* Adjusted width */
}

.footer .site, .footer .contact {
    text-align: left; /* Align text to the left */
    flex: 1; /* Allow site and contact sections to grow */
}

.footer .site h3, .footer .contact h3 {
    color: #b8a97e;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer .site ul, .footer .contact ul {
    list-style: none;
    padding: 0;
    margin: 0; /* Reset margin */
}

.footer .site ul li, .footer .contact ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer .site ul li a, .footer .contact ul li a {
    text-decoration: none;
    color: #333;
}

.footer .contact ul li {
    display: flex;
    align-items: center;
}

.footer .contact ul li i {
    margin-right: 10px;
    color: #b8a97e;
}

.footer .social {
    display: flex;
    justify-content: center; /* Center social icons */
    margin-top: 20px;
}

.footer .social a {
    margin: 0 10px;
    color: #b8a97e;
    font-size: 20px;
}

.footer .copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #999;
}
/* Media query for mobile responsiveness */
@media (max-width: 768px) {
    .footer {
        flex-direction: column; /* Stack items vertically */
        padding: 20px; /* Reduce padding */
        align-items: center; /* Center items */
    }

    .footer .logo {
        margin-bottom: 20px; /* Space below logo */
    }

    .footer .site, .footer .contact {
        text-align: center; /* Center text for smaller screens */
        margin: 10px 0; /* Space between sections */
        flex: none; /* Reset flex properties */
    }

    .footer .site ul, .footer .contact ul {
        padding: 0; /* Remove padding */
        margin: 0; /* Remove margin */
    }

    .footer .social {
        margin-top: 10px; /* Space above social icons */
    }
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
}
.card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 10px;
    overflow: hidden;
    width: 350px; /* Increased width */
    position: relative;
    text-decoration: none;
}
.card:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
}
.card img {
    width: 100%;
    height: auto;
}
.details {
    padding: 15px;
}
.status {
    font-weight: bold;
    color: #007BFF; /* Bootstrap primary color */
}
.card .status {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
}
.card .status + .status {
    left: auto;
    right: 10px;
}
.card .heart {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    font-size: 20px;
}
.card .details {
    padding: 15px;
}
.card .details h3 {
    margin: 0;
    font-size: 24px;
    color: #333;
}
.card .details .info {
    display: flex;
    align-items: center;
    margin: 10px 0;
    font-size: 14px;
    color: #666;
}
.card .details .info i {
    margin-right: 5px;
}
.card .details .address {
    font-size: 14px;
    color: #666;
}
.card .details .id {
    font-size: 12px;
    color: #999;
    margin-top: 10px;
}
.card .details .type {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}
@media (max-width: 600px) {
    .card {
        width: 100%; /* Full width on small screens */
    }
}

.steps-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.steps-section.animate {
    opacity: 1;
    transform: translateY(0);
}

