@media (max-width: 768px) {
    .animated-text {
        display: none;
    }

    .hero {
        position: relative; 
        height: 800px; 
        width: 100%;
        display: flex;
        flex-direction: column; 
        align-items: center;
        justify-content: flex-start; 
        overflow: visible;
    }

    .centered-text {
        display: block;
        text-align: left;
        position: relative; 
        top: 50vh; 
        left: -8%;
        transform: none; 
        width: 90%;
        margin-top: 50px; 
    }

    .logo img {
        height: 40px;
    }

    .logo-text {
        font-size: 1.5em;
    }

    .navbar {
        display: none;
    }

    .mobile-navbar {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgb(36, 36, 38);
        color: white;
        z-index: 1000;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        overflow-y: auto;
    }

    .mobile-navbar.active {
        display: flex;
    }

    body.noscroll {
        height: 100vh;
        overflow: hidden;
    }

    .mobile-products{
        display: block;
    }

    .mobile-navbar .nav-items {
        width: 100%;
        margin-top: 100px;
    }

    .mobile-navbar .nav-items a,
    .mobile-navbar .nav-items .nav-dropdown-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 0;
        text-decoration: none;
        color: #eee;
        font-size: 1.15em;
        font-family: 'Poppins', sans-serif;
        font-weight: 400;
        width: 100%;
        cursor: pointer;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-navbar .nav-items a:last-child,
    .mobile-navbar .nav-items .nav-dropdown:last-child .nav-dropdown-title {
        border-bottom: none;
    }

    .mobile-navbar .nav-items .nav-dropdown-title {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .mobile-navbar .nav-items .nav-dropdown-title::after {
        content: '>';
        font-size: 1.1em;
        margin-left: 10px;
        transition: transform 0.3s ease;
    }

    .mobile-navbar .nav-items .nav-dropdown-title.active::after {
        transform: rotate(90deg);
    }

    .nav-dropdown-content {
        display: flex;
        flex-direction: column;
        margin-left: 20px;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out, opacity 0.3s ease-in-out;
    }

    .nav-dropdown-content.active {
        max-height: 300px;
        opacity: 1;
    }

    .hamburger {
        display: block;
        position: absolute;
        top: 30px;
        right: 30px;
        z-index: 1001;
        cursor: pointer;
    }

    .hamburger .bar {
        width: 25px;
        height: 3px;
        background-color: white;
        border-radius: 5px;
        margin: 5px 0;
        transition: 0.4s;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .logo-mobile {
        position: absolute;
        top: 30px;
        left: 20px;
        color: white;
        font-size: 1.5em;
        font-weight: bold;
        display: none;
    }

    .mobile-navbar.active .logo-mobile {
        display: block;
    }

    .centered-text .first-line,
    .centered-text .second-line {
        display: block;
        font-size: calc(3vw + 1em);
        line-height: 1.2;
    }

    .widgets {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 15px;
        position: relative; 
        left: -2%;
        top: 1130px;
        width: 100%;
        margin-top: 50px; 
        overflow: hidden;
        z-index: 10;
    }

    .widget {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px;
        width: 100%;
        max-width: 300px;
        height: auto;
        margin: 0 auto;
        opacity: 0;
        transform: translateX(100%);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        animation: none;
    }

    .widget-content {
        flex-grow: 1;
        padding-right: 10px;
    }

    .arrow {
        font-size: 1.5em;
    }

    .scroll-down {
        left: 47%; 
        transform: translateX(-50%);
        bottom: 20px;
        font-size: 1.8rem;
        top: 80vh;
        display: block;
    }

    .widget.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .widget-title {
        font-size: calc(1vw + 0.8em);
    }

    .widget-text {
        font-size: calc(0.75vw + 0.6em);
    }

    .content-section {
        margin-top: 50px; 
        padding-top: 20px;
        display: block;
    }

    .our-journey {
        padding: 2rem 1rem;
    }

    .our-journey h2 {
        font-size: 2rem; 
        margin-bottom: 2rem; 
    }

    .our-journey h2::after {
        width: 50px; 
    }

    .our-journey .journey-step {
        margin-bottom: 2rem; 
        padding: 1.5rem; 
        background: rgba(255, 255, 255, 0.08); 
        border-radius: 8px; 
    }

    .our-journey .journey-step h3 {
        font-size: 1.5rem; 
        margin-bottom: 1rem; 
    }

    .our-journey .journey-step p,
    .our-journey .journey-step li {
        font-size: 0.95rem; 
    }

    .our-journey .journey-step ul {
        padding-left: 1.5rem; 
    }

    .journey-step li {
        margin-bottom: 0.8rem;
    }

    body {
        padding-bottom: 60px;
    }

    html, body {
        width: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }

    .footer-container { flex-direction: column; gap: 20px; text-align: center; }
    .footer-right { flex-direction: column; gap: 15px; }
    footer { padding: 30px 20px; }
}