@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
  color: white;
}

a:hover {
  text-decoration: underline;
}

body {
  background-color: rgb(243 244 246 / 1);
}

/*--------------------------------------------------------Navgation------------------------------------------------------*/
nav {
  width: 100%;
  height: 70px;
}
.navbar {
  position: fixed;
  width: 100%;
  height: 100px;
  z-index: 99;
  color: black !important;
  /* background: white; */
  background-color: rgb(243 244 246 / 1);
}

nav .wrapper {
  position: relative;
  max-width: 1300px;
  padding: 0px 30px;
  /* line-height: 70px; */
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wrapper .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 140px;
}

.wrapper .nav-links {
  display: inline-flex;
}

.nav-links li {
  list-style: none;
}

.nav-links li a {
  color: black;
  text-decoration: none;
  font-size: 18px;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.nav-links li a.active,
.nav-links li a:hover {
  /* color: #f58233; */
  color: #f6821f;
}

.nav-links .mobile-item {
  display: none;
}

.nav-links .drop-menu {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  width: 180px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}

.drop-menu li a {
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}

.drop-menu li a:hover {
  color: #ffffff;
  background-color: #f6821f;
}

.mega-box {
  position: absolute;
  left: 400px;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}

.mega-box .content {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.mega-box .content .row {
  width: calc(35% - 30px);
  line-height: 40px;
  margin-top: -2px;
  width: 100%;
}

.row .mega-links li {
  padding: 0 20px;
}

.row .mega-links li a {
  padding: 0px;
  padding: 0 20px;
  color: black;
  font-size: 17px;
  display: block;
  border-bottom: 2px solid rgba(0, 0, 0, 0.305);
}

.row .mega-links li a:hover {
  color: #ffffff;
  background-color: #f6821f;
}

.wrapper .btn {
  color: black;
  font-size: 20px;
  cursor: pointer;
  display: none;
}

.wrapper .btn.close-btn {
  position: absolute;
  right: 30px;
  top: 10px;
}
#services-dropdown-menu {
  width: 28vw !important;
  padding: 10px 20px;
}

#services-dropdown-menu li a {
  border-bottom: 2px solid rgba(0, 0, 0, 0.305);
}
@media screen and (max-width: 970px) {
  .wrapper .btn {
    display: block;
  }
  .nav-links li a {
    color: black;
  }

  .wrapper .nav-links {
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 420px;
    top: 0;
    left: -100%;
    background: rgba(225, 225, 225, 0.2);
    backdrop-filter: blur(15px);
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
  }

  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }

  ::-webkit-scrollbar-track {
    background: #242526;
  }

  ::-webkit-scrollbar-thumb {
    background: #3a3b3c;
  }

  #menu-btn:checked ~ .nav-links {
    left: 0%;
  }

  #menu-btn:checked ~ .btn.menu-btn {
    display: none;
  }

  #close-btn:checked ~ .btn.menu-btn {
    display: block;
    color: black;
  }

  .nav-links li {
    margin: 15px 10px;
  }

  .nav-links li a {
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }

  .nav-links .drop-menu {
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }

  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box {
    max-height: 100%;
  }

  .nav-links .desktop-item {
    display: none;
  }

  .nav-links .mobile-item {
    display: block;
    color: black;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }

  .nav-links .mobile-item:hover {
    background: #3a3b3c;
  }

  .drop-menu li {
    margin: 0;
  }

  .drop-menu li a {
    border-radius: 5px;
    font-size: 18px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.18);
  }

  .mega-box {
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .mega-box .content {
    box-shadow: none;
    flex-direction: column;
    /* padding: 20px 20px 0 20px; */
  }

  .mega-box .content .row {
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2) {
    border-top: 0px;
  }
  .content {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }

  .content .row .mega-links {
    border-left: 0px;
    padding-left: 2px;
  }

  .row .mega-links li {
    margin: 0 !important;
    padding: 0 !important;
  }

  .content .row header {
    font-size: 19px;
  }
  #services-dropdown-menu {
    width: 85vw !important;
    padding: 0px 20px;
  }
}

nav input {
  display: none;
}

.body-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 30px;
}

.body-text div {
  font-size: 45px;
  font-weight: 600;
}
.drop-menu li a {
  width: 100% !important;
}

