/* 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;
    }
    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);
    }


/* Form Container */
.form-container{
    padding:30px;
    background: linear-gradient(135deg, rgba(206, 134, 0, 0.466), rgba(250, 167, 14, 0.466), rgb(255, 186, 57, 0.466));
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
    .quote-form {
        background: #ffffff;
        max-width: 550px;
        width: 100%;
        padding: 35px;
        border-radius: 12px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    }

    .quote-form h2 {
        text-align: center;
        margin-bottom: 10px;
        color: #203a43;
        font-size: 28px;
    }

    .quote-form p {
        text-align: center;
        margin-bottom: 30px;
        color: #555;
        font-size: 14px;
    }

    .form-group {
        margin-bottom: 18px;
    }

    .quote-form label {
        display: block;
        margin-bottom: 6px;
        font-weight: 600;
        color: #333;
        font-size: 14px;
    }

    .quote-form .input,
    .quote-form textarea {
        width: 90%;
        padding: 12px 14px;
        border-radius: 6px;
        border: 1px solid #ccc;
        font-size: 14px;
        transition: all 0.3s ease;
    }

    .quote-form input:focus,
    .quote-form textarea:focus {
        border-color: #2c5364;
        outline: none;
        box-shadow: 0 0 0 2px rgba(44, 83, 100, 0.15);
    }
.other_p{
  width:100%;
  margin:left;
}
    .services {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 10px;
    }

    .service-item {
        background: #f7f9fb;
        border: 1px solid #e0e0e0;
        border-radius: 6px;
        padding: 10px;
        display: flex;
        align-items: center;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .service-item input {
        margin-right: 8px;
    }

    .service-item:hover {
        background: #eef3f6;
        border-color: #2c5364;
    }
    .other{
      width:none;
    }
    textarea {
        resize: vertical;
        min-height: 100px;
    }

    .submit {
        width: 100%;
        margin-top: 25px;
        padding: 14px;
        font-size: 16px;
        font-weight: bold;
        color: #ffffff;
        background: linear-gradient(135deg, orange, rgb(214, 140, 1));
        border: none;
        border-radius: 30px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(32, 58, 67, 0.35);
    }

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 100px;
  }
  nav a{
    margin:20px 0;
    text-align: center;
 
  }
  .services {
      grid-template-columns: 1fr;
  }
}
    