.nav-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    /* Desktop default */

    background-image: url("img/img1.png");
    background-repeat: repeat-x;
    background-size: auto 100%;
    /* ✅ responsive height */
    background-position: center;

    z-index: 9999;
}

/* White overlay */
.nav-border::before {
    content: "";
    position: absolute;
    inset: 0;

    pointer-events: none;
    /* ✅ important */
}

@media (max-width: 768px) {
    .nav-border {
        position: absolute;
        width: 100%;
        padding-top: 30px;
        height: 22px;
        /* smaller for mobile */
        background-size: auto 100%;
    }
}

@media (max-width: 480px) {
    .nav-border {
        width: 100%;
        padding-top: 40px;
        height: 18px;
    }
}




.montserrat-uniquifier {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}







/*******************************
    NAVBAR BASE STYLE
*******************************/

/* Add space between nav-border and nav-links */
.navbar {
    position: relative;
    z-index: 10;
    margin-top: 5px;
    /* space under border */
    background: #fff !important;
    padding-top: 0px !important;
    /* extra space above menu links */
    padding-bottom: 15px !important;
}


/* LOGO */
.logo-img {
    height: 77px !important;
    /* change height here */
    width: auto !important;
    /* keep proportions */
    object-fit: contain !important;
    display: block !important;
}




.logo-tagline {
    font-size: 12px;
    color: #4CAF50;
    margin-top: -20px;

    font-weight: 600;
}


/*******************************
    NAV LINKS
*******************************/
.nav-link {
    /* Horizontal spacing for desktop links */
    margin: 1 9px;
    font-size: 18px;
    font-weight: 600;
    color: #2E7D32 !important;
    position: relative;
    transition: 0.3s;
    white-space: nowrap;
}

/* Make logo + menu perfectly aligned horizontally */
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    margin-left: 85px !important;
    /* Moves logo to the right */
    margin-right: 10px !important;
    /* Keeps gap before menu */
}



.navbar-nav {
    margin-left: 30px !important;
    /* Moves the menu closer */
}

.navbar-brand {
    margin-right: 180px !important;
    /* Reduces the gap from the logo */
}




/* YELLOW UNDERLINE */
.nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 3px;
    background-color: #f8b400;

    left: 0;
    bottom: -6px;
    border-radius: 5px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: #f8b400 !important;
}

/*******************************
    DROPDOWN
*******************************/
.dropdown-menu {
    border-radius: 12px;
    padding: 10px 0;
    min-width: 200px;
    border: 1px solid #e5e5e5;
    margin-top: 12px !important;
}

.dropdown-item {
    padding: 12px 20px;
    transition: 0.3s;
}

.dropdown-item:hover {
    background: #f8b400;
    color: none !important;
    padding-left: 28px;
}

/* Add custom dropdown arrow on the RIGHT */
.dropdown-toggle {
    position: relative;
    padding-right: 25px;
}

/* Remove default bootstrap arrow & add custom one */
.dropdown-toggle::after {
    content: "▼";
    font-size: 10px;
    position: absolute;
    left: 95px;
    /* Keep arrow on right */
    top: 50%;
    transform: translateY(-50%);
    border: none !important;
    /* Removes yellow border/line */
}





