@charset "UTF-8";
body {
  font-family: "Poppins", sans-serif !important;
  font-weight: 400;
  color: #333333;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

p {
  font-weight: 400;
  color: #666666;
  margin-bottom: 1.25rem;
}

strong {
  font-weight: 700;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  overflow: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.preloader .preloader-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #025090 0%, #000000 100%);
  z-index: 1;
}
.preloader .smoke-effect {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(67, 172, 216, 0.3) 0%, rgba(2, 80, 144, 0) 70%);
  filter: blur(60px);
  z-index: 2;
  animation: smoke-reveal 3s ease-out forwards;
}
.preloader .loader-logo {
  position: relative;
  z-index: 3;
  max-width: 180px;
  height: auto;
  filter: blur(20px);
  opacity: 0;
  transform: scale(0.9);
  animation: logo-holy-reveal 2s ease-out 1.2s forwards;
}

@keyframes logo-holy-reveal {
  0% {
    opacity: 0;
    filter: blur(20px);
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
    transform: scale(1);
  }
}
.topbar-wrapper {
  background: linear-gradient(90deg, #025090 0%, #43acd8 100%);
  color: #ffffff;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 500;
}
.topbar-wrapper .left-content {
  display: flex;
  gap: 20px;
}
.topbar-wrapper .left-content .topbar-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.topbar-wrapper .left-content .topbar-item i {
  font-size: 18px;
}
.topbar-wrapper .right-content a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 10px;
  font-size: 18px;
  transition: opacity 0.3s;
}
.topbar-wrapper .right-content a:hover {
  opacity: 0.8;
}

.btn-search-icon {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 18px;
}

.main-navbar {
  background-color: transparent;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  padding: 0px;
  line-height: 40px;
}
@media (max-width: 1366px) {
  .main-navbar {
    background-color: #fff;
  }
}
.main-navbar .navbar-nav > .nav-item {
  position: relative;
}
.main-navbar .navbar-nav > .nav-item > .nav-link {
  position: relative;
  padding: 20px 20px !important;
  color: #333333;
  transition: color 0.3s ease;
  z-index: 2;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .main-navbar .navbar-nav > .nav-item > .nav-link {
    color: #1679b5 !important;
  }
}
.main-navbar .navbar-nav > .nav-item > .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background-color: #1679b5;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.main-navbar .navbar-nav > .nav-item > .nav-link:hover, .main-navbar .navbar-nav > .nav-item > .nav-link.active {
  color: #ffffff !important;
}
.main-navbar .navbar-nav > .nav-item > .nav-link:hover::before, .main-navbar .navbar-nav > .nav-item > .nav-link.active::before {
  height: 100%;
}
@media (max-width: 1366px) {
  .main-navbar .navbar-nav > .nav-item > .nav-link {
    padding: 0px 20px !important;
    border-bottom: solid #1679b5 1px;
  }
}
.main-navbar .dropdown-menu {
  border: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  margin-top: 15px !important;
}
.main-navbar .dropdown-menu .dropdown-item {
  padding: 5px 10px;
  font-weight: 400;
  color: #333333;
  transition: all 0.3s ease;
}
.main-navbar .dropdown-menu .dropdown-item:hover {
  background-color: #f8f9fa;
  color: #01417a;
  padding-left: 10px;
}
.main-navbar .dropdown-menu .dropdown-item::before {
  display: none !important;
}
@media (min-width: 992px) {
  .main-navbar .dropdown:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .main-navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }
}

.scrolled {
  background: #ffffff !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.scrolled a.nav-link {
  position: relative;
  padding: 20px 20px !important;
  transition: color 0.3s ease;
  z-index: 2;
  font-size: 16px;
  font-weight: 500;
  color: #1679b5 !important;
  text-transform: uppercase;
}
.scrolled .light-logo {
  display: block !important;
}
.scrolled .dark-logo {
  display: none !important;
}
.scrolled .btn-circle .btn-text {
  color: #1679b5 !important;
}

.light-logo {
  display: none;
}

.btn-circle, .btn-white {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 12px 15px 12px 15px;
  text-decoration: none !important;
  cursor: pointer;
  background: transparent;
  border: none;
  isolation: isolate;
}
.btn-circle .btn-text, .btn-white .btn-text {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
  pointer-events: none;
}
.btn-circle::before, .btn-white::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  margin: auto;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.btn-circle .btn-text {
  color: #ffffff;
}
@media (max-width: 767px) {
  .btn-circle .btn-text {
    color: #1679b5;
  }
}
.btn-circle::before {
  height: 35px;
  width: 35px;
  background: #dfdfdf;
  border-radius: 50px;
  opacity: 0.8;
}
.btn-circle:hover .btn-text {
  color: #ffffff !important;
}
.btn-circle:hover::before {
  width: 100%;
  background: linear-gradient(90deg, #025090 0%, #43acd8 100%);
  opacity: 1;
  box-shadow: 0 5px 15px rgba(1, 65, 122, 0.2);
}
.btn-white {
  padding: 12px 25px;
}
.btn-white .btn-text {
  color: #01417a !important;
}
.btn-white::before {
  height: 100%;
  width: 100%;
  background: #ffffff;
  border-radius: 50px;
}
.btn-white:hover .btn-text {
  color: #ffffff !important;
}
.btn-white:hover::before {
  background: #01417a;
  box-shadow: 0 5px 15px rgba(1, 65, 122, 0.1);
}

.main-footer {
  border-top: 1px solid #eeeeee;
  padding: 30px 0;
  text-align: center;
}
.main-footer p {
  margin: 0;
  font-size: 14px;
}

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 65, 122, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.search-overlay .close-search {
  position: absolute;
  top: 30px;
  right: 30px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 40px;
}
.search-overlay .search-container {
  width: 80%;
  max-width: 600px;
}
.search-overlay .search-container .form-control-search {
  background: transparent;
  border: none;
  border-bottom: 2px solid #ffffff;
  color: #ffffff;
  font-size: 24px;
  width: 100%;
  padding: 10px;
  border-radius: 0;
}
.search-overlay .search-container .form-control-search::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.search-overlay .search-container .form-control-search::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.search-overlay .search-container .form-control-search:focus {
  outline: none;
  box-shadow: none;
}
.search-overlay .search-container .btn-submit-search {
  margin-top: 20px;
  background: #ffffff;
  color: #01417a;
  border: none;
  padding: 10px 30px;
  font-weight: 600;
}

.hero-futuristic {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #025090 0%, #43acd8 100%);
  color: #ffffff;
  overflow: hidden;
  z-index: 1;
}
.hero-futuristic::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 150px;
  background-color: #ffffff;
  clip-path: ellipse(80% 100% at 50% 100%);
  z-index: 2;
}
.hero-futuristic .hero-content {
  position: relative;
  z-index: 3;
  margin-top: -50px;
}
.hero-futuristic .hero-title {
  font-family: "Teachers", sans-serif;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
}
.hero-futuristic .typing-highlight {
  display: inline-block;
  border-right: 3px solid rgba(255, 255, 255, 0.8);
  padding-right: 5px;
  min-height: 1.1em;
  vertical-align: bottom;
  animation: blink-cursor 0.8s step-end infinite;
}
@keyframes blink-cursor {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: #ffffff;
  }
}
.hero-futuristic .hero-subtitle {
  max-width: 700px;
  margin: 0 auto;
}

.our-project {
  padding: 60px 0;
  background-color: #ffffff;
}
.our-project h2 {
  color: #000;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.our-project .title-line {
  width: 60px;
  height: 4px;
  background: #025090;
  margin: 0 auto;
}
.our-project .project-tabs {
  gap: 20px;
  flex-wrap: wrap;
}
.our-project .project-tabs .tab-item {
  background: transparent;
  border: none;
  padding: 10px 25px;
  font-weight: 400;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #666;
  border: 2px solid transparent;
}
.our-project .project-tabs .tab-item.active {
  color: #000;
  border: 2px solid #000000;
}
.our-project .project-tabs .tab-item:hover {
  color: #000;
}
.our-project .project-card {
  background: #dfdfdf;
  border-radius: 0px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.our-project .project-card:hover {
  transform: translateY(-10px);
}
.our-project .project-card:hover .project-overlay {
  opacity: 1;
}
.our-project .project-card .project-img {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.our-project .project-card .project-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.our-project .project-card .project-img .project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 80, 144, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: 0.3s ease;
  font-weight: 600;
}
.our-project .project-card .project-info p {
  font-size: 14px;
  color: #fff;
  margin-bottom: 0;
}

.our-clients {
  padding: 60px 0;
  background-color: #ffffff;
  overflow: hidden;
}
.our-clients .section-title {
  font-size: 42px;
  text-align: center;
  color: #000;
  font-weight: 800;
  margin-bottom: 40px;
  text-transform: uppercase;
}
.our-clients .marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 15%, rgb(0, 0, 0) 85%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 15%, rgb(0, 0, 0) 85%, rgba(0, 0, 0, 0) 100%);
}
.our-clients .marquee-container .marquee-content {
  display: flex;
  gap: 50px;
  flex-shrink: 0;
  will-change: transform;
  animation: marquee-scroll 30s linear infinite;
}
.our-clients .marquee-container .marquee-content:hover {
  animation-play-state: paused;
}
.our-clients .marquee-container .client-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.our-clients .marquee-container .client-logo img {
  height: 40px;
  width: auto;
  transition: all 0.3s ease;
}
.our-clients .marquee-container .client-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.seamless-bg {
  position: relative;
  background: linear-gradient(to bottom, #025090 0%, #43acd8 30%, rgba(67, 172, 216, 0.4) 80%, rgba(255, 255, 255, 0) 100%), #ffffff;
  overflow: hidden;
}
.seamless-bg .venue-slider {
  background: transparent;
  position: relative;
  padding: 0px 0;
}
.seamless-bg .venue-slider .slider .slide-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  margin: 0 14px;
  transform: scale(0.92);
  transition: 0.5s;
  height: 400px;
}
.seamless-bg .venue-slider .slider .slide-card img {
  width: 100%;
  height: 620px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.6s;
}
.seamless-bg .venue-slider .slider .slide-card .overlay {
  position: absolute;
  inset: 0;
  padding: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: 0.4s;
}
.seamless-bg .venue-slider .slider .slide-card .overlay.default {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  opacity: 1;
}
.seamless-bg .venue-slider .slider .slide-card .overlay.default h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}
.seamless-bg .venue-slider .slider .slide-card .overlay.default p {
  font-size: 16px;
  max-width: 80%;
  opacity: 0.85;
  color: #fff;
  text-align: center;
  margin: 0 auto;
}
.seamless-bg .venue-slider .slider .slide-card .overlay.hover {
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4));
  opacity: 0;
}
.seamless-bg .venue-slider .slider .slide-card .overlay.hover h4 {
  font-size: 24px;
  margin-bottom: 18px;
}
.seamless-bg .venue-slider .slider .slide-card .overlay.hover .btn-detail {
  color: #ffd000;
  font-weight: 600;
  margin-bottom: 12px;
  text-decoration: none;
}
.seamless-bg .venue-slider .slider .slide-card .overlay.hover .btn-reserve {
  background: #025090;
  color: #fff;
  padding: 10px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}
