/********** Template CSS **********/
:root {
  --primary: #ff800f;
  --secondary: #001064;
  --light: #f6f7f8;
  --dark: #010a35;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover {
  color: #ffffff;
}

.btn.btn-primary:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.btn.btn-secondary:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.btn-square {
  width: 30px;
  height: 30px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}

.navbar .navbar-brand img {
  max-height: 100px;
}

.navbar .navbar-nav .nav-link {
  padding: 16px 16px;
  color: #222222;
  font-weight: 600;
  font-size: 18px;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-brand img {
    max-height: 80px;
  }

  .navbar .navbar-nav {
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .navbar .nav-item .dropdown-menu {
    padding-left: 30px;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(1, 10, 53, 0.8);
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--dark);
  border: 12px solid var(--dark);
  border-radius: 3rem;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-header {
  background:
    linear-gradient(rgba(1, 10, 53, 0.8), rgba(1, 10, 53, 0.8)),
    url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item+.breadcrumb-item::before {
  color: var(--light);
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
  color: var(--primary);
}

.about-section .about-content p {
  text-align: justify;
}

.about-feature img {
  width: 50px;
}

.about-feature .card {
  box-shadow: 0 0 10px #010a35a4;
  text-align: center;
}

.about-feature .card h5 {
  margin: 10px 0;
}

/*** Facts ***/
.facts {
  background-image: url(../img/wireman-dissasembling-air-conditioner.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
  /* background: rgba(1, 10, 53, 0.8); */
}

.facts::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(1, 10, 53, 0.8);
}

.facts .container {
  position: relative;
}

.vision-mission .vision-mission-card {
  box-shadow: 0 0 10px #ffd5d5;
  align-items: center;
}

.vision-mission .vision-mission-card .btn-square {
  background-color: #010a35;
}

.vision-mission .vision-mission-card img {
  width: 70px;
  height: 70px;
}

/*** Quote ***/
@media (min-width: 992px) {
  .container.quote {
    max-width: 100% !important;
  }

  .container.quote .quote-text {
    padding-left: calc(((100% - 960px) / 3) + 0.75rem);
  }

  .container.quote .quote-form {
    padding-right: calc(((100% - 960px) / 3) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .container.quote .quote-text {
    padding-left: calc(((100% - 1140px) / 3) + 0.75rem);
  }

  .container.quote .quote-form {
    padding-right: calc(((100% - 1140px) / 3) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .container.quote .quote-text {
    padding-left: calc(((100% - 1320px) / 3) + 0.75rem);
  }

  .container.quote .quote-form {
    padding-right: calc(((100% - 1320px) / 3) + 0.75rem);
  }
}

.container.quote .quote-text {
  background-image: url(../img/why_choose.png);
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}

.container.quote .quote-text::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(1, 10, 53, 0.8);
}

.container.quote .quote-text div {
  position: relative;
}

.container.quote .quote-form {
  background: rgba(255, 255, 255, 0.8);
}

.container.quote .quote-text .h-100,
.container.quote .quote-form .h-100 {
  padding: 6rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/*** Service ***/
.service-item {
  box-shadow: 0 0 10px #001064;
  padding: 24px 18px;
  text-align: center;
}

.service-item p {
  text-align: center;
}

.service-item .service-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(167 171 191);
}

.service-item .service-icon img {
  max-width: 60px;
  max-height: 60px;
}

.service-item a {
  font-size: 20px;
}

.service-item .h4 {
  font-size: 20px;
  margin: 10px 0;
}

.core-services {
  background-image: url(../img/wireman-dissasembling-air-conditioner.jpg);
  background-size: cover;
  background-position: top;
  background-attachment: fixed;
  position: relative;
}

.core-services::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #010a35db;
}

.core-services .container-fluid {
  position: relative;
  color: #fff;
}

.core-services .display-6 {
  color: #f6f7f8;
}

.core-services .service-item {
  box-shadow: 0 0 10px #fff;
}

/*** Team ***/
.team-item .team-img::before,
.team-item .team-img::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(1, 10, 53, 0.8);
  transition: 0.5s;
}

.team-item .team-img::after {
  left: auto;
  right: 0;
}

.team-item:hover .team-img::before,
.team-item:hover .team-img::after {
  width: 50%;
}

.team-item .team-img .team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 3;
  opacity: 0;
}

.team-item:hover .team-img .team-social {
  transition-delay: 0.3s;
  opacity: 1;
}

/*** Testimonial ***/
.animated.pulse {
  animation-duration: 1.5s;
}

.testimonial-left,
.testimonial-right {
  position: relative;
}

.testimonial-left img,
.testimonial-right img {
  position: absolute;
  border-radius: 70px;
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
  width: 70px;
  height: 70px;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
  width: 50px;
  height: 50px;
  bottom: 10%;
  right: 10%;
}

.testimonial-carousel .owl-item img {
  width: 100px;
  height: 100px;
  border-radius: 100px;
}

.testimonial-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin: 0 5px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 45px;
  font-size: 22px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  background: var(--secondary);
}

/*** Footer ***/
.footer {
  color: #7f8499;
}

.footer img {
  border-radius: 15px;
  width: 80%;
  margin: auto;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #7f8499;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #7f8499;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--primary);
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .btn.btn-square {
  color: #7f8499;
  border: 1px solid #7f8499;
}

.footer .btn.btn-square:hover {
  color: var(--light);
  border-color: var(--primary);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--primary);
}

.footer .copyright a:hover {
  color: #ffffff;
}

.col_half {
  width: 49%;
}

.col_third {
  width: 32%;
}

.col_fourth {
  width: 23.5%;
}

.col_fifth {
  width: 18.4%;
}

.col_sixth {
  width: 15%;
}

.col_three_fourth {
  width: 74.5%;
}

.col_twothird {
  width: 66%;
}

.col_half,
.col_third,
.col_twothird,
.col_fourth,
.col_three_fourth,
.col_fifth {
  position: relative;
  display: inline;
  display: inline-block;
  float: left;
  margin-right: 2%;
  margin-bottom: 20px;
}

.end {
  margin-right: 0 !important;
}

.text-center {
  text-align: centesr !important;
}

/*-=-=-=-=-=-=-=-=-=-*/
/* Style             */
/*-=-=-=-=-=-=-=-=-= */
* {
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
}

/* .at-work-process {
  min-height: 200px;
  position: relative;
  z-index: 4;
  padding: 16px 10px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition-duration: 0.2s;
  box-shadow: 0 0 10px #b5b5b5;
  transition-timing-function: ease-in-out;
}
.at-work-process::after {
  position: absolute;
  content: "";
  height: 5px;
  width: 50px;
  right: 0;
  top: 45%;
  background-color: #001064;
} */
.at-work-process {
  min-height: 200px;
  position: relative;
  z-index: 4;
  padding: 16px 10px;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: 0.2s ease-in-out;
  box-shadow: 0 0 10px #b5b5b5;
  background: #fff;
  background-image: url(../img/air\ conditioner\ realistic\ set.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

/* 👉 HORIZONTAL CONNECTOR (→) */
.work-process-section .col-lg-4:not(:nth-child(3n)) .at-work-process::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -50px;
  width: 50px;
  height: 4px;
  background: #001064;
  transform: translateY(-50%);
}

/* 👉 VERTICAL CONNECTOR (↓) - only first row */
.work-process-section .col-lg-4:nth-child(3) .at-work-process::before {
  content: "";
  position: absolute;
  bottom: -75px;
  left: 50%;
  width: 4px;
  height: 75px;
  background: #001064;
  transform: translateX(-50%);
}

@media (max-width: 768px) {

  /* 👉 VERTICAL CONNECTOR (↓) - only first row */
  .work-process-section .col-lg-4 .at-work-process::before {
    content: "";
    position: absolute;
    bottom: -75px;
    left: 50%;
    width: 4px;
    height: 75px;
    background: #001064;
    transform: translateX(-50%);
  }

  .work-process-section .col-lg-4:nth-child(4n) .at-work-process::before {
    display: none;
  }

  /* 👉 HORIZONTAL CONNECTOR (→) */
  .work-process-section .col-lg-4:not(:nth-child(3n)) .at-work-process::after {
    content: none;
  }
}

.at-work-process-text {
  line-height: 40px;
  transition: all 200ms linear 0s;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
}

.at-work-process:hover {
  overflow: hidden;
}

.at-work-process:hover .at-work-process-text {
  -webkit-transform: translateY(-150%);
  -moz-transform: translateY(-150%);
  -ms-transform: translateY(-150%);
  -o-transform: translateY(-150%);
  transform: translateY(-150%);
}

.at-work-process:hover .at-work-process-details {
  z-index: 2;
  opacity: 1;
  bottom: 0;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}

.at-work-process-number {
  color: #1e83ec;
  font-size: 50px;
  font-weight: 100;
  letter-spacing: -2px;
  display: block;
}

.at-work-process-number-text {
  font-size: 22px;
  font-weight: 600;
  color: #000000;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.at-separator-thick {
  background: #d4d4d4;
  margin: 3% auto;
  height: 4px;
  width: 30px;
}

.at-work-process-details {
  bottom: -60px;
  height: 100%;
  left: 0;
  opacity: 0;
  width: 100%;
  padding: 24px;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}

.at-work-process-details i {
  color: #1e83ec;
  margin-bottom: 15px;
  display: block;
  font-size: 48px;
  margin: 15px auto;
}

.at-work-process-details span {
  font-size: 16px;
  line-height: 15px;
  /* text-transform: uppercase; */
}

.temp-structure-section {
  padding: 80px 20px;
  background: #f8fafc;
  font-family: "Poppins", sans-serif;
}

/* .container {
  max-width: 1200px;
  margin: auto;
} */

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #ff6600;
}

.section-header h2 span {
  color: #3bbc04;
}

.section-header p {
  max-width: 800px;
  margin: 15px auto 0;
  color: #000;
  font-size: 16px;
  line-height: 1.7;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  transition: 0.3s;
  box-shadow: 0 0 10px #3dba06;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px #ff6600;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0f172a;
}

.service-card p {
  font-size: 16px;
  color: #2f363f;
}

/* Info Section */
.info-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.info-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 0 10px #3dba06;
}

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px #ff6600;
}

