/* default css start */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  background: linear-gradient(109.6deg, rgba(63, 61, 61) 11.2%, rgb(0, 0, 0, 0.93) 78.9%);
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: left;
}

.header-area {
  background-position: center center;
  background-size: cover;
}


/* default css end */


/* navbar regular css start */
.navbar-area {
  background-color: #ff7f8f;
  border-bottom: 5px solid #000;
}

.site-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

a.site-logo {
  font-size: 26px;
  font-weight: 800;
  font-family: 'Courier New', monospace;
  text-transform: uppercase;
  color: #00A300;
  align-items: center;
  text-decoration: none;
}

.site-navbar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.site-navbar ul li a {
  color: black;
  padding: 20px;
  display: block;
  text-decoration: none;
  text-transform: uppercase;
}

.site-navbar ul li a:hover {
  background-color: black;
  color: white;
}

/* navbar regular css end */


/* nav-toggler css start */
.nav-toggler {
  border: 3px solid #000;
  padding: 5px;
  background-color: transparent;
  cursor: pointer;
  height: 39px;
  display: none;
}

.nav-toggler span,
.nav-toggler span:before,
.nav-toggler span:after {
  width: 28px;
  height: 3px;
  background-color: #000;
  display: block;
  transition: .3s;
}

.nav-toggler span:before {
  content: '';
  transform: translateY(-9px);
}

.nav-toggler span:after {
  content: '';
  transform: translateY(6px);
}

.nav-toggler.toggler-open span {
  background-color: transparent;
}

.nav-toggler.toggler-open span:before {
  transform: translateY(0px) rotate(45deg);
}

.nav-toggler.toggler-open span:after {
  transform: translateY(-3px) rotate(-45deg);
}

/* nav-toggler css start */

/* mobile breakpoint start */
@media screen and (max-width: 767px) {
  .container {
    max-width: 720px;
  }

  /* navbar css for mobile start */
  .nav-toggler {
    display: block;
  }

  .site-navbar {
    min-height: 60px;
  }

  .site-navbar ul {
    display: flex;
    position: absolute;
    width: 100%;
    height: calc(100vh - 60px);
    left: 0;
    top: 60px;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid #444;
    background-color: #000;
    max-height: 0;
    overflow: hidden;
    transition: .3s;
  }

  .site-navbar ul li {
    width: 100%;
    text-align: center;
    color: #fff;
  }

  .site-navbar ul li a {
    padding: 25px;
    color: #fff;
  }

  .site-navbar ul li a:hover {
    background-color: #ff7f8f;
    color: #000;
  }

  .site-navbar ul.open {
    max-height: 100vh;
    overflow: visible;
  }

  .intro-area h2 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  /* navbar css for mobile end */
}

/* mobile breakpoint end */
/* container start */
.container {
  padding: 0 15px;
}

p {
  color: #fff;
  text-align: center;
  font-size: 14px;
}

h1 {
  color: #ff7f8f;
  text-align: center;
}

h2 {
  color: #ff7f8f;
  text-align: center;
}

.row:after {
  content: "";
  display: table;
  clear: both
}

.column-66 {
  float: left;
  width: 66.66666%;
  padding: 20px;
  text-align: center;
}

.column-33 {
  float: right;
  width: 33.33333%;
  padding: 30px;
}

.button {
  border: none;
  color: #000;
  padding: 14px 28px;
  font-size: 16px;
  cursor: pointer;
  background-color: #ff7f8f;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

@media screen and (max-width: 1000px) {

  .column-66,
  .column-33 {
    width: 100%;
    text-align: center;
  }
}

/* container end */

/* contact form start */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-form h2 {
  font-size: 30px;
  margin-bottom: 40px;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
  color: #ff7f8f;
}

label {
  display: block;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  border-bottom: 2px solid #ccc;
  font-size: 16px;
  margin-bottom: 20px;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus {
  border-bottom: 2px solid #ff7f8f;
  outline: none;
}

textarea#message {
  width: 100%;
  height: 150px;
}

.g-recaptcha {
  margin-bottom: 20px;
}

.btn-submit {
  display: block;
  margin: 0 auto;
  padding: 10px 20px;
  background-color: #ff7f8f;
  color: #000;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  text-align: center;
}

.btn-submit:hover {
  background-color: #ff9f7f;
}

/* contact form end */


#about {
  border: 2px solid #ff7f8f;
  border-radius: 10px;
  padding: 30px;
  align-items: left;

}

