
body {
    margin: 0;
    padding: 0; 
    padding-top: 90px; 
    font-family: Arial, Helvetica, sans-serif;
    background-color: #040D12;
    color: #ffffff;
}

#mob{
    display: none;
}
#des{
    display: block;
}
/* ===================== NEON HEADER ===================== */
.neon-header {
    background:  rgba(4, 13, 18, 0.808); 
    backdrop-filter: blur(90px);
    -webkit-backdrop-filter: blur(50px);
    box-shadow: 0 0 15px #040D12, rgb(4, 13, 18) 0 0 30px #040D12;
    transition: all 0.3s ease-in-out;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 9999;
}

.logo {
    margin-left: 40px;
    display: inline-block;
}
.nav-icons
{
    color: white;
}
.logo-img {
    width: 180px; 
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* ===================== NAV LINKS ===================== */
.nav-link {
    font-size: 18px;
    font-weight: 500;
    margin: 0 15px;
    transition: 0.3s;
    color: #ffffff;
}

.image-nav-buttons{
    position:absolute;
    right:-60px;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    gap:10px;
}

.nav-btn{
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:#111;
    color:white;
    font-size:20px;
    cursor:pointer;
    transition:0.3s;
}

.nav-btn:hover{
    background:#0d6efd;
}
.nav-link:hover,
.nav-item.dropdown:hover > .nav-link {
    color: #5C8374;
}
.home:hover{
    color: #5C8374;
}


/* ===================== DROPDOWN ===================== */
.dropdown-menu {
    padding: 0px 20px;
    min-width: 320px;
    border-radius: 10px;
    border: none;
    background-color: rgb(4, 13, 18);
    box-shadow: 0 10px 25px rgb(4, 13, 18, 0.15);
}

.dropdown-item-custom {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: 0.3s;
}

.dropdown-item-custom:hover {
    background-color: #183D3D;
}

.dropdown h6,
.dropdown p {
    color: rgb(255, 255, 255);
}

.nav-txt {
    text-decoration: none;
    color: #ffffff;
}

.nav-txt:hover {
    transition: color 0.3s ease;
}

/* ===================== RIGHT BUTTONS ===================== */
.right-buttons {
    margin-right: 40px;
    width: 280px;
}

.btn-outline-light {
    border-radius: 25px;
    padding: 6px 18px;
    transition: 0.3s;
}

.btn-outline-light:hover {
    background-color: white;
    color: #040D12;
}

.btn-neon {
    background-color: #5C8374;
    color: #ffffff;
    border-radius: 25px;
    padding: 6px 20px;
    border: none;
    box-shadow: 0 0 10px #5C8374,
                0 0 20px #5C8374;
    transition: 0.3s;
    text-decoration: none;
}

.btn-neon:hover {
    background-color: #5C8374;
    box-shadow: 0 0 15px #5C8374,
                0 0 30px #183D3D;
}

/* ===================== SEARCH ===================== */
.search-wrapper {
    display: flex; 
    right: 30px;
    top: 15px;
    z-index: 9999; 
    align-items: center;
}

.search-box {
    display: flex;
    align-items: center;
    background: #183D3D;
    border-radius: 25px;
    border: white 2px solid;
    padding: 4px 8px;
    transition: all 0.3s ease;
}

.search-box input { 
    border: none;
    outline: none;
    background: transparent;
    color: white;
    width: 200px;
    transition: 0.3s;
}

.search-box button {
    display: inline-block;
    border: none;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
}
 
.suggestions {
    position: absolute;
    top: 80%;
    right: 20;
    width: 240px;
    background: #183D3D;
    border-radius: 10px;
    display: none;
    max-height: 200px;
    overflow-y: auto;
    margin-top: 5px;
    box-shadow: 0 5px 15px rgb(4, 13, 18,0.5);
    z-index: 10000;
}

.suggestions div {
    padding: 8px 12px;
    cursor: pointer;
    color: white;
}

.suggestions div:hover,
.suggestions .active {
    background: #5C8374;
}
 
.search-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}
 
.close-icon {
    font-size: 45px;
    color: #fff;
    display: inline-block;
}

#openIcon{
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2.5' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
@media (max-width: 991px) { 
  #mob{
    justify-content: right;
    position: fixed;
    display: block;
}
#des{
    display: none;
}
  .search-wrapper {
    position: fixed;
    top: 22px;
    right: 70px;    
    left: auto;
    transform: none;
    z-index: 1050;
}
 
  .search-box {
    display: none;          
  }

  .search-toggle {
    display: inline-block !important;
    font-size: 24px;
    color: white;
    cursor: pointer;
  }
 
  .search-box.active {
    display: flex !important;
    position: fixed;
    top: 20px;              
    right: -90px;
    transform: translateX(-50%);
    background: #040D12;
    padding: 8px 12px;
    border-radius: 25px;
    width: 80vw;
    max-width: 400px;
    box-shadow: 0 5px 15px rgb(4, 13, 18,0.7);
    z-index: 1060;
  }

  .search-box.active input {
    width: 100%;
  }
 
  .suggestions {
    top: 100%;
    right: 50%; 
    transform: translateX(-105%);
    width: 40vw;
    max-width: 200px;
  } 
    .navbar-nav {
        flex-direction: column;
        text-align: center;
        margin-top: 10px;
    }

    .dropdown-menu {
        position: relative;
        left: 0;
        box-shadow: none;
        padding-left: 20px;
        margin-bottom: 5px;
    }

    .right-buttons {
        display: none;
    }
}

@media (max-width: 768px) {
    .search-box.active {
        width: 150px;
    }
    .search-box input {
        width: 120px;
    }
.suggestions {
    top: 100%;
    right: 45px; 
    transform: translateX(-5%);
    width: 40vw;
    max-width: 190px;
  }
    .search-box.active {
    display: flex !important;
    position: fixed;
    top: 18px;              
    right: 25px;
    transform: translateX(-50%);
    background: #040D12;
    padding: 8px 12px;
    border-radius: 25px;
    width: 80vw;
    max-width: 200px;
    box-shadow: 0 5px 15px rgb(4, 13, 18,0.7);
    z-index: 1060;
  }
}

