:root {
    /* Amtech Electronics Inspired Color Palette */
    --primary-blue: #005679;
    /* Dark navy blue from Amtech Electronics */
    --secondary-blue: #07BA96;
    /* Medium blue */
    --accent-orange: #07BA96;
    /* Orange accent from Amtech brand */
    --light-blue: #ebf8ff;
    /* Very light blue background */
    --background-white: #ffffff;
    /* Pure white */
    --background-gray: #f7fafc;
    /* Light gray background */
    --text-dark: #2d3748;
    /* Dark text */
    --text-medium: #4a5568;
    /* Medium gray text */
    --text-light: #718096;
    /* Light gray text */
    --border-light: #e2e8f0;
    /* Light border */
    --success-green: #38a169;
    /* Success green */
    --warning-orange: #ed8936;
    /* Warning orange */
    --danger-red: #e53e3e;
    /* Danger red */

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #005679 30%, #07BA96 100%);
    --gradient-accent: linear-gradient(135deg, #ed8936 0%, #f6ad55 100%);
    --gradient-light: linear-gradient(135deg, #ebf8ff 0%, #ffffff 100%);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing and Layout */
    --section-padding: 80px;
    --border-radius: 12px;
    --border-radius-small: 8px;

    /* Shadows */
    --shadow-light: 0 2px 10px rgba(26, 54, 93, 0.08);
    --shadow-medium: 0 4px 20px rgba(26, 54, 93, 0.12);
    --shadow-heavy: 0 8px 30px rgba(26, 54, 93, 0.16);

    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-medium: 0.3s ease-in-out;
}

/* Base Styles */
body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--background-white);
    line-height: 1.6;
}

.color-icon {
  color: var(--gradient-accent); /* Sets the icon color to blue */
}
/* ================= NAVBAR BASE ================= */
.custom-navbar {
    background: var(--gradient-light);
    padding: 1rem 0;
    box-shadow: var(--shadow-light);
    border-bottom: 2px solid var(--accent-orange);
}

.navbar-brand {
    color: var(--background-white) !important;
    font-weight: 700;
}

.navbar-nav .nav-link {
    color: var(--primary-blue) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.75rem 1rem !important;
    border-radius: var(--border-radius-small);
    transition: all var(--transition-fast);
}

/* --- YOUR ORIGINAL HOVER & ACTIVE STYLE --- */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.nav-item.dropdown:hover>.nav-link {
    color: var(--background-white) !important;
    background-color: var(--secondary-blue);
    box-shadow: 0 2px 8px #96FBE5;
    /* Your specific glow color */
}

/* ================= DROPDOWN & SUBMENU ================= */
.navbar .dropdown-menu {
    border-radius: 8px;
    border: none;
    padding: 10px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: #ffffff;
    min-width: 220px;
}

.navbar .dropdown-item {
    font-size: 15px;
    padding: 10px 18px;
    color: var(--primary-blue);
    transition: all 0.3s;
}

/* Your original Item Hover style */
.navbar .dropdown-item:hover {
    background: var(--secondary-blue);
    color: #ffffff;
    padding-left: 22px;
}

/* Target the mobile toggle button border */
.navbar-toggler {
    border-color: var(--primary-blue) !important;
    padding: 0.5rem;
}

/* Change the hamburger lines to your Primary Blue */
.navbar-toggler-icon {
    background-image: none !important;
    /* Remove default Bootstrap SVG */
    background-color: var(--primary-blue);
    /* Apply your color */

    /* Use a mask to keep the 'three-line' shape but change the color */
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-size: 100%;
    -webkit-mask-size: 100%;
}

/* Optional: Change color when the button is clicked/active */
.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 51, 102, 0.25);
    /* Subtle glow in primary blue */
}

/* ================= DESKTOP SUBMENU LOGIC ================= */
@media (min-width: 992px) {

    /* Main Dropdown Hover Animation */
    .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all .25s ease;
    }

    .nav-item.dropdown:hover>.dropdown-menu {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }

    /* SUBMENU (Child Menu) Fly-out to the Right */
    .dropdown-submenu {
        position: relative;
    }

    .dropdown-submenu>.dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -5px;
        opacity: 0;
        visibility: hidden;
        transform: translateX(10px);
    }

    .dropdown-submenu:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    /* Submenu Arrow Orientation */
    .dropdown-submenu>.dropdown-toggle::after {
        display: none !important;
    }
}

.dropdown-toggle::after {
    display: none !important;
}

