/* =====================================================
   CLEAN PREMIUM HEADER CSS 
===================================================== */

body {
    font-family: 'Inter', system-ui, sans-serif;
    padding-top: 140px;
}

/* ================= TOP BAR ================= */
.premium-topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10001;
    background: linear-gradient(135deg, #204164, #002E5F);
    color: #fff;
    transition: transform .35s ease;
}

.premium-topbar.hide-bar {
    transform: translateY(-100%);
}

.topbar-inner {
    min-height: 42px;
}

/* Contact Info */
.contact-info .info-item {
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    margin-right: 22px;
    font-weight: 500;
    transition: .3s ease;
}

.contact-info .info-item i {
    margin-right: 8px;
    font-size: 13px;
}

.contact-info .info-item:hover {
    opacity: .9;
    transform: translateY(-1px);
}

/* Social Icons */
.social-icons a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    text-decoration: none;
    transition: .3s ease;
}

.social-icons a:hover {
    background: #fff;
    color: #002E5F;
    transform: translateY(-2px);
}

/* ================= NAVBAR ================= */
.navbar-premium {
    top: 42px;
    z-index: 9999;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
    padding: 14px 0;
    transition: all .35s ease;
}

.navbar-premium.scrolled {
    top: 0;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.navbar-brand img {
    height: 66px;
    max-width: 100%;
    transition: .3s;
    /* padding-left: 10px; */
}

/* Nav Links */
.navbar-nav .nav-link {
    color: #1f1f1f !important;
    font-weight: 600;
    margin: 0 12px;
    position: relative;
    transition: .3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .active .nav-link {
    /* color: #002E5F !important; */
    color: #0b4583 !important;
}

/* Underline */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #0b4583;
    transition: .3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .active .nav-link::after {
    width: 100%;
}

/* Remove Bootstrap Arrow */
.dropdown-toggle::after {
    display: none !important;
}

/* ================= RIGHT SIDE ================= */
.right-header-box {
    display: flex;
    align-items: center;
}

/* Call Box */
.call-box {
    display: flex;
    align-items: center;
    margin-right: 15px;
    padding: 8px 12px;
    border-radius: 50px;
    transition: .3s;
}

.call-box:hover {
    /* background: #fff7f0; */
    background: #f0f0ff;
}

.call-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4d9ef4, #002E5F);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    box-shadow: 0 6px 18px rgba(77, 149, 244, 0.35);
}

.call-text {
    font-size: 13px;
    color: #555;
    line-height: 1.2;
}

.call-text strong {
    display: block;
    font-size: 17px;
    color: #111;
}

/* TUV Logo */
.certification-box img {
    height: 54px;
    transition: .3s ease;
}

.certification-box img:hover {
    transform: scale(1.06);
}

/* ================= DROPDOWN ================= */

/* new added */
.main-dropdown {
    border: none;
    border-radius: 14px;
    min-width: 250px;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
    animation: fadeUp .25s ease;

    /* IMPORTANT */
    margin-top: 0 !important;
}

.main-dropdown,
.dropdown-submenu .dropdown-menu {
    border: none;
    border-radius: 14px;
    min-width: 250px;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
    animation: fadeUp .25s ease;
}

.nav-item.dropdown {
    position: relative;
}
/* new added */
.nav-item.dropdown .dropdown-menu {
    margin-top: 0;
    top: 100%;
    left: 0;
    display: none;
}

.nav-item.dropdown:hover>.dropdown-menu {
    display: block;
}

.dropdown-item {
    padding: 12px 20px;
    font-size: 14px;
    color: #222;
    transition: .25s ease;
    position: relative;
}

.dropdown-item:hover {
    background: #f0f0ff;
    color: #002E5F;
    padding-left: 26px;
}

/* Submenu */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-toggle::before {
    content: "›";
    position: absolute;
    right: 18px;
    font-size: 18px;
    color: #999;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    display: none;
    margin-left: 0px;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

/* ================= TOGGLER ================= */
.custom-toggler {
    border: none;
    outline: none;
    padding: 10;
}

.custom-toggler span {
    display: block;
    width: 28px;
    height: 3px;
    background: #111;
    margin: 5px 0;
    border-radius: 2px;
    transition: .3s;
}

/* ================= ANIMATION ================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   RESPONSIVE
===================================================== */

/* slider mobile view */
@media (max-width:991px) {
    .carousel{
        margin-top: 10px !important;
    }
}

/* Tablet + Mobile */
@media (max-width:991px) {

    body {
        padding-top: 165px;
    }

    .premium-topbar {
        padding: 10px 0;
    }

    .topbar-inner {
        min-height: 72px;
        padding: 8px 0;
        justify-content: center !important;
        text-align: center;
    }

    .contact-info {
        width: 100%;
        justify-content: center;
        margin-bottom: 8px;
    }

    .contact-info .info-item {
        margin: 4px 10px;
        font-size: 13px;
    }

    .social-icons {
        width: 100%;
        justify-content: center;
    }

    .social-icons a {
        margin: 0 5px;
    }

    .navbar-premium {
        /* top: 72px; */
        top: 99px;
        padding: 10px 0;
    }

    .navbar-premium.scrolled {
        top: 0;
    }

    .navbar-brand img {
        height: 42px;
        /* new css */
        padding-left: 10px;
    }

    .navbar-collapse {
        background: #fff;
        margin-top: 12px;
        padding: 15px;
        border-radius: 12px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    }

    .navbar-nav {
        text-align: left;
    }

    .navbar-nav .nav-link {
        margin: 0;
        padding: 12px 0;
        border-bottom: 1px solid #f1f1f1;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .right-header-box {
        display: none;
    }

    /* Mobile Accordion Dropdown */

           .dropdown-menu {
               position: static !important;
               display: none !important;
               /* Bootstrap will be overridden */
               box-shadow: none;
               width: 100%;
               padding: 0;
           }
    
           .dropdown.show>.dropdown-menu,
           .dropdown-submenu.open>.dropdown-menu {
               display: block !important;
           }
    
           .dropdown-submenu .dropdown-menu {
               margin-left: 20px;
               border-left: 3px solid #F49A4D;
           }
    
           /* Optional nice arrow */
           .dropdown-submenu>a::after {
               content: "›";
               float: right;
               transition: transform 0.3s;
           }
    
           .dropdown-submenu.open>a::after {
               transform: rotate(90deg);
           }
    /* .dropdown-menu {
        display: none;
        position: static !important;
        width: 100%;
        border: none;
        box-shadow: none;
        background: #f8f9fa;
        border-radius: 8px;
        margin-top: 8px;
        padding: 5px 0;
    }

    .dropdown.show>.dropdown-menu {
        display: block;
    }

    .dropdown-submenu .dropdown-menu {
        margin-left: 12px;
        background: #fff;
        border-left: 2px solid #F49A4D;
    }

    .dropdown-item {
        padding: 10px 15px;
        font-size: 14px;
    } */
}

/* Small Mobile */
@media (max-width:575px) {

    body {
        padding-top: 185px;
    }

    .topbar-inner {
        min-height: 95px;
    }

    .contact-info {
        flex-direction: column;
    }

    .contact-info .info-item {
        margin: 4px 0;
    }

    .premium-topbar {
        font-size: 13px;
    }

    .navbar-premium {
        top: 125px;
    }

    .navbar-brand img {
        height: 38px;
    }

    .social-icons a {
        width: 32px;
        height: 32px;
    }
}



/* ================= MODERN ABOUT SECTION ================= */

.modern-about-section {
    background:
        linear-gradient(rgba(255, 255, 255, 0.92),
            rgba(255, 255, 255, 0.92));
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
}

/* LEFT SIDE */
.modern-about-image-wrapper {
    position: relative;
    padding-right: 40px;
}

.modern-about-main-img {
    position: relative;
    z-index: 2;
}

.modern-about-main-img img {
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
    transition: 0.4s ease;
}

.modern-about-main-img img:hover {
    transform: scale(1.02);
}

/* FLOATING CARD */
.modern-floating-card {
    position: absolute;
    bottom: 30px;
    left: -10px;
    z-index: 5;
    background: #fff;
    border-radius: 20px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    animation: floatY 3s ease-in-out infinite;
}

.modern-floating-card .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F49A4D, #d97706);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.modern-floating-card h4 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
}

.modern-floating-card p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

/* SHAPE */
.shape-circle {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg,
                rgba(77, 130, 244, 0.12),
                rgba(244, 154, 77, 0));
    /* background: linear-gradient(135deg,
            rgba(244, 154, 77, 0.25),
            rgba(244, 154, 77, 0)); */
    top: -50px;
    right: 0;
    z-index: 1;
}

