@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)),
    url("../images/new_line.svg") repeat top;
  object-fit: contain;
  background-size: contain;
}

/* header section */
a {
  text-decoration: none !important;
}
/* 
.header-section {
  width: 100%;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  z-index: 14;

  justify-content: center;
} */
.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: 250px;
  max-width:150px;
  padding: 20px;
} */

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: #eb008b;
}

nav ul li.active a {
  color: #eb008b;
  /* 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;
  }
}


/* 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%;
  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, 0.5)),
    url("../images/about_img.jpg") repeat center;
  background-size: cover;
}
.video_container_gallery {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/colorful-splash-3d-background.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/contact_img.jpg") repeat center;
  background-size: cover;
}

.video_player {
  width: 100%;
  height: 100%;
  opacity: 0.5;
  object-fit: cover;
}

.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: #ec008c;
  border: 0;
  /* border-radius:5px; */
  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: #00adee;
  transform: translateY(-3px);
}
.cta-button.active {
  background-color: #00adee;
}
@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;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
  }

  .video_container {
    height: 80% !important;
    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: 2rem;
  }

  .video_content p {
    font-size: 1rem;
  }
}

/* About Section */
.about_section {
  padding: 4rem 2rem;
  text-align: center;
  /* background: #fff; */
}

.about_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  /* background: #fff; */
  border-radius: 10px;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}

.about_content {
  gap: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  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: 1.5rem;
    color: #555;
    color: #fff;
    width: 70%;
    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;
  }

  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;
  }
}

/* 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;
  /* 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: #fff;
  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;
}

.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: #000000;
  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;
}

.card-list .card-link .card-text {
  font-size: 1rem;
  color: #000;
  font-weight: 100;
  text-shadow: none;
  text-align: left;
  width: 100%;
}

.card-wrapper .swiper-pagination-bullet-active {
  opacity: 1;
}

.card-wrapper .swiper-slide-button {
  font-weight: 900;
  color: #fff;
  margin-top: -35px;
}

.card-wrapper .swiper-slide-button:hover {
  color: #ec008c;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cta-button {
    font-size: 0.9rem;
  }
  .service_section {
    padding: 0rem 2rem;
  }
  .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;
  }
}

/* gallery section */

.gallery_section {
  padding: 6rem 0;
  display: flex;
  gap: 20px;
  flex-direction: column;
  width: 100%;
}

.gallery_content_row {
  /* max-width: 1200px; */
  gap: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gallery_content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery_content p {
  width: 70%;
  text-align: center;
}

.mfp-container {
  text-align: center;
  position: absolute !important;
  width: 40% !important;
  left: 50% !important;
  height: 50% !important;
  box-sizing: border-box;
  top: 50% !important;
  transform: translate(-50%, -10%) !important;
}
/* .mfp-container {
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  max-width: 400px;
  width: 400px;
  min-width: 400px;
} */
.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: auto !important;
}
.image_box_row {
  width: 100%;
  gap: 10px;

  justify-content: center;
  align-items: center;
}

/* .image_box {
  padding: 0;
  position: relative;
  width: 30%;
   
}
.image_box p {
  position: absolute;
  top: 50%;
  display: none;
  left: 50%;
  color: #fff;
  padding: 10px;
  transform: translate(-50%, -50%);
}
.image_box p:hover + .image_box  img {
  opacity: 0.5;  
}

.image_box img {
  border-radius: 20px;
  max-width: 100%;
  min-width: 100%;
  min-height: 300px;
  max-height: 300px;
  object-fit: cover;
}

.image_box:hover p {
  display: block;
  
} */
.image_box {
  background-color: #000000;
  padding: 0;
  /* background-color: #000; */
  width: 30%;
  position: relative; /* Position container for the text inside */
}

.image_box p {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  text-align: center;
  transform: translate(-50%, -50%);
  display: none; /* Hide the paragraph initially */
  color: #fff;
  padding: 10px;
  /* background-color: rgba(0, 0, 0, 0.5);  */
  border-radius: 5px;
}

.image_box img {
  border-radius: 20px;
  max-width: 100%;
  min-width: 100%;
  min-height: 300px;
  max-height: 300px;
  object-fit: cover;
  transition: opacity 0.3s ease; /* Smooth opacity transition */
}
.image_box img:hover {
  opacity: 0.5;
}
/* Show paragraph when hovering over the image box */
.image_box:hover p {
  z-index: 10;
  display: block;
}
.image_box a {
  position: relative;
}
/* .image_box a:hover{
  opacity: 0.5;
} */
/* Change opacity of image when hovering over the paragraph */
.image_box p:hover ~ img {
  opacity: 0.5 !important;
}
.gallery_container,
.video_image_container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  justify-content: center;
}

/* Remove left and right arrows for gallery_container and video_image_container */
.gallery_container .mfp-arrow,
.video_image_container .mfp-arrow {
  display: none !important;
}

/* Hide the left and right arrows in the popup */
.mfp-arrow {
  display: none !important;
}

.mfp-iframe-scaler {
  top: 50 !important;
  position: absolute !important;
}
.video_image_container img + img {
  /* position: relative;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 30px;
  max-height: 30px;
  min-width: 30px;
  min-height: 30px;
  z-index: 9;
  top: -150px; */
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 30px;
  max-height: 30px;
  min-width: 30px;
  min-height: 30px;
  z-index: 9;
  top: 0px;
}
.gallery_buttons {
  padding: 0rem 0 2rem;
  display: flex;
  gap: 20px;
}
@media (max-width: 1100px) {
  .mfp-container {
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    max-width: 700px;
    width: 700px;
    min-width: 500px;
  }
}

