 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

       
        body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    /* Ensure the body takes full height */
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    /* Ensure vertical scrolling is enabled */
    scroll-behavior: smooth;
    /* Smooth scrolling for better UX */
     background: #f5f6f8;
            color: #333;

}

        /* ===================== HEADER SECTION ===================== */
          



        .nav-links {
            position: absolute;
            top: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            color: #fff;
            font-size: 18px;
            text-decoration: none;
            font-weight: bold;
            transition: 0.3s ease;
        }

        .nav-links a:hover {
            opacity: 0.7;
        }

        /* ===================== MAIN LAYOUT ===================== */
        .container {
            max-width: 1200px;
            margin: 50px auto;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 30px;
            padding: 0 20px;
        }

        /* LEFT SIDEBAR */
        .sidebar {
            background: #fff;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .sidebar h2 {
            margin-bottom: 20px;
            font-size: 20px;
        }

        /* Make sidebar scrollable */
.sidebar {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    max-height: 90vh;
    overflow-y: auto;
}

/* Section title */
.sidebar-title {
    margin-top: 25px;
    font-size: 18px;
    margin-bottom: 15px;
}

/* Resources container */
.resources-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Book card */
.resource-card {
    background: #f8f8f8;
    padding: 12px;
    border-radius: 10px;
    display: flex;
    gap: 12px;
    transition: 0.25s ease;
}

.resource-card:hover {
    background: #efefef;
}

/* Book cover */
.resource-img {
    width: 60px;
    height: 80px;
    border-radius: 6px;
    object-fit: cover;
}

/* Book text area */
.resource-info {
    flex: 1;
}

/* Book title */
.resource-title {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

/* Author */
.resource-author {
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
}

/* Description */
.resource-desc {
    font-size: 13px;
    color: #444;
    margin-bottom: 6px;
}

/* Price */
.resource-price {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
}

/* Rating stars */
.resource-rating i {
    color: #ffb400;
    font-size: 14px;
}


.community-link {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f0f0f0;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: 0.3s ease;
    text-decoration: none;      /* remove underline */
    color: inherit;             /* keep original text color */
}

.community-link:hover {
    background: #e6e6e6;
}

.community-link i {
    font-size: 30px;
}

.facebook {
    color: #1877f2;
}

.whatsapp {
    color: #25d366;
}
/* Price + Buy button row */
.resource-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

/* Price style stays same */
.resource-price {
    font-weight: bold;
    font-size: 14px;
    margin: 0;
}

/* Buy Button */
.buy-btn {
    background: #4CAF50;
    color: #fff;
    border: none;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s ease;
}

.buy-btn:hover {
    background: #43a047;
}


        /* ===================== FEED SECTION ===================== */
        .feed-container {
            background: #fff;
            padding: 20px;
            border-radius: 12px;
            height: 90vh;
            overflow-y: auto;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .post {
            background: #fafafa;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
            border: 1px solid #ececec;
        }

        .post-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 10px;
        }

        .profile-pic {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: #ccc;
        }

        .post-info h4 {
            font-size: 16px;
            margin-bottom: 3px;
        }

        .post-info span {
            font-size: 13px;
            color: #777;
        }

        .post-title {
            font-size: 15px;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .post-content {
            font-size: 14px;
            line-height: 1.5;
        }
            
        /* ACTION SECTION */
        .post-actions {
            margin-top: 15px;
            padding-top: 10px;
            border-top: 1px solid #ddd;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .post-actions button {
            background: #1877f2;
            color: #fff;
            border: none;
            padding: 8px 14px;
            border-radius: 6px;
            font-size: 14px;
            cursor: pointer;
            transition: 0.2s ease;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .post-actions button:hover {
            background: #0f63d1;
        }

        .likes-count {
            font-size: 13px;
            color: #555;
        }

        /* REPLY BOX */
        .reply-box {
            margin-top: 15px;
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .reply-box textarea {
            width: 100%;
            min-height: 60px;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 8px;
            resize: none;
            font-size: 14px;
        }

        .reply-box button {
            align-self: flex-end;
            background: #42b72a;
            padding: 7px 16px;
            border: none;
            border-radius: 6px;
            color: #fff;
            font-size: 14px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .reply-box button:hover {
            background: #379a22;
        }

        .hidden { display: none; }

/*#region*************CONTACT AND FOOTER STYLING***************************************/
#contact {
    background: rgba(2, 2, 113, 0.772);
    color: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 700px;
    margin: 0 auto;
}


/* Form Styling */
#contact form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 400px;
}

/* Input and Textarea Styling */
#contact form input,
#contact form textarea {
    width: 100%;
    padding: 0.3rem;
    border: 1px solid #555;
    border-radius: 4px;
    background-color: whitesmoke;
    color: Black;
    box-sizing: border-box;
}

/* Textarea Specific Styling */
#contact form textarea {
    height: 70px;
    resize: vertical;
}

/* Button Styling */
#contactForm button {
    background: linear-gradient(135deg, #0481C1 0%, #0f2027 100%);
    padding: 0.5rem 1rem;
    color: #fff;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    border-radius: 24px;
    width: 8.25rem;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

#contactForm button:hover {
    background-color: #315372;
}

/* Label Styling */
#contact form label {
    color: #555;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Social Media Icons Styling */
.social-icon {
    color: #fff !important;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 0.5rem;
}

.social-icon:hover {
    color: #ddd;
}

.whatsapp-qr-code {
    text-align: center;
    margin-top: 1.25rem;
}

.whatsapp-qr-code img {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 8px;
}

.subfooter {
    display: flex;
    justify-content: space-between;
    padding: 50px 140px;
    width: 1100px;
    margin-bottom: -130px !important;
    box-sizing: border-box;
    max-width: 1500px;
    margin: 0 auto;
    /* Center it if needed */
    color: white !important;
    background: linear-gradient(135deg,
            rgba(15, 32, 39, 0.85) 0%,
            /* dark moody base */
            rgba(32, 58, 67, 0.7) 50%,
            /* slightly lighter mid-tone */
            rgba(112, 184, 0, 0.15) 100%
            /* subtle MoodPàdi green tint */
        );
    border-radius: 10px;
    overflow: hidden;
}




.subfooter-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: -100px;
}