/* ================= MOBILE & TABLET ================= */
@media (max-width: 991px) {
    .dropdown-menu {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
        display: none;
        /* Controlled by JS or Bootstrap 'show' class */
        box-shadow: none;
        border-left: 2px solid var(--accent-orange);
        margin-left: 10px;
    }

    .dropdown-menu.show {
        display: block;
    }

    .dropdown-submenu .dropdown-menu {
        margin-left: 15px;
        background-color: #f9f9f9;
    }

    .navbar-collapse {
        background: #ffffff;
        padding: 15px;
        border-radius: 10px;
        margin-top: 10px;
    }

    /* Smooth scroll look */
    .navbar-collapse::-webkit-scrollbar {
        width: 5px;
    }

    .navbar-collapse::-webkit-scrollbar-thumb {
        background: var(--secondary-blue);
        border-radius: 10px;
    }

}

/* Active submenu item */
.dropdown-menu .dropdown-item.active {
    background-color: var(--secondary-blue);
    color: #ffffff !important;
    font-weight: 500;
}

/* Optional hover for active item */
.dropdown-menu .dropdown-item.active:hover {
    background-color: var(--secondary-blue);
    color: #ffffff;
}

/* Mobile (default) - 4 lines */
.responsive4-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: justify;
}

.responsive4-text {
    line-clamp: 4;
    -webkit-line-clamp: 4;
}

/* Desktop / Tablet - 4 lines */
@media (min-width: 768px) {
    .responsive4-text {
        line-clamp: 4;
        -webkit-line-clamp: 4;
    }
}

/* Mobile (default) - 3 lines */
.responsive-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: justify;
}

.responsive-text {
    line-clamp: 3;
    -webkit-line-clamp: 3;
}

/* Desktop / Tablet - 3 lines */
@media (min-width: 768px) {
    .responsive-text {
        line-clamp: 3;
        -webkit-line-clamp: 3;
    }
}

/* Hero Section */
.hero-section {
    margin-top: 60px;
    width: 100%;
    overflow: hidden;
}

/* Carousel Slide Image */
.carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    /* full image visible */
    background: #fff;
}

/* Tablet */
@media (max-width:992px) {

    .hero-section {
        margin-top: 70px;
        /* adjust for tablet navbar */
    }

    .carousel-item img {
        height: 350px;
    }

}

/* Mobile */
@media (max-width:576px) {

    .hero-section {
        margin-top: 40px;
        /* more space for mobile navbar */
    }

    .carousel-item img {
        height: 250px;
    }

}

/* Indicators container */
.carousel-indicators {
    bottom: 20px;
}

/* Indicator dots */
.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ffffff;
    opacity: 0.6;
    margin: 0 5px;
    transition: all 0.3s ease;
}

/* Active dot */
.carousel-indicators .active {
    background-color: var(--accent-orange);
    opacity: 1;
    width: 30px;
    border-radius: 20px;
}

/* Tablet */
@media (max-width:992px) {

    .carousel-indicators {
        bottom: 15px;
    }

    .carousel-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }

    .carousel-indicators .active {
        width: 22px;
    }

}

/* Mobile */
@media (max-width:576px) {

    .carousel-indicators {
        bottom: 10px;
    }

    .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }

    .carousel-indicators .active {
        width: 18px;
    }

}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

/* Arrow icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 25px;
    height: 25px;
    background-size: 100% 100%;
}

/* Hover */
.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: #ffcc00;
}

/* Tablet */
@media (max-width:992px) {

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }

}

/* Mobile */
@media (max-width:576px) {

    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
    }

    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 18px;
        height: 18px;
    }

}

/* .testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.client-logo {
    max-height: 60px;
    object-fit: contain;
} */

/* .testimonial-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial-card h5 {
    font-weight: 600;
    margin-bottom: 3px;
}

.testimonial-card span {
    font-size: 13px;
    color: #777;
} */

/* Hide overflow */
/* Slider container */

.testimonial-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Track */

.testimonial-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
    animation: testimonialScroll 25s linear infinite;
}

/* Card column width */

.testimonial-track .col-lg-4 {
    flex: 0 0 420px;
    max-width: 420px;
}

/* Card design */

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    height: 80%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Logo */

.client-logo {
    height: 100px;
    max-width: 150px;
    object-fit: contain;
    text-align: center;
}

/* Animation */

@keyframes testimonialScroll {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}

/* Pause animation */

.testimonial-slider:hover .testimonial-track {
    animation-play-state: paused;
}

