/* ==================================== */
/*            ROOT VARIABLES            */
/* ==================================== */

:root {
    --primary-color: #632E8F;
    --primary-color-dark: #4b1f6e;
    --menu-bg-color: #E5EAF5;
    --dropdown-hover-bg: #e0d6eb;
    --dropdown-border: #b08ac7;
    --balsamic-white: #F8BF00;
    --transition-fast: 0.3s ease-in-out;
}

/* ==================================== */
/*            GLOBAL STYLES             */
/* ==================================== */

html, body {
    height: auto;
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: "Montserrat", Montserrat;
    background-color: #E5EAF5;
    overflow-x: hidden;
}

/* ==================================== */
/*               NAVBAR                 */
/* ==================================== */

.navbar-upper {
    background: var(--primary-color-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0px;
    width: 100vw;
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.2);
    height: 100px;
    position: relative;
}

.navbar .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0;
    width: 100%;
}

.navbar-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    padding: 12px 20px;
    border-radius: 15px;
    box-shadow: 0px 5px 9px rgba(0, 0, 0, 0.15), 
                0px 3px 6px rgba(0, 0, 0, 0.10);
    width: 170px;
    height: 70px;
    margin-left: 30px; /* Adjust as needed */
}

.navbar-logo {
    max-width: 160px;
    height: auto;
}

.navbar-links {
  display: flex;
  justify-content: flex-end; /* ⬅️ Push items to the right */
  align-items: center;
  width: 100%;
  gap: 20px;
  padding-right: 40px; /* optional: matches your page layout */
}

.navbar-nav {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* ⬅️ Push nav items to the right */
  padding: 0;
  margin: 0;
  gap: 20px;
  width: auto; /* prevents stretching */
}


.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 0 15px;
}

.nav-link {
    color: white;
    font-weight: normal;
    text-decoration: none;
    transition: color var(--transition-fast);
    font-size: 16px;
    padding: 10px 15px;
}

.nav-link:hover {
    color: var(--balsamic-white);
}

.nav-item a {
    display: inline-block;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0;
    height: 3px;
    background-color: var(--balsamic-white);
    transition: width var(--transition-fast), left var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* ==================================== */
/*       NOTIFICATION BAR STYLES       */
/* ==================================== */

.text-container {
    max-width: 50%;
    min-height: 330px;
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: auto;
}

.text-container .why-frame-title {
    font-size: 32px;
    font-family: var(--primary-font);
    font-weight: bold;
    color: var(--primary-color-dark);
    margin-bottom: 20px;
}

.text-container p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}

.notification-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: white;
    font-weight: normal;
    font-size: 16px;
    padding: 10px 20px;
    position: fixed;
    z-index: 1100;
    transition: opacity 0.10s ease-in-out;
    min-height: 0;
    text-align: center;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-wrap: wrap;
    top: 0;
}

.notification-header {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
    flex-wrap: wrap;
    padding: 0 40px;
}

.dismiss-btn {
    font-size: 14px;
    font-weight: normal;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease-in-out;
    padding: 5px 10px;
    text-decoration: underline;
    white-space: nowrap;
    line-height: 1;
}

.dismiss-btn:hover {
    opacity: 0.7;
    text-decoration: none;
}

.notification-bar a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.notification-bar a:hover {
    color: var(--balsamic-white);
}

.hidden {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

/* ==================================== */
/*       MOBILE VIEW FIXES              */
/* ==================================== */

@media (max-width: 768px) {
    .info-section {
        flex-direction: column;
        align-items: center;
        padding: 20px 5%;
        gap: 10px;
    }

    .image-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        gap: 5px;
    }

    .why-frame-text-container {
        max-width: 85%;
        padding: 15px;
        text-align: center;
    }

    .content-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 15px; /* 🔥 Matched spacing with info-section */
    }

    .text-container {
        max-width: 85%;
        padding: 15px;
        min-height: 0;
        text-align: center;
    }

    .text-container .why-frame-title {
        font-size: 22px; /* Reduced for mobile */
        text-align: center;
    }

    .text-container p {
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
    }

    .image-container {
        max-width: 85%;
        display: flex;
        justify-content: center;
    }

    .image-container img {
        width: 100%;
        height: auto;
    }
}

/* ==================================== */
/*       STICKY BOTTOM NAVIGATION       */
/* ==================================== */

.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary-color-dark);
    display: none;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    box-shadow: 0px -4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-top: 0px solid rgba(255,255,255,0.1);
    height: 70px;
}

.mobile-bottom-nav button {
    background: none;
    border: none;
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 5px 5px;
    flex: 1;
    text-align: center;
    cursor: pointer;
    transition: none !important;
    border-radius: 8px;
    margin: 0 5px;
    font-size: 10px;
}


