*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: all 0.3s linear;
    outline: none;
}
*::selection{
    background-color: #0000FF;
    color: #000;
}
body{
    font-family: 'Roboto Condensed', sans-serif;
}
nav{
    width: 100%;
    padding: 2% 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    color: #FFF;
}
nav .links{
    padding-left: 0;
}
nav .links li{
    display: inline-block;
    margin-left: 1rem;
    font-size: 1.5rem;
}
nav .links li a{
    color: #FFF;
}
.links .active{
    color: #0000FF;
}
nav .links li a:hover{
    color: #0000FF;
}
header .content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.about{
    width:  100%;
    height: fit-content;
    background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)),
    url(bg2.jpeg);
    background-position: center;
    background-size: cover;
}
.about .row{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 2% 6%;
}
.about .row .image{
    flex: 1 2 20rem;
    padding: 2rem;
}
.about .row .image .mySlides{
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -0.5%);
    text-align: center;
}
.about .row .image img{
    width: 100%;
    height: 500%;
    object-fit: center;
}
.about .row .content{
    flex: 1 1 40rem;
    padding: 2rem;
    text-align: center;
}
.about .row .content h1{
    font-size: 3rem;
    color: #fff;
    margin-bottom: 3rem;
}
.about .row .content h2{
    background-color:#0000ff;
    border-radius: 100%;
    font-size: 2rem;
    color: #000;
    margin-bottom: 1rem;
}
.about .row .content h4{
    line-height: 1.7;
    font-size: 1.8rem;
    color: #0000ff;
}
.about .row .content p{
    line-height: 1.7;
    font-size: 1.7rem;
    color: #fff;
    margin-bottom: 1.0rem;
}
.about .row .content h3{
    line-height: 1.7;
    font-size: 1.7rem;
    color: #fff;
    text-decoration: underline;
    margin-bottom: 1.0rem;
}
.about .row .content h3:hover{
    color: #0000ff;
}

/*
.about .row .content .contact-form input{
    line-height: 2.0;
    font-size: 1.2rem;
    background-color: #000;
    border: 0.3rem solid #0000ff;
    border-radius: 0.5rem;
    color: #FFF;
    margin-bottom: 0rem;
}

.about .row .content .contact-form textarea{
    line-height: 3.0;
    font-size: 1.2rem;
    background-color: #000;
    border: 0.3rem solid #0000ff;
    border-radius: 0.5rem;
    color: #FFF;
}

.about .row .content .contact-form button{
    padding: 0.5rem 1.5rem;
    background-color: #000;
    border: 0.3rem solid #0000ff;
    color: #0000FF;
    margin-top: 1.0rem;
    cursor: pointer;
    border-radius: 0.5rem;
    font-size: 1rem;
    margin-bottom: 1.0rem;
}

.btn{
    padding: 0.5rem 1.5rem;
    background-color: transparent;
    border: 0.3rem solid #0000ff;
    color: #0000FF;
    margin-top: 1.8rem;
    cursor: pointer;
    border-radius: 0.5rem;
    font-size: 2rem;
}
.btn:hover{
    background-color: #fff;
    color: #000;
}
*/
/* Contact Form Container */
.about .row .content .contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.about .row .content .contact-form input::placeholder,
.about .row .content .contact-form textarea::placeholder {
    font-family: 'Roboto Condensed', sans-serif; /* match your body font */
    color: #ccc; /* or any color that fits your design */
    font-size: 1.2rem;
    text-transform: none;
    opacity: 1; /* make sure placeholder is fully visible */
}


/* Input Fields */
.about .row .content .contact-form input,
.about .row .content .contact-form textarea {
  font-family: 'Roboto Condensed', sans-serif; /* match your body font */
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1.2rem;
  text-transform: none !important;
  background-color: #111;
  border: 0.2rem solid #0000ff;
  border-radius: 0.5rem;
  color: #fff;
}

/* Textarea Specifics */
.about .row .content .contact-form textarea {
  min-height: 6rem;
  resize: vertical;
  line-height: 1.6;

}

/* Submit Button */
.about .row .content .contact-form button {
  padding: 0.75rem 1.5rem;
  background-color: #000;
  border: 0.3rem solid #0000ff;
  color: #0000FF;
  border-radius: 0.5rem;
  font-size: 1.2rem;
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  align-self: flex-start;
  cursor: pointer;
  transition: all 0.3s ease;
    display: block;

}

.about .row .content .contact-form button:hover {
  background-color: #fff;
  color: #000;
}

/* Button + Form on Small Screens */
@media (max-width: 600px) {
  .about .row .content .contact-form button {
    width: 100%;
    font-size: 1.3rem;
    align-self: stretch;
  }
}

/* Optional: Better focus state */
.about .row .content .contact-form input:focus,
.about .row .content .contact-form textarea:focus {
  outline: none;
  border-color: #dae4f1;
  background-color: #292929;
}


.google-reviews {
  background-color: #000;
  padding: 2rem;
  text-align: center;
  color: #fff;
}

.google-reviews h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #0000FF;
}

.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


footer{
    color: #000;
    padding: 2rem;
    text-align: center;
    background-color: #0000ff;
    font-size: 1.0rem;
}