@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.hamburger {
    display: none;
}

.container {
    width: min(90%, 1150px);
    margin-inline: auto;
   
}

header {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(55, 55, 55, 0.4);
    height: 6.4rem;
    position: sticky;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 11111;
    width: 100vw;
}

.menu {
    display: flex;
    align-items: center;
    gap: 15rem;
    padding: 2rem;
    
}

.desketop-menu {
    height: 100%;
    display: flex;
    align-items: center;
}

.desketop-menu li {
    list-style: none;
}

.desketop-menu a {
    font-size: 1.25rem;
    font-weight: 400;
    text-decoration: none;
    color: black;
    padding: 1rem;
    cursor: pointer;
}

.desketop-menu a:hover {
    color: #fd211b;
}

.logo img {
    height: 60px;
}

.mobile-menu {
    display: none;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 40px;
    left: 0;
    background: #fff;
    width: 200px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    display: none;
    padding: 10px 0;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #444;
    text-decoration: none;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
    color: #d24b4b;
}

.dropdown:hover .dropdown-menu {
    display: block;
}


/* HERO SECTION */
.row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.left-contect {
    width: 35vw;
    height: 80vh;
    background-image: url('https://templatemo.com/templates/templatemo_558_klassy_cafe/assets/images/top-left-bg.jpg');
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.title-top {
    display: flex;
    flex-direction: column;
    color: white;
    align-items: center;
    justify-content: center;
    margin-top: 0.3rem;
}

.title-six {
    font-size: 1rem;
    margin: 5px 0 0;
    color: #fff;
}

.btn-left {
    padding: 10px 16px;
    border-radius: 0.3rem;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 1rem;
    color: #fd211b;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-left a {
    width: 180px;
    height: 43px;
    text-decoration: none;
    font-size: 13px;
    padding: 12px 25px;
    color: #fb5849;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SLIDER */
.slider-containers {
    overflow: hidden;
    width: 64vw;
    height: 80vh;
    display: flex;
    gap: 0;
    justify-content: flex-start;
    background-color: #fffafa;
    position: relative;
}

.img-fill {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.cards {
    min-width: 100%;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.cards img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(252, 174, 165, 0.4);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
}

.slider-arrow.left {
    left: 2%;
}

.slider-arrow.right {
    right: 2%;
}

.slider-arrow:hover {
    background: #c0392b;
}


/* ended home section   ------- */




/* added about sectio      ------ */

.about-us {
    width: 99vw;
    height: 100vh;
}

.grid {
    display: flex;
    justify-content: center;
    height: 90vh;

    
    align-items: center;
    margin-inline: auto;
    margin-top: 120px;
}

.main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.blog {
    display: flex;
    flex-direction: column;
    width: 450px;
    height: 515px;

    padding: 1rem;

}

.sawiro {
    width: 130px;
    height: 130px;
    display: flex;
    gap: 30px;
}

.sawiro img {
    height: 100%;
    width: 100%;
}

.title-grid {
    font-size: 2rem;

    font-weight: bolder;
    padding-bottom: 1rem;
    font-weight: bolder;
}

.blog p {
    font-size: 14px !important;
    margin-bottom: -2rem;
    cursor: #8b8b8b;
    width: 360px !important;
    color: #2a2a2a;
    margin: 0px 0px 25px !important;
    height: 255px;



}

.blog p a {
    text-decoration: none;
    color: #0470fd;
}

.blog h6 {
    font-size: 0.9375rem;
    padding: 0px 0px 0px 40px;
    color: #ff5751;
    text-transform: uppercase;
    /* margin-top: 3rem; */
}

.blog h2 {
    font-size: 1.875rem;
    margin: 20px 0px 25px;

    padding: 0px 120px 0px 0px;
    width: 450px;
    color: #2a2a2a;
    font-weight: 900;
}

.left-img {
    display: flex;
    position: relative;

    justify-content: center;
    align-items: center;

}

.left-img img {
    width: 95%;
    height: 85%;
}

.youtupe {
    display: flex;
    background-color: red;
    align-self: self-start;
    width: 5vw;
    position: absolute;
    padding: 1rem;
    width: 45px;
    height: 45px;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    bottom: 15rem;
    color: #fff;

}



/* ended about section   ----- */


/* added menu section     ----- */



.container-menu{
    width: 99vw;
   
   
}
.menu-rest {
    display: flex;
    flex-direction: column;

    width: 99vw;
    height: 100vh;
    background-color: #fffafa;
    position: relative;
    
    



}


.slider-arrows {
    position: absolute;
    margin-bottom: 10px;
    /* bottom: 0; */
    transform: translateY(-50%);
    /* background: #e74c3c; */
    color: #d24b4b;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    z-index: 10;


}

.slider-arrows.rights {
    left: 50%;
    bottom: 0;


}

.slider-arrows.lefts {
    right: 50%;
    bottom: 0;
}

.slider-arrows:hover {
    background: #c0392b;
}

.slick-arrows {
    display: block;
}




.menu-rest h6 {
    font-size: 15px;
    padding: 0px 0px 0px 40px;
    color: #d24b4b;
    width: 290px;
    height: 18px;
    text-transform: uppercase;
    /* padding-left: 80px; */
    display: flex;
    justify-content: end;


}

.descript {
    width: 490px;
    height: 120px;
    font-size: 30px;
    margin: 20px 20px 25px !important;
    padding-left: 80px;

    display: flex;
    justify-content: end;
}

.slider-container img {
    height: 100%;
    width: 100%;
}

/* Weelka weyn ee slider-ka */
.slider-container {
    width: 99vw;
    overflow: hidden;

    padding: 20px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: #fffafa;
}

/* Safka kaararka ee soconaya */
.slider-track {
    display: flex;
    width: calc(300px * 10);
    /* Cabirka kaarka x tirada kaararka */
    animation: scroll 20s linear infinite;
    background-color: #fffafa;
}

/* Marka Mouse-ka la dul dhigo, slider-ku wuu istaagayaa */
.slider-track:hover {
    animation-play-state: paused;
}

/* Qaabka kaarka */
.card {
    position: relative;
    width: 280px;
    height: 380px;
    margin: 0 10px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 10px;
    background-color: #fffafa;

}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-tag {
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: #ff5757;
    color: white;
    padding: 20px 12px;
    font-weight: bold;
    border-radius: 4px;
    z-index: 5;
}

/* Overlay-ga (Kaliya bar ayuu daboolayaa) */
.overlay {
    position: absolute;
    bottom: -50%;
    left: 0;
    width: 100%;
    height: 45%;
    background-color: rgba(255, 87, 87, 0.95);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
    box-sizing: border-box;
    transition: bottom 0.4s ease-in-out;
}

.card:hover .overlay {
    bottom: 0;
}

.overlay h3 {
    margin: 0 0 5px 0;
    font-size: 14px;
}

.overlay a {
    margin: 0 0 5px 0;
    font-size: 14px;
    text-decoration: none;
    color: #fff;
    font-weight: 400;
}

.overlay p {
    font-size: 0.65rem;
    margin-bottom: 20px;
    color: #fff;
    border: none;
}

/* Animation-ka socodka */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-300px * 5));
    }

    
}