/* ------------------ */
/* RESPONSIVE DESIGN */
/* ------------------ */

/* Tablet */

@media (max-width: 992px) {

    .testimonial-track .col-lg-4 {
        flex: 0 0 340px;
        max-width: 340px;
    }

}

/* Mobile */

@media (max-width: 768px) {

    .testimonial-track .col-lg-4 {
        flex: 0 0 280px;
        max-width: 280px;
    }

    .testimonial-card {
        padding: 20px;
        min-height: 260px;
    }

    .client-logo {
        height: 50px;
    }

}

/* Small Mobile */

@media (max-width: 480px) {

    .testimonial-track .col-lg-4 {
        flex: 0 0 240px;
        max-width: 240px;
    }

    .testimonial-card {
        padding: 18px;
        min-height: 240px;
    }

}

.vfd-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('images/products/vfd-banner.jpg') center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    color: #fff;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.product-img {
    max-height: 180px;
    object-fit: contain;
}

.product-spec {
    list-style: none;
    padding: 0;
    font-size: 14px;
}

.product-spec li {
    padding: 4px 0;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 6px 0;
    border-bottom: 1px solid #eee;
}

/* @keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
} */

@keyframes scrollClients {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollClients {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    font-weight: 500;
    font-size: 15px;
    padding: 12px 30px;
    border-radius: var(--border-radius-small);
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--background-white);
    box-shadow: var(--shadow-medium);
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: var(--gradient-accent);
    color: var(--background-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-outline-primary {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-blue);
    color: var(--background-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Sections */
.section {
    padding: var(--section-padding) 0;
    background: var(--background-white);
}

.section-alt {
    background: var(--gradient-light);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.125rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

/* Page Header */
.page-header {
    position: relative;
    background: url("../images/main_loc.png") center/cover no-repeat;
    min-height: 200px;
    padding: 60px 0;
    margin-top: 70px;
    border-bottom: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Theme color shadow overlay */
.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 86, 121, 0.85) 0%,
            rgba(7, 186, 150, 0.75) 100%);
}

.page-header .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.breadcrumb a {
    color: #ffffff;
}

.breadcrumb {
    /* background: transparent; */
    padding: 0;
    margin-bottom: 0;
    justify-content: center;
}

.breadcrumb-item a {
    color: #ffffff;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #ffffff;
}

.breadcrumb-item.active {
    color: #ffffff;
    font-weight: 500;
}

/* P tag */

.justify-text {
    text-align: justify;
}

/* Cards */
.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: all var(--transition-medium);
    background: var(--background-white);
    border: 1px solid var(--border-light);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-orange);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    height: 2em;
}

.card-text {
    color: var(--text-medium);
    line-height: 1.6;
}

.card-img-top {
    height: 220px;
    /* fixed height */
    width: 100%;
    object-fit: cover;
    /* crop image nicely */
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.product-img {
    height: 220px;
    width: 100%;
    object-fit: contain;
    background: #fff;
    padding: 10px;
}

/* Feature Lists */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    position: relative;
    padding: 0.5rem 0 0.5rem 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-medium);
    line-height: 1.6;
    background: var(--background-white);
    border-radius: var(--border-radius-small);
    border-left: 3px solid var(--accent-orange);
    padding-left: 1rem;
}

.feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    color: var(--success-green);
    background: var(--background-white);
    padding: 0.25rem;
    border-radius: 50%;
}

/* Statistics */
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-medium);
}

.contact-card {
    background: var(--background-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-medium);
    height: 100%;
    border: 1px solid var(--border-light);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-orange);
}

