.hero-slider{
  position:relative;
  width:100%;
  height:100vh;
  overflow:hidden;
}

.hero-slider .swiper-slide{
  position:relative;
  width:100%;
  height:100vh;
  overflow:hidden;
}

/* Overlay: sweeps in left → right when slide is active */
.hero-slider .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(8, 42, 52, 0.65) 0%,
    rgba(8, 42, 52, 0.4) 40%,
    rgba(8, 42, 52, 0.15) 65%,
    transparent 100%
  );
  transform: translateX(-100%);
}

.hero-slider .swiper-slide:not(.swiper-slide-active)::before {
  animation: none;
  transform: translateX(-100%);
}

.hero-slider .swiper-slide-active::before {
  animation: heroOverlayLeftToRight 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes heroOverlayLeftToRight {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.hero-slider .bg-image{
  width:100%;
  /*height:100%;
  object-fit:cover;*/
}
.hero-slider .content{
  position:absolute;
  top:50%;
  left: 3.063vw;
  transform:translateY(-50%);
  z-index:2;
  color:#fff;
  max-width: 35%;
}

/* Hero text: slide in left → right when slide is active */
.hero-slider .content h2,
.hero-slider .content p,
.hero-slider .content .hero-btns {
  opacity: 0;
  transform: translateX(-2.5vw);
}

.hero-slider .swiper-slide:not(.swiper-slide-active) .content h2,
.hero-slider .swiper-slide:not(.swiper-slide-active) .content p,
.hero-slider .swiper-slide:not(.swiper-slide-active) .content .hero-btns {
  transition: none;
}

.hero-slider .swiper-slide-active .content h2 {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.9s ease, transform 0.7s ease;
  transition-delay: 0.45s;
}

.hero-slider .swiper-slide-active .content p {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.9s ease, transform 0.7s ease;
  transition-delay: 0.80s;
}

.hero-slider .swiper-slide-active .content .hero-btns {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.9s ease, transform 0.7s ease;
  transition-delay: 1s;
}

.hero-slider .swiper-slide .bg-image {
    height: 100vh;
}
.hero-slider .hero-btns{
  display:flex;
  gap:20px;
  margin-top:35px;
}

.hero-slider .catalog-btn,
.hero-slider .video-btn{
  padding:16px 20px;
  border:none;
  border-radius:12px;
  cursor:pointer;
  font-size:18px;
  text-decoration:none;
}
.hero-slider .catalog-btn a, .hero-slider .catalog-btn a:hover{
    color:#4A4A49;
}
.hero-slider .catalog-btn{
  background:#fff;
  color:#4A4A49;
  height: 52px;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.125vw;
  line-height: 1.25vw;
}

.hero-slider .video-btn{
  background:#0000004D;
  color:#fff;
  backdrop-filter:blur(10px);
  height: 52px;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.125vw;
  line-height: 1.25vw;
}

/* Prev Next */
.hero-slider .slider-nav{
  position:absolute;
  left:80px;
  bottom:50px;
  z-index:10;
  display:flex;
  align-items:center;
  gap:20px;
}

.hero-slider .slider-nav button{
  background:none;
  border:none;
  color:#fff;
  font-size:18px;
  cursor:pointer;
}

.hero-slider .line{
  width:120px;
  height:2px;
  background:#fff;
}

/* Video Popup */
.video-popup{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.8);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:999;
}

.video-box{
  position:relative;
  width:80%;
  max-width:900px;
}

.video-box video{
  width:100%;
  border-radius:12px;
}

.close-video{
  position:absolute;
  color:#fff;
  font-size:40px;
  cursor:pointer;
}

.hero-slider .slider-navigation {
    position: absolute;
    bottom: 50px;
    left: 3.063vw;
    display: flex;
    align-items: center;
    gap: 7px;
    z-index: 20;
}

.hero-slider .slider-navigation button {
    background: none;
    border: none;
    color: #fff;
    font-size: 0.938rem;
    cursor: pointer;
    font-weight: 300;
}

.hero-slider .progress-line{
  width: 8.5vw;
  height:2px;
  background:rgba(255,255,255,0.2);
  border-radius:10px;
  overflow:hidden;
  position:relative;
}

.hero-slider .active-line{
  position:absolute;
  left:0;
  top:0;
  width:20%;
  height:100%;
  background:#fff;
  transition:width 0.5s ease;
}

.hero-slider h2 {
    font-size: 4vw;
    font-weight: 300;
    line-height: 4.125vw;
    margin-bottom: 0.875vw;
    color:#fff;
}

.hero-slider h2 span{
    font-weight:600;
}
.hero-slider p {
    font-size: 1.25vw;
    font-weight: 500;
    line-height: 1.75vw;
    color:#fff;
}

/* BUTTON */
.video-btn{
  display:flex;
  align-items:center;
  gap:14px;
  padding: 12px 20px 12px 10px;
  border:none;
  border-radius:14px;
  background:rgba(0,0,0,0.25);
  color:#fff;
  cursor:pointer;
  backdrop-filter:blur(10px);
}

/* SMALL VIDEO INSIDE BUTTON */
.video-thumb {
    width: 39px;
    height: 36px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.video-thumb video{
  width:100%;
  height:100%;
  object-fit:cover;
}

.video-thumb::after{
  content:'▶';
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:22px;
  height:22px;
  border-radius:50%;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:15px;
}

/* MODAL */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / 81%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    z-index: 999;
}
.video-modal.show{
  opacity:1;
  visibility:visible;
}

/* POPUP BOX */

.video-content {
    position: relative;
    width: 1000px;
    max-width: 98%;
    border-radius: 10px;
/*    overflow: hidden;*/
    background: #000;
    transform: translateY(-120px) scale(.92);
    opacity: 0;
    transition: transform .7s cubic-bezier(.16, 1, .3, 1), opacity .6s ease;
    top: 2vw;
}
.video-modal.show .video-content{
  transform:translateY(0) scale(1);
  opacity:1;
}
.video-content video{
  width:100%;
  display:block;
}

/* CLOSE BUTTON */
.close-video {
    position: absolute;
    top: 58px;
    right: 15%;
    color: #fff;
    font-size: 60px;
    cursor: pointer;
    z-index: 9999999;
}

.hero-slider .right-info-box {
    position: absolute;
    right: 3.063vw;
    background:#fff;
    border-radius:10px;
    top:20%;
    padding: 16px 22px;
    z-index: 2;
}

/* SECTION  contact*/
.contact-section {
    width: 100%;
    padding: 4.375vw 2.938vw;
    background: #1F1F1F;
}

.contact-section .contact-wrapper{
    display:flex;
    gap:40px;
    align-items:flex-start;
}

.contact-section .contact-left{
    width:32%;
}

.contact-title, .gallery_sec  h2 span, .heading_page span {
    font-size: 2.813vw;
    line-height: 2.813vw;
    font-weight: 500;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #009982 0%, #2581C4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-section .info-box {
    background: #fff;
    border-radius: 20px;
    padding: 35px 22px 36px 22px;
}

.contact-section .info-heading {
    font-size: 22px;
    color: #2581C4;
    /* margin-bottom: 30px; */
    font-weight: 400;
    border-bottom: 1px solid #F2F2F2;
    padding-bottom: 10px;
    line-height: 30px;
}



.contact-section .info-item:first-of-type{
    border-top:none;
    padding-top:0;
}
.contact-section .info-item {
    padding-bottom: 13px;
}
.contact-section .info-name {
    color: #00a88e;
    font-size: 1.125vw;
    line-height: 1.25vw;
    font-weight: 400;
    margin-bottom: 10px;
    padding-top: 17px;
}

.contact-section .info-item p {
    color: #4A4A49;
    font-size: 16px;
    line-height: 1.5vw;
    margin-bottom: 0px;
}
/* RIGHT SIDE */

.contact-section .contact-right {
    width: 68%;
    background: #fff;
    border-radius: 20px;
    padding: 32px 46px 26px 50px;
}

/* FORM */

.contact-section .contact-form{
    width:100%;
}

.contact-section .form-row {
    display: flex;
    gap: 50px;
    margin-bottom: 30px;
}

.contact-section .form-group{
    width:100%;
}

.contact-section .form-group input, .contact-section .form-group textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #00000066;
    padding: 6px 0;
    font-size: 16px;
    outline: none;
    background: transparent;
    transition: 0.3s;
}
.contact-section .form-group input::placeholder, .contact-section .form-group textarea::placeholder{
    color: #00000066;
}