/* chefs css */
.our-chefs{
    padding-top: 120px;
}
.chefs-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.chefs-content .chef-info{
    width: 380px;
    height: 188px;
    text-align: center;
    font-family: "Poppins", sans-serif;
}
.chef-info h6{
    color: #fb5849;
    font-size: 15px;
    text-transform: uppercase;
}
.chef-info h2{
    width: 350px;
    color: #2a2a2a;
    font-size: 30px;
    margin-block: 20px 25px;
}
.chefs-item{
    display: flex;

}
/* tbo */
.chef-thumb {
  position: relative;
  overflow: hidden;
}

.chef-thumb img {
  width: 100%;
  display: block;
}

/* Overlay */
.chef-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(42, 42, 42, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.3s ease;
}

/* Hover effect */
.chef-item:hover .chef-overlay {
  opacity: 1;
}

/* Social icons */
.social-icons {
  list-style: none;
  display: flex;
  gap: 15px;
}

.social-icons li a {
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  transition: 0.3s;
}

.social-icons li a:hover {
  background-color: #fb5849;
  color: #fff;
}

/* end */
.chefs-item .chef-item{
    padding: 5px ;
    border: 1px solid #2a2a2a34;
    margin-inline: 15px;
}
.chefs-item .chef-item:hover{
    border-color: #fb5849;
}
.chefs-item .chef-item .chef-item-info{
    padding-block: 20px; 
    color: #2a2a2a;
}
.chef-item .chef-item-info h4{
    font-size: 20px;
}
.chef-item .chef-item-info h4:hover{
    color: #fb5849;
}
.chef-item .chef-item-info span{
    font-size: 14px;
}

/* contact css */
.contact-us{
        margin-top: 120px ;
        padding-block: 120px;
        background: url("images/reservation-bg.jpg") no-repeat center/cover;
    }
    .contact-section{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .contact-left, .contact-right{
        flex: 1;
        padding: 0 15px;
    }
    .contact-left h6{
        position:relative; ;
        padding-left: 40px;
        color: #fff;
        font-size: 15px;
        font-weight: 500;
        text-transform: uppercase;
    }
    .contact-left h6::before{
        content: "";
        width: 30px;
        height: 2px;
        background: #ffffff;
        position: absolute;
        margin-left: -40px;
        margin-top: 10px;
    }
    .contact-left h2{
        width: 450px;
        color: #fff;
        font-size: 30px;
        margin-block: 20px 25px;
    }
    .contact-left p{
        color: #fff;
        font-size: 14px;
        margin-bottom: 65px;
    }
    .contact-left-mess{
        display: flex;
        /* gap: 50px; */
        align-items: center;
    }
    .contact-left-mess .message{
        background-color: #fff;
        margin-inline: 15px;
        text-align: center;
        padding-bottom: 20px;
        width: 255px;
        height: 160px;
        border-radius: 5px;
    }
    .message .icon{
        width: 70px;
        height: 70px;
        background-color: #fb5849;
        margin: auto;
        margin-top: -35px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        font-size: 24px;
        color: #fff;
    }
    .message h4{
        font-size: 20px;
        margin-block: 15px 10px;
        color: #212529;
    }
    .message a{
        text-decoration: none;
        color: #2a2a2a;
        font-size: 14px;
    }
    .contact-right{
        background-color: #ffffff;
        padding: 45px 30px;
        margin-left: 30px; 
        border-radius: 8px;
    }
    .contact-right h4{
        font-size:30px;
        margin-bottom: 30px;
        color: #2a2a2a;
        text-align: center;
        padding-inline: 15px;
    }

.contact-right form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-right form > div {
    display: flex;
    gap: 15px;
}

.contact-right input,
.contact-right select,
.contact-right textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    font-size: 14px;
    outline: none;
    border-radius: 5px;
}

.contact-right textarea {
    resize: none;
    height: 150px;
}

.contact-right button {
    background-color: #fb5849;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 5px;
}

.contact-right button:hover {
    background-color: #e04b3d;
}

/* meal offers css */

