.fixed-icons {
    position: fixed;
    top: 70%;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.fixed-icons .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

.fixed-icons .icon.call {
    background: #007bff;
    /* Blue */
}

.fixed-icons .icon.whatsapp {
    background: #25d366;
    /* WhatsApp Green */
}

.fixed-icons .icon.mail {
    background: #ff5e5e;
    /* Red */
}

.fixed-icons .icon:hover {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}


/* fixed icons */


/* icons */


/* whtsapp icon */


/* ✅ WhatsApp Floating Button */

.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    animation: blink 1.2s infinite ease-in-out;
}

@keyframes blink {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0px rgba(37, 211, 102, 0.5);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 15px rgba(37, 211, 102, 0.7);
    }
}


/* icons */


/* -------------------- TOPBAR -------------------- */

.header-topbar {
    background: linear-gradient(90deg, #1E90FF 0%, #0044CC 100%);
    /* border-bottom: 1px solid #ddd; */
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 5%;
    flex-wrap: wrap;
}

.header-topbar .topbar-left,
.header-topbar .topbar-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.topbar-right span {
    color: #ffff;
}

.header-topbar i {
    color: #ffff;
    /* Modern professional blue */
    margin-right: 6px;
}

.header-topbar i:hover {
    color: #ffff;
    /* Accent hover blue */
}

.header-topbar a {
    color: #ffff;
    text-decoration: none;
    transition: color 0.3s;
}

.header-topbar a:hover {
    color: #e3a43b;
}


/* -------------------- MAIN HEADER -------------------- */


/* .main-header {
    background: linear-gradient(90deg, #1E90FF 0%, #0044CC 100%);

    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 100;
} */

.main-header {
    background-color: #ffff;
    /* Deep to bright blue gradient */
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 100;
}

.main-header .logo img {
    max-height: 60px;
    width: auto;
}


/* -------------------- NAVIGATION -------------------- */

.main-nav {
    position: relative;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 5px;
}

.main-nav ul li {
    position: relative;
}

.main-nav ul li a {
    color: #003C9E;
    text-decoration: none;
    font-weight: 600;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.main-nav ul li a:hover {
    color: #ffff;
    background: #0056D2;
    /* border-radius: 5px; */
}


/* -------------------- DROPDOWN -------------------- */

.main-nav ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    display: none;
    flex-direction: column;
    min-width: 230px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.main-nav ul li:hover>ul {
    display: flex;
}

.main-nav ul li ul li a {
    color: #333;
    padding: 10px 15px;
    text-transform: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.main-nav ul li ul li a:hover {
    background: #0056D2;
    /* Main blue hover background */
    color: #fff;
    /* White text for contrast */
}


/* Submenu inside submenu */

.main-nav ul li ul li ul {
    left: 100%;
    top: 0;
    display: none;
}

.main-nav ul li ul li:hover>ul {
    display: flex;
}


/* -------------------- MOBILE MENU -------------------- */

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    gap: 8px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    /* border-radius: 5px; */
    transition: 0.3s;
}

@media (max-width: 992px) {
    .main-nav ul {
        flex-direction: column;
        position: absolute;
        background: #fff;
        top: 100%;
        right: 0;
        width: 100%;
        display: none;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    }
    .main-nav ul.show-menu {
        display: flex;
    }
    .main-nav ul li a {
        color: #333;
        border-bottom: 1px solid #eee;
    }
    .main-nav ul li a:hover {
        background: #0056D2;
        /* Main blue hover color */
        color: #fff;
        /* White text for perfect contrast */
    }
    .main-nav ul li ul {
        position: relative;
        box-shadow: none;
        display: none;
    }
    .main-nav ul li.show-submenu>ul {
        display: flex;
    }
    .menu-toggle {
        display: flex;
    }
}


/* -------------------- ICON BUTTONS -------------------- */

.topbar-social a {
    font-size: 16px;
    color: #333;
    transition: color 0.3s;
}

.topbar-social a:hover {
    color: #1E90FF;
    /* Accent bright blue for hover */
}


/* ==========================
   KEI MOBILE/TABLET NAVBAR
   ========================== */

.kei-mobile-navbar {
    display: none;
    background-color: #ffff;
    color: #003C9E;
    width: 100%;
    padding: 10px 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    position: relative;
}

.kei-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kei-mobile-logo img {
    height: 55px;
}

.kei-menu-toggle {
    font-size: 28px;
    background: none;
    border: none;
    color: #003C9E;
    cursor: pointer;
    font-weight: bold
}


/* Mobile Menu */

.kei-mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    flex-direction: column;
    background: #fff;
}

.kei-mobile-menu li {
    border-bottom: 1px solid #eee;
}

.kei-mobile-menu li a {
    display: block;
    padding: 12px 20px;
    color: #003C9E;
    font-weight: 500;
    text-decoration: none;
}

.kei-mobile-menu li a:hover {
    background: #0056D2;
    /* Main royal blue hover background */
    color: #fff;
    /* White text for clarity */
}


/* Submenu */

.kei-mobile-submenu {
    display: none;
    list-style: none;
    padding-left: 15px;
    background: #fafafa;
}

.kei-mobile-submenu li a {
    padding: 10px 35px;
    font-size: 15px;
}


/* RESPONSIVE */

@media (max-width: 991px) {
    .kei-mobile-navbar {
        display: block !important;
    }
    .main-header {
        display: none;
    }
    .header-topbar {
        display: none;
    }
}

@media (min-width: 992px) {
    .kei-mobile-navbar {
        display: none !important;
    }
}


/* Using KEI copper theme colours */

.about-section {
    background: #fff;
    /* light base */
    color: #333;
    padding-top: 80px;
    padding-bottom: 80px;
    font-family: 'Raleway', sans-serif;
}

.about-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0056D2 !important;
    /* Main royal blue for heading */
    margin-bottom: 30px;
}