.seamless-bg .venue-slider .slider .slide-card:hover {
  transform: scale(1);
}
.seamless-bg .venue-slider .slider .slide-card:hover img {
  transform: scale(1.1);
}
.seamless-bg .venue-slider .slider .slide-card:hover .default {
  opacity: 0;
}
.seamless-bg .venue-slider .slider .slide-card:hover .hover {
  opacity: 1;
}
.seamless-bg .venue-slider .slider:hover .slide-card {
  opacity: 0.4;
}
.seamless-bg .venue-slider .slider .slide-card:hover {
  opacity: 1;
}
.seamless-bg .venue-slider .slider .slick-center .slide-card {
  transform: scale(1);
}
.seamless-bg .brand-filter {
  background: transparent;
  position: relative;
  padding: 60px 0 20px;
}
.seamless-bg .brand-filter .title {
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 30px;
}
.seamless-bg .brand-filter .filter-tabs {
  display: flex;
  gap: 28px;
  list-style: none;
  padding: 0;
  justify-content: center;
}
.seamless-bg .brand-filter .filter-tabs li {
  color: #fff;
  cursor: pointer;
  padding: 10px 26px;
  border-radius: 40px;
  border: 1px solid transparent;
  transition: 0.3s;
  font-weight: 600;
}
.seamless-bg .brand-filter .filter-tabs li.active {
  border-color: #fff;
  color: #fff;
}
.seamless-bg .brand-filter .filter-tabs li:hover {
  color: #fff;
}

.hero-slider {
  height: 100vh;
  overflow: hidden;
  position: relative;
  margin-top: -80px;
}
.hero-slider:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10%;
  pointer-events: none;
  z-index: 5;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 40%, rgba(255, 255, 255, 0.8) 70%, #ffffff 100%);
}
.hero-slider .hero-wrapper {
  height: 100%;
  position: relative;
}
.hero-slider .hero-track {
  height: 100%;
  position: relative;
}
.hero-slider .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.9s ease, opacity 0.9s ease;
}
.hero-slider .hero-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-slider .hero-slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}
.hero-slider .hero-slide.prev {
  transform: translateX(-100%);
  opacity: 0;
  z-index: 1;
}
.hero-slider .hero-pagination {
  position: absolute;
  right: 11%;
  bottom: 48%;
  z-index: 10;
  color: #fff;
  display: grid;
  gap: 14px;
}
.hero-slider .hero-pagination span {
  cursor: pointer;
  opacity: 0.4;
}
.hero-slider .hero-pagination span.active {
  opacity: 1;
}

.hero-slide {
  position: relative;
}
.hero-slide .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.hero-slide .caption {
  position: absolute;
  bottom: 30%;
  left: 8%;
  color: #fff;
  max-width: 720px;
  position: relative;
  z-index: 2;
}
.hero-slide .caption img {
  max-width: 190px;
  height: auto;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .hero-slide .caption img {
    max-width: 100px;
    height: auto;
  }
}
.hero-slide .caption.text-center {
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.hero-slide .caption span,
.hero-slide .caption h1,
.hero-slide .caption p {
  opacity: 0;
  transform: translateY(40px);
  color: #fff;
  font-size: 17px;
}
.hero-slide .caption span {
  display: inline-block;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: all 0.6s ease;
}
.hero-slide .caption h1 {
  font-size: 70px;
  font-weight: 600;
  margin-bottom: 12px;
  transition: all 0.7s ease;
}
.hero-slide .caption p {
  font-size: 26px;
  opacity: 0.9;
  transition: all 0.8s ease;
  font-weight: 600;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .hero-slide .caption p {
    font-size: 16px;
  }
}
.hero-slide.active .caption span {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}
.hero-slide.active .caption h1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}
.hero-slide.active .caption p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}
.hero-slide.prev .caption span,
.hero-slide.prev .caption h1,
.hero-slide.prev .caption p {
  opacity: 0;
  transform: translateY(40px);
  transition-delay: 0s;
}

.cta-airz {
  padding: 80px 0;
  background-image: url("../images/bg-blue.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.cta-airz .cta-box {
  background: linear-gradient(135deg, #eef4fb, #f7fbff);
  border-radius: 24px;
  padding: 50px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
}
.cta-airz .cta-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}
.cta-airz .cta-image {
  text-align: center;
}
.cta-airz .cta-image img {
  max-width: 100%;
  border-radius: 18px;
  transform: translateY(20px) !important;
  transition: all 0.6s ease;
}
.cta-airz .cta-box:hover .cta-image img {
  transform: translateY(0);
}
.cta-airz .cta-content {
  padding-left: 20px;
}
.cta-airz .cta-content .cta-eyebrow {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 2px;
  color: #002f65;
  margin-bottom: 10px;
}
.cta-airz .cta-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}
.cta-airz .cta-content .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #2f6fb2;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.cta-airz .cta-content .btn-cta .arrow {
  transition: transform 0.3s ease;
}
.cta-airz .cta-content .btn-cta:hover {
  background: #1e4f88;
}
.cta-airz .cta-content .btn-cta:hover .arrow {
  transform: translateX(6px);
}
.cta-airz .cta-content .cta-note {
  margin-top: 16px;
  color: #6c757d;
}
@media (max-width: 992px) {
  .cta-airz .cta-content {
    padding-left: 0;
    text-align: center;
  }
  .cta-airz .cta-content h2 {
    font-size: 30px;
  }
}

.footer-airz {
  position: relative;
  margin-top: 0px;
  padding-top: 142px;
  color: #0f1720;
  background: linear-gradient(to top, #025090 0%, #43acd8 30%, rgba(67, 172, 216, 0.4) 80%, rgba(255, 255, 255, 0) 100%), #ffffff;
}
.footer-airz::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  height: 160px;
  border-bottom-left-radius: 100% 80px;
  border-bottom-right-radius: 100% 80px;
}
.footer-airz a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}
.footer-airz a:hover {
  color: #ffffff;
  padding-left: 6px;
}
.footer-airz h6 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 18px;
}
.footer-airz ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-airz ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #fff !important;
}
.footer-airz .footer-brand img {
  margin-bottom: 16px;
}
.footer-airz .footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  max-width: 320px;
  color: #fff !important;
}
.footer-airz .footer-contact li {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #fff !important;
}
.footer-airz .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 40px;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-airz .footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #fff !important;
}
.footer-airz .footer-bottom .footer-social a {
  font-size: 20px;
  color: #fff !important;
  transition: 0.3s;
}
.footer-airz .footer-bottom .footer-social a:hover {
  transform: translateY(-4px);
}
@media (max-width: 992px) {
  .footer-airz {
    text-align: center;
  }
  .footer-airz .footer-brand p {
    margin: 0 auto;
    color: #fff;
  }
  .footer-airz .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

.hero-slide .caption {
  position: absolute;
  left: 8%;
  color: #fff;
  max-width: 720px;
}
@media (max-width: 1366px) {
  .hero-slide .caption {
    bottom: 13%;
  }
}
.hero-slide .caption h1 {
  font-size: 45px;
  font-weight: 800;
  margin-bottom: 10px;
  transition: all 0.7s ease;
}

:root {
  --primary: #4c6ef5;
  --text: #111;
  --muted: #777;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* TAG */
.tag {
  font-size: 12px;
  color: var(--primary);
  position: relative;
  padding-left: 20px;
}

.tag::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 5px;
}

.section-services {
  padding: 80px 0;
}

.label {
  font-size: 14px;
  letter-spacing: 2px;
  color: #1679b5;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
}

.label::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #1679b5;
  border-radius: 50%;
}

.title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
}

.desc {
  color: #666;
  max-width: 420px;
}

.link {
  font-weight: 600;
  text-decoration: none;
  color: #000;
  position: relative;
}

.link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #000;
  transition: 0.3s;
}

.link:hover::after {
  width: 100%;
}

.card-service {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
}

.card-service img {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}

.card-service:hover img {
  transform: scale(1.12);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #fff;
  transition: 0.4s;
}

.card-service:hover .overlay {
  background: rgba(0, 0, 0, 0.55);
}

.number {
  font-size: 48px;
  font-weight: 700;
  opacity: 0.8;
  transform: translateY(10px);
  transition: 0.4s;
}

.card-title {
  font-size: 18px;
  font-weight: 500;
  transform: translateY(10px);
  transition: 0.4s;
}

.card-service:hover .number,
.card-service:hover .card-title {
  transform: translateY(0);
}

.card-service:hover {
  transform: translateY(-10px);
}

.section-process {
  padding: 100px 0;
  background: #fff;
  overflow: hidden;
}

.process-heading {
  margin-bottom: 72px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #1679b5;
  margin-bottom: 24px;
}

.section-eyebrow-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #1679b5;
  display: inline-block;
}

.section-title {
  font-size: 42px;
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -2px;
  color: #000;
  margin: 0;
}

.section-description {
  max-width: 460px;
  font-size: 18px;
  line-height: 1.7;
  color: #2f2f2f;
  margin-bottom: 20px;
}

.section-link {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.section-link:hover {
  transform: translateX(6px);
  opacity: 0.8;
  color: #000;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.process-line {
  position: absolute;
  top: 74px;
  left: 11%;
  right: 11%;
  height: 1px;
  background: #cfd5df;
  z-index: 0;
}

.process-item {
  position: relative;
  text-align: center;
  z-index: 1;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.process-item.show {
  opacity: 1;
  transform: translateY(0);
}

.process-circle {
  width: 152px;
  height: 152px;
  border-radius: 50%;
  background: #d8dfeb;
  margin: 0 auto 28px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.process-circle img {
  width: 52px;
  height: 52px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.35s ease;
}

.process-badge {
  position: absolute;
  top: 0;
  right: 2px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #289acc;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.process-item-title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 14px;
}

.process-item-text {
  max-width: 280px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: #555b66;
}

.process-item:hover .process-circle {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  background: #d1d9e7;
}

.process-item:hover .process-circle img {
  transform: scale(1.08);
}

.process-item:hover .process-item-title {
  color: #1679b5;
}

@media (max-width: 1199.98px) {
  .section-title {
    font-size: 60px;
  }
  .process-steps {
    gap: 24px;
  }
  .process-circle {
    width: 140px;
    height: 140px;
  }
}
@media (max-width: 991.98px) {
  .section-process {
    padding: 80px 0;
  }
  .section-title {
    font-size: 52px;
  }
  .process-heading {
    margin-bottom: 56px;
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }
  .process-line {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .section-title {
    font-size: 40px;
    line-height: 1.05;
    letter-spacing: -1px;
  }
  .section-description,
  .section-link {
    text-align: left;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .process-circle {
    width: 132px;
    height: 132px;
    margin-bottom: 22px;
  }
  .process-circle img {
    width: 46px;
    height: 46px;
  }
  .process-item-title {
    font-size: 18px;
  }
  .process-item-text {
    font-size: 15px;
    max-width: 100%;
  }
}
.floating-wa-support {
  position: fixed;
  right: 24px;
  bottom: -4px;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  animation: floatingWaEntrance 0.8s ease;
}

.floating-wa-link {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  gap: 1px;
  text-decoration: none;
}

.floating-wa-bubble {
  max-width: 220px;
  background: #1679b5;
  color: #fff;
  border-radius: 20px;
  padding: 16px 18px;
  box-shadow: 0 18px 45px rgba(17, 66, 145, 0.25);
  transform: translateY(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease;
  animation: floatingWaBubble 3s ease-in-out infinite;
  margin-bottom: 100px;
  position: relative;
  left: 20px;
}

.floating-wa-bubble h5 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.floating-wa-bubble p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.95;
  color: #ffffff;
}

.floating-wa-character-wrap {
  position: relative;
  width: 150px;
  flex-shrink: 0;
  animation: floatingWaCharacter 3.2s ease-in-out infinite;
  transition: transform 0.35s ease;
}

.floating-wa-character-wrap::before {
  content: "";
  position: absolute;
  inset: 18px 12px 8px 12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.22) 0%, rgba(37, 211, 102, 0) 72%);
  animation: floatingWaPulse 2.2s ease-out infinite;
  z-index: 0;
}

.floating-wa-character {
  position: relative;
  width: 100%;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  z-index: 1;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.18));
  transition: transform 0.35s ease, filter 0.35s ease;
}

.floating-wa-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #289acc;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  padding: 8px 10px;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.floating-wa-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: floatingWaDot 1.2s infinite ease-in-out;
}

