@font-face {
  font-family: "Myriad Pro";
  src: url("fonts/myriad-pro.woff2") format("woff2"),
    url("fonts/myriad-pro.woff") format("woff"),
    url("fonts/myriad-pro.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: "Myriad Pro", Arial, sans-serif;
  line-height: 1.6;
  color: #fff;
  background-color: #000000;
  /* overflow: hidden; */
}
.fav_icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.main_section {
  /* background: linear-gradient(rgba(0, 0, 0,0.7), rgba(247, 31, 31, 0), rgba(22, 50, 87, 0)); */

  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));

  object-fit: contain;
  background-size: contain;
}

/* header section */
a {
  text-decoration: none !important;
}

.header-section {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent; /* Default background */
  transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transitions */
}

.header-section.scrolled {
  background-color: black; /* Background when scrolling up */
}

.header-section.hidden {
  transform: translateY(-100%); /* Hide the header */
}

.wrapper {
  gap: 20px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-around;
  flex-direction: row;
}

.container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 100px;
  max-width: 120px;
  /* height: 70px; */
}

nav {
  display: flex;
  gap: 20px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  font-size: 16px;
  font-weight: 500;
  color: #d1d1d1;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #af5a21;
}

nav ul li.active a {
  color: #af5a21;
  /* Highlight color for active menu item */
}

.nav-bar {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.nav-bar span {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
}

nav .menu-header .close-btn {
  display: none;
}

@media (max-width: 940px) {
  nav ul {
    flex-direction: column;
    margin-top: 20px;
  }

  nav {
    width: 100%;
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    background: #000;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    transition: right 0.3s ease;
  }

  nav.show {
    right: 0;
  }

  nav .menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }

  nav .menu-header .close-btn {
    display: block;
    font-size: 30px;
    color: #e1e1e1;
    cursor: pointer;
    background: none;
    border: none;
    position: absolute;
    right: 5px;
    top: 10px;
  }

  .nav-bar {
    display: flex;
  }

  .right-side {
    display: none;
  }

  .container {
    max-width: 940;

    /* padding: 0 10px; */
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .logo img {
    width: 75px;
    max-width: 125px !important;
  }
}
/* main page section */

/* Video Section */
.video_section {
  /* background-color: #2e2e2e; */
  position: relative;
  width: 100%;

  /* margin-top: -100px; */
}

.banner_video {
  position: relative;
  /* background: #fff; */
}

.video_container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height:800px;
  overflow: hidden;

  background-size: cover;
  /* border-bottom-left-radius: 200px;
  border-bottom-right-radius: 200px; */
}

.video_container_about {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 82%)),
    url("../images/banner/banner10.jpg") repeat center;
  background-size: cover;
}

.video_container_contact {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/banner/banner8.jpg") repeat center;
  background-size: cover;
}

.video_player {
  width: 100%;
  height: 100%;
  opacity: 0.5;
  object-fit: cover;
}
.banner-img {
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.video_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 10;
}