.subfooter-right {
    display: flex;
    justify-content: flex-start;
    /* Change to flex-start */
    width: 60%;
    align-items: center;
    margin-top: -65px;
    transform: translateX(-120px);
    /* Use transform instead of margin-left */
}



.subscribe-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.subscribe-form {
    display: flex;
}

.email-input {
    padding: 10px;
    border-radius: 10px;
    border: none;
    width: 250px !important;
}

.subf1-button {
    height: 44px;
    width: 150px !important;
    border-radius: 35px !important;
    background: linear-gradient(135deg, #0481C1 0%, #0f2027 100%);
    color: #fff;
    border: #0481C1;
    border-style: outset;
    margin-top: 0px;
    margin-left: 7px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}


.privacy-statement {
    font-size: 14px;
}

.about-subtext {
    line-height: 1.1;
    text-align: left;
    margin-top: 30px;
    margin-bottom: 15px;
    color: white !important;
    font-size: 38px !important;
    line-height: 1.1em;
    font-weight: 100;
}

.subf {
    color: white !important;
}

.serif-f {
    line-height: 1.1;
    text-align: left;
    margin-bottom: 30px;
    font-style: italic;
    font-family: Newsreader, "Times New Roman", serif;
    font-size: 38px !important;
    line-height: 1.1em;
    font-weight: 100;
    color: #fff !important;
}

.copy {
    color: white !important;
    font-weight: 500 !important;
    margin-top: 24px;
    width: 280px;
}

.copy1 {
    color: white !important;
    margin-top: -20px;

    font-size: 1rem;
    font-weight: 500 !important;
    line-height: 28px;
}

.copy2 {
    color: white !important;
    margin-top: -20px;
}

.logo-video-1 {
    width: 170px;
    height: auto;
}



.image-placeholder1 video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    width: 250px;
    height: 250px;
    border-radius: 10%;
    margin-top: 50px;
    margin-left: 60px;
}


@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-5px);
    }

    100% {
        transform: translateX(0);
    }
}

/*#endregion***/

/*#region****FOOTER******************/
#mainContent footer {
    margin-left: -50px;
    /* cancel out parent padding */
    margin-right: -50px;
    width: calc(100% + 100px);
    /* expand back full width */
}

footer {
    /* Matches footer or slightly darker */
    color: #fff;
    display: flex;
    justify-content: space-around;
    padding: 1.25rem;
    flex-wrap: wrap;

}

/* Custom Footer Area */
.custom_footer_area {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%) !important;
    width: 100% !important;
    /* override container limits */
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    /* kill the curve */
    position: relative;
    display: block;
    clear: both;
    /* prevent float collapse */
    /* make sure it sits above bg layers */
    z-index: 5;

    margin-top: 0 !important;
    padding-top: 0 !important;
    margin-bottom: -30px !important;
}

.f-title {
    color: #fff;
}

/* Footer Top */
.custom_footer_top {
    padding: 100px 120px 140px;
    /* leave room for compliance footer */
    position: relative;
    overflow-x: hidden;
    width: 100%;
    /* ✅ full width */
    max-width: 100vw;
    /* ✅ match viewport */
    overflow: visible;
    /* make sure footer can expand */
}

.custom_footer_top .row {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    color: #fff;
}

/* Adjust input fields and text area to same width */
.custom_footer_top .contact_widget input,
.custom_footer_top .contact_widget textarea {
    width: 100%;
    /* Set the width to 100% */
    max-width: 100%;
    /* Ensure they are full-width */
    padding: 12px;
    /* Optional: Adjust padding for better appearance */
    margin-bottom: 0.9375rem;
    /* Space below each input */
}