.contact-icon {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.contact-info {
    color: var(--text-medium);
    line-height: 1.6;
}

.contact-info a {
    color: var(--accent-orange);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-info a:hover {
    color: var(--primary-blue);
}

.form-section {
    background: var(--background-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
    margin-bottom: 2rem;
}

.form-section h4 {
    color: var(--primary-blue);
    border-bottom: 2px solid var(--accent-orange);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-control {
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius-small);
    padding: 12px 16px;
    font-size: 15px;
    transition: all var(--transition-fast);
    background: var(--background-white);
    color: var(--text-dark);
}

.form-control:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 0.2rem rgba(237, 137, 54, 0.25);
    background: var(--background-white);
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-select {
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius-small);
    padding: 12px 16px;
    font-size: 15px;
    transition: all var(--transition-fast);
    background: var(--background-white);
    color: var(--text-dark);
}

.form-select:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 0.2rem rgba(237, 137, 54, 0.25);
}

.form-check-input {
    border: 2px solid var(--border-light);
}

.form-check-input:checked {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(237, 137, 54, 0.25);
}

.required-field {
    color: var(--accent-orange);
    font-weight: bold;
}

.btn {
    font-weight: 500;
    padding: 12px 30px;
    border-radius: var(--border-radius-small);
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--background-white);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    background: var(--gradient-accent);
    color: var(--background-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-outline-primary {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-blue);
    color: var(--background-white);
    transform: translateY(-2px);
}

.btn-success {
    background: var(--success-green);
    color: var(--background-white);
}

.btn-success:hover {
    background: #2f855a;
    transform: translateY(-2px);
}

.form-control {
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius-small);
    padding: 12px 16px;
    font-size: 15px;
    transition: all var(--transition-fast);
    background: var(--background-white);
    color: var(--text-dark);
}

.form-control:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 0.2rem rgba(237, 137, 54, 0.25);
    background: var(--background-white);
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-select {
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius-small);
    padding: 12px 16px;
    font-size: 15px;
    transition: all var(--transition-fast);
    background: var(--background-white);
    color: var(--text-dark);
}

.form-select:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 0.2rem rgba(237, 137, 54, 0.25);
}

.btn {
    font-weight: 500;
    padding: 12px 30px;
    border-radius: var(--border-radius-small);
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--background-white);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    background: var(--gradient-accent);
    color: var(--background-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-outline-primary {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-blue);
    color: var(--background-white);
    transform: translateY(-2px);
}

.map-container {
    background: var(--background-white);
    border-radius: var(--border-radius);
    padding: 1rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
}

.map-iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: var(--border-radius-small);
}