.floating-wa-link:hover .floating-wa-bubble {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(17, 66, 145, 0.32);
}

.floating-wa-link:hover .floating-wa-character-wrap {
  transform: translateY(-6px) scale(1.03);
}

.floating-wa-link:hover .floating-wa-character {
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.22));
}

@keyframes floatingWaEntrance {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes floatingWaCharacter {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes floatingWaBubble {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
@keyframes floatingWaPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.45;
  }
  70% {
    transform: scale(1.15);
    opacity: 0;
  }
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}
@keyframes floatingWaDot {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}
@media (max-width: 767.98px) {
  .floating-wa-support {
    right: 14px;
    bottom: 14px;
  }
  .floating-wa-link {
    gap: 10px;
    align-items: center;
  }
  .floating-wa-bubble {
    max-width: 190px;
    padding: 12px 14px;
    border-radius: 16px;
  }
  .floating-wa-bubble h5 {
    font-size: 15px;
  }
  .floating-wa-bubble p {
    font-size: 12px;
  }
  .floating-wa-bubble::after {
    right: 74px;
    bottom: 14px;
    width: 14px;
    height: 14px;
  }
  .floating-wa-character-wrap {
    width: 88px;
  }
  .floating-wa-badge {
    font-size: 10px;
    padding: 6px 8px;
  }
}
.about-hero {
  position: relative;
  min-height: 360px;
  background: url("../images/4.png") no-repeat;
  background-position: center -500px;
  background-size: cover;
  overflow: hidden;
  margin-top: -80px;
  padding-top: 150px;
}

.services-hero {
  position: relative;
  min-height: 360px;
  background: url("../images/6.png") center center/cover no-repeat;
  overflow: hidden;
  margin-top: -80px;
  padding-top: 150px;
}

.contact-hero {
  position: relative;
  min-height: 360px;
  background: url("../images/8.png") center center/cover no-repeat;
  overflow: hidden;
  margin-top: -80px;
  padding-top: 150px;
}

.project-hero {
  position: relative;
  min-height: 360px;
  background: url("../images/5.png") center center/cover no-repeat;
  overflow: hidden;
  margin-top: -80px;
  padding-top: 150px;
}

.product-hero {
  position: relative;
  min-height: 360px;
  background: url("../images/7.png") center center/cover no-repeat;
  overflow: hidden;
  margin-top: -80px;
  padding-top: 150px;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 16, 42, 0.78) 0%, rgba(8, 16, 42, 0.48) 45%, rgba(8, 16, 42, 0.65) 100%);
}

.about-hero .container {
  position: relative;
  z-index: 2;
}

.about-hero-content {
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.about-hero-content:hover {
  transform: translateY(-4px);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.section-eyebrow-light {
  color: #b8c8ff;
}

.section-eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #289acc;
  display: inline-block;
}

.about-hero-title {
  font-size: 64px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: -1.5px;
  transition: transform 0.4s ease;
}

.about-hero-content:hover .about-hero-title {
  transform: translateX(6px);
}

.about-hero-tagline {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.about-hero-tagline:hover {
  transform: translateY(-4px);
  opacity: 1;
}

.section-about-content {
  padding: 100px 0;
  background: #f7f7f7;
}

.about-text-card {
  padding-right: 28px;
  transition: transform 0.35s ease;
}

.about-text-card:hover {
  transform: translateY(-4px);
}

.about-text {
  font-size: 17px;
  line-height: 1.9;
  color: #5c6270;
  margin-bottom: 22px;
}

.about-text strong {
  color: #2f3542;
  font-weight: 700;
}

.dropcap {
  float: left;
  font-size: 54px;
  line-height: 0.9;
  font-weight: 500;
  color: #002f65;
  margin-right: 12px;
  margin-top: 6px;
}

.about-image-wrap {
  position: relative;
  overflow: hidden;
  max-width: 480px;
  margin-left: auto;
  background: #e9e9e9;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-image-wrap:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.12);
}

.about-image-wrap:hover::after {
  opacity: 1;
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s ease;
}

.about-image-wrap:hover .about-image {
  transform: scale(1.06);
}

@media (max-width: 1199.98px) {
  .about-hero-title {
    font-size: 56px;
  }
}
@media (max-width: 991.98px) {
  .about-hero {
    min-height: 300px;
  }
  .about-hero-title {
    font-size: 48px;
  }
  .about-hero-tagline {
    margin-top: 18px;
  }
  .section-about-content {
    padding: 80px 0;
  }
  .about-text-card {
    padding-right: 0;
  }
  .about-image-wrap {
    margin: 0 auto;
  }
}
@media (max-width: 767.98px) {
  .about-hero {
    min-height: 260px;
  }
  .section-eyebrow {
    font-size: 12px;
    gap: 10px;
    margin-bottom: 16px;
  }
  .about-hero-title {
    font-size: 38px;
    letter-spacing: -1px;
  }
  .about-hero-tagline {
    font-size: 15px;
  }
  .section-about-content {
    padding: 64px 0;
  }
  .about-text {
    font-size: 15px;
    line-height: 1.85;
  }
  .dropcap {
    font-size: 42px;
    margin-right: 10px;
    margin-top: 4px;
  }
}
.section-services-tabs {
  padding: 100px 0;
  background: #f6f6f4;
  overflow: hidden;
}

.services-media {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #e9e9e9;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.services-media:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.12);
}

.services-media-img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.services-media:hover .services-media-img {
  transform: scale(1.06);
}

.services-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.16) 100%);
  pointer-events: none;
}

.services-media-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: #1f2d3d;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.services-media-badge span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6983d8;
  display: inline-block;
}

.services-tabs-head {
  margin-bottom: 34px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #6983d8;
}

.section-label-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #6983d8;
  display: inline-block;
}

.services-tabs-title {
  margin: 0;
  font-size: 42px;
  line-height: 1.04;
  letter-spacing: -1.5px;
  font-weight: 700;
  color: #101010;
  max-width: 700px;
}

.services-accordion {
  border-top: 1px solid rgba(16, 16, 16, 0.1);
}

.service-item {
  border-bottom: 1px solid rgba(16, 16, 16, 0.1);
  transition: background 0.35s ease, transform 0.35s ease;
}

.service-item:hover {
  background: rgba(255, 255, 255, 0.55);
}

.service-trigger {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  cursor: pointer;
  transition: padding 0.35s ease;
}

.service-title {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 500;
  color: #111;
  transition: color 0.35s ease, transform 0.35s ease;
}

.service-item:hover .service-title {
  transform: translateX(8px);
  color: #289acc;
}

.service-icon {
  position: relative;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  background: #111;
  transform: translate(-50%, -50%);
  transition: transform 0.35s ease, opacity 0.35s ease, background 0.35s ease;
}

.service-icon::after {
  width: 2px;
  height: 22px;
}

.service-item.active .service-icon::before,
.service-item.active .service-icon::after,
.service-item:hover .service-icon::before,
.service-item:hover .service-icon::after {
  background: #4f6fcf;
}

.service-item.active .service-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.service-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.35s ease, padding 0.35s ease;
}

.service-item.active .service-content {
  opacity: 1;
  max-height: 220px;
}

.service-content-inner {
  padding: 0 72px 28px 0;
  font-size: 18px;
  line-height: 1.9;
  color: #5f6673;
  transform: translateY(-8px);
  transition: transform 0.35s ease;
}

.service-item.active .service-content-inner {
  transform: translateY(0);
}

.services-tabs-footer {
  margin-top: 28px;
}

.services-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.35s ease, color 0.35s ease;
}

.services-link::after {
  content: "↗";
  font-size: 18px;
  transition: transform 0.35s ease;
}

.services-link:hover {
  color: #4f6fcf;
  transform: translateX(6px);
}

.services-link:hover::after {
  transform: translate(3px, -3px);
}

@media (max-width: 1199.98px) {
  .services-tabs-title {
    font-size: 44px;
  }
  .service-title {
    font-size: 28px;
  }
  .service-content-inner {
    padding-right: 28px;
  }
}
@media (max-width: 991.98px) {
  .section-services-tabs {
    padding: 80px 0;
  }
  .services-media-img {
    min-height: 460px;
  }
  .services-tabs-title {
    font-size: 38px;
  }
  .service-trigger {
    padding: 24px 0;
  }
  .service-title {
    font-size: 24px;
  }
  .service-content-inner {
    font-size: 16px;
    padding: 0 10px 24px 0;
  }
}
@media (max-width: 767.98px) {
  .section-services-tabs {
    padding: 64px 0;
  }
  .services-media {
    border-radius: 22px;
  }
  .services-media-img {
    min-height: 320px;
  }
  .services-media-badge {
    left: 16px;
    bottom: 16px;
    font-size: 11px;
    padding: 10px 12px;
  }
  .section-label {
    font-size: 12px;
    gap: 10px;
  }
  .section-label-dot {
    width: 14px;
    height: 14px;
  }
  .services-tabs-title {
    font-size: 30px;
    letter-spacing: -1px;
  }
  .service-trigger {
    padding: 20px 0;
    gap: 16px;
  }
  .service-title {
    font-size: 20px;
  }
  .service-icon {
    width: 22px;
    height: 22px;
  }
  .service-icon::before {
    width: 18px;
  }
  .service-icon::after {
    height: 18px;
  }
  .service-content-inner {
    font-size: 15px;
    line-height: 1.8;
    padding: 0 0 20px;
  }
}
.section-projects {
  padding: 100px 0;
  background: linear-gradient(180deg, #44a7dc 0%, #dff0f8 100%);
  overflow: hidden;
}

.projects-heading {
  max-width: 760px;
  margin: 0 auto 56px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffffff;
  text-transform: uppercase;
}

.section-label-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  display: inline-block;
}

.projects-title {
  margin: 0 0 14px;
  font-size: 31px;
  line-height: 1.05;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -1.5px;
}

.projects-subtitle {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: stretch;
}

.project-card {
  position: relative;
  min-height: 450px;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 34px 28px;
  isolation: isolate;
  cursor: pointer;
  transition: transform 0.45s ease, box-shadow 0.45s ease, filter 0.45s ease, opacity 0.45s ease;
  opacity: 1;
  transform: scale(1);
}

.project-card.is-dimmed {
  opacity: 0.35;
  filter: saturate(0.7);
}

.project-card.is-active {
  opacity: 1;
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(10, 32, 60, 0.18);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(10, 32, 60, 0.18);
}

.project-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -3;
  transition: transform 0.8s ease, filter 0.45s ease;
}

.project-card-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, rgba(104, 178, 223, 0.16) 0%, rgba(18, 28, 46, 0.38) 100%);
  transition: background 0.45s ease, opacity 0.45s ease;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(6, 19, 39, 0.03) 10%, rgba(8, 16, 32, 0.68) 100%);
  opacity: 0.88;
  transition: opacity 0.45s ease;
}

.project-card:hover .project-card-image,
.project-card.is-active .project-card-image {
  transform: scale(1.06);
}

.project-card:hover .project-card-overlay,
.project-card.is-active .project-card-overlay {
  background: linear-gradient(180deg, rgba(8, 18, 38, 0.12) 0%, rgba(9, 16, 29, 0.42) 100%);
}

