/* Main Container */
.main-container {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Navbar */
.navbar {
    background-color: transparent;
    transition: background-color 0.3s;
    padding-top: 1rem;
    padding-bottom: 1rem;
    position: fixed; /* Fixes navbar at the top */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Ensures it stays above other elements */
}

.navbar.scrolled {
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Offset content below navbar */
body {
    padding-top: 80px; /* Adjust based on the height of your navbar */
}

.navbar-nav.mx-auto {
    text-align: center;
}

/* Header Section */
.header-section {
    width: 100%;
    min-height: 100vh; /* Ensure it covers the full viewport height */
    background: #67A9FC;
    padding: 0; /* Remove padding for full coverage */
    background-image: url('../images/header-bg.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid black;
    display: flex;
    align-items: center; /* Center content vertically */
    justify-content: center; /* Center content horizontally */
}

.header-content {
    max-width: 768px;
    margin: 0 auto;
    padding: 0 32px; /* Adds horizontal padding for smaller screens */
}

.header-content h1 {
    font-size: 56px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #fff; /* Ensures text is visible on background */
    line-height: 1.2;
    margin-bottom: 24px;
}

.header-content p {
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #fff; /* Ensures text is visible on background */
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto 40px;
}

.header-content .btn-primary {
    padding: 12px 24px;
    background: #67A9FC;
    border: 1px solid black;
    border-radius: 100px;
    color: white;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
/* Get in Touch Section */
.get-in-touch-section {
    width: 100%;
    padding: 112px 64px;
    background: #F9F7F4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.get-in-touch-header {
    text-align: center;
    color: black;
}

.get-in-touch-subtitle {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    line-height: 24px;
}

.get-in-touch-title {
    font-size: 48px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 57.6px;
    margin: 16px 0;
}

.get-in-touch-description {
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 27px;
}

.get-in-touch-form {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: black;
    line-height: 24px;
}

.input-field {
    width: 100%;
    padding: 12px;
    background: white;
    border: 1px solid black;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #666666;
    line-height: 24px;
    box-sizing: border-box;
}

.textarea-field {
    height: 180px;
    resize: none;
}

.form-terms {
    display: flex;
    align-items: center;
    gap: 8px;
}

.terms-checkbox {
    width: 18px;
    height: 18px;
    background: white;
    border: 1px solid black;
}

.terms-label {
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 21px;
    color: black;
}

.submit-button {
    padding: 12px 24px;
    background: #67A9FC;
    border-radius: 100px;
    border: 1px solid black;
    color: white;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 24px;
    cursor: pointer;
    text-align: center;
}

/* Get in Touch Section */
.get-in-touch-section {
    width: 100%;
    padding: 112px 64px;
    background: #F9F7F4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.get-in-touch-header {
    text-align: center;
    color: black;
}

.get-in-touch-subtitle {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    line-height: 24px;
}

.get-in-touch-title {
    font-size: 48px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 57.6px;
    margin: 16px 0;
}

.get-in-touch-description {
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 27px;
}

.get-in-touch-form {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: black;
    line-height: 24px;
}

.input-field {
    width: 100%;
    padding: 12px;
    background: white;
    border: 1px solid black;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #666666;
    line-height: 24px;
    box-sizing: border-box;
}

.textarea-field {
    height: 180px;
    resize: none;
}

.form-terms {
    display: flex;
    align-items: center;
    gap: 8px;
}

.terms-checkbox {
    width: 18px;
    height: 18px;
    background: white;
    border: 1px solid black;
}

.terms-label {
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 21px;
    color: black;
}

.submit-button {
    padding: 12px 24px;
    background: #67A9FC;
    border-radius: 100px;
    border: 1px solid black;
    color: white;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 24px;
    cursor: pointer;
    text-align: center;
}

/* Other Sections */
.empower-section, .feedback-section, .features-section, .pricing-section, .testimonials-section {
    background-color: #F9F7F4;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .header-section, .empower-section, .feedback-section, .features-section, .pricing-section, .testimonials-section {
        padding: 60px 15px;
    }
    .header-content h1 {
        font-size: 36px;
    }
    .header-content p {
        font-size: 16px;
    }
}

/* Featured Blog Section */
.featured {
    display: flex;
    flex-direction: row;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    align-items: center;
    gap: 20px;
    border: 1px solid #000;
    margin-left: 40px;       /* Add left margin */
    margin-right: 40px;      /* Add right margin */
}

.featured img {
    width: 40%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #000;  /* Black border around image */
}

.featured-content {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;      /* Add left padding for content */
}

.featured h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.featured p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
}

.featured a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .featured {
        flex-direction: column;
        padding: 20px;
        margin-left: 10px;   /* Adjust margins for smaller screens */
        margin-right: 10px;
    }

    .featured img {
        width: 100%;
        max-height: 200px;
    }

    .featured-content {
        width: 100%;
        padding-left: 0;
    }
}

