body {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  background-color: #000000;
}

.container {
  max-width: 1440px;
  padding-left: 20px;
  padding-right: 20px;
}

h1,
h2 {
  font-family: "Newsreader", serif;
}

h3,
h4,
h5,
p,
span {
  font-family: "Barlow", sans-serif;
}

a {
  font-family: "Roboto", sans-serif;
}

h2 {
  font-size: 38px;
  font-weight: 700;
  background: linear-gradient(140deg, #98ff98 31%, #29ba74 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* header starts */

header {
  background-color: #000000;
  /* padding: 10px 0px; */
}

.nav-fixed {
  width: 100%;
  z-index: 110;
  transition: transform 0.4s ease-in-out, box-shadow 0.3s ease-in-out,
    background-color 0.3s ease-in-out;
  background-color: #000000;
  padding: 15px 10px;
}

.nav-fixed.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
}

.nav-fixed.hidden {
  transform: translateY(-100%);
  box-shadow: none;
}

.navbar-toggler {
  background-color: #ffffffd8;
}

.navbar-toggler-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: 50% / 100% 100% no-repeat;
}

header nav .brand img {
  width: 100%;
  max-width: 220px;
}

header nav .navbar-nav .nav-link {
  color: white;
  padding: 10px 15px !important;
}

header nav .navbar-nav .nav-link.show {
  color: white;
}

.nav-CTA a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent; /* keep background transparent */
  color: #fff; /* text white */
  border-radius: 24px;
  padding: 10px 15px;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3); /* faint base border */
}

.nav-CTA a:hover {
  color: white;
}

/* animated glowing droplet border */
.nav-CTA a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #98ff98 50%,
    transparent 100%
  );
  background-size: 200% 200%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderMove 3s linear infinite;
  pointer-events: none;
}

@keyframes borderMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

/* header ends */

/* CTA button */

.CTA-btn a {
  background-color: white;
  color: #032221;
  border-radius: 24px;
  padding: 8px 16px;
  font-weight: 600;
}

.CTA-btn a:hover {
  background-color: white;
  color: #032221;
  border-radius: 24px;
  font-weight: 600;
}

.CTA-btn img {
  font-size: 30px;
  border-radius: 10px;
  max-width: 30px;
}

/* CTA button */

/* hero-section starts */

.hero-section {
  background: url(../images/services/Events_Experience-banner-video-thumbnail.webp)
    no-repeat center/cover;
  height: 100vh;
}

.hero-section video {
  object-fit: cover;
  position: absolute;
  width: 100%;
  height: 100vh;
  z-index: 1;
}

.hero-section .theme {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: self-start;
  height: 100%;
  color: white;
  text-align: start;
  width: 100%;
  margin: auto;
  padding: 20px;
  z-index: 3;
  /* background: transparent linear-gradient(to right, #000000 0%, transparent 100%)
    0% 0% no-repeat padding-box; */
}

.hero-section .content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  text-align: center;
}

.hero-section .content h1 {
  font-size: 4vw;
  font-weight: 800;
  background: linear-gradient(140deg, #98ff98 31%, #29ba74 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.hero-section .content p {
  color: #ffffff;
  font-size: 16px;
}

.hero-section .image {
  padding: 50px 0px;
}

.hero-section .image img {
  width: 100%;
  max-width: 480px;
  display: flex;
  margin: auto;
  border-radius: 10px;
}

/* hero-section ends */

/* Section2 starts */

.section2 {
  padding: 60px 0px;
  background-color: #000000;
  position: relative;
  z-index: 2;
}

.section2 h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  width: 50%;
  margin: auto;
}

.section2 p {
  font-size: 16px;
  width: 75%;
  margin: auto;
  text-align: center;
}

/* Section2 ends */

/* Section3 starts */

.section3 {
  padding: 30px 0px 60px;
}

.section3 h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
}

.section3 .cards-container {
  /* display: grid; */
  /* grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); */
  row-gap: 30px;
}