.project-card-content {
  position: relative;
  width: 100%;
  text-align: center;
  color: #ffffff;
  transform: translateY(10px);
  transition: transform 0.45s ease;
}

.project-card:hover .project-card-content,
.project-card.is-active .project-card-content {
  transform: translateY(0);
}

.project-card-title {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
  transition: transform 0.35s ease, color 0.35s ease;
}

.project-card-text {
  max-width: 300px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  opacity: 0.95;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.project-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  min-width: 150px;
  padding: 14px 26px;
  border-radius: 999px;
  background: #025090;
  color: #111111;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(18px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s ease, opacity 0.35s ease, background 0.35s ease, visibility 0.35s ease;
}

.project-card:hover .project-card-link,
.project-card.is-active .project-card-link {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.project-card-link:hover {
  background: rgb(90, 201, 244);
  color: #111111;
}

.project-card:hover .project-card-title,
.project-card.is-active .project-card-title {
  transform: translateY(-2px);
}

.project-card:hover .project-card-text,
.project-card.is-active .project-card-text {
  opacity: 1;
  transform: translateY(-2px);
}

@media (max-width: 1399.98px) {
  .projects-grid {
    gap: 22px;
  }
  .project-card {
    min-height: 540px;
    padding: 28px 22px;
  }
  .project-card-title {
    font-size: 24px;
  }
}
@media (max-width: 991.98px) {
  .section-projects {
    padding: 80px 0;
  }
  .projects-title {
    font-size: 40px;
  }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .project-card {
    min-height: 500px;
  }
  .project-card.is-dimmed {
    opacity: 1;
    filter: none;
  }
  .project-card-link {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@media (max-width: 767.98px) {
  .section-projects {
    padding: 64px 0;
  }
  .projects-heading {
    margin-bottom: 40px;
  }
  .section-label {
    font-size: 12px;
    gap: 10px;
  }
  .section-label-dot {
    width: 13px;
    height: 13px;
  }
  .projects-title {
    font-size: 30px;
    letter-spacing: -1px;
  }
  .projects-subtitle {
    font-size: 15px;
    line-height: 1.75;
  }
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .project-card {
    min-height: 430px;
    border-radius: 24px;
    padding: 24px 18px;
  }
  .project-card-title {
    font-size: 22px;
  }
  .project-card-text {
    font-size: 14px;
    max-width: 100%;
  }
  .project-card-link {
    min-width: 138px;
    padding: 12px 20px;
    font-size: 14px;
  }
}
.project-detail-hero {
  padding: 72px 0 0;
  background: #f7f7f5;
  overflow: hidden;
}

.project-detail-hero-head {
  max-width: 840px;
  margin: 0 auto 42px;
}

.project-detail-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid rgba(14, 18, 30, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #5e6573;
  background: #ffffff;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.project-detail-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.project-detail-title {
  margin: 18px 0 16px;
  font-size: 50px;
  line-height: 1;
  letter-spacing: -2px;
  font-weight: 700;
  color: #0d1020;
}

.project-detail-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  color: #69707d;
}

.project-detail-meta span {
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}

.project-detail-meta span:hover {
  color: #2d5fd3;
  transform: translateY(-2px);
}

.project-detail-meta span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #b2b8c2;
  transform: translateY(-50%);
}

.project-detail-banner {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
}

.project-detail-banner-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 1s ease;
}

.project-detail-banner:hover .project-detail-banner-img {
  transform: scale(1.05);
}

.project-detail-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 18, 35, 0.12) 0%, rgba(8, 18, 35, 0.18) 100%);
  pointer-events: none;
}

.project-detail-content {
  padding: 88px 0 100px;
  background: #f7f7f5;
}

.project-detail-intro {
  margin-bottom: 42px;
}

.project-detail-lead {
  font-size: 18px;
  line-height: 1.95;
  color: #4f5663;
  margin: 0;
}

.project-detail-block {
  margin-bottom: 48px;
}

.project-detail-block-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.project-detail-line {
  width: 42px;
  height: 2px;
  background: #5d79d5;
  flex-shrink: 0;
  transition: width 0.35s ease;
}

.project-detail-block:hover .project-detail-line {
  width: 64px;
}

.project-detail-block h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 700;
  color: #0e1020;
  letter-spacing: -1.4px;
  transition: transform 0.35s ease, color 0.35s ease;
}

.project-detail-block:hover h2 {
  transform: translateX(4px);
  color: #214fc4;
}

.project-detail-block p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.95;
  color: #5b6270;
}

.project-detail-block p:last-child {
  margin-bottom: 0;
}

.project-detail-block strong {
  color: #1b2230;
  font-weight: 700;
}

.project-detail-visual {
  margin-bottom: 54px;
}

.project-detail-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f1f1f1 100%);
  padding: 42px;
  box-shadow: 0 18px 40px rgba(12, 20, 36, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-detail-image-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 54px rgba(12, 20, 36, 0.1);
}

.project-detail-image {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  display: block;
  transition: transform 0.7s ease;
}

.project-detail-image-card:hover .project-detail-image {
  transform: scale(1.04);
}

.project-detail-quote {
  margin: 54px 0;
}

.project-detail-quote-inner {
  border-radius: 26px;
  background: #ffffff;
  padding: 34px 36px;
  box-shadow: 0 16px 38px rgba(10, 16, 28, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.project-detail-quote-inner:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 46px rgba(10, 16, 28, 0.1);
}

.project-detail-quote-inner p {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.5;
  color: #111521;
  font-weight: 600;
}

.project-detail-quote-inner span {
  font-size: 14px;
  color: #69707d;
  letter-spacing: 0.6px;
}

.project-detail-gallery {
  margin-top: 8px;
  margin-bottom: 54px;
}

.project-detail-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #eaeaea;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-detail-gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(10, 18, 32, 0.12);
}

.project-detail-gallery-item img {
  width: 100%;
  height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.project-detail-gallery-item:hover img {
  transform: scale(1.06);
}

.project-detail-footer {
  padding-top: 10px;
}

.project-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  color: #10131d;
  transition: color 0.35s ease, transform 0.35s ease;
}

.project-detail-back::before {
  content: "←";
  font-size: 18px;
  transition: transform 0.35s ease;
}

.project-detail-back:hover {
  color: #2d5fd3;
  transform: translateX(-4px);
}

.project-detail-back:hover::before {
  transform: translateX(-4px);
}

@media (max-width: 1199.98px) {
  .project-detail-title {
    font-size: 60px;
  }
  .project-detail-block h2 {
    font-size: 40px;
  }
  .project-detail-banner {
    height: 540px;
  }
}
@media (max-width: 991.98px) {
  .project-detail-hero {
    padding-top: 56px;
  }
  .project-detail-title {
    font-size: 48px;
    letter-spacing: -1px;
  }
  .project-detail-banner {
    height: 460px;
  }
  .project-detail-content {
    padding: 72px 0 80px;
  }
  .project-detail-block h2 {
    font-size: 34px;
  }
  .project-detail-image-card {
    padding: 28px;
  }
  .project-detail-quote-inner p {
    font-size: 22px;
  }
}
@media (max-width: 767.98px) {
  .project-detail-hero {
    padding-top: 42px;
  }
  .project-detail-hero-head {
    margin-bottom: 28px;
  }
  .project-detail-badge {
    font-size: 11px;
    padding: 7px 12px;
  }
  .project-detail-title {
    font-size: 34px;
    line-height: 1.08;
  }
  .project-detail-meta {
    gap: 12px;
    font-size: 12px;
  }
  .project-detail-meta span:not(:last-child)::after {
    display: none;
  }
  .project-detail-banner {
    height: 300px;
  }
  .project-detail-content {
    padding: 56px 0 64px;
  }
  .project-detail-lead,
  .project-detail-block p {
    font-size: 15px;
    line-height: 1.85;
  }
  .project-detail-block {
    margin-bottom: 38px;
  }
  .project-detail-block-head {
    gap: 12px;
    margin-bottom: 14px;
  }
  .project-detail-line {
    width: 28px;
  }
  .project-detail-block h2 {
    font-size: 28px;
    letter-spacing: -0.8px;
  }
  .project-detail-image-card {
    border-radius: 22px;
    padding: 20px;
  }
  .project-detail-quote {
    margin: 40px 0;
  }
  .project-detail-quote-inner {
    border-radius: 20px;
    padding: 24px 20px;
  }
  .project-detail-quote-inner p {
    font-size: 18px;
  }
  .project-detail-gallery-item {
    border-radius: 18px;
  }
  .project-detail-gallery-item img {
    height: 240px;
  }
  .project-detail-footer {
    padding-top: 0;
  }
}
.nav-light ul li a.nav-link {
  color: #1679b5 !important;
}

.section-contact {
  padding: 100px 0;
  background: #f7f7f5;
  overflow: hidden;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #289acc;
  text-transform: uppercase;
}

.section-label-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #289acc;
  display: inline-block;
}

.contact-content {
  max-width: 460px;
}

.contact-title {
  margin: 0 0 28px;
  font-size: 42px;
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -2px;
  color: #0f1117;
  transition: transform 0.35s ease;
}

.contact-content:hover .contact-title {
  transform: translateX(4px);
}

.contact-description {
  margin: 0 0 72px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 600;
  color: #24262d;
  max-width: 520px;
}

.contact-info-card {
  transition: transform 0.35s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
}

.contact-info-label {
  display: block;
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 600;
  color: #111318;
}

.contact-phone {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 500;
  color: #0d1020;
  text-decoration: none;
  transition: color 0.35s ease, transform 0.35s ease;
}

.contact-phone:hover {
  color: #1679b5;
  transform: translateX(4px);
}

