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 #logoimage{
    width: 6.1%;
    height: 147%;
    top: -29%;
    left: 6%;
    position: absolute;
}

section nav .logo img{
    width: 100%;
    height: 100%;
}
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;
}






.location{
    width: 80%;
    margin-left: 10%;
    padding-top: 10%;
}
.location iframe{
    width: 100%;
    height: 60vh;
}
.contact_us{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5% 10% 0 10%;
}


.contactus_image{
    width: 38%;
}
.contactus_image img{
    width: 100%;
}

.first_content{
    display: flex;
    align-items: center;
    gap: 20px;
}
.first_content p{
    line-height: 1.6;
    font-size: 20px ;
    max-width: 500px;
}

.form_content form input{
    margin: 3% 0;
    padding: 15px 190px 15px 9px ;
    outline: none;
}
.form_content form textarea{
    padding: 8px 190px 80px 9px;
    overflow-y: hidden;
    outline: none;
    margin-top: 5%;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.form_content a{
    border: 1px solid ;
    text-align: center;
    color: black;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 10px;
    transition: all 0.6s;
    width: 150px;
    outline: none;
}
.form_content a:hover{
    box-shadow: 0px 0px 10px ;
    transform: scale(1.1);
}


.automatic_text{
    margin-top: 1%;
    text-align: center;
    color: #cf4e26;
    font-size: 28px ;
    height: auto;
}





.footer_part{
    text-align: center;
    margin-top: 6%;
}
.footer_part h1{
    font-size: 26px;
    color: var(--main-color);
    font-family: var(--main-font);
}
.footer_part h1 span{
    color: black;
}
.footer_part #footer_content{
   font-size: 17px;
   line-height: 1.8;
   padding: 1% 0;
   max-width: 1600px;
   margin-left: 6%;
}
.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){

    body,html{
        margin: 0;
        padding: 0;
        overflow-x: hidden;

    }

    .contact_us{
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 5% 10% 0 10%;
        gap: 5%;
    }
   
    .footer_part{
        margin-right: 2%;
    }
    .footer_part h1{
        margin-left: 3%;
    }
    .footer_icons{
        margin-left: 3%;
    }
    #iam{
        margin-left: 3%;
    }
    
}


@media (max-width:1366px) {

    .automatic_text{
        margin-top: 8%;
    }
    #footer_content{
        margin-right: 6%;
    }
    
}

@media (max-width:1200px) {
    .form_content{
        margin-left: 8%;
    }

    .location{
        padding: 14% 10%;
        margin: 0;
    }
    
}




@media (max-width: 815px) {
    /* Adjustments for smaller screens */

    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 .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);
    }











    .location {
        width: 95%;
        margin-left: -8%;
        padding-top: 20%;
    }
    .location iframe{
        height: 30vh;
    }
    .first_content p{
        font-size: 18px;
    }

    .contact_us {
        flex-direction: column;
        padding: 5%;
        align-items: center;
    }

    .contactus_image {
        width: 100%;
        margin-bottom: -12%;
        margin-left: 25%;

    }
    .form_content{
        margin-right: 14%;
        margin-top: 15%;
    }

    .form_content form input {
        width: 100%;
        padding: 15px 28px;
    }

    .form_content form textarea {
        width: 100%;
        padding: 8px 28px 80px;
    }

    .form_content a:hover{
        box-shadow: none;
        transform: none;
    }



    
    .footer_part{
        border-top: 1px solid;
        margin-top: 5%;
    }
    .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:center;
       line-height: 1.8;
       padding: 2% 0 2% 0;
       max-width: auto;
       margin-left: 4%;
    }
    .footer_icons{
        display: flex;
        gap: 5px;
        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: 8% 0% 0 0;
        font-size: 12px;
        text-align: center;
    }
 
}


@media (max-width:425px) {

    body,html{
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }
    .contactus_image{
        display: none;
    }
    .form_content{
        margin-left: -5%;
    }
    .location{
        padding-top: 35%;
        padding-left: -8%;
    }
    .automatic_text{
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        font-size: 18px;
    }
    
}


@media (max-width:375px) {
    #active{
        margin-top: 15%;
    }
    
}

