@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body.no-scroll {
  overflow: hidden;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

.home {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.image-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1s ease-in-out, transform 2s ease-in-out;
}

.image-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.home .content {
  position: absolute;
  top: 30%;
  left: 10%;
  transform: translateY(-50%);
  z-index: 10;
  color: #fff;
}

.sliding-text {
  font-size: 3.5rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.sliding-text .text-item {
  display: none;
}

.sliding-text .text-item.active {
  display: block;
}

.sliding-text span {
  color: #131729;
  font-weight: bold;
}

.media-icons {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.media-icons a {
  color: white;
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}

.media-icons a:hover {
  transform: scale(1.3);
}

.media-icons a:nth-child(1):hover {
  color: #3b5998;
}

.media-icons a:nth-child(2):hover {
  color: #e4405f;
}

.media-icons a:nth-child(3):hover {
  color: #FF0000;
}

.cursor {
  font-weight: bold;
  animation: blink 0.7s infinite;
}

/* -------------------------- Style for overlay info cards ------------------------------ */
#slideOverlay {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 5;
  padding: 10px;
  flex-wrap: wrap;
  width: 100%;
  justify-items: center;
  align-items: center;
  margin: auto;
}

.slideOverlay-centre {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}

#slideOverlay .card {
  background-color: #3b5998;
  color: white;
  padding: 40px;
  width: 400px;
  margin: auto;
  text-align: center;
}

#slideOverlay .card-second {
  background-color: #dad9d9;
  color: #000;
}

#icon-bg {
  background-color: #262626;
  display: block;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  margin: auto;

}

#slideOverlay .card span .icon {
  font-size: 30px;
  color: white;
  margin-top: 10px;
}

#slideOverlay .card h2 {
  font-weight: bold;
  margin: 10px 0px;
}

#slideOverlay .card h3 {
  margin: 10px 0px;
}

#slideOverlay .call-button {
  display: inline-block;
  margin-top: 8px;
  background-color: #fb8c00;
  color: white;
  padding: 6px 10px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.hidden-on-start {
  display: none;
}

@media(max-width:1025px) {
  #slideOverlay .card {
    padding: 20px 0px;
    margin: 0px;
    width: 300px;
  }
}

@media (min-width: 300px) and (max-width:919px) {
  #slideOverlay {
    top: 11%;
  }

  #slideOverlay .card {
    padding: 20px 0px;
    margin: auto;
    width: 300px;
  }

  .slideOverlay-centre {
    width: 500px;
    margin: auto;
  }

  .card-third {
    display: none;
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}
.services-section {
  padding: 50px 10px;
  background-color: #fff;
}

.home {
  position: relative;
  z-index: 1;
}


.services-section {
  position: relative;
}

/* ----------------------- Floating buttons contact WA  Chatbot ------------------------ -*/
.floating-buttons {
  position: fixed;
  bottom: 40px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 14;
  transition: transform 0.2s ease;
  animation: bounce 2s infinite;
}

.floating-buttons .fab {
  background-color: #25D366;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);

}

.floating-buttons .chat{
  background-color: #ff9100;
}

.chat-img{
  width: 50px;
}

.chatbot-box {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 320px;
  max-height: 80vh;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 9999;
}

.chat-header {
  background-color: #ff9100;
  color: #fff;
  padding: 12px;
  font-weight: bold;
  text-align: center;
}