.mobile-bottom-nav button:focus,
.mobile-bottom-nav button:active {
    outline: none;
    box-shadow: none;
}


@media (max-width: 992px) {
    body {
        padding-bottom: 70px !important;
    }
    
    .mobile-bottom-nav {
        display: flex !important;
    }
}

@media (min-width: 993px) {
    .mobile-bottom-nav {
        display: none;
    }
}

/* ==================================== */
/*         MEGA DROPDOWN MENU           */
/* ==================================== */

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: rgba(245, 245, 245, 0.85);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    padding: 15px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    justify-content: space-between;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.nav-item:hover > .dropdown-menu {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-left, .dropdown-right {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    min-width: 150px;
}

/* Dropdown menu background with blur effect */
.dropdown-menu {
    background-color: rgba(75, 31, 110, 0.8); /* Using --primary-color-dark with opacity */
    backdrop-filter: blur(8px); /* Blur effect */
    border: 1px solid var(--dropdown-border); /* Using root variable for border */
    border-radius: 8px;
    padding: 5px 0;
}

/* Dropdown button styles */
.dropdown-item {
    display: block; /* Changed to block for better spacing and alignment */
    padding: 8px 20px; /* Updated padding for a better visual */
    color: #E5EAF5;  /* Text color set to white */
    text-decoration: none;
    font-weight: normal;
    font-size: 14px;
    transition: background-color var(--transition-fast), color var(--transition-fast);
    text-align: left;
    border-radius: 6px;
    width: 100%; /* Ensures full width for better hover effect */
    background-color: transparent; /* Default non-hover state is transparent */
}

.dropdown-item:hover {
    background-color: #E5EAF5; 
    color: var(--primary-color-dark); /* Change text color on hover to dark primary color */
}

/* Make font color change to solid yellow without any frame effect on hover */
.dropdown-item:hover {
    color: var(--primary-color-dark); /* Set text color to yellow on hover */
}

/* ==================================== */
/*          MOBILE MENU STYLES          */
/* ==================================== */

@media (max-width: 992px) {
    .navbar-links {
        display: none !important;
    }
}

@media (min-width: 993px) {
    .navbar-links {
        display: flex !important;
    }
}

/* ==================================== */
/*              CAROUSEL STYLES         */
/* ==================================== */

/* ==================================== */
/*          UPPER CAROUSEL STYLES       */
/* ==================================== */
#carouselExampleIndicators {
    width: 100%;
    margin: 0px auto 0 auto;
    position: relative;
    border-radius: 0px;
    overflow: hidden;
    display: block;
}

#carouselExampleIndicators .carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 0px;
}

/* On mobile: adjust to show full image */
@media (max-width: 768px) {
  #carouselExampleIndicators .carousel-item img {
    height: auto; /* Let image scale naturally */
    max-height: 450px; /* Optional cap to prevent giant images */
    object-fit: contain;
    object-position: center center;
  }

  #carouselExampleIndicators {
    max-height: 450px; /* match the max image height */
  }
}

#carouselExampleIndicators .carousel-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    padding: 0;
}
#carouselExampleIndicators .learn-more-btn {
    display: inline-block;
    background: var(--primary-color-dark) !important;
    border: none !important;
    color: var(--balsamic-white) !important;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    padding: 12px 35px;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease;
}
@media (max-width: 768px) {
  #carouselExampleIndicators .learn-more-btn {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    color: var(--balsamic-white) !important;
    font-size: 14px;
    font-weight: bold;
    text-decoration: underline;
    border-radius: 0 !important;
  }
}


/* ==================================== */
/*         BOTTOM CAROUSEL STYLES       */
/* ==================================== */
.clients-scroll-wrapper {
  padding: 20px 40px;
}

.title-frame-title {
  text-align: center;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 28px;
  margin-bottom: 30px;
  margin-top: 30px;
}


.clients-logos-track {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 30px;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.clients-logos-track img {
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}

.clients-scroll-wrapper {
  width: 80%;
  margin: 0 auto;
}

.clients-logos-track::-webkit-scrollbar {
  display: none;
}

.clients-progress-bar {
  width: 100%;
  height: 5px;
  background-color: var(--dropdown-hover-bg);
  margin-top: 25px;
  border-radius: 3px;
  overflow: hidden;
}

.clients-progress-fill {
  height: 100%;
  width: 0%;
  background-color: var(--primary-color);
  transition: width 0.2s ease-out;
}

.clients-logos-track.dragging {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}




/* ==================================== */
/*       HIGH OLEIC SECTION FIXED       */
/*=====================================*/
/* ==================================== */
/*  SECOND ELEMENT CONTENT WRAPPER      */
/* ==================================== */
.second-element-content-wrapper {
    display: flex;
    align-items: flex-start;       /* Align both columns at the top */
    justify-content: space-between;
    gap: 5px;                      /* Space between the two columns */
    max-width: 1200px;
    margin: 50px auto;             /* Center the section horizontally */
    padding: 10px;
    margin-bottom: 50px;
    margin-top: 120px;
}

.second-element-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 50%;
    min-height: 330px;
    position: relative;      /* or margin-top instead */
    top: 60px;               /* approximate the title's height */
}