/* Footer Bottom */
.custom_footer_area .footer_bottom {
    padding-top: 5px;
    padding-bottom: 50px;
}

.custom_footer_top .contact_widget p,
.custom_footer_top .quick_links_widget p,
.custom_footer_top .support_widget p,
.custom_footer_top .social_widget p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 28px;
    color: #6a7695;
    margin-bottom: 1.25rem;
}

/* Button Hover */
a:hover,
a:focus,
.btn:hover,
.btn:focus,
button:hover,
button:focus {
    text-decoration: none;
    outline: none;
}

.custom_footer_top .f_widget .f_list li a:hover {
    color: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
}

/* Social Icons */
.custom_footer_top .f_social_icon a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 0.875rem;
    line-height: 45px;
    color: #858da8;
    display: inline-block;
    background: #ebeef5;
    text-align: center;
    transition: all 0.2s linear;
}

.custom_footer_top .f_social_icon a:hover {
    background: #1f3a52;
    border-color: #1f3a52;
    color: white;
}

.custom_footer_top .f_social_icon a+a {
    margin-left: 4px;
}

/* Footer Background */


/* Keyframes Animation */
@keyframes myfirst {
    0% {
        left: -25%;
    }

    100% {
        left: 100%;
    }
}

@-webkit-keyframes myfirst {
    0% {
        left: -25%;
    }

    100% {
        left: 100%;
    }
}


/* Footer Widget Styling */
.f_widget {
    margin-bottom: 40px;

}

.f_widget h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #fff;
}

.f_widget .f_list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: white;
}

.f_widget .f_list li {
    margin-bottom: 0.9375rem;

}

.f_widget .f_list li a {
    color: #fff;
    font-size: 0.875rem;
    text-decoration: none;
}

.f_widget .f_list li a:hover {
    color: #5e2ced;
}

.btn_get_two:hover {
    background: transparent;
    color: #5e2ced;
}

.f_social_icon a {
    width: 46px;
    height: 46px;
    line-height: 46px;
    background: #ebeef5;
    border-radius: 50%;
    color: #858da8;
    text-align: center;
    font-size: 1.25rem;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.f_social_icon a:hover {
    background: #5e2ced;
    border-color: #5e2ced;
    color: white;
}

/* Social Icons Font */
.f_social_icon a i {
    font-size: 1.25rem;
}

.top {
    position: fixed;
    bottom: 5px;
    right: 15px;
    z-index: 1001;
    font-size: 16px;
    background: linear-gradient(135deg, #0481C1 0%, #0f2027 100%);
    color: white;
    border: none;
    outline: none;
    padding: 5px 5px;
    border-radius: 60px;
    cursor: pointer;
    opacity: 1;
    /* <<< make it always visible */
    transition: opacity 0.3s ease-in-out;
    font-weight: 700;
}


.top:hover {
    background: linear-gradient(135deg, #0078d4 0%, #00395f 100%) !important;
    transform: translateY(-3px);
}

.top.show {
    opacity: 1;
}

.input-error {
    border: 1px solid var(--input-error-border);
}

.error-message {
    color: var(--error-message-color);
    font-size: 0.85em;
    margin-top: 5px;
}

/* Custom Modal styles */
.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: var(--modal-overlay-bg);
    z-index: 9999;
    pointer-events: auto;
}

.custom-modal.show {
    display: flex;
    /* Show and center modal */
}

#errorModal .custom-modal-content {
    background: linear-gradient(135deg, #ff6a6a, #d93636);
    color: #fff;
    box-shadow: 0 8px 24px rgba(217, 54, 54, 0.4);
}

#successModal .custom-modal-content {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #fff;
    box-shadow: 0 8px 24px rgba(40, 167, 69, 0.35);
}

/* Common modal content */
.custom-modal-content {
    border-radius: 10px;
    max-width: 260px;
    /* reduced from 320px */
    width: 85%;
    /* takes less screen space */
    padding: 14px 16px;
    /* reduced padding */
    animation: slideUp 0.35s ease-out;
    pointer-events: auto;
    z-index: 10000;
}

/* Header Styling */
.custom-modal-header {
    background: transparent !important;
    /* Let gradient show */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-modal-title {
    font-size: 0.9rem;
    /* smaller text */
    font-weight: 600;
    letter-spacing: 0.4px;
    margin: 0;
}

/* Body */
.custom-modal-body {
    padding: 8px;
    font-size: 0.9rem;
    /* reduced font */
    text-align: center;
    color: white;
}

/* Footer */
/* Footer */
.custom-modal-footer {
    padding: 6px;
    text-align: center;
}

.custom-modal-footer button {
    border-radius: 6px;
    font-size: 0.75rem;
    /* smaller button text */
    padding: 4px 10px;
    /* smaller button */
    box-shadow: none;
}

/* Animation */
@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hidden {
    display: none;
}

#countdown-timer {
    font-weight: bold;
    color: green;
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

/*#endregion FOOTER*/


/*#region COMPLIANCE FOOTER*/

.compliance-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* centers vertically */
    align-items: center;
    /* centers horizontally */
    text-align: center;
    color: #fff;
    margin-top: 18px;
    padding: 10px 0;
    width: 100%;
}

.badge-line {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* centers horizontally */
    align-items: center;
    /* aligns icons vertically */
    gap: 8px;
    font-size: 13px;
    color: #fff;
    opacity: 0.95;
    margin-bottom: 6px;
}

.badge-line span {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.badge-line i {
    color: #70b800;
    font-size: 14px;
}

.compliance-note {
    font-size: 12px;
    line-height: 1.5;
    color: #dcdcdc;
    max-width: 80%;
    text-align: center;
}

/*#endregion COMPLIANCE*/


/* Custom Modal styles */
.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: var(--modal-overlay-bg);
    z-index: 9999;
    pointer-events: auto;
}

.custom-modal.show {
    display: flex;
    /* Show and center modal */
}

#errorModal .custom-modal-content {
    background: linear-gradient(135deg, #ff6a6a, #d93636);
    color: #fff;
    box-shadow: 0 8px 24px rgba(217, 54, 54, 0.4);
}

#successModal .custom-modal-content {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #fff;
    box-shadow: 0 8px 24px rgba(40, 167, 69, 0.35);
}

