@media all and (min-width: 1400px) {

    body {
        background-color: var(--BackgroundColor);
        transition: background-color .5s;
        padding: 0px;
        margin: 0px;
    }

    #hiddenSection {
        height: 90px;
    }

    #sectionOurProduct {
        padding: 1% 10% 2% 10%;
    }

    #toastContainer {
        position: fixed;
        top: 90%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 9999;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #footerHome {
        background: linear-gradient(135deg, #053E81 0%, #1e293b 100%);
        position: relative;
        overflow: hidden;
        padding: 1% 8% 2% 8%;
    }

    .copyright {
        margin-top: 0px;
        border-radius: 15px;
        padding: 25px 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(0, 0, 0, 0.2);
    }

    .copyright h6 {
        color: white;
        text-align: right;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .copyright a {
        color: white;
        text-align: right;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    #sectionOurProduct .mattress-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        margin-bottom: 20px;
        position: relative;
        z-index: 2;
    } 
     .welcome-section {
          padding: 100px 0;
          }
           .message-box {
          background: white;
          padding: 40px;
          border-radius: 20px;
          box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
          margin-bottom: 40px;
          position: relative;
          }
           #sectionOurProduct .why-choose-section {
          padding: 40px 45px;
          margin-top: 25px;
          border-radius: 45px;
          }
            .rnd-section {
          padding: 100px 0;
          background: transparent;
          }
           .gallery-grid {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 20px;
          padding: 0 20px;
          }
            .cta-content {
          max-width: 700px;
          margin: 0 auto;
          padding: 60px;
          background: var(--themeColor);
          border-radius: 32px;
          color: white;
          position: relative;
          overflow: hidden;
          }


}