/* Make main header sticky */
.smt-main-header {
    position: sticky;
    top: 0;
    z-index: 999;
}

/* Animation for top header hide/show */
.smt-top-header {
    transition: transform 0.3s ease;
    position: fixed;
}

.smt-top-header.hide {
    transform: translateY(-100%);
}

.smt-main-header {

    top: 0;
    z-index: 1000;
    background: #fff;
    /* or your header background */
    transition: top 0.3s ease;
}

.updated-header {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    position: sticky;
}


/* .smt-top-header,
.smt-main-header {
  transition: transform 0.3s ease;
}

.smt-main-header.move-up {
  transform: translateY(-100%);
  position: sticky;
  top: 0;
  z-index: 1000;
} */


/* Top Header Styles */
.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    background-color: #f8f9fa;
    /* Light gray background */
    font-size: 14px;
    color: #333;
}

.top-header-margin {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.top-header-bg {
    background-color: #f8f9fa;
}

.top-contact i {
    color: var(--accent-color);
    /* Accent color for icons */
    margin-right: 5px;
}

.top-contact .ml-4 {
    margin-left: 20px;
}

.top-social a {
    color: #333;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.top-social a:hover {
    color: #d9230f;
    /* Change on hover */
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
    .top-header {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }

    .top-contact {
        margin-bottom: 5px;
    }
}

/* section 2 */

/* ===== General Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== Sticky Header ===== */
#sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ===== Navbar ===== */
.navbar {
    padding: 0.8rem 0;
    background: #f8f9fa !important;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar-brand img.logo-img {
    max-height: 55px;
    transition: transform 0.2s ease;
}

.navbar-brand img.logo-img:hover {
    transform: scale(1.05);
}

/* ===== Navigation Links ===== */
.navbar-nav .nav-link {
    color: #333 !important;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 18px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #007bff !important;
    background: rgba(0, 123, 255, 0.08);
    border-radius: 5px;
}

/* ===== Active Link ===== */
.navbar-nav .active .nav-link {
    color: #007bff !important;
    font-weight: 600;
}

/* ===== Dropdown Menu ===== */
.dropdown-menu.dropdown-large {
    padding: 20px;
    border: none;
    border-radius: 6px;
    background-color: #ffffff;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

.dropdown-menu .prod-link-flex {
    display: flex;
    align-items: center;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.dropdown-menu .prod-link-flex:hover {
    background-color: #f0f8ff;
}

.dropdown-menu .prod-link-img img {
    max-width: 40px;
    margin-right: 10px;
}

/* ===== Special Button (Contact Us) ===== */
.navbar-nav .yellow-btn1 {
    background-color: #ffc107;
    color: #000 !important;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.navbar-nav .yellow-btn1:hover {
    background-color: #e0a800;
    color: #fff !important;
}

/* ===== Mobile Menu Lines ===== */
.menuline {
    display: block;
    width: 25px;
    height: 3px;
    margin: 4px 0;
    background-color: #333;
    transition: all 0.3s ease;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .dropdown-menu.dropdown-large {
        padding: 10px;
    }

    .prod-link-flex {
        justify-content: flex-start;
    }
}

/* hover */
.carousel-item img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

/* Caption container on each image */
.img-container {
    position: relative;
    overflow: hidden;
}

/* Hidden caption */
.img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: center;
    padding: 8px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Show caption on hover */
.img-container:hover .img-caption {
    opacity: 1;
}

/* Overlay text style */
.img-overlay {
    position: relative;
    flex: 0 0 25%;
    /* 4 per screen */
}


/* responsive */
/* Overlay text style */
/* .img-overlay {
      position: relative;
    } */
.img-overlay span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px;
    text-align: center;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.img-overlay:hover span {
    opacity: 1;
}

/* update carousel */
.carousel-item {
    display: flex;
}

@media (max-width: 992px) {
    .img-overlay {
        flex: 0 0 50%;
    }

    /* 2 per screen */
}

@media (max-width: 576px) {
    .img-overlay {
        flex: 0 0 100%;
    }

    /* 1 per screen */
}

/* cmk product */
/* ===== Product Section Styles ===== */
.product-section {
    padding: 60px 15px;
    background: #fff;
    font-family: Arial, sans-serif;
}

.product-section h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #222;
}

.product-section p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Product grid layout */
.product-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Product box */
.pro-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.pro-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Image wrapper */
.pro-img {
    position: relative;
    overflow: hidden;
}

.pro-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Zoom effect */
.pro-box:hover .pro-img img {
    transform: scale(1.1);
}

/* Title overlay on hover */
.pro-title {
    padding: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    background: #f9f9f9;
    color: #333;
    transition: background 0.3s ease;
}

.pro-box:hover .pro-title {
    background: var(--accent-color);
    color: #000;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .product-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .product-list {
        grid-template-columns: repeat(1, 1fr);
    }
}



/* Container spacing */
.six-step-section {
    padding: 60px 0;
    background: #f9f9f9;
}

/* Header styling */
.six-step-section .header-section h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Each box */
.six-box {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease;
    align-items: center;
    /* Align image and text at the top */
    gap: 15px;
}

.six-box:hover {
    transform: translateY(-5px);
}

/* Image inside box */
.six-box-img img {
    display: block;
    margin: 0 auto 15px;
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* Title */
.six-box h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

/* Paragraph */
.six-box p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* Owl Carousel Navigation */
.owl-carousel .owl-nav button {
    background: #333 !important;
    color: #fff !important;
    border-radius: 50%;
    padding: 5px 10px !important;
    margin: 0 5px;
    transition: background 0.3s ease;
}

.owl-carousel .owl-nav button:hover {
    background: #f39c12 !important;
}

/* Dots */
.owl-carousel .owl-dots .owl-dot span {
    background: #ccc;
    transition: background 0.3s ease;
}

.owl-carousel .owl-dots .owl-dot.active span {
    background: #f39c12;
}

/* Responsive */
@media (max-width: 768px) {
    .six-box {
        padding: 15px;
    }

    .six-step-section .header-section h2 {
        font-size: 1.5rem;
    }
}


/* testimonial */
.testimonial-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #333;
    /* padding-top: 148px; */
}

.testimonial-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-box p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.client-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.client-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
}