@media (max-width: 768px) {
  .gallery_section {
    padding: 6rem 0 0;
  }
  .mfp-container {
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    max-width: 400px;
    width: 400px;
    min-width: 400px;
  }

  .image_box img {
    min-height: 150px;
    max-height: 150px;
    opacity: 0.5;
  }
  .image_box p {
    font-size: 14px;
    display: block;
  }
  .gallery_content_row {
    gap: 10px;
    padding-bottom: 2rem;
  }
  .gallery_container {
    /* padding-bottom: 25px; */
    gap: 10px;
  }
  .video_image_container {
    gap: 10px;
  }
  .video_image_container img + img {
    top: 50%;
  }
}
@media (max-width: 580px) {
  .image_box {
    width: 45% !important;
    /* float: left; */
  }
}
/* client logo settings */
#ourclients {
  margin-top: 2rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  /* background: #f9f9f9; */
  /* padding-bottom: 30px; */
  height: auto;
  /* padding-bottom: 20px; */
}

#ourclients .clients-wrap {
  display: block;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

#ourclients .clients-wrap ul {
  display: flex;
  list-style: none;
  gap: 20px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

#ourclients .clients-wrap ul li {
  display: block;
  float: left;
  display: flex;
  position: relative;
  justify-content: center;
  width: 200px;
  background-color: #fff;
  height: 100px;
  line-height: 100px;
  text-align: center;
  align-items: center;
  border-radius: 5px;
  padding: 10px;
}

#ourclients .clients-wrap ul li img {
  object-fit: contain;
  vertical-align: middle;
  max-width: 100%;
  width: 150px;
  max-height: 100%;
  -webkit-transition: 0 linear left;
  -moz-transition: 0 linear left;
  transition: 0 linear left;
}

/* testimonial section */
.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;
}
/* Hide all testimonials by default */
.testimonial {
  display: none;
}

/* Only show the active testimonial */
.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;
  /* width: 1000px; */
  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;
}
/* .mfp-iframe-scaler {
  margin-top: 10px !important;
  top: -26px !important;
  position: absolute !important;
}
.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: #FFF !important;
  right: 27px !important;
  text-align: right !important;
  padding-right: 6px !important;
  width: 100% !important;
  font-size: 52px !important;
  z-index: 12 !important;
} */

.mfp-iframe-holder .mfp-close {
  /* font-size: 40px; */
  position: fixed;
  top: 20% !important;
}
@media (max-width: 940px) {
  .testimonial-container {
    padding: 50px 30px;
  }
}
@media (max-width: 768px) {
  .star_image {
    width: 30px;
  }
  .testimonial-container {
    padding: 50px 30px;
  }
}
.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 17px 12px #1c1415;
  background-color: #252424;
  border-radius: 10px;
  border: 1px solid #1a1a1a;
}
/* 
.imag-box,
.content_box {
  flex: 1;
} */

.service_container-box {
  height: 100%;
  gap: 40px;
  display: flex;
  align-items: center;
  text-align: left;
  flex-direction: row;
}

.imag-box img {
  border-radius: 20px;
  width: 100%;
  /* height: 100%; */
  /* object-fit: cover; */
}
.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;

  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: 80% !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;
}

.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: #8a252d;
  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: #8a252d;
}

.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 #8a252d;
  font-family: "Myriad Pro", Arial, sans-serif;
  background: #8a252d;
  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;
  }
}
/* 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: #eb008b;
}

footer ul li.active a {
  color: #eb008b;
  /* 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;
}

/* .logo img {
  width: 250px;
  max-width: 200px;
} */
 .logo img {
  width: 250px;
  max-width:150px;
  padding:10px;
}
.logo .logo_img {
    max-width:100px;
}


@media (max-width: 768px) {
  .logo img {
    /* width: 205px; */
    max-width: 125px !important;
      padding: 10px;
  }
  .logo .logo_img {
       max-width:80px !important;
  }
}
.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;
}



 
.floating-buttons .visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

 
.message-btn {
  width: 50px;
  height: 50px;
 
  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-btn {
  animation-delay: 0.1s;
}

#call-btn {
  animation-delay: 0.5s;
}
 
.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);
}
 
@media (max-width: 768px) {
  .floating-buttons a img {
    width: 30px;
    height: 30px;
  }

  .message-btn {
    width: 40px;
    height: 40px;
  }
} */
/* end floating button */
/* Floating Buttons Container */
/* .floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
 
.floating-buttons .hidden {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}
 
.floating-buttons .visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
 
.message-btn {
  width: 50px;
  height: 50px;
  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-btn {
  animation-delay: 0.15s;
}

#call-btn {
  animation-delay: 0.1s;
}

#mail-btn {
  animation-delay: 0.5s;
}
#mail-btn.hidden,
#whatsapp-btn.hidden,
#call-btn.hidden {
  opacity: 0; 
  transition: opacity 0.5s ease-out;
  animation-delay: 01s;
}
#toggle-btn1.hidden #mail-btn,
#toggle-btn1.hidden #whatsapp-btn,
#toggle-btn1.hidden #call-btn {
  transition: opacity 0.5s ease-out;
  animation-delay: 01s;
  opacity: 0;
}

.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);
}
 .floating-buttons a.visible img{
  opacity: 1;

 }
@media (max-width: 768px) {
  .floating-buttons a img {
    width: 30px;
    height: 30px;
  }

  .message-btn {
    width: 40px;
    height: 40px;
  }
} */

.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;
  }
}