.info-box h3 {
  margin-bottom: 15px;
  font-size: 22px;
  color: #0f172a;
}

.info-box ul {
  list-style: none;
  padding: 0;
}

.info-box ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  color: #603199;
  font-size: 16px;
  font-weight: 600;
}

.info-box ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0ea5e9;
}

/* Responsive */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .section-header h2 {
    font-size: 28px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

.industries-section {
  padding: 80px 0;
  background: #f1f5f9;
  font-family: "Poppins", sans-serif;
}

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

/* Scrolling Section */
.scroll-wrapper {
  overflow: hidden;
  position: relative;
}

.scroll-track {
  display: flex;
  width: calc(250px * 16);
  animation: scroll 25s linear infinite;
}

.industry-card {
  width: 300px;
  min-width: 300px;
  margin: 10px;
  background: #0000007d;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px #ffffff;
  transition: 0.3s;
}

.industry-card:hover {
  transform: translateY(-5px);
}

.industry-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #ff6500;
}

.industry-card p {
  font-size: 16px;
  color: #fff;
}

/* Animation */
@keyframes scroll {
  from {
    transform: translateX(0);
  }

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

/* Pause on hover */
.scroll-wrapper:hover .scroll-track {
  animation-play-state: paused;
}

.industries-section {
  background-image: url(../img/slider1.png);
  background-size: cover;
  background-position: center;
  position: relative;
}

.industries-section::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000000b6;
}

