/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background: #007BFF;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

header h1 {
    margin: 0;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    justify-content: center;
}

header nav ul li {
    margin: 0 1rem;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.language-switcher {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.language-switcher a {
    color: #fff;
    text-decoration: underline;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 2rem 1rem;
    background: #e9ecef;
}

.hero h2 {
    color: #007BFF;
}

.hero .cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    margin-top: 1rem;
    color: #fff;
    background: #007BFF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.hero .cta-button:hover {
    background: #0056b3;
}

/* Features Section */
.features ul {
    list-style: none;
    padding: 0;
}

.features li {
    margin: 0.5rem 0;
    padding: 0.5rem;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Form Styles */
form {
    background: #fff;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

form label {
    display: block;
    margin: 0.5rem 0 0.25rem;
    font-weight: bold;
}

form input,
form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

form button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

form button:hover {
    background: #0056b3;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
    font-size: 0.9rem;
}
/* Responsive Design for Mobile Devices */
@media (max-width: 768px) {
    header nav ul {
        flex-direction: column; /* Stack navigation links */
        align-items: center;
    }

    .hero {
        padding: 1rem;
    }

    .hero h2 {
        font-size: 1.5rem; /* Smaller font size for mobile */
    }

    .cta-button {
        padding: 0.5rem 1rem; /* Adjust button size */
    }

    form input,
    form textarea {
        font-size: 1rem;
    }
}
/* Button Hover Effect */
.cta-button:hover {
    background: #0056b3; /* Darker blue */
    transform: scale(1.1); /* Slight zoom effect */
    transition: all 0.3s ease-in-out;
}

/* Navigation Link Hover Effect */
header nav ul li a:hover {
    text-decoration: underline;
    color: #ddd; /* Light grey */
    transition: color 0.3s ease;
}
/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply Animation */
.hero h2, .hero p, .cta-button {
    animation: fadeIn 1s ease-in-out;
}

.features li {
    animation: fadeIn 1s ease-in-out;
    animation-delay: 0.3s;
}
/* Dropdown Menu */
nav ul li {
    position: relative; /* Needed for dropdown positioning */
}

nav ul li .dropdown {
    display: none; /* Hide dropdown by default */
    position: absolute;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    top: 100%; /* Position below parent menu */
    left: 0;
    list-style: none;
    padding: 0.5rem 0;
    z-index: 1000;
}

nav ul li .dropdown li {
    margin: 0;
}

nav ul li .dropdown li a {
    padding: 0.5rem 1rem;
    display: block;
    color: #333;
    text-decoration: none;
}

nav ul li .dropdown li a:hover {
    background: #007BFF;
    color: #fff;
}

/* Show Dropdown on Hover */
nav ul li:hover .dropdown {
    display: block;
}
/* Icon Styling */
i {
    margin-right: 0.5rem; /* Add spacing between icon and text */
    color: #007BFF;
}

nav ul li a:hover i {
    color: #0056b3; /* Change icon colour on hover */
}
/* Align Icons and Text Consistently */
nav ul li a {
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Vertically align text and icon */
    font-size: 0.9rem; /* Adjust font size if needed */
    gap: 0.5rem; /* Add spacing between icon and text */
    text-decoration: none; /* Remove underline for consistency */
    color: #333; /* Default text color */
}

nav ul li a i {
    font-size: 1rem; /* Ensure icon size matches text */
}

/* Hover Effects */
nav ul li a:hover {
    color: #007BFF; /* Change text color on hover */
}

nav ul li a:hover i {
    color: #007BFF; /* Change icon color on hover */
}
/* Dropdown Menu */
nav ul li .dropdown {
    display: none; /* Keep dropdown hidden by default */
    position: absolute;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    top: 100%; /* Position below the parent menu */
    left: 0;
    list-style: none;
    padding: 0.5rem 0;
    width: 275px; /* Set the dropdown menu width */
    z-index: 1000;
}

nav ul li .dropdown li a {
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center; /* Align text and icon in the dropdown */
    gap: 0.5rem; /* Spacing between icon and text */
    color: #333;
    text-decoration: none;
}

nav ul li .dropdown li a:hover {
    background: #007BFF;
    color: #fff;
}
/* Dropdown Menu */
nav ul li .dropdown {
    display: none; /* Keep dropdown hidden by default */
    position: absolute;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    top: 100%; /* Position below the parent menu */
    left: 0;
    list-style: none;
    padding: 0.5rem 0;
    width: 275px; /* Increase the dropdown menu width */
    z-index: 1000;
}

nav ul li .dropdown li a {
    padding: 0.5rem 1rem; /* Adjust padding for better spacing */
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Align icon and text vertically */
    gap: 0.5rem; /* Add spacing between icon and text */
    color: #333;
    text-decoration: none;
}

nav ul li .dropdown li a:hover {
    background: #007BFF; /* Highlight on hover */
    color: #fff;
}
.language-dropdown select {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}
/* Contact Form */
form {
    background: #fff;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

form label {
    display: block;
    margin: 0.5rem 0 0.25rem;
    font-weight: bold;
}

form input,
form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

form button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

form button:hover {
    background: #0056b3;
}
/* Booking Section */
.booking {
    background: #f9f9f9;
    padding: 2rem 1rem;
    text-align: center;
}

.booking form {
    background: #fff;
    padding: 1rem;
    margin: 1rem auto;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    text-align: left;
}

.booking form label {
    display: block;
    margin: 0.5rem 0 0.25rem;
    font-weight: bold;
}

.booking form input,
.booking form select {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.booking form button {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.booking form button:hover {
    background: #04356a;
}
/* General header styling */
header {
    background-color: black; /* Black background */
    text-align: center;
    padding: 3rem 1rem; /* Space around the content */
}

/* Styling for the logo letter */
.logo-letter {
    font-size: 5rem; /* Large font size for the letter N */
    font-weight: bold;
    color: gold; /* Gold color for the letter */
    margin: 0;
}

/* Styling for the text under the letter */
.logo-text {
    font-size: 1.5rem; /* Smaller size for the tagline */
    color: gold; /* Gold color for the text */
    font-weight: normal;
    margin: 0;
}
.container {
    max-width: 800px; /* Restrict the width of the content */
    margin: 0 auto; /* Center the content */
    padding: 0 1.5rem; /* Add space on the left and right */
}
max-width: 1000px;
.why-choose-us {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f9f9f9; /* Light grey background */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for a modern look */
}

.why-choose-us h2 {
    font-size: 2rem;
    color: #333; /* Darker color for heading */
    text-align: center;
    margin-bottom: 1.5rem;
}

.why-choose-us ul {
    list-style: none; /* Remove default bullet points */
    padding: 0;
}

.why-choose-us li {
    margin: 1rem 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #555; /* Softer color for text */
}

.why-choose-us li strong {
    color: #000; /* Highlight bold text */
    font-weight: bold;
}
.why-choose-us li i {
    color: gold; /* Match the gold theme */
    margin-right: 0.5rem; /* Add spacing between the icon and text */
    font-size: 1.2rem; /* Adjust the icon size */
    vertical-align: middle; /* Align icon with the text */
}
.container {
    max-width: 800px; /* Set the maximum width for the content */
    margin: 0 auto; /* Center the content horizontally */
    padding: 0 1.5rem; /* Add padding to both sides for spacing */
}
.why-choose-us {
    margin: 2rem auto; /* Add vertical spacing */
    background: linear-gradient(135deg, #000000, #303795); /* Gradient background */
    border-radius: 8px; /* Rounded corners */
    color: white; /* Ensure text color is readable */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 2rem; /* Add spacing inside the section */
}
@media (max-width: 768px) {
    .container {
        padding: 0 1rem; /* Reduce padding slightly for smaller screens */
    }
    .why-choose-us {
        padding: 1.5rem; /* Adjust internal padding for smaller devices */
    }
}
.why-choose-us {
    margin: 2rem auto; /* Add vertical spacing */
    background-color: #1a1a1a; /* A softer black for the background */
    border: 2px solid gold; /* Gold border to tie in with the logo */
    border-radius: 8px; /* Rounded corners */
    color: white; /* White text for good contrast */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); /* Slight shadow for depth */
    padding: 2rem; /* Add spacing inside the section */
    text-align: justify; /* Justify the text */
}
.why-choose-us h2 {
    font-size: 2rem;
    color: gold; /* Gold color for the heading */
    text-align: center; /* Center the heading */
    margin-bottom: 1.5rem;
}
.why-choose-us {
    background: linear-gradient(135deg, #1a1a1a, #333333); /* Gradient with subtle black tones */
}
.why-choose-us li strong {
    color: #ffffff; /* White bold text for contrast */
    font-weight: bold; /* Emphasize strong text */
}
.highlight-text {
    color: #ffffff; /* Bright white for readability */
}
.highlight-text {
    color: #fdfdfd; /* Adjusted for softer contrast */
}
.why-choose-us {
    margin: 2rem auto; /* Add vertical spacing */
    background-color: #1a1a1a; /* A softer black for the background */
    border: 2px solid gold; /* Gold border to tie in with the logo */
    border-radius: 8px; /* Rounded corners */
    color: #e6e6e6; /* Light grey for better readability */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); /* Slight shadow for depth */
    padding: 2rem; /* Add spacing inside the section */
    text-align: justify; /* Justify the text */
}

.why-choose-us h2 {
    font-size: 2rem;
    color: gold; /* Gold color for the heading */
    text-align: center; /* Center the heading */
    margin-bottom: 1.5rem;
}

.why-choose-us li {
    color: #e6e6e6; /* Light grey text for better contrast */
}

.why-choose-us li strong {
    color: #ffffff; /* White bold text for contrast */
    font-weight: bold; /* Emphasize strong text */
}

.highlight-text {
    color: #e6e6e6; /* Consistent light grey for readability */
}
.why-choose-us li strong {
    color: gold; /* Use gold to make the headings stand out */
    font-weight: bold; /* Keep the bold style */
}
.why-choose-us {
    margin: 2rem auto; /* Apply the same vertical margin */
    background-color: #1a1a1a; /* Background color */
    border: 2px solid gold; /* Gold border */
    border-radius: 8px; /* Rounded corners */
    color: #e6e6e6; /* Light grey text */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    padding: 2rem; /* Add internal spacing */
    text-align: justify; /* Justify the text */
}

.why-choose-us {
    margin: 2rem auto; /* Apply the same vertical margin */
    background-color: #1a1a1a; /* Background color */
    border: 2px solid gold; /* Gold border */
    border-radius: 8px; /* Rounded corners */
    color: #e6e6e6; /* Light grey text */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    padding: 2rem; /* Add internal spacing */
    text-align: justify; /* Justify the text */
}
.webinar {
    background-color: #f7f7f7; /* Light background for contrast */
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.webinar h2 {
    text-align: center;
    color: gold; /* Matches the logo color */
    margin-bottom: 1rem;
}

.webinar p {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1rem;
    color: #333;
}

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

.webinar label {
    margin: 0.5rem 0 0.2rem;
    font-weight: bold;
}

.webinar input,
.webinar textarea {
    width: 100%;
    max-width: 500px;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.webinar button {
    background-color: gold;
    color: #000;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.webinar button:hover {
    background-color: #ffc107;
}
.webinar {
    margin: 2rem auto;
    padding: 2rem;
    background-color: #ffffff; /* White background */
    border: 3px solid gold; /* Gold border to frame the box */
    border-radius: 8px; /* Slightly rounded corners */
    color: #1a1a1a; /* Dark text for readability */
    max-width: 600px; /* Limit width for better readability */
    text-align: center; /* Center-align text */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.webinar h2 {
    font-size: 1.8rem;
    color: gold; /* Gold heading to match border */
    margin-bottom: 1rem;
}

.webinar p {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6; /* Improved readability */
    color: #333333; /* Softer dark text */
}

.webinar .framed-form {
    display: flex;
    flex-direction: column; /* Stack inputs vertically */
    gap: 1rem; /* Space between inputs */
}

.webinar .framed-form label {
    font-size: 1rem;
    text-align: left;
    color: #1a1a1a; /* Dark label text */
}

.webinar .framed-form input,
.webinar .framed-form textarea {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc; /* Subtle border */
    border-radius: 4px; /* Slightly rounded inputs */
    background-color: #f9f9f9; /* Light grey background for inputs */
}

.webinar .framed-form input:focus,
.webinar .framed-form textarea:focus {
    border-color: gold; /* Highlight border on focus */
    outline: none; /* Remove default outline */
    box-shadow: 0 0 4px gold; /* Glow effect */
}

.webinar .framed-form button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    color: #ffffff; /* White text */
    background-color: gold; /* Gold button */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease; /* Smooth hover effect */
}

.webinar .framed-form button:hover {
    background-color: #d4af37; /* Slightly darker gold on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Hover shadow */
}
.testimonials {
    margin: 3rem auto;
    padding: 2rem;
    background-color: #f9f9f9; /* Light background for contrast */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    text-align: center; /* Center-align text */
}

.testimonials h2 {
    font-size: 2rem;
    color: #333333; /* Dark heading text */
    margin-bottom: 1.5rem;
}

.testimonials .testimonial {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-left: 4px solid gold; /* Gold accent for testimonials */
    background-color: #ffffff; /* White background for contrast */
    display: inline-block; /* Ensures testimonials don’t stretch full width */
    text-align: left; /* Align text left */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* Slight shadow */
    max-width: 500px; /* Limit width for better readability */
}

.testimonials .testimonial p {
    font-size: 1rem;
    line-height: 1.6; /* Improve readability */
    color: #555555; /* Softer text for the body */
}

.testimonials .testimonial h4 {
    font-size: 1rem;
    font-weight: bold;
    color: #333333; /* Darker text for names */
    margin-top: 0.5rem;
    text-align: right; /* Align names to the right */
}
.testimonial img {
    width: 50px; /* Adjust size */
    height: 50px; /* Ensure square aspect */
    border-radius: 50%; /* Make it circular */
    margin-bottom: 0.5rem; /* Add space below */
    object-fit: cover; /* Ensure image fills the circle */
}
.testimonial-carousel {
    margin-top: 2rem;
}

.slick-dots {
    margin-top: 1rem;
}

.slick-dots li button:before {
    color: gold; /* Match branding */
}
.carousel-section {
    margin: 2rem 0;
    text-align: center;
}

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

.slick-prev, .slick-next {
    font-size: 2rem;
    color: gold; /* Match your website theme */
    z-index: 1;
}

.slick-prev:hover, .slick-next:hover {
    color: white;
}

.slick-dots li button:before {
    color: gold; /* Custom dot color */
}
.carousel img {
    width: auto; /* Maintain the original width */
    height: auto; /* Maintain the original height */
    max-width: 300px; /* Set a maximum width */
    max-height: 200px; /* Set a maximum height */
    display: block; /* Ensures proper alignment */
    margin: 0 auto; /* Centres the image horizontally */
}
.carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Hides content outside the carousel boundaries */
    padding: 10px; /* Adds space around the images */
    background-color: #f8f8f8; /* Optional: Add a light background */
    border-radius: 8px; /* Optional: Add rounded corners */
}
.carousel img:hover {
    transform: scale(1.05); /* Slightly enlarges the image on hover */
    transition: transform 0.3s ease-in-out; /* Smooth animation */
}
.carousel img {
    width: auto; /* Maintain the original aspect ratio */
    max-width: 300px; /* Adjust the maximum width */
    max-height: 200px; /* Adjust the maximum height */
    display: block;
    margin: 0 auto; /* Center the images */
}
.video-section {
    text-align: center;
    margin: 2rem auto;
}

.video-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333; /* Adjust color to fit your theme */
}

.video-section p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #666; /* Adjust color to fit your theme */
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.blog {
    padding: 2rem;
    background-color: #f9f9f9;
}

.blog h2 {
    text-align: center;
    color: #333;
}

.blog-post {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.blog-post h3 {
    margin: 0 0 0.5rem;
    color: #007BFF;
}

.blog-post p {
    margin: 0;
}

.blog-post a {
    color: #007BFF;
    text-decoration: none;
}

.blog-post a:hover {
    text-decoration: underline;
}
.blog {
    padding: 2rem 0;
    background-color: #f8f9fa; /* Light background */
}

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

.blog h1 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: #333;
}

.blog-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.blog-item {
    background: #ffffff; /* White background */
    border: 1px solid #e0e0e0; /* Light border */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 1rem;
    border-radius: 8px; /* Rounded corners */
    flex: 1 1 calc(50% - 1rem); /* Responsive 2 columns */
    text-align: center;
}

.blog-item h2 {
    font-size: 1.5rem;
    color: #007bff; /* Blue for heading */
    margin-bottom: 0.5rem;
}

.blog-item p {
    font-size: 1rem;
    color: #666; /* Subtle text */
    margin-bottom: 1rem;
}

.blog-item .read-more {
    color: #ffffff;
    background: #007bff; /* Blue background */
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.blog-item .read-more:hover {
    background: #0056b3; /* Darker blue on hover */
}
.blog-item .read-more {
    color: #ffffff;
    background: #28a745; /* Green background */
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.blog-item .read-more:hover {
    background: #218838; /* Darker green on hover */
}
.faq {
    background-color: #f9f9f9; /* Light background for contrast */
    padding: 2rem;
    border-top: 2px solid #ccc; /* Subtle border at the top */
}

.faq h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #333;
}

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

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 1rem;
}

.faq-item h4 {
    font-size: 1.25rem;
    color: #007BFF; /* Highlighted title */
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.faq-item p {
    display: none; /* Initially hide answers */
    font-size: 1rem;
    color: #555;
    margin: 0;
}
.faq {
    background-color: #f9f9f9; /* Light background for contrast */
    padding: 2rem;
    border-top: 2px solid #ccc; /* Subtle border at the top */
    margin-top: 2rem;
    border-radius: 8px; /* Rounded corners for a polished look */
}

.faq h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #333;
    font-weight: bold; /* Emphasize heading */
}

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

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ddd; /* Separate each FAQ */
    position: relative; /* For positioning the active indicator */
}

.faq-item h4 {
    font-size: 1.25rem;
    color: #007BFF; /* Highlighted title */
    cursor: pointer;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    transition: color 0.3s ease; /* Smooth color transition */
}

.faq-item h4:hover {
    color: #0056b3; /* Darker shade on hover */
}

.faq-item p {
    display: none; /* Initially hide answers */
    font-size: 1rem;
    color: #555;
    margin: 0;
    line-height: 1.6;
    padding-top: 0.5rem; /* Add space between question and answer */
    transition: max-height 0.3s ease, opacity 0.3s ease; /* Smooth toggle effect */
}

.faq-item.active h4 {
    color: #28a745; /* Change question color for active state */
}

.faq-item.active p {
    display: block; /* Show answers for active FAQ */
    padding-top: 0.5rem;
}

/* Add toggle indicator */
.faq-item h4::after {
    content: '+';
    font-size: 1.25rem;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.faq-item.active h4::after {
    content: '-';
    transform: rotate(180deg);
}
/* Floating Buttons */
.chat-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.chat-buttons a {
    width: 50px;
    height: 50px;
    background-color: #fff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chat-buttons a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.whatsapp-button {
    background-color: #25D366;
}

.telegram-button {
    background-color: #0088cc;
}

/* Contact Page Buttons */
.contact-options {
    text-align: center;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-options h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-options p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.contact-options .chat-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.contact-options .whatsapp-button {
    background-color: #25D366;
}

.contact-options .telegram-button {
    background-color: #0088cc;
}

.contact-options .chat-links a:hover {
    opacity: 0.9;
}
.instagram-button {
    background-color: #C13584; /* Instagram's signature color */
    color: #fff;
}

.instagram-button:hover {
    background-color: #E4405F; /* Slightly lighter shade on hover */
}
.language-switcher {
    text-align: center;
    margin-top: 1rem;
    font-size: 1rem;
}

.language-switcher a {
    text-decoration: none;
    color: #333;
    margin: 0 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem; /* Space between flag and text */
}

.language-switcher a:hover {
    color: #007BFF;
}

.language-switcher .flag-icon {
    width: 20px; /* Adjust size as needed */
    height: auto;
    display: inline-block;
    vertical-align: middle;
}
.flag-icon {
    width: 24px; /* Set a fixed width */
    height: 16px; /* Set a fixed height */
    object-fit: cover; /* Ensure the aspect ratio is maintained */
    border-radius: 3px; /* Optional: Add rounded corners */
    display: inline-block; /* Ensure proper alignment */
    margin-right: 5px; /* Add spacing between the icon and text */
    vertical-align: middle; /* Align with text */
}
.flag-icon {
    width: 24px; /* Fixed width */
    height: 16px; /* Fixed height */
    object-fit: contain; /* Adjust content to fit within the specified size */
    border-radius: 3px; /* Optional: Adds a slight rounded effect */
    display: inline-block; /* Ensures alignment */
    margin-right: 5px; /* Space between the flag and text */
    vertical-align: middle; /* Aligns with text baseline */
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.1); /* Optional: Adds a subtle border effect */
}
.carousel img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.carousel {
    overflow: visible; /* Ensure all images are visible */
}

.slick-slide {
    text-align: center; /* Center-align the content */
}
