/* =====================================================
   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, #F49A4D, #ff7a18);
    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: #F49A4D;
    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: 56px;
    max-width: 100%;
    transition: .3s;
}

/* 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: #F49A4D !important;
}

/* Underline */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #F49A4D;
    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;
}

.call-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F49A4D, #ff7a18);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    box-shadow: 0 6px 18px rgba(244, 154, 77, .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 ================= */
.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;
}

.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: #fff7f0;
    color: #F49A4D;
    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
===================================================== */

/* 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;
    }

    .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;
    }
}



/* About US */
.about-section {
    /* background: #f8f9fa; */
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    gap: 200px;
}

/* Images */
.about-img-main img {
    width: 100%;
    border-radius: 20px;
}

.about-img-small {
    position: absolute;
    bottom: -30px;
    right: 30px;
    width: 200px;
}

.about-img-small img {
    width: 100%;
    border-radius: 15px;
}

/* Experience Box */
.experience-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.experience-box i {
    color: #1A63E1;
    margin-right: 8px;
}

/* Right Content */
.about-tag {
    display: inline-block;
    /* background: #1A63E1; */
    background: #F49A4D;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-text {
    /* color: #555; */
    margin-bottom: 20px;
    line-height: 1.7;
    color: #475569;
    font-size: 1.1rem;
    text-align: justify;
}

/* List */
.about-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.about-list li {
    margin-bottom: 10px;
    font-size: 15px;
}

.about-list i {
    color: #F49A4D;
    margin-right: 10px;
}

/* Button */
.btn-about {
    background: linear-gradient(90deg, #865224, #F49A4D);
    color: white;
    padding: 14px 42px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgb(30 58 138 / 0.3);
    /* background: #1A63E1;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s; */
}

.btn-about:hover {
    background: #0f4fc1;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .about-img-small {
        position: static;
        margin-top: 15px;
        width: 100%;
    }

    .experience-box {
        position: static;
        margin-top: 15px;
        display: inline-block;
    }

    .about-title {
        font-size: 24px;
    }
}
/* 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: #fe983e;
    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: #fe983e;
}

/* Responsive */
@media (max-width: 768px) {
    .product-img img {
        height: auto;
    }

    .section-title {
        font-size: 26px;
    }
}



/* Footer */
.footer-section {
    background: #0f2e57;
    color: #fff;
    padding-top: 60px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
}

.footer-section p {
    color: #cfd8e3;
    font-size: 14px;
}

/* Icons */
.footer-contact-icons a {
    display: inline-block;
    margin-right: 10px;
    /* background: #1A63E1; */
    background: #F49A4D;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: 0.3s;
}

.footer-contact-icons a:hover {
    background: #fff;
    color: #1A63E1;
}

/* Titles */
.footer-title {
    font-weight: 600;
    margin-bottom: 15px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cfd8e3;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a i {
    margin-right: 8px;
    /* color: #1A63E1; */
    color: #F49A4D;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Contact */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    color: #cfd8e3;
}

.footer-contact i {
    color: #F49A4D;
    margin-right: 10px;
}

/* Newsletter */
.newsletter-form {
    display: flex;
    margin-top: 10px;
}

.newsletter-form input {
    width: 100%;
    padding: 10px;
    border: none;
    outline: none;
}

.newsletter-form button {
    background: #1A63E1;
    border: none;
    color: #fff;
    padding: 0 15px;
}

/* Map */
.footer-map iframe {
    width: 100%;
    height: 250px;
    border-radius: 10px;
}

/* Bottom */
.footer-bottom {
    background: #0c2545;
    margin-top: 40px;
    padding: 15px 0;
}

.footer-credit {
    color: #fff;
    text-decoration: none;
}

.footer-credit:hover {
    color: #1A63E1;
}

/* 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;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .container {
        flex-direction: column;
    }

    .footer-credit {
        margin-top: 10px;
    }
}




/* 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: 4.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: 3.5rem;
    }
}

@media (max-width: 768px) {
    .about-banner {
        min-height: 320px;
    }

    .about-banner h1 {
        font-size: 2.8rem;
    }

    .nav-bar {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-banner h1 {
        font-size: 2.2rem;
    }

    .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;
    }
}