/*--------------------------------------------------------home------------------------------------------------------*/
#home {
  width: 100%;
  height: 100vh;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.swiper-slide .home-section .home-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-section {
  position: relative;
  width: 100%;
  height: 100%;
}
.home-glass {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: #101c32a9;
}
.home-image {
  background-position: center;
  background-size: cover;
}
.home-image img {
  position: absolute;
  z-index: -9999999;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  background-position: center;
  background-size: cover;
}
.home-text {
  position: absolute;
  z-index: 1;
  top: 20vh;
  left: 5vh;
  width: 60vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: white;
  text-align: left;
}
.home-text h1 {
  font-size: 4vw;
}

.home-text span {
  text-transform: uppercase;
  color: white;
  font-size: 5vw;
  font-weight: bold;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  background-blend-mode: difference;
  mix-blend-mode: lighten;
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 5vw;
}
.home-text p {
  color: white;
  font-size: 1.5vw;
  letter-spacing: 0.1vw;
  line-height: 2vw;
  margin-top: 2vh;
}
@media screen and (max-width: 500px) {
  #home {
    height: 50vh;
  }
  .home-section {
    height: 60vh;
  }
  .home-text {
    width: 90%;
    top: 15vh;
    left: 3vh;
    right: 2vh;
    margin-left: -10px;
  }

  .home-text h1 {
    font-size: 6vw;
    margin: 8px;
  }
  .home-text span {
    padding: 5px;
    font-size: 7vw;
  }
  .home-text p {
    font-size: 4vw;
    letter-spacing: 0.3vw;
    line-height: 5.5vw;
    margin-top: 2vh;
  }
}
@media screen and (max-width: 720px) {
  .home-text p {
    font-size: 3vw;
    letter-spacing: 0.3vw;
    line-height: 5.5vw;
    margin-top: 2vh;
  }
}
/* ------------------------------------------------- Product ----------------------------------------------------- */
.section-product {
  padding: 5vw 2vw;
  min-height: 100vh;
  box-sizing: border-box;
}

.section-product h1 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 24px;
}

