/* 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;
}





/* CSS Style */
* { margin: 0; 
    padding: 0; 
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-style: normal;
}
a{
    cursor: pointer;
    text-decoration: none;
}
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #222;
}
/* Navigation bar */
.logo{
 align-items: center;
 margin-bottom: -12px;
  width:clamp(120px,25vw,300px);
  /* height:clamp(180px,30vw,300px); */
}
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:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 10px rgba(32, 58, 67, 0.35);
  }
.quote a{
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1.2rem;
    color:white;
    padding:20px 80px;
}



/* Services */
h2{
    color:rgb(1, 1, 48);
    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);
}
.service_p1{
    text-align: center;
    color:rgb(190, 190, 190);
}
.plans{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(300px,30vw,450px), 1fr));
    gap: 20px;
    padding:50px 20px;
}
.Service-box{
    align-items: center;
    justify-content: center;
    height:100%;
    padding:70px 50px;
    background-color:rgba(219, 219, 219, 0.336);
    border-radius: 30px;
    cursor: pointer;

}
.title-section{
    display:flex;
    flex-direction: row;
    align-items: center;
    margin-bottom:10px;
}
.icon{
    /* width: 50%; */
    height: 10vh;
    margin-right:30px;
    cursor: pointer;
}
h3{
    color:rgb(1, 1, 48);
    text-align: center;
}
.yellow{
    background-color: rgba(255, 230, 148, 0.212);
    

}

.guarantees{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(300px,30vw,450px), 1fr));
    gap: 20px;
    padding:50px 20px;
}

/* 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 */
h1{
  font-family: "Poppins", sans-serif;
}

.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: 900px){
  header{
    display:flex;
    flex-direction: column;
   justify-content: center;
   align-items: center;
  }
}
@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;
  }
.purpose-container{
  height: fit-content;
}
.purpose-layout{
  /* height: 70vh; */
  width:100%;
  display: flex;
   flex-direction: column;
}
#purposeVideo{
  width:50%;
  height:50%;
  /* position:absolute; */
}

}