@font-face {
    font-family: 'Gotham';
    src: url('gotham/Gotham-Thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
  }
  @font-face {
    font-family: 'Gotham';
    src: url('gotham/Gotham-ThinIta.otf') format('opentype');
    font-weight: 100;
    font-style: italic;
  }
  @font-face {
    font-family: 'Gotham';
    src: url('gotham/Gotham-XLight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
  }
  @font-face {
    font-family: 'Gotham';
    src: url('gotham/Gotham-XLightIta.otf') format('opentype');
    font-weight: 200;
    font-style: italic;
  }
  @font-face {
    font-family: 'Gotham';
    src: url('gotham/Gotham-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
  }
  @font-face {
    font-family: 'Gotham';
    src: url('gotham/Gotham-LightIta.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
  }
  @font-face {
    font-family: 'Gotham';
    src: url('gotham/Gotham-Book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
  }
  @font-face {
    font-family: 'Gotham';
    src: url('gotham/Gotham-BookIta.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
  }
  @font-face {
    font-family: 'Gotham';
    src: url('gotham/Gotham-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
  }
  @font-face {
    font-family: 'Gotham';
    src: url('gotham/Gotham-MediumIta.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
  }
  @font-face {
    font-family: 'Gotham';
    src: url('gotham/Gotham-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
  }
  @font-face {
    font-family: 'Gotham';
    src: url('gotham/Gotham-BoldIta.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
  }
  @font-face {
    font-family: 'Gotham';
    src: url('gotham/Gotham-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
  }
  @font-face {
    font-family: 'Gotham';
    src: url('gotham/Gotham-BlackIta.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
  }
  @font-face {
    font-family: 'Gotham';
    src: url('gotham/Gotham-Ultra.otf') format('opentype');
    font-weight: 950;
    font-style: normal;
  }
  @font-face {
    font-family: 'Gotham';
    src: url('gotham/Gotham-UltraIta.otf') format('opentype');
    font-weight: 950;
    font-style: italic;
  }

/* CSS Variables */
:root {
  --e-global-color-af6ccb2: #f8f9fa; /* Define the background color variable */
}

/* Prevent horizontal overflow on mobile */
html, body {
  overflow-x: hidden !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* Ensure all containers respect mobile width */
* {
  box-sizing: border-box !important;
}

  /* Apply Gotham to all elements */
  * {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
  }

  /* Make all text uppercase */
  body, .navbar-brand, .text-muted, h1, h2, h3, h4, h5, h6, p, span, div, a, button, input, label {
    text-transform: uppercase !important;
  }

  /* Menu text specific styles */
  .navbar-nav .nav-link, .dropdown-item {
    font-family: "Gotham", Sans-serif !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
  }

  /* Center navigation items */
  .navbar-nav {
    justify-content: center;
  }

  /* Add spacing between desktop menu items */
  @media (min-width: 992px) {
    .navbar-nav .nav-item:not(:last-child) {
      margin-right: 20px;
    }
  }

  /* Center dropdown menus */
  .dropdown-menu {
    text-align: center;
  }

  /* Custom container with 360px margins on each side for large screens only */
  @media (min-width: 1920px) {
    .container {
      max-width: calc(100% - 720px); /* 1920px - 720px (360px each side) */
      margin: 0 auto;
      padding-left: 15px;
      padding-right: 15px;
    }
  }

  /* Mobile: Force max-width 100% and prevent overflow */
  @media (max-width: 991.98px) {
    .container {
      max-width: 100% !important;
      width: 100% !important;
      padding-left: 15px !important;
      padding-right: 15px !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
    }
    
    .container-fluid:not(.bg-light) {
      width: 100% !important;
      max-width: 100% !important;
      padding-left: 15px !important;
      padding-right: 15px !important;
    }
    
    
    .row {
      margin-left: 0 !important;
      margin-right: 0 !important;
      width: 100% !important;
    }
    
    [class*="col-"] {
      padding-left: 7.5px !important;
      padding-right: 7.5px !important;
    }
  }

  /* jConfirm mobile styles */
  @media (max-width: 991.98px) {
    /* Prevent background from scrolling when jConfirm is open */
    html.jconfirm-open,
    body.jconfirm-open {
      overflow: hidden !important;
      height: 100% !important;
    }

    /* Ensure popup itself is fixed and contains its own scroll */
    .jconfirm {
      position: fixed !important;
      top: 0 !important;
      left: 0 !important;
      right: 0 !important;
      bottom: 0 !important;
      overflow: hidden !important;
    }

    /* Make the box flex to allow the content pane to scroll */
    .jconfirm-box {
      max-height: 90vh !important;
      display: flex !important;
      flex-direction: column !important;
      overflow: hidden !important;
    }

    /* Scrollable content area inside the popup */
    .jconfirm-content-pane {
      max-height: calc(100vh - 200px) !important; /* header + buttons space */
      overflow-y: auto !important;
      -webkit-overflow-scrolling: touch !important;
    }

    /* Buttons area should stay fixed at the bottom of the box */
    .jconfirm-buttons {
      flex-shrink: 0 !important;
    }
    .jconfirm {
      padding: 10px !important;
    }
    
    .jconfirm-box {
      width: 95% !important;
      max-width: 400px !important;
      margin: 0 auto !important;
      border-radius: 12px !important;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
      border: 1px solid #e9ecef !important;
    }
    
    .jconfirm-box .jconfirm-content {
      padding: 25px !important;
    }
    
    .jconfirm-box .jconfirm-buttons {
      padding: 20px 25px !important;
      text-align: center !important;
      border-top: 1px solid #e9ecef !important;
    }
    
    .jconfirm-box .jconfirm-buttons button {
      width: 48% !important;
      margin: 0 1% !important;
      padding: 12px 20px !important;
      font-size: 14px !important;
      font-family: 'Gotham', Sans-serif !important;
      font-weight: 600 !important;
      text-transform: uppercase !important;
      border-radius: 6px !important;
      border: none !important;
      transition: all 0.3s ease !important;
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
    }
    
    .jconfirm-box .jconfirm-buttons .btn-primary {
      background-color: #005ab2 !important;
      color: white !important;
    }
    
    .jconfirm-box .jconfirm-buttons .btn-primary:hover {
      background-color: #003d82 !important;
      transform: translateY(-1px) !important;
      box-shadow: 0 4px 12px rgba(0, 90, 178, 0.3) !important;
    }
    
    .jconfirm-box .jconfirm-buttons .btn-secondary {
      background-color: #676767 !important;
      color: white !important;
    }
    
    .jconfirm-box .jconfirm-buttons .btn-secondary:hover {
      background-color: #555555 !important;
      transform: translateY(-1px) !important;
      box-shadow: 0 4px 12px rgba(103, 103, 103, 0.3) !important;
    }

    /* Mobile padding - only top padding for navbar */
    .mobile-padding {
      padding-top: 60px !important;
      line-height: normal !important;
    }

    /* Ensure carousel is flush with navbar on mobile */
    .carousel {
      margin-top: 0 !important;
    }
  }

  /* Navbar height */
  .navbar {
    height: 103px !important;
    border-bottom: 1px solid #dee2e6 !important;
  }

  /* Menu height */
  .navbar-expand-lg.navbar-light {
    height: 46px !important;
  }

  /* Desktop menu styles */
  .container-fluid.bg-light {
    display: block !important;
    position: relative;
    z-index: 100;
  }
  
  /* Desktop body padding for fixed navbar */
  @media (min-width: 992px) {
    body {
      padding-top: 103px !important;
    }
  }
  
  .container-fluid.bg-light .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Mobile styles */
  @media (max-width: 991.98px) {
    /* Mobile navbar height */
    .navbar {
      height: 60px !important;
      width: 100% !important;
      max-width: 100% !important;
      left: 0 !important;
      right: 0 !important;
      padding-left: 15px !important;
      padding-right: 15px !important;
    }

    /* Mobile logo height and centering */
    .navbar-brand img {
      height: 54px !important;
      display: block;
      margin: 0 auto;
    }

    /* Hide search box on mobile */
    .search-box {
      display: none !important;
    }

    /* Mobile navbar layout */
    .navbar {
      position: relative;
      min-height: 60px;
    }

    /* Mobile search icon - positioned on the left */
    .search-icon {
      display: block !important;
      cursor: pointer;
      z-index: 1000;
      width: 24px !important;
      height: 24px !important;
    }

    /* Mobile menu toggle - positioned on the right */
    .navbar-toggler {
      z-index: 1000;
      border: 2px solid #005ab2 !important;
      border-radius: 6px !important;
      padding: 8px 12px !important;
      background-color: white !important;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      width: 44px !important;
      height: 44px !important;
    }
    
    .navbar-toggler:focus {
      box-shadow: 0 0 0 0.2rem rgba(0, 90, 178, 0.25) !important;
    }
    
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23005ab2' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
      width: 20px !important;
      height: 20px !important;
      background-size: 20px 20px !important;
      background-position: center !important;
      background-repeat: no-repeat !important;
      display: inline-block !important;
      vertical-align: middle !important;
    }

    /* Center logo on mobile */
    .navbar-brand.mx-auto {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      z-index: 999;
      max-width: 200px !important;
    }
    
    /* Prevent overflow in all elements */
    .navbar-brand img {
      max-width: 100% !important;
      height: auto !important;
    }
    
    .search-icon {
      max-width: 24px !important;
      width: 24px !important;
    }
    
    .navbar-toggler {
      max-width: 40px !important;
    }

    /* Ensure proper spacing on mobile */
    .search-icon {
      display: block !important;
      width: 24px !important;
      height: 24px !important;
      z-index: 1001;
    }
    
    .navbar-toggler {
      z-index: 1001;
    }

    .navbar-brand.mx-auto {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      z-index: 999;
    }

    /* Specific adjustments for large mobile screens like Samsung S23 Ultra */
    @media (max-width: 991.98px) and (min-width: 768px) {
      .search-icon {
        width: 26px !important;
        height: 26px !important;
      }
    }

    /* Ultra-wide mobile screens */
    @media (max-width: 991.98px) and (min-width: 900px) {
      .search-icon {
        width: 28px !important;
        height: 28px !important;
      }
    }


    .search-popup.show {
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important;
    }

    .search-popup {
      position: fixed !important;
      top: 0 !important;
      left: 0 !important;
      right: 0 !important;
      bottom: 0 !important;
      width: 100% !important;
      height: 100% !important;
      margin: 0 !important;
      padding: 0 !important;
      background: white;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      z-index: 9999;
      display: none !important;
      overflow-y: auto;
      visibility: hidden;
      opacity: 0;
    }

    .search-popup .form-control {
      position: absolute;
      top: 75px;
      left: 15px;
      right: 15px;
      width: calc(100% - 30px);
      padding: 10px;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-size: 16px;
    }

    /* Search popup overlay */
    .search-popup::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: -1;
    }


    /* Hide location section on mobile */
    .location-section {
      display: none !important;
    }
    
    /* Hide desktop menu on mobile */
    .container-fluid.bg-light {
      display: none !important;
    }

    /* Adjust body padding for mobile */
    .mobile-padding {
      padding-top: 60px !important;
    }

    /* Category cards full width on mobile */
    .category-card {
      width: 100% !important;
      margin-bottom: 15px !important;
    }

    .col-12 .category-card {
      width: 100% !important;
    }
  }

  /* H2 Styles */
  h2 {
    height: 30px !important;
    line-height: 30px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
  }

  /* Disable uppercase for specific text */
  .no-uppercase {
    text-transform: none !important;
  }

  /* Disable uppercase for jConfirm popup content */
  .jconfirm-content p,
  .jconfirm .jconfirm-content p,
  .jconfirm-box .jconfirm-content p,
  div.jconfirm-content p,
  .popup-description {
    text-transform: none !important;
  }

  /* Category Cards Styles */
  .category-card {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
  }

  .category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
    opacity: 1;
    transition: all 0.3s ease;
  }

  .category-title {
    color: white;
    font-family: "Gotham", Sans-serif;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  }

  /* Hover effect */
  .category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }

  .category-card:hover .category-image {
    filter: grayscale(100%);
    transform: scale(1.05);
  }

  .category-card:hover .category-overlay {
    background: rgba(0, 0, 0, 0.6);
  }

  /* Social Buttons Styles */
  .social-buttons {
    margin-top: 40px;
  }

  .social-button {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: initial;
    flex-grow: 0;
    align-self: initial;
    border-style: solid;
    border-width: 0px;
    border-radius: 1px;
    box-shadow: 0px 0px 18px 3px rgba(0, 0, 0, 0.23);
    margin: 0;
    padding: 15px 0;
    text-decoration: none;
    transition: all 0.3s ease;
    background: white;
    color: #005ab2;
    font-family: 'Gotham', Sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    align-items: center;
    justify-content: center;
  }

  .social-button:hover {
    background: #005ab2;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,90,178,0.3);
  }

  .social-button .icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    fill: currentColor;
  }

  /* Mobile styles for social buttons */
  @media (max-width: 991.98px) {
    .social-button {
      flex-wrap: wrap;
      font-size: 14px;
      margin-bottom: 15px;
    }
    
    .social-button .icon {
      width: 20px;
      height: 20px;
      margin-right: 10px;
    }
  }

  /* Interactive Image Styles */
  .interactive-image-container {
    position: relative;
    display: inline-block;
    margin: 40px 0 0 0;
    width: 100%;
    max-width: 800px;
  }

  .interactive-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }

  .interactive-button {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #005ab2;
    border: 3px solid white;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .interactive-button svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
  }

  .interactive-button:hover {
    transform: scale(1.2);
    background: #003d82;
    box-shadow: 0 4px 20px rgba(0,90,178,0.5);
  }


  .popup-tooltip {
    position: absolute;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    padding: 15px;
    min-width: 200px;
    max-width: 250px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
  }

  .popup-tooltip.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }

  .popup-tooltip img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
  }

  .popup-tooltip h4 {
    font-family: 'Gotham', Sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #005ab2;
    margin: 0 0 8px 0;
    text-transform: uppercase;
  }

  .popup-tooltip p {
    font-family: 'Gotham', Sans-serif;
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.4;
  }

  .popup-tooltip .close-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .popup-tooltip .close-btn:hover {
    background: #e0e0e0;
  }

  /* Mobile styles for interactive image */
  @media (max-width: 991.98px) {
    .interactive-button {
      width: 35px;
      height: 35px;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
    }

    .interactive-button svg {
      width: 18px;
      height: 18px;
    }

    .popup-tooltip {
      display: none !important;
    }

    .popup-tooltip img {
      height: 100px;
    }

    .popup-tooltip h4 {
      font-size: 13px;
    }

    .popup-tooltip p {
      font-size: 11px;
    }
  }

  /* Parallax Section Styles */
  .parallax-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .parallax-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('fondoparalax.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 1;
  }

  .parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
  }

  .parallax-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  .parallax-content h2 {
    font-family: 'Gotham', Sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    text-transform: uppercase;
  }

  .parallax-content p {
    font-family: 'Gotham', Sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    margin-top: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    text-transform: uppercase;
  }

  /* Mobile styles for parallax */
  @media (max-width: 991.98px) {
    .parallax-section {
      height: 50vh;
      min-height: 300px;
    }

    .parallax-background {
      background-attachment: scroll;
      height: 100%;
    }

    .parallax-content {
      padding: 0 30px;
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      justify-content: center !important;
      height: 100% !important;
    }

    .parallax-content h2 {
      font-size: 28px;
      margin-bottom: 25px;
      line-height: 1.3;
    }

    .parallax-content p {
      font-size: 16px;
      margin-top: 20px;
      line-height: 1.5;
    }
  }

  @media (max-width: 576px) {
    .parallax-content {
      padding: 0 20px;
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      justify-content: center !important;
      height: 100% !important;
    }

    .parallax-content h2 {
      font-size: 24px;
      margin-bottom: 20px;
      line-height: 1.4;
    }

    .parallax-content p {
      font-size: 14px;
      margin-top: 15px;
      line-height: 1.6;
    }
  }

  @media (max-width: 480px) {
    .parallax-content {
      padding: 0 15px;
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      justify-content: center !important;
      height: 100% !important;
    }

    .parallax-content h2 {
      font-size: 20px;
      margin-bottom: 18px;
      line-height: 1.5;
    }

    .parallax-content p {
      font-size: 13px;
      margin-top: 12px;
      line-height: 1.7;
    }
  }

  /* Footer Styles */
  .footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    padding: 60px 0 30px 0;
  }

  .footer-section {
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer-social {
    margin-bottom: 20px;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .social-icon {
    width: 32px;
    height: 32px;
    background: #676767;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
  }

  .social-icon:hover {
    background: #555555;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(103,103,103,0.3);
    text-decoration: none;
    color: white;
  }

  .social-icon svg {
    width: 20px !important;
    height: 20px !important;
    fill: currentColor;
  }

  .footer-title {
    font-family: "Gotham", Sans-serif;
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
    color: #005ab2;
    margin: 0 0 15px 0;
    text-align: center;
    line-height: 56px;
    text-transform: none;
  }

  .footer-copyright {
    background-color: #e9ecef;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #dee2e6;
  }

  .footer-copyright p {
    font-family: 'Gotham', Sans-serif;
    font-size: 14px;
    color: #676767;
    margin: 0;
    line-height: 56px;
  }

  .footer-copyright strong {
    color: #005ab2;
    font-weight: 600;
  }

  /* Carousel Text Styles */
  .carousel-text {
    color: #FFFFFF;
    font-family: 'Gotham', Sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0 20px;
    line-height: 1.2;
  }

  /* Desktop carousel text */
  @media (min-width: 992px) {
    .carousel-text {
      font-size: 50px;
    }
  }

  /* Tablet carousel text */
  @media (max-width: 991.98px) and (min-width: 768px) {
    .carousel-text {
      font-size: 36px;
      padding: 0 30px;
    }
  }

  /* Mobile carousel text */
  @media (max-width: 767.98px) {
    .carousel-text {
      font-size: 24px;
      padding: 0 15px;
      line-height: 1.3;
    }
  }

  /* Extra small mobile carousel text */
  @media (max-width: 576px) {
    .carousel-text {
      font-size: 20px;
      padding: 0 10px;
      line-height: 1.4;
    }
  }

  /* Very small mobile carousel text */
  @media (max-width: 480px) {
    .carousel-text {
      font-size: 18px;
      padding: 0 8px;
      line-height: 1.5;
    }
  }

  /* Carousel slide improvements for mobile */
  @media (max-width: 767.98px) {
    .carousel-slide {
      min-height: 50vh !important;
      padding: 20px 0;
      width: 100% !important;
      max-width: 100% !important;
    }
    
    .carousel {
      width: 100% !important;
      max-width: 100% !important;
      overflow: hidden !important;
    }
    
    .carousel-inner {
      width: 100% !important;
      max-width: 100% !important;
    }
  }
  
  /* Desktop carousel positioning */
  @media (min-width: 992px) {
    .carousel {
      margin-top: 0 !important;
    }
  }

  /* Ensure text doesn't overflow on very small screens */
  .carousel-text {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
  }

  /* Carousel auto-advance improvements */
  .carousel {
    transition: all 0.6s ease-in-out;
  }

  .carousel-item {
    transition: transform 0.6s ease-in-out;
  }

  .carousel-control-prev,
  .carousel-control-next {
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }

  .carousel-control-prev:hover,
  .carousel-control-next:hover {
    opacity: 1;
  }

  .carousel-indicators button {
    transition: all 0.3s ease;
  }

  .carousel-indicators button.active {
    background-color: #005ab2;
  }

  /* Mobile styles for footer */
  @media (max-width: 991.98px) {
    .footer {
      padding: 40px 0 20px 0;
      width: 100% !important;
      max-width: 100% !important;
    }
    
    /* Prevent all elements from overflowing */
    .category-card,
    .social-button,
    .interactive-image-container,
    .interactive-image,
    .popup-tooltip,
    .parallax-section,
    .parallax-content {
      max-width: 100% !important;
      width: 100% !important;
    }
    
    /* Ensure images don't overflow */
    img {
      max-width: 100% !important;
      height: auto !important;
    }
    
    /* Fix any remaining overflow issues */
    .navbar-nav,
    .navbar-collapse {
      max-width: 100% !important;
    }

    .footer-section {
      margin-bottom: 30px;
    }

    .footer-social {
      margin-bottom: 40px;
    }

    .social-icons {
      gap: 15px;
    }

    .social-icon {
      width: 32px;
      height: 32px;
    }

    .social-icon svg {
      width: 20px !important;
      height: 20px !important;
    }

    .footer-title {
      font-size: 15px;
    }

    .footer-copyright p {
      font-size: 13px;
      color: #676767;
      line-height: 56px;
    }
  }

  /* Products Section Styles */
  .products-section {
    margin-top: 60px;
  }

  .products-title {
    font-family: 'Gotham', Sans-serif !important;
    font-weight: 600 !important;
    color: #005ab2 !important;
    margin-bottom: 20px !important;
    text-align: center !important;
    width: 100% !important;
    display: block !important;
    font-size: 28px !important;
    line-height: 1.2 !important;
  }

  .products-subtitle {
    font-family: 'Gotham', Sans-serif !important;
    font-size: 16px !important;
    color: #666 !important;
    margin: 0 !important;
    text-align: center !important;
    display: block !important;
    line-height: 1.4 !important;
    margin-top: 10px !important;
  }

  /* Mobile styles for products section */
  @media (max-width: 991.98px) {
    .products-section {
      margin-top: 40px !important;
      padding: 0 15px !important;
    }

    .products-title {
      font-size: 22px !important;
      margin-bottom: 25px !important;
      line-height: 1.4 !important;
      padding: 0 10px !important;
    }

    .products-subtitle {
      font-size: 14px !important;
      margin-top: 20px !important;
      line-height: 1.6 !important;
      padding: 0 10px !important;
    }
  }

  @media (max-width: 576px) {
    .products-title {
      font-size: 18px !important;
      margin-bottom: 20px !important;
      line-height: 1.5 !important;
      padding: 0 15px !important;
    }

    .products-subtitle {
      font-size: 13px !important;
      margin-top: 15px !important;
      line-height: 1.7 !important;
      padding: 0 15px !important;
    }
  }

  @media (max-width: 480px) {
    .products-title {
      font-size: 16px !important;
      margin-bottom: 18px !important;
      line-height: 1.6 !important;
      padding: 0 20px !important;
    }

    .products-subtitle {
      font-size: 12px !important;
      margin-top: 12px !important;
      line-height: 1.8 !important;
      padding: 0 20px !important;
    }
  }