/* RIGHT CONTENT */
.modern-about-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(77, 130, 244, 0.12);
    color: #002E5F;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 14px;
}

.modern-about-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 25px;
}

.modern-about-title span {
    /* color: #002E5F; */
    color: #0b4583;
    position: relative;
}

.modern-about-text {
    color: #475569;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 35px;
}

/* FEATURES */
.modern-about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    transition: 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    background: linear-gradient(135deg, #F49A4D, #d97706);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-box h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #0f172a;
}

.feature-box p {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
    font-size: 15px;
}

/* BUTTON */
.modern-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    /* background: linear-gradient(135deg, #F49A4D, #d97706); */
    background: linear-gradient(135deg, #4d9ef4, #002E5F);
    color: #fff;
    padding: 16px 34px;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.35s ease;
    /* box-shadow: 0 15px 30px rgba(244, 154, 77, 0.3); */
    box-shadow: 0 6px 18px rgba(77, 149, 244, 0.35);
}

.modern-about-btn:hover {
    transform: translateY(-3px);
    color: #fff;
    /* box-shadow: 0 20px 40px rgba(244, 154, 77, 0.4); */
    box-shadow: 0 20px 40px rgba(77, 149, 244, 0.35);
}

/* FLOAT ANIMATION */
@keyframes floatY {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .modern-about-title {
        font-size: 36px;
    }

    .modern-about-image-wrapper {
        padding-right: 0;
    }

    .modern-floating-card {
        left: 20px;
        bottom: 20px;
    }
}