.second-element-image-container img {
    width: 100%;
    height: 420px;
    object-fit: contain;
    border-radius: 25px;
}

/* Right Column: Title + Text Frame */
.second-element-right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;        /* Keep title left-aligned */
    justify-content: flex-start;
    max-width: 50%;
    min-height: 330px;             /* Matches the image container's height */
    gap: 50px;                     /* Space between the title and text frame */
}

/* Title (outside the white box) */
.second-element-title {
    font-family: Montserrat, Montserrat;
    font-size: 35px;
    font-weight: bold;
    color: var(--primary-color-dark);
    margin: 0;
    line-height: 1.2;
}

/* White Text Frame */
.second-element-text-container {
    flex: 1;                       /* Fills remaining space vertically */
    width: 100%;
    padding: 40px 30px;
    border-radius: 18px;
    box-shadow: 5px 8px 20px rgba(0, 0, 0, 0.1);
    background-color: white;
    text-align: left;
}

.second-element-text-container p {
    font-family: Montserrat, Montserrat;
    font-size: 14px;
    color: var(--primary-color-dark);
    line-height: 1.6;
    margin: 0 0 10px;
}

/* Responsive: Stack Columns on Small Screens */
@media (max-width: 768px) {
    .second-element-content-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .second-element-image-container,
    .second-element-right-column {
        max-width: 100%;
        min-height: 0;
    }
    .second-element-text-container {
        text-align: center;
    }
}
/* Initial animation state */
.animate-title, 
.animate-text, 
.animate-image {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Final state when in view */
.animate-title.show, 
.animate-text.show, 
.animate-image.show {
    opacity: 1;
    transform: translateY(0);
}


/* ==================================== */
/*       WHY BUNGE CONTENT WRAPPER      */
/* ==================================== */
/* ======================================== */
/*         WHY BUNGE SECTION LAYOUT         */
/* ======================================== */

.why-bunge-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center; /* changed from space-between */
    gap: 10px; /* increased for cleaner control */
    max-width: 1200px;
    margin: 50px auto;
    padding: 5px;
    margin-top: 120px;
}

/* Left Column: Single Centered Image */
.why-bunge-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    min-height: 410px;
}

.why-bunge-image-container img {
    max-width: 100%;
    max-height: 330px;
    object-fit: contain;
    border-radius: 18px;
    height: auto;
    object-fit: contain;
}

/* Right Column: Title + Text Container */
.why-bunge-right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 50%;
    min-height: 330px;
    gap: 10px;
}

/* Title */
.why-bunge-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    font-weight: bold;
    color: var(--primary-color-dark);
    margin: 0;
    line-height: 1.6;
}

/* Text Frame */
.why-bunge-text-container {
    flex: 1;
    width: 100%;
    padding: 30px 30px;
    border-radius: 18px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    background-color: white;
    text-align: left;
}

.why-bunge-text-container p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: var(--primary-color-dark);
    line-height: 1.6;
    margin: 0 0 10px;
}
/* ==================================== */
/*         stip with res                */
/* ==================================== */
.why-bunge-image-strip {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.image-strip-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
}

.image-strip-container img {
  width: 100%;
  max-width: 150px;        /* ✅ Controls the image size */
  height: 150px;
  object-fit: contain;
  border-radius: 50%;       /* ✅ Makes it a perfect circle */
  background-color: #E5EAF5; /* Optional: visible circle background */
  padding: 10px;             /* Optional: extra space inside the circle */
  transition: transform 0.3s ease;
}

/* Optional hover scale effect */
.image-strip-container img:hover {
  transform: scale(1.5);
}

@media (max-width: 768px) {
  .image-strip-container {
    flex-wrap: wrap;           /* ✅ Allows wrapping instead of squeezing */
    justify-content: center;   /* ✅ Center the wrapped items */
    gap: 16px;                 /* ✅ Slightly smaller gap for mobile */
    padding: 0 10px;
  }

  .image-strip-container img {
    max-width: 100px;          /* ✅ Smaller image size on mobile */
    height: 100px;
    padding: 8px;
  }
}


