:root {
    --main-color: #0c283b;
    --main-duration: 0.5s;
}
body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
      margin: 0;
      background-color: #f9f9f9;
      color: var(--main-color);
    }
    p {
      font-size: 23px;
      line-height: 1.6;
    }
    /*Start Header*/
.header{
    padding: 20px;
    position: relative;
    z-index: 1000;
}@media (max-width: 768px) {
    .header{
        padding: 10px;
        background-color: var(--main-color);
    }
}
.header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header .logo{
  width: 60px;
  margin-right: auto;
  margin-left: 0;
}
.header .links{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: 0;
}
.header .links:hover .icon span:nth-child(2) {
    width: 100%;
}
.header .links .icon{
    width: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content:flex-end ;
}
.header .links .icon span {
    background-color:var(--main-color);
    margin-bottom: 5px;
    height: 2px; 
}@media (max-width: 768px) {
    .header .links .icon span{
      background-color:white;
    }
}
.header .links .icon span:first-child{
    width: 100%;
}
.header .links .icon span:nth-child(2){
    width: 60%;
    transition: var(--main-duration);
}
.header .links .icon span:last-child{
    width: 100%;
}
.header .links ul{
    list-style: none;
    margin: 0;
    padding: 0;
    background-color:var(--main-color);
    position: absolute;
    right: 0;
    min-width: 200px;
    top: calc(100% + 15px);
    display: none;
    z-index: 1;
}
.header .links ul::before{
    content: "";
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent #f6f6f6 transparent;
    position: absolute;
    right: 5px;
    top: -20px;
}
.header .links:hover ul{
    display: block;
}
.header .links ul li a {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: white;
    transition: var(--main-duration);
}
.header .links ul li a:hover{
    padding-left: 25px;
}
.header .links ul li:not(:last-child) a {
    border-bottom: 1px solid #DDD;
}
/*End Header*/
    header {
        background-image: url(ss.jpg.jpg); 
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        height: 100vh;
        width: 100%;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        margin-top: -110px;
    }@media (max-width: 768px) {
    header {
        background-image: none;
        height: 30vh;
        margin-top: auto;
        }
    }


    .overlay {
        position: absolute;
        bottom: 20px;
        right: 40px;
        color: var(--main-color);
        background-color: transparent;
        padding: 15px;
        border-radius: 10px;

         }@media (max-width: 768px){
          .overlay{
                  position: absolute;
                  top: 20px;
                  right: 20px;
                }
        }

    .overlay h1 {
      margin: 0;
      font-size: 80px;
      margin-bottom: 20px
    }@media (max-width: 768px) {
        .overlay h1 {
            font-size: 40px;
            margin-bottom: 10px;
        }
    }
    .overlay p {
      margin: 0;
      font-size: 23px;
    }

    .services, .testimonial, .about, .contact {
      padding: 30px 20px;
      max-width: 75%;
      margin: auto;
    }
    @media (max-width: 768px) {
  .services {
    margin-top: 10px;
    padding-top: 10px;
  }
}
    .services {
      scroll-margin-top: 100px; /* adjust as needed */
    }
    .services-h2 {
      text-align: right;
      font-size: 40px;
      color: var(--main-color);
    }
    .services-icons {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      margin-top: 20px;
    }

    .services-icons div {
      text-align: center;
      margin: 10px;
    }

    .services-icons i {
      font-size: 50px;
      color: var(--main-color);
      margin-bottom: 10px;
    }

    h2 {
      color: var(--main-color);
    }

    .contact {
      background-color: #e5e5e5;
      text-align: center;
      font-size: 18px;
      font-weight: bold;
    }

    .contact h2 , .testimonial h2 , .about h2 ,.services h2 {
        text-align: right;
        font-size: 40px
    }
    .contact p {
      text-align: left;
    }

    .social-media-icons{
        text-align: right;
    }

    .phone {
      color: #0d1b2a;
      font-size: 22px;
    }

    blockquote {
      background-color: #f0f0f0;
      padding: 15px;
      border-right: 5px solid var(--main-color);
      margin: 10px 0;
      font-style: italic;
      font-size: 23px;
    }
    footer {
        display: inline;
        margin: 10px;
    }