.industries-section .container,
.industries-section .scroll-wrapper {
  position: relative;
}

/* Why Rent Section */
.why-rent {
  margin-top: 60px;
  text-align: center;
}

.why-rent h2 {
  margin-bottom: 30px;
  font-size: 28px;
  color: #ff6600;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.why-card {
  background: #603199;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  font-size: 18px;
  box-shadow: 0 0 10px #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .industry-card {
    width: 310px;
    min-width: 310px;
  }
}

.rent-ac-section {
  padding: 80px 20px;
  background: #0f172a;
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.section-header p {
  max-width: 700px;
  margin: auto;
  color: #cbd5f5;
}

/* Circle Layout */
.circle-wrapper {
  position: relative;
  width: 450px;
  height: 450px;
  margin: 60px auto;
}

/* Center Box */
.center-box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%);
  background: #fff;
  color: #0f172a;
  padding: 20px;
  border-radius: 12px;
  transition: 0.4s;
}

.center-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #ff6600;
}

/* Circular Items */
.circle span {
  position: absolute;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #ff6600;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
}

/* Position around circle */
.circle span:nth-child(1) {
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
}

.circle span:nth-child(2) {
  top: 15%;
  right: -10%;
}

.circle span:nth-child(3) {
  bottom: 15%;
  right: -10%;
}

.circle span:nth-child(4) {
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
}

.circle span:nth-child(5) {
  bottom: 10%;
  left: -10%;
}

.circle span:nth-child(6) {
  top: 15%;
  left: -10%;
}

/* Hover effect */
.circle span:hover {
  color: #3dba06;
}

/* Stats */
.stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat-card {
  background: #1e293b;
  padding: 20px;
  border-radius: 10px;
  width: 200px;
  box-shadow: 0 0 10px #fff;
}

.stat-card h2 {
  color: #38bdf8;
}

/* Responsive */
@media (max-width: 576px) {
  .circle-wrapper {
    width: 280px;
    height: 280px;
  }

  .center-box {
    width: 180px;
  }
}

.circle span {
  transition: 0.3s;
  box-shadow: 0 0 10px #fff;
}

.circle-active {
  background-color: #603199 !important;
  font-weight: 600;
  transform: scale(1.2);
}

.floating_btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

@media screen and (max-width:768px) {
  .floating_btn {
    bottom: 0;
    left: 0;
  }
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size: 30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}


.text_icon {
  margin-top: 8px;
  color: #000000;
  text-shadow: 0 0 10px #ffff;
  font-weight: 500;
  font-size: 13px;
}

.gallery {
  column-count: 4;
  column-gap: 10px;
}

.gallery img {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 8px;
  display: block;
}

/* Responsive */
@media (max-width: 992px) {
  .gallery {
    column-count: 3;
  }
}

@media (max-width: 768px) {
  .gallery {
    column-count: 2;
  }
}

@media (max-width: 480px) {
  .gallery {
    column-count: 1;
  }
}

.gallery img:hover {
  transform: scale(1.03);
  transition: 0.3s;
}

/* Responsive iframe container */
.iframe-container {
  position: relative;
  width: 100%;
  padding-top: 75%;
  /* aspect ratio (4:3) */
  overflow: hidden;
}

.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