@media (max-width: 480px) {
    .search-box.active {
        width: 135px;
    }
    .search-box input {
        width: 90px;
    }
    .navbar-nav .nav-item {
        margin: 5px 0;
    }
    .suggestions {
    top: 100%;
    right: -5px;
    /* right: auto; */
    transform: translateX(-5%);
    width: 40vw;
    max-width: 140px;
  }
    .search-box.active {
    display: flex !important;
    position: fixed;
    top: 18px;   
    right: 5px;
    transform: translateX(-50%);
    background: #040D12;
    padding: 8px 12px;
    border-radius: 25px;
    width: 80vw;
    max-width: 200px;
    box-shadow: 0 5px 15px rgb(4, 13, 18,0.7);
    z-index: 1060;
  }
}


.btn-outline-light { 
    padding: 6px 18px;
    transition: 0.3s;
}

.btn-outline-light:hover {
    background-color: white;
    color: #040D12;
}


.btn-neon {
    background-color: #5C8374;
    color: #ffffff;
    border-radius: 25px;
    padding: 6px 20px;
    border: none;
    box-shadow: 0 0 10px #5C8374,
                0 0 20px #5C8374;
    transition: 0.3s;
    text-decoration: none;
}

.btn-neon:hover {
    background-color: #5C8374;
    box-shadow: 0 0 15px #5C8374,
                0 0 30px #183D3D;
}
.main-banner{
width:100%;
height:90vh;
position:relative;
overflow:hidden;
}

.banner-slider {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden; /* hide overflowing slides */
}

/* slides */
.banner-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  
  /* START hidden */
  opacity: 0;
  transform: translateX(0);
  
  /* smooth fade + slight slide */
  transition: opacity 0.5s ease-in-out, transform 1s ease-in-out;
  z-index: 0;
}

/* active slide */
.banner-slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}

/* overlay */
.banner-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.8),
    rgba(0,0,0,0.5),
    rgba(0,0,0,0.2)
  );
  z-index: 1;
}


.banner-slide.customs-slide::before {
  display: none;
}

/* logo inside slide */
.slide-logo {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.slide-logo img {
  width: 35%;
  max-width: 300px;
  min-width: 120px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
}

/* slide content */
.banner-content {
  position: absolute;
  top: 40%;
  left: 8%;
  color: white;
  max-width: 520px;
  z-index: 2;
}
.customs-slide {
  padding: 0px 30px;
  width: 100%;
}

.customs-wrapper {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 20px; /* gap between left and right columns */
  align-items: stretch; /* ensures both sides stretch to same height */
}

/* LEFT SIDE: use grid instead of flex for consistent row spacing */
.customs-left {
  display: grid;
  grid-template-rows: repeat(2, 1fr); /* 2 rows with equal height */
  gap: 20px; /* same as column gap */
}


/* RIGHT SIDE */
.customs-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  grid-template-rows: repeat(2, 1fr); /* 2 rows with equal height */
  gap: 20px; /* matches left side spacing */
}

/* CARD DESIGN */
.customs-card {
  background: linear-gradient(135deg, #123030, #183D3D, #5C8374);
  border-radius: 14px;
  padding: 15px;
  color: #fff;
  backdrop-filter: blur(6px);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.customs-card.large {
  display: flex;
  height: 300px; /* set same height */
  align-items: center;
  gap: 15px;
}

.customs-card.large img {
  width: 40%;
  max-width: 800px;
  border-radius: 10px;
}

/* TEXT AREA */
.card-content {
  flex: 1;
}

.card-content i {
  font-size: 22px;
  margin-bottom: 8px;
  display: block;
}

.customs-card.small{
    height: 300px; /* set same height */
}
.customs-card.small img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}
.customs-card.big-image img{
    height: 190px;
}

.customs-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 14px;
  font-size: 14px;
  background: #5C8374;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
}

/* HOVER */
.customs-card:hover {
  transform: translateY(-6px);
  background: #123030;
}
.customs-card h4 {
    margin-top: 10px;
  font-size: clamp(14px, 1.2vw, 20px);
}

.customs-card h5 {
    margin-top: 10px;
  font-size: clamp(13px, 1vw, 16px);
}

.customs-card p {
  font-size: clamp(12px, 0.9vw, 14px);
}
/* Default: hide mobile slide */
.after-active-slide {
  display: none;
}
/* ✅ Responsive for 992px and below */


/* Desktop view */
@media (min-width: 992px) {
  .customs-slide {
    display: grid;
  }
  .after-active-slide {
    display: flex;
  }
}

/* Mobile view */
@media (max-width: 991px) {
  .customs-slide {
    display: none !important; /* hide desktop multi-card slide */
  }

  .after-active-slide {
    display: flex; /* show mobile slide */
  }
}
.active-banner{
opacity:1;
transform:translateX(0);
z-index:2;
}
 
.banner-content h1{
font-size:48px;
font-weight:700;
color: white;
}

.banner-content p{
font-size:18px;
margin:20px 0;
color: white;
}

.banner-button{
    background:#5C8374;
    color: white;
    border:none;
    padding:8px 20px;   /* reduced */
    font-weight:600;
    font-size:20px;     /* smaller text */
    border-radius:4px;
}
/* arrows */

.nav-arrow{
position:absolute;
top:59%;
transform:translateY(-50%);
background:rgba(0,0,0,0.5);
border:none;
color:white;
font-size:28px;
padding:10px 16px;
cursor:pointer;
z-index:10;
}

@media (max-width: 992px) {
    .banner-content{
        top:auto;
        bottom:50px;          /* move to bottom */
        left:50%;             /* center horizontally */
        transform:translateX(-50%);
        text-align:center;    /* center text */
        max-width:2000px;
    }
        .banner-slide::before{
       background:linear-gradient(
        to top,
        rgba(0,0,0,0.8),
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.2)
); 


    }
    .nav-arrow{
    font-size: 18px;
}

    .banner-content h1{
        font-size:26px;       /* smaller heading */
    }

    .banner-content p{
        font-size:18px;
    }

    .banner-button{
        display:block;
        margin:0 auto; 
        font-size: 18px;       /* center button */
    }
}
@media (max-width: 768px) {
    .banner-content{
        top:auto;
        bottom:20px;          /* move to bottom */
        left:50%;             /* center horizontally */
        transform:translateX(-50%);
        text-align:center;    /* center text */
        max-width:2000px;
    }

    .nav-arrow{
    font-size: 15px;
}
    .banner-content h1{
        font-size:20px;       /* smaller heading */
    }

    .banner-content p{
        font-size:14px;
    }

    .banner-button{
        display:block;
        margin:0 auto;        /* center button */
        font-size: 12px;

    }
}
@media (max-width: 480px) {
    .banner-content{
        top:auto;
        bottom:20px;          /* move to bottom */
        left:50%;             /* center horizontally */
        transform:translateX(-50%);
        text-align:center;    /* center text */
        max-width:200%;
    }

    .nav-arrow{
    font-size: 12px;
}
    .banner-content h1{
        font-size:16px;       /* smaller heading */
    }

    .banner-content p{
        font-size:10px;
    }

    .banner-button{
        display:block;
        margin:0 auto;        /* center button */
        font-size: 10px;
    }
}