.about-img {
    border: 5px solid #0056D2 !important;
    /* Blue accent border */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.btn-custom {
    background-color: #0056D2 !important;
    /* Main blue button */
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-custom:hover {
    background-color: #1E90FF !important;
    /* Lighter blue on hover */
    color: #fff;
}

.feature-card {
    background: #fff;
    border: 1px solid #eee;
    border-left: 6px solid #0056D2 !important;
    /* Main royal blue accent */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 40px;
    color: #0056D2 !important;
    /* Icon in main blue tone */
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-icon {
    color: #1E90FF !important;
    /* Accent blue on hover */
}


/* Responsive adjustments */

@media (max-width: 992px) {
    .about-heading {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding-top: 60px;
        padding-bottom: 60px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .feature-card {
        border-left: 4px solid #0056D2 !important;
    }
}

.about-section {
    background: #fff;
    color: #333;
    font-family: 'Raleway', sans-serif;
}

.about-heading {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0056D2;
    /* Main royal blue heading */
    margin-bottom: 25px;
}

.about-img {
    border: 4px solid #0056D2;
    /* Blue accent border */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    max-width: 100%;
    height: auto;
}

.about-img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.btn-custom {
    background-color: #0056D2;
    /* Primary blue button */
    color: #fff;
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-custom:hover {
    background-color: #1E90FF;
    /* Brighter blue hover */
    color: #fff;
    transform: translateY(-2px);
}

.feature-card {
    background: #fff;
    border: 1px solid #ddd;
    border-left: 6px solid #0056D2;
    /* Blue accent border */
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 40px;
    color: #0056D2;
    /* Icon in main blue tone */
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-icon {
    color: #1E90FF;
    /* Accent blue on hover */
}


/* Responsive Fixes */

@media (max-width: 992px) {
    .about-heading {
        font-size: 2rem;
    }
    .feature-card {
        margin-bottom: 20px;
    }
    .about-section {
        padding: 50px 15px;
    }
}

@media (max-width: 576px) {
    .btn-custom {
        padding: 8px 20px;
    }
}

.about-section {
    background: #fff;
    color: #333;
    font-family: 'Raleway', sans-serif;
}

.about-heading {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0056D2;
    margin-bottom: 25px;
}

.about-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.btn-wrap {
    margin-top: 20px;
}

.about-img {
    border: 4px solid #0056D2;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.about-img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.btn-custom {
    background-color: #0056D2;
    color: #fff;
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.btn-custom:hover {
    background-color: #1E90FF;
    transform: translateY(-2px);
    color: #fff;
}

.feature-card {
    background: #fff;
    border: 1px solid #ddd;
    border-left: 6px solid #0056D2;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 38px;
    color: #0056D2;
    margin-bottom: 10px;
}


/* Responsive Fixes */

@media (max-width: 992px) {
    .about-section {
        padding: 50px 20px;
    }
    .about-heading {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .btn-custom {
        padding: 8px 20px;
    }
}

.about-section {
    background: #fff;
    color: #333;
    font-family: 'Raleway', sans-serif;
    position: relative;
}

.about-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.about-heading {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0056D2;
    margin-bottom: 25px;
}

.about-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.btn-custom {
    background-color: #0056D2;
    color: #fff;
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 10px;
    position: relative;
    z-index: 10;
}

.btn-custom:hover {
    background-color: #1E90FF;
    transform: translateY(-2px);
}

.about-img {
    border: none !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    width: 100%;
    height: auto;
}

.about-img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.feature-card {
    background: #fff;
    border: 1px solid #ddd;
    border-left: 6px solid #0056D2;
    border-radius: 6px;
    padding: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 38px;
    color: #0056D2;
    margin-bottom: 10px;
}


/* Responsive Fixes */

@media (max-width: 992px) {
    .about-row {
        flex-direction: column;
        margin-bottom: 50px;
    }
    .about-heading {
        font-size: 2rem;
    }
    .btn-custom {
        margin-bottom: 20px;
    }
}


/* new product section */

.kei-slider-section {
    background-color: #111;
    padding: 80px 80px;
    overflow: hidden;
}

.kei-slider-title {
    font-weight: 700;
    font-size: 28px;
    display: inline-block;
    background: #0056D2;
    color: #fff;
    padding: 10px 25px;
    /* border-radius: 6px; */
    margin-bottom: 40px;
}

.kei-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.kei-slider-track {
    display: flex;
    transition: transform 0.6s ease;
}

.kei-slide {
    min-width: 33.33%;
    position: relative;
    overflow: hidden;
    /* border-radius: 10px; */
    margin: 0 10px;
    display: block;
    text-decoration: none;
}

.kei-slide img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    /* border-radius: 10px; */
    transition: transform 0.5s ease;
}

.kei-slide:hover img {
    transform: scale(1.05);
}


/* Caption on image bottom */

.kei-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    padding: 10px 0;
    /* border-bottom-left-radius: 10px; */
    /* border-bottom-right-radius: 10px; */
}


/* Arrows */

.kei-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30, 64, 175, 0.9);
    /* Deep Blue */
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 12px 15px;
    /* border-radius: 50%; */
    transition: all 0.3s;
    z-index: 5;
}

.kei-arrow:hover {
    background: #fff;
    color: #1e40af;
    /* Deep Blue text */
}

.kei-arrow.left {
    left: 10px;
}

.kei-arrow.right {
    right: 10px;
}


/* Responsive */

@media (max-width: 991px) {
    .kei-slide {
        min-width: 50%;
    }
}

@media (max-width: 576px) {
    .kei-slide {
        min-width: 100%;
    }
    .kei-slider-title {
        font-size: 22px;
    }
}


/* ================== FIXED QUOTE SECTION ================== */


/* ================== KEI PREMIUM QUOTE SECTION ================== */

.kei-quotepro-section {
    position: relative;
    background: url('https://www.keicopper.com/images/bg/quote-bg.jpg') center/cover fixed no-repeat;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 30px !important;
}


/* Overlay Gradient */

.kei-quotepro-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 25, 60, 0.9), rgba(37, 99, 235, 0.75));
    /* Deep navy to vibrant blue gradient */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.5s ease;
}


/* Content Wrapper */

.kei-quotepro-content {
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 20px;
    animation: fadeInUp 1.5s ease;
}


/* Text Style */

.kei-quotepro-text {
    font-family: 'Raleway', sans-serif;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}


/* Decorative line */

.kei-quotepro-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #003C9E, #1E90FF, #003C9E);
    /* Deep to bright blue gradient */
    margin: 15px auto;
    border-radius: 2px;
    animation: glowLine 3s infinite alternate ease-in-out;
}