.contact-socials {
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-social {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #10131d;
  text-decoration: none;
  background: transparent;
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.contact-social:hover {
  transform: translateY(-4px);
  background: #ffffff;
  color: #1679b5;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.contact-form-wrap {
  padding-left: 34px;
}

.contact-form {
  width: 100%;
}

.contact-field {
  position: relative;
  margin-bottom: 34px;
}

.contact-input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(16, 19, 29, 0.15);
  background: transparent;
  padding: 0 14px 14px 14px;
  font-size: 18px;
  line-height: 1.4;
  color: #10131d;
  outline: none;
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.contact-input::-moz-placeholder {
  color: #a2a4aa;
  -moz-transition: color 0.35s ease;
  transition: color 0.35s ease;
}

.contact-input::placeholder {
  color: #a2a4aa;
  transition: color 0.35s ease;
}

.contact-input:focus {
  border-color: #1679b5;
  box-shadow: inset 0 -1px 0 #1679b5;
}

.contact-input:focus::-moz-placeholder {
  color: #7f8694;
}

.contact-input:focus::placeholder {
  color: #7f8694;
}

.contact-textarea {
  min-height: 200px;
  resize: vertical;
  padding-top: 10px;
}

.contact-submit {
  min-width: 140px;
  padding: 16px 28px;
  border: 0;
  border-radius: 10px;
  background: #1679b5;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.contact-submit:hover {
  background: #124fb2;
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(15, 87, 183, 0.22);
}

.contact-submit:active {
  transform: translateY(-1px);
}

@media (max-width: 1199.98px) {
  .contact-title {
    font-size: 64px;
  }
  .contact-description {
    font-size: 20px;
  }
  .contact-phone {
    font-size: 40px;
  }
  .contact-input {
    font-size: 20px;
  }
}
@media (max-width: 991.98px) {
  .section-contact {
    padding: 80px 0;
  }
  .contact-form-wrap {
    padding-left: 0;
  }
  .contact-description {
    margin-bottom: 48px;
    max-width: 100%;
  }
  .contact-title {
    font-size: 54px;
  }
  .contact-phone {
    font-size: 34px;
  }
  .contact-input {
    font-size: 18px;
  }
  .contact-submit {
    font-size: 18px;
    padding: 14px 24px;
  }
}
@media (max-width: 767.98px) {
  .section-contact {
    padding: 64px 0;
  }
  .section-label {
    font-size: 12px;
    gap: 10px;
    margin-bottom: 18px;
  }
  .section-label-dot {
    width: 14px;
    height: 14px;
  }
  .contact-title {
    font-size: 40px;
    letter-spacing: -1px;
    margin-bottom: 18px;
  }
  .contact-description {
    font-size: 16px;
    line-height: 1.45;
    margin-bottom: 36px;
  }
  .contact-info-label {
    font-size: 16px;
  }
  .contact-phone {
    font-size: 28px;
    margin-bottom: 22px;
  }
  .contact-socials {
    gap: 12px;
  }
  .contact-social {
    width: 38px;
    height: 38px;
  }
  .contact-field {
    margin-bottom: 28px;
  }
  .contact-input {
    font-size: 16px;
    padding: 0 8px 12px 8px;
  }
  .contact-textarea {
    min-height: 160px;
  }
  .contact-submit {
    min-width: 120px;
    font-size: 16px;
    padding: 13px 20px;
  }
}
.section-contact-map {
  padding: 0 0 100px;
  background: #f7f7f5;
  overflow: hidden;
}

.contact-map-content {
  max-width: 460px;
}

.contact-map-title {
  margin: 0 0 20px;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -1.5px;
  color: #0f1117;
  transition: transform 0.35s ease;
}

.contact-map-content:hover .contact-map-title {
  transform: translateX(4px);
}

.contact-map-description {
  margin: 0 0 36px;
  font-size: 18px;
  line-height: 1.8;
  color: #5d6370;
}

.contact-map-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-map-info-item {
  padding: 0 0 22px;
  border-bottom: 1px solid rgba(16, 19, 29, 0.08);
  transition: transform 0.35s ease;
}

.contact-map-info-item:hover {
  transform: translateX(6px);
}

.contact-map-info-label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgb(0, 47, 101);
}

.contact-map-info-item p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: #1b1e27;
}

.contact-map-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 600;
  color: #1679b5;
  text-decoration: none;
  transition: transform 0.35s ease, color 0.35s ease;
}

.contact-map-link::after {
  content: "↗";
  font-size: 18px;
  transition: transform 0.35s ease;
}

.contact-map-link:hover {
  color: #124fb2;
  transform: translateX(4px);
}

.contact-map-link:hover::after {
  transform: translate(3px, -3px);
}

.contact-map-frame-wrap {
  position: relative;
}

.contact-map-frame {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.08);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  background: #e8ebf1;
}

.contact-map-frame:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.12);
}

.contact-map-frame iframe {
  width: 100%;
  height: 520px;
  border: 0;
  display: block;
  filter: grayscale(0.15) contrast(1.02);
  transition: transform 0.6s ease, filter 0.45s ease;
}

.contact-map-frame:hover iframe {
  transform: scale(1.02);
  filter: grayscale(0) contrast(1.05);
}

@media (max-width: 1199.98px) {
  .contact-map-title {
    font-size: 48px;
  }
}
@media (max-width: 991.98px) {
  .section-contact-map {
    padding: 0 0 80px;
  }
  .contact-map-title {
    font-size: 42px;
  }
  .contact-map-description {
    font-size: 17px;
  }
  .contact-map-frame iframe {
    height: 460px;
  }
}
@media (max-width: 767.98px) {
  .section-contact-map {
    padding: 0 0 64px;
  }
  .contact-map-title {
    font-size: 34px;
    letter-spacing: -1px;
  }
  .contact-map-description {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 28px;
  }
  .contact-map-info-item p {
    font-size: 16px;
  }
  .contact-map-link {
    font-size: 15px;
  }
  .contact-map-frame {
    border-radius: 22px;
  }
  .contact-map-frame iframe {
    height: 340px;
  }
}
.slider-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 5;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: all;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #1679b5;
  font-size: 20px;
  font-weight: 600;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  transition: all 0.35s ease;
}

.slider-prev {
  left: 55px;
}

.slider-next {
  right: 55px;
}

.slider-arrow:hover {
  transform: translateY(-50%) scale(1.1);
  background: #1679b5;
  color: #fff;
  box-shadow: 0 22px 50px rgba(15, 87, 183, 0.35);
}

.slider-arrow span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.slider-prev:hover span {
  transform: translateX(-4px);
}

.slider-next:hover span {
  transform: translateX(4px);
}

.venue-slider {
  position: relative;
}

@media (max-width: 768px) {
  .slider-arrow {
    width: 54px;
    height: 54px;
    font-size: 20px;
  }
  .slider-prev {
    left: 10px;
  }
  .slider-next {
    right: 10px;
  }
}
.timeline-section {
  padding: 100px 0;
  background: #f7f7f7;
  overflow: hidden;
}
.timeline-section .container {
  width: min(1200px, 92%);
  margin: 0 auto;
}
.timeline-section .section-heading {
  max-width: 700px;
  margin: 0 auto 70px;
  text-align: center;
}
.timeline-section .section-heading .subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1c2c74;
  margin-bottom: 12px;
}
.timeline-section .section-heading h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
}
.timeline-section .section-heading p {
  font-size: 17px;
  line-height: 1.8;
  color: #666;
  margin: 0;
}
.timeline-section .timeline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  row-gap: 55px;
  align-items: center;
}
.timeline-section .timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #d9d9d9;
  transform: translateX(-50%);
}
.timeline-section .timeline-dot {
  position: relative;
  grid-column: 2;
  justify-self: center;
  width: 18px;
  height: 18px;
  background: #1679b5;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 8px rgba(16, 21, 63, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.timeline-section .timeline-dot:hover {
  transform: scale(1.15);
  box-shadow: 0 0 0 12px rgba(16, 21, 63, 0.14);
}
.timeline-section .timeline-item.left {
  grid-column: 1;
  padding-right: 30px;
}
.timeline-section .timeline-item.right {
  grid-column: 3;
  padding-left: 30px;
}
.timeline-section .timeline-card {
  border-radius: 18px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  will-change: transform;
}
.timeline-section .timeline-card:hover {
  transform: translateY(-8px);
}
.timeline-section .image-card {
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
}
.timeline-section .image-card img {
  width: 100%;
  height: 270px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.55s ease, filter 0.45s ease;
}
.timeline-section .image-card:hover {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}
.timeline-section .image-card:hover img {
  transform: scale(1.06);
  filter: brightness(1.03);
}
.timeline-section .text-card {
  background: transparent;
  padding: 10px 0;
}
.timeline-section .text-card .year {
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  color: #767676;
  margin-bottom: 10px;
  transition: color 0.35s ease, transform 0.35s ease;
}
.timeline-section .text-card h3 {
  font-size: 36px;
  line-height: 1.25;
  font-weight: 700;
  color: #1679b5;
  margin-bottom: 16px;
  transition: color 0.35s ease;
}
.timeline-section .text-card p {
  font-size: 22px;
  line-height: 1.8;
  color: #666;
  margin: 0;
  max-width: 95%;
}
.timeline-section .text-card:hover .year {
  color: #10153f;
  transform: translateX(4px);
}
.timeline-section .text-card:hover h3 {
  color: #1679b5;
}
.timeline-section .fade-up {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.timeline-section .fade-up.show-anim {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1199px) {
  .timeline-section .section-heading h2 {
    font-size: 36px;
  }
  .timeline-section .text-card h3 {
    font-size: 31px;
  }
  .timeline-section .text-card p {
    font-size: 19px;
  }
  .timeline-section .image-card img {
    height: 240px;
  }
}
@media (max-width: 991px) {
  .timeline-section {
    padding: 80px 0;
  }
  .timeline-section .timeline {
    grid-template-columns: 34px 1fr;
    row-gap: 35px;
  }
  .timeline-section .timeline-line {
    left: 16px;
    transform: none;
  }
  .timeline-section .timeline-dot,
  .timeline-section .last-dot {
    grid-column: 1;
    justify-self: center;
    width: 16px;
    height: 16px;
    box-shadow: 0 0 0 6px rgba(16, 21, 63, 0.08);
  }
  .timeline-section .timeline-item.left, .timeline-section .timeline-item.right {
    grid-column: 2;
    padding: 0 0 0 22px;
  }
  .timeline-section .section-heading {
    margin-bottom: 50px;
  }
  .timeline-section .section-heading h2 {
    font-size: 32px;
  }
  .timeline-section .section-heading p {
    font-size: 16px;
  }
  .timeline-section .text-card .year {
    font-size: 18px;
  }
  .timeline-section .text-card h3 {
    font-size: 28px;
  }
  .timeline-section .text-card p {
    font-size: 18px;
    max-width: 100%;
  }
  .timeline-section .image-card img {
    height: 240px;
  }
}
@media (max-width: 767px) {
  .timeline-section {
    padding: 70px 0;
  }
  .timeline-section .section-heading h2 {
    font-size: 28px;
  }
  .timeline-section .section-heading p {
    font-size: 15px;
    line-height: 1.7;
  }
  .timeline-section .text-card .year {
    font-size: 16px;
  }
  .timeline-section .text-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .timeline-section .text-card p {
    font-size: 16px;
    line-height: 1.7;
  }
  .timeline-section .image-card {
    border-radius: 14px;
  }
  .timeline-section .image-card img {
    height: 210px;
  }
}
@media (max-width: 480px) {
  .timeline-section .container {
    width: 94%;
  }
  .timeline-section .timeline {
    grid-template-columns: 26px 1fr;
    row-gap: 28px;
  }
  .timeline-section .timeline-line {
    left: 12px;
  }
  .timeline-section .timeline-dot,
  .timeline-section .last-dot {
    width: 14px;
    height: 14px;
  }
  .timeline-section .timeline-item.left, .timeline-section .timeline-item.right {
    padding-left: 18px;
  }
  .timeline-section .section-heading {
    margin-bottom: 40px;
  }
  .timeline-section .section-heading .subtitle {
    font-size: 12px;
  }
  .timeline-section .section-heading h2 {
    font-size: 24px;
  }
  .timeline-section .image-card img {
    height: 185px;
  }
  .timeline-section .text-card h3 {
    font-size: 21px;
  }
  .timeline-section .text-card p {
    font-size: 15px;
  }
}

.social-showcase-section {
  padding: 100px 0;
  background: #fff;
  overflow: hidden;
}
.social-showcase-section .container {
  width: min(1320px, 92%);
  margin: 0 auto;
}
.social-showcase-section .section-header {
  margin-bottom: 50px;
}
.social-showcase-section .section-header .section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #289acc;
  margin-bottom: 18px;
}
.social-showcase-section .section-header .section-label .dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #289acc;
  display: inline-block;
}
.social-showcase-section .section-header h2 {
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  color: #0f0f0f;
  margin: 0;
}
.social-showcase-section .social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.social-showcase-section .social-card {
  min-height: 280px;
  background: #ffffff;
  border-radius: 0;
  padding: 38px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}