.meal-container {
  padding-top: 120px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.meal-info {
  width: 480px;
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 70px;
}
.meal-info h6 {
  text-transform: uppercase;
  font-size: 15px;
  color: #fb5849;
  font-weight: 500;
}
.meal-info h2 {
  margin-block: 20px 25px;
  color: #2a2a2a;
  font-size: 30px;
  font-weight: 900;
}
.meal-icons {
  display: flex;
  text-align: center;
  cursor: pointer;
}
.meal-icons .icon-box {
  margin: 0 15px;
}
.icon-box img {
  margin-bottom: 15px;
}
.icon-box a {
  text-decoration: none;
  color: #2a2a2a;
  font-weight: 600;
  font-size: 14px;
}
.icon-box a:hover {
  color: #fb5849;
}
.meal-content {
      max-width: 900px;
      margin-top: 40px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
    }

.meal-box {
  display: none;
  align-items: center;
  margin-bottom: 60px;
  padding-inline: 15px;
  justify-content: space-between;
}
.meal-box.show {
      display: flex;
    }
.meal-box img {
  border-radius: 5px;
  margin-right: 15px;
}
.box-info h4 {
  font-size: 20px;
  color: #2a2a2a;
  font-weight: 700;
  margin-bottom: 10px;
}
.box-info p {
  font-size: 14px;
  color: #2a2a2a;
  font-weight: 400;
}
.meal-box .price {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background-color: #fb5849;
  font-weight: 700;
  color: #fff;
  width: 70px;
  height: 70px;
  text-align: center;
  border-radius: 5px;
  padding: 0 15px;
}

/* footer css */
footer{
    background-color: #fb5849;
    padding: 50px 0;
    margin-top: 60px;
}
.footer-section{
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}
footer ul{
    list-style: none;
    display: flex;
    gap: 30px;
}
footer ul li a{
    text-decoration: none;
    color: #fb5849;
    background-color: #ffffff;
    padding: 10px ;
    border-radius: 50%;
}
footer p{
    font-size: 14px;
    color: #ffffff;
    font-weight: 400;
    align-items: flex-end;
}
@media (max-width: 768px) {
    /* chefs responsive */
    .chefs-item{
        flex-direction: column;
        gap: 30px;
    }


    /* contact section responsive */
    .contact-us{
        width: 100%;
     }
    .contact-section {
        flex-direction: column;
        gap: 40px;
        /* width: 100%; */
    }
    .contact-left{
        padding-inline: 0;
    }
    .contact-left h2 {
        width: 100%;
    }

    .contact-left-mess {
        flex-direction: column;
        gap: 40px;
    }
 .contact-left-mess .message{
        margin-inline: 0;
        width: 100%;
        margin-bottom: 30px;
 }
 
    .contact-right{
        margin-left: 0;
        width: 100%;
    }

    .contact-right form > div {
        flex-direction: column;
    }
 
    /*  meal offers responsive */
    .meal-container {
        padding-top: 80px;
    }
    .meal-info {
        width: 100%;
        margin-bottom: 50px;
    }
    .meal-content {
        grid-template-columns: 1fr;
    }
    /* footer */
    .footer-section{
        flex-direction: column;
        gap: 30px;
    }
    

}
/* qaynitiii responsive ka */
@media (max-width:480px) {
    /* MOBILE MENU & HAMBURGER */

    /* Hamburger icon */
    .hamburger {
        display: none;
        /* la muujin doono mobile */
        position: absolute;
        top: 7%;
        right: 5%;
        width: 50px;
        height: 50px;
        justify-content: center;
        align-items: center;
        font-size: 2rem;
        color: #c0392b;
        border-radius: 50%;
        z-index: 11111;
        cursor: pointer;
    }

    .mobile-menu[data-visible="false"] {
        transform: translateX(100%);

    }

    .hamburger i[data-visible="true"] {
        display: block;
    }

    .hamburger i[data-visible="false"] {
        display: none;
    }


    .mobile-menu .navigation {
        margin-top: 5rem;
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 1.5rem;
        width: 100vw;
        height: 50vh;
        border-bottom: 1px solid rgb(75, 11, 248);

    }

    .mobile-menu .navigation .menus-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;


    }




    .mobile-menu {
        display: flex;
        justify-content: center;
        position: fixed;
        background-color: rgba(255, 255, 255, 0.8);
        inset: 0 0 0 0;
        color: rgb(245, 35, 7);
        transform: translateX(0%);
        transition: transform 350ms ease-in-out;
        height: 70vh;





    }

    .mobile-menu h1 {
        font-size: 2.3125rem;
        font-weight: 700;
        border-bottom: 1px solid rgb(75, 11, 248);
        padding: 10px;
    }

    .mobile-menu li {
        list-style: none;
    }

    .mobile-menu a {
        color: #000 !important;

        text-decoration: none;
        font-size: 14px;
        line-height: 50px;

    }

    .mobile-menu a:hover {
        color: #c0392b !important;
    }

    /* NAVBAR */
    .navbar {
        padding: 20px 40px;
        background: #fff;
    }

    .nav-menu li {
        list-style: none;
    }

    .nav-link {
        text-decoration: none;
        font-size: 16px;
        color: #d24b4b;
        font-weight: 500;
    }

    /* DROPDOWN */
    .dropdown {
        position: relative;
        display: inline-block;
    }

    .dropdown-menu {
        position: absolute;
        top: 40px;
        left: 0;
        background: #fff;
        width: 200px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        border-radius: 4px;
        display: none;
        padding: 10px 0;
    }

    .dropdown-menu li {
        list-style: none;
    }

    .dropdown-menu a {
        display: block;
        padding: 10px 20px;
        color: #080000;
        text-decoration: none;
        font-size: 14px;
    }

    .dropdown-menu a:hover {
        background: #f5f5f5;
        color: #d24b4b !important;
    }

    /* SHOW ON HOVER */
    .dropdown:hover .dropdown-menu {
        display: block;
    }

    /* Show mobile menu when active */
    .mobile-menu[data-visible="true"] {
        transform: translateX(0);
    }

    /* Menu links */
    .mobile-menu ul {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .mobile-menu a {
        font-size: 1rem;
        color: #000;
        text-decoration: none;
    }

    .mobile-menu a:hover {
        color: #c0392b;
    }

    /* Dropdown inside mobile menu */
    .mobile-menu .dropdown-menu {
        display: none;
        flex-direction: column;
        gap: 0;
        margin-top: 5px;
    }

    .mobile-menu .dropdown.active .dropdown-menu {
        display: flex;
    }

    /* Show hamburger only on mobile */
    @media(max-width: 991px) {
        .hamburger {
            display: flex;
        }

        .desketop-menu {
            display: none;
            /* hide desktop menu on mobile */
        }
    }

    /* iPad Mini adjustments */
    @media (min-width: 768px) and (max-width: 1023px) {
        .mobile-menu a {
            font-size: 1.1rem;
        }
    }

    /* iPad Pro adjustments */
    @media (min-width: 1024px) and (max-width: 1366px) {
        .mobile-menu a {
            font-size: 1.2rem;
        }
    }


    .row {

        display: flex;
        flex-direction: column;
        height: 80vh;
        margin-bottom: -2rem;
    }

    .left-contect {
        width: 100vw;
        height: 40vh;
        background-image: url('https://templatemo.com/templates/templatemo_558_klassy_cafe/assets/images/top-left-bg.jpg');
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        /* position: absolute; */
    }

    .title-top {
        display: flex;
        flex-direction: column;
        color: white;
        align-items: center;
        justify-content: center;
        /* margin-top: 3rem; */
        font-size: 1.12rem;
        margin-top: 0.3rem;
    }

    .btn-left {
        padding: 1rem;
        border-radius: 0.3rem;
        border: none;
        font-size: 1rem;
        margin-top: 1rem;
        color: #fd211b;
        text-align: center;
    }

    .img-fill {

        width: 100vw;
        height: 10% !important;
        display: flex;
        background-color: red;


        animation: walk 18s infinite;
    }

    .cards {
        position: relative;
        width: 80vw;
        height: 40vh;
        /* margin: 0 10px; */
        flex-shrink: 0;
        overflow: hidden;
        /* border-radius: 10px; */
        z-index: 11111;
    }

    .cards img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .slider-containers {
        /* width: 10%; */
        overflow: hidden;
        background: white;
        /* padding: 20px 0; */
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        width: 100vw;
        background-color: blue;
        height: 40vh !important;
        /* background-color: blue; */
        /* margin-top: 3rem; */

        /* background-color: #fffafa; */
        display: flex;
        gap: 0;
        justify-content: flex-start;
        height: 60vh;

    }

    .slider-arrow {
        position: absolute;
        top: 10%;
        transform: translateY(-50%);
        background: rgba(252, 174, 165, 0.4);
        color: #fff;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        cursor: pointer;
        z-index: 10;
    }

    .slider-arrow.left {
        left: 10%;


        margin-top: 150px;


    }

    .slider-arrow.right {
        right: 10%;

        margin-top: 150px;

    }

    .slider-arrow:hover {
        background: #c0392b;
    }

    .slick-arrow {
        display: block;
    }


    .grid {
        display: flex;
        justify-content: center;
        height: 99vh;

        width: 100vw;
        align-items: center;
        margin-inline: auto;
    }

    .main {
        display: flex;
        flex-direction: column;
        height: 100%;
        width: 100%;
    }

    .blog {
        display: flex;
        flex-direction: column;
        width: 100% !important;
        height: 80%;
        /* padding: 1rem; */
        margin-top: 3rem;

    }

    .blog h2 {
        font-size: 1.875rem;
        margin: 20px 0px 25px;

        padding: 0px 120px 0px 0px;
        width: 380px;
        color: #2a2a2a;
        font-weight: 900;

        display: flex;
        justify-content: center;
        align-items: center;


    }
    h6{
       
        margin-top: 3rem;
    }

    .sawiro {
        display: flex;
        height: 15vh;
        padding: 10px;
        width: 30vw;
        gap: 30px;
        margin-top: -4rem;
        padding-bottom: 2rem;
    }

    .sawiro img {
        height: 100%;
    }

    .title-grid {
        font-size: 2rem;
        
        font-weight: bolder;
        padding-bottom: 1rem;
    }

    .blog p {
        font-size: 1.2rem;
        /* margin-bottom: -2rem; */
        cursor: #8b8b8b;

        width: 400px;

    }

    .blog h4 {
        font-size: 1.25rem;
        /* padding-bottom: 1rem; */
        color: #ff5751;
        text-transform: uppercase;
        
        
    }

    .left-img {
        display: flex;
        position: relative;

        justify-content: center;
        width: 100vw;
        height: 40vh;
        margin-top: -4rem;
        padding-top: 1rem;
    }

    .youtupe {
        display: flex;
        background-color: red;
        align-self: self-start;
        width: 5vw;
        position: absolute;
        padding: 1rem;
        width: 70px;
        height: 70px;
        border-radius: 50px;
        align-items: center;
        justify-content: center;
        bottom: 9rem !important;
        color: #fff;

    }

    /* Container-ka guud ee slider-ka */
    .container-menu {
        width: 500px;
        max-width: 100%;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        overflow: hidden;

    }

    .menu-rest {
        display: flex;
        flex-direction: column;

        width: 99vw;
        height: 82vh;
        background-color: #fffafa;
        position: relative;



    }

    .menu-rest h6 {
        font-size: 15px;
        padding: 0px 0px 0px 40px;
        color: #d24b4b;
        width: 290px;
        height: 18px;
        text-transform: uppercase;
        /* padding-left: 80px; */
        display: flex;

        justify-content: center;
        

    }

    .descript {
        width: 300px;
        height: 120px;
        font-size: 30px;
        margin: 20px 20px 25px !important;
        padding-left: 30px;

        display: flex;
        justify-content: end;

    }

    .slider-container {

        height: 100%
    }

    .slider-container img {
        width: 100% !important;
    }

    .mobile-slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        /* smooth scroll on iOS */
        padding: 0;
        margin: 0;
    }

    .mobile-slider::-webkit-scrollbar {
        display: none;
        /* hide scrollbar */
    }

    .mobile-slider .card {
        flex: 0 0 100%;
        /* take full viewport width */
        scroll-snap-align: start;
        border-radius: 10px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        margin: 0;
        /* no extra space */

    }

    .card img {
        width: 100%;
        display: block;
    }

    .overlay {
        padding: 10px;
    }

    .overlay h3 {
        margin: 5px 0;
        font-size: 16px;
    }

    .overlay p {
        font-size: 14px;
        color: #555;
    }

    .overlay a {
        display: inline-block;
        margin-top: 5px;
        color: #fff;
        background: #ff6b6b;
        padding: 5px 10px;
        border-radius: 5px;
        text-decoration: none;
        font-size: 14px;
    }

}