/*******************************
    PICKLES BUTTON
*******************************/
.pickles-btn {
    background: #2E7D32;
    color: white;
    padding: 15px 30px 15px;
    border-radius: 0px 10px 25px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.pickles-btn:hover {
    background: #256428;
    color: white !important;
}

.cart-icon {
    width: 27px;
    color: white !important;
    height: auto;
}



.nav-bottom-border {
    width: 100%;
    /* ✅ responsive */
    height: 18px;
    max-width: 1920px;
    /* ✅ limits on large screens */

    background-image: url("img/borderdown.png");
    background-repeat: repeat-x;
    background-position: bottom left;
    background-size: auto;

    background-color: #f1ebe4;

    display: block;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    /* center on large screens */
}

/* Tablets */

@media (max-width: 992px) {
    .nav-bottom-border {
        height: 14px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .nav-bottom-border {
        height: 10px;
    }
}




/* ================================
   TABLET RESPONSIVE (≤ 991px)
================================ */
@media (max-width: 991px) {

    /* Reset forced desktop spacing */
    .navbar-brand {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .navbar-nav {
        margin-left: 0 !important;
        text-align: center;
    }

    /* Logo resize */
    .logo-img {
        height: 55px !important;
        margin-right: 0 !important;
    }

    /* Side-by-side logo + toggler */
    .navbar .container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    /* Nav links spacing */
    .nav-link {
        margin: 10px 0 !important;
        font-size: 16px;
    }

    /* Dropdown fixes */
    .dropdown-menu {
        text-align: center;
        margin-top: 0 !important;
    }

    .dropdown-toggle::after {
        left: auto;
        right: 10px;
    }

    /* Pickles button */
    .pickles-btn {
        width: auto;
        font-size: 16px;
        padding: 10px 18px;
    }
}


/* ================================
   MOBILE RESPONSIVE (≤ 767px)
================================ */
@media (max-width: 767px) {

    /* Navbar spacing */
    .navbar {
        padding: 10px 0 !important;
    }

    /* Reset Brand Alignment (Side-by-side) */
    .navbar-brand {
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
    }

    .logo-img {
        height: 50px;
        margin-left: 20px;
    }

    /* Collapsed menu */
    .navbar-collapse {
        background: #fff;
        padding: 15px 0;
        border-radius: 10px;
    }

    .nav-link {
        font-size: 15px;
        padding: 8px 0;
    }

    /* Remove underline animation on mobile */
    .nav-link::after {
        display: none;
    }

    /* Dropdown menu flat */
    .dropdown-menu {
        border: none;
        box-shadow: none;
    }

    /* Dropdown arrow alignment */
    .dropdown-toggle::after {
        right: 0;
    }

    /* Pickles button full width */
    .pickles-btn {
        width: 100%;
        justify-content: center;
        margin-top: 12px;
        font-size: 15px;
    }

    /* Cart icon */
    .cart-icon {
        width: 22px;
    }

    /* =====================================================
       CUSTOM ANIMATED TOGGLER & SIDE MENU
    ===================================================== */
    .custom-toggler {
        border: none;
        padding: 5px;
        outline: none;
        box-shadow: none !important;
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: transparent !important;
        cursor: pointer;
    }

    .custom-toggler .bar {
        width: 30px;
        height: 3px;
        background-color: #2E7D32;
        border-radius: 10px;
        transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    }

    /* Animate to 'X' */
    .custom-toggler:not(.collapsed) .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .custom-toggler:not(.collapsed) .bar:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }

    .custom-toggler:not(.collapsed) .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* SIDE MENU ANIMATION */
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        /* Start off-screen on the left */
        width: 70%;
        height: 100vh;
        background: #fff;
        padding: 50px 30px !important;
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        display: block !important;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        visibility: hidden;
    }

    .navbar-collapse.show {
        left: 0;
        visibility: visible;
    }

    .nav-item {
        opacity: 0;
        transform: translateX(-50px);
        transition: all 0.4s ease;
    }

    .navbar-collapse.show .nav-item {
        opacity: 1;
        transform: translateX(0);
    }

    /* Staggered entry for menu items */
    .navbar-collapse.show .nav-item:nth-child(1) {
        transition-delay: 0.2s;
    }

    .navbar-collapse.show .nav-item:nth-child(2) {
        transition-delay: 0.3s;
    }

    .navbar-collapse.show .nav-item:nth-child(3) {
        transition-delay: 0.4s;
    }

    .navbar-collapse.show .nav-item:nth-child(4) {
        transition-delay: 0.5s;
    }

    .navbar-collapse.show .nav-item:nth-child(5) {
        transition-delay: 0.6s;
    }

    .navbar-collapse.show .nav-item:nth-child(6) {
        transition-delay: 0.7s;
    }

    .navbar-collapse.show .nav-item:nth-child(7) {
        transition-delay: 0.8s;
    }
}


/* ================================
   ANIMATIONS
================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.animate-fade-left {
    animation: fadeInLeft 0.8s ease-out forwards;
    opacity: 0;
}

.animate-fade-right {
    animation: fadeInRight 0.8s ease-out forwards;
    opacity: 0;
}

/* Staggered Delays */
.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

/* MAIN CONTAINER */
.login-container {
    width: 90%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-top: 150px;
    margin-left: 190px;
}

/* LEFT FORM */
.login-box {
    flex: 1;
    max-width: 500px;

    position: relative;
    top: -80px;
}



.login-header {
    margin-bottom: 30px;
    margin-left: 70px;
}

.login-header .icon {
    display: flex;
    justify-content: center;
    /* center horizontally */
    margin-bottom: -5px;
}

.login-header .icon img {
    width: 80px;
    /* 🔥 icon width */
    height: 70px;
    /* 🔥 icon height */
    margin-left: -20px;

}


.login-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    margin-left: 50px;
}