.social-showcase-section .social-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(111, 136, 201, 0.12), rgba(16, 21, 63, 0.04));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.social-showcase-section .social-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}
.social-showcase-section .social-card:hover::before {
  opacity: 1;
}
.social-showcase-section .social-card:hover .social-icon {
  transform: scale(1.08) rotate(-4deg);
  background: #10153f;
  color: #fff;
}
.social-showcase-section .social-card:hover .social-content h3 {
  color: #1c2c74;
}
.social-showcase-section .social-card:hover .social-content p {
  color: #333;
}
.social-showcase-section .social-card .social-icon,
.social-showcase-section .social-card .social-content {
  position: relative;
  z-index: 2;
}
.social-showcase-section .social-card .social-icon {
  width: 92px;
  height: 92px;
  border-radius: 24px;
  background: #f1f3fb;
  color: #10153f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  transition: all 0.4s ease;
  margin-bottom: 30px;
}
.social-showcase-section .social-card .social-content h3 {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
  transition: color 0.35s ease;
}
.social-showcase-section .social-card .social-content p {
  font-size: 20px;
  line-height: 1.6;
  color: #777;
  margin: 0;
  transition: color 0.35s ease;
}
.social-showcase-section .fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.social-showcase-section .fade-up.show-anim {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1199px) {
  .social-showcase-section .section-header h2 {
    font-size: 68px;
  }
  .social-showcase-section .social-card {
    min-height: 240px;
  }
  .social-showcase-section .social-card .social-content h3 {
    font-size: 28px;
  }
  .social-showcase-section .social-card .social-content p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .social-showcase-section {
    padding: 80px 0;
  }
  .social-showcase-section .section-header {
    margin-bottom: 35px;
  }
  .social-showcase-section .section-header h2 {
    font-size: 54px;
  }
  .social-showcase-section .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .social-showcase-section .social-card {
    min-height: 220px;
    padding: 30px 24px;
  }
  .social-showcase-section .social-card .social-icon {
    width: 78px;
    height: 78px;
    font-size: 36px;
    border-radius: 20px;
  }
  .social-showcase-section .social-card .social-content h3 {
    font-size: 25px;
  }
  .social-showcase-section .social-card .social-content p {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .social-showcase-section {
    padding: 70px 0;
  }
  .social-showcase-section .section-header .section-label {
    font-size: 12px;
    gap: 10px;
  }
  .social-showcase-section .section-header .section-label .dot {
    width: 14px;
    height: 14px;
  }
  .social-showcase-section .section-header h2 {
    font-size: 42px;
  }
  .social-showcase-section .social-grid {
    grid-template-columns: 1fr;
  }
  .social-showcase-section .social-card {
    min-height: 190px;
  }
  .social-showcase-section .social-card .social-content h3 {
    font-size: 23px;
  }
  .social-showcase-section .social-card .social-content p {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .social-showcase-section .container {
    width: 94%;
  }
  .social-showcase-section .section-header h2 {
    font-size: 34px;
  }
  .social-showcase-section .social-card {
    padding: 24px 20px;
    min-height: 170px;
  }
  .social-showcase-section .social-card .social-icon {
    width: 68px;
    height: 68px;
    font-size: 30px;
    margin-bottom: 22px;
  }
  .social-showcase-section .social-card .social-content h3 {
    font-size: 21px;
  }
  .social-showcase-section .social-card .social-content p {
    font-size: 15px;
  }
}

.features-highlight-section {
  padding: 110px 0;
  background: #fff;
  overflow: hidden;
}
.features-highlight-section .container {
  width: min(1280px, 92%);
  margin: 0 auto;
}
.features-highlight-section .section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}
.features-highlight-section .section-heading .section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #289acc;
  margin-bottom: 18px;
}
.features-highlight-section .section-heading .section-label .dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #289acc;
  display: inline-block;
}
.features-highlight-section .section-heading h2 {
  font-size: 42px;
  line-height: 1.05;
  font-weight: 700;
  color: #0d0d0d;
  margin: 0;
  letter-spacing: -1.5px;
}
.features-highlight-section .features-layout {
  display: grid;
  grid-template-columns: 1fr 520px 1fr;
  gap: 30px;
  align-items: center;
}
.features-highlight-section .features-column {
  display: flex;
  flex-direction: column;
  gap: 54px;
}
.features-highlight-section .left .feature-item {
  text-align: right;
  margin-left: auto;
}
.features-highlight-section .right .feature-item {
  text-align: left;
}
.features-highlight-section .feature-item {
  max-width: 320px;
  padding: 10px 8px;
  transition: transform 0.35s ease;
}
.features-highlight-section .feature-item h3 {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
  color: #171727;
  margin-bottom: 14px;
  transition: color 0.35s ease;
}
.features-highlight-section .feature-item p {
  font-size: 17px;
  line-height: 1.7;
  color: #56637c;
  margin: 0;
  transition: color 0.35s ease;
}
.features-highlight-section .feature-item:hover {
  transform: translateY(-6px);
}
.features-highlight-section .feature-item:hover h3 {
  color: #1679b5;
}
.features-highlight-section .feature-item:hover p {
  color: #39465f;
}
.features-highlight-section .features-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.features-highlight-section .product-image-wrap {
  position: relative;
  max-width: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.features-highlight-section .product-image-wrap::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(109, 130, 199, 0.18) 0%, rgba(109, 130, 199, 0) 70%);
  border-radius: 50%;
  z-index: 0;
  animation: pulseGlow 3.5s ease-in-out infinite;
}
.features-highlight-section .product-image-wrap img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.12));
  transition: transform 0.45s ease, filter 0.45s ease;
  animation: floatImage 4s ease-in-out infinite;
}
.features-highlight-section .product-image-wrap:hover img {
  transform: scale(1.04);
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.16));
}
.features-highlight-section .fade-up {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.features-highlight-section .fade-up.show-anim {
  opacity: 1;
  transform: translateY(0);
}
@keyframes floatImage {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes pulseGlow {
  0% {
    transform: scale(1);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.75;
  }
}
@media (max-width: 1199px) {
  .features-highlight-section .section-heading h2 {
    font-size: 58px;
  }
  .features-highlight-section .features-layout {
    grid-template-columns: 1fr 420px 1fr;
    gap: 20px;
  }
  .features-highlight-section .feature-item {
    max-width: 280px;
  }
  .features-highlight-section .feature-item h3 {
    font-size: 20px;
  }
  .features-highlight-section .feature-item p {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .features-highlight-section {
    padding: 90px 0;
  }
  .features-highlight-section .section-heading {
    margin-bottom: 50px;
  }
  .features-highlight-section .section-heading h2 {
    font-size: 46px;
  }
  .features-highlight-section .features-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .features-highlight-section .features-center {
    order: 1;
  }
  .features-highlight-section .features-column.left {
    order: 2;
  }
  .features-highlight-section .features-column.right {
    order: 3;
  }
  .features-highlight-section .features-column {
    gap: 28px;
  }
  .features-highlight-section .left .feature-item,
  .features-highlight-section .right .feature-item {
    text-align: center;
    margin: 0 auto;
    max-width: 620px;
  }
  .features-highlight-section .product-image-wrap {
    max-width: 500px;
    margin: 0 auto;
  }
  .features-highlight-section .product-image-wrap::before {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 767px) {
  .features-highlight-section {
    padding: 70px 0;
  }
  .features-highlight-section .section-heading .section-label {
    font-size: 12px;
    gap: 10px;
  }
  .features-highlight-section .section-heading .section-label .dot {
    width: 14px;
    height: 14px;
  }
  .features-highlight-section .section-heading h2 {
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: -0.5px;
  }
  .features-highlight-section .feature-item h3 {
    font-size: 21px;
  }
  .features-highlight-section .feature-item p {
    font-size: 15px;
    line-height: 1.7;
  }
  .features-highlight-section .product-image-wrap {
    padding: 10px;
  }
  .features-highlight-section .product-image-wrap::before {
    width: 240px;
    height: 240px;
  }
  .features-highlight-section .product-image-wrap img {
    max-width: 380px;
  }
}
@media (max-width: 480px) {
  .features-highlight-section .container {
    width: 94%;
  }
  .features-highlight-section .section-heading {
    margin-bottom: 38px;
  }
  .features-highlight-section .section-heading h2 {
    font-size: 28px;
  }
  .features-highlight-section .feature-item h3 {
    font-size: 19px;
    margin-bottom: 10px;
  }
  .features-highlight-section .feature-item p {
    font-size: 14px;
  }
  .features-highlight-section .product-image-wrap::before {
    width: 200px;
    height: 200px;
  }
  .features-highlight-section .product-image-wrap img {
    max-width: 300px;
  }
}

.service-accordion-section {
  padding: 110px 0;
  background: #fff;
  overflow: hidden;
}
.service-accordion-section .container {
  width: min(1220px, 92%);
  margin: 0 auto;
}
.service-accordion-section .service-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: start;
}
.service-accordion-section .service-image-side {
  position: sticky;
  top: 100px;
}
.service-accordion-section .service-image-box {
  position: relative;
  overflow: hidden;
  background: #eaeaea;
  border-radius: 0;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}
.service-accordion-section .service-image-box img {
  width: 100%;
  height: 575px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: opacity 0.35s ease, transform 0.5s ease;
}
.service-accordion-section .service-image-box:hover img {
  transform: scale(1.04);
}
.service-accordion-section .service-image-box.is-changing img {
  opacity: 0.2;
  transform: scale(1.06);
}
.service-accordion-section .section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #289acc;
  margin-bottom: 36px;
}
.service-accordion-section .section-label .dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #289acc;
  display: inline-block;
  flex-shrink: 0;
}
.service-accordion-section .service-accordion {
  border-top: 1px solid transparent;
}
.service-accordion-section .accordion-item {
  border-bottom: 1px solid #d8d8d8;
  transition: all 0.35s ease;
}
.service-accordion-section .accordion-item.active .accordion-header {
  color: #1679b5;
}
.service-accordion-section .accordion-item.active .accordion-header .icon {
  color: #1679b5;
  transform: rotate(180deg);
}
.service-accordion-section .accordion-item.active .accordion-body {
  max-height: 260px;
  opacity: 1;
  padding: 0 0 28px;
}
.service-accordion-section .accordion-header {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 700;
  color: #151515;
  transition: color 0.3s ease, transform 0.3s ease;
}
.service-accordion-section .accordion-header:hover {
  color: #1679b5;
}
.service-accordion-section .accordion-header .icon {
  font-size: 34px;
  line-height: 1;
  color: #222;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  min-width: 24px;
  text-align: center;
}
.service-accordion-section .accordion-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.35s ease;
}
.service-accordion-section .accordion-body p {
  margin: 0;
  max-width: 92%;
  font-size: 16px;
  line-height: 1.9;
  color: #5f6673;
}
.service-accordion-section .fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.service-accordion-section .fade-up.show-anim {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1199px) {
  .service-accordion-section .service-grid {
    gap: 40px;
  }
  .service-accordion-section .service-image-box img {
    height: 520px;
  }
  .service-accordion-section .accordion-header {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .service-accordion-section {
    padding: 85px 0;
  }
  .service-accordion-section .service-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .service-accordion-section .service-image-side {
    position: relative;
    top: auto;
  }
  .service-accordion-section .service-image-box img {
    height: 460px;
  }
  .service-accordion-section .section-label {
    margin-bottom: 24px;
  }
  .service-accordion-section .accordion-body p {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .service-accordion-section {
    padding: 70px 0;
  }
  .service-accordion-section .section-label {
    font-size: 12px;
    gap: 10px;
  }
  .service-accordion-section .section-label .dot {
    width: 14px;
    height: 14px;
  }
  .service-accordion-section .service-image-box img {
    height: 340px;
  }
  .service-accordion-section .accordion-header {
    font-size: 20px;
    padding: 20px 0;
  }
  .service-accordion-section .accordion-header .icon {
    font-size: 28px;
  }
  .service-accordion-section .accordion-body p {
    font-size: 15px;
    line-height: 1.8;
  }
}
@media (max-width: 480px) {
  .service-accordion-section .container {
    width: 94%;
  }
  .service-accordion-section .service-image-box img {
    height: 280px;
  }
  .service-accordion-section .accordion-header {
    font-size: 18px;
    gap: 14px;
  }
  .service-accordion-section .accordion-body p {
    font-size: 14px;
  }
}

select.contact-input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #f7f7f5;
  cursor: pointer;
  color: #aaa;
}

.contact-field {
  position: relative;
}

.contact-field::after {
  content: "▾";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 14px;
  color: #888;
}

.product-showcase-section {
  padding: 100px 0;
  background: #f5f5f5;
  overflow: hidden;
}

.product-showcase-section .container {
  width: min(1280px, 92%);
  margin: 0 auto;
}

.product-showcase-section .product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 56px;
}