@media (min-width:480px) and (max-width:1030px) {

    img {
        width: 100%;
        height: 100%;
    }

    .hamburger {
        display: none;
    }

    .container {
        width: min(90%, 1150px);
        margin-inline: auto;
    }

    header {
        background-color: #fff;
        box-shadow: 0 0 10px rgba(55, 55, 55, 0.4);
        height: 6.4rem;
        position: sticky;
        top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 11111;
    }

    .menu {
        display: flex;
        align-items: center;
        gap: 7rem;
        padding: 0.7rem;
    }

    .desketop-menu {
        height: 100%;
        display: flex;
        align-items: center;
    }

    .desketop-menu li {
        list-style: none;
    }

    .desketop-menu a {
        font-size: 1rem;
        font-weight: 400;
        text-decoration: none;
        color: black;
        padding: 1rem;
        cursor: pointer;
    }

    .desketop-menu a:hover {
        color: #fd211b;
    }

    .logo img {
        height: 60px;
    }

    .mobile-menu {
        display: none;
    }

    .dropdown {
        position: relative;
        display: inline-block;
    }

    .dropdown-menu {
        position: absolute;
        top: 40px;
        left: 0;
        background: #fff;
        width: 200px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        border-radius: 4px;
        display: none;
        padding: 10px 0;
    }

    .dropdown-menu li {
        list-style: none;
    }

    .dropdown-menu a {
        display: block;
        padding: 10px 20px;
        color: #444;
        text-decoration: none;
        font-size: 14px;
    }

    .dropdown-menu a:hover {
        background: #f5f5f5;
        color: #d24b4b;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }





    .grid {
        display: flex;
        justify-content: center;
        height: 55vh;

        width: 87vw;
        align-items: center;
        margin-inline: auto;

        margin-bottom: 7rem;
        margin-top: 120px;

        padding: 2rem;
       
    }

    .main {
        display: grid;
        grid-template-columns: repeat(2, 1fr);

        height: 20%;
        gap: 2rem;
        flex-wrap: wrap;
        height: 100%;
    }

    .blog {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 80%;
        /* padding: 1rem; */
        top: 60%;

    }

    .sawiro {
        display: flex;
        height: 20vh;

        width: 25vw !important;
        gap: 20px;
        margin-top: 3rem;
    }

    .sawiro img {
        height: 65%;
        width: 100%;
    }

    .title-grid {
        font-size: 2rem;

        font-weight: bolder;
        padding-bottom: 1rem;
    }

    .blog p {
        font-size: 1.45rem;
        margin-bottom: -2rem;
        cursor: #8b8b8b;

    }

    .blog h4 {
        font-size: 1.25rem;
        padding-bottom: 1rem;
        color: #ff5751;
        text-transform: uppercase;
    }

    .left-img {
        display: flex;
        position: relative;

        justify-content: center;
        height: 45%;
        width: 38vw;
        margin-top: 1rem;
    }

    .youtupe {
        display: flex;
        background-color: red;
        align-self: self-start;
        width: 5vw;
        position: absolute;
        padding: 1rem;
        width: 70px;
        height: 70px;
        border-radius: 50px;
        align-items: center;
        justify-content: center;
        bottom: 8rem;
        color: #fff;

    }





    .menu-rest {
        display: flex;
        flex-direction: column;

        width: 99vw;
        height: 60vh;
        background-color: #fffafa;
        /* position: relative; */

        margin-top: -32rem;


    }

    .menu-rest h6 {
        font-size: 15px;
        padding: 0px 0px 0px 40px;
        color: #d24b4b;
        width: 290px;
        height: 18px;
        text-transform: uppercase;
        /* padding-left: 80px; */
        display: flex;

        justify-content: center;


    }

    .descript {
        width: 400px;
        height: 120px;
        font-size: 30px;
        margin: 20px 20px 25px !important;
        padding-left: 30px;

        display: flex;
        justify-content: end;

    }

    .slider-container img {
        height: 100%;
        width: 100%;
    }


    .slider-arrows {
        position: absolute;
        margin-bottom: 10px;
        /* bottom: 0; */
        transform: translateY(-50%);
        /* background: #e74c3c; */
        color: #d24b4b;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        cursor: pointer;
        z-index: 10;


    }

    .slider-arrows.rights {
        left: 50%;
        bottom: 13%;


    }

    .slider-arrows.lefts {
        right: 50%;
        bottom: 13%;
    }

    .slider-arrows:hover {
        background: #c0392b;
    }

    .slick-arrows {
        display: block;
    }

    .slider-container img {
        height: 100%;
        width: 100%;
    }

    Weelka weyn ee slider-ka .slider-container {
        /* width: 10%; */
        overflow: hidden;
        background: white;
        /* padding: 20px 0; */
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        width: 500px;
        /* background-color: blue; */


        background-color: #fffafa;
        display: flex;
        gap: 0;
        justify-content: flex-start;
    }

    /* Safka kaararka ee soconaya */


    .slider-tracks {
        display: flex;
        width: max-content;
        animation: walk 38s infinite;
    }

    @keyframes walk {

        /* socod */
        0% {
            transform: translateX(0);
        }

        20% {
            transform: translateX(-10%);
        }

        /* hakad */
        25% {
            transform: translateX(-10%);
        }

        /* socod kale */
        45% {
            transform: translateX(-25%);
        }

        /* hakad */
        50% {
            transform: translateX(-25%);
        }

        /* socod */
        70% {
            transform: translateX(-40%);
        }

        /* hakad */
        75% {
            transform: translateX(-40%);
        }

        /* dhammaad */
        100% {
            transform: translateX(-50%);
        }
    }

    /* Marka Mouse-ka la dul dhigo, slider-ku wuu istaagayaa */
    .slider-track:hover {
        animation-play-state: paused;
    }

    /* Qaabka kaarka */
    .card {
        position: relative;
        width: 280px;
        height: 30vh;
        margin: 0 10px;
        flex-shrink: 0;
        overflow: hidden;
        border-radius: 10px;
    }

    .card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    .price-tag {
        position: absolute;
        top: 0;
        left: 0;
        background-color: #ff5757;
        color: white;
        padding: 20px 15px;
        font-weight: bold;
        border-radius: 4px;
        z-index: 5;
        font-size: 2rem;
    }

    /* Overlay-ga (Kaliya bar ayuu daboolayaa) */
    .overlay {
        position: absolute;
        bottom: -60%;
        left: 0;
        width: 100%;
        height: 45%;
        background-color: rgba(255, 87, 87, 0.95);
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 15px;
        box-sizing: border-box;
        transition: bottom 0.4s ease-in-out;
        font-size: 2rem;
    }


    .card:hover .overlay {
        bottom: 0;

    }

    /* Overlay-ga (Kaliya bar ayuu daboolayaa) */
    .overlay {
        position: absolute;
        bottom: -60%;
        left: 0;
        width: 100%;
        height: 45%;
        background-color: rgba(255, 87, 87, 0.95);
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 15px;
        box-sizing: border-box;
        transition: bottom 0.4s ease-in-out;
        font-size: 2rem;
    }


    .card:hover .overlay {
        bottom: 0;

    }




}

@media (min-width:481px) and (max-width:1023px) {
    img {
        width: 100%;
        height: 100%;
    }

    .hamburger {
        display: none;
    }

    .container {
        width: min(90%, 1150px);
        margin-inline: auto;
    }

    header {
        background-color: #fff;
        box-shadow: 0 0 10px rgba(55, 55, 55, 0.4);
        height: 6.4rem;
        position: sticky;
        top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        z-index: 11111;
    }

    .menu {
        display: flex;
        align-items: center;
        gap: 3rem;
        padding: 0.5rem;
    }

    .desketop-menu {
        height: 100%;
        display: flex;
        align-items: center;
    }

    .desketop-menu li {
        list-style: none;
    }

    .desketop-menu a {
        font-size: 1rem;
        font-weight: 400;
        text-decoration: none;
        color: black;
        padding: 1rem;
        cursor: pointer;
    }

    .desketop-menu a:hover {
        color: #fd211b;
    }

    .logo img {
        height: 60px;
    }

    .mobile-menu {
        display: none;
    }

    .dropdown {
        position: relative;
        display: inline-block;
    }

    .dropdown-menu {
        position: absolute;
        top: 40px;
        left: 0;
        background: #fff;
        width: 200px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        border-radius: 4px;
        display: none;
        padding: 10px 0;
    }

    .dropdown-menu li {
        list-style: none;
    }

    .dropdown-menu a {
        display: block;
        padding: 10px 20px;
        color: #444;
        text-decoration: none;
        font-size: 14px;
    }

    .dropdown-menu a:hover {
        background: #f5f5f5;
        color: #d24b4b;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }









    .grid {
        display: flex;
        justify-content: center;
        height: 55vh;

        width: 95vw;
        align-items: center;
        margin-top: 3rem;


        
    }

    .main {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 115vw;
        height: 55vh;
        gap: 2rem;
        flex-wrap: wrap;
      

    }
     .main img{
        width: 100%;
     }

    .blog {
        display: flex;
        flex-direction: column;
        width: 47vw !important;
        height: 80%;
        /* padding: 1rem; */
        top: 60%;


    }

    .sawiro {
        display: flex;
        height: 30vh;

        width: 50vw;
        gap: 20px;
        margin-top: 3rem;
    }

    .sawiro img {
        height: 49%;
    }

    .title-grid {
        font-size: 2rem;

        font-weight: bolder;
        padding-bottom: 1rem;
    }

    .blog p {
        font-size: 14px;
        margin-bottom: -2rem;
        cursor: #8b8b8b;
        width: 400px;
    }

    .blog h4 {
        font-size: 1.25rem;
        padding-bottom: 1rem;
        color: #ff5751;
        text-transform: uppercase;
    }

    .left-img {
        display: flex;
        position: relative;

        justify-content: center;
        height: 45%;
        width: 38vw;
    }

    .left-img img {
        width: 100%;
    }

    .youtupe {
        display: flex;
        background-color: red;
        align-self: self-start;
        width: 5vw;
        position: absolute;
        padding: 1rem;
        width: 60px;
        height: 60px;
        border-radius: 50px;
        align-items: center;
        justify-content: center;
        bottom: 8rem;
        color: #fff;

    }

    .left-img {
        height: 30vh;
        padding-top: 1rem;
    }

    .menu-rest {
        display: flex;
        flex-direction: column;

        width: 99vw;
        height: 70vh;
        background-color: #fffafa;
        position: relative;


        margin-top: -25rem;



    }

    .menu-rest h6 {
        font-size: 15px;
        padding: 0px 0px 0px 40px;
        color: #d24b4b;
        width: 250px;
        height: 18px;
        text-transform: uppercase;
        /* padding-left: 80px; */
        display: flex;

        justify-content: center;


    }

    .descript {
        width: 430px;
        height: 120px;
        font-size: 30px;
        margin: 20px 20px 25px !important;
        padding-left: 30px;

        display: flex;
        justify-content: center;
    }

    .slider-container img {
        height: 100%;
        width: 100%;
    }



    .slider-arrows {
        position: absolute;
        margin-bottom: 10px;
        /* bottom: 0; */
        transform: translateY(-50%);
        /* background: #e74c3c; */
        color: #d24b4b;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        cursor: pointer;
        z-index: 10;


    }

    .slider-arrows.rights {
        left: 50%;
        bottom: -3%;


    }

    .slider-arrows.lefts {
        right: 50%;
        bottom: -3%;
    }

    .slider-arrows:hover {
        background: #c0392b;
    }

    .slick-arrows {
        display: block;
    }

    .slider-container img {
        height: 100%;
        width: 100%;
    }

    Weelka weyn ee slider-ka .slider-containers {
        /* width: 10%; */
        overflow: hidden;
        background: white;
        /* padding: 20px 0; */
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        width: 99vw;
        /* background-color: blue; */
        margin-top: 3rem;

        background-color: #fffafa;
        display: flex;
        gap: 0;
        justify-content: flex-start;
    }

    /* Safka kaararka ee soconaya */


    .slider-tracks {
        width: 3000px;
        display: flex;
        width: max-content;
        animation: walk 38s infinite;
    }

    @keyframes walk {

        /* socod */
        0% {
            transform: translateX(0);
        }

        20% {
            transform: translateX(-10%);
        }

        /* hakad */
        25% {
            transform: translateX(-10%);
        }

        /* socod kale */
        45% {
            transform: translateX(-25%);
        }

        /* hakad */
        50% {
            transform: translateX(-25%);
        }

        /* socod */
        70% {
            transform: translateX(-40%);
        }

        /* hakad */
        75% {
            transform: translateX(-40%);
        }

        /* dhammaad */
        100% {
            transform: translateX(-50%);
        }
    }


    /* Marka Mouse-ka la dul dhigo, slider-ku wuu istaagayaa */
    .slider-track:hover {
        animation-play-state: paused;
    }

    /* Qaabka kaarka */
    .card {
        position: relative;
        width: 370px;
        height: 39vh;
        margin: 0 10px;
        flex-shrink: 0;
        overflow: hidden;
        border-radius: 10px;
    }

    .card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    .price-tag {
        position: absolute;
        top: 0;
        left: 0;
        background-color: #ff5757;
        color: white;
        padding: 20px 15px;
        font-weight: bold;
        border-radius: 4px;
        z-index: 5;
        font-size: 2rem;
    }

    /* Overlay-ga (Kaliya bar ayuu daboolayaa) */
    .overlay {
        position: absolute;
        bottom: -60%;
        left: 0;
        width: 100%;
        height: 45%;
        background-color: rgba(255, 87, 87, 0.95);
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 15px;
        box-sizing: border-box;
        transition: bottom 0.4s ease-in-out;
        font-size: 2rem;
    }


    .card:hover .overlay {
        bottom: 0;

    }

    /* Overlay-ga (Kaliya bar ayuu daboolayaa) */
    .overlay {
        position: absolute;
        bottom: -60%;
        left: 0;
        width: 100%;
        height: 45%;
        background-color: rgba(255, 87, 87, 0.95);
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 20px;
        box-sizing: border-box;
        transition: bottom 0.4s ease-in-out;
        font-size: 2rem;
    }


    .card:hover .overlay {
        bottom: 0;

    }
}
@media(min-width:375px) and (max-width:429px){
    /* Hamburger icon */
    .hamburger {
        display: none;
        /* la muujin doono mobile */
        position: absolute;
        top: 7%;
        right: 5%;
        width: 50px;
        height: 50px;
        justify-content: center;
        align-items: center;
        font-size: 2rem;
        color: #c0392b;
        border-radius: 50%;
        z-index: 11111;
        cursor: pointer;
    }

    .mobile-menu[data-visible="false"] {
        transform: translateX(100%);

    }

    .hamburger i[data-visible="true"] {
        display: block;
    }

    .hamburger i[data-visible="false"] {
        display: none;
    }


    .mobile-menu .navigation {
        margin-top: 5rem;
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 1.5rem;
        width: 100vw;
        height: 50vh;
        border-bottom: 1px solid rgb(75, 11, 248);

    }

    .mobile-menu .navigation .menus-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;


    }




    .mobile-menu {
        display: flex;
        justify-content: center;
        position: fixed;
        background-color: rgba(255, 255, 255, 0.8);
        inset: 0 0 0 0;
        color: rgb(245, 35, 7);
        transform: translateX(0%);
        transition: transform 350ms ease-in-out;
        height: 70vh;





    }

    .mobile-menu h1 {
        font-size: 2.3125rem;
        font-weight: 700;
        border-bottom: 1px solid rgb(75, 11, 248);
        padding: 10px;
    }

    .mobile-menu li {
        list-style: none;
    }

    .mobile-menu a {
        color: #000 !important;

        text-decoration: none;
        font-size: 14px;
        line-height: 50px;

    }

    .mobile-menu a:hover {
        color: #c0392b !important;
    }

    /* NAVBAR */
    .navbar {
        padding: 20px 40px;
        background: #fff;
    }

    .nav-menu li {
        list-style: none;
    }

    .nav-link {
        text-decoration: none;
        font-size: 16px;
        color: #d24b4b;
        font-weight: 500;
    }

    /* DROPDOWN */
    .dropdown {
        position: relative;
        display: inline-block;
    }

    .dropdown-menu {
        position: absolute;
        top: 40px;
        left: 0;
        background: #fff;
        width: 200px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        border-radius: 4px;
        display: none;
        padding: 10px 0;
    }

    .dropdown-menu li {
        list-style: none;
    }

    .dropdown-menu a {
        display: block;
        padding: 10px 20px;
        color: #080000;
        text-decoration: none;
        font-size: 14px;
    }

    .dropdown-menu a:hover {
        background: #f5f5f5;
        color: #d24b4b !important;
    }

    /* SHOW ON HOVER */
    .dropdown:hover .dropdown-menu {
        display: block;
    }

    /* Show mobile menu when active */
    .mobile-menu[data-visible="true"] {
        transform: translateX(0);
    }

    /* Menu links */
    .mobile-menu ul {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .mobile-menu a {
        font-size: 1rem;
        color: #000;
        text-decoration: none;
    }

    .mobile-menu a:hover {
        color: #c0392b;
    }

    /* Dropdown inside mobile menu */
    .mobile-menu .dropdown-menu {
        display: none;
        flex-direction: column;
        gap: 0;
        margin-top: 5px;
    }

    .mobile-menu .dropdown.active .dropdown-menu {
        display: flex;
    }

    /* Show hamburger only on mobile */
    @media(max-width: 991px) {
        .hamburger {
            display: flex;
        }

        .desketop-menu {
            display: none;
            /* hide desktop menu on mobile */
        }
    }

    /* iPad Mini adjustments */
    @media (min-width: 768px) and (max-width: 1023px) {
        .mobile-menu a {
            font-size: 1.1rem;
        }
    }

    /* iPad Pro adjustments */
    @media (min-width: 1024px) and (max-width: 1366px) {
        .mobile-menu a {
            font-size: 1.2rem;
        }
    }


    .row {

        display: flex;
        flex-direction: column;
        height: 80vh;
        margin-bottom: -2rem;
    }

    .left-contect {
        width: 100vw;
        height: 40vh;
        background-image: url('https://templatemo.com/templates/templatemo_558_klassy_cafe/assets/images/top-left-bg.jpg');
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        /* position: absolute; */
    }

    .title-top {
        display: flex;
        flex-direction: column;
        color: white;
        align-items: center;
        justify-content: center;
        /* margin-top: 3rem; */
        font-size: 1.12rem;
        margin-top: 0.3rem;
    }

    .btn-left {
        padding: 1rem;
        border-radius: 0.3rem;
        border: none;
        font-size: 1rem;
        margin-top: 1rem;
        color: #fd211b;
        text-align: center;
    }

    .img-fill {

        width: 100vw;
        height: 10% !important;
        display: flex;
        background-color: red;


        animation: walk 18s infinite;
    }

    .cards {
        position: relative;
        width: 80vw;
        height: 40vh;
        /* margin: 0 10px; */
        flex-shrink: 0;
        overflow: hidden;
        /* border-radius: 10px; */
        z-index: 11111;
    }

    .cards img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .slider-containers {
        /* width: 10%; */
        overflow: hidden;
        background: white;
        /* padding: 20px 0; */
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        width: 100vw;
        background-color: blue;
        height: 40vh !important;
        /* background-color: blue; */
        /* margin-top: 3rem; */

        /* background-color: #fffafa; */
        display: flex;
        gap: 0;
        justify-content: flex-start;
        height: 60vh;

    }

    .slider-arrow {
        position: absolute;
        top: 10%;
        transform: translateY(-50%);
        background: rgba(252, 174, 165, 0.4);
        color: #fff;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        cursor: pointer;
        z-index: 10;
    }

    .slider-arrow.left {
        left: 10%;


        margin-top: 150px;


    }

    .slider-arrow.right {
        right: 10%;

        margin-top: 150px;

    }

    .slider-arrow:hover {
        background: #c0392b;
    }

    .slick-arrow {
        display: block;
    }


    .grid {
        display: flex;
        justify-content: center;
        height: 99vh;

        width: 100vw;
        align-items: center;
        margin-inline: auto;
    }

    .main {
        display: flex;
        flex-direction: column;
        height: 110%;
        width: 100%;
        margin-bottom: 20vh;
    }

    .blog {
        display: flex;
        flex-direction: column;
        width: 100% !important;
        height: 80%;
        /* padding: 1rem; */
        margin-top: 3rem;

    }

    .blog h2 {
        font-size: 1.875rem;
        margin: 20px 0px 25px;

        padding: 0px 120px 0px 0px;
        width: 380px;
        color: #2a2a2a;
        font-weight: 900;

        display: flex;
        justify-content: center;
        align-items: center;


    }

    .sawiro {
        display: flex;
        height: 15vh;
        padding: 10px;
        width: 30vw;
        gap: 30px;
        margin-top: -4rem;
        padding-bottom: 2rem;
    }

    .sawiro img {
        height: 100%;
    }

    .title-grid {
        font-size: 2rem;
        
        width: 90vw !important;
        font-weight: bolder;
        padding-bottom: 1rem;
        height:25vh;
    }

   

    .blog p {
        font-size: 1.2rem;
        /* margin-bottom: -2rem; */
        cursor: #8b8b8b;

        width: 400px;
        height: 35vh;

    }

    .blog h4 {
        font-size: 1.25rem;
        /* padding-bottom: 1rem; */
        color: #ff5751;
        text-transform: uppercase;
      
    }

    .left-img {
        display: flex;
        position: relative;

        justify-content: center;
        width: 100vw;
        height: 40vh;
        margin-top: -4rem;
        padding-top: 1rem;
    }

    .youtupe {
        display: flex;
        background-color: red;
        align-self: self-start;
        width: 5vw;
        position: absolute;
        padding: 1rem;
        width: 40px;
        height: 40px;
        border-radius: 50px;
        align-items: center;
        justify-content: center;
        bottom: 7rem;
        color: #fff;

    }

    /* Container-ka guud ee slider-ka */
    .container-menu {
        width: 500px;
        max-width: 100%;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        overflow: hidden;

    }

    .menu-rest {
        display: flex;
        flex-direction: column;

        width: 99vw;
        height: 82vh;
        background-color: #fffafa;
        position: relative;
        margin-top: 3rem;



    }

    .menu-rest h6 {
        font-size: 15px;
        padding: 0px 0px 0px 40px;
        color: #d24b4b;
        width: 290px;
        height: 18px;
        text-transform: uppercase;
        /* padding-left: 80px; */
        display: flex;

        justify-content: center;


    }

    .descript {
        width: 300px;
        height: 120px;
        font-size: 30px;
        margin: 20px 20px 25px !important;
        padding-left: 30px;

        display: flex;
        justify-content: end;

    }

    .slider-container {

        height: 100%
    }

    .slider-container img {
        width: 100% !important;
    }

    .mobile-slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        /* smooth scroll on iOS */
        padding: 0;
        margin: 0;
    }

    .mobile-slider::-webkit-scrollbar {
        display: none;
        /* hide scrollbar */
    }

    .mobile-slider .card {
        flex: 0 0 100%;
        /* take full viewport width */
        scroll-snap-align: start;
        border-radius: 10px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        margin: 0;
        /* no extra space */

    }

    .card img {
        width: 100%;
        display: block;
    }

    .overlay {
        padding: 10px;
    }

    .overlay h3 {
        margin: 5px 0;
        font-size: 16px;
    }

    .overlay p {
        font-size: 14px;
        color: #555;
    }

    .overlay a {
        display: inline-block;
        margin-top: 5px;
        color: #fff;
        background: #ff6b6b;
        padding: 5px 10px;
        border-radius: 5px;
        text-decoration: none;
        font-size: 14px;
    }



}

    