.chat-body {
  padding: 9px;
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.chat-footer {
  padding: 8px;
  background: #f5f5f5;
}

.message {
  max-width: 70%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.4;
}

.bot {
  background-color: #cd9e4d;
  align-self: flex-start;
  border-bottom-left-radius: 0;
}

.user {
  background-color: #ff9100;
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 0;
}

.chat-options button {
  margin: 6px 6px 0 0;
  padding: 8px 14px;
  border: none;
  border-radius: 6px;
  background-color: #ff9100;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s ease;
}

.chat-options button:hover {
  background-color: #e67e00;
}

@media screen and (max-width: 380px) {
  .chatbot-box {
    width: 95%;
    right: 2.5%;
    font-size: 13px;
  }

  .chat-options button {
    font-size: 12px;
    padding: 7px 10px;
  }

  .message {
    font-size: 12px;
    padding: 7px 10px;
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.floating-buttons .fab.call {
  background-color: #007BFF;
}

.floating-buttons .fab:hover {
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .floating-buttons .fab {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}

/* Text animation styles */
.sliding-text {
  position: relative;
  display: inline-block;
  height: 150px;
  overflow: hidden;
}

#sliding-text-container {
  display: none;
}

.text-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.text-block:nth-child(1) {
  animation: textAnimation 15s infinite;
}

.text-block:nth-child(2) {
  animation: textAnimation 15s infinite 5s;
}

.text-block:nth-child(3) {
  animation: textAnimation 15s infinite 10s;
}

@keyframes textAnimation {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  10% {
    opacity: 1;
    transform: translateY(0);
  }

  30% {
    opacity: 1;
    transform: translateY(0);
  }

  40% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

@media (max-width: 1040px) {
  header {
    padding: 12px 20px;
  }

  .sliding-text {
    font-size: 2.5rem;
  }

  .home .content {
    width: 90%;
  }

  .home .media-icons {
    right: 15px;
  }

}

@media (max-width: 768px) {
  .home .content h1 {
    font-size: 2em;
    line-height: 60px;
  }
}

@media (max-width: 560px) {

  .sliding-text {
    font-size: 1.5em;
  }

  .home .content h1 {
    line-height: 50px;
  }
}

@media (max-width: 768px) {
  .navigation-items a.call-now-btn {
    margin-left: 0;
    margin-top: 10px;
    display: block;
    text-align: center;
    width: 80%;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width:430px) {
  .home .content {
    left: 10%
  }
}

/* --------------------------- About Section ---------------------------- */

.about {
  background-color: #f39c12;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 0 auto;
  padding: 0px 7% 0px;
  background: linear-gradient(135deg, #f9f9f9, #fb8c00);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-top: -5px;
  padding-top: 50px;
  padding-bottom: 25px;
  font-size: large;
  font-weight: bold;
}

.about .content {
  max-width: 600px;
  /* color: rgba(55, 160, 221, 0.858); */
  color: #333;
}

.about .content h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  position: relative;
  animation: fadeInUp 1s ease-in-out;
}

.about .content h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #14ff72cb;
  border-radius: 2px;
}

.about .content p {
  line-height: 1.3;
  margin-bottom: 15px;
  animation: fadeInUp 1.2s ease-in-out;
}

.about .content .btn {
  display: inline-block;
  padding: 15px 15px;
  background-color: #2c7de8cb;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  animation: fadeInUp 1.4s ease-in-out;
}

.about .content .btn:hover {
  background-color: #e2ad6c;
  transform: translateY(-3px);
}

.about .image {
  flex: 1;
  max-width: 400px;
  border-radius: 15px;
  overflow: hidden;
  animation: fadeInRight 1s ease-in-out;
}

.about .image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  transition: transform 0.5s ease;
}

.about .image:hover img {
  transform: scale(1.05);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1025px) {
  .about {
    flex-direction: column;
    text-align: center;
    padding: 40px 5%;
  }

  .about .content h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about .image {
    max-width: 100%;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .about .content h3 {
    font-size: 1.8rem;
  }

  .about .content p {
    font-size: 1rem;
  }

  .about .content .btn {
    padding: 8px 20px;
    font-size: 0.8rem;
  }
}

/*  --------------------------- About - Gallery ----------------------------- */
.horizontal-gallery {
  width: 600px;
  height: 500px;
  overflow: hidden;
  position: relative;
  margin-left: 20px;

}

.horizontal-gallery::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 100%;
  background: linear-gradient(90deg, rgb(243, 241, 241) 0%, rgba(249, 249, 249, 0) 100%);
  z-index: 10;
  pointer-events: none;
}

.gallery-track {
  display: flex;
  height: 100%;
  position: absolute;
  left: 0;
  align-items: flex-start;
  gap: 35px;
  animation: scroll 20s linear infinite;
  padding-left: 20px;
  padding-right: 20px;
}

.gallery-item {
  flex: 0 0 350px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}


.gallery-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0;
}

.review {
  padding: 12px;
  background: rgb(185, 208, 255);
  margin-top: 10px;
  border-radius: 5px;
  height: auto;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}



@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-350px * 3));
  }
}

.horizontal-gallery:hover .gallery-track {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .horizontal-gallery {
    width: 100%;
    margin-left: 0;
  }

  .gallery-item {
    flex: 0 0 300px;
  }

  @media (max-width: 768px) {
    .gallery-item {
      gap: 10px;
    }
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(calc(-300px * 3));
    }
  }
}