/* Animations */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowLine {
    0% {
        box-shadow: 0 0 6px #1E90FF, 0 0 15px #003C9E;
    }
    100% {
        box-shadow: 0 0 20px #1E90FF, 0 0 40px #003C9E;
    }
}


/* Responsive */

@media (max-width: 768px) {
    .kei-quotepro-text {
        font-size: 20px;
    }
    .kei-quotepro-line {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .kei-quotepro-text {
        font-size: 17px;
    }
}

.kei-stats-section {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1c1c1c 100%);
    background-attachment: fixed;
    padding: 100px 0;
    color: #fff;
    overflow: hidden;
}

.kei-stats-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('https://www.keicopper.com/kei-final-image/2.jpg') center/cover no-repeat;
    opacity: 0.15;
    mix-blend-mode: overlay;
    z-index: 0;
}

.kei-stats-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
}

.kei-stats-text {
    flex: 1 1 350px;
    position: relative;
}

.kei-stats-text h2 {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 5rem !important;
    line-height: 1.3;
    position: relative;
    padding-left: 25px;
    border-left: 4px solid #1E40AF;
    /* Deep Blue */
}

.kei-stats-text span {
    color: #1E40AF;
    /* Royal Blue Accent */
    font-weight: 700;
}

.kei-stats-grid {
    flex: 2 1 600px;
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

.kei-stat {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(30, 64, 175, 0.2);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    width: 270px;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(30, 64, 175, 0.05);
}


/* 🔵 Continuous moving light streak effect */

.kei-stat::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(30, 64, 175, 0.25), transparent);
    animation: moveLight 3.5s linear infinite;
}

