@import url("https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&display=swap");

/* Start Global Rules */
:root {
  --main-color: #08526B;
  --dark-color: #081218;
  --text-color: #666;
  --white-color: #fff;

  --main-transition: all 0.4s;
}
body {
  font-family: "Alexandria", sans-serif;
}

.call-btn {
  background-color: var(--main-color);
  color: var(--white-color);
  font-weight: 500 !important;
  padding: 10px 30px;
  border-radius: 100px;
  box-shadow: 0 1px 30px var(--main-color);
}
.call-btn:hover {
  color: var(--white-color);
  background-color: var(--main-color);
  box-shadow: 0 1px 50px var(--main-color);
}

p {
  color: var(--text-color) !important;
}
/* End Global Rules */

/* Start Navbar */
.top-bar {
  background: #081218; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #08526B,
    #081218
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #08526B,
    #081218
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  height: 10px;
  width: 100%;
}
.navbar {
  background-color: var(--main-color);
}
.navbar .navbar-toggler {
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
  font-size: 30px;
}
.navbar .navbar-nav .nav-link {
  padding: 10px 20px;
  color: var(--dark-color);
  font-size: 15px;
  font-weight: normal;
  border: solid 1px transparent;
  border-radius: 100px;
}
.navbar .navbar-nav .nav-link:hover {
  border: solid 1px var(--dark-color);
  color: var(--main-color);
}
@media (max-width: 768px) {
  .call-btn {
    margin-top: 20px;
  }
}
/* End Navbar */

/* Start Showcase */
.showcase {
  padding: 30px 0;
  background-color: #0040ff05;
}
.showcase h1 {
  font-size: 3em;
  font-weight: 500;
  background: linear-gradient(45deg, #08526B, #081218);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding: 10px 0;
}
.showcase .hotline {
  color: var(--dark-color) !important;
  padding: 10px 15px !important;
  border-radius: 100px;
}
.showcase .call-btn {
  padding: 10px 50px;
}
@media (max-width: 768px) {
  .showcase h1 {
    font-size: 1.7em;
    text-align: center;
  }
  .showcase p {
    font-size: 18px;
    text-align: center;
  }
  .showcase .hotline {
    font-size: 40px;
  }
}
/* End Showcase */

/* Start About */
.about {
  padding: 50px 0;
}
.about .fa-check-double {
  font-size: 3em;
  background: linear-gradient(45deg, #08526B, #081218);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding: 10px 0;
}
.about h2 {
  color: var(--dark-color);
  font-size: 35px;
  font-weight: normal;
}
.about h3 {
  color: var(--main-color);
  font-size: 25px;
  font-weight: normal;
  padding-top: 30px;
}
.about h4 {
  color: var(--dark-color);
  font-size: 20px;
  font-weight: normal;
  padding-top: 30px;
}
.about p {
  font-weight: 300;
}
.about .box {
  background-color: var(--white-color);
  border-radius: 30px;
  padding: 15px 20px;
  box-shadow: 0 1px 20px #eee;
  min-height: 300px;
  margin-top: 30px;
  transition: var(--main-transition);
}
.about .box:hover {
  box-shadow: 0 1px 30px #08526B23;
}
.about i {
  color: var(--main-color);
  font-size: 50px;
}
@media (max-width: 768px) {
  .about h2 {
    color: var(--dark-color);
    font-size: 30px;
    font-weight: normal;
  }
}
/* End About */

/* Start Services */
.services {
  padding: 100px 0;
}
.services h2 {
  font-size: 4em;
  font-weight: 500;
  background: linear-gradient(45deg, #08526B, #081218);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 10px 0;
}
.services .box {
  padding: 10px;
  padding-top: 20px;
}
.services .box h3 {
  color: var(--dark-color);
  font-size: 25px;
  font-weight: 500;
  padding-top: 30px;
}
.services .box ul {
  list-style-position: inside;
}
.services .box li {
  color: var(--text-color);
}
/* End Services */

/* Start Services Area */
.services-area {
  background: var(--dark-color); /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    var(--main-color),
    var(--dark-color)
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    var(--main-color),
    var(--dark-color)
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  padding: 100px 0;
}
.services-area > * {
  color: var(--white-color) !important;
}
.services-area p {
  color: var(--white-color) !important;
}
.services-area h2 {
  font-size: 3em;
  font-weight: 500;
  padding: 20px 0;
}
/* End Services Area */

/* Start Testimonials */
.testimonials {
  padding: 100px 0;
  background-color: #08526B;
  background-image: url("../images/feedback.png");
  background-repeat: no-repeat;
  background-size: 25%;
  background-position: top right;
}
.testimonials h2 {
  font-size: 3em;
  font-weight: 500;
  color: var(--white-color);
  padding: 10px 0;
}
.testimonial-container {
  max-width: 600px;
  margin: auto;
  background: #fff;
  padding: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}

.testimonial {
  display: none;
  animation: fade 1s ease-in-out;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial.active {
  display: block;
}

.customer-name {
  font-weight: bold;
  color: #081218;
  margin-top: 10px;
}

.buttons {
  margin-top: 15px;
}

.btn-testimonials {
  cursor: pointer;
  padding: 8px 15px;
  margin: 5px;
  border: none;
  background: linear-gradient(45deg, #08526B, #081218);
  color: white;
  font-size: 16px;
  border-radius: 5px;
}

.btn-testimonials:hover {
  opacity: 0.8;
}
/* End Testimonials */

/* Start Contact */
.contact {
  padding: 100px 0;
}
.contact h2 {
  font-size: 3em;
  font-weight: 500;
  background: linear-gradient(45deg, #08526B, #081218);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 10px 0;
}
.contact i {
  background: linear-gradient(45deg, #08526B, #081218);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.contact ul li {
  text-align: center;
  background-color: var(--dark-color);
  color: var(--white-color);
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .contact h2 {
    font-size: 28px;
  }
  .contact ul li {
    border-radius: 5px;
  }
}
/* End Contact */

/* Start Footer */
footer {
  background: #081218; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #08526B,
    #081218
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #08526B,
    #081218
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  padding: 20px 15px;
  color: var(--white-color);
}
/* End Footer */

/* Start Buttons */
/* bottom call btn */
.bottom-call-btn {
  background-color: green;
  color: white;
  width: 100%;
  padding: 15px 10px;
  text-decoration: none;
  text-align: center;
  font-size: 20px;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: none;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .bottom-call-btn {
    display: flex;
  }
}
/* End Buttons */