.section3 .card {
  position: relative;
  background-color: #143a3378;
  border: 1px solid #ffffff46;
  border-radius: 12px;
  padding: 20px;
  min-height: 180px;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.section3 .card .card-front {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: auto;
  margin-bottom: auto;
}

.section3 .card .card-front img {
  width: 40px;
}

.section3 .card h3 {
  margin: 15px 0px;
  font-size: 20px;
  color: white;
}

.section3 .card .read-more {
  color: #29ba74;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
}

.section3 .card-overlay {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 20px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
}

.section3 .card-overlay p {
  margin: 0 0 10px;
  margin: auto;
}

.section3 .card-overlay .close-overlay {
  align-self: flex-end;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: #fff;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 6px;
}

.section3 .card.active .card-overlay {
  display: flex;
}

.section3 .view-all {
  background: linear-gradient(135deg, #003a1f, #0d0d0d);
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  font-weight: 600;
  cursor: pointer;
}

/* Section3 ends */

/* Section4 starts */

.section4 {
  padding: 60px 0px;
}
.section4 h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
}

.testimony .btn {
  padding: 0px;
}

.testimony .btn-close {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1000;
  width: 40px;
  height: 40px;
  padding: 0px;
}

.testimony button.btn-close {
  background-color: #000000;
  border-radius: 50%;
  color: white;
}

.modal-header .btn-close {
  margin: auto;
}

/* section4 ends */

/* Clients logos Section starts */

.clients-logos {
  padding: 50px 0px;
  background-color: #000000;
  position: relative;
  z-index: 2;
}

.clients-logos .slider {
  position: relative;
  width: 95vw;
  overflow: hidden;
  margin: auto;
}

.clients-logos .slider .action-button:hover {
  background: rgba(255, 255, 255, 0.9);
  color: black;
  cursor: pointer;
}

.clients-logos .slider .action-button.left-chevron {
  left: 0;
  transform: translate(5%, -50%);
}

.clients-logos .slider .action-button.left-chevron:hover {
  transform: translate(15%, -50%);
}

.clients-logos .slider .action-button.right-chevron {
  right: 0;
  transform: translate(-5%, -50%);
}

.clients-logos .slider .action-button.right-chevron:hover {
  transform: translate(-15%, -50%);
}

.clients-logos .slider .slider-list {
  display: grid;
  grid-auto-columns: 12% !important;
  grid-auto-flow: column;
  margin: 0;
  padding: 7px 0;
  list-style: none;
  transition: transform 5s linear;
  gap: 15px;
}

@media (max-width: 768px) {
  .clients-logos .slider .slider-list {
    grid-auto-columns: 40% !important;
  }
}

@media (max-width: 481px) {
  .clients-logos .slider .slider-list {
    grid-auto-columns: 40% !important;
  }
}

@media (min-width: 600px) and (max-width: 1999px){
   .clients-logos .slider .slider-list {
    grid-auto-columns: 19% !important;
  }
}

@media (max-width: 1200px) {
  .clients-logos .slider .slider-list {
    grid-auto-columns: 16% !important;
  }
}

@media (min-width: 1200px) {
  .clients-logos .slider .slider-list {
    grid-auto-columns: 12% !important;
  }
}

.clients-logos .slider .slider-list .slider-item {
  display: inline-block;
  box-shadow: 0px 0px 8px 0px #8080807d;
  color: white;
  text-align: center;
}

.clients-logos .slider .slider-list .slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.1s linear;
}

.clients-logos .slider .slider-list .slider-item img:hover {
  transform: scale(1.1);
}

/* Clients logos Section ends */

/* section5 starts */

.section5 {
  padding: 60px 0px;
  background-color: #000000;
  position: relative;
  z-index: 2;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  margin-top: -20px;
}

.section5 h2 {
  font-size: 36px;
  margin: auto;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
}

.section5 p {
  color: white;
  text-align: center;
  width: 80%;
  margin: auto;
}

.section5 .image {
  width: 100%;
  height: 240px;
  background-size: cover;
  background-position: center;
  transition: filter 0.2s, background-image 0.2s;
  margin: 8px;
  filter: grayscale(100%) !important;
}

.section5 .image:hover{
filter: grayscale(0%) !important;
}

.image-row {
  display: flex;
}

/*section5 ends */

/* contact starts */

.contact {
  padding: 30px 0px 50px;
  background-color: #000000;
}

.contact .container {
  max-width: 1200px;
  margin: auto;
  border-radius: 30px;
  padding: 50px 0px;
  border-radius: 20px;
}

.contact .container h1 {
  text-align: center;
  font-size: 50px;
  padding: 20px;
}

.contact .container .main-row {
  margin: auto;
  border: 1px solid #ffffff;
  border-radius: 20px;
}

.contact .container .main-row .green-div {
  position: relative;
  height: 100%;
  width: 100%;
}

.contact .container .main-row .round-icon {
  max-width: 200px;
  position: absolute;
  right: 0px;
  bottom: 0px;
}

.contact form {
  background-color: white;
  color: #757575;
  margin: auto;
  padding: 30px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  font-size: 13px;
}

.contact #more {
  display: none;
}

.contact form .row-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.contact .row-input input {
  width: 100%;
  padding: 10px 0px 10px 10px;
  border: none;
  border-bottom: 1px solid;
  outline: none;
}

.contact .mob-com input {
  width: 100%;
  padding: 10px 0px 10px 10px;
  border: none;
  border-bottom: 1px solid;
  outline: none;
}

.contact form .other-inputs .row-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.contact .form-input input:focus {
  color: #000000 !important;
  border-bottom: 2px solid #29ba74 !important;
}

.contact .form-input .input-flex .flex-checkbox .row {
  row-gap: 0px;
}

.contact .other-text {
  display: none;
  width: 100%;
  border: 1px solid;
  background-color: transparent;
  color: #000000;
  border-radius: 5 px;
}