/* Common modal content */
.custom-modal-content {
    border-radius: 10px;
    max-width: 260px;
    /* reduced from 320px */
    width: 85%;
    /* takes less screen space */
    padding: 14px 16px;
    /* reduced padding */
    animation: slideUp 0.35s ease-out;
    pointer-events: auto;
    z-index: 10000;
}

/* Header Styling */
.custom-modal-header {
    background: transparent !important;
    /* Let gradient show */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-modal-title {
    font-size: 0.9rem;
    /* smaller text */
    font-weight: 600;
    letter-spacing: 0.4px;
    margin: 0;
}

/* Body */
.custom-modal-body {
    padding: 8px;
    font-size: 0.9rem;
    /* reduced font */
    text-align: center;
    color: white;
}

/* Footer */
/* Footer */
.custom-modal-footer {
    padding: 6px;
    text-align: center;
}

.custom-modal-footer button {
    border-radius: 6px;
    font-size: 0.75rem;
    /* smaller button text */
    padding: 4px 10px;
    /* smaller button */
    box-shadow: none;
}

/* Animation */
@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hidden {
    display: none;
}

#countdown-timer {
    font-weight: bold;
    color: green;
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}






/*MEDIA QUERY*/
/* DESKTOPS/LAPTOPS) */
/* Extra large desktops (2K, 4K) */

@media (min-width: 1920px) {

}

@media (min-width: 1440px) and (max-width: 1919px) {

}

@media (min-width: 1280px) and (max-width: 1439px) {}


@media (min-width: 1024px) and (max-width: 1279px) {
.subfooter-right {
    
    transform: translateX(-190px);
    /* Use transform instead of margin-left */
}
.subfooter{
margin-left:-60%;
}

}



/*MEDIA QUERY*/
/* Small devices (phones, up to 600px) */
/******GOOGLE STANDARD MEDIA QUERY RANGES******/
/* ✅ Small / short phones or landscape */


