@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1336px;
  margin: auto;
  padding: 0 10px;
}

/* ----------- header ----------- */
/* header */
.header {
  background: #11113c;
}

/* layout */
.flex-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	padding: 30px 0;
}

/* logo */
.logo a {
  display: block;
}

.logo img {
	display: block;
	max-width: 280px;
}

/* desktop menu */
.menubar ul {
  display: flex;
  gap: 40px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menubar ul li {
  position: relative;
  margin: 0;
}

.menubar ul li a,
.menubar .menu-btn {
  text-decoration: none;
  color: #ffffff;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  /* needed for ::after underline */
  padding-bottom: 8px;
}

/* animated underline */
.menubar ul li a::after,
.menubar .menu-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  /* sits at the bottom of the text */
  height: 2px;
  width: 0;
  /* start hidden */
  background-color: #00bfff;
  transition: width 0.3s ease;
}

/* grow underline on hover */
.menubar ul li a:hover::after,
.menubar .menu-btn:hover::after {
  width: 100%;
}

/* caret */
.menubar ul li a .fa-caret-down {
  font-size: 14px;
  opacity: 0.95;
}

.menubar ul ul {
  display: none;
}

/* ---------- SUBMENU: HIDDEN BY DEFAULT ---------- */
.submenu {
  position: absolute;
  top: calc(100% + 0px);
  /* sits directly below nav row */
  left: 0;
  background: #11113c;
  min-width: 200px;
  border-radius: 6px;
  padding: 6px 0;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
  z-index: 9999;

  /* Hidden state */
  display: none;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .12s ease, transform .12s ease;
}

/* submenu items (stacked vertically) */
.submenu li {
  list-style: none;
  width: 100%;
  margin: 0;
}

.submenu li a {
  display: block;
  padding: 10px 12px;
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  transition: background .12s ease;
  border-radius: 4px;
  width: 100%;
}

/* .submenu li a:hover {
  background: rgba(255, 255, 255, 0.04);
} */

/* Show on hover (desktop) */
.menubar ul li:hover>.submenu {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Also show when JS adds .open to the parent (touch / click handling) */
.menubar ul li.open>.submenu {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* optional horizontal "mega" variant (use class "submenu--horizontal") */
.submenu--horizontal {
  white-space: nowrap;
  min-width: 420px;
  padding: 8px 14px;
  border-radius: 8px;
  left: 50%;
  transform: translate(-50%, -6px);
}

.submenu--horizontal li {
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
}

.submenu--horizontal li a {
  padding: 10px 12px;
  font-size: 17px;
}

/* ---------------- HAMBURGER / MOBILE NAV ---------------- */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  background: linear-gradient(180deg, rgba(17, 17, 60, 1), rgba(17, 17, 60, 0.98));
  width: 100%;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  z-index: 9998;
}

.mobile-nav.open {
  display: block;
  animation: slideDown .20s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav .mobile-list {
  list-style: none;
  margin: 0;
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-nav .mobile-list li a,
.mobile-nav .mobile-list li .mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 10px;
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  border-radius: 6px;
}

.mobile-nav .mobile-list li a:hover,
.mobile-nav .mobile-list li .mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.03);
}

.mobile-submenu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding-left: 12px;
  margin-top: 6px;
  margin-bottom: 6px;
}

.mobile-submenu.open {
  display: flex;
}

.mobile-submenu a {
  padding: 10px;
  font-size: 16px;
  border-radius: 6px;
  color: #ffffff;
  text-decoration: none;
}

/* -------- responsive rules -------- */
@media (max-width:880px) {
  .menubar ul {
    display: none;
  }

  /* hide desktop menu on small */
  .hamburger {
    display: inline-flex;
  }

  .flex-wrap {
    padding: 18px 0;
  }

  /* ensure absolute submenu doesn't float / show on small screens */
  .submenu,
  .submenu--horizontal {
    position: static;
    transform: none;
    opacity: 1;
    display: none;
    /* mobile submenu controlled via .mobile-submenu */
    pointer-events: auto;
    box-shadow: none;
    padding: 0;
    background: transparent;
    min-width: 0;
  }
}

@media (min-width:881px) {
  .mobile-nav {
    display: none !important;
  }
}

@media (max-width:640px) {
  .logo img {
    height: 48px;
  }

  .menubar ul li a {
    font-size: 18px;
  }

  .submenu {
    min-width: 180px;
    top: calc(100% + 8px);
  }

  .submenu li a {
    font-size: 16px;
    padding: 10px 14px;
  }
}

/* focus outlines for accessibility */
a:focus,
button:focus {
  outline: 3px solid rgba(31, 182, 255, 0.18);
  outline-offset: 2px;
}

/*-------------------------- header-end ----------------------------------*/
/* ----------------- banner ------------------- */

.banner {
  position: relative;
}

.banner-content {
  max-width: 756px;
  top: 50%;
  left: 14.5%;
  transform: translateY(-61%);
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  padding: 60px 60px;
  border: 1px solid #d2d2d2;
}