/* ==================================== */
/*          RESPONSIVE (Mobile)         */
/* ==================================== */
@media (max-width: 768px) {
    /* Stack columns vertically */
    .why-bunge-content-wrapper {
        flex-direction: column;
        align-items: center;
    }

    /* Center the title on mobile */
    .why-bunge-right-column {
        align-items: center;
        max-width: 100%;           /* Full width on mobile */
        min-height: 0;          /* Let it shrink if content is small */
    }

    .why-bunge-title {
        font-size: 30px;           /* Scale down for smaller screens */
        text-align: center;
    }

    .why-bunge-text-container {
        text-align: center;        /* Center text on mobile */
        max-width: 100%;
    }

    .why-bunge-image-container {
        max-width: 100%;
        min-height: 0;
    }
}

/* ==================================== */
/*               4 cards                */
/* ==================================== */

.card-scroll-wrapper {
  width: 90%;              /* or max-width: 1400px if needed */
  margin: 0 auto;          /* ✅ centers wrapper horizontally */
  overflow-x: auto;
}

/* ========== Card Section ========== */
.card-section {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  padding-top: 60px;
  padding-bottom: 0;
  overflow-x: auto;
  justify-content: flex-start;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  position: relative;
}

.card-section::-webkit-scrollbar {
  display: none; /* Optional: hide scrollbar */
}

/* Left & right spacing with pseudo-elements (for scroll alignment) */
.card-section::before,
.card-section::after {
  content: '';
  flex: 0 0 20px; /* Adjust as needed for left/right padding */
}

/* Desktop: add inline padding for visual balance */
@media (min-width: 769px) {
  .card-section {
    padding-inline: 40px;
  }
}

/* ========== Individual Cards ========== */
.custom-card {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 300px;
  background-color: var(--menu-bg-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition-fast);
  color: var(--primary-color-dark);
  display: flex;
  flex-direction: column;
}

.custom-card:hover {
  transform: translateY(-5px);
}

.custom-card img {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: contain;
}

.card-body {
  background-color: #ffffff;
  padding: 16px;
  flex-grow: 1;
}

.card-body p {
  margin: 0;
}

/* ========== Button ========== */
.btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  margin-top: 10px;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  transition: background-color var(--transition-fast);
}

.btn:hover {
  background-color: var(--primary-color-dark);
}

/* ========== Scroll Progress Bar (mobile only) ========== */
.scroll-progress-bar {
  height: 5px;
  width: 80%;
  background-color: var(--dropdown-hover-bg);
  margin: 5px auto 0;
  display: none;
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background-color: var(--primary-color);
  transition: width 0.2s ease-out;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .scroll-progress-bar {
    display: block;
  }
}

@media (min-width: 1024px) {
  .card-section {
    justify-content: center;
    overflow-x: hidden; /* No scroll on large screen */
  }

  .card-section::before,
  .card-section::after {
    display: none; /* Don't need spacers when centered */
  }
}



/* ==================================== */
/*               FOOTER                 */
/* ==================================== */

.footer {
  background-color: white;
  color: #632E8F;
  padding: 60px 40px 40px;
  margin-top: 40px;
  width: 100%;
  text-align: left;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  padding: 0;
  gap: 40px;
  height: 300px;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* ✅ Center column stays centered */
.footer-center {
  align-items: center;
  text-align: center;
}

/* ✅ Right column pushed to the far right */
.footer-right {
  align-items: flex-end;
  text-align: right;
}

/* Left column already perfect */
.footer-left {
  align-items: flex-start;
  text-align: left;
}

.footer-logo {
  width: 130px;
  margin-bottom: 20px;
}

.footer h4 {
  color: #632E8F;
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 18px;
}

.footer-text,
.footer a {
  font-size: 16px;
  color: black;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease, font-weight 0.3s ease;
  line-height: 1.6;
}

.footer a:hover {
  color: var(--primary-color);
  font-weight: bold;
}

.footer-socials a {
  margin-right: 12px;
  font-size: 16px;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    align-items: center !important;
    text-align: center !important;
    padding: 20px 0;
  }
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto; /* ✅ Remove fixed height on mobile */
    gap: 30px;     /* ✅ Add space between stacked sections */
    padding: 20px;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    align-items: center;
    text-align: center;
    padding: 10px 0;
    width: 100%; /* ✅ Full width on small screens */
  }

  .footer-logo {
    margin: 0 auto 20px;
  }

  .footer h4 {
    font-size: 17px; /* Slightly smaller for mobile */
  }

  .footer-text,
  .footer a {
    font-size: 15px;
  }
}

/* Specific styles for contact menu */
.contact-menu {
    min-width: 200px !important;
    width: auto !important;
}

.dropdown-stack {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 5px 0;
}

.dropdown-stack .dropdown-item {
    width: 100%;
    white-space: nowrap;
    padding: 8px 20px;
}