@media (min-width: 360px) and (max-width: 389px) {
      /* Navigation links stacked */
    .nav-links {
        display: flex;
        flex-direction: row;        /* horizontal layout */
        justify-content: center;    /* center horizontally */
        align-items: center;        /* center vertically */
        gap: 15px;                  /* spacing between links */
        padding: 10px 0;
    }

    .nav-links a {
        font-size: 16px;
        text-decoration: none;
        color: #fff;                /* adjust if needed */
    }

    /* Container stacks vertically */
    .container {
        display: flex;
        flex-direction: column;
        align-items: center; /* center sidebar and feed */
        padding: 0 10px;
        gap: 20px;
    }

    /* Sidebar full width and centered */
    .sidebar {
        width: 100%;
        text-align: center;
    }

    .sidebar h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    /* Community links stacked vertically and centered */
    .community-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        margin: 10px 0;
        text-decoration: none;
    }

    .community-link i {
        font-size: 28px;
        margin-bottom: 5px;
    }

    .resources-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }

    .resource-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 90%;
        padding: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        border-radius: 10px;
    }

    .resource-img {
        width: 100%;
        height: auto;
        border-radius: 5px;
        margin-bottom: 10px;
    }

    .resource-title, .resource-author, .resource-desc, .resource-price-row p, .buy-btn {
        font-size: 14px;
        text-align: center;
    }

    .resource-rating i {
        font-size: 16px;
    }

    /* Feed area stacked and centered */
    .feed-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .post {
        width: 95%;
        text-align: center;
        padding: 10px;
        border-radius: 10px;
        box-shadow: 0 1px 6px rgba(0,0,0,0.1);
    }

    .post-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .post-header h4 {
        font-size: 16px;
    }

    .post-title {
        font-size: 15px;
        margin: 8px 0;
    }

    .post-content {
        font-size: 14px;
    }

    .post-actions {
        display: flex;
        flex-direction: column;
        gap: 5px;
        align-items: center;
        margin-top: 10px;
    }

    .post-actions button {
        font-size: 13px;
        padding: 5px 10px;
    }

    .reply-box textarea {
        width: 90%;
        font-size: 13px;
        height: 60px;
    }

      /*#region FOOTER*/
    /*#region FOOTER*/
    .custom_footer_top {
        position: relative;
        padding: 60px 25px;
        overflow-x: visible;
        box-sizing: border-box;
    }

    .custom_footer_top .row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
        /* Slightly tighter spacing for smaller screens */
    }

    /* ✅ Center the social media icons cleanly */
    .f_social_icon {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 16px;
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }

    .f_social_icon a {
        font-size: 22px;
        color: white;
        transition: all 0.3s ease;
    }

    .f_social_icon a:hover {
        color: #00bcd4;
        transform: scale(1.1);
    }

    .col-md-6,
    .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .f_widget h3 {
        text-align: center;
    }

    .f_widget .f_list {
        text-align: center;
    }

    /* ✅ Full-width subfooter with vertical stacking */
    .subfooter {
        position: relative;
        left: 0;
        right: 0;
        width: 100%;
        max-width: none;
        margin: 0 auto;
        padding: 45px 35px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 35px;
        background-color: #1f3a52;
        border-radius: 10px;
        box-sizing: border-box;
        overflow: visible;
    }

    /* ✅ Left section (text + logo) */
    .subfooter-left {
        width: 100%;
        text-align: center;
        align-items: center;
        transform: translateX(17%) !important;
    }

    /* ✅ Right section (subscribe + video) */
    .subfooter-right {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;
        margin-top: 20px;
    }

    /* ✅ Subscribe section centered */
    .subscribe-container {
        width: 70% !important;
        text-align: center !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        left: 0 !important;
        right: 0 !important;
    }


    .subscribe-form {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .email-input {
        width: 90% !important;
        margin-bottom: 10px;
    }

    .subf1-button {
        width: 170px !important;
        height: 46px;
        font-size: 0.9rem;
    }

    /* ✅ Video responsive and centered */
    .image-placeholder1 video {
        width: 220px !important;
        height: 220px !important;
        border-radius: 12%;
        margin-top: 18px;
        display: block;
        object-fit: cover;
        transform: translate(-7%);

        /* Keep perfectly centered */
    }

    /* ✅ Typography */
    .about-subtext,
    .serif-f {
        font-size: 2rem !important;
        line-height: 1.2;
    }

    .privacy-statement {
        text-align: center;
        font-size: 0.98rem;
        margin-top: 8px;
    }

    .quick_links_widget {
        margin-top: 60px !important;
    }

    /* ✅ Back-to-top button alignment */
    .top {
        right: 15px;
        bottom: 15px;
    }



    .subfooter-right {
        width: 100% !important;
        transform: none !important;
        margin-top: 0 !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .subscribe-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        margin: 0 auto 25px auto !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
    }

    .image-placeholder1 {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        margin: 0 auto !important;
        transform: none !important;
        left: 0 !important;
        right: 0 !important;
        position: relative !important;
    }

    /*#endregion FOOTER*/
    /* Ensure no hidden overflow from body or parent */
    html,
    body {
        overflow-x: hidden !important;
    }

    /*#endregion FOOTER*/

  
}