@media (max-width: 767px) {

    .modern-about-title {
        font-size: 30px;
    }

    .modern-about-text {
        font-size: 15px;
    }

    .feature-box {
        padding: 18px;
    }

    .modern-floating-card {
        position: relative;
        margin-top: 20px;
        left: 0;
        bottom: 0;
        width: fit-content;
    }
}
/* End */


/* Section */
.product-section {
    background: #ffffff;
}

/* Heading */
.section-title {
    font-size: 34px;
    font-weight: 700;
}

.section-subtitle {
    color: #666;
}

/* Card */
.product-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Image */
.product-img img {
    width: 100%;
    height: auto;
    /* object-fit: cover; */
    transition: 0.5s;
}

.product-card:hover img {
    transform: scale(1.1);
}

/* Badge */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #1A63E1;
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 20px;
    z-index: 2;
}

/* Overlay */
.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: 0.4s;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

/* Buttons */
.btn-view {
    background: #fff;
    color: #000;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-view:hover {
    background: #002E5F;
    color: #fff;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
}

/* Content */
.product-content {
    text-align: center;
    margin-top: 15px;
}

.product-content h5 {
    font-weight: 600;
    transition: 0.3s;
}

.product-card:hover+.product-content h5 {
    color: #0b4583;
}

/* Responsive */
@media (max-width: 768px) {
    .product-img img {
        height: auto;
    }

    .section-title {
        font-size: 26px;
    }
}



/* ================= MODERN FOOTER ================= */

.modern-footer {
    position: relative;
    background: #071120;
    overflow: hidden;
    color: #fff;
}

/* BACKGROUND EFFECTS */
.modern-footer::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 450px;
    height: 450px;
    background: rgba(244, 154, 77, 0.08);
    border-radius: 50%;
    filter: blur(80px);
}

.modern-footer::after {
    content: "";
    position: absolute;
    bottom: -180px;
    left: -180px;
    width: 420px;
    height: 420px;
    background: rgba(26, 99, 225, 0.08);
    border-radius: 50%;
    filter: blur(80px);
}

/* TOP AREA */
.footer-top {
    position: relative;
    z-index: 2;
    padding: 90px 0 60px;
}

/* LOGO */
.footer-logo {
    height: 70px;
    margin-bottom: 28px;
}

