* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::selection {
  background-color: #E1292B;
  color: #f1f1f1;
}

.container {
  padding: 90px 20px;
}

@media screen and (max-width: 992px) {
  .container {
    padding: 60px 20px;
  }
}
.section-bg {
  background-color: #F2F2F2;
}

.highlight-text {
  color: #E1292B;
  font-weight: bold;
}

h1, h2 {
  font-family: "Crimson Text", serif;
  color: #333;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.4rem;
}

h5 {
  font-size: 1.3rem;
}

h6 {
  font-size: 1.2rem;
}

@media screen and (max-width: 992px) {
  h2 {
    font-size: 1.8rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.4rem;
  }
  h5 {
    font-size: 1.3rem;
  }
  h6 {
    font-size: 1.2rem;
  }
}
i {
  color: red;
  margin-right: 5px;
}

p {
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  color: #333;
  line-height: 1.6;
}

ul {
  padding-left: 15px;
  margin-top: 10px;
  color: #333;
}

ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  list-style: none;
}

ul li i {
  position: absolute;
  left: 0;
  top: 1px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease-in-out;
}

a:hover {
  color: #E1292B;
}

.common-button {
  width: 360px;
  background-color: #E1292B;
  color: #f1f1f1;
  font-weight: 600;
  font-size: 1.4rem;
  font-family: "Crimson Text", serif;
  padding: 15px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
  position: relative;
  animation: live-scale 1.3s infinite;
  box-shadow: 0px 0px 0px 10px rgba(223, 84, 62, 0.7);
}

@media screen and (max-width: 400px) {
  .common-button {
    width: 100%;
    font-size: 1.1rem;
    padding: 5px;
    gap: 10px;
  }
}
@keyframes live-scale {
  0% {
    box-shadow: 0px 0px 0px 0 rgba(223, 84, 62, 0.7);
  }
  50% {
    box-shadow: 0px 0px 0 10px rgba(223, 84, 62, 0.7);
  }
  100% {
    box-shadow: 0px 0px 0px 0 rgba(223, 84, 62, 0.7);
  }
}
.common-button:hover {
  background-color: #f1f1f1;
  color: #E1292B;
  transition: all 0.3s ease-in-out;
}

.common-button:hover i {
  background-color: #E1292B;
  color: #f1f1f1;
}

.bi-telephone {
  background-color: #f1f1f1;
  color: #E1292B;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.bi-telephone:hover {
  background-color: #E1292B;
  color: #f1f1f1;
  transition: all 0.3s ease-in-out;
}

/* ---------------------- Nav section  */
body {
  position: relative;
}

.navbar {
  width: 100%;
  height: 80px;
  background-color: #f1f1f1;
  z-index: 1000;
  position: absolute;
}

.navbar .container {
  padding: 10px;
}

.navbar .logo {
  height: 40px;
}

@media screen and (max-width: 768px) {
  .navbar .logo {
    height: 30px;
  }
}
.green-light {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #00FF00;
  position: relative;
}

.green-light::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid #00FF00;
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
  animation: live 2s ease infinite;
}