.video_content {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
}
.sub-content {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.line {
  width: 80px;
  height: 2px;
  background: rgb(255, 255, 255);
}

.video_content h3 {
  letter-spacing: 6.2px;
  font-size: 2rem;
  font-weight: 300;
  font-family: "Myriad Pro", Arial, sans-serif;
}

.video_content h1 {
  line-height: 1.3;
  font-size: 4rem;
  font-weight: bold;
  font-family: "Myriad Pro", Arial, sans-serif;
  /* margin-bottom: 1rem; */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.video_content p {
  width: 70%;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.cta-button {
  display: inline-block;
  /* padding: 0.75rem 1.5rem; */
  padding: 0.5rem 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  background-color: #1c2c7a;
  border: 0;
  /* border-radius: 20px; */
  cursor: pointer;
  text-transform: capitalize;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.cta-button:hover {
  background-color: #af5a21;
  transform: translateY(-3px);
}
.cta-button.active {
  background-color: #af5a21;
}
/* Carousel Container */
#carouselExample {
  width: 100%;
  height: 100vh;
  min-height: 900px;
}

@media (max-width: 940px) {
  .video_content h3 {
    letter-spacing: 2.2px !important;

    font-size: 1.5rem !important;
  }

  .line {
    width: 40px !important;
  }

  .sub-content {
    display: flex;
    gap: 15px !important;
  }

  .video_content h1 {
    font-size: 2.5rem;
  }
  .video_content p {
    width: 100%;
  }
  .video_content {
    top: 50%;
    left: 30%;
    transform: translate(-20%, -25%);
  }
}

@media (max-width: 768px) {
  .video_container {
    height: 80% !important;
    min-height: 600px;
    /* border-bottom-left-radius: 50px !important;
    border-bottom-right-radius: 50px !important; */
  }

  .video_content h3 {
    font-size: 1.3rem !important;
  }

  .video_content h1 {
    font-size: 1.8rem;
  }

  .video_content p {
    font-size: 1rem;
  }
  #carouselExample {
    min-height: 600px;
    max-height: 700px;
  }
}

/* About Section */
.about_section {
  padding: 4rem 2rem;
  text-align: center;
  display: flex;
  align-items: center;
}
.about_section img {
  width: 100%;
}
.about_container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;

  border-radius: 10px;
}

.about_content {
  gap: 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

h4 {
  color: #fff;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 500;
  font-family: "Myriad Pro", Arial, sans-serif;
  line-height: 1.5;
}

.about_content h4 {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 10px;
  margin-bottom: 25px;
}

.about_content p {
  font-size: 17px;
  color: #555;
  color: #fff;
  width: 90%;
  font-weight: 400;
  font-family: "Myriad Pro", Arial, sans-serif;
  line-height: 1.5;
}
@media (max-width: 940px) {
  .about_content p {
    font-size: 16px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .about_section {
    padding: 4rem 2rem 0rem;
    flex-direction: column;
  }

  h4 {
    font-size: 1.4rem;
  }
  .about_container {
    padding: 0rem;
  }
  .about_content h1 {
    font-size: 2rem;
  }
  .about_content p {
    width: 100%;
    font-size: 15px;
    text-align: justify;
    font-size: 13px;
  }

  .about_content {
    align-items: center !important;
    padding: 20px 10px;
  }
}
/* service  Section */
.service_section {
  padding: 4rem 2rem;
  text-align: center;
  /* background: #fff; */
}

.service_container {
  display: flex;
  flex-direction: column;
  /* max-width: 1200px; */
  margin: 0 auto;
  /* padding: 2rem; */
  /* background: #fff; */
  border-radius: 10px;
  align-items: center;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}

.service_content_row {
  /* max-width: 1200px; */

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.service_content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service_content p {
  width: 70%;
}

.swiper-container {
  display: flex;
  justify-content: center;
}

.card-wrapper {
  display: flex;
  /* max-width: 1100px; */
  margin: 0 49px 15px;
  padding: 20px 20px;
  overflow: hidden;
  justify-content: flex-end;
  align-items: center;
}

.card-list .card-item {
  list-style: none;
  text-align: left;
}

.card-list .card-item .card-link {
  user-select: none;
  display: block;
  background: #af5a21;
  position: relative;
  left: 5%;
  padding: 18px;
  border-radius: 12px;
  text-decoration: none;
  border: 2px solid transparent;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
  transition: 0.2s ease;
}

.card-list .card-item .card-link:active {
  cursor: grabbing;
}

.card-list .card-item .card-link:hover {
  /* border-color: #5372f0; */
  /* zoom: 2%; */
  transform: translate(skew(1));
}

.card-list .card-link .card-image {
  width: 100%;
  aspect-ratio: 16 / 12;
  object-fit: cover;
  /* border: 1px solid #d4d4d4; */
  border-radius: 10px;
}

.card-list .card-link .badge {
  color: #dcdcdc;
  margin: 16px 0 18px;
  /* padding: 8px 16px; */
  text-transform: capitalize;
  padding: 0;
  font-weight: 500;
  text-align: left;
  font-size: 1.5rem;
  /* background: #dde4ff; */
  width: fit-content;
  border-radius: 50px;
}
.product-price {
  display: block;
  font-weight: bold;
  color: #af5a21; /* red or any color you like */
  margin: 0.5rem 0;
  font-size: 1.5rem;
}

.card-list .card-link .card-text {
  font-size: 1rem;
  color: #dcdcdc;
  font-weight: 100;
  text-shadow: none;
  text-align: left;
  width: 100%;
}
.card-price {
  display: block;
  font-weight: bold;
  color: #1c2c7a; /* Red color for price */
  margin: 0.5rem 0;
  font-size: 1rem;
}

.card-wrapper .swiper-pagination-bullet-active {
  opacity: 1;
}

.card-wrapper .swiper-slide-button {
  font-weight: 900;
  color: #29337a;
  margin-top: -35px;
}

.card-wrapper .swiper-slide-button:hover {
  color: #af5a21;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cta-button {
    font-size: 0.9rem;
  }
  .service_section {
    padding: 0rem 1rem;
  }
  .service_content {
    padding: 0rem 2rem;
  }
  .service_content p {
    width: 100% !important;
  }

  .card-wrapper {
    margin: 0 10px 0px;
    padding: 20px 0px;
  }
  .swiper-button-prev {
    padding-right: 20px;
  }
  .swiper-button-next {
    padding-left: 20px;
  }
  .card-wrapper .swiper-slide-button {
    display: none;
  }
}


.testimonial_section {
  padding: 6rem 2rem 4rem;
  text-align: center;
  font-family: "Myriad Pro";
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.testimonial_content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial_content p {
  width: 70%;
  text-align: center;
  font-family: "Myriad Pro", Arial, sans-serif;
}

.testimonial {
  display: none;
}

.testimonial.active {
  display: block;
}

.testimonial-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: #454041;
  color: #fff9f9;
  border-radius: 15px;
  margin: 20px auto;
  padding: 50px 80px;

  min-height: 300px;
  position: relative;
}

.testimonial-container .cotes {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.stars {
  font-size: 14px;
}

.star_image {
  width: 50px;
  height: auto;
}

.testimonial {
  font-family: "Myriad Pro", Arial, sans-serif;
  text-shadow: none;
  text-align: center;
  font-weight: 500;
  line-height: 28px;
  margin: 0;
  font-size: 1rem;
}

@media (max-width: 940px) {
  .testimonial-container {
    padding: 50px 30px;
  }
}
@media (max-width: 768px) {
  .star_image {
    width: 30px;
  }
  .testimonial-container {
    padding: 50px 30px;
  }
}
.mfp-iframe-holder .mfp-close {
  position: fixed;
  top: 20% !important;
}
.content_box {
  flex: 1;
}

.content_box .about-text {
  width: 100%;
  text-align: justify;
}

.about_container-box {
  height: 100%;
  gap: 40px;
  display: flex;
  align-items: flex-start;
  text-align: left;
  flex-direction: row;
}
@media (max-width: 768px) {
  .about_container-box {
    gap: 0px;

    flex-direction: column;
  }

  .about_content p {
    width: 100%;
  }
}
/* service page */

.image_slider_section {
  position: relative;
  width: 100%;
  background-color: #000;
}

.carousel-item img {
  object-fit: cover;
  /* border-bottom-left-radius: 200px;
  border-bottom-right-radius: 200px; */
  height: 100%;
  opacity: 0.5;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: #fff;
  z-index: 10;
}
.service_row {
  display: flex;

  align-items: center;
  justify-content: center;
}

.service_row_container {
  max-width: 1400px;
  width: 100%;
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.service_column {
  padding: 20px;
  height: auto;
  box-shadow: 0px 0px 0px 3px #b05c282e;
  /* box-shadow: 0px 0px 0px 3px #1c1415; */
  background-color: #000000;
  border-radius: 10px;
  /* border: 1px solid #1a1a1a; */
}

.service_container-box {
  height: 100%;
  gap: 40px;
  display: flex;
  align-items: center;
  text-align: left;
  flex-direction: row;
}

.image-display img {
  width: 100%;
  border-radius: 20px;
}
.badge {
  padding: 0;
  font-size: 2.5em;
  text-transform: capitalize;
  text-align: left;
  display: block;
  /* padding: 0.35em 0.65em; */
  /* font-size: 0.75em; */
  font-weight: 700;
  line-height: 1;
  color: #fff;
  /* text-align: center; */
  white-space: normal;
  /* vertical-align: baseline; */
  border-radius: 0.25rem;
}
.content_box .card-text {
  font-size: 1rem;
  color: #fff;
  font-weight: 100;
  text-shadow: none;
  text-align: left;
  width: 100%;
}
@media (max-width: 1600px) {
  .carousel-item img {
    /* border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px; */
    height: 100%;
    opacity: 0.5;
  }
}
@media (max-width: 768px) {
  .carousel-item img {
    object-fit: cover;
    /* border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px; */
    height: 100% !important;
  }
  .service_content_row {
    /* max-width: 1200px; */
    padding-top: 6rem;
  }
  .sub-content h3 {
    font-size: 1.3rem;
  }
  .service_row {
    padding-bottom: 4rem;
  }
  .service_container-box {
    flex-direction: column;
  }
  .badge {
    padding: 0;
    font-size: 1.75em;

    text-align: left;
  }
  .content_box {
    order: 2;
  }
  .imag-box {
    order: 1;
  }
}
/* contact page */

.contact_form_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sec-title {
  position: relative;
  /* padding-bottom: 40px; */
  padding-top: 50px;
}

.sec-title .title {
  position: relative;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding-right: 50px;
  margin-bottom: 15px;
  display: inline-block;
  text-transform: capitalize;
}

.sec-title .title:before {
  position: absolute;
  content: "";
  right: 0;
  bottom: 7px;
  width: 40px;
  height: 1px;
  background-color: #bbb;
}

.sec-title h2 {
  position: relative;
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5em;
  display: block;
}

/* .sec-title.light h2 {
  color: #fff
} */

.contact-page-section {
  position: relative;
  padding-top: 110px;
  /* padding-bottom: 110px; */
}

.contact-page-section .inner-container {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  background-color: #af5a21;
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.1);
}

.contact-page-section .form-column {
  position: relative;
  padding: 0 0 0 15px;
}

.contact-page-section .form-column .inner-column {
  position: relative;
  padding: 60px 45px 30px;
  background-color: #fff;

  border-radius: 10px;
}

.contact-page-section .info-column {
  position: relative;
}

.contact-page-section .info-column .inner-column {
  position: relative;
  padding: 60px 35px;
}

.contact-page-section .info-column h2 {
  position: relative;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4em;
  margin-bottom: 45px;
}

.contact-page-section .info-column .list-info {
  position: relative;
  margin-bottom: 60px;
}

.contact-page-section .info-column .list-info li {
  position: relative;
  margin-bottom: 25px;
  font-size: 18px;
  color: #fff;
  line-height: 1.8em;
  padding-left: 45px;
}

.contact-page-section .info-column .list-info li:last-child {
  margin-bottom: 0;
}

.contact-page-section .info-column .list-info li i {
  position: absolute;
  left: 0;
  top: 8px;
  color: #fff;
  font-size: 20px;
}

.contact-form {
  position: relative;
}

.contact-form .form-group {
  position: relative;
  margin-bottom: 20px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  position: relative;
  display: block;
  width: 100%;
  /* height: 60px; */
  color: #222;
  font-size: 14px;
  line-height: 38px;
  padding: 10px 30px;
  border: 1px solid #ddd;
  background-color: #fff;
  transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
  border-color: #af5a21;
}

.contact-form textarea {
  height: 250px;
  resize: none;
}

.contact-form .theme-btn {
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
  text-transform: capitalize;
  padding: 16px 39px;
  border: 2px solid #af5a21;
  font-family: "Myriad Pro", Arial, sans-serif;
  background: #af5a21;
  display: inline-block;
  position: relative;
  line-height: 24px;
  cursor: pointer;
  color: #fff;
}

.contact-form .theme-btn:hover {
  color: rgb(255, 255, 255);
  border-color: #00adee;
  background-color: #00adee;
  transform: translateY(-3px);
}

.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error {
  border-color: red !important;
}

.contact-form label.error {
  display: block;
  line-height: 24px;
  padding: 5px 0 0;
  margin: 0;
  text-transform: uppercase;
  font-size: 12px;
  color: red;
  font-weight: 500;
}
.follow {
  margin-bottom: 15px;
}
.social-icon-four {
  position: relative;
}

.social-icon-four li {
  position: relative;
  margin-right: 18px;
  display: inline-block;
}

.social-icon-four li.follow {
  color: #fff;
  font-weight: 600;
  font-size: 24px;
  display: block;
  margin-bottom: 20px;
}

.social-icon-four li a {
  position: relative;
  font-size: 20px;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.social-icon-four li a:hover {
  color: #222;
}

.social {
  display: flex;
  gap: 0;
}

.social > a {
  font-size: 24px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  color: #ffffff;
  border: 1px solid #ffffff;
  margin: 0 8px;
  color: inherit;
  align-items: center;
  align-content: center;
  opacity: 0.75;
}

.social > a:hover {
  opacity: 1;
  color: #32090c;
  border: 1px solid #32090c;
}
.map-section {
  padding: 50px 0;
  text-align: center;
  /* background-color: #f9f9f9; */
}

.map-container iframe {
  border: 0;
  border-radius: 10px;
  width: 100%;
  height: 400px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
li,
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 1040px) {
  .contact-page-section .info-column .inner-column {
    position: relative;
    padding: 60px 15px;
  }
}
@media (max-width: 768px) {
  .contact-page-section .form-column {
    position: relative;
    padding: 0 20px 0 20px;
  }
  .map-container-section,
  .contact_form_content {
    padding: 0 1.5rem;
  }
}
/* footer */
.footer {
  padding: 60px 0 80px;
  background-color: #f0f0f0;
  color: #000;
}

.sr-only {
  text-align: center;
}

.footer-row {
  margin-bottom: 5%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.footer .address {
  /* font-weight: 600; */
  font-size: 20px;
  /* text-align: center; */
  letter-spacing: normal;
}

.footer ul {
  padding: 0;
  list-style: none;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer li {
  display: inline-block;
  /* Change to inline-block for horizontal layout */
  padding: 0 10px;
}

footer ul li a:hover {
  color: #1c2c7a;
}

footer ul li.active a {
  color: #1c2c7a !important;
  /* Highlight color for active menu item */
}

.footer ul a {
  font-size: 16px;
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
}

.footer ul a:hover {
  opacity: 1;
}

.footer .social {
  display: flex;
  text-align: center;
  /* padding-bottom: 25px; */
  align-items: center;
  flex-direction: row;
}

.footer .social > a {
  font-size: 24px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  color: #ccc;
  border: 1px solid #ccc;
  margin: 0 8px;
  color: inherit;
  align-items: center;
  align-content: center;
  opacity: 0.75;
}

.footer .social > a:hover {
  opacity: 1;
  color: #32090c;
  border: 1px solid #32090c;
}

.footer .copyright {
  margin-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
  margin-bottom: 0;
}

.footer .footer-break {
  height: 1px;
  margin: 1% 20%;
  /* width: 100%; */
  border-width: 0;
  color: gray;
  background-color: rgb(0, 0, 0);
}

@media (max-width: 768px) {
  .footer .address {
    font-size: 14px;
  }

  .footer ul a {
    font-size: 12px;
  }

  .footer li {
    padding: 0 4px;
  }
  .footer .footer-break {
    height: 1px;
    margin: 4% 5%;
  }
  .footer .social > a {
    font-size: 24px;
    width: 25px;
    height: 25px;
  }
  .footer .social > a {
    font-size: 15px;
  }
}
/* start floating button */

.floating-buttons {
  position: fixed;
  right: 20px;
  gap: 10px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hidden buttons (initial state) */
.floating-buttons .hidden {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Visible buttons (after clicking the main icon) */
.floating-buttons .visible img {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Main message buttons */
.message-btn {
  width: 50px;
  height: 50px;
  /* background-color: #0000; */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.message-btn img {
  width: 100%;
  height: 100%;
}

/* WhatsApp, call, mail icons */
.floating-buttons a img {
  width: 40px;
  height: 40px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.floating-buttons a:hover img {
  transform: scale(1.1);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .floating-buttons a img {
    width: 30px;
    height: 30px;
  }

  .message-btn {
    width: 40px;
    height: 40px;
  }
}