/* DESCRIPTION */
.footer-desc {
    color: #b7c4d6;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 30px;
    max-width: 95%;
}

/* SOCIAL ICONS */
.footer-social a {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #fff;
    font-size: 18px;
    transition: all .35s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social a:hover {
    /* background: linear-gradient(135deg, #F49A4D, #ff7a18); */
    background: linear-gradient(135deg, #f6d550, #c7a006);
    transform: translateY(-6px);
    color: #fff;
    /* box-shadow: 0 15px 35px rgba(244, 154, 77, 0.35); */
    box-shadow: 0 10px 25px rgba(244, 216, 77, 0.3);
}

/* HEADING */
.footer-heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 15px;
}

.footer-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 65px;
    height: 4px;
    border-radius: 50px;
    background: linear-gradient(90deg, #f6d550, #E5BB12);
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 18px;
}

.footer-links a {
    color: #c9d4e3;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all .3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a span {
    width: 10px;
    height: 10px;
    background: #E5BB12;
    border-radius: 50%;
    margin-right: 14px;
    transition: .3s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(8px);
}

.footer-links a:hover span {
    background: #fff;
}

/* CONTACT BOX */
.footer-contact-box {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* CONTACT ITEM */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all .35s ease;
}

.footer-contact-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.07);
}

/* ICON */
.footer-contact-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 15px;
    /* background: linear-gradient(135deg, #F49A4D, #ff7a18); */
    background: linear-gradient(135deg, #f6d550, #c7a006);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 10px 25px rgba(244, 216, 77, 0.3);
}

/* TEXT */
.footer-contact-text h6 {
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.footer-contact-text p {
    margin: 0;
    color: #c9d4e3;
    font-size: 14px;
    line-height: 1.8;
}

/* BOTTOM */
.footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    background: rgba(0, 0, 0, 0.15);
}

/* COPYRIGHT */
.copyright-text {
    margin: 0;
    color: #b7c4d6;
    font-size: 14px;
}

/* CREDIT */
.footer-credit {
    color: #2084dc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: .3s ease;
}

.footer-credit:hover {
    color: #fff;
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .footer-top {
        padding: 70px 0 40px;
    }

    .footer-heading {
        margin-top: 10px;
    }

    .footer-desc {
        max-width: 100%;
    }
}

@media (max-width: 767px) {

    .footer-top {
        padding: 60px 0 30px;
    }

    .footer-logo {
        height: 60px;
    }

    .footer-heading {
        font-size: 22px;
        margin-bottom: 28px;
    }

    .footer-contact-item {
        padding: 15px;
    }

    .footer-contact-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 16px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-credit {
        display: inline-block;
        margin-top: 8px;
    }
}


/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-align: center;
    line-height: 55px;
    font-size: 24px;
    z-index: 999;
}

/* Call Button */
.call-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: #1A63E1;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-align: center;
    line-height: 55px;
    font-size: 22px;
    z-index: 999;
}



