* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-image: url("background.jpg");
    background-size: cover;        /* makes image cover the screen */
    background-position: center;   /* keeps image centered */
    background-repeat: no-repeat;  /* prevents repeating */
    height: 100%;
    margin: 0;
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

img{
    height: 6rem;
    width: 8rem;
    margin: 0;
    padding-left: 0;
    padding-top: 0;
}

.navbar a{
    padding-right: 0;
    margin: 0;
    padding-top: 0;
    margin-left: 35px;
}

.list{
    color: white;
    text-decoration: none;
    gap: 10rem;
    cursor: pointer;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.list:hover,
.list.active{
    color: white;
    text-shadow: 0 0 10px white;
    text-decoration: underline;
    transition: 0.3 ease-in-out;
}

.para_one{
    text-align: center;
    padding-top: 10rem;
    color: white;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 8rem;
    font-size: 0.8rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.h1{
    align-items: center;
    text-shadow:0 0 10px white;
    color: white;
    padding-top: 1rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.service{
    align-items: center;
    text-shadow:0 0 10px white;
    color: white;
    padding-top: 10rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.para{
    color: white;
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    padding: 3.6rem;
}

.btn-box{
    text-align: center;
    padding-inline: 2rem;

    color: black;
}

.btn-box a{
    color: black;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    gap: 2rem;
}

.action_btn{
    padding-top: 20rem;
    background-color: white;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    scale: 1rem;
}

.action_btn:hover{
    color: black;
    box-shadow: 0 0 15px white;
    scale: 1.2rem;
}

ul {
  display: flex;
  list-style: none;
  gap: 20px;
  color: white;
  lighting-color: white;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.services{
    padding: 2rem;
    row-gap: 2rem; 
}

.service-box{
    padding: 2rem;
    border-radius: 15px;
    row-gap: 2rem; 
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    color: white;
}

.service-box:hover{
    color: white;
    box-shadow: 0 0 10px white;
}

.footer{
    background:#111;
    color:#ccc;
    padding:60px 10% 30px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.list{
  text-decoration: none;
  color: white;
}

.list:hover{
  color: white;
  text-shadow: 0 0 10px white
.footer-container{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
}

.footer-column{
    width:250px;
}

.footer-column h4{
    font-size:16px;
    color:#fff;
    margin-bottom:20px;
    letter-spacing:1px;
}

.footer-column ul{
    list-style:none;
    color: white;
    text-decoration: none;
}

.footer-column ul li{
    margin-bottom:12px;
    font-size:14px;
    color: white;
    text-decoration: none;
}

.footer-column ul li a{
    text-decoration:none;
    color:#ccc;
    position:relative;
    transition:0.3s;
    color:white;
    text-decoration: none;
}

.footer-column ul li a::after{
    content:"";
    position:absolute;
    width:0;
    height:1px;
    left:0;
    bottom:-3px;
    background:white;
    transition:0.3s;
    color:white;
    text-decoration: none;
}

.footer-column ul li a:hover{
  color: white;
  text-shadow: 0 0 10px white;
  text-decoration: none;
}

.footer-column ul li a:hover::after{
    width:100%;
    color:white;
    text-decoration: none;
}

.footer-bottom{
    border-top:1px solid #333;
    margin-top:40px;
    padding-top:20px;
    text-align:center;
    font-size:13px;
}

/* Mobile */

@media (max-width:768px){

.footer-container{
    flex-direction:column;
    gap:40px;
}

.footer-column{
    width:100vh;
}

}

@media (max-width: 768px) {
    body{
        background-size: cover;
        background-position: center;
        height: 100%;
    }
}