/* ----------------------------- Services Section ----------------------------- */
.services-section {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #f9f9f9;
  padding-bottom: 4rem;
  padding-top: 100px
}

.services-heading {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 3rem;
  color: #333333;
}

.services-container {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 2rem;
}

.service-block {
  position: relative;
  flex: 1;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(97, 130, 219, 0.733);
  transition: transform 0.3s ease;
}

.service-block:hover {
  transform: translateY(-10px);
}

.service-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.service-text {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

.service-overlay {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(197, 210, 254, 0.607);
  color: #080505;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: top 0.3s ease;

}

.service-block:hover .service-overlay {
  top: 0;
}

.overlay-content {
  padding: 1.5rem;
  text-align: center;
  width: 100%;
}

.overlay-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #0c25a5;
}

.overlay-text {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.overlay-button {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background-color: #fff;
  color: #1036c0;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.overlay-button:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .services-container {
    flex-direction: column;
    gap: 2rem;
  }

  .overlay-content {
    padding: 1rem;
  }

  .overlay-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }

  .overlay-text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .overlay-button {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* ------------------ INFINITE SMOOTH SCROLLING GALLERY -------------------------*/
.infinite-gallery {
  padding: 3rem 0;
  overflow: hidden;
  background: linear-gradient(135deg, #f9f9f9, rgba(87, 175, 219, 0.685));

  position: relative;
}

.infinite-gallery h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.2rem;
  color: #333;
}

.gallery-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 3rem;
}

.gallery-scroll {
  display: flex;
  width: max-content;
  animation: scroll-horizontal 40s linear infinite;
  will-change: transform;
}

.gallery-scroll img {
  width: 280px;
  height: 350px;
  object-fit: cover;
  margin: 0 15px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-scroll img:hover {
  transform: scale(1.05);
  z-index: 2;
}

@keyframes scroll-horizontal {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .gallery-scroll img {
    width: 250px;
    height: 180px;
    margin: 0 10px;
  }
}

/* ------------------ Why choose us section   And  Contact Us -------------------- */

:root {
  --primary-color: #0066cc;
  --secondary-color: #0052a3;
  --text-color: #000000;
  --white: #fff;
  --overlay: rgba(16, 15, 15, 0.315);
}

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

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--white);
  overflow-x: hidden;
}

.why-choose-us {
  position: relative;
  min-height: 100vh;
  padding: 80px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-image: url('./images/Random-img/sp-mobile-reparing.png');
  background-size: auto;
  background-position: center;
  background-attachment: fixed;
  z-index: -2;
  transform: translateZ(0);
  will-change: transform;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay);
  z-index: -1;
}

.section-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
}

.content-column {
  flex: 1;
  min-width: 280px;
  margin: 0 10px;

}

.why-choose-us .section-title {
  color: #ffffff !important;
}


.form-column {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  align-self: center;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.divider {
  height: 2px;
  width: 80px;
  background-color: var(--primary-color);
  margin: 15px 0 25px;
}

.intro-text {
  margin-bottom: 30px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.feature {
  display: flex;
  gap: 15px;
  padding: 10px;
  background-color: rgba(14, 13, 13, 0.845);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature:hover {
  background-color: rgba(0, 102, 204, 0.603);
  transform: translateY(-5px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 102, 204, 0.884);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid var(--primary-color);
}

.feature-content {
  flex: 1;
}

.feature-content h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--white);
}

.feature-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  word-wrap: break-word;
}

.callback-form {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.callback-form {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  align-self: center;
}

.error {
  border: 2px solid red !important;
}

.form-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #000000;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-color);
}

.form-control {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  font-size: 0.9rem;
  transition: all 0.3s;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--text-color);
}

.form-control::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: var(--white);
  box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
}

textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

.submit-btn {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .why-choose-us {
    padding: 40px 0 40px;
  }

  .section-title {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    margin-bottom: 10px;
  }

  .form-column {
    max-width: 70%;
    margin-bottom: 20px;
  }

  .parallax-bg {
    background-attachment: scroll;
  }
}

/* review section */
:root {
  --primary-color: #2c7de8;
  --secondary-color: #1a5fb4;
  --text-color: #333;
  --light-bg: #f9f9f9;
  --white: #fff;
  --gray: #eee;
  --dark-gray: #ddd;
}



/* ----------------------- Review Section --------------------------- */
 /* Used as iframe you can find entire review section as separate file */
