body {
    font-family: sans-serif;
    margin: 0;
    overflow-x: hidden;
    font-family: "Work Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;

}
:root {
    --main-color: #cf4e26;
    --main-font: mv boli;
}
*::selection{
   color:var(--white);
   background-color: var(--main-color);
}

::-webkit-scrollbar{
   width: 1rem;
   height: .5rem;
}

::-webkit-scrollbar-track{
  background-color: none;
}

::-webkit-scrollbar-thumb{
   background-color: var(--main-color);
}

html {
    scroll-behavior: smooth;
}

section {
    width: 100%;
    position: relative;
}

section nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    right: 0;
    left: 0;
    background: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    z-index: 1000;
}


section nav .logo img{
    width: 100%;
    height: 100%;
}

section nav #logoimage{
    width: 6.1%;
    height: 147%;
    top: -29%;
    left: 6%;
    position: absolute;
}


section nav .logo h1 {
    width: 100px;
    height: 4vh;
    cursor: pointer;
    margin: 15px 0 25px 0;
    font-size: 35px;
}

section nav .logo h1 span {
    color: #cf4e26;
    margin-left: 5px;
    font-weight: 1500;
    font-family: mv boli;
}

section nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0  ;
}

section nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

section nav ul li a::after {
    content: '';
    width: 0;
    height: 2px;
    background: #cf4e26;
    display: block;
    transition: 0.2s linear;
}

section nav ul li a:hover::after {
    width: 100%;
}

section nav ul li a:hover {
    color: #cf4e26;
}

section #active {
    position: absolute;
    top: 23%;
    border: 1px solid;
    padding: 10px 20px;
    border-radius: 10px;
    background-color: white;
    color: black;
    transition: all 0.6s;
    font-weight: 500;
}


section #active::after{
    height: 0px;
}

section #active:hover {
    transform: scale(1.1);
}

section nav .icon i {
    font-size: 18px;
    color: #000;
    margin: 0 5px;
    cursor: pointer;
    transition: 0.3s;
}

section nav .icon i:hover {
    color: #fac031;
}

section .menu-icon{
    font-size: 24px;
    display: none;
}


.nav-links a {
    color: black;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 25px;
    height: 20px;
    cursor: pointer;
    padding: 5px;
    display: none;
}

.bar1, .bar2, .bar3 {
    width: 100%;
    height: 3px;
    background-color: black;
    transition: 0.4s;
}


/*Menu*/

.menu{
    width: 100%;
    padding: 6% 4%;
}

.menu h1{
    font-size: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.menu h1 #span{
    color: #cf4e26;
    margin-left: 15px;
    font-family: mv boli;
}

.menu h1 #span::after{
    content: '';
    width: 100%;
    height: 2px;
    background: var(--main-color);
    display: block;
    position: relative;
    bottom: 15px;
}

.menu .menu_box{
    padding: 4% 0;
    width: 95%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 15px;
    grid-row-gap: 40px;
}
.menu_card:hover{
    transform: scale(1.1);
}

.menu .menu_box .menu_card{
    width: 325px;
    height: 440px;
    padding-top: 10px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    transition: 0.7s ease-in-out;
}

.menu .menu_box .menu_card .menu_image{
    width: 300px;
    height: 245px;
    margin: 0 auto;
    overflow: hidden;
}

.menu .menu_box .menu_card .menu_image img{
    width: 100%;
    height: 100%;
    object-position: center;
    transition: 0.3s;
}

.menu .menu_box .menu_card .menu_image:hover img{
    transform: scale(1.1);
}

.menu .menu_box .menu_card .small_card{
    width: 45px;
    height: 45px;
    float: right;
    position: relative;
    top: -240px;
    right: -8px;
    opacity: 0;
    border-radius: 7px;
    transition: 0.3s;
}

.menu .menu_box .menu_card:hover .small_card{
    position: relative;
    top: -240px;
    right: 20px;
    opacity: 1;
}

.menu .menu_box .menu_card .small_card i{
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 50px;
    color: #000;
    cursor: pointer;
    text-shadow: 0 0 6px #000;
    transition: 0.2s;
}

.menu .menu_box .menu_card .small_card i:hover{
    color: var(--main-color);
}

.menu .menu_box .menu_card .menu_info h2{
    width: 60%;
    text-align: center;
    margin: 10px auto 10px auto;
    font-size: 25px;
    color: var(--main-color);
}

.menu .menu_box .menu_card .menu_info p{
    text-align: center;
    margin-top: 8px;
    line-height: 21px;
}

.menu .menu_box .menu_card .menu_info h3{
    text-align: center;
    margin-top: 10px;
}

.menu .menu_box .menu_card .menu_info .menu_icon{
    color: var(--main-color);
    text-align: center;
    margin: 10px 0 10px 0;
}

.menu .menu_box .menu_card .menu_info .menu_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    background: #000;
    padding: 8px 10px;
    margin: 0 80px;
    transition: 0.3s;
}












.footer_part{
    text-align: center;
    padding: 5% 0 0 0;
    margin-right: 10%;
}
.footer_part h1{
    font-size: 26px;
    color: var(--main-color);
    font-family: var(--main-font);
    margin-left: 1%;
}
.footer_part h1 span{
    color: black;
    margin-left: 0.5%;
}
.footer_part #footer_content{
   font-size: 17px;
   line-height: 1.8;
   padding: 1% 0;
   max-width: 1600px;
}
.footer_icons{
    display: flex;
    gap: 20px;
    justify-content: center;
}
.footer_icons a{
    font-size: 23px;
    color: black;
    transition: all 0.4s;
}
.footer_icons a:hover{
    color: var(--main-color);
}
#active{
    color: var(--main-color);
}
#iam{
    text-transform: uppercase;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin-top: 2%;
    text-align: right;
}