@keyframes moveLight {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: -100%;
    }
}

.kei-icon img {
    width: 60px;
    margin-bottom: 15px;
    filter: brightness(1.2);
}

.kei-stat h3 {
    font-size: 2rem;
    color: #2563EB;
    /* Bright Blue Highlight */
    margin-bottom: 5px;
    font-weight: 700;
}

.kei-stat p {
    font-size: 1.2rem;
    color: #ddd;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

@media (max-width: 992px) {
    .kei-stats-content {
        flex-direction: column;
        text-align: center;
    }
    .kei-stats-text h2 {
        font-size: 2rem;
        border-left: none;
        border-top: 3px solid #1E40AF;
        padding-top: 20px;
        padding-left: 0;
    }
    .kei-stats-grid {
        justify-content: center;
    }
}

.ftr-ftr {
    color: #0056D2;
    font-weight: 600;
    font-size: 22px;
}

.amv_img_style {
    border: none;
    border-radius: 8px;
    transition: transform 0.4s ease;
}

.amv_img_style:hover {
    transform: scale(1.05);
}

.amv_card {
    background: #fff;
    border: 1px solid #e3e3e3;
    padding: 35px 30px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amv_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.amv_icon {
    font-size: 38px;
    color: #0056D2;
    margin-bottom: 15px;
}

.amv_card_title {
    font-weight: 700;
    margin-bottom: 20px;
}

.amv_quote {
    margin-top: 20px;
    text-align: center;
}

@media (max-width: 767px) {
    .amv_about_row {
        flex-direction: column-reverse;
        text-align: center;
    }
    .amv_missionvision_row .col-md-6 {
        text-align: center;
    }
}

.kei-product-detail-section {
    background: #fffaf2;
    padding: 70px 0;
    font-family: "Raleway", sans-serif;
}

.highlight {
    color: #0056D2;
}

.kei-image-wrapper {
    /* border-radius: 15px; */
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.kei-image-wrapper img {
    width: 100%;
    /* border-radius: 15px; */
    /* height: 400px; */
    transition: transform 0.5s ease;
}

.kei-image-wrapper:hover img {
    transform: scale(1.07);
}

.kei-description {
    margin-top: 20px;
    font-size: 16px;
    color: #333;
    text-align: justify;
    line-height: 1.7;
}

.kei-heading {
    color: #0056D2;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.kei-table {
    background: #fff;
    border: 1px solid #8faee5;
    /* Light Blue Border */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(30, 64, 175, 0.2);
    /* Deep Blue Shadow */
    overflow: hidden;
}

.kei-table td {
    padding: 14px;
    color: #333;
    font-size: 15px;
    border: 1px solid #8faee5;
    /* Light Blue Border */
    vertical-align: middle;
    transition: background 0.3s ease, color 0.3s ease;
}

.kei-table tr:hover td {
    background: #e6f0ff;
    /* Soft Light Blue Hover */
    color: #000;
    font-weight: 600;
    box-shadow: inset 0 0 5px #2563EB;
    /* Blue Inner Glow */
    transform: scale(1.01);
}

@media (max-width: 991px) {
    .kei-product-detail-section {
        padding: 50px 15px;
    }
    .kei-right-section {
        margin-top: 40px;
    }
    .kei-heading {
        text-align: center;
    }
}


/* ---------- SECTION BASE ---------- */

.kei-modern-layout-section {
    background-color: #fff;
    margin-bottom: 20px;
}

.kei-content-title {
    color: #1E40AF;
    /* Deep Royal Blue Title */
    font-weight: 800;
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 26px;
}


/* ---------- IMAGE GRID ---------- */

.kei-image-grid img {
    border-radius: 0;
    object-fit: cover;
}


/* Make images stack neatly on small screens */

@media (max-width: 767px) {
    .kei-image-grid img {
        width: 100% !important;
    }
}


/* ---------- QUICK LINKS BOX ---------- */

.kei-quicklinks-modern {
    background: #1e40af1a;
    padding: 25px 20px;
    border: 1px solid #1e40af46;
    border-radius: 0;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

.kei-quicklinks-title {
    font-size: 20px;
    font-weight: 800;
    color: #1E3A8A;
    /* Deep Rich Blue */
    text-transform: uppercase;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
    border-bottom: 3px solid #2563EB;
    /* Brighter Accent Blue */
    display: inline-block;
    padding-bottom: 5px;
    position: relative;
    transition: color 0.3s ease, border-color 0.3s ease;
}


/* ✨ Hover Animation for Modern Feel */

.kei-quicklinks-title:hover {
    color: #2563EB;
    border-color: #60A5FA;
}

.kei-quicklinks-title::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #2563EB, #60A5FA, #2563EB);
    transition: width 0.4s ease-in-out;
}

.kei-quicklinks-title:hover::after {
    width: 100%;
}


/* ---------- LINKS LIST ---------- */

.kei-quicklinks-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid #1e40af0a;
}

.kei-quicklinks-list li {
    margin: 0;
    border-bottom: 1px solid #1E40AF;
}

.kei-quicklinks-list li:last-child {
    border-bottom: none;
}

.kei-quicklinks-list a {
    display: block;
    padding: 12px 16px;
    background: #6eb7f648;
    color: #2e2e2e;
    font-weight: 600;
    text-decoration: none;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}


/* ---------- HOVER + ACTIVE ---------- */

.kei-quicklinks-list a:hover {
    background: #2563EB;
    /* Vibrant Blue */
    color: #fff;
    border-left: 4px solid #60A5FA;
    /* Light Blue Accent */
    transform: translateX(3px);
    transition: all 0.3s ease;
}

.kei-quicklinks-list a.active {
    background: #1E3A8A;
    /* Deep Royal Blue */
    color: #fff;
    border-left: 4px solid #60A5FA;
    /* Matching Accent Blue */
    transition: all 0.3s ease;
}


/* ---------- RESPONSIVENESS ---------- */

@media (max-width: 991px) {
    .kei-quicklinks-modern {
        margin-top: 25px;
    }
}

.tech-spec-section {
    background: #f7f7f7;
    font-family: "Poppins", sans-serif;
}

.section-title {
    font-weight: 700;
    color: #333;
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.spec-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 25px;
    transition: all 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.modern-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
}

.modern-table th {
    background: linear-gradient(90deg, #1E3A8A, #3B82F6);
    /* Deep Blue to Bright Blue */
    color: #fff;
    font-weight: 600;
    text-align: left;
    padding: 12px;
    font-size: 15px;
}

.modern-table td {
    background: #f4f8ff;
    /* Light Blue Tint */
    padding: 10px 12px;
    border-bottom: 1px solid #e0e7ff;
    /* Soft blue border */
    font-size: 14px;
    color: #222;
    transition: background 0.3s ease;
}

.modern-table tr:hover td {
    background: #e0ecff;
    /* Light hover highlight */
}

.modern-table tr:last-child td {
    border-bottom: none;
}

.table-title {
    color: #1E40AF;
    /* Deep Royal Blue */
    font-weight: 600;
}

.desc {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
    text-align: justify;
}

@media (max-width: 768px) {
    .tables-grid {
        grid-template-columns: 1fr;
    }
}


/* === Industrial White-Gold Section === */

.kei-industrial-section {
    background-color: #fff;
    padding: 60px 0;
    font-family: "Poppins", sans-serif;
}

.kei-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.kei-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    border-left: 6px solid #1E40AF;
    /* Deep Blue */
    background: #ffffff;
    padding: 35px 40px;
    border-radius: 16px;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.kei-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.15);
    border-left: 6px solid #3B82F6;
    /* Bright Blue on hover */
}

.kei-icon {
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    /* Deep Blue to Bright Blue gradient */
    color: white;
    font-size: 28px;
    border-radius: 50%;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.kei-heading {
    font-size: 22px;
    font-weight: 700;
    color: #1E40AF;
    /* Bold Royal Blue */
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.kei-content p {
    text-align: justify;
    color: #333;
    line-height: 1.7;
    font-size: 15px;
}

.kei-content ul {
    margin-left: 18px;
    color: #333;
    font-size: 15px;
    line-height: 1.7;
}

.kei-content li b {
    color: #1E3A8A;
    /* Highlight Blue for emphasis */
}


/* Responsive */

@media (max-width: 768px) {
    .kei-card {
        flex-direction: column;
        text-align: center;
        border-left: none;
        border-top: 6px solid #1E40AF;
    }
    .kei-icon {
        margin: 0 auto 15px auto;
    }
}


/* Environment & Product Section */

.envprod-section {
    background-color: #fff;
    padding: 60px 0;
    font-family: "Poppins", sans-serif;
}


/* Environment Card */

.env-card {
    border: 2px solid #3B82F6;
    /* Bright blue border */
    border-radius: 20px;
    box-shadow: 0px 4px 15px rgba(59, 130, 246, 0.3);
    /* Blue glow */
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    margin-bottom: 20px;
}

.env-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 25px rgba(59, 130, 246, 0.5);
    /* Stronger blue glow on hover */
}

.env-heading {
    color: #1E40AF;
    /* Deep professional blue */
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 15px;
}

.env-text {
    color: #555;
    line-height: 1.8;
    text-align: justify;
}


/* Product Section */

.prod-card {
    border: 2px solid #3B82F6;
    /* Blue border */
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0px 4px 15px rgba(59, 130, 246, 0.3);
    transition: all 0.4s ease;
}

.prod-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 25px rgba(59, 130, 246, 0.5);
}

.prod-heading {
    color: #1E3A8A;
    /* Darker blue for titles */
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
}

.prod-text {
    color: #444;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 20px;
}

.prod-list {
    list-style: none;
    padding-left: 0;
    color: #444;
}

.prod-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    /* Light blue divider */
}