.contact-section .form-group input:focus,
.contact-section .form-group textarea:focus{
    border-color:#2196f3;
}

.contact-section .form-group textarea {
    resize: none;
    height: 80px;
}

/* BUTTON */

.contact-section .submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 15px 15px;
    border: none;
    border-radius: 10px;
    background: #2581C4;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    cursor: pointer;
    transition: 0.3s;
    height: 40px;
    width: 120px;
    margin-top: 30px;
}

.gallery_sec .gallery-title{
  text-align:center;
  font-size:60px;
  margin-bottom:50px;
  color:#333;
  font-weight:600;
}

/* Masonry Layout */
.gallery_sec .gallery{
  column-count:5;
  column-gap:10px;
}

.gallery_sec .gallery-item{
  position:relative;
  margin-bottom:11px;
  break-inside:avoid;
  overflow:hidden;
  border-radius:18px;
  cursor:pointer;
  display:block;
}

.gallery_sec .gallery-item img{
  width:100%;
  display:block;
  border-radius:18px;
}


/* Tag */
.gallery_sec .tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    color: #333;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
    z-index: 2;
}

.gallery_sec{
    padding:70px 3.063vw;
}
.gallery_sec h2, .heading_page {
    font-size: 2.813vw;
    font-weight: 500;
    line-height: 3.188vw;
    color:#4A4A49;
    margin-bottom:26px;
}


