/* Global Styles */
html, body {
    overflow-x: hidden; /* Prevent horizontal scrolling */
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    transition: background 0.2s ease-in-out;
}

/* Section Styling */
.section {
    padding: 60px 10%;
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 100%);
    transition: background 0.2s ease-in-out;
    margin: 0 auto;
    max-width: none;
}


.section-container {
    max-width: 60%  ;
    min-width: none;
    margin: auto;
    background: #f0f0f0; /* Light grey for nested div contrast */
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 12px 60px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .section {
        padding: 60px 10%;
        background: linear-gradient(to bottom, #ffffff 0%, #ffffff 100%);
        transition: background 0.2s ease-in-out;
        margin: 0 auto;
        max-width: none;
    }

    .section-container {
        max-width: 100%  ;
        min-width: none;
        margin: auto;
        background: #f0f0f0; /* Light grey for nested div contrast */
        padding: 10px;
        border-radius: 12px;
        box-shadow: 0 12px 60px rgba(0, 0, 0, 0.1);
    }
}

/* Navbar */
.navbar {
    position: relative;
    width: 100%;
    background: white;
    padding: 1px 12px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.navbar-container {
    max-width: 1200px;
    min-width: 70%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav {
    display: none;
}
  

.nav-links-container {
    display: block;
}

.nav-links-container {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 20px;
}
  

@media (max-width: 768px) {

    .mobile-nav {
        display: block;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding-right: 30px;
        padding-left: 10px;
    }

    .navbar-container {
        max-width: 1200px;
        min-width: 70%;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-height: 50px;
    }

    .mobile-nav-dropdown {
        display: none; /* Hidden by default */
        position: absolute;
        top: 60px; /* Adjust according to your navbar height */
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        padding: 10px;
        z-index: 1000;
    }

    .mobile-nav-dropdown.active {
        display: block;
    }

    .nav-links-container {
        display: none;
    }
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .mobile-nav-links li {
    margin: 10px 0;
  }
  
  .mobile-nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
  }
  
  /* Ensure the login/user button is aligned as needed */
  .user-login {
    margin-left: auto;
  }

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #0078D4;
}

.cta-button {
    background: #0078D4;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
}

.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 780px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.hero-container h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.hero-container p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero-metrics {
    display: flex;
    gap: 40px; /* Increased spacing for better layout */
    margin: 20px 0;
    padding-bottom: 20px; /* Padding between metrics and button */
}

.hero-metrics h3 {
    font-size: 2rem; /* Slightly larger font for better visual impact */
    margin-bottom: 5px;
    font-weight: bold;
}

.hero-metrics div {
    text-align: center;
    padding: 10px; /* Adds spacing around individual metric */
}

@media (max-width: 768px) {
    .hero-metrics {
        flex-direction: column;
        align-items: center; /* Center items when stacked */
        gap: 1px; /* Reduce gap for better spacing */
        padding-bottom: 0px;
    }

    .hero-metrics h3 {
        font-size: 2rem; /* Slightly larger font for better visual impact */
        margin-bottom: 5px;
        margin-top: 1px;
        font-weight: bold;
    }

    .hero-metrics div {
        text-align: center;
        padding: 0px;
    }
}





.hero-metrics p {
    font-size: 1rem;
    margin-top: 5px; /* Spacing between numbers and text */
    line-height: 1.4; /* Improved spacing for readability */
}

.cta-button {
    background: #0078D4;
    color: white;
    padding: 15px 20px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease; /* For hover animation */
}

.cta-button:hover {
    background: #005bb5;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}





/* Pricing Section Wrapper */

/* Stack Cards in Mobile View */
@media (max-width: 768px) {
    .pricing-grid {
        flex-direction: column;
        align-items: center; /* Center the stacked cards */
        gap: 20px; /* Add space between the cards */
    }

    .pricing-card {
        width: 100%; /* Make cards take the full width */
        max-width: 400px; /* Limit the width for a better look */
    }
}


.pricing-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.pricing-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 700px; /* Set a fixed width to center the pricing cards */
    max-width: 100%; /* Ensures responsiveness */
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    width: 300px;
    min-height: 450px; /* Set a minimum height */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensures even spacing inside the card */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: left;
    font-size: 1rem;
    line-height: 1.6;
}


.pricing-card.highlighted {
    border: 2px solid #0078D4;
    padding: 18px; /* Consistent spacing */
}

.plan-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.price-section {
    text-align: center;
    margin: 20px 0;
}

.price {
    font-size: 2.5rem;
    color: #0078D4;
    font-weight: bold;
    margin-bottom: 5px;
}

.subtext {
    font-size: 1rem;
    color: #555;
}

.cta-button {
    display: block;
    background: #0078D4;
    color: white;
    padding: 10px 20px;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    margin: 20px auto;
    width: fit-content;
}

.features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.features li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.features li:before {
    content: '•';
    font-size: 1.5rem;
    color: #0078D4;
    position: absolute;
    left: 0;
    top: 0;
}








/* Features Section Styling */
.feature-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-content {
    max-width: 60%;
}

.feature-content-no-image {
    max-width: 100%;
}

@media (max-width: 768px) {
    .feature-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: white;
        margin-bottom: 20px;
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }

    .feature-placeholder {
        display: none;
    }

    .feature-content {
        max-width: 100%;
    }
}

.feature-item.alternate {
    background: #f9f9f9; /* Alternate background color */
}

.feature-placeholder {
    padding-left: 10px;
    padding-right: 10px;
}

.feature-placeholder img {
    width: 100%; /* Ensures the image scales with the div */
    height: auto; /* Keeps aspect ratio */
    display: block; /* Removes extra space below the image */
    border-radius: 10px; /* Optional: Adds rounded corners */
}

.feature-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #0078D4;
}

.feature-content-no-image h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #0078D4;
}

.feature-content h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #0078D4;
}

.feature-content p, .feature-content ul {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 10px;
}

/* Spacing between features */
.feature-item + .feature-item {
    margin-top: 40px;
}



/* FAQ Section 
/* Container for each FAQ item */
.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
}

/* FAQ question styling */
.faq-question {
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    padding: 10px 0;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Change text color on hover */
.faq-question:hover {
    color: #0078D4;
}

/* FAQ icon styling */
.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

/* FAQ answer styling */
.faq-answer {
    display: none;
    padding: 10px 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
}

.faq-answer.active {
    display: block;
}

/* Footer */
.footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px;
}

.disclaimer {
    color: #f2c94c;
    font-weight: bold;
    font-size: 1.5rem;
}

.disclaimer .small {
    font-size: 0.5rem;
}