/* Breadscumb Banner */
.about-banner {
    position: relative;
    width: 100%;
    min-height: 380px;
    background: linear-gradient(135deg, #1e2a5e 0%, #0f1b44 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
}

.about-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.about-banner h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-bar {
    background: rgba(0, 0, 30, 0.85);
    padding: 14px 25px;
    border-radius: 8px;
    display: inline-block;
    font-size: 1.05rem;
    max-width: fit-content;
}

.nav-bar a {
    color: #b0c4ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-bar a:hover {
    color: white;
}

.nav-bar span {
    /* color: #6b8cff; */
    color: #F49A4D;
    margin: 0 8px;
}

/* Responsive */
@media (max-width: 992px) {
    .about-banner h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .about-banner {
        min-height: 320px;
    }

    .about-banner h1 {
        font-size: 2rem;
    }

    .nav-bar {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-banner h1 {
        font-size: 1.8rem;
    }

    .banner-content {
        padding: 0 15px;
    }
}



/* Inspection */
.inspection-section {
    background: #f8f9fa;
}

/* Heading */
.section-title {
    font-size: 34px;
    font-weight: 700;
    color: #222;
}

.section-subtitle {
    color: #666;
    font-size: 15px;
}

/* Image */
.inspection-img img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Content */
.content-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
}

.content-text {
    color: #555;
    font-size: 15px;
}

/* Feature Box */
.feature-box {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 12px 15px;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-box i {
    font-size: 18px;
    /* color: #1A63E1; */
    color: #F49A4D;
    margin-right: 10px;
}

.feature-box h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Highlight Box */
.highlight-box {
    background: #fff;
    padding: 20px;
    border-left: 4px solid #F49A4D;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.highlight-box h5 {
    margin-bottom: 10px;
    font-weight: 600;
}

/* Button */
.btn-main {
    display: inline-block;
    background: #F49A4D;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-main:hover {
    background: #0f4fc1;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {

    .section-title {
        font-size: 26px;
    }

    .content-title {
        font-size: 22px;
    }

    .feature-box {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

    .feature-box i {
        margin-bottom: 5px;
    }
}


/* ================= MACHINES SECTION ================= */

.product-section {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    position: relative;
    overflow: hidden;
}

/* SECTION TITLE */


.machine-title {
    font-size: 52px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
}

.machine-title span {
    color: #0b4583;
}

.machine-subtitle {
    max-width: 760px;
    margin: auto;
    color: #6b7280;
    font-size: 18px;
    line-height: 1.9;
}




/* RESPONSIVE */
@media (max-width: 991px) {

    .machine-title {
        font-size: 40px;
    }

    .machine-content h3 {
        font-size: 22px;
    }
}

@media (max-width: 767px) {

    .machines-section {
        padding: 70px 0;
    }

    .machine-title {
        font-size: 32px;
    }

    .machine-subtitle {
        font-size: 15px;
    }

   
}


/* ================= FACILITY SECTION ================= */

.facility-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(248, 250, 252, 0.96),
            rgba(248, 250, 252, 0.96));
    background-size: cover;
    background-position: center;
}

/* SHAPES */
.facility-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

.shape-1 {
    width: 280px;
    height: 280px;
    /* background: rgba(221, 20, 19, 0.08); */
    background: rgba(19, 83, 221, 0.08);
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 320px;
    height: 320px;
    background: rgba(255, 145, 77, 0.08);
    bottom: -120px;
    right: -100px;
}

/* SECTION TITLE */
.facility-badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    /* background: rgba(221, 20, 19, 0.1); */
    background: rgba(77, 130, 244, 0.12);
    color: #002E5F;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.facility-main-title {
    font-size: 52px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 18px;
}

.facility-main-title span {
    /* color: #DD1413; */
    color: #0b4583;
}

.facility-subtitle {
    max-width: 760px;
    margin: auto;
    font-size: 18px;
    line-height: 1.9;
    color: #6b7280;
}

/* CARD */
.facility-card {
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 45px;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    transition: all .45s ease;
    z-index: 5;
}

.facility-card:hover {
    transform: translateY(-10px);
    /* box-shadow: 0 30px 80px rgba(221, 20, 19, 0.12); */
    /* box-shadow: 0 6px 18px rgba(77, 149, 244, 0.35); */
}

/* TOP ACCENT */
.facility-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 5px;
    /* background: linear-gradient(90deg, #DD1413, #ff6b35); */
    background: linear-gradient(135deg, #4d9ef4, #002E5F);
    transition: .5s ease;
}

.facility-card:hover::before {
    width: 100%;
}

/* ICON */
.facility-icon {
    width: 75px;
    height: 75px;
    border-radius: 22px;
    /* background: linear-gradient(135deg, #DD1413, #ff6b35); */
    background: linear-gradient(135deg, #4d9ef4, #002E5F);
    color: #fff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    /* box-shadow: 0 18px 35px rgba(221, 20, 19, 0.25); */
    box-shadow: 0 6px 18px rgba(77, 149, 244, 0.35);
}

/* TITLE */
.facility-title {
    font-size: 34px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.facility-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 4px;
    border-radius: 50px;
    /* background: linear-gradient(90deg, #DD1413, #ff6b35); */
    background: linear-gradient(90deg, #4d9ef4, #002E5F);
}

/* LIST */
.facility-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.facility-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 20px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 22px;
    line-height: 1.6;
    transition: .3s ease;
}

.facility-list li:hover {
    transform: translateX(8px);
    color: #002E5F;
}

/* CHECK ICON */
.check-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    /* background: rgba(221, 20, 19, 0.12); */
    background: rgba(77, 130, 244, 0.12);
    color: #002E5F;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin-top: 2px;
    transition: .3s ease;
}