@media (max-width: 1536px){

    .menu{
        width: 100%;
        padding: 4% 1.5% 1% 1.5%;
    }

     .footer_part{
        margin-right: 14%;
    }
    .footer_part h1{
        text-align: center;
        margin-left: 13%;
    }
    .footer_part h1 span{
        color: black;
        margin-left: 0.5%;
    }
    .footer_part #footer_content{
       font-size: 17px;
       line-height: 1.8;
       padding: 1% 0;
       max-width: 1600px;
    }
    .footer_icons{
        margin-left: 12%;
    }
    #iam{
        margin-top: 3%;
        margin-left: 13%;
    } 

   


}







@media (max-width:1366px) {

    .menu{
        margin-left: -2.5%;
    }

    #footer_content{
        margin-right: -10%;
    }
    
}















@media (max-width: 768px) {



    body {
        overflow-x: hidden;
    }
    

    section .hamburger_menu {
        display: block;
        z-index: 1000;
    }
    
    section nav ul {
        display: none;
        flex-direction: column;
        width: 100%; /* Changed from 89.5% to 100% */
        background: #333;
        position: absolute;
        top: 40px;
        left: 0;
        height: 100vh;
    }

    section nav ul li a {
        color: white;
    }

    section .icon {
        display: none;
    }

    section nav {
        display: flex;
        justify-content: none;
        gap: 30%;
        width: 100%; /* Changed from 89.5% to 100% */
    }

    section #active {
        position: absolute;
        top: 51%;
        border: none;
        padding: 0;
        border-radius: 0;
        background-color: transparent;
        color: white;
        transition: all 0.6s;
    }

    section nav #logoimage {
        width: 24%;
        height: 145%;
        top: -29%;
        left: 0; /* Changed from left: -1% to left: 0% */
        position: absolute;
    }

    section nav .logo h1 {
        width: 100px;
        height: 4vh;
        cursor: pointer;
        margin: 25px 0 25px 50px;
        font-size: 30px;
    }

    section nav .logo h1 span {
        color: #cf4e26;
        margin-left: 5px;
        font-weight: 1500;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    }

    section nav ul.show {
        display: flex;
    }
    section nav .close-icon{
        display: block;
    }

    section .menu-icon {
        display: block;
    }



    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: #333;
        width: 100%;
        padding: 1rem 2rem;
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-links a{
        color: white;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 1rem 0;
    }
    .hamburger{
        display: block;
        display: flex;
         flex-direction: column;
        justify-content: space-around;
    width: 25px;
    height: 20px;
    cursor: pointer;
    padding: 5px;
    }

    .hamburger.active .bar1 {
        transform: rotate(-45deg) translate(-8px, 9px);
    }

    .hamburger.active .bar2 {
        opacity: 0;
    }

    .hamburger.active .bar3 {
        transform: rotate(45deg);
    }



    .menu{
        padding: 18% 0;
        margin-left: 0;
    }
    .menu h1 {
        font-size: 45px;
    }
    
    .menu .menu_box {
        grid-template-columns: 1fr;
    }

    .menu .menu_box .menu_card {
        margin-left: 7%;
        height: auto;
        margin-bottom: 30px;
        
    }

    .menu .menu_box .menu_card .menu_image {
        width: 80%;
        margin: 0 auto;
    }

    .menu .menu_box .menu_card .small_card {
        display: none;
    }

    .menu .menu_box .menu_card .menu_info h2 {
        font-size: 20px;
    }

    .menu .menu_box .menu_card .menu_info p {
        font-size: 12px;
    }

    .menu .menu_box .menu_card .menu_info h3 {
        font-size: 15px;
    }

    .menu .menu_box .menu_card .menu_info .menu_btn {
        margin: 0 20px;
    }



    .menu .menu_box .menu_card .menu_image:hover img{
        transform: none;
    }

    .menu_card:hover{
        transform: none;
    }

    .menu h1 #span::after{
        bottom: 7px;
    }









    
    .footer_part{
        border-top: 1px solid;
        margin-left: 6%;
        
    }
    .footer_part h1{
        font-size: 22px;
        color: var(--main-color);
        font-family: var(--main-font);
        text-align: center;
    }
    .footer_part h1 span{
        color: black;
    }
    .footer_part #footer_content{
       font-size: 10px;
       text-align: justify;
       line-height: 1.8;
       padding: 2% 0 4% 0;
       max-width: 370px;
       margin-left: 4%;
    }
    .footer_icons{
        display: flex;
        gap: 15px;
        justify-content: center;
        margin-right: 2%;
        margin-top: 2%;
    }
    .footer_icons a{
        font-size: 15px;
        color: black;
        transition: all 0.4s;
        margin-right: 2%;
    }
    #iam{
        text-transform: uppercase;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        margin-top: 8%;
        font-size: 12px;
        text-align: center;
    }
}









@media only screen and (max-width: 375px) and (min-width:345px){

    .menu .menu_box .menu_card{
        margin-left: 2%;
    }
    .menu{
        padding-bottom: 0;
    }
}