@media (min-width: 390px) and (max-width: 419px) {
  /* Navigation links stacked */
    .nav-links {
        display: flex;
        flex-direction: row;        /* horizontal layout */
        justify-content: center;    /* center horizontally */
        align-items: center;        /* center vertically */
        gap: 15px;                  /* spacing between links */
        padding: 10px 0;
    }

    .nav-links a {
        font-size: 16px;
        text-decoration: none;
        color: #fff;                /* adjust if needed */
    }

    /* Container stacks vertically */
    .container {
        display: flex;
        flex-direction: column;
        align-items: center; /* center sidebar and feed */
        padding: 0 10px;
        gap: 20px;
    }

    /* Sidebar full width and centered */
    .sidebar {
        width: 100%;
        text-align: center;
    }

    .sidebar h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    /* Community links stacked vertically and centered */
    .community-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        margin: 10px 0;
        text-decoration: none;
    }

    .community-link i {
        font-size: 28px;
        margin-bottom: 5px;
    }

    .resources-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }

    .resource-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 90%;
        padding: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        border-radius: 10px;
    }

    .resource-img {
        width: 100%;
        height: auto;
        border-radius: 5px;
        margin-bottom: 10px;
    }

    .resource-title, .resource-author, .resource-desc, .resource-price-row p, .buy-btn {
        font-size: 14px;
        text-align: center;
    }

    .resource-rating i {
        font-size: 16px;
    }

    /* Feed area stacked and centered */
    .feed-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .post {
        width: 95%;
        text-align: center;
        padding: 10px;
        border-radius: 10px;
        box-shadow: 0 1px 6px rgba(0,0,0,0.1);
    }

    .post-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .post-header h4 {
        font-size: 16px;
    }

    .post-title {
        font-size: 15px;
        margin: 8px 0;
    }

    .post-content {
        font-size: 14px;
    }

    .post-actions {
        display: flex;
        flex-direction: column;
        gap: 5px;
        align-items: center;
        margin-top: 10px;
    }

    .post-actions button {
        font-size: 13px;
        padding: 5px 10px;
    }

    .reply-box textarea {
        width: 90%;
        font-size: 13px;
        height: 60px;
    }

      /*#region FOOTER*/
    /*#region FOOTER*/
    .custom_footer_top {
        position: relative;
        padding: 60px 25px;
        overflow-x: visible;
        box-sizing: border-box;
    }

    .custom_footer_top .row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
        /* Slightly tighter spacing for smaller screens */
    }

    /* ✅ Center the social media icons cleanly */
    .f_social_icon {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 16px;
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }

    .f_social_icon a {
        font-size: 22px;
        color: white;
        transition: all 0.3s ease;
    }

    .f_social_icon a:hover {
        color: #00bcd4;
        transform: scale(1.1);
    }

    .col-md-6,
    .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .f_widget h3 {
        text-align: center;
    }

    .f_widget .f_list {
        text-align: center;
    }

    /* ✅ Full-width subfooter with vertical stacking */
    .subfooter {
        position: relative;
        left: 0;
        right: 0;
        width: 100%;
        max-width: none;
        margin: 0 auto;
        padding: 45px 35px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 35px;
        background-color: #1f3a52;
        border-radius: 10px;
        box-sizing: border-box;
        overflow: visible;
    }

    /* ✅ Left section (text + logo) */
    .subfooter-left {
        width: 100%;
        text-align: center;
        align-items: center;
        transform: translateX(17%) !important;
    }

    /* ✅ Right section (subscribe + video) */
    .subfooter-right {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;
        margin-top: 20px;
    }

    /* ✅ Subscribe section centered */
    .subscribe-container {
        width: 70% !important;
        text-align: center !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        left: 0 !important;
        right: 0 !important;
    }


    .subscribe-form {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .email-input {
        width: 90% !important;
        margin-bottom: 10px;
    }

    .subf1-button {
        width: 170px !important;
        height: 46px;
        font-size: 0.9rem;
    }

    /* ✅ Video responsive and centered */
    .image-placeholder1 video {
        width: 220px !important;
        height: 220px !important;
        border-radius: 12%;
        margin-top: 18px;
        display: block;
        object-fit: cover;
        transform: translate(-7%);

        /* Keep perfectly centered */
    }

    /* ✅ Typography */
    .about-subtext,
    .serif-f {
        font-size: 2rem !important;
        line-height: 1.2;
    }

    .privacy-statement {
        text-align: center;
        font-size: 0.98rem;
        margin-top: 8px;
    }

    .quick_links_widget {
        margin-top: 60px !important;
    }

    /* ✅ Back-to-top button alignment */
    .top {
        right: 15px;
        bottom: 15px;
    }



    .subfooter-right {
        width: 100% !important;
        transform: none !important;
        margin-top: 0 !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .subscribe-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        margin: 0 auto 25px auto !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
    }

    .image-placeholder1 {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        margin: 0 auto !important;
        transform: none !important;
        left: 0 !important;
        right: 0 !important;
        position: relative !important;
    }

    /*#endregion FOOTER*/
    /* Ensure no hidden overflow from body or parent */
    html,
    body {
        overflow-x: hidden !important;
    }

    /*#endregion FOOTER*/
}