.facility-list li:hover .check-icon {
    background: #002E5F;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .facility-main-title {
        font-size: 40px;
    }

    .facility-title {
        font-size: 28px;
    }

    .facility-list li {
        font-size: 18px;
    }

    .facility-card {
        padding: 35px;
    }
}

@media (max-width: 767px) {

    .facility-section {
        padding: 70px 0;
    }

    .facility-main-title {
        font-size: 32px;
    }

    .facility-subtitle {
        font-size: 15px;
    }

    .facility-card {
        padding: 28px;
        border-radius: 24px;
    }

    .facility-title {
        font-size: 24px;
    }

    .facility-list li {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .facility-icon {
        width: 65px;
        height: 65px;
        font-size: 24px;
    }
}



/* ================= STREET LIGHT SECTION ================= */

.street-light-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, #f8fafc 0%, #eef4ff 100%);
}

/* WRAPPER */
.street-light-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 35px;
    padding: 70px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

/* BACKGROUND EFFECT */
.street-light-wrapper::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -180px;
    width: 450px;
    height: 450px;
    background: rgba(13, 50, 108, 0.06);
    border-radius: 50%;
    filter: blur(70px);
}

.street-light-wrapper::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -120px;
    width: 320px;
    height: 320px;
    background: rgba(77, 133, 244, 0.08);
    border-radius: 50%;
    filter: blur(60px);
}

/* BADGE */
.street-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(13, 50, 108, 0.08);
    color: #0d326c;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 22px;
}

/* TITLE */
.street-title {
    /* font-size: 54px; */
    font-size: 34px;
    font-weight: 800;
    color: #111827;
    line-height: 1.15;
    margin-bottom: 22px;
}

.street-title span {
    color: #0d326c;
}

/* DESCRIPTION */
.street-desc {
    font-size: 17px;
    line-height: 1.9;
    color: #64748b;
    margin-bottom: 35px;
    max-width: 95%;
}

/* SPEC CARD */
.spec-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
    border: 1px solid #edf2f7;
}