.section-product .product-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.product-card1 {
  flex: 1 1 calc(25% - 20px);
  max-width: calc(25% - 20px);
  overflow: hidden;
  border: 1px solid black;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card1:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.section-product .product-container .product-card1 img {
  height: 300px;
  width: 100%;
  /* background-position:center ;
  background-size: cover;
  object-fit: cover; */
}

.section-product .product-container .product-card1 h3 {
  margin: 1vw 2vw;
  font-size: 18px;
  text-align: center;
}

.section-product .product-container .product-card1 .product-card-button {
  margin: 1vw 2vw;
  text-align: center;
}

.product-card-button button {
  padding: 10px 40px;
  border-radius: 5px;
  border: none;
  background-color: #f58233;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s;
}

.product-card-button button:hover {
  background-color: blue;
}

/* Responsive Media Queries */

/* Tablets (max-width: 768px) */
@media (max-width: 768px) {
  .product-card1 {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }

  .section-product h1 {
    font-size: 32px;
  }
}

/* Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
  .product-card1 {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .section-product h1 {
    font-size: 28px;
  }

  .product-card-button button {
    padding: 8px 20px;
  }
}

/*--------------------------------------------------------------- services ------------------------------------------------------*/
.services {
  width: 100%;
  margin: auto;
  text-align: center;
  /* background-color: black; */
  color: black;
  padding: 20px;
  /* border-radius: 10px; */
}

h1 {
  font-size: 40px;
  font-weight: 600;
}

h3 {
  font-weight: 400;
  margin-bottom: 2rem;
}

p {
  color: white;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  padding: 10px;
}

.rap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.services-col,
.services-c,
.services-co {
  flex-basis: 30%;
  background: rgb(180, 130, 86);
  border-radius: 10px;
  padding: 2rem;
  box-sizing: border-box;
  transition: 0.5s;
}

.services-c {
  background: rgb(176, 120, 129);
}

.services-co {
  background: rgb(178, 131, 87);
}

.services-col,
.services-c,
.services-co p {
  text-align: justify;
}

h2 {
  text-align: center;
  font-weight: 600;
  margin: 10px 0;
  color: white;
}

.services-col:hover,
.services-c:hover,
.services-co:hover {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  scale: 1.05;
}

@media screen and (max-width: 700px) {
  .services-col,
  .services-c,
  .services-co {
    flex-basis: 100%;
    margin-bottom: 2.5rem;
  }
  .services-col p,
  .services-c p,
  .services-co p {
    font-size: 0.9rem;
  }
}

/* ------------------------------------------------------- why choose us ------------------------------------------------------ */

.choose {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 60px;
}
.row {
  margin-top: 5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.choose-col {
  flex-basis: 31%;
  border-radius: 10px;
  margin-bottom: 5%;
  text-align: left;
}
.choose-col img {
  width: 100%;
  border-radius: 10px;
  transition: box-shadow 0.3s ease;
}

.choose-col img:hover {
  box-shadow: 10px 7px 20px lightblue;
}

.choose-col p {
  padding: 0;
  color: #000;
  font-weight: 400;
}
.choose-col h3 {
  font-size: 24px;
  margin-top: 16px;
  margin-bottom: 15px;
  font-weight: 500;
  text-align: left;
}
@media screen and (max-width: 700px) {
  .choose-col {
    flex-basis: 100%;
    text-align: left;
  }
  .choose-col p {
    font-size: 1rem;
  }
}

/*-------------------------------------------- Call To Action ---------------------------------------------------------*/

.cta {
  margin: 100px auto;
  width: 80%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(images/banner2.jpg);
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  text-align: center;
  padding: 100px 0;
}
.cta h1 {
  color: #fff;
  margin-bottom: 40px;
  padding: 0;
}

.hero-btn {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  /* border: 1px solid #fff; */
  padding: 12px 34px;
  font-size: 13px;
  background: transparent;
  position: relative;
  cursor: pointer;
}

.hero-btn:hover {
  /* border: 1px solid #f6821f; */
  background: #f6821f;
  transition: 1s;
  text-decoration: none;
}

@media (max-width: 700px) {
  .cta h1 {
    font-size: 24px;
  }
}

/*----------------------------------------------------------- footer--------------------------------------------------------------*/

footer {
  padding: 8vh;
  background-color: #2c3e50;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-forth-component {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

footer .footer-col {
  padding-bottom: 40px;
}
.news-letter {
  margin-bottom: -10px;
}
footer h3 {
  color: rgb(241, 240, 245);
  font-weight: 600;
  padding-bottom: 20px;
}

footer li {
  list-style: none;
  color: #7b838a;
  padding: 8px 0;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s ease;
}
footer li:hover {
  color: #f6821f;
}

footer p {
  color: #7b838a;
}
.footer-col li a {
  text-decoration: none;
  color: #7b838a;
}
.footer-col li a:hover {
  color: #f6821f;
}

footer .subscribe {
  margin-top: 20px;
}

footer input {
  width: 220px;
  padding: 15px 12px;
  background: #334f6c;
  border: none;
  outline: none;
  color: #fff;
}

footer .subscribe a {
  text-decoration: none;
  font-size: 0.9rem;
  padding: 13px 15px;
  background-color: #fff;
  font-weight: 600;
}

footer .subscribe a.yellow {
  color: #2c2c2c;
  background: #fff;
  transition: 0.3s ease;
}

footer .subscribe a.yellow:hover {
  color: #fff;
  background: #f6821f;
}

footer .copyright {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
}

footer .copyright p {
  color: #fff;
}

.pro-links {
  /* margin-top: 0px; */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

footer .copyright .pro-links i {
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #5f7185;
  color: #fff;
  padding: 10px 5px;
  border-radius: 50%;
}
.pro-links a {
  text-decoration: none;
}

footer .copyright .pro-links i:hover {
  background-color: #f6821f;
  color: #2c2c2c;
}

/* Responsive Design */
@media (max-width: 768px) {
  footer {
    flex-direction: column;
    padding: 5vh 4vw;
  }

  footer .footer-col {
    width: 100%;
    padding-bottom: 20px;
  }

  footer .copyright {
    flex-direction: column;
    align-items: center;
  }

  .pro-links {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 4vh 2vw;
  }

  footer h3 {
    font-size: 1.1rem;
  }

  footer li,
  footer p {
    font-size: 0.9rem;
  }

  footer input {
    width: 100%;
  }

  .pro-links i {
    height: 35px;
    width: 35px;
  }
}

/*------------------------------------------------About---------------------------------------------------*/
/* Main CSS for #about-home */
#about-home {
  background-image: linear-gradient(rgba(9, 5, 54, 0.3), rgba(5, 4, 46, 0.7)),
    url(img/aboutbackground.jpg);
  width: 100%;
  height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 40px;
}

#about-home h2 {
  color: #fff;
  font-size: 2.2rem;
  letter-spacing: 1px;
}

/* Flex layout for #about-container */
#about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 8vw 8vw 2vw 8vw;
}

#about-container .about-img {
  width: 50%;
}