.nav-left{ left:20px;}
.nav-right{ right:20px;}

/* thumbnails */

.thumb-bar{
position:absolute;
bottom:20px;
left:50%;
transform:translateX(-50%);
display:flex;
gap:12px;
}

.thumb-item{
width:120px;
height:70px;
object-fit:cover;
opacity:.6;
cursor:pointer;
border:2px solid transparent;
}

.active-thumb{
opacity:1;
border-color:#ffc107;
}

/* ---------- responsive ---------- */

@media (max-width:992px){



.thumb-item{
width:90px;
height:55px;
}


}

@media (max-width:768px){

.main-banner{
height:80vh;
}



.thumb-bar{
display:none;
}

}

@media (max-width:480px){

.main-banner{
height:70vh;
}


}
.three-column-layout {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    /* min-height: 100vh;   */
    gap: 0; /* optional spacing between columns */
}
.side-column {
    width: 10%; 
    margin-top: 300px; 
    /* position: fixed;   */
    top: 0;
    bottom: 0;
    padding: 20px;
    overflow-y: auto;
}
/* Left and Right positioning */
.left-column {
    left: 0;
}
.right-column {
    right: 0;
}
/* Center Column (Main content) */
.center-column {
    width: 80%;
    box-sizing: border-box;
}
/* Responsive Adjustments */
@media (max-width: 1200px) {
    .side-column {
        width: 15%;
    }
    .center-column {
        width: 70%;
        margin: 0 15%;
    }
}