.product-showcase-section .product-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s ease;
}

.product-showcase-section .product-card:hover {
  transform: translateY(-8px);
}

.product-showcase-section .product-image-wrap {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.product-showcase-section .product-image-wrap img {
  width: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.5s ease;
}

.product-showcase-section .product-card:hover .product-image-wrap img {
  transform: scale(1.04);
}

.product-showcase-section .product-overlay {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: rgba(22, 121, 181, 0.32);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: flex;
  align-items: flex-end;
  padding: 34px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s ease;
}

.product-showcase-section .product-overlay-content {
  max-width: 360px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.product-showcase-section .product-card:hover .product-overlay {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.product-showcase-section .product-card:hover .product-overlay-content {
  opacity: 1;
  transform: translateY(0);
}

.product-showcase-section .product-overlay-content h3 {
  font-size: 26px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.product-showcase-section .product-overlay-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 22px;
}

.product-showcase-section .product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  min-width: 140px;
  background: #ffffff;
  color: #171727;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.product-showcase-section .product-card:hover .product-btn:hover {
  background: #171727;
  color: #ffffff;
  transform: translateY(-2px);
}

.product-showcase-section .product-name {
  margin-top: 18px;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 600;
  color: #171727;
}

.product-showcase-section .fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.product-showcase-section .fade-up.show-anim {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .product-showcase-section {
    padding: 80px 0;
  }
  .product-showcase-section .product-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .product-showcase-section .product-overlay {
    padding: 28px;
  }
  .product-showcase-section .product-overlay-content h3 {
    font-size: 23px;
  }
  .product-showcase-section .product-overlay-content p {
    font-size: 15px;
  }
  .product-showcase-section .product-name {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .product-showcase-section {
    padding: 70px 0;
  }
  .product-showcase-section .container {
    width: 94%;
  }
  .product-showcase-section .product-grid {
    gap: 28px;
  }
  .product-showcase-section .product-overlay {
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 22px;
  }
  .product-showcase-section .product-overlay-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .product-showcase-section .product-overlay-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  .product-showcase-section .product-btn {
    min-width: 120px;
    padding: 10px 18px;
    font-size: 14px;
  }
  .product-showcase-section .product-name {
    margin-top: 14px;
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .product-showcase-section .product-overlay {
    padding: 18px;
  }
  .product-showcase-section .product-overlay-content h3 {
    font-size: 18px;
  }
  .product-showcase-section .product-overlay-content p {
    font-size: 13px;
    margin-bottom: 14px;
  }
  .product-showcase-section .product-btn {
    min-width: 110px;
    padding: 10px 15px;
    font-size: 13px;
  }
  .product-showcase-section .product-name {
    font-size: 18px;
  }
}
.product-listing-page {
  padding: 70px 0 110px;
  background: #f7f7f7;
  overflow: hidden;
}

.product-listing-page .container {
  width: min(1460px, 94%);
  margin: 0 auto;
}

.product-listing-page .product-top {
  max-width: 1100px;
  margin: 0 0 28px;
}

.product-listing-page .breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: #7b7b7b;
}

.product-listing-page .breadcrumb a {
  color: #1679b5;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.product-listing-page .breadcrumb a:hover {
  color: #1d9f7a;
}

.product-listing-page h1 {
  margin: 0 0 8px;
  font-size: 46px;
  line-height: 1.1;
  font-weight: 800;
  color: #111;
}

.product-listing-page .product-top-desc {
  margin: 0 0 18px;
  max-width: 1040px;
  font-size: 18px;
  line-height: 1.7;
  color: #555;
}

.product-listing-page .brand-tabs,
.product-listing-page .capacity-tabs,
.product-listing-page .type-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e1e1e1;
}

.product-listing-page .brand-btn,
.product-listing-page .filter-chip {
  border: 1px solid #d6d6d6;
  background: #fff;
  color: #444;
  padding: 10px 16px;
  font-size: 14px;
  line-height: 1;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-listing-page .brand-btn:hover,
.product-listing-page .filter-chip:hover {
  transform: translateY(-2px);
  border-color: #1679b5;
  color: #1679b5;
}

.product-listing-page .filter-chip.active {
  background: #1679b5;
  color: #fff;
  border-color: #1679b5;
}

.product-listing-page .brand-btn.active {
  background: #fff;
  border-color: #1679b5;
}

.product-listing-page .product-layout {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 34px;
  align-items: start;
}

.product-listing-page .product-sidebar {
  position: sticky;
  top: 90px;
}

.product-listing-page .sidebar-toggle {
  display: none;
  width: 100%;
  border: 0;
  background: #1679b5;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 14px;
  cursor: pointer;
}

.product-listing-page .sidebar-inner {
  background: #fff;
  border: 1px solid #e7e7e7;
  padding: 26px 22px;
}

.product-listing-page .filter-group {
  margin-bottom: 28px;
}

.product-listing-page .filter-group:last-child {
  margin-bottom: 0;
}

.product-listing-page .filter-group h3 {
  font-size: 18px;
  font-weight: 700;
  color: #303030;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d9d9d9;
}

.product-listing-page .filter-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-listing-page .filter-links li + li {
  margin-top: 12px;
}

.product-listing-page .filter-links a {
  text-decoration: none;
  color: #555;
  font-size: 16px;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.product-listing-page .filter-links a:hover,
.product-listing-page .filter-links a.active {
  color: #1679b5;
  transform: translateX(3px);
}

.product-listing-page .checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #555;
  cursor: pointer;
  transition: color 0.3s ease;
}

.product-listing-page .checkbox-item:hover {
  color: #1679b5;
}

.product-listing-page .checkbox-item input {
  width: 16px;
  height: 16px;
  accent-color: #1679b5;
  cursor: pointer;
}

.product-listing-page .product-content {
  min-width: 0;
}

.product-listing-page .product-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.product-listing-page .toolbar-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.product-listing-page .toolbar-left span {
  font-size: 15px;
  color: #666;
}

.product-listing-page .sort-select {
  border: 1px solid #d6d6d6;
  background: #fff;
  color: #444;
  padding: 10px 14px;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
}

.product-listing-page .pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.product-listing-page .page-btn,
.product-listing-page .page-arrow {
  min-width: 36px;
  height: 36px;
  border: 1px solid #d9e9e3;
  background: #fff;
  color: #1679b5;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-listing-page .page-btn:hover,
.product-listing-page .page-arrow:hover {
  background: #e9f8f2;
  transform: translateY(-2px);
}

.product-listing-page .page-btn.active {
  background: #1679b5;
  color: #fff;
  border-color: #1679b5;
}

.product-listing-page .no-results {
  background: #fff;
  border: 1px solid #e7e7e7;
  padding: 24px;
  border-radius: 8px;
  color: #555;
  margin-bottom: 20px;
}

.product-listing-page .product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.product-listing-page .catalog-card {
  position: relative;
  background: #fff;
  border: 1px solid #ebebeb;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.product-listing-page .catalog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
  border-color: #d9f1e7;
}

.product-listing-page .catalog-card:hover .card-image img {
  transform: scale(1.04);
}

.product-listing-page .catalog-card:hover .buy-btn {
  background: #1679b5;
}

.product-listing-page .catalog-card:hover .icon-btn {
  background: linear-gradient(135deg, #58a6ff, #4c7eff);
  transform: scale(1.05);
}

.product-listing-page .card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  background: #c8d7f4;
  color: #1b2c5d;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 4px;
}

.product-listing-page .card-image {
  padding: 26px 22px 12px;
  overflow: hidden;
}

.product-listing-page .card-image img {
  width: 100%;
  height: 275px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  transition: transform 0.45s ease;
}

.product-listing-page .card-body {
  padding: 0 18px 18px;
}

.product-listing-page .card-body h3 {
  margin: 0 0 14px;
  font-size: 19px;
  line-height: 1.6;
  font-weight: 700;
  color: #222;
  min-height: 92px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-listing-page .card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.product-listing-page .card-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  background: #202020;
  color: #fff;
}

.product-listing-page .card-tags .green {
  background: #1679b5;
}

.product-listing-page .card-tags .blue {
  background: #1679b5;
}

.product-listing-page .card-tags .orange {
  background: #1679b5;
}

.product-listing-page .card-price {
  margin-bottom: 16px;
}

.product-listing-page .old-price {
  display: block;
  font-size: 13px;
  color: #a0a0a0;
  text-decoration: line-through;
  margin-bottom: 4px;
}

.product-listing-page .new-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.product-listing-page .new-price-wrap strong {
  font-size: 18px;
  color: #111;
  font-weight: 800;
}

.product-listing-page .new-price-wrap em {
  font-style: normal;
  color: #ff4a4a;
  font-size: 14px;
  font-weight: 700;
}

.product-listing-page .card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.product-listing-page .icon-btn {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #6ec1ff, #4b79ff);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.product-listing-page .buy-btn {
  border: 0;
  background: #1679b5;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 11px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-listing-page .bottom-pagination {
  margin-top: 30px;
  justify-content: center;
}

.product-listing-page .fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.product-listing-page .fade-up.show-anim {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1399px) {
  .product-listing-page .product-layout {
    grid-template-columns: 290px 1fr;
  }
  .product-listing-page .product-grid {
    gap: 22px;
  }
  .product-listing-page .card-image img {
    height: 240px;
  }
  .product-listing-page h1 {
    font-size: 40px;
  }
}
@media (max-width: 1199px) {
  .product-listing-page .product-layout {
    grid-template-columns: 270px 1fr;
    gap: 24px;
  }
  .product-listing-page .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-listing-page .card-body h3 {
    min-height: auto;
  }
}
@media (max-width: 991px) {
  .product-listing-page {
    padding: 50px 0 90px;
  }
  .product-listing-page h1 {
    font-size: 34px;
  }
  .product-listing-page .product-top-desc {
    font-size: 16px;
  }
  .product-listing-page .product-layout {
    grid-template-columns: 1fr;
  }
  .product-listing-page .product-sidebar {
    position: relative;
    top: auto;
  }
  .product-listing-page .sidebar-toggle {
    display: block;
  }
  .product-listing-page .sidebar-inner {
    display: none;
  }
  .product-listing-page .product-sidebar.active .sidebar-inner {
    display: block;
  }
  .product-listing-page .product-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .product-listing-page .top-pagination {
    align-self: flex-end;
  }
}
@media (max-width: 767px) {
  .product-listing-page {
    padding: 40px 0 80px;
  }
  .product-listing-page .container {
    width: 94%;
  }
  .product-listing-page h1 {
    font-size: 28px;
  }
  .product-listing-page .brand-btn,
  .product-listing-page .filter-chip {
    padding: 9px 12px;
    font-size: 13px;
  }
  .product-listing-page .product-grid {
    grid-template-columns: 1fr;
  }
  .product-listing-page .card-image img {
    height: 220px;
  }
  .product-listing-page .card-body {
    padding: 0 16px 16px;
  }
  .product-listing-page .card-body h3 {
    font-size: 17px;
    line-height: 1.5;
  }
  .product-listing-page .top-pagination {
    align-self: flex-start;
  }
}
@media (max-width: 480px) {
  .product-listing-page .sidebar-inner {
    padding: 20px 16px;
  }
  .product-listing-page .filter-group h3 {
    font-size: 16px;
  }
  .product-listing-page .card-image {
    padding: 22px 16px 8px;
  }
  .product-listing-page .card-image img {
    height: 190px;
  }
  .product-listing-page .page-btn,
  .product-listing-page .page-arrow {
    min-width: 32px;
    height: 32px;
    font-size: 13px;
  }
  .product-listing-page .icon-btn {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }
  .product-listing-page .buy-btn {
    padding: 10px 16px;
  }
}
.contact-label {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
  color: #888;
  padding-left: 15px;
}

.contact-checkbox-group {
  display: flex;
  flex-wrap: wrap;
}

.contact-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-checkbox:hover {
  border-color: #0d6efd;
  background: #f8fbff;
}

.contact-checkbox input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: #0d6efd;
  cursor: pointer;
}

.contact-checkbox span {
  font-size: 16px;
  color: #888;
}

.brand-btn {
  padding: 0 !important;
}
.brand-btn img {
  max-width: 90px;
  padding: 10px;
  -o-object-fit: contain;
     object-fit: contain;
}

.page-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 38px 24px 70px;
}

.page-header {
  margin-bottom: 24px;
}
.page-header h1 {
  font-size: 42px;
  font-weight: 900;
}
.page-header p {
  color: #626b7f;
  line-height: 1.8;
}

.page-kicker {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  color: #1679b5;
  font-size: 13px;
  font-weight: 700;
}
.page-kicker .dot {
  width: 16px;
  height: 16px;
  background: #1679b5;
  border-radius: 50%;
}

/* LAYOUT */
.layout-grid {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 22px;
}

.form-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* CARD */
.card {
  background: #fff;
  border: 1px solid #dde2ef;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(18, 28, 74, 0.08);
  transition: 0.3s;
}
.card:hover {
  transform: translateY(-4px);
}

.card-head {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}
.card-head h3 {
  font-size: 18px;
  font-weight: 800;
}

.step-num {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: #edf1ff;
  color: rgb(22, 121, 181);
  display: grid;
  place-items: center;
  font-weight: 800;
}

/* INPUT */
.input-grid {
  display: grid;
  gap: 14px;
}

.two-cols {
  grid-template-columns: repeat(2, 1fr);
}

.field-group label {
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}

.text-input {
  height: 52px;
  border-radius: 16px;
  border: 1.5px solid #dde2ef;
  background: #fafbff;
  padding: 0 16px;
}
.text-input:focus {
  border-color: #1679b5;
  box-shadow: 0 0 0 4px rgba(109, 130, 199, 0.14);
  outline: none;
}

/* OPTION */
.option-grid {
  display: grid;
  gap: 12px;
}

.option-card {
  padding: 18px;
  border-radius: 18px;
  border: 1.5px solid #dde2ef;
  cursor: pointer;
  transition: 0.3s;
}
.option-card:hover {
  border-color: #1679b5;
  transform: translateY(-3px);
}
.option-card.active {
  background: #f4f7ff;
  border-color: #1679b5;
}
.option-card input {
  display: none;
}

.option-title {
  font-weight: 800;
}

.option-desc {
  font-size: 13px;
  color: #626b7f;
}

/* RESULT */
.result-panel {
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
}

.result-top {
  padding: 24px;
  background: linear-gradient(135deg, #004179, #1679b5);
  color: #fff;
  margin-bottom: 20px;
}

.result-number {
  font-size: 42px;
  font-weight: 900;
}

.result-pk {
  margin-top: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  text-align: center;
  color: #fff;
  text-decoration: none !important;
}

.result-upgrade {
  margin-top: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px dashed rgba(255, 255, 255, 0.3);
}

/* BUTTON */
.reset-btn {
  width: 100%;
  height: 52px;
  border-radius: 16px;
  background: #004179;
  color: #fff;
  font-weight: 800;
  border: none;
  margin-top: 20px;
}
.reset-btn:hover {
  background: #1679b5;
}

.recommendation-box {
  margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .layout-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .two-cols {
    grid-template-columns: 1fr;
  }
  .page-header h1 {
    font-size: 28px;
  }
}
.product-feature-section {
  padding: 100px 0;
  background: #fff;
  overflow: hidden;
}

.product-feature-section .container {
  width: min(1280px, 92%);
  margin: 0 auto;
}

.product-feature-section .product-feature-head {
  text-align: center;
  margin-bottom: 60px;
}

.product-feature-section .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #289acc;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.product-feature-section .section-kicker .dot {
  width: 18px;
  height: 18px;
  background: #289acc;
  border-radius: 50%;
  display: inline-block;
}

.product-feature-section .product-feature-head h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.05;
  font-weight: 800;
  color: #111;
  letter-spacing: -1.5px;
}

.product-feature-section .product-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.product-feature-section .main-product-image {
  margin-bottom: 26px;
  overflow: hidden;
}

.product-feature-section .main-product-image img {
  width: 100%;
  max-width: 560px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.45s ease, filter 0.45s ease;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.12));
}