.banner-content h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.banner-content h2 {
  font-size: 45px;
  letter-spacing: 0.5px;
  margin-bottom: 50px;
  line-height: 1.3;
  font-weight: 600;
}

.banner-content a {
  display: block;
  background: #11113c;
  max-width: 260px;
  padding: 12px 20px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 0.5px;
}

/* --------------- banner-end -------------------- */

.promotion {
  position: relative;
}

.promo-position {
  background: url(../images/promotion-bg.png) no-repeat;
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  background-position-y: -10px;
}

.promo-content-flex {
  display: flex;
  justify-content: space-between;
  padding: 50px 0px 100px;
  max-width: 1230px;
}

.promo-content {
  display: flex;
  align-items: center;
  gap: 27px;
  color: #fff;
}

.promo-content h3 {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ------------------------ promotion end -------------------------- */
/* ------------------------ about section -------------------------- */

.about-flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.about-section {
  margin-top: 210px;
  margin-bottom: 120px;
}

.about-section .left {
  position: relative;
}

.about-image-text {
  position: absolute;
  left: 30px;
  bottom: 40px;
}

.about-image-text h2 {
  font-size: 130px;
  font-weight: 600;
  line-height: 1;
}

.about-image-text h3 {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.about-text-content h3 {
  font-size: 30px;
  font-weight: 600;
  background: #11113c;
  color: #ffc636;
  max-width: max-content;
  padding: 0 30px;
  margin-bottom: 30px;
}

.about-text-content h2 {
  font-size: 47px;
  color: #11113c;
  letter-spacing: 0.5px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 38px;
}

.about-text-content p {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.6px;
  line-height: 1.7;
}

.about-text-content a {
  font-size: 20px;
  margin-top: 42px;
  display: block;
  background: #ffc636;
  max-width: max-content;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 30px;
  text-decoration: none;
  color: #000;
}

.service .about-flex {
  gap: 70px;
}

.about-section.service {
  margin-top: 0;
  margin-bottom: 80px;
  padding: 110px 0 100px;
  background: #eeeeee;
}


.service .service-content h2 {
  margin-bottom: 20px;
}

.service .about-text-content a {
  margin-top: 30px;
}

.video-content h3 {
  margin-bottom: 16px;
}

.video-content h2 {
  margin-bottom: 14px;
}

.video .about-flex {
  align-items: start;
  gap: 30px;
}

.about-section.video {
  margin-top: 110px;
  margin-bottom: 120px;
}

/* ----------------- about end --------------------- */
/* -------------------- gallery start ------------------ */

.gallery-section {
  text-align: center;
}

.gallery-section h2 {
  font-size: 47px;
  color: #11113c;
  letter-spacing: 0.5px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 8px;
}

.gallery-title p {
  font-size: 16px;
  letter-spacing: 0.5px;
  margin-bottom: 43px;
}

.gallery-img img {
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform .28s ease;
}

.gallery-img:hover img,
.gallery-img:focus-within img {
  transform: scale(1.03);
  transition: ease-in-out .5s;
}

.gallery-img {
  overflow: hidden;
  transition: ease-in-out .5s;
  border-radius: 30px;
}

.gallery-five img,
.gallery-six img,
.gallery-seven img {
  object-fit: cover;
  border-radius: 8px;
  object-position: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.flex-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lb-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(6, 11, 18, 0.88);
  z-index: 4000;
  padding: 20px;
  -webkit-tap-highlight-color: transparent;
}

.lb-overlay[aria-hidden="false"] {
  display: flex;
}

/* the image */
.lb-image {
  max-width: 92%;
  max-height: 86vh;
  border-radius: 10px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.6);
  transform-origin: center center;
  user-select: none;
}

/* controls: prev/next/close */
.lb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  -webkit-appearance: none;
}

.lb-close {
  top: 18px;
  right: 22px;
  transform: none;
  width: 54px;
  height: 54px;
  font-size: 26px;
}

.lb-prev {
  left: 18px;
}

.lb-next {
  right: 18px;
}