.prod-list li:last-child {
    border-bottom: none;
}

.prod-list b {
    color: #1E40AF;
    /* Accent blue for bold text */
}

.contact-section .contact-headingggg {
    font-size: 3rem !important;
    font-weight: 600;
    color: #1E40AF;
    /* Professional heading blue */
}

.cccc {
    /* margin-top: 20px; */
    border-right: 5px solid #1E3A8A !important;
    /* Solid dark blue edge */
}


/* Industrial Contact Section Styles */

.industrial-contact-section {
    background-color: #fff;
    padding: 60px 20px;
}

.contact-section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #0056D2;
    /* Deep Blue */
    margin-bottom: 40px;
    position: relative;
}

.contact-section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #0056D2;
    /* Blue underline */
    margin: 10px auto 0;
    border-radius: 10px;
}

.contact-card-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.contact-card {
    background: #ffffff;
    border: 2px solid #b3d0ff;
    /* Soft blue border */
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 86, 210, 0.15);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 86, 210, 0.25);
}

.contact-icon {
    font-size: 38px;
    color: #0056D2;
    margin-bottom: 15px;
}

.contact-heading {
    font-size: 20px;
    font-weight: 600;
    color: #1e3a8a;
    /* darker blue tone */
    margin-bottom: 10px;
}

.contact-text a,
.contact-list a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
    font-weight: 550;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    margin-bottom: 6px;
    font-size: 15px;
    color: #555;
}

.contact-text a:hover,
.contact-list a:hover {
    color: #0056D2;
}

.contact-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 16px;
    background: #0056D2;
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s ease;
}

.contact-btn:hover {
    background: #0042a3;
}


/* Responsive */

@media (max-width: 768px) {
    .contact-card {
        padding: 20px;
    }
    .contact-section-title {
        font-size: 24px;
    }
}

.footer-logo img {
    width: 160px;
    background-color: #ffff;
    padding: 3px;
}