.why-section {
    /* max-width: 1600px; */
    margin: auto;
    background: #F1F1F1;
    padding: 4.688vw 3.063vw;
}

.why-section .why-grid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:30px;
  align-items:stretch;
}

/* LEFT SIDE */
.why-section .left-content{
  display:flex;
  flex-direction:column;
  justify-content: end;
}


/* CARD */
.why-section .info-card {
    background: #2784c7;
    border-radius: 20px;
    padding: 40px 35px 44px 35px;
    color: #fff;
    /* min-height: 520px; */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position:relative;
    margin-top: 15px;
}
.why-section .tags {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #434343;
    width: max-content;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    margin-bottom: 30px;
    height: 40px;
}

.why-section .info-card p, .why-section p {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    color:#fff;
}

/* CENTER IMAGE */
.why-section .center-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:20px;
  display:block;
}

/* RIGHT SIDE */
.why-section .right-column{
  display:flex;
  flex-direction:column;
  gap:32px;
}

.why-section .top-image img {
    width: 100%;
    /* height: 300px; */
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.why-section .green-card{
  background:#05a58d;
  border-radius:20px;
  padding: 30px 35px 44px 35px;
  color:#fff;
  flex:1;
  display:flex;
  flex-direction:column;
  position:relative;
}


/* SECTION */
.precision{
    height:100vh;
    /* padding:75px 41px; */
    overflow:hidden;
    position:relative;
}

/* WRAPPER */
.precisios-wrapper{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}
/* LEFT TEXT */
.left-precision-text {
    position: absolute;
    left: 31px;
    top: 50px;
    z-index: 2;
}

/* RIGHT TEXT */
.right-precision-text {
    position: absolute;
    right: 31px;
    bottom: 75px;
    text-align: right;
    z-index: 2;
}
.contact-section .submit-btn img {
    top: calc(49%);
    width:auto;
}

.bg-video{
 width: 100%;
 height: 100%;
 object-fit: cover;
 position: absolute;
 top: 0;
 left: 0;
}

.mobile-banner{
  display: none;
}

/* LEFT FIXED SECTION */
.frames-section  .left-sidebar {
    width: 325px;
    position: sticky;
    top: 6vw;
    height: fit-content;
}

.frames-section .catalog-header {
    position: relative;
    margin-bottom: 12px;
    border-bottom:2px solid #000;
}

.frames-section .catalog-header h2 {
    font-size: 2.8vw;
    font-weight: 700;
    color: #4e4e4e;
    margin-bottom: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 0.35em;
    padding-bottom: 14px;
}

.frames-section .catalog-title {
    letter-spacing: 0.02em;
}

.frames-section .catalog-type-toggle {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    cursor: pointer;
    line-height: 0;
    transition: transform 0.3s ease;
}

/*.frames-section .catalog-type-toggle img {
    position: relative;
    top: -0.35em;
    width: 0.55em;
    height: auto;
    display: block;
}*/

.frames-section.catalog-type-menu-open .catalog-type-toggle {
    transform: rotate(180deg);
}

.frames-section .catalog-type-menu {
    list-style: none;
    margin: 0;
    padding: 0.75em 0 0;
}

.frames-section .catalog-type-menu li {
    margin: 0;
}

.frames-section .catalog-type-menu button {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0 0 0.35em;
    font-size: 2.1vw;
    line-height: 2.8vw;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #D7D7D7;
    cursor: pointer;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.frames-section .catalog-type-menu button:hover, .frames-section .catalog-type-menu button.is-active {
    color: #4e4e4e;
}
.frames-section .catalog-type-menu button.is-active {
    display:none;
}

.frames-section .sidebar-nav {
    list-style: none;
    padding-left: 0;
    display: block;
    border-bottom: 0;
}

.frames-section .category-list,
.frames-section .range-list {
    list-style: none;
    padding-left: 0;
    display: block;
    border-bottom: 0;
}

.frames-section .sidebar-nav li a,
.frames-section .category-list li a,
.frames-section .range-list li a {
    margin-bottom: 0px;
    line-height: 1.5vw;
    font-size: 1vw;
    color: #B4B4B4;
    cursor: pointer;
    transition: 0.3s;
    padding-left: 0;
    padding-bottom: 0;
    padding-top:2px;
    border:0 !important;
}

.frames-section .sidebar-nav li a.active,
.frames-section .sidebar-nav li a:hover,
.frames-section .category-list li a.active,
.frames-section .category-list li a:hover,
.frames-section .range-list li a.active,
.frames-section .range-list li a:hover {
  color:#121212;
  font-weight:600;
  border: 0 !important;
  outline:none !important;
}
.frames-section .sidebar-nav li a:focus-visible, .frames-section .sidebar-nav li:focus-visible a{
    border:0px !important;
    outline: none !important;
}
.frames-section .catalog-panel[hidden] {
  display: none !important;
}

/* RIGHT SCROLL SECTION */
.frames-section .right-content{
  flex:1;
}

.frames-section .cards{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
}

.frames-section .card{
  background:#fff;
  border-radius:10px;
  overflow:hidden;
  border: 0;
}

.frames-section .card-image {
    background: #F0F0F0;
    padding: 0px 20px;
    height:22.13vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frames-section .card-image img{
  width:100%;
  
  object-fit:contain;
}

.frames-section .card-content {
 
    padding: 18px;
 
    border: 1px solid #F0F0F0;
 
   /* height: 165px;*/
 
}

.frames-section .card-content h3 {
    font-size: 1.13vw;
    margin-bottom: 15px;
    color: #333;
    margin-top: 0;
}

.frames-section .card-content p {
    font-size: 1vw;
    color: #4A4A49;
    margin-bottom: 0;
    line-height: 1.5;
    margin-top: 0;
}

.frames-section .card-content strong {
    color: #4A4A49;
}

.frames-section img#close {
    position: absolute;
    top: 1vw;
    right: 1vw;
    cursor: pointer;     border-radius: 50%;
    padding: 10px;
    background: #333;
    z-index: 999;
}
.video-modal{
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    z-index: 9999;
}

/* SHOW */
.video-modal.show .video-content{
    opacity: 1;
    visibility: visible;
    animation: modalDrop 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* KEYFRAME */
@keyframes modalDrop{

    0%{
        transform: translateY(-20%);
    }

    70%{
        transform: translateY(4px);
    }

    85%{
        transform: translateY(-8px);
    }

    100%{
        transform: translateY(0);
    }
}
.why-section .animation-element.slide-left.viewport-animate-element .in-view{
   transition-delay: 0.4s;   
}
.why-section .animation-element.slide-right.viewport-animate-element .in-view{
   transition-delay: 0.4s;   
}
.global-markets .animation-element.slide-up.viewport-animate-element.in-view{
   transition-delay: 0.6s; 
}

.gallery_sec .gallery .gallery-item.animation-element.slide-up.viewport-animate-element.in-view:nth-child(1){
     transition-delay: 0.2s;
}
.gallery_sec .gallery .gallery-item.animation-element.slide-up.viewport-animate-element.in-view:nth-child(2){
     transition-delay: 0.3s;
}
.gallery_sec .gallery .gallery-item.animation-element.slide-up.viewport-animate-element.in-view:nth-child(3){
     transition-delay: 0.4s;
}

.gallery_sec .gallery .gallery-item.animation-element.slide-up.viewport-animate-element.in-view:nth-child(4){
     transition-delay: 0.5s;
}
.gallery_sec .gallery .gallery-item.animation-element.slide-up.viewport-animate-element.in-view:nth-child(5){
     transition-delay: 0.6s;
}
.gallery_sec .gallery .gallery-item.animation-element.slide-up.viewport-animate-element.in-view:nth-child(6){
     transition-delay: 0.7s;
}

.gallery_sec .gallery .gallery-item.animation-element.slide-up.viewport-animate-element.in-view:nth-child(7){
     transition-delay: 0.8s;
}
.gallery_sec .gallery .gallery-item.animation-element.slide-up.viewport-animate-element.in-view:nth-child(8){
     transition-delay: 0.9s;
}

.gallery_sec .gallery .gallery-item.animation-element.slide-up.viewport-animate-element.in-view:nth-child(9){
     transition-delay: 1s;
}

.gallery_sec .gallery .gallery-item.animation-element.slide-up.viewport-animate-element.in-view:nth-child(10){
     transition-delay: 1.1s;
}

.custom-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
}
 
.custom-lightbox.active {
    opacity: 1;
    visibility: visible;
    z-index: 9999;
}
 
.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}
 
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 45px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
}
 
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border: none;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: 0.3s;
}
 
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.3);
}
 
.lightbox-prev {
    left: 30px;
}
 
.lightbox-next {
    right: 30px;
}
 
.video-modal{
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
 
.video-content {
 
    position: relative;
 
    width: 1000px;
 
    max-width: 98%;
 
    border-radius: 10px;
 
 
 
    background: #000;
 
    transform: translateY(-120px) scale(.92);
 
    opacity: 0;
 
    transition: transform .7s cubic-bezier(.16, 1, .3, 1), opacity .6s ease;
 
    top: 2vw;
 
}
 
.video-content video {
    width: 100%;
    display: block;
    border-radius: 12px;
}
 
.close-video {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    width: 12px;
    height: 129px;
    z-index: 999;
}



.hide-menu-product-popup {
    z-index: 0 !important;
}