/* =====================================================
   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); */
    background: linear-gradient(135deg, #0b2c22, #1f7556);
    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: #F49A4D;
    color: #fff;
    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: 60px;
    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: #1f7556 !important;
}

/* Underline */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #1f7556;
    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: #f0fff5;
}

.call-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    /* background: linear-gradient(135deg, #F49A4D, #ff7a18); */
    background: linear-gradient(135deg, #0b2c22, #1f7556);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    box-shadow: 0 6px 18px rgba(77, 244, 127, 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 ================= */
.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::after {
    content: '';
    position: absolute;
    bottom: -15px;
    /* Adjust this value to match your exact visual gap */
    left: 0;
    width: 100%;
    height: 15px;
    /* Creates the invisible bridge */
}

.nav-item.dropdown:hover>.dropdown-menu {
    display: block;
}

.dropdown-item {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    transition: .25s ease;
    position: relative;
}

.dropdown-item:hover {
    /* background: #fff7f0; */
    background: #f0fff5;
    color: #1f7556;
    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-section {
    position: relative;
    overflow: hidden;
    background: #f7faf7;
}

.about-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: #d7f5d7;
    border-radius: 50%;
    top: -180px;
    right: -180px;
}

.about-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: #fff1dd;
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
}

/*-------------------------*/

.about-image-wrapper {
    position: relative;
    max-width: 520px;
    margin: auto;
}

.main-about-img {
    width: 100%;
    border-radius: 25px;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.bg-circle1 {
    width: 180px;
    height: 180px;
    background: #ffe4b5;
    top: -35px;
    left: -35px;
}

.bg-circle2 {
    width: 140px;
    height: 140px;
    background: #c7f3cf;
    bottom: -25px;
    right: -25px;
}

/*-------------------------*/

.floating-card {

    position: absolute;
    right: -20px;
    bottom: 40px;
    background: #fff;
    padding: 16px 25px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);

}

.floating-card i {

    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #1fa64a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;

}

.floating-card span {

    font-weight: 700;
    color: #2d3748;

}

/*-------------------------*/

.about-label {

    display: inline-block;
    background: #e8f7eb;
    color: #16833d;
    padding: 8px 22px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;

}

.about-heading {

    font-size: 44px;
    font-weight: 700;
    line-height: 1.25;
    color: #1f2937;
    margin-bottom: 20px;

}

.about-description {

    font-size: 17px;
    color: #64748b;
    line-height: 1.9;
    text-align: justify;

}

/*-------------------------*/

.feature-box {

    background: #fff;
    border-radius: 18px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: .35s;
    border: 1px solid #edf2f7;
    height: 100%;

}

.feature-box:hover {

    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

}

.feature-icon {

    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f49a4d, #865224);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;

}

.feature-box h6 {

    margin: 0;
    font-weight: 700;
    color: #222;

}

.feature-box p {

    margin: 3px 0 0;
    color: #777;
    font-size: 14px;

}

/*-------------------------*/

.about-btn {

    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #865224, #f49a4d);
    color: #fff;
    padding: 15px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .35s;
    box-shadow: 0 12px 30px rgba(244, 154, 77, .35);

}

.about-btn:hover {

    transform: translateY(-4px);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 20px 40px rgba(244, 154, 77, .45);

}

/*-------------------------*/

@media(max-width:991px) {

    .about-heading {
        font-size: 34px;
    }

    .floating-card {

        right: 10px;
        bottom: 15px;
        padding: 12px 18px;

    }

}

@media(max-width:767px) {

    .about-heading {
        font-size: 28px;
    }

    .floating-card {

        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 20px;
        width: fit-content;

    }

}
/* End */


.product-section {
    background: #f7faf8;
}

/* Heading */

.product-tag {
    display: inline-block;
    background: #eaf8ed;
    color: #1b8d45;
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #222;
}

.section-subtitle {
    color: #64748b;
    max-width: 650px;
    margin: auto;
    line-height: 1.8;
}

/* Card */

.product-box {

    background: #fff;
    border-radius: 28px;
    padding: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: .4s;
    border: 1px solid #edf2f7;

}

.product-box::before {

    content: "";
    position: absolute;
    width: 100%;
    height: 180px;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, #fff7ed, #ecfdf5);
    border-radius: 0 0 50% 50%;

}

.product-box:hover {

    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);

}

/* Category */