/* HEADER */
.spec-header {
    /* padding: 24px 30px; */
    padding: 14px 30px;
    background: linear-gradient(135deg, #0d326c, #1c4c98);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.spec-header h4 {
    color: #fff;
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

/* POWER BADGE */
.power-badge {
    background: #fff;
    color: #0d326c;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* SPEC LIST */
.spec-list {
    padding: 10px 30px 20px;
}

/* SPEC ITEM */
.spec-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    /* padding: 18px 0; */
    padding: 10px 0;
    border-bottom: 1px dashed #dbe4f0;
    transition: .3s ease;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-item:hover {
    transform: translateX(5px);
}

/* LABEL */
.spec-item span {
    color: #64748b;
    font-size: 16px;
    font-weight: 600;
}

/* VALUE */
.spec-item strong {
    color: #111827;
    font-size: 17px;
    font-weight: 700;
    text-align: right;
}

/* IMAGE BOX */
.street-image-box {
    position: relative;
    text-align: center;
    z-index: 5;
}

/* GLOW */
.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: auto;
    background: radial-gradient(rgba(13, 50, 108, 0.15), transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* IMAGE */
.street-light-img {
    max-height: 600px;
    object-fit: contain;
    transition: .5s ease;
}

.street-light-img:hover {
    transform: translateY(-12px) scale(1.03);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {

    .street-title {
        font-size: 46px;
    }

    .street-light-wrapper {
        padding: 55px;
    }
}

@media (max-width: 991px) {

    .street-light-wrapper {
        padding: 45px;
    }

    .street-title {
        font-size: 38px;
    }

    .street-desc {
        max-width: 100%;
    }

    .street-image-box {
        margin-top: 10px;
    }

    .street-light-img {
        max-height: 450px;
    }
}

@media (max-width: 767px) {

    .street-light-section {
        padding: 70px 0;
    }

    .street-light-wrapper {
        padding: 28px;
        border-radius: 25px;
    }

    .street-title {
        font-size: 30px;
    }

    .street-desc {
        font-size: 15px;
    }

    .spec-header {
        padding: 20px;
    }

    .spec-header h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .power-badge {
        font-size: 17px;
        padding: 8px 16px;
    }

    .spec-list {
        padding: 0 20px 15px;
    }

    .spec-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 15px 0;
    }

    .spec-item strong {
        text-align: left;
        font-size: 15px;
    }

    .street-light-img {
        max-height: 350px;
    }

    .image-glow {
        width: 260px;
        height: 260px;
    }
}




/* ================= PRODUCT TABLE SECTION ================= */

.product-table-section {
    background: linear-gradient(135deg, #f8fafc 0%, #eef4ff 100%);
    position: relative;
    overflow: hidden;
}

/* BADGE */
.table-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    border-radius: 50px;
    /* background: rgba(243, 132, 0, 0.12); */
    background: rgba(0, 57, 243, 0.06);
    color: #0e2f76;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 20px;
}

/* TITLE */
.table-title {
    font-size: 34px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 18px;
}

.table-title span {
    color: #f38400;
}

/* SUBTITLE */
.table-subtitle {
    max-width: 760px;
    margin: auto;
    color: #64748b;
    font-size: 17px;
    line-height: 1.9;
}

/* TABLE WRAPPER */
.custom-table-wrapper {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
}

/* TABLE */
.custom-product-table {
    margin: 0;
    min-width: 950px;
}

/* HEADER */
.custom-product-table thead {
    /* background: linear-gradient(135deg, #f38400, #ff9d00); */
    background: linear-gradient(135deg, #0d326c, #1c4c98)
}

.custom-product-table thead th {
    border: none;
    padding: 24px 22px;
    color: #fff;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .7px;
    white-space: nowrap;
}

/* BODY */
.custom-product-table tbody tr {
    transition: all .35s ease;
}

.custom-product-table tbody tr:hover {
    background: rgba(0, 57, 243, 0.06);
    transform: scale(1.01);
}

/* ALTERNATE ROW */
.custom-product-table tbody .active-row {
    /* background: rgba(0, 51, 255, 0.119); */
}

/* TD */
.custom-product-table tbody td {
    border-top: 1px solid #edf2f7;
    padding: 22px 20px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    vertical-align: middle;
    white-space: nowrap;
}

/* MODEL BADGE */
.model-badge {
    background: rgba(28, 0, 243, 0.12);
    /* color: #f38400; */
    color: #0e2f76;
    padding: 10px 18px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 700;
    min-width: 110px;
}

/* WEIGHT BADGE */
.weight-badge {
    background: linear-gradient(135deg, #111827, #1f2937);
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 700;
    min-width: 110px;
    box-shadow: 0 10px 25px rgba(17, 24, 39, 0.18);
}

/* SCROLLBAR */
.table-responsive::-webkit-scrollbar {
    height: 8px;
}

.table-responsive::-webkit-scrollbar-thumb {
    background: #0e2f76;
    border-radius: 50px;
}

.table-responsive::-webkit-scrollbar-track {
    background: #f1f5f9;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {

    .table-title {
        font-size: 44px;
    }
}

@media (max-width: 991px) {

    .table-title {
        font-size: 38px;
    }

    .table-subtitle {
        font-size: 16px;
    }

    .custom-product-table thead th,
    .custom-product-table tbody td {
        padding: 18px 16px;
    }
}

@media (max-width: 767px) {

    .product-table-section {
        padding: 70px 0;
    }

    .table-title {
        font-size: 30px;
        line-height: 1.3;
    }

    .table-subtitle {
        font-size: 15px;
    }

    .custom-table-wrapper {
        border-radius: 22px;
    }

    .custom-product-table {
        min-width: 850px;
    }

    .custom-product-table thead th {
        font-size: 13px;
        padding: 16px 14px;
    }

    .custom-product-table tbody td {
        font-size: 13px;
        padding: 16px 14px;
    }

    .model-badge,
    .weight-badge {
        padding: 8px 14px;
        font-size: 12px;
        min-width: auto;
    }
}