@keyframes live {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ----------------------------- Footer */
.footer {
  background-color: #0d1117;
  color: #a1a1a1;
  padding: 40px 0px 70PX;
}

footer p {
  font-size: 0.7rem;
  color: #a1a1a1;
}

footer .nav-link {
  color: #a1a1a1;
  text-decoration: none;
  font-size: 0.8rem;
  padding: 0 10px;
  margin: 0;
  border-right: 1px solid #a1a1a1;
}

footer .nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

footer .nav .nav-link {
  text-align: center;
}

footer .nav-link:last-child {
  border: none;
  padding-right: 0;
}

footer .nav-link:first-child {
  padding-left: 0;
}

footer .nav-link:hover {
  color: #E1292B;
}

.top {
  position: fixed;
  bottom: 3%;
  right: 5%;
  background-color: #E1292B;
  color: #f1f1f1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.top:hover {
  background-color: #f1f1f1;
  color: #E1292B;
  transition: all 0.3s ease-in-out;
}

.top i {
  font-size: 1.3rem;
  color: #F2F2F2;
  margin: 0;
}

.top i:hover {
  color: #E1292B;
}

.call-us {
  bottom: 0;
  background-color: #E1292B;
  color: #f1f1f1;
  text-transform: uppercase;
  padding: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.fixed {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
}

.call-us a {
  color: #f1f1f1;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  animation: zoom-in-zoom-out 2.3s ease infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    scale: 100%;
  }
  50% {
    scale: 120%;
  }
  100% {
    scale: 100%;
  }
}
/* ---------------------- Hero section  */
.hero-section {
  width: 100%;
  min-height: 100vh;
  background: url("/assets/images/banner.jpg") no-repeat center center;
  background-size: cover;
  display: flex;
  position: relative;
  padding-top: 100px;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 768px) {
  .hero-section {
    padding-top: 80px;
  }
}
.hero-content, .features {
  position: relative;
  z-index: 1;
}

h1 {
  font-size: 3.5rem;
  color: #f1f1f1;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.4);
}

.hero-content p {
  color: #f1f1f1;
  letter-spacing: 1px;
}

.bio-text {
  font-size: 1.2rem;
  margin: 20px 0;
  color: #f1f1f1;
  letter-spacing: 2px !important;
}

.star {
  color: #FF9D00;
  font-size: 1.5rem;
}

.star i {
  color: #FF9D00;
  margin-left: 7px;
}

.features .feature-box {
  margin-top: 100px;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features .feature-box i {
  font-size: 1.4rem;
  margin-right: 20px;
  color: #f1f1f1;
}

.features .feature-box p {
  color: #f1f1f1;
  margin-bottom: 0;
  text-align: start;
}

@media screen and (max-width: 992px) {
  h1 {
    font-size: 2.3rem;
  }
  .bio-text {
    font-size: 1rem;
  }
  .features .feature-box {
    margin-top: 16px;
  }
  .features .feature-box p {
    font-size: 0.9rem;
  }
  .features .feature-box i {
    margin-right: 10px;
    font-size: 1.2rem;
  }
}
/* ---------------------- Info  section  */
.card-available {
  max-width: 330px;
}

.card-available img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

.card-available .call-now-btn {
  background-color: #E1292B;
  color: #f1f1f1;
  font-weight: 500;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 30px;
  width: 100%;
}

/* ---------------------- Services  section  */
.services-section {
  background-color: #F2F2F2;
}

.category-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 50px 0 15px;
}

.service-card {
  display: flex;
  gap: 15px;
  align-items: center;
  background: #fff;
  padding: 15px 20px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  height: 100%;
}

.service-icon {
  font-size: 30px;
  color: #000;
}

.service-card-title {
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* ---------------------- Get Started  section  */
.step {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  margin-bottom: 60px;
}

.step-circle {
  width: 30px;
  height: 30px;
  padding: 5px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #E1292B;
  z-index: 1;
  position: relative;
}

.step-circle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: 0;
  width: 2px;
  height: 240px;
  background: #E1292B;
  transform: translateX(-50%);
}

.step-circle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: 0;
  width: 2px;
  height: 250px;
  background: #E1292B;
  transform: translateY(-250px) translateX(-50%);
}

.step:nth-child(3) .step-circle::before, .step:nth-child(1) .step-circle::after {
  display: none;
}

@media screen and (max-width: 768px) {
  .step {
    flex-direction: column;
    align-items: center;
  }
  .step-circle::after, .step-circle::before {
    display: none;
  }
}
.step-circle div {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #E1292B;
}

.step-box {
  max-width: 400px;
  border-radius: 5px;
}

.step-title i {
  font-size: 2rem;
  color: #000;
  margin-right: 15px;
}

/* ------------------------------- How it work section*/
.how-it-works-section {
  background-color: #F2F2F2;
}

/* ------------------------------- Why Choose Us? section*/
.benefit-card {
  background-color: #fff;
  height: 100%;
  position: relative;
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
}

.benefit-card i {
  color: green;
  font-size: 1.2rem;
  margin-left: auto;
  position: absolute;
  bottom: 10px;
  right: 10px;
  transition: transform 0.3s ease;
}

.cta-banner {
  margin-top: 120px;
  color: #fff;
  border-radius: 10px;
  background: linear-gradient(to right, #fff, #E1292B);
  position: relative;
  box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.5);
}

.cta-banner img {
  max-height: 550px;
  position: absolute;
  right: 20px;
  bottom: 0;
}

.cta-text {
  color: #333;
}

@media screen and (max-width: 900px) {
  .cta-banner {
    margin-top: 60px;
  }
  .cta-banner img {
    max-height: 400px;
  }
}
/* -------------------------- About Page */
.about-hero-section {
  width: 100%;
  height: 30vh;
  background: url("/assets/images/bg.jpg") no-repeat center center;
  background-size: cover;
  display: flex;
  position: relative;
  padding-top: 200px;
}

.about-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

@media screen and (min-width: 768px) {
  .about-hero-section {
    padding-top: 200px;
    height: 60vh;
  }
}
/* ------------------------------------- Contact Page */
.contact-box {
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
}
.contact-box .form-control {
  padding: 10px;
  border-radius: 3px;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
}

.submit-btn {
  background-color: #E1292B;
  border: none;
  color: #f1f1f1;
  padding: 10px 30px;
  border-radius: 5px;
  font-weight: bold;
  float: right;
}

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

.contact-us-div a {
  margin-bottom: 20px !important;
}

/* Form Response Message */
#contactForm button:disabled {
  opacity: 0.5;
}

#responseMsg {
  width: 100%;
  font-size: 16px;
}

.error,
.processing {
  border-radius: 3px;
  margin: 10px auto;
  padding: 10px;
  color: #b94a48;
  background-color: #f2dede;
  border: 1px solid rgba(185, 74, 72, 0.3);
}

.success {
  background-color: 3px;
  margin: 10px auto;
  padding: 10px;
  color: #468847;
  background-color: #dff0d8;
  border: 1px solid #d6e9c6;
}

/*# sourceMappingURL=style.css.map */