#about-container .about-text {
  width: 45%;
}

#about-container .about-text p {
  font-size: 18px;
  font-weight: 200;
  color: rgb(21, 21, 100);
}

#about-container .aboutvision-img {
  width: 50%;
}

#about-container .aboutmission-text {
  width: 100%;
  background-color: rgb(241, 240, 245);
  color: #f44336;
}

/* Styling for #trust section */
#trust {
  text-align: center;
  padding: 8vw;
}

#trust .trust-img {
  margin-top: 60px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

#trust .trust-img img {
  width: 90px;
  height: auto;
  margin: 10px;
}

#about-container .about-text1 {
  padding: 2rem;
  background-color: #5f7185;
  color: #ffffff;
}

#about-container .about-text1 h3 {
  margin-bottom: 0;
}

/* Media Queries for Responsiveness */

/* For tablets and small devices */
@media (max-width: 768px) {
  #about-container {
    flex-direction: column;
    text-align: center;
    padding: 6vw 4vw;
  }

  #about-container .about-img,
  #about-container .about-text,
  #about-container .aboutvision-img {
    width: 100%;
    margin-bottom: 20px;
  }

  #trust .trust-img {
    flex-direction: column;
  }

  #about-home {
    height: 50vh;
  }

  #about-home h2 {
    font-size: 1.8rem;
  }
}

/* For mobile devices */
@media (max-width: 480px) {
  #about-home {
    height: 40vh;
    padding-top: 20px;
  }

  #about-home h2 {
    font-size: 1.5rem;
  }

  #about-container {
    padding: 4vw 2vw;
  }

  #about-container .about-text p {
    font-size: 16px;
  }

  #trust {
    padding: 4vw;
  }

  #trust .trust-img img {
    width: 70px;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #about-home {
    height: 50vh; /* Adjust height for smaller screens */
    background-size: contain; /* Contain the background image */
    background-repeat: no-repeat; /* Prevent repeating */
  }
}

@media (max-width: 480px) {
  #about-home {
    height: 40vh; /* Further adjust height for very small screens */
    background-size: cover; /* Maintain cover for smaller devices */
  }
}

/*-------------------------------------------------------------clients------------------------------------------------ */
#clients-home {
  background-image: linear-gradient(rgb(9, 5, 54, 0.3), rgb(5, 4, 46, 0.7)),
    url(img/clientsbackground.jpg);
  width: 100%;
  height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 40px;
}

#clients-home h2 {
  color: #fff;
  font-size: 2.2rem;
  letter-spacing: 1px;
}

.container-clients {
  max-width: 100vw;
  padding: 20px;
  width: 100%;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
}

.grid-item {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.grid-item:hover {
  transform: scale(1.05);
}

.grid-item img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #clients-home {
    height: 50vh; /* Adjust height for smaller screens */
    background-size: contain; /* Contain the background image */
    background-repeat: no-repeat; /* Prevent repeating */
  }
}

@media (max-width: 480px) {
  #clients-home {
    height: 40vh; /* Further adjust height for very small screens */
    background-size: cover; /* Maintain cover for smaller devices */
  }
}

/*--------------------------------------------------- Contact Us Page ------------------------------------------------------*/
#contactus-home {
  background-image: linear-gradient(rgba(9, 5, 54, 0.3), rgba(5, 4, 46, 0.7)),
    url(img/aboutbackground.jpg);
  width: 100%;
  height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 40px;
}