.footer {
    background: linear-gradient(135deg, #005679, #07BA96);
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
}

.footer a:hover {
    color: #96FBE5;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #005679;
    border-radius: 50%;
    transition: 0.3s;
    font-size: 16px;
}

.footer-social a:hover {
    background: #07BA96;
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
    padding-top: 15px;
}

.industry-img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.industry-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.industry-btn {
    display: inline-flex;
    align-items: center;
    text-align: center;
    gap: 8px;
    margin-top: 10px;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: px;
    background: var(--secondary-blue);
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.industry-btn i {
    font-size: 12px;
}

.industry-btn:hover {
    background: var(--primary-blue);
    color: #fff;
}

.slider-img {
    height: 600px;
    object-fit: cover;
}


.industry-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    transition: 0.4s;
}

.industry-img:hover {
    transform: scale(1.05);
}

.gallery-main {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.gallery-thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: 0.4s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-thumb:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}


.client-slider {
    overflow: hidden;
    position: relative;
}

.client-track {
    display: flex;
    gap: 20px;
    animation: scrollClients 35s linear infinite;
}

.client-item {
    min-width: 300px;
    height: 200px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    transition: 0.3s;
}

.client-item:hover {
    border-color: var(--secondary-blue);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.client-item img {
    max-height: 200px;
    max-width: 300px;
    object-fit: contain;
}

/* ============================= */
/* TABLET RESPONSIVE (992px) */
/* ============================= */

@media (max-width: 992px) {

    /* .carousel-item {
        height: 450px;
    }

    .carousel-item img {
        height: 450px;
    } */

    /* .testimonial-card {
        min-width: 360px;
    } */

    .client-item {
        min-width: 300px;
        height: px;
    }

    .client-item img {
        max-height: 200px;
    }

    .industry-img {
        height: 200px;
    }

    .section {
        padding: 60px 0;
    }

}


/* ============================= */
/* MOBILE RESPONSIVE (768px) */
/* ============================= */

@media (max-width:768px) {

    .section-title h2 {
        font-size: 1.9rem;
    }

    .section-title p {
        font-size: 1rem;
    }

    .card-body {
        padding: 1.5rem;
    }

    /* .testimonial-card {
        min-width: 300px;
    } */

    .client-item {
        min-width: 160px;
        height: 100px;
    }

    .client-item img {
        max-height: 80px;
    }

    .footer {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

}


/* ============================= */
/* SMALL MOBILE (576px) */
/* ============================= */

@media (max-width:576px) {

    /* .carousel-item {
        height: 300px;
    }

    .carousel-item img {
        height: 300px;
    } */

    .section {
        padding: 40px 0;
    }

    .industry-img {
        height: 160px;
    }

    /* .testimonial-card {
        min-width: 260px;
        padding: 20px;
    } */

    .client-item {
        min-width: 130px;
        height: 80px;
    }

    .client-item img {
        max-height: 60px;
    }

    .card-img-top {
        height: 180px;
    }

    .product-img {
        height: 180px;
    }

}

/* =====================================
SECTION SPACING
===================================== */

.section {
    padding: 70px 0;
}



/* =====================================
TABS DESIGN
===================================== */

.product-tabs {
    border-bottom: 2px solid #e6e6e6;
}

.product-tabs .nav-link {
    font-weight: 600;
    font-size: 15px;
    color: var(--primary-blue);
    border: none;
    padding: 12px 22px;
    transition: all .3s ease;
}

.product-tabs .nav-link:hover {
    color: var(--secondary-blue);
}

.product-tabs .nav-link.active {
    color: var(--secondary-blue);
    border-bottom: 3px solid var(--secondary-blue);
    background: transparent;
}


/* =====================================
TAB CONTENT
===================================== */

.tab-content {
    border-radius: 6px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

.tab-pane {
    animation: fadeIn .4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =====================================
SECTION TITLE
===================================== */

.section-title h5 {
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}


/* =====================================
TEXT
===================================== */

.text-justify p {
    line-height: 1.7;
    font-size: 15px;
    color: #555;
}


/* =====================================
IMAGES
===================================== */

.tab-pane img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin-top: 10px;
}


/* =====================================
ACCESSORIES LIST
===================================== */

.tab-pane ul {
    padding-left: 18px;
    margin-bottom: 25px;
}

.tab-pane ul li {
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 1.6;
}


/* =====================================
ADVANTAGES LIST
===================================== */

.engineered-system-list {
    column-count: 2;
    column-gap: 40px;
    list-style: none;
    padding: 0;
}

.engineered-system-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 15px;
}

.engineered-system-list li:before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--secondary-blue);
    font-weight: bold;
}


/* =====================================
RESPONSIVE
===================================== */

@media (max-width: 991px) {

    .engineered-system-list {
        column-count: 1;
    }

}

@media (max-width: 768px) {

    .product-tabs {
        flex-direction: column;
    }

    .product-tabs .nav-item {
        width: 100%;
    }

    .product-tabs .nav-link {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #eee;
    }

}

/* ===============================
TABLE BASE STYLE
================================ */

.tbldataspec,
.tbldata {
    width: 100%;
    border-collapse: collapse;
    margin-top: 25px;
    font-size: 14px;
    background: #ffffff;
}


/* table cells */

.tbldataspec td,
.tbldata td {
    border: 1px solid #e2e2e2;
    padding: 10px 12px;
    vertical-align: middle;
}


/* header rows */

.tbldataspec tr:first-child td,
.tbldata tr:first-child td {
    background: #f5f7fa;
    font-weight: 600;
    color: var(--primary-blue);
}


/* vertical heading */

.verti {
    background: #f7f7f7;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}


/* strong text */

.tbldataspec strong,
.tbldata strong {
    color: var(--primary-blue);
}


/* center aligned table */

.centtd td {
    text-align: center;
}


/* hover effect */

.tbldataspec tr:hover,
.tbldata tr:hover {
    background: #fafafa;
}


/* responsive table */

@media (max-width: 768px) {

    .tbldataspec,
    .tbldata {
        font-size: 13px;
    }

    .tbldataspec td,
    .tbldata td {
        padding: 8px;
    }

}

/* Accordion Main */
#accordion {
    max-width: 700px;
    margin: 40px auto;
}

/* Card Styling */
#accordion .card {
    border: none;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Header */
#accordion .card-header {
    background: var(--primary-blue);
    padding: 0;
    border: none;
}

/* Button */
#accordion .btn-link {
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
}

/* Hover Effect */
#accordion .btn-link:hover {
    background: #0b5ed7;
    color: #fff;
    text-decoration: none;
}

/* Collapsed State */
#accordion .btn-link.collapsed {
    background: #f8f9fa;
    color: #333;
}

/* Card Body */
#accordion .card-body {
    background: #ffffff;
    padding: 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* Smooth transition */
.collapse {
    transition: all 0.3s ease;
}


.career-card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--accent-orange);
    background: #fff;
}

.job-detail-list {
    list-style: none;
    padding-left: 0;
}

.job-detail-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.job-detail-list i {
    color: var(--accent-orange);
    width: 25px;
}