.lb-btn:focus {
  outline: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

/* caption area (optional) - if you want to show alt text below image */
.lb-caption {
  margin-top: 12px;
  color: #ddd;
  font-size: 14px;
  text-align: center;
  max-width: 92%;
  pointer-events: none;
}

/* small devices: larger controls and more space around image */
@media (max-width: 640px) {

  .lb-prev,
  .lb-next {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .lb-close {
    width: 48px;
    height: 48px;
    font-size: 24px;
    right: 16px;
    top: 14px;
  }

  .lb-image {
    max-height: 78vh;
  }
}

.gallery-one.gallery-img {
  min-height: 380px;
}

.gallery-three.gallery-img {
  min-height: 300px;
  border: 2px solid #b9b9b9;
}

.gallery-four.gallery-img {
  max-height: 513px;
}

.gallery-five.gallery-img {
  min-height: 419px;
  border: 2px solid #b9b9b9;
}

.gallery-six.gallery-img {
  min-height: 380px;
}

.gallery-two.gallery-img {
  max-height: 631px;
}

.gallery-seven.gallery-img {
  min-height: 630px;
}

.gallery-eight.gallery-img {
  min-height: 378px;
  border: 2px solid #b9b9b9;
}

.gallery-nine.gallery-img {
  min-height: 303px;
}

.gallery-five.gallery-img img {
  object-fit: contain;
}

.gallery-seven.gallery-img img {
  object-position: -110px;
}

/* ---------------------- gallery end ------------------- */
/* ---------------------- feedback start ------------------------- */
.feedback-title h2 {
  font-size: 47px;
  color: #11113c;
  letter-spacing: 0.5px;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}

.feedback-section {
  margin-top: 110px;
  margin-bottom: 70px;
}

.avtar-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.avtar-text h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.avtar-text p {
  font-size: 13px;
  color: #474747;
  letter-spacing: 0.5px;
  margin: 2px 0 0;
}

.star .fa-solid.fa-star {
  color: #f9cc00;
  font-size: 16px;
}

.star {
  margin-top: 5px;
}

.feedback-content p {
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 1.4;
  margin-top: 5px;
}

.feedback-box {
  padding: 20px 16px 30px;
  box-shadow: 0px 4px 15px rgba(179, 179, 179, 0.9);
  background: #fff;
  border-radius: 6px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 12px;

}

/* --- New slider layout --- */
.feedback-slider-wrapper {
  /* max-width: 1150px; */
  margin: 0 auto;
  position: relative;
  padding: 10px 10px;
  box-sizing: border-box;
  overflow: hidden;
}

.feedback-viewport {
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  padding: 16px 10px;
  max-width: 1170px;
  margin: auto;
}

/* compensate viewport padding by giving the track internal padding so the last card never gets clipped */
.feedback-slider-track {
  padding-right: 12px;
  /* match feedback-viewport horizontal padding */
  box-sizing: border-box;
  padding-left: 12px;
}


.feedback-slider-track {
  display: flex;
  gap: 30px;
  /* same gap you used before */
  transition: transform 420ms cubic-bezier(.22, .9, .35, 1);
  will-change: transform;
  box-sizing: border-box;
}

/* the slide will be sized by JS (flex-basis set dynamically) but keep this safe */
.feedback-slider-track .feedback-box {
  flex: 0 0 auto;
}

/* arrows outside the card area (circular buttons) */
.slider-btn {
	width: 44px;
	height: 44px;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
	border: 0;
	transition: transform 120ms ease, box-shadow 120ms ease;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 40;
	cursor: pointer;
}

.slider-btn:active {
  transform: translateY(-50%) scale(.98);
}

.slider-btn.prev {
  left: 12px;
}

.slider-btn.next {
  right: 12px;
  /* move right outside the wrapper; adjust as needed */
}

.slider-btn i {
  font-size: 25px;
}

/* Make sure shadows are visible */

/* responsive: hide arrows on small screens and reduce offsets */
@media (max-width: 760px) {
  .slider-btn {
    display: none;
  }

  .feedback-slider-wrapper {
    padding: 8px 14px;
  }
}

/* ------------------ feedback end ------------------------- */
/* ------------------------ footer start --------------------------- */
.footer-flex {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	width: 100%;
}
.footer {
	padding: 50px 0 38px;
	background: url(../images/footer-bg.png) no-repeat center;
}
.footer .footer-title h3 {
	font-size: 25px;
	font-weight: 600;
	color: #fff;
	letter-spacing: 0.5px;
  margin-bottom: 20px;
}
li {
  list-style: none;
}

.links-content ul li a {
	font-size: 16px;
	color: #fff;
	text-decoration: none;
	letter-spacing: 0.5px;
	display: block;
}
.fa-solid.fa-caret-right {
	margin-right: 5px;
	font-size: 14px;
}

.links-content ul li:first-child {
	margin-top: 0px;
}
.links-content ul li {
	margin-top: 7px;
}
.footer-contact .contact-content h3 {
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.5px;
	margin-bottom: 14px;
}
.contact-content p a {
	display: block;
	margin-top: 20px;
	color: #fff;
	text-decoration: none;
  letter-spacing: 0.5px;
}
.footer .social-media {
	margin-top: 34px;
	margin-left: 30px;
}
.footer .social-media .fa-brands {
	font-size: 20px;
	background: #fff;
	padding: 6px 6px;
	border-radius: 40px;
	color: #11113c;
	margin: 0 5px;
}
.footer-grid {
	max-width: 300px;
	width: 100%;
}
.copyright-section {
	padding: 10px 0;
	background: #ffc636;
}
.copyright-section p {
	font-size: 16px;
	text-align: center;
	font-weight: 600;
	letter-spacing: 0.5px;
}