*{
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}
html{
    scroll-behavior: smooth;
}

body{
    background-color: #E8B86D;
   
}

header{
    background-color: white;
    display: flex;
    width: 100%;
    height: 120px;
    padding: 10px 20px;
    position: sticky;
    align-items: center;
    justify-content: space-between;
   
}
.heading{
    width: 40%;
    flex: 0 1 auto;
}
.heading img{
   max-height:60px;
  
}

nav.menu{
    width: 60%;
   
}
header .menu ul{
    display: flex;
    width: 100%;
    gap: 20px;

}
nav ul li{
    margin-right: 100px;
    list-style: none;
   
}
nav a{
    text-decoration: none;
    color: #DE982B;
    font-size: larger;
    font-family: "Zilla Slab", serif;
    font-weight: 500;
    font-style: normal;
    border-bottom: 2px solid transparent; /* Default transparent border */
    
}
nav a:hover{
    /* text-decoration: underline; */
    color:black;
    font-weight: bolder;
    font-style: italic;
    font-size:Xx-large;
}
nav a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #000;
    transition: width 0.3s ease; /* Smooth expansion of the underline */
}
nav a:hover::after {
    width: 100%; /* Expands underline */
}

.service{
    display: flex;
    height: 200px;
    padding-top: 30px;
    color: black;
}
.main{
    margin-top: 80px;
    margin-left: 100px;
    width: 80%;
    align-content: center;
}
.service-initials{
    margin-left: 50px;
    margin-right: 50px;
    text-align: center;
    padding-top: 30px;
    font-size: xx-large;
    color: whitesmoke;
    
}
.service-content{
    padding-left: 20px;
    p{
        font-size: large;}
}

footer{
    /* margin-top: 2rem; */
    background-color: whitesmoke;
    height: 200px;
    padding-top: 2rem;
    h3{
        text-align: center;
        font-family: 'Times New Roman', Times, serif;
        font-size: 3rem;
    }
    .footer-icon{
        text-align: center;
        a {
            text-decoration: none;
            margin: 0rem 20px;
          }
      
          .fa-solid {
            font-size: 3rem;
            color: #DE982B;
            margin-top: 1rem;
          }
          .fa-brands{
            font-size: 3rem;
            color: #DE982B;
            margin-top: 1rem;
          }
      
          .fab:hover {
            color:black;
          }
    }
    .copywrite{
        text-align: center;
        margin-top: 1rem;
    }
    .policies{
        text-align: center;
        margin-top: 1rem;
        margin-bottom: 3rem;
        a{
            color: #E8B86D;
            padding: 10px;
        }
    }

}