@media (min-width: 420px) and (max-width: 599px) {
/* Navigation links stacked */
    .nav-links {
        display: flex;
        flex-direction: row;        /* horizontal layout */
        justify-content: center;    /* center horizontally */
        align-items: center;        /* center vertically */
        gap: 15px;                  /* spacing between links */
        padding: 10px 0;
    }

    .nav-links a {
        font-size: 16px;
        text-decoration: none;
        color: #fff;                /* adjust if needed */
    }

    /* Container stacks vertically */
    .container {
        display: flex;
        flex-direction: column;
        align-items: center; /* center sidebar and feed */
        padding: 0 10px;
        gap: 20px;
    }

    /* Sidebar full width and centered */
    .sidebar {
        width: 100%;
        text-align: center;
    }

    .sidebar h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    /* Community links stacked vertically and centered */
    .community-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        margin: 10px 0;
        text-decoration: none;
    }

    .community-link i {
        font-size: 28px;
        margin-bottom: 5px;
    }

    .resources-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }

    .resource-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 90%;
        padding: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        border-radius: 10px;
    }

    .resource-img {
        width: 100%;
        height: auto;
        border-radius: 5px;
        margin-bottom: 10px;
    }

    .resource-title, .resource-author, .resource-desc, .resource-price-row p, .buy-btn {
        font-size: 14px;
        text-align: center;
    }

    .resource-rating i {
        font-size: 16px;
    }

    /* Feed area stacked and centered */
    .feed-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .post {
        width: 95%;
        text-align: center;
        padding: 10px;
        border-radius: 10px;
        box-shadow: 0 1px 6px rgba(0,0,0,0.1);
    }

    .post-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .post-header h4 {
        font-size: 16px;
    }

    .post-title {
        font-size: 15px;
        margin: 8px 0;
    }

    .post-content {
        font-size: 14px;
    }

    .post-actions {
        display: flex;
        flex-direction: column;
        gap: 5px;
        align-items: center;
        margin-top: 10px;
    }

    .post-actions button {
        font-size: 13px;
        padding: 5px 10px;
    }

    .reply-box textarea {
        width: 90%;
        font-size: 13px;
        height: 60px;
    }

      /*#region FOOTER*/
    /*#region FOOTER*/
    .custom_footer_top {
        position: relative;
        padding: 60px 25px;
        overflow-x: visible;
        box-sizing: border-box;
    }

    .custom_footer_top .row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
        /* Slightly tighter spacing for smaller screens */
    }

    /* ✅ Center the social media icons cleanly */
    .f_social_icon {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 16px;
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }

    .f_social_icon a {
        font-size: 22px;
        color: white;
        transition: all 0.3s ease;
    }

    .f_social_icon a:hover {
        color: #00bcd4;
        transform: scale(1.1);
    }

    .col-md-6,
    .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .f_widget h3 {
        text-align: center;
    }

    .f_widget .f_list {
        text-align: center;
    }

    /* ✅ Full-width subfooter with vertical stacking */
    .subfooter {
        position: relative;
        left: 0;
        right: 0;
        width: 100%;
        max-width: none;
        margin: 0 auto;
        padding: 45px 35px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 35px;
        background-color: #1f3a52;
        border-radius: 10px;
        box-sizing: border-box;
        overflow: visible;
    }

    /* ✅ Left section (text + logo) */
    .subfooter-left {
        width: 100%;
        text-align: center;
        align-items: center;
        transform: translateX(17%) !important;
    }

    /* ✅ Right section (subscribe + video) */
    .subfooter-right {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;
        margin-top: 20px;
    }

    /* ✅ Subscribe section centered */
    .subscribe-container {
        width: 70% !important;
        text-align: center !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        left: 0 !important;
        right: 0 !important;
    }


    .subscribe-form {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .email-input {
        width: 90% !important;
        margin-bottom: 10px;
    }

    .subf1-button {
        width: 170px !important;
        height: 46px;
        font-size: 0.9rem;
    }

    /* ✅ Video responsive and centered */
    .image-placeholder1 video {
        width: 220px !important;
        height: 220px !important;
        border-radius: 12%;
        margin-top: 18px;
        display: block;
        object-fit: cover;
        transform: translate(-7%);

        /* Keep perfectly centered */
    }

    /* ✅ Typography */
    .about-subtext,
    .serif-f {
        font-size: 2rem !important;
        line-height: 1.2;
    }

    .privacy-statement {
        text-align: center;
        font-size: 0.98rem;
        margin-top: 8px;
    }

    .quick_links_widget {
        margin-top: 60px !important;
    }

    /* ✅ Back-to-top button alignment */
    .top {
        right: 15px;
        bottom: 15px;
    }



    .subfooter-right {
        width: 100% !important;
        transform: none !important;
        margin-top: 0 !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .subscribe-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        margin: 0 auto 25px auto !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
    }

    .image-placeholder1 {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        margin: 0 auto !important;
        transform: none !important;
        left: 0 !important;
        right: 0 !important;
        position: relative !important;
    }

    /*#endregion FOOTER*/
    /* Ensure no hidden overflow from body or parent */
    html,
    body {
        overflow-x: hidden !important;
    }

    /*#endregion FOOTER*/
}

