/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #FFFFFF;
    background-color: #1C1F1E;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #1C1F1E;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%; /* Let the logo container take full width */
    max-width: 200px; /* Restrict maximum width of the container */
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #FFFFFF;
    text-decoration: none;
}

.signup-btn {
    background-color: #FF6F3C;
    padding: 10px 20px;
    border-radius: 5px;
    color: #FFFFFF;
    text-decoration: none;
}

.lang-btn {
    background-color: #7c7c7c;
    padding: 10px 10px;
    border-radius: 5px;
    color: #ffffff;
    text-decoration: none;
}

.signup-btn:hover {
    background-color: #e65a26;
}

/* Hero Section */
.hero {
    position: relative;
    background: url('images/boardroom_meeting_3465.jpg') no-repeat center center/cover;
    color: #FFFFFF;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 31, 30, 0.7); /* Dark overlay with 70% opacity */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; /* Ensure content is above the overlay */
}

.hero-content h1 {
    font-size: 3rem;
}

.hero-content p {
    margin: 20px 0;
    font-size: 1.2rem;
}

.cta-btn {
    background-color: #FF6F3C;
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
}

.cta-btn:hover {
    background-color: #e65a26;
    z-index: 2;
}

/* About Section */
.about {
    padding: 60px 20px;
    background-color: #868686;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
}

/* Features Section */
.features {
    padding: 60px 20px;
    text-align: center;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* General Icon Styling */
.feature-item .icon {
    font-size: 3rem; /* Adjust the size as needed */
    color: #FFFFFF; /* Icon color, can be customized */
    margin-bottom: 15px; /* Space between the icon and the heading */
}

/* Adjust the feature items to ensure proper spacing and layout */
.feature-item {
    background-color: #4A6572; /* Background color */
    color: #FFFFFF; /* Text color */
    padding: 20px;
    margin: 10px;
    border-radius: 5px;
    text-align: center;
    flex: 1 1 45%; /* Adjust for flexible width */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Pricing Section */
.pricing {
    padding: 60px 20px;
    background-color: #868686;
    text-align: center;
}

.pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

.pricing-tiers {
    display: flex;
    justify-content: center;
    gap: 20px; /* Adds space between the pricing cards */
}

.tier {
    background-color: #FFFFFF;
    border: 1px solid #B3B3B3;
    color: #000000;
    padding: 20px;
    margin: 10px;
    width: 250px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tier h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #000000;
}

.tier h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #FF6F3C;
}

.tier p {
    margin: 10px 0;
    font-size: 0.9rem;
}

.tier-btn {
    background-color: #FF6F3C;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px; /* Adds space between the text and the button */
    font-size: 1.2rem;
    align-self: center; /* Centers the button horizontally */
}

.tier-btn:hover {
    background-color: #e65a26;
}

/* Ensure that content is spaced correctly */
.tier-content {
    flex-grow: 1; /* Ensures the content grows to fill the space above the button */
}

/* Testimonials Section */
.testimonials {
    padding: 60px 20px;
    text-align: center;
    display: none;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.testimonial-list {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-item {
    background-color: #2D7D90;
    color: #FFFFFF;
    padding: 20px;
    margin: 10px;
    width: 100%;
    max-width: 600px;
    border-radius: 5px;
}

/* Call to Action Section */
.cta {
    padding: 60px 20px;
    background-color: #1C1F1E;
    color: #FFFFFF;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    margin-bottom: 30px; /* Add some margin to create space between text and button */
    font-size: 1.2rem; /* Ensure text size is consistent */
}

/* Footer */
footer {
    background-color: #FF6F3C;
    color: #FFFFFF;
    padding: 20px;
    text-align: center;
}

footer .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer .logo img {
    width: 100px;
    margin-bottom: 10px;
}

footer .social-media a {
    color: #FFFFFF;
    margin: 0 10px;
    text-decoration: none;
}

/* Footer Navigation Links */
footer nav ul {
    list-style: none; /* Remove bullets */
    padding: 0;
    margin: 0;
    display: flex; /* Display links inline */
    justify-content: center; /* Center the links */
}

footer nav ul li {
    margin: 0 15px; /* Add horizontal margin between the links */
}

footer nav ul li a {
    color: #FFFFFF; /* Set text color */
    text-decoration: none; /* Remove underline */
}

footer nav ul li a:hover {
    text-decoration: underline; /* Optionally add underline on hover */
}

/* Social Media Icon Styling */
.social-media a {
    color: #FFFFFF; /* Icon color */
    font-size: 2rem; /* Size of the icons */
    margin: 0 10px; /* Spacing between icons */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s ease; /* Smooth transition for hover effect */
}

.social-media a:hover {
    color: #4A6572; /* Change color on hover */
}

/* General Tooltip Container */
.tooltip {
    position: relative; /* Ensure the tooltip text is positioned relative to this container */
    display: inline-block; /* Ensure the icon is displayed inline */
}

/* Styling the Icon */
.tooltip-icon {
    color: #4A6572; /* Customize the icon color */
    margin-left: 5px; /* Space between text and icon */
    cursor: pointer; /* Pointer cursor to indicate interactivity */
}

/* Tooltip Text Styling */
.tooltip-text {
    visibility: hidden; /* Hidden by default */
    width: 200px; /* Width of the tooltip */
    background-color: #333; /* Background color of the tooltip */
    color: #fff; /* Text color */
    text-align: center;
    border-radius: 5px; /* Rounded corners */
    padding: 5px;
    position: absolute; /* Position it relative to the .tooltip container */
    z-index: 1;
    bottom: 125%; /* Position above the icon */
    left: 50%;
    margin-left: -100px; /* Center it horizontally */
    opacity: 0; /* Invisible by default */
    transition: opacity 0.3s; /* Smooth transition */
}

/* Tooltip Arrow */
.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%; /* Position the arrow at the bottom of the tooltip */
    left: 50%;
    margin-left: -5px; /* Center the arrow horizontally */
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent; /* Arrow color */
}

/* Show Tooltip on Hover */
.tooltip:hover .tooltip-text {
    visibility: visible; /* Make it visible */
    opacity: 1; /* Make it fully opaque */
}

#banner2025 {
    border-color: #000000;
    background-color:red;
    color: #FFFFFF;
    padding: 0px 5px 0px 5px;
    font-size: 16px;
    position: absolute;
    top: -5px;
    left: 55%;
    transform: rotate(20deg);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .pricing-tiers {
        flex-direction: column;
        align-items: center;
    }

    .tier {
        width: 90%; /* Optional: makes the cards fill more horizontal space */
    }
    nav ul li {
        margin-left: 10px;
        font-size: 0.65rem;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        margin: 20px 0;
        font-size: 1rem;
    }
    .optional {
        display: none;
    }
    header .logo img {
        max-width: 150px;
    }
}