.login-header p {
    color: #555;
    font-size: 18px;
    white-space: nowrap;
    margin-left: -50px;
}

/* FORM */
form label {
    width: 750px;
    height: 30px;
    display: block;
    font-size: 18px;
    margin-bottom: 6px;
    margin-top: 18px;
}

form input {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 18px;
    transition: all 0.3s ease;
}

form input:focus {
    border-color: #256428;
    box-shadow: 0 0 10px rgba(37, 100, 40, 0.1);
    outline: none;
}

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
    font-size: 14px;
}

/* REMEMBER ME */
.remember {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
    color: #000;
}

/* Hide default checkbox */
.remember input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Custom checkbox */
.checkmark {
    width: 20px;
    height: 20px;
    border: 1.5px solid #888;
    border-radius: 6px;
    display: inline-block;
}

/* Checked state */
.remember input:checked+.checkmark {
    background-color: #2f5d1f;
    border-color: #2f5d1f;
}

/* Check icon */
.remember input:checked+.checkmark::after {
    content: "✔";
    color: #fff;
    font-size: 12px;
    position: absolute;
    left: 5px;
    top: 1px;
}

/* FORGOT PASSWORD */
.options .forgot {
    color: #2a4cff;
    /* 🔥 blue like image */
    text-decoration: none;
    font-weight: 500;
    font-size: 20px;
    white-space: nowrap;

}

.options .forgot:hover {
    text-decoration: underline;
}