@media (max-width: 992px) {
    .side-column {
        display: none; /* hide side columns on tablet and mobile */
    }
    .center-column {
        width: 100%;
        margin: 0;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .center-column {
        padding: 5px;
    }
}



section.container {
    min-height: 10px;
    /* display: flex; */
    flex-direction: column;
    justify-content: center; 
    align-items: center;     
    text-align: center;
    color: white;            
    padding-top: 30px;      
    padding-bottom: 30px;
}
.industry-text {
    max-width: 500px;      /* keeps it centered block */
    margin: 0 auto;        /* center horizontally */
    text-align: justify;   /* justify text */
    text-align-last: center; /* last line centered */
    line-height: 1.7;
    font-size: 20px;
}

section.container h1 {
    font-weight: 700;
    margin: 2px;
}
.mainpage-logo {
    width: 400px;
    max-width: 100%;
    height: auto;
}
.heading_color {
    color: #5C8374;
}

section.container p {
    font-size: 1.2rem;
    margin-top: 10px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.vd {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.image-container {
    position: relative;
    width: 90%; 
    overflow: hidden; 
}
@media (max-width: 992px) {
    .image-container {
        max-width: 700px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .image-container {
        max-width: 500px;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .image-container {
        max-width: 80%;
        padding: 0 10px;
    }
}
.image-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.5s ease; 
    z-index: 1; 
}
.image-container:hover::before {
    background-color: rgba(0, 0, 0, 0.7); /* adjust opacity (0.5) for darkness */
}
.single-image {
    width: 100%;
    border-radius: 15px;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    opacity: calc(1.8);
}

.image-container:hover .single-image {
    transform: scale(1.05); 
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%; 
    transform: translate(-50%, -50%);
    color: #ffffff;
    text-align: center;
    opacity: 0;
    transition: all 0.7s ease;
    z-index: 2;  
}

.image-container:hover .overlay-text {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(-10px); /* slight slide up */
}

.overlay-text h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 1px 1px 6px rgb(147, 177, 166, 0.7);
}

.overlay-text p {
    font-size: 20px;
    font-weight: 900;
    font-family: 'Times New Roman', Times, serif;
    max-width: 80%;
    margin: 0 auto;
    color: white;
    /* text-shadow: 1px 1px 5px rgb(255, 255, 255); */
}
.overlay-btn {
    display: inline-block;
    border-radius: 15px;
    margin-top: 15px;
    padding: 10px 25px;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600; 
    transition: all 0.3s ease;
}
 
.overlay-btn:hover {
    background-color: #5C8374;
    color: #040D12;
    transform: translateY(-3px);
}


.logo-section {
    overflow: hidden;
    position: relative;
}

.logo-slider {
    overflow: hidden;
    position: relative;
    width: 100%;

    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        #040D12 10%,
        #040D12 90%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        #040D12 10%,
        #040D12 90%,
        transparent 100%
    );
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: scroll 23s linear infinite;
}

.logo-item img {
    height: 60px;
    opacity: 0.7;
    /* filter: grayscale(100%); */
    transition: 0.3s ease;
}

.logo-item img:hover {
    opacity: 1;
    filter: grayscale(0%);
}
 
.info-card {
    background: linear-gradient(135deg, #123030, #183D3D, #5C8374);

    border-radius: 15px;
    padding: 40px;
    border-radius: 6px;
    color: #ffffff;
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
    height: 100%;
    min-height: 300px;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgb(4, 13, 18);
}

.rating-number {
    font-size: 48px;
    font-weight: 700;
}

.stars i {
    color: #ff8c00;
    font-size: 20px;
    margin-right: 5px;
}

.highlight {
    color: #ffffff;
    font-weight: 600;
}

.card-video {
    width: 100%;
    border-radius: 15px;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}
 .left-portion,
.right-portion{
opacity:0;
transition: all 0.9s ease;
}

/* start positions */
.left-portion{
transform: translateX(-120px);
}

.right-portion{
transform: translateX(120px);
}

/* visible animation */
.show{
opacity:1;
transform: translateX(0);
}
.arrow-circle {
    background: #040D12;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    font-weight: bold;
}
 
.shield-icon {
    font-size: 40px;
    color: #040D12;
} 
.feature-hero {
    background: linear-gradient(to right, #040D12, #183D3D);
    padding: 120px 20px;
    color: white;
}
 
.feature-card i{
    color: white;
}
.feature-badge {
    display: inline-block;
    background: rgb(24, 61, 61, 0.726);
    color: #93B1A6;
    padding: 8px 18px; 
    font-size: 25px;
    font-weight: 500;
    border-radius: 15px;
}
 
.feature-heading {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
}
.feature-subtext{
    color: white;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}
.text-green {
    color: #5C8374;
}

    .main-wrapper { 
    justify-content: center;
    align-items: center;
    width: 80%;  
    margin: auto; 
}
 
        .content {
            display: flex;
            gap: 2rem;
            height: 660px;           
            position: relative;
        }
 
        
.left-container {
    width: 60%;
    height: 90%;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    border-radius: 5px;  
    mask-image: linear-gradient(to bottom, #040D12 0%, #040D12 85%, transparent 98%);
    -webkit-mask-image: linear-gradient(to bottom, #040D12 0%, #040D12 85%, transparent 98%);
    padding-right: 4px;
    scroll-padding-top: 1rem; 
    
}

.btn-custom{
    color:white;
}
        .left-container::-webkit-scrollbar {
            width: 6px;
        }
        /* .left-container::-webkit-scrollbar-thumb {
            background: #5C8374;
            border-radius: 20px;
        } */
 
        .left-box {
            height: 40%;                
            background: #183D3D;
            padding: 1.8rem 1.5rem;
            margin-bottom: 1.5rem;
            border: 2px solid transparent;
            border-radius: 10px; 
            cursor: pointer;
            transition: border 0.2s ease, background 0.2s;
            color: #eef5f1;
            box-shadow: 0 8px 12px rgba(0,0,0,0.6);
        }

        .left-box:hover {
            border-color: #b3d9d2;
        }

        .left-box.active {
            border: 2px solid #ffffff;
            background: #0e2424;
        }

        .points-color {
            color: #ffffff;
            font-weight: 450;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
            font-size: 1.25rem;
        }

        .feature-subtexts {
            color: white;
        }

        h2.feature-subtexts {
            font-size: 1.4rem;
            font-weight: 500;
            line-height: 1.2;
            margin: 0.5rem 0 1rem 0;
        }

        p.feature-subtexts {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 90%;
        }
 
        .right-container {
            width: 100%;
            height: 90%;
            background: #1a3a3a;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 12px 24px rgba(0,20,10,0.7);
            border: 1px solid #2e5f5f;
        }

        .preview-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 0.45s ease-in-out;
            pointer-events: none;
        }

        .preview-img.active {
            opacity: 1;
        }
 
        .circle-panel {
            display: flex;
            justify-content: center;
            gap: 1.2rem;
            align-items: center;
        }

        .circle {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: transparent;
            border: 2.5px solid #3f6b6b;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            font-weight: 600;
            color: #ffffff;
            cursor: pointer;
            transition: 0.2s;
            box-shadow: 0 4px 8px rgba(0,0,0,0.5);
            background-color: #132c2c;
        }

        .circle.active-circle {
            background-color: white;
            color: #040D12;
            border-color: white;
            font-weight: 700;
            transform: scale(1.08);
            box-shadow: 0 0 16px #b3f0f0;
        }

        .circle:hover {
            border-color: #b0f0f0;
            background: #265b5b;
            color: white;
        }
 
        .position-relative {
            position: relative;
        }
 
        .preview-img[src*="onlinw"] {
            background: #2d5e5e;
        }
        .preview-img[src*="Slide3"] {
            background: #2b5555;
        }
        .preview-img[src*="Slide5"] {
            background: #216161;
        }
        .preview-img[src*="Slide4"] {
            background: #1e5e5e;
        }
        .preview-img[src*="Slide6"] {
            background: #1b4f4f;
        }
 
        .right-container::after {
            display: none;
        }

 
        
@media (max-width:1450px){


    .content{
        height: 400px;
    }
    .left-container{
        height:350px;
    }

    .right-container{
        height:350px;
    }

    h2.feature-subtexts{
        font-size:0.8rem;
        line-height:1.3;
    }

    p.feature-subtexts{
        font-size:0.7rem;
    }

    .circle-panel{
        gap:0.8rem;
    }

    .circle{
        width:12px;
        height:12px;
        border-width:2px;
    }

}

@media (max-width:1200px){

    .content{
        gap:1.5rem;
        height:480px;
    }

    h2.feature-subtexts{
        font-size:0.8rem;
    }

    p.feature-subtexts{
        font-size:0.7rem;
    }

    .left-box{
        padding:1.5rem;
    }

}
 

@media (max-width:992px){

    .content{
        flex-direction:column;
        height:auto;
    }

    .left-container{
        width:100%;
        height:380px; 
    }
    h2.feature-subtexts{
        font-size:1.3rem;
    }

    p.feature-subtexts{
        font-size:1rem;
    }
    .right-container{
        width:100%;
        height:360px;
        margin-top:1rem;
    }

    .circle-panel{
        margin-top:1.5rem;
    }

}
 

@media (max-width:768px){

    .main-wrapper{
        padding:1.5rem 1.2rem 2rem 1.2rem;
    }
    .left-container{
        width:100%;
        height:200px; 
    }
    /* .left-box{
        height:auto;
        padding:1.4rem;
    } */

    h2.feature-subtexts{
        font-size:1.2rem;
    }

    p.feature-subtexts{
        font-size:1rem;
        max-width:100%;
    }

    .right-container{
        height:320px;
    }

    .circle{
        width:13px;
        height:13px;
    }

}
 

@media (max-width:480px){

    .main-wrapper{
        padding:1.2rem 1rem;
    }

    .content{
        gap:1rem;
    }

    .left-container{
        height:200px;
    }

    .right-container{
        height:280px;
    }

    .points-color{
        font-size:1rem;
    }

    h2.feature-subtexts{
        font-size:1.0rem;
        line-height:1.3;
    }

    p.feature-subtexts{
        font-size:0.9rem;
    }

    .circle-panel{
        gap:0.8rem;
    }

    .circle{
        width:12px;
        height:12px;
        border-width:2px;
    }

}

/* 
.main-wrapper{
    height:60vh;
    padding-top: 30px;
    padding-left: 50px;
    padding-right: 50px;
    display:flex;
    align-items:center;
    justify-content:center;
}
 
.content{
    width:100%;
    max-width:1400px;
    display:flex;
    gap:40px;
    height: 400px; 
}
 
.left-container{
    width:40%;
    
    border-radius: 5px;
    height:100%;
    overflow-y:auto;
    scroll-snap-type: y mandatory; 
    mask-image: linear-gradient(
        to bottom,
        #040D12 0%,
        #040D12 80%,
        transparent 100%
    );
    
}
 
.left-container::-webkit-scrollbar{
    width:6px;
}
.left-container::-webkit-scrollbar-thumb{
    background:#5C8374;
    border-radius:10px;
}
 
.left-box{
    height:70%;
    background:#183D3D; 
    padding:20px;
    scroll-snap-align:start;
    margin-bottom:20px;
    border:1px solid #040D12;
    cursor: pointer;
}
.points-color{
    color:white;
}
.space_break{
    display: none;
}
 
.right-container {
    width: 60%;
    height: 450px;
    background: #5C8374;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #5C8374;
    overflow: hidden;
    border-radius: 15px;
}
.left-box:hover {
    border: 2px solid #ffffff;
    transition: border 0.3s ease;
}
.left-box.active {
    border: 2px solid #ffffff;
}
.right-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
 
.preview-img{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    transition:opacity 0.4s ease-in-out;
}

.preview-img.active{
    opacity:1;
}
 
.left-box.active{
    border:1px solid #5C8374;
}
.left-box{
    position:relative; 
} */
 .product-list{
    width:100%;
    overflow:hidden;
}

.product-slider{
    display:flex;
    transition:transform 0.8s ease;
}

.product-box{
    min-width:100%;
    box-sizing:border-box;
    padding:20px;
}
.container-custom{
    display:flex;
    align-items:center;
    justify-content:center; 
    width:100%;           

     
}
.product-prev,
.product-next{
    position:absolute;
    margin: 300px;
    /* top:10%; */
    transform:translateY(-50%);
    background:#183D3D;
    color:white;
    border:none;
    font-size:30px;
    padding:10px 18px;
    cursor:pointer;
    z-index:10;
}

.product-prev{
    left:10px;
}

.product-next{
    right:10px;
}

.product-prev:hover,
.product-next:hover{
    background:#5C8374;
}

/* Image Side */
/* .image-side{
    flex:1;
    display:flex;
    justify-content:center;
} */

/* .image-side img{
    width:100%;
    height:auto;
    border-radius:5px;
} */
.image-side{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
}

.image-side img{
    max-width:100%;
    height:auto;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    will-change: transform;
    border-radius:5px;
}

/* Smooth professional hover */
.image-side:hover img{
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

/* Text Side */
.text-side{
    flex:1;
    width: 100%;
    background: linear-gradient(135deg, #123030, #183D3D, #5C8374);

    border-radius: 4px;
    padding: 20px;
}

.text-side h2{ 
    margin-bottom:15px;
    color: white;
}

.text-side p{
    font-size:16px;
    line-height:1.6;
    color: white;
    text-align:justify;
}

@media(max-width:1300)
{

}
/* Tablet */
@media (max-width:992px){

.container-custom{
    flex-direction:column;
    width:80%;
    margin-left:10%;
    margin-right:10%;
    text-align:center;
}

.text-side p{
    text-align:center;
}

}

/* Mobile */
@media (max-width:768px){

.container-custom{
    width:90%;
    margin-left:5%;
    margin-right:5%;
}

}

/* Small Mobile */
@media (max-width:480px){

.container-custom{
    width:95%;
    margin-left:2.5%;
    margin-right:2.5%;
}

}

.learn-link{
    position:absolute;
    right:20px;
    bottom:20px;
    color:#5C8374;
    text-decoration:none;
    font-weight:600;
    transition:color 0.3s;
}

.learn-link:hover{
    color:#ffffff; 
}
/* SECTION */
.features-section{
  padding:80px 0; 
}

/* CENTER CONTENT */
.features-wrapper{
  width:100%;
  max-width:2000px;
  margin:auto;
  padding:0 20px;
}

/* CARD */
.feature-card{
  background: linear-gradient(180deg,#183D3D,#5C8374,#183D3D);
  border:1px solid rgba(255,255,255,0.08);
  padding:30px;
  border-radius:18px;
  height:100%;
  transition:all .35s ease;
  color:#fff;
  position:relative;
  overflow:hidden;
    display:flex;
  flex-direction:column;
}

/* Hover effect */
.feature-card:hover{
  transform:translateY(-8px);
  box-shadow:0 12px 30px rgba(0,0,0,0.35);
  border-color:#5C8374;
}

/* ICON */
.icon{
  width:50px;
  height:50px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  margin-bottom:18px;
}

/* TEXT */
.feature-card h4{
  font-size:20px;
  font-weight:600;
  margin-bottom:12px;
}

.feature-card p{
  font-size:16px;
  line-height:1.6;
  color:#e6f2f2;
}
.feature-btn{
    margin-top:10px;          /* pushes button down */
  align-self:flex-end;      /* moves button to right */
  display:inline-block; 
  padding:10px 20px;
  border-radius:30px;
  background:#5C8374;
  color:#fff;
  text-decoration:none;
  font-size:14px;
  transition:all .3s ease;
}

.feature-btn:hover{
  background:#183D3D;
  color:#ffffff;
  transform:translateY(-2px);
}

/* IMAGE */
.feature-card img{
  width:100%;
  border-radius:10px;
  margin-top:20px;
}

/* CHART BOX */
.chart-box img{
  width:100%;
  border-radius:12px;
}

/* RESPONSIVE */

/* Laptop */
@media (max-width:1200px){
.feature-card h4{
font-size:18px;
}
}

/* Tablet */
@media (max-width:992px){

.features-section{
padding:60px 0;
}

.feature-card{
padding:24px;
}

}

/* Mobile */
@media (max-width:768px){

.feature-card h4{
font-size:17px;
}

.feature-card p{
font-size:15px;
}

}

/* Small Mobile */
@media (max-width:480px){

.feature-card{
padding:20px;
}

.icon{
width:42px;
height:42px;
font-size:18px;
}

}


/* .feature-card {
  background: linear-gradient(180deg, #183D3D, #5C8374 , #183D3D);
  border: 1px solid rgb(24, 61, 61,0.08); 
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
    border-radius: 15px;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color:#5C8374;
}

.icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}



.feature-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 20px;
  color: #ffffff;
  line-height: 1.6;
} */

.chart-box {
  background: #040D12;
  border-radius: 12px;
  padding: 16px;
}

.slider-section {
    width: 100%;
}

.slider-wrapper {
    position: relative;
    border-radius: 15px;
    max-width: 1500px;
    margin: 0 auto;
    height: 70vh;
    min-height: 520px;
    max-height: 1900px;
    overflow: hidden;
}

/* Slides */

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 100%;
    opacity: 0;
    transition: all 0.6s ease;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slide::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:45%;
    background:linear-gradient(
        to top,
        rgba(0,0,0,1.2),
        rgba(0,0,0,0.7),
        rgba(0,0,0,0)
    );
}
/* Text Content */

.slide-content{
    position:absolute;
    bottom:40px;
    left:40px;
    color:white;
    max-width:800px;
    z-index:2;
}

.slide-content h2{
    font-size:38px; 
    color: white;
    font-weight:600;
    margin-bottom:10px;
}

.slide-content p{
    font-size:16px; 
    color: white;
    margin-bottom:15px;
    opacity:0.9;
}

.slide-btn{
    display:inline-block;
    padding:10px 22px;
    background:#5C8374;
    color:#ffffff;
    border-radius:6px;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
}

.slide-btn:hover{
    background:#183D3D;
    color:white;
}
.slide.active {
    left: 0;
    opacity: 1;
}

.slide.prev {
    left: -100%;
}

.slide.next {
    left: 100%;
}

/* DOTS */

.dots-wrapper{
    display:flex;
    justify-content:center;
    margin-top:15px;
}

.dots span{
    height:12px;
    width:12px;
    margin:0 6px;
    display:inline-block;
    /* background:#132c2c; */
    border-radius:50%;
    border: white 2px solid;
    cursor:pointer;
    transition:0.3s;
}

.dots span.active-dot{
    background:#ffffff;
    transform:scale(1.3);
}


/* utility products  */

.utility-wrapper{
    padding:80px 0;
}

.utility-title{
    font-size:42px;
    font-weight:700;
    margin-bottom:60px;
    opacity:0;
    transform:translateY(40px);
    transition:all 1s ease;
}
.utility-title.show{
    opacity:1;
    transform:translateY(0);
}

.utility-card{
    position:relative;
    border-radius:18px;
    overflow:hidden;
    background:#1a1a1a;
    transition:all 0.5s ease;
    opacity:0;
    transform:translateY(60px);
}

.utility-card.show{
    opacity:1;
    transform:translateY(0);
}

.utility-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:transform 0.6s ease;
}

.utility-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
}

.utility-content{
    position:absolute;
    bottom:20px;
    left:20px;
    z-index:2;
}

.utility-content h4{
    font-weight:600;
    color: white;
}

.utility-btn{
    display:inline-block;
    margin-top:10px;
    padding:8px 18px;
    border-radius:30px;
    background:#5C8374;
    color:#fff;
    text-decoration:none;
    transition:all 0.4s ease;
}

.utility-btn:hover{
    background:#183D3D;
    color:#ffffff;
    transform:translateY(-3px);
}

.utility-card:hover img{
    transform:scale(1.1);
}

.utility-card:hover{
    transform:translateY(-10px);
}

@media(max-width:768px){
    .utility-title{
        font-size:30px;
    }
}
/* .slider-section {
    width: 100%;
}

.slider-wrapper {
    position: relative;
    
    border-radius: 15px;
    max-width: 900px;
    margin: 0 auto;
    height: 60vh;
    min-height: 320px;
    max-height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.slide.prev,
.slide.next {
    opacity: 0.5;
    transform: scale(0.9);
    z-index: 1;
}

/* Navigation buttons */
.slider-nav button {
    min-width: 100px;
} */

.device-section{
    padding:100px 0;
    text-align:center;
    position:relative;
}

.device-wrapper{
    position:relative;
    display:inline-block;
}
 
.device {
    width: 600px;           
    max-width: 90vw;        
    height: 480px;           
    border-radius: 15px;
    margin: auto;
    box-shadow: 0 0 40px rgb(4, 13, 18,0.6);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.device img {
    width: 100%;            
    height: auto;           
    display: block;
    border-radius: 15px;
    object-fit: contain;    
}

 
 
.status-box{
    position:absolute;
    padding:10px 20px;
    border-radius:8px;
    font-size:14px;
    font-weight:500;
    display:flex;
    align-items:center;
    gap:8px;
    opacity:0;
    transform:translateY(-40px);
    transition:all 0.6s ease;
}
 
.status-box.show{
    opacity:1;
    transform:translateY(0);
}
 
.slow-speed{
    top:-50px;
    left:30%;
    transform:translate(-50%, -40px);
    background:#183D3D;
}

.slow-speed.show{
    transform:translate(-50%, 0);
}
 
.breakdown{
    bottom:-50px;
    left:5%;
    background:#183D3D;
}

.breakdown.show{
    transform:translateY(0);
}
.production-resumed{
    top:-50px;
    left:80%;
    transform:translate(-50%, -40px);
    background:#183D3D;
}

.production-resumed.show{
    transform:translate(-50%, 0);
}
 
.changeover{
    bottom:-50px;
    left:90%;
    background:#183D3D;
}

.changeover.show{
    transform:translateY(0);
}
 
.dot{
    width:8px;
    height:8px;
    border-radius:50%;
}

.yellow1{ background:#ffc107; }
.red2{ background:#ff3b3b; }
.green3{ background:#22c55e; }
.blue4{ background:#3b82f6; }


.work-link {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    transition: 0.3s;
}

.work-link:hover {
    color: #5C8374;
}
 
.arrow-work {
    background: #5C8374;
    color: rgb(0, 0, 0);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    font-weight: bold;
}  
.cta-bg {
  min-height: 30vh;
}

.cta-box {
    border-radius: 15px;
    background: linear-gradient(135deg, #123030, #183D3D, #5C8374);

  padding: 32px;
  color: #ffffff;
}
 
.cta-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}

.cta-subtitle {
  font-size: 15px;
  opacity: 0.9;
}
 
.cta-text {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: rgb(4, 13, 18);
}
 
.cta-btn {
  background-color: rgb(4, 13, 18);
  color: #ffffff;
  padding: 12px 22px;
  font-weight: 600; 
    border-radius: 15px;
  border: none;
}

.cta-btn:hover {
  background-color: #181818;
  color: rgb(4, 13, 18);
  transform: translateY(-3px);
}
.cta-btn:active {
  transform: translateY(0);
  color: white;
  background-color: #040D12;
}
.map-container {
  width: 80%;            
  max-width: 400px;      
  height: 200px;         
  margin: 0 auto;     
  overflow: hidden;
  box-shadow: 0 4px 15px rgb(4, 13, 18,0.2);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  transition: transform 0.3s ease;
}

.map-container iframe:hover {
  transform: scale(1.02);
}
.footer {
  background: radial-gradient(circle at top, #183D3D, #040D12);
  color: #fff;
  padding: 60px 0 30px;
  font-size: 14px;
  position: relative;
}

.footer-logo {
  font-weight: 800;
  color: #5C8374;
}

.footer-logo-img {
  max-width: 280px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer h6 {
  font-size: 15px;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer a {
  color: #93B1A6;
  text-decoration: none;
  transition: 0.3s;
}

.footer a:hover,
.footer a.active {
  color: #5C8374;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  margin-right: 12px;
  font-size: 16px;
  color: #5C8374;
}

.footer-bottom {
    width: 100%;
  /* border-top: 1px solid #22adc5; */
  margin-top: 40px;
  padding-top: 20px;
}
.full-line {
    width: 100%;
    height: 2px;        /* thickness */
    background-color: #5C8374;  /* change color */
    margin: 20px 0;     /* spacing */
}
.footer-bottom a {
  margin-right: 15px;
}

.footer-bottom p {
  margin-top: 8px;
  color: #93B1A6;
}

.to-top {
  background: none;
  border: none;
  color: #5C8374;
  font-weight: 600;
  cursor: pointer;
}

.quote-section {
  background: radial-gradient(circle at top, #040D12, #040D12);
  color: #ffffff;
  min-height: auto;
}
 
.quote-image {
  text-align: center;
  padding: 40px;
}

.quote-image img {
  max-width: 90%;
  height: auto;
    border-radius: 15px;
}
 
.quote-form {
  padding: 60px;
}

.quote-form h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.quote-form h2 span {
  color: #5C8374;
}

.quote-form p {
  color: #ffffff;
  margin-bottom: 30px;
  max-width: 520px;
  text-align: justify; 
}
 
.quote-form input,
.quote-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid #ffffff;
  padding: 10px;
  margin-bottom: 25px;
  color: #ffffff;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #93B1A6;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: #5C8374;
}

.captcha-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  cursor: pointer;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 8px;
  position: relative;
}
.checkbox-wrapper input[type="checkbox"] {
  display: none;  
}

.fake-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid #5C8374;
  border-radius: 4px;
  display: inline-block;
  position: relative;
}
.fake-checkbox::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 12px;
  border: solid #5C8374;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s;
}
.checkbox-wrapper input[type="checkbox"]:checked + .fake-checkbox::after {
  opacity: 1;  
}
 
.send-btn {
  background: linear-gradient(90deg, #5C8374, #5C8374);
  border: none;
  padding: 12px 30px;
  
  color: #ffffff;
  border-radius: 15px;
  font-weight: 700; 
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 1450px) {
    .nav-link {
        font-size: 16px;
        margin: 0 10px;
    }
}
@media (max-width: 1315px) {
    .nav-link {
        font-size: 14px;
        margin: 0 8px;
    }
}
@media (max-width: 1250px) {
    .nav-link {
        font-size: 12px;
        margin: 0 6px;
    }
}
@media (max-width: 992px) {

 .mobile-buttons {
    display: block;      
  margin: 0 auto;       
  width: 400px; 
  }
    .logo {
        margin-left: 25px;
    }
    .logo-img {
        width: 150px;
    }
    .nav-link {
        font-size: 18px; 
    }
    
 .right-buttons {
    display: none !important;
  }
    .navbar-toggler {
        position: absolute;
        right: 20px;
        top: 5px;
    }
.mainpage-logo {
        width: 300px;
    }

    .dropdown-menu {
        min-width: 100%;
    }

    .dual-image {
        width: 45%;     
    }
    .feature-heading {
        font-size: 48px;
    }

       .content{
        flex-direction: column-reverse;
        height:auto;
    }


    .space_break{
        display: block;
    }
    /* .left-container{
        width:100%;
        height:250px;
    }
    .right-container {
        width: 100%;
        height: 500px;
        margin-top: 20px;
    } */
    .learn-link{
        right:15px;
        bottom:15px;
        font-size:14px;
    }
    .feature-card {
    padding: 22px;
  }
  .slider-wrapper { height: 50vh; }
  .device{
        width:500px;
        height:220px;
    }
     .cta-box {
    padding: 28px;
  }

  .cta-title {
    font-size: 28px;
  }

  .cta-text {
    font-size: 15px;
  }

  .cta-btn {
    padding: 11px 22px;
  }
  .footer {
    padding: 50px 0 30px;
  }

  .footer-logo-img {
    max-width: 160px;
  }

  .footer h6 {
    font-size: 14px;
  }

  .footer ul li {
    margin-bottom: 6px;
  }
  .quote-form {
    padding: 40px;
  }

  .quote-form h2 {
    font-size: 36px;
  }
  .map-container {
    width: 70%;
    height: 180px;
  }
  .device {
        width: 500px;
        height: 315px;
    }
    .slow-speed { left:15%; }
    .production-resumed { left:65%; }
    .breakdown { left:8%; }
    .changeover { left:60%; }
    .status-box {
        font-size:13px;
        color: white;
        padding:8px 16px;
    }
    .info-card {
        padding: 30px;
        min-height: 260px;
    }

    .rating-number {
        font-size: 40px;
    }

    .card-video {
        height: 250px;
    }    
    .slide-content h2{
    font-size:30px;
    font-weight:600; 
}

.slide-content p{
    font-size:14px; 
    opacity:0.9;
}
}

@media (max-width: 768px) {

    .logo-img {
        width: 150px;
    }
    .container p {
        font-size: 1rem;
    }
    .overlay-text h2 {
        font-size: 22px;
    }
    .overlay-text p {
        font-size: 14px;
    }

        .logo-track {
        gap: 40px;
    }
    .mainpage-logo {
        width: 250px;
    }

    .info-section .row {
        text-align: center;
    }

    .info-card {
        padding: 25px;
        min-height: auto;
    }

    .rating-number {
        font-size: 36px;
    }

    .stars i {
        font-size: 18px;
    }

    .card-video {
        height: 220px;
    }

    .rating-number {
        font-size: 36px;
    }
    .feature-heading {
        font-size: 36px;
    }

    .feature-subtexts {
        font-size: 14px;
    }
    /* .left-container{
        height:220px;
    }
    .right-container {
        height: 380px;
        border-radius: 12px;
    } */

    .left-box{
        height:80%;
        padding:15px;
    }
    .learn-link{
        right:15px;
        bottom:15px;
        font-size:14px;
    }
    .feature-card h4 {
    font-size: 18px;
  }
    .slider-wrapper { height: 40vh; }

    .nav-btn{
        font-size:28px;
    }
    .device{
        width:400px;
        height:200px;
    }

    .status-box{
        font-size:12px;
        padding:8px 16px;
    }
    .cta-box {
    text-align: center;
    padding: 26px 22px;
  }

  .cta-title {
    font-size: 26px;
  }

  .cta-text {
    margin-top: 10px;
    font-size: 15px;
  }

  .cta-btn {
    margin-top: 18px;
  }
   .footer {
    text-align: center;
  }

  .footer-logo {
    margin-bottom: 25px;
  }
  .footer-logo-img {
    max-width: 240px;
    margin: 0 auto;
    display: block;
  }

  .social-icons {
    margin-top: 20px;
  }

  .social-icons a {
    margin: 0 10px;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-bottom a {
    display: inline-block;
    margin: 6px 10px;
  }

  .to-top {
    margin-top: 15px;
  }
  .quote-section {
    text-align: center;
  }

  .quote-form {
    padding: 35px 25px;
  }

  .quote-form p {
    margin: 0 auto 30px;
  }

  .captcha-box {
    margin: 0 auto 25px;
  }
  .map-container {
    width: 90%;
    height: 160px;
  }
  .device {
        width: 400px;
        height: 316px;
    }
    .slow-speed { left:20%; }
    .production-resumed { left:70%; }
    .breakdown { left:5%; }
    .changeover { left:80%; }
    .status-box {
        font-size:12px;
        color: white;
        padding:6px 12px;
    }
}

@media (max-width: 480px) {
    .container h1 {
        font-size: 1.8rem;  
    }
.search-box.active {
        width: 130px;
    }

    .search-box input {
        width: 100px;
    }
    .container p {
        font-size: 0.95rem;
    }
    .mainpage-logo {
        width: 180px;
    }
    .vd {
        flex-direction: column;   
        gap: 20px;                
    }
    .info-card {
        padding: 20px;
        border-radius: 10px;
    }

    .rating-number {
        font-size: 30px;
    }

    .stars i {
        font-size: 16px;
        margin-right: 3px;
    }

    .highlight {
        font-size: 14px;
    }

    .card-video {
        height: 200px;
    }
    .overlay-text h2 {
        font-size: 18px;
    }
    .overlay-text p {
        font-size: 12px;
    }
    .feature-heading {
        font-size: 28px;
    }
    .feature-subtexts {
        font-size: 13px;
    }
    
    /* .left-container{
        height:200px;
    }
 .right-container {
        width: 100%;         
        height: 260px;       
        border-radius: 10px;
    } */

    .right-container img,
    .preview-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .left-box{
        padding:12px;
    }

    .left-box h2{
        font-size:18px;
    }
    .learn-link{
        right:10px;
        bottom:10px;
        font-size:13px;
    }
.slider-wrapper { height: 30vh; }

    .nav-btn{
        font-size:28px;
    }
    .device{
        width:300px;
        height:170px;
    }

    .slow-speed{
        top:-40px;
    }

    .breakdown{
        bottom:-40px;
        left:5%;
    }
    .cta-bg {
    padding: 20px 10px;
  }

  .cta-box {
    padding: 22px 16px;
    border-radius: 12px;
  }

  .cta-title {
    font-size: 22px;
  }

  .cta-subtitle {
    font-size: 14px;
  }

  .cta-text {
    font-size: 14px;
    line-height: 1.51111111;
  }

  .cta-btn {
    width: 100%;
    padding: 12px;
    font-size: 15px;
  }
  .footer {
    padding: 40px 15px 25px;
    font-size: 13px;
  }

  .footer-logo-img {
    margin-top: 22px;
    font-size: 14px;
  }

  .social-icons a {
    font-size: 20px;
  }

  .footer-bottom p {
    font-size: 12px;
  }
  .quote-form h2 {
    font-size: 30px;
  }

  .send-btn {
    width: 100%;
  }
  .map-container {
    width: 100%;
    height: 140px;
  }
  .device {
        width: 300px;
        height: 315px;
    }
    .slow-speed { top:-40px; left:25%; transform:translateX(-50%); }
    .production-resumed { top:-40px; left:80%; transform:translateX(-50%); }
    .breakdown { bottom:60px; left:20%; transform:translateX(-50%); }
    .changeover { bottom:-10px; left:70%; transform:translateX(-50%); }
    .status-box {
        font-size:11px;
        color: white;
        padding:5px 10px;
    }
    .dot {
        width:6px;
        height:6px;
    }
}

.neon-header.scrolled {
    background: rgba(0, 0, 0, 0.0.6);
    box-shadow: 0 0 20px #181818,
                0 0 40px #1b1b1b;
}