#about h2 {
  margin: 0 0 20px;
}

#about p {
  font-size: 18px;
  line-height: 1.5;
}
.container1 {
  width: auto;
  margin: 0 auto;
  padding: 20px;
}

footer {
  background: linear-gradient(109.6deg, rgba(0, 0, 0, 0.93) 11.2%, rgb(63, 61, 61) 78.9%);
  color: #fff;
  padding: 40px;
}

.container2 {
  width: auto;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column {
  flex-basis: 30%;
  margin-bottom: 20px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ff7f8f;
}

.footer-column ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
  color: #fff;
}

.social-icons {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.social-icons li {
  margin-right: 10px;
}

.social-icons li:last-child {
  margin-right: 0;
}

.social-icons a {
  color: #ff7f8f;
  text-decoration: none;
}

.fa-facebook {
  color: #3B5998;
}

.fa-youtube {
  color: #bb0000;
}

.fa-whatsapp {
  color: #25D366;
}

a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  color: #ff7f8f;
  text-decoration: none;
}

a:active {
  color: #f0f0f0;
  ;
  text-decoration: none;
}

.faq-section {
  max-width: auto;
  margin: 0 auto;
  padding: 40px;
  color: #fff;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-question {
  cursor: pointer;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.faq-answer {
  display: none;
  text-align: center;
  color: #ff7f8f;
}

.faq-item.active .faq-answer {
  display: block;
}

.price-cards {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.price-card {
  flex-basis: calc(50% - 20px);
  margin: 10px;
  padding: 20px;
  border-radius: 5px;
  background: linear-gradient(to bottom, #ff9f7f, #ff7f8f);
  color: #fff;
  text-align: center;
}

.price-card img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom:20px;
}

.price-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.price-card p {
  font-size: 16px;
  margin-bottom: 10px;
}

.price-card .price {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.price-card .btn {
  display: inline-block;
  padding: 10px 20px;
  font-weight: 700;
  background-color: #fff;
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.price-card .btn:hover {
  background-color: #ff7f8f;
  color: #fff;
}

@media (max-width: 800px) {
  .price-card {
    flex-basis: calc(100% - 20px);
  }
}

.container3 {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  box-shadow: 0 0 20px rgba(246, 108, 136, 0.1);
  border-radius: 5px;
}

.container4 {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background-color: #444;
  box-shadow: 0 0 20px rgba(246, 108, 136, 0.1);
  border-radius: 5px;
  text-align: center;
}

.container4 i {
  color: #ff7f8f;
}

.image-container {
  text-align: center;
  margin-bottom: 20px;
}

.image-container img {
  max-width: 100%;
  height: auto;
}

.project-list {
  margin-top: 20px;
  list-style: none;
  padding: 0;
}

.project-list li {
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border-radius: 5px;
  padding: 20px;
}

.project-title {
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.project-address {
  color: #888;
  text-align: center;
}

.map-container {
  height: 300px;
  margin-top: 20px;
}

#map {
  height: 100%;
  width: 100%;
}

.card, iframe {
    display:grid;
    flex-direction: column;
    width:fit-content;
    height:fit-content;
    align:center;
}

.container-box {
  border: 2px solid #ff7f8f;
  padding: 20px;
  background: linear-gradient(109.6deg, rgba(0, 0, 0, 0.93) 11.2%, rgb(63, 61, 61) 78.9%);
}
.review {
  margin-bottom: 20px;
}
.author {
  font-weight: bold;
}
.rating {
  color: #FFC107;
}
.stars {
  margin-top: 5px;
}
.stars span {
  font-size: 20px;
}

.BorderColorChangeElement {
  	animation: BorderColorChange 1s ease-out 0s infinite alternate none running;
}
@keyframes BorderColorChange{
  	0%  { border: 10px solid #ffc0cb;}
  	100%  { border: 10px solid #ff69b4;}
}