.contact .other-text:focus {
  color: #000000 !important;
  outline: none;
  border: 2px solid #29ba74 !important;
}

.contact .message {
  width: 100%;
  padding-left: 0px;
  padding: 10px;
  margin: 10px auto;
  border: 1px solid #000000;
  border-radius: 5px;
}

.contact .message:focus {
  color: #000000 !important;
  border: 2px solid #29ba74 !important;
  outline: none;
}

.contact .flex-checkbox {
  display: flex;
  flex-wrap: wrap;
}

.contact .CTA-btn button {
  background-color: white;
  color: #032221;
  border-radius: 24px;
  padding: 8px 16px;
  border: 1px solid #767676;
  font-weight: 600;
}

.contact .CTA-btn img {
  font-size: 30px;
  border-radius: 10px;
  max-width: 30px;
}

.contact .green-div {
  color: white;
  padding: 30px;
  border-radius: 20px;
}

.contact .green-div h4 {
  font-size: 40px;
}

.contact .green-div .row img {
  width: 100%;
  max-width: 90px;
}

.contact .green-div .row h5 {
  font-size: 24px;
  font-weight: 700;
}

/* contact ends */

/* footer starts */

footer {
  padding: 60px 30px 10px;
  background-color: #000000;
  color: white;
  border-top: 1px solid #9d9d9d;
}

footer .container .left {
  row-gap: 30px;
}

footer .container .left .logo {
  width: 100%;
  max-width: 200px;
}

footer .container .right ul {
  list-style-type: none;
  margin-top: 20px;
}

footer .container .right ul li {
  font-size: 14px;
  line-height: 35px;
}

footer .container .right ul li a {
  text-decoration: none;
  color: white;
}

footer .container .quick-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 45px;
  margin: 25px 0px;
}

footer .container .quick-links a {
  font-size: 14px;
  font-weight: 400;
  color: white;
  text-decoration: none;
}

/* footer ends */

#myBtn {
  display: none;
  position: fixed;
  bottom: 60px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  color: white;
  cursor: pointer;
  padding: 0px;
  border-radius: 50%;
  box-shadow: 0px 1px 20px rgba(0, 0, 0, 0.519);
}

/* Media Query */
@media (max-width: 480px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  /* header */
  header nav .brand img {
    width: 100%;
    max-width: 170px;
  }

  .navbar-toggler {
    padding: 0px 5px;
  }

  header nav .navbar-nav .nav-link {
    padding: 10px 0px !important;
  }

  header nav .navbar-nav .nav-link.show {
    color: white;
  }
  /* header */

  h2 {
    font-size: 28px;
  }

  .green-circle {
    width: 100%;
    max-width: 190px;
    height: 100px;
  }

  /* hero section */

  .hero-section .content h1 {
    font-size: 32px;
  }

  .hero-section .content {
    width: 100%;
    padding: 10px;
    gap: 5px;
    margin-top: 20px;
  }

  .hero-section .image {
    padding: 30px 0px;
  }

  .hero-section .green-circle {
    width: 100%;
    max-width: 190px;
    height: 100px;
  }

  .CTA-btn a {
    background-color: white;
    color: #032221;
    border-radius: 24px;
    padding: 6px 12px;
    font-weight: 600;
    font-size: 14px;
  }

  .hero-section .content p {
    margin-bottom: 0px;
  }

  section h1 {
    font-size: 28px !important;
  }

  /* section2 */

  .section2 h1 {
    width: 100%;
    font-size: 30px;
  }

  .section2 p {
    width: 100%;
  }

  /* section6 */

  /* section4 */

  /* section5 */
  .section5 .image {
    height: 120px;
    padding: 4px;
    margin: 4px;
  }

  .testimonial-title {
    font-size: 18px;
  }

  /*  contact */

  .contact h2 {
    font-size: 28px;
    -webkit-text-fill-color: #000000;
  }

  .contact form {
    max-width: 100%;
    padding: 20px 10px;
    border-radius: 20px;
  }

  .contact .green-div {
    width: 100%;
    padding: 20px 15px;
  }

  .contact .container h1 {
    text-align: center;
    font-size: 36px;
    padding: 15px;
  }

  /* contact */

  /* footer */
  footer {
    padding: 60px 10px 10px;
  }

  footer .container .quick-links {
    gap: 20px;
    margin: 10px 0px;
  }
}

@media (min-width: 600px) and (max-width: 1025px) {
  .section3 .card {
    padding: 10px;
  }

  .section3 .card h3 {
    font-size: 14px;
  }

  .section3 .card-overlay {
    padding: 10px;
  }

  .section3 .card-overlay p {
    font-size: 14px;
  }

  .section4 .branding .box{
    padding: 20px;
}

  .section4 .branding .box table tr{
    margin: 7px 0px;
  }

  .contact form {
    max-width: 100%;
    padding: 20px 10px;
    border-radius: 20px;
  }

  .contact .green-div {
    width: 90%;
    margin: auto;
  }
}