.client-info h4 {
    font-size: 18px;
    margin: 5px 0 2px;
    color: #333;
}

.client-info span {
    font-size: 14px;
    color: #888;
}

/* Owl Carousel Custom Navigation */
.owl-prev,
.owl-next {
    position: absolute;
    top: 40%;
    background: #fff;
    padding: 8px 14px;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.owl-prev {
    left: -15px;
}

.owl-next {
    right: -15px;
}

.owl-prev:hover,
.owl-next:hover {
    background: #333;
    color: #fff;
}

/* video */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.video-section {
    text-align: center;
    padding: 40px 20px;
}

.video-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.video-section p {
    color: #555;
    max-width: 700px;
    margin: auto;
    font-size: 15px;
}

.video-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.video-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 320px;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-card iframe {
    width: 100%;
    height: 180px;
    border: none;
}

.video-title {
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

@media (max-width: 768px) {
    .video-card iframe {
        height: 200px;
    }
}

@media (max-width: 500px) {
    .video-card iframe {
        height: 180px;
    }
}


/* vision */
.vision-section {
    width: 100%;
    background-color: #d6efff;
    /* Light blue full background */
    padding: 50px 20px;
}

.vision-container {
    /* max-width: 900px; */
    margin: 0 auto;
    text-align: center;
    font-family: Arial, sans-serif;
}

.vision-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.vision-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* why choose */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.why-choose {
    background-color: #f8fbff;
    /* light blue background */
    padding: 50px 20px;
    text-align: center;
}

.why-choose h2 {
    font-size: 28px;
    color: #1a4b8b;
    margin-bottom: 10px;
}

.why-choose .subtitle {
    font-size: 16px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card h3 {
    color: #1a4b8b;
    font-size: 20px;
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* product */


/* ===== HEADER STYLES ===== */

.smt-nav a.active {
    color: #1a73e8;
    font-weight: bold
}

.smt-header * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.smt-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Top Header */
.smt-top-header {
    background: #1a73e8;
    color: white;
    font-size: 14px;
    padding: 8px 0;
}

.smt-top-contact span {
    margin-right: 20px;
}

.smt-top-contact i {
    margin-right: 6px;
}

.smt-top-social a {
    color: white;
    margin-left: 10px;
    text-decoration: none;
    font-size: 16px;
}

/* Main Header */
.smt-main-header {
    background: white;
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.smt-logo {
    font-size: 22px;
    font-weight: bold;
    color: #1a73e8;
}

.smt-nav a {
    color: #333;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
}

.smt-nav a:hover,
.smt-nav a.active {
    color: #1a73e8;
    font-weight: bold;
}

/* Menu Toggle (Mobile) */
.smt-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .smt-nav {
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        display: none;
        border-top: 1px solid #ddd;
    }

    .smt-nav.open {
        display: flex;
    }

    .smt-nav a {
        padding: 12px;
        border-bottom: 1px solid #eee;
        margin: 0;
    }

    .smt-menu-toggle {
        display: block;
    }
}