.product-feature-section .main-product-image:hover img {
  transform: scale(1.04);
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.16));
}

.product-feature-section .product-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 560px;
}

.product-feature-section .gallery-item {
  overflow: hidden;
  border-radius: 0;
  background: #fff;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-feature-section .gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.08);
}

.product-feature-section .gallery-item img {
  width: 100%;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.product-feature-section .gallery-item:hover img {
  transform: scale(1.06);
}

.product-feature-section .product-feature-right h3 {
  margin: 0 0 28px;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
  color: #111;
}

.product-feature-section .product-feature-right p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.9;
  color: #5d6578;
}

.product-feature-section .product-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
  margin-bottom: 30px;
}

.product-feature-section .spec-card {
  background: #4f5f98;
  color: #fff;
  padding: 28px 20px;
  text-align: center;
  border-radius: 14px;
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.product-feature-section .spec-card:hover {
  transform: translateY(-6px);
  background: #5d6fb1;
  box-shadow: 0 14px 28px rgba(79, 95, 152, 0.22);
}

.product-feature-section .spec-card h4 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
}

.product-feature-section .spec-card span {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.product-feature-section .product-buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 15px 28px;
  border-radius: 999px;
  background: #1679b5;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.product-feature-section .product-buy-btn:hover {
  transform: translateY(-3px);
  background: #1679b5;
  box-shadow: 0 14px 26px rgba(109, 130, 199, 0.24);
}

.product-feature-section .fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.product-feature-section .fade-up.show-anim {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1199px) {
  .product-feature-section .product-feature-head h2 {
    font-size: 62px;
  }
  .product-feature-section .product-feature-grid {
    gap: 40px;
  }
  .product-feature-section .product-feature-right h3 {
    font-size: 30px;
  }
  .product-feature-section .product-feature-right p {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .product-feature-section {
    padding: 80px 0;
  }
  .product-feature-section .product-feature-head h2 {
    font-size: 48px;
  }
  .product-feature-section .product-feature-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .product-feature-section .product-feature-left,
  .product-feature-section .product-feature-right {
    text-align: center;
  }
  .product-feature-section .main-product-image img,
  .product-feature-section .product-gallery {
    margin-left: auto;
    margin-right: auto;
  }
  .product-feature-section .product-feature-right h3 {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .product-feature-section {
    padding: 70px 0;
  }
  .product-feature-section .container {
    width: 94%;
  }
  .product-feature-section .section-kicker {
    font-size: 12px;
    gap: 10px;
  }
  .product-feature-section .section-kicker .dot {
    width: 14px;
    height: 14px;
  }
  .product-feature-section .product-feature-head {
    margin-bottom: 40px;
  }
  .product-feature-section .product-feature-head h2 {
    font-size: 34px;
    letter-spacing: -0.5px;
  }
  .product-feature-section .product-feature-right h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .product-feature-section .product-feature-right p {
    font-size: 15px;
    line-height: 1.8;
  }
  .product-feature-section .product-gallery {
    gap: 10px;
  }
  .product-feature-section .gallery-item img {
    height: 90px;
  }
  .product-feature-section .product-specs {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .product-feature-section .spec-card {
    padding: 22px 16px;
  }
  .product-feature-section .spec-card h4 {
    font-size: 20px;
  }
  .product-feature-section .product-buy-btn {
    width: 100%;
  }
}
.specification-section {
  padding: 100px 0;
  background: #fff;
  overflow: hidden;
}

.specification-section .container {
  width: min(1280px, 92%);
  margin: 0 auto;
}

.specification-section .specification-head {
  margin-bottom: 40px;
}

.specification-section .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #289acc;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.specification-section .section-kicker .dot {
  width: 18px;
  height: 18px;
  background: #289acc;
  border-radius: 50%;
  display: inline-block;
}

.specification-section .specification-head h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.05;
  font-weight: 800;
  color: #111;
  letter-spacing: -1.5px;
}

.specification-section .specification-accordion {
  border-top: 1px solid #d8d8d8;
}

.specification-section .spec-item {
  border-bottom: 1px solid #d8d8d8;
  transition: background 0.3s ease;
}

.specification-section .spec-item:hover {
  background: rgba(255, 255, 255, 0.35);
}

.specification-section .spec-header {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  color: #111;
  font-size: 22px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.specification-section .spec-header:hover {
  color: #1679b5;
}

.specification-section .spec-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #222;
  transition: transform 0.3s ease, color 0.3s ease;
}

.specification-section .spec-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.specification-section .spec-item.active .spec-icon {
  transform: rotate(180deg);
  color: #111;
}

.specification-section .spec-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.35s ease;
}

.specification-section .spec-item.active .spec-body {
  max-height: 400px;
  opacity: 1;
  padding: 8px 0 34px;
}

.specification-section .spec-body ul {
  margin: 0;
  padding-left: 22px;
}

.specification-section .spec-body li {
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.8;
  color: #646464;
}

.specification-section .spec-body li strong {
  color: #4b4b4b;
  font-weight: 800;
}

.specification-section .fade-up {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.specification-section .fade-up.show-anim {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1199px) {
  .specification-section .specification-head h2 {
    font-size: 62px;
  }
  .specification-section .spec-header {
    font-size: 20px;
  }
  .specification-section .spec-body li {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .specification-section {
    padding: 80px 0;
  }
  .specification-section .specification-head h2 {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .specification-section {
    padding: 70px 0;
  }
  .specification-section .container {
    width: 94%;
  }
  .specification-section .section-kicker {
    font-size: 12px;
    gap: 10px;
  }
  .specification-section .section-kicker .dot {
    width: 14px;
    height: 14px;
  }
  .specification-section .specification-head {
    margin-bottom: 28px;
  }
  .specification-section .specification-head h2 {
    font-size: 38px;
    letter-spacing: -0.5px;
  }
  .specification-section .spec-header {
    padding: 22px 0;
    font-size: 18px;
  }
  .specification-section .spec-icon {
    width: 24px;
    height: 24px;
  }
  .specification-section .spec-icon svg {
    width: 20px;
    height: 20px;
  }
  .specification-section .spec-body li {
    font-size: 15px;
    line-height: 1.75;
  }
}/*# sourceMappingURL=custom.css.map */