#contactus-home h2 {
  color: #fff;
  font-size: 2.2rem;
  letter-spacing: 1px;
}

/* Location Section */
.location {
  width: 80%;
  margin: auto;
  padding: 80px 0;
}

.location iframe {
  width: 100%;
  height: 400px; /* Ensuring iframe has a fixed height */
}

/* Contact Us Section */
.contact-us {
  width: 80%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-col {
  flex-basis: 48%;
  margin-bottom: 30px;
}

.contact-col h1 {
}

.contact-col div {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.contact-col div .fa {
  font-size: 28px;
  color: #f5821f;
  margin-right: 30px;
}

.contact-col div p {
  padding: 0;
  font-size: 16px;
  color: #000;
}

.contact-col div h5 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #555;
  font-weight: 400;
}

/* Input and Textarea Styling */
.contact-col input,
.contact-col textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 17px;
  outline: none;
  border: 1px solid #ccc;
  font-size: 16px;
  border-radius: 4px;
}

.contact-col a:hover h5 {
  color: #f5821f;
}

/* Hero Button */
.hero-btn {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  padding: 12px 34px;
  font-size: 14px;
  background: transparent;
  position: relative;
  cursor: pointer;
  transition: background 0.5s, border 0.5s;
}

.hero-btn:hover {
  border: 1px solid #1274c0;
  background: #f5821f;
}

.hero-btn.red-btn {
  border: 1px solid #1274c0;
  background: transparent;
  color: #f5821f;
}

.hero-btn.red-btn:hover {
  border: 1px solid #1274c0;
  background: #f5821f;
  color: #fff;
}

/* Footer Link */
.footer-link {
  text-decoration: none;
  color: #777;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #f5821f;
}

.row .contact-col .contact-pro-links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}

.row .contact-col .contact-pro-links i {
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #5f7185;
  color: #fff;
  padding: 10px 5px;
  border-radius: 50%;
}
.contact-pro-links a {
  text-decoration: none;
}

.row .contact-col .contact-pro-links i:hover {
  background-color: #f5821f;
}

/* Responsive Design */
@media (max-width: 768px) {
  #contactus-home {
    height: 50vh;
    padding-top: 20px;
  }

  #contactus-home h2 {
    font-size: 1.8rem;
  }

  .location {
    width: 95%;
  }

  .contact-us {
    flex-direction: column;
    width: 95%;
  }

  .contact-col {
    flex-basis: 100%;
  }

  .hero-btn {
    padding: 10px 20px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  #contactus-home {
    height: 40vh;
  }

  #contactus-home h2 {
    font-size: 1.5rem;
  }

  .location iframe {
    height: 300px;
  }

  .contact-col div .fa {
    font-size: 24px;
    margin-right: 20px;
  }

  .hero-btn {
    padding: 8px 16px;
    font-size: 11px;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #contactus-home {
    height: 50vh; /* Adjust height for smaller screens */
    background-size: contain; /* Contain the background image */
    background-repeat: no-repeat; /* Prevent repeating */
  }
}

@media (max-width: 480px) {
  #contactus-home {
    height: 40vh; /* Further adjust height for very small screens */
    background-size: cover; /* Maintain cover for smaller devices */
  }
}

/* --------------------------------------------------------- Slider client -------------------------------------------------------------------*/

.slider {
  height: 250px;
  margin: auto;
  position: relative;
  width: 90%;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.slide-track {
  display: flex;
  width: calc(250px * 18);
  animation: scroll 40s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translate(0);
  }
  100% {
    transform: translate(calc(-250px * 9));
  }
}

.slide {
  /* height: 200px; */
  width: 250px;
  display: flex;
  align-items: center;
  padding: 10px;
  perspective: 100px;
  border: 1px solid #efefef;
}
img {
  width: 100%;
  transition: transform 0.5s;
}

img:hover {
  transform: translateZ(20px);
}

.slider::before,
.slider::after {
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  content: "";
  height: 100%;
  position: absolute;
  width: 15%;
}

.slider::before {
  left: 0;
  top: 0;
}

.slider::after {
  right: 0;
  top: 0;
  transform: rotate(180deg);
}

/* ------------------------ Love emoji animation --------------------------*/

.spin {
  display: inline-block;
  font-size: 20px;
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