button {
    width: 20%;
    margin-top: 10px;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: #256428;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background: #244917;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

button:active {
    transform: translateY(0);
}

.signup {
    text-align: center;
    margin-top: 20px;
    font-size: 20px;
}

.signup a {
    color: black;
    font-weight: 600;
    text-decoration: none;
}

/* RIGHT IMAGE */
.image-box {
    flex: 1;
    display: flex;
    justify-content: center;

    width: 709px;
    height: 590px;
    aspect-ratio: 709/933;

    margin-top: -180px;
    /* 🔥 MOVE IMAGE UP */
}


.image-box img {
    width: 100%;
    max-width: 420px;
    border-radius: 40px;
    object-fit: cover;
}

/* ============================================
   TABLET RESPONSIVE (≤ 991px)
============================================ */
@media (max-width: 991px) {
    .login-container {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-top: 200px;
        padding: 0 30px;
        gap: 40px;
    }

    .login-box {
        max-width: 100%;
        top: 0;
    }

    .login-header {
        margin-left: 0;
        text-align: center;
    }

    .login-header h2 {
        margin-left: 0;
        font-size: 26px;
    }

    .login-header p {
        margin-left: 0;
        white-space: normal;
        font-size: 16px;
    }

    .login-header .icon img {
        margin-left: 0;
    }

    .image-box {
        width: 100%;
        height: auto;
        margin-top: 0;
    }

    .image-box img {
        max-width: 100%;
    }
}

/* ============================================
   MOBILE RESPONSIVE (≤ 768px) - BEST DESIGN
============================================ */
@media (max-width: 768px) {

    /* Nav Second Border - hide on mobile */
    .nav-second-border {
        display: none;
    }

    /* ========== LOGIN CONTAINER ========== */
    .login-container {
        flex-direction: column;
        width: 100%;
        margin: 0;
        margin-top: 30px;
        padding: 0 20px;
        gap: 30px;
    }

    /* ========== LOGIN BOX ========== */
    .login-box {
        max-width: 100%;
        top: 0;
        padding: 0;
        order: 1;
    }

    /* ========== LOGIN HEADER - CENTERED ========== */
    .login-header {
        margin-left: 0;
        margin-bottom: 25px;
        text-align: center;
    }

    .login-header .icon {
        justify-content: center;
    }

    .login-header .icon img {
        width: 65px;
        height: 58px;
        margin-left: 0;
    }

    .login-header h2 {
        font-size: 22px;
        margin-left: 0;
        text-align: center;
    }

    .login-header p {
        font-size: 14px;
        margin-left: 0;
        white-space: normal;
        text-align: center;
        line-height: 1.5;
        color: #666;
    }

    /* ========== FORM STYLING ========== */
    form label {
        width: 100%;
        height: auto;
        font-size: 15px;
        margin-top: 16px;
        margin-bottom: 8px;
    }

    form input {
        width: 100%;
        padding: 14px 16px;
        font-size: 15px;
        border-radius: 10px;
        border: 1px solid #ddd;
    }

    form input:focus {
        border-color: #2f5d1f;
        outline: none;
        box-shadow: 0 0 0 3px rgba(47, 93, 31, 0.1);
    }

    /* ========== OPTIONS ROW (Remember + Forgot) ========== */
    .options {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-top: 16px;
    }

    .options .forgot {
        font-size: 15px;
        align-self: flex-end;
    }

    .remember {
        font-size: 14px;
    }

    .checkmark {
        width: 18px;
        height: 18px;
        border-radius: 5px;
    }

    /* ========== SUBMIT BUTTON ========== */
    .login-box button {
        width: 100%;
        padding: 14px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 10px;
        margin-top: 20px;
        background: linear-gradient(135deg, #2f5d1f 0%, #3a7428 100%);
        transition: all 0.3s ease;
    }

    .login-box button:active {
        transform: scale(0.98);
    }

    /* ========== SIGNUP LINK ========== */
    .signup {
        font-size: 15px;
        margin-top: 18px;
        text-align: center;
    }

    .signup a {
        color: #2f5d1f;
        font-weight: 700;
    }

    /* ========== IMAGE BOX ========== */
    .image-box {
        width: 100%;
        max-width: 100%;
        height: 220px;
        margin-top: 10px;
        order: 2;
        padding: 0;
    }

    .image-box img {
        width: 100%;
        max-width: 100%;
        height: 100%;
        border-radius: 20px;
        object-fit: cover;
    }

    /* ========== NEWSLETTER SECTION ========== */
    .newsletter-wrapper {
        width: 95%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: -30px;
        margin-top: 40px;
    }

    .newsletter-box {
        flex-direction: column;
        padding: 20px 18px;
        gap: 15px;
        text-align: center;
    }

    .newsletter-box h4 {
        text-align: center;
        font-size: 18px;
        margin-bottom: 5px;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .newsletter-form .form-control {
        width: 100%;
        padding: 12px 18px;
        font-size: 14px;
    }

    .newsletter-wrapper .submit-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 15px;
    }

    /* ========== FOOTER ADJUSTMENTS ========== */
    .footer-section .row {
        flex-wrap: wrap;
    }

    .footer-col {
        width: 45%;
        margin-bottom: 25px;
        text-align: center;
    }

    .footer-content {
        margin-top: 30px;
    }

    .footer-logo {
        margin: 0 auto 15px;
        display: block;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-links {
        text-align: center;
    }
}

/* ============================================
   EXTRA SMALL DEVICES (≤ 480px)
============================================ */
@media (max-width: 480px) {
    .login-container {
        padding: 0 15px;
        margin-top: 20px;
    }

    .login-header h2 {
        font-size: 20px;
    }

    .login-header p {
        font-size: 13px;
    }

    .login-header .icon img {
        width: 55px;
        height: 48px;
    }

    form label {
        font-size: 14px;
    }

    form input {
        padding: 12px 14px;
        font-size: 14px;
    }

    .options .forgot {
        font-size: 14px;
    }

    .login-box button {
        padding: 12px;
        font-size: 15px;
    }

    .signup {
        font-size: 14px;
    }

    .image-box {
        height: 180px;
    }

    .newsletter-wrapper {
        width: 92%;
    }

    .newsletter-box h4 {
        font-size: 16px;
    }
}





/* ------------------------------------
    NEWSLETTER
------------------------------------ */
.newsletter-wrapper {
    width: 100%;
    position: relative;
    z-index: 10;
    margin-bottom: -40px;
}

.newsletter-box {
    background: #f5eeee;
    padding: 25px 30px;
    border-radius: 10px;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    align-items: center;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.10);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex: 1;
}

.newsletter-form .form-control {
    border-radius: 30px;
    padding: 15px 20px;
}

.submit-btn {
    background: #2e5f25;
    color: #fff;
    padding: 10px 25px;
    border-radius: 10px;
}

/* footer  */
.footer-section {
    background-color: #1d5e2e;
    color: #fff;
    padding: 60px 0;
    font-family: Arial, sans-serif;
    position: relative;
    margin-bottom: 0 !important;
}

.footer-section .row {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
}

.footer-col {
    height: 10%;
    margin-top: auto;
}

p {
    margin-top: 0;
    margin-bottom: 0.45em;
}


/* Mobile only */
@media (max-width: 768px) {
    .footer-section .row {
        flex-wrap: wrap;
    }
}


.pattern-bg {
    background: url("img/pattern.png");
    /* add your dotted leaf pattern */
    height: 120px;
    background-size: 100%;
    background-repeat: repeat-x;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.footer-content {
    margin-top: 120px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 0px;
}

.footer-col h5 {
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 3px;
    align-items: center;
}

.social-icons img {
    width: 42px;
    height: 42px;

    object-fit: cover;
    /* keeps icons sharp */
    transition: 0.3s ease;
    cursor: pointer;
}

.social-icons img:hover {
    transform: translateY(-4px);
    filter: brightness(0.85);
}



.copyright {
    font-size: 13px;
    margin-top: 15px;
}

hr {
    border-color: rgba(255, 255, 255, 0.2);
}

/**** footer close ****/
/****footer border***/



.footer-bottom-border {
    width: 100%;
    height: 40px;
    /* height of visible green line */

    background-image: url("img/footerdown.png");
    background-repeat: repeat-x;
    background-position: bottom;
    /* 🔥 IMPORTANT */
    background-size: auto;
    /* 🔥 IMPORTANT */
    background-color: #f1ebe4;
}



/* ===================== MOBILE RESPONSIVE ONLY ===================== */

@media (max-width: 768px) {

    .nav-link,
    .dropdown-item {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    /* NAV LINKS – mobile tap effect */
    .nav-link:active,
    .nav-link:focus {
        color: #f8b400 !important;
    }

    .nav-link:active::after,
    .nav-link:focus::after,
    .nav-link.active::after {
        width: 100%;
    }

    /* DROPDOWN ITEMS – mobile tap effect */
    .dropdown-item:active,
    .dropdown-item:focus {
        background: #f8b400;
        padding-left: 28px;
    }

    /* remove default outline on tap */
    .nav-link:focus,
    .dropdown-item:focus {
        outline: none;
        box-shadow: none;
    }

    /* OTHER MOBILE ADJUSTMENTS */
    .cards-wrap {
        gap: 0px !important;
    }


    /* ================= HERO TEXT ================= */

    .hero-header {
        padding: 40px 0;
    }

    .hero-text {
        padding-left: 0;
        margin-bottom: 30px;
        text-align: center;
    }

    .hero-text .small-title {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 16px;
        margin-top: 0;
    }

    /* ================= HERO IMAGES (NO SIDE SCROLL) ================= */

    .hero-images {
        justify-content: center;
        gap: 12px;
        flex-wrap: nowrap;
        overflow-x: hidden;
    }

    .img-box {
        width: 30vw;
        /* fits 3 images */
        max-width: 120px;
        aspect-ratio: 2 / 3;
        height: auto;
        border-radius: 18px;
    }

    /* ================= INFO CARDS GAP ================= */

    .cards-wrap {
        gap: 120px !important;
    }

    .info-card {
        width: 100%;
        max-width: 360px;
        height: auto;
        padding: 40px 20px 30px;
        margin-top: 0;
    }

    .info-img {
        width: 90%;
        height: 120px;
        top: -60px;
    }

    .card-body {
        padding: 20px;
        margin-top: 0;
        text-align: center;
    }

    .title {
        font-size: 24px;
    }

    .info-card p {
        font-size: 15px;
        margin-top: 0;
        margin-bottom: 0;
    }

    /* ================= NEWSLETTER ================= */

    .newsletter-box {
        width: 80%;
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .newsletter-form .form-control,
    .submit-btn {
        width: 100%;
    }

    /* ================= SOCIAL CARDS ================= */

    .social-card {
        width: 100%;
        max-width: 340px;
        height: 360px;
    }

    /* ================= FOOTER ================= */

    .footer-content {
        margin-top: 20px;
        text-align: left;
    }

    .social-icons {
        justify-content: left;
    }
}