 /* Font */
.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

    
    * {
    /* box-sizing: border-box; */
    font-family: "Poppins", sans-serif;
    font-style: normal;
    }
    
    body {
        margin: 0;
        padding: 0;
        height:100%;
    }
    a{
        
        cursor: pointer;
        text-decoration: none;
    }
    /* Navigation bar */
    .logo{
    align-items: center;
    margin-bottom: -12px;
    }
    header{
        /* position:fixed; */
        /* margin:10px 0; */
        padding:10px 15px;
        display:flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        /* width:100%; */
        background-color: white;
        
    }
    .mobile{
      display: none;
    }
    
    nav a{
    color:rgb(65, 65, 192);
    font-weight: 500;
    padding:0 10px;
    transition: all 0.3s ease;
    }
    nav a:hover {
        transform: translateY(-2px);
        text-shadow: 0 5px 10px rgba(2, 36, 48, 0.548);
    }
    .quote{
        background-color: orange;
        border-radius: 10px;
        border: none;
        /* padding:15px 40px; */
        margin-left:30px;
        cursor: pointer;
        transition: all 0.3s ease;
        height:60px;
        width: fit-content;
    }
    .quote a{
        font-family: "Poppins", sans-serif;
        font-weight: 700;
        font-style: normal;
        font-size: 1.2rem;
        color:white;
        padding:20px 80px;
    }
    .quote:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 10px rgba(32, 58, 67, 0.35);
    }

 .hero_img{
    width: 100%;
    height: clamp(65.5vh,50vw,70vh);
    object-fit: cover;
    position: absolute;
    z-index:-1;
    cursor: pointer;
}
.inside{
    position: inherit;
    /* background-color: rgba(255, 255, 255, 0.616); */
    background-color: rgba(0, 0, 0, 0.589);
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding:0 clamp(20px,6vw,100px) 0 clamp(20px,6vw,100px);
    /* width:100%; */
    height:70svh;
}
.home_p1{
    color:rgb(255, 255, 255);
    text-align: center;
    
}
span{
    color: orange;
}
 
h2{
    color:rgb(255, 255, 255);
    text-align: center;
    margin-top:30px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: clamp(0.8rem,5vw,1.5rem);
}
h1{
  font-family: "Poppins", sans-serif;
  margin-top:30px;
}
/* Contact Section */


.contact-container {
  background: #ffffff;
  padding-bottom: 60px;
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); */
  margin:auto;
}

.contact-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #555;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #667eea;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: orange;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(32, 58, 67, 0.35);
}

/* Footer */
.location{
  margin-left:5%;
  margin-top:30px;
   margin-bottom:30px;
}

 footer{
  background: #0d1b2a;
  padding: 20px;
  color: #fff;
  text-align: center;
  /* margin-top: 40px; */
}
 
 @media (max-width: 600px){
  header{
    display:flex;
    flex-direction: column;
   justify-content: center;
   align-items: center;
  }
  .logo{
    /* margin-right: auto; */
    margin-bottom:10px;
    text-align: center;
  }
  .pc{
    display: none;
  }
  .mobile{
    display:flex;
    flex-direction: column;
    /* background-color: #0d1b2a; */
    width:100%;
  }
  .list{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .quote{
    /* justify-content: center;
    align-items: center; */
    margin-top:10px;
    width:85%;
    margin-right:auto;
  }
  .quote a{
    text-align: center;
    padding:20px 97px;
  }
  nav a{
    margin:20px 0;
    text-align: center;
 
  }
  .services {
      grid-template-columns: 1fr;
  }
}