.category {

    position: relative;
    z-index: 2;
    display: inline-block;
    padding: 8px 18px;
    background: #ffffff;
    color: #f49a4d;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);

}

/* Image */

.product-image {
    
    position: relative;
    z-index: 2;
    margin: 35px 0;

}

.product-image img {

    /* max-width: 260px; */
    /* max-width: 100%; */
    /* height: 350px; */
    height: auto;
    /* object-fit: contain; */
    width: 100%;
    transition: .5s;

}

.product-box:hover .product-image img {

    transform: scale(1.08) rotate(-2deg);

}

/* Content */

.product-info {
    position: relative;
    z-index: 2;
}

.product-info h4 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
    min-height: 56px;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
    border: 1px solid #e8edf3;
    border-radius: 14px;
    padding: 12px 16px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.meta-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    margin-bottom: 4px;
    font-weight: 600;
}

.meta-value {
    font-size: 17px;
    font-weight: 700;
    color: #1f2937;
}

.meta-divider {
    width: 1px;
    height: 38px;
    background: #d9dee5;
}

/* Responsive */

@media(max-width:991px) {

    .section-title {

        font-size: 34px;

    }

}

@media(max-width:767px) {

    .section-title {

        font-size: 28px;

    }

    .product-box {

        padding: 25px;

    }

    .product-image img {

        /* max-width: 200px; */
        max-width: 100%;

    }

}



/* Footer */
.footer-section {

    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0b2c22, #144d38);
    color: #fff;
    padding: 90px 0 0;

}

/* Decorative */

.footer-shape {

    position: absolute;
    border-radius: 50%;
    opacity: .08;

}

.footer-shape1 {

    width: 320px;
    height: 320px;
    background: #ffffff;
    top: -150px;
    left: -120px;

}

.footer-shape2 {

    width: 280px;
    height: 280px;
    background: #f49a4d;
    bottom: -120px;
    right: -120px;

}

/* Logo */

.footer-logo {

    width: 75px;
    height: 65px;
    /* object-fit: cover; */
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, .15);
}

.company-title {

    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;

}

.company-desc {

    color: #d7e4dd;
    line-height: 1.9;
    margin-bottom: 30px;

}

/* Social */

.social-icons a {

    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    color: #fff;
    margin-right: 12px;
    transition: .4s;

}

.social-icons a:hover {

    background: #f49a4d;
    transform: translateY(-6px);

}

/* Heading */

.footer-heading {

    font-size: 22px;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;

}

.footer-heading::after {

    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: #f49a4d;

}

/* Links */

.footer-links {

    padding: 0;
    list-style: none;

}

.footer-links li {

    margin-bottom: 18px;

}

.footer-links a {

    color: #d7e4dd;
    text-decoration: none;
    transition: .35s;

}

.footer-links a:hover {

    color: #f49a4d;
    padding-left: 10px;

}

/* Contact Card */

.contact-card {

    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 18px;
    transition: .35s;

}

.contact-card:hover {

    transform: translateY(-5px);

    background: rgba(255, 255, 255, .13);

}

.contact-card i {

    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #f49a4d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;

}

.contact-card h6 {

    margin-bottom: 6px;
    font-weight: 600;
    font-size: 17px;

}

.contact-card span {

    color: #d7e4dd;
    line-height: 1.7;
    font-size: 15px;

}

/* Bottom */

.footer-bottom {

    margin-top: 70px;
    background: rgba(0, 0, 0, .18);
    padding: 22px 0;
    font-size: 15px;

}

.footer-bottom a {

    color: #f49a4d;
    text-decoration: none;
    font-weight: 600;

}

.footer-bottom a:hover {

    color: #fff;

}

/* Responsive */

@media(max-width:991px) {

    .company-title {

        font-size: 26px;

    }

}

@media(max-width:767px) {

    .footer-section {

        padding-top: 70px;

    }

    .footer-heading {

        margin-top: 15px;

    }

    .footer-bottom {

        text-align: center;

    }

    .footer-bottom .col-md-6:last-child {

        margin-top: 10px;

    }

}

/* 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, #1e5e44e2 0%, #0f4444 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: 3rem;
    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; */
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-banner {
        min-height: 320px;
    }

    .about-banner h1 {
        /* font-size: 2.8rem; */
        font-size: 1.8rem;
    }

    .nav-bar {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-banner h1 {
        font-size: 1.4rem;
    }

    .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: #fff;
    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;
    }
}