@media (min-width: 600px) and (max-width: 899px) {
/* Navigation links stacked */
    .nav-links {
        display: flex;
        flex-direction: row;        /* horizontal layout */
        justify-content: center;    /* center horizontally */
        align-items: center;        /* center vertically */
        gap: 15px;                  /* spacing between links */
        padding: 10px 0;
    }

    .nav-links a {
        font-size: 16px;
        text-decoration: none;
        color: #fff;                /* adjust if needed */
    }

    /* Container stacks vertically */
    .container {
        display: flex;
        flex-direction: column;
        align-items: center; /* center sidebar and feed */
        padding: 0 10px;
        gap: 20px;
    }

    /* Sidebar full width and centered */
    .sidebar {
        width: 100%;
        text-align: center;
    }

    .sidebar h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    /* Community links stacked vertically and centered */
    .community-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        margin: 10px 0;
        text-decoration: none;
    }

    .community-link i {
        font-size: 28px;
        margin-bottom: 5px;
    }

    .resources-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }

    .resource-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 90%;
        padding: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        border-radius: 10px;
    }

    .resource-img {
        width: 100%;
        height: auto;
        border-radius: 5px;
        margin-bottom: 10px;
    }

    .resource-title, .resource-author, .resource-desc, .resource-price-row p, .buy-btn {
        font-size: 14px;
        text-align: center;
    }

    .resource-rating i {
        font-size: 16px;
    }

    /* Feed area stacked and centered */
    .feed-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .post {
        width: 95%;
        text-align: center;
        padding: 10px;
        border-radius: 10px;
        box-shadow: 0 1px 6px rgba(0,0,0,0.1);
    }

    .post-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .post-header h4 {
        font-size: 16px;
    }

    .post-title {
        font-size: 15px;
        margin: 8px 0;
    }

    .post-content {
        font-size: 14px;
    }

    .post-actions {
        display: flex;
        flex-direction: column;
        gap: 5px;
        align-items: center;
        margin-top: 10px;
    }

    .post-actions button {
        font-size: 13px;
        padding: 5px 10px;
    }

    .reply-box textarea {
        width: 90%;
        font-size: 13px;
        height: 60px;
    }

      /*#region FOOTER*/
    /*#region FOOTER*/
    .custom_footer_top {
        position: relative;
        padding: 60px 25px;
        overflow-x: visible;
        box-sizing: border-box;
    }

    .custom_footer_top .row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
        /* Slightly tighter spacing for smaller screens */
    }

    /* ✅ Center the social media icons cleanly */
    .f_social_icon {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 16px;
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }

    .f_social_icon a {
        font-size: 22px;
        color: white;
        transition: all 0.3s ease;
    }

    .f_social_icon a:hover {
        color: #00bcd4;
        transform: scale(1.1);
    }

    .col-md-6,
    .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .f_widget h3 {
        text-align: center;
    }

    .f_widget .f_list {
        text-align: center;
    }

    /* ✅ Full-width subfooter with vertical stacking */
    .subfooter {
        position: relative;
        left: 0;
        right: 0;
        width: 100%;
        max-width: none;
        margin: 0 auto;
        padding: 45px 35px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 35px;
        background-color: #1f3a52;
        border-radius: 10px;
        box-sizing: border-box;
        overflow: visible;
    }

    /* ✅ Left section (text + logo) */
    .subfooter-left {
        width: 100%;
        text-align: center;
        align-items: center;
        transform: translateX(17%) !important;
    }

    /* ✅ Right section (subscribe + video) */
    .subfooter-right {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;
        margin-top: 20px;
    }

    /* ✅ Subscribe section centered */
    .subscribe-container {
        width: 70% !important;
        text-align: center !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        left: 0 !important;
        right: 0 !important;
    }


    .subscribe-form {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .email-input {
        width: 90% !important;
        margin-bottom: 10px;
    }

    .subf1-button {
        width: 170px !important;
        height: 46px;
        font-size: 0.9rem;
    }

    /* ✅ Video responsive and centered */
    .image-placeholder1 video {
        width: 220px !important;
        height: 220px !important;
        border-radius: 12%;
        margin-top: 18px;
        display: block;
        object-fit: cover;
        transform: translate(-7%);

        /* Keep perfectly centered */
    }

    /* ✅ Typography */
    .about-subtext,
    .serif-f {
        font-size: 2rem !important;
        line-height: 1.2;
    }

    .privacy-statement {
        text-align: center;
        font-size: 0.98rem;
        margin-top: 8px;
    }

    .quick_links_widget {
        margin-top: 60px !important;
    }

    /* ✅ Back-to-top button alignment */
    .top {
        right: 15px;
        bottom: 15px;
    }



    .subfooter-right {
        width: 100% !important;
        transform: none !important;
        margin-top: 0 !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .subscribe-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        margin: 0 auto 25px auto !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
    }

    .image-placeholder1 {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        margin: 0 auto !important;
        transform: none !important;
        left: 0 !important;
        right: 0 !important;
        position: relative !important;
    }

    /*#endregion FOOTER*/
    /* Ensure no hidden overflow from body or parent */
    html,
    body {
        overflow-x: hidden !important;
    }

    /*#endregion FOOTER*/
}

@media (max-width: 767px) and (min-width: 600px)and (max-height: 568px) {}


        /* Solid icons */
@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    /* 👈 ensures text/icons are visible immediately */
    src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-solid-900.woff2") format("woff2"),
        url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-solid-900.woff") format("woff");
}

/* Brands */
@font-face {
    font-family: "Font Awesome 6 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-brands-400.woff2") format("woff2"),
        url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-brands-400.woff") format("woff");
}

/* Oswald */
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 100 700;
    /* supports a range of weights */
    font-display: swap;
    src: url('/assets/fonts/Oswald/Oswald-VariableFont_wght.ttf') format('truetype');
}

/* Open Sans */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 100 700;
    /* supports a range of weights */
    font-display: swap;
    src: url('/assets/fonts/OpenSans/OpenSans-VariableFont_wdth,wght.ttf') format('truetype');
}