/* ----------- End of Review ----------------- */

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

/* ------------------------- maps section ------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.maps-section {
  padding: 30px 0;
}

.map-container {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 200px;
  border: none;
}


/* --------------------- Footer Section ------------------- */
.footer-section {
  background-color: #dad9d9;
  color: black;
  font-size: large;
  padding: 50px 0 0;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  max-width: 200px;
  margin-bottom: 20px;
}

.footer-col h4 {
  color: #FF6506;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #2c7de8;
}

.address-hover-blue:hover {
  color: #007BFF;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  text-decoration: none;
  font-size: x-large;
}

.social-icons a:hover {
  opacity: 0.9;
}

.social-icons a:nth-child(1):hover {
  color: #3b5998;
  font-size: xx-large;
}

.social-icons a:nth-child(2):hover {
  color: #e4405f;
  font-size: xx-large;
}

.social-icons a:nth-child(3):hover {
  color: #FF0000;
  font-size: xx-large;
}

/* Contact Info */
.contact-info p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.map-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  margin-bottom: 20px;
}

.map-link img {
  width: 30px;
  height: 30px;
}

.contact-numbers {
  margin-top: 20px;
}

.contact-numbers p {
  margin-bottom: 15px;
}

/* Copyright */
.copyright {
  text-align: center;
  padding: 15px 0;
  margin-top: 50px;
  color: #000;
  border-top: 1px solid #444;
  background-color: #dfe5e8;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
  }

  .map-container iframe {
    height: 300px;
  }
}

/* ------------------------- Nav Bar ------------------------------------ */
header {
  width: 100%;
  padding: 5px 25px 0px 25px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: background 0.4s ease;
}

header.scrolled,
header.white-background {
  background: #dfe5e8;
}

header.scrolled .brand {
  color: white;
}

header.scrolled .navigation-items a {
  color: #f39c12;
}

header.scrolled .menu-btn span {
  background: white;
}


.brand {
  font-size: 24px;
  color: black;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

header.white-background .brand {
  color: white;
}

.menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 22px;
  justify-content: space-between;
}

.menu-btn span {
  height: 3px;
  background: black;
  border-radius: 2px;
  transition: 0.3s;
}

header.white-background .menu-btn span {
  background: white;
}

.menu-btn.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.menu-btn.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.navigation {
  display: flex;
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.navigation-items {
  display: flex;
  gap: 25px;
  align-items: center;
}

.navigation-items a {
  color: #f39c12;
  text-decoration: none;
  font-size: 20px;
  position: relative;
  transition: color 0.3s;
}

header.white-background .navigation-items a {
  color: white;
}

.navigation-items a:hover {
  color: #FF6506;
  font-size: 25px;
}

.navigation-items a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0;
  background: #f39c12;
  transition: width 0.3s ease;
}

.navigation-items a:hover::after {
  color: #FF6506;
  width: 100%;
}

.call-now-btn {
  background-color: #f39c12;
  padding: 6px 12px;
  border-radius: 4px;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

header.white-background .call-now-btn {
  background-color: #f39c12;
  color: #000;
}

.call-now-btn:hover {
  background-color: #FF6506;
}

.call-now-container {
  display: flex;
  align-items: center;
}


.call-now-btn .call-icon {
  display: none;
}

.call-now-btn .call-text {
  display: inline;
}

.brand img {
  width: 270px;
}

/* On screens smaller than 500px, show icon, hide text */
@media (max-width: 500px) {
  .call-now-btn .call-text {
    display: none;
  }

  .call-now-btn .call-icon {
    display: inline;
    font-size: 16px;
    margin-left: 4px;
  }

  .brand img {
    width: 200px;
  }

  header {
    padding: 5px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .menu-btn {
    display: flex;
  }

  .navigation {
    position: fixed;
    top: 95px;
    left: 0;
    width: 100%;
    height: calc(100vh - 95px);
    background: #e7eaec;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .navigation.active {
    transform: translateX(0);
  }

  .navigation-items {
    flex-direction: column;
    gap: 30px;
  }

  .call-now-btn {
    font-size: 14px;
    padding: 6px 12px;
  }

  header.white-background .navigation {
    background: #e7eaec;
  }

  header.white-background .navigation-items a {
    color: #f39c12;
  }

  header.white-background .call-now-btn {
    background-color: #f39c12;
    color: #000;
  }
}
