﻿/* =========================================
   STAR INDUSTRIAL PRODUCTS & SERVICES
   HEADER + RESPONSIVE DROPDOWN
========================================= */

:root {
    --star-navy: #07375a;
    --star-dark-navy: #062f4d;
    --star-orange: #f15a24;
    --star-orange-dark: #d94717;
    --star-text: #102f4a;
    --star-muted: #657786;
    --star-border: #e2e7eb;
    --star-light: #f5f8fa;
    --star-white: #ffffff;
}


/* =========================================
   MAIN CONTAINER
========================================= */
/* =========================================
   GLOBAL RESET
========================================= */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}
.star-container {
    width: 100%;
    max-width: 1440px;

    margin: 0 auto;

    padding-left: 45px;
    padding-right: 45px;

    box-sizing: border-box;
}


/* =========================================
   TOP CONTACT BAR
========================================= */

.star-topbar {
    width: 100%;

    min-height: 46px;

    background: var(--star-navy);

    color: #ffffff;
}


.star-topbar-inner {
    min-height: 46px;

    display: flex;
    align-items: center;

    justify-content: space-between;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    box-sizing: border-box;
}


/* =========================================
   SALES EMAIL
========================================= */

.star-sales {
    display: flex;
    align-items: center;

    gap: 8px;

    font-size: 14px;
}


.star-sales .star-icon {
    font-size: 14px;

    line-height: 1;
}


.star-sales a {
    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    transition: color 0.3s ease;
}


.star-sales a:hover {
    color: var(--star-orange);
}


/* =========================================
   PHONE
========================================= */

.star-phone {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-left: auto;

    font-size: 14px;
}


.star-phone .star-icon {
    font-size: 16px;
}


.star-phone a {
    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    white-space: nowrap;

    transition: color 0.3s ease;
}


.star-phone a:hover {
    color: var(--star-orange);
}


/* =========================================
   WHATSAPP ICON
========================================= */

.star-whatsapp {
    width: 32px;
    height: 32px;

    margin-left: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #25D366;

    text-decoration: none;

    font-size: 25px;

    line-height: 1;

    transition:
        transform 0.25s ease,
        color 0.25s ease;
}


.star-whatsapp:hover {
    color: #1ebe5d;

    transform: scale(1.08);
}


.star-whatsapp i {
    font-size: 25px;

    line-height: 1;
}


/* =========================================
   MAIN NAVBAR
========================================= */

.star-navbar {
    position: relative;

    width: 100%;

    background: #ffffff;

    border-bottom: 1px solid var(--star-border);

    z-index: 10000;
}


.star-navbar-inner {
    min-height: 80px;

    display: flex;
    align-items: center;

    box-sizing: border-box;
}


/* =========================================
   LOGO
========================================= */

.star-logo {
    display: flex;
    align-items: center;

    flex-shrink: 0;

    margin: 0;

    padding: 0;

    text-decoration: none;
}


.star-logo img {
    width: 260px;

    height: auto;

    display: block;

    object-fit: contain;
}


/* =========================================
   DESKTOP NAVIGATION
========================================= */

.star-nav {
    height: 80px;

    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 32px;
}


.star-nav > a {
    position: relative;

    height: 100%;

    display: flex;
    align-items: center;

    color: var(--star-text);

    text-decoration: none;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 500;

    white-space: nowrap;

    transition: color 0.25s ease;
}


.star-nav > a:hover,
.star-nav > a.active {
    color: var(--star-orange);
}


/* =========================================
   ACTIVE NAVIGATION LINE
========================================= */

.star-nav > a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: 18px;

    height: 2px;

    background: var(--star-orange);

    border-radius: 2px;
}


/* =========================================
   PRODUCTS DROPDOWN WRAPPER
========================================= */

.star-nav-dropdown {
    position: relative;

    height: 100%;

    display: flex;
    align-items: center;
}


/* =========================================
   PRODUCTS DROPDOWN BUTTON
========================================= */

.star-dropdown-toggle {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 8px;

    padding: 0;

    border: 0;

    background: transparent;

    color: var(--star-text);

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 500;

    white-space: nowrap;

    cursor: pointer;

    transition: color 0.25s ease;
}


.star-dropdown-toggle:hover {
    color: var(--star-orange);
}


/* =========================================
   DESKTOP DROPDOWN ARROW
========================================= */

.star-dropdown-toggle i {
    width: 19px;
    height: 19px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #cbd5dc;

    border-radius: 50%;

    color: #526b7b;

    font-size: 8px;

    line-height: 1;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}


.star-dropdown-toggle:hover i {
    color: #ffffff;

    background: var(--star-orange);

    border-color: var(--star-orange);
}


.star-nav-dropdown.open
.star-dropdown-toggle i {
    transform: rotate(180deg);

    color: #ffffff;

    background: var(--star-orange);

    border-color: var(--star-orange);
}


/* =========================================
   DESKTOP PRODUCTS DROPDOWN
========================================= */

.star-dropdown-menu {
    position: absolute;

    top: calc(100% - 1px);

    left: 50%;

    width: 350px;

    max-height: 560px;

    overflow-y: auto;

    padding: 8px 0;

    background: #ffffff;

    border-top: 3px solid var(--star-orange);

    border-radius: 0 0 8px 8px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.15);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transform:
        translateX(-50%)
        translateY(12px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;

    z-index: 99999;

    scrollbar-width: thin;
}


.star-nav-dropdown.open
.star-dropdown-menu {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translateX(-50%)
        translateY(0);
}


/* =========================================
   DROPDOWN SCROLLBAR
========================================= */

.star-dropdown-menu::-webkit-scrollbar {
    width: 5px;
}


.star-dropdown-menu::-webkit-scrollbar-track {
    background: #f3f5f7;
}


.star-dropdown-menu::-webkit-scrollbar-thumb {
    background: #c3ccd3;

    border-radius: 10px;
}


/* =========================================
   DESKTOP DROPDOWN ITEMS
========================================= */

.star-dropdown-menu a {
    position: relative;

    display: block;

    padding: 11px 20px 11px 28px;

    color: var(--star-text);

    background: #ffffff;

    text-decoration: none;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 500;

    line-height: 1.4;

    border-bottom: 1px solid #edf1f4;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        padding-left 0.2s ease;
}


.star-dropdown-menu a:last-child {
    border-bottom: 0;
}


.star-dropdown-menu a::before {
    content: "";

    position: absolute;

    left: 13px;

    top: 50%;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--star-orange);

    transform:
        translateY(-50%)
        scale(0);

    transition: transform 0.2s ease;
}


.star-dropdown-menu a:hover {
    color: var(--star-orange);

    background: #f7fafc;

    padding-left: 32px;
}


.star-dropdown-menu a:hover::before {
    transform:
        translateY(-50%)
        scale(1);
}


.star-dropdown-menu a span {
    color: #788894;

    font-size: 12px;

    margin-left: 3px;
}


/* =========================================
   SEARCH BUTTON
========================================= */

.star-search-btn {
    width: 48px;
    height: 48px;

    margin-left: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;

    border-left: 1px solid var(--star-border);

    background: transparent;

    color: var(--star-text);

    cursor: pointer;

    font-size: 22px;
}


.star-search-btn:hover {
    color: var(--star-orange);
}


/* =========================================
   GET A QUOTE
========================================= */

.star-quote-btn {
    min-height: 46px;

    margin-left: 15px;

    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    background: var(--star-orange);

    color: #ffffff;

    border-radius: 4px;

    text-decoration: none;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 600;

    white-space: nowrap;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.star-quote-btn:hover {
    background: var(--star-orange-dark);

    transform: translateY(-1px);
}


.star-quote-btn span {
    font-size: 17px;
}


/* =========================================
   MOBILE HAMBURGER
========================================= */

.star-menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    margin-left: auto;

    padding: 0;

    border: 0;

    background: transparent;

    cursor: pointer;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 5px;
}


.star-menu-toggle span {
    width: 25px;
    height: 2px;

    display: block;

    background: var(--star-orange);

    border-radius: 2px;

    transition: 0.25s ease;
}


/* =========================================
   MOBILE MENU
   HIDDEN BY DEFAULT
========================================= */

.star-mobile-menu {
    display: none;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .star-container {
        padding-left: 25px;
        padding-right: 25px;
    }


    .star-logo img {
        width: 210px;
    }


    .star-nav {
        gap: 20px;
    }


    .star-nav > a,
    .star-dropdown-toggle {
        font-size: 14px;
    }


    .star-search-btn {
        margin-left: 15px;
    }


    .star-quote-btn {
        margin-left: 10px;

        padding-left: 15px;
        padding-right: 15px;
    }


    .star-dropdown-menu {
        width: 320px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    /* -------------------------------------
       SAME LEFT/RIGHT SPACING
       FOR TOP BAR + LOGO
    ------------------------------------- */

    .star-container {
        padding-left: 8px;
        padding-right: 8px;
    }


    /* =====================================
       TOP BLUE BAR
    ===================================== */

    .star-topbar {
        min-height: 42px;
    }

    .star-topbar-inner {
        min-height: 42px;

        padding-left: 8px !important;
        padding-right: 8px !important;

        display: flex;
        align-items: center;
        justify-content: space-between;

        gap: 10px;
    }


    /* Sales Email */

    .star-sales {
        display: flex;

        align-items: center;

        gap: 6px;

        margin: 0;

        font-size: 12px;

        white-space: nowrap;
    }

    .star-sales .star-icon {
        font-size: 12px;
    }

    .star-sales a {
        font-size: 12px;
    }


    /* Mobile Number */

    .star-phone {
        display: flex;

        align-items: center;

        gap: 5px;

        margin-left: auto;

        font-size: 12px;

        white-space: nowrap;
    }

    .star-phone .star-icon {
        font-size: 13px;
    }

    .star-phone a {
        font-size: 12px;

        white-space: nowrap;
    }


    /* WhatsApp icon hidden */

    .star-whatsapp {
        display: none;
    }


    


    /* =====================================
       NAVBAR
    ===================================== */

    .star-navbar {
        position: relative;

        z-index: 10000;
    }


    .star-navbar-inner {
        position: relative;

        min-height: 88px;

        padding-left: 8px;
        padding-right: 8px;

        display: flex;
        align-items: center;

        box-sizing: border-box;
    }


    /* =====================================
       LOGO
    ===================================== */

    .star-logo {
        position: relative;

        z-index: 10003;

        display: flex;
        align-items: center;

        margin: 0;

        padding: 0;

        flex-shrink: 0;
    }


    .star-logo img {
        width: 260px;

        height: auto;

        display: block;
    }


    /* =====================================
       HIDE DESKTOP NAVIGATION
    ===================================== */

    .star-nav {
        display: none;
    }


    .star-search-btn {
        display: none;
    }


    .star-quote-btn {
        display: none;
    }


    /* =====================================
       HAMBURGER
    ===================================== */

    .star-menu-toggle {
        position: relative;

        z-index: 10004;

        display: flex;

        width: 44px;
        height: 44px;

        margin-left: auto;

        padding: 0;

        border: 0;

        background: transparent;

        flex-shrink: 0;

        align-items: center;
        justify-content: center;

        flex-direction: column;

        gap: 5px;

        cursor: pointer;
    }


    .star-menu-toggle span {
        width: 25px;
        height: 2px;

        display: block;

        background: var(--star-orange);

        border-radius: 2px;
    }


    /* =====================================
       MOBILE MENU PANEL

       ABSOLUTE:
       DOES NOT PUSH LOGO/HAMBURGER
    ===================================== */

    .star-mobile-menu {
        position: absolute;

        top: 100%;

        left: 0;

        width: 100%;

        max-height: calc(100vh - 134px);

        overflow-y: auto;

        display: none;

        box-sizing: border-box;

        padding: 10px 20px 25px;

        background: #ffffff;

        border-top: 1px solid var(--star-border);

        box-shadow:
            0 12px 30px rgba(0, 0, 0, 0.12);

        z-index: 10002;
    }


    /* OPEN ONLY ON MOBILE */

    .star-mobile-menu.open {
        display: block;
    }


    /* =====================================
       MOBILE MENU LINKS
    ===================================== */

    .star-mobile-menu > a {
        min-height: 48px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        box-sizing: border-box;

        padding: 12px 0;

        border-bottom: 1px solid #e8edf1;

        color: var(--star-text);

        background: #ffffff;

        text-decoration: none;

        font-family: "Poppins", sans-serif;

        font-size: 14px;

        font-weight: 500;
    }


    .star-mobile-menu > a:hover {
        color: var(--star-orange);
    }


    /* =====================================
       MOBILE PRODUCTS
    ===================================== */

    .star-mobile-dropdown {
        width: 100%;

        border-bottom: 1px solid #e8edf1;
    }


    .star-mobile-dropdown-toggle {
        width: 100%;

        min-height: 48px;

        padding: 12px 0;

        display: flex;
        align-items: center;
        justify-content: space-between;

        border: 0;

        background: #ffffff;

        color: var(--star-text);

        font-family: "Poppins", sans-serif;

        font-size: 14px;

        font-weight: 500;

        text-align: left;

        cursor: pointer;
    }


    .star-mobile-dropdown-toggle:hover {
        color: var(--star-orange);
    }


    /* =====================================
       MOBILE PRODUCTS ARROW
    ===================================== */

    .star-mobile-dropdown-toggle i {
        width: 26px;
        height: 26px;

        display: flex;
        align-items: center;
        justify-content: center;

        flex-shrink: 0;

        border: 1px solid #ccd6dd;

        border-radius: 50%;

        color: #526b7b;

        background: #ffffff;

        font-size: 9px;

        transition:
            transform 0.3s ease,
            color 0.3s ease,
            background 0.3s ease,
            border-color 0.3s ease;
    }


    .star-mobile-dropdown.open
    .star-mobile-dropdown-toggle i {
        transform: rotate(180deg);

        color: #ffffff;

        background: var(--star-orange);

        border-color: var(--star-orange);
    }


    /* =====================================
       MOBILE PRODUCT LIST
    ===================================== */

    .star-mobile-products {
        width: 100%;

        max-height: 0;

        overflow: hidden;

        opacity: 0;

        visibility: hidden;

        box-sizing: border-box;

        transition:
            max-height 0.35s ease,
            opacity 0.25s ease,
            visibility 0.25s ease;
    }


    .star-mobile-dropdown.open
    .star-mobile-products {
        max-height: 1000px;

        opacity: 1;

        visibility: visible;
    }


    /* =====================================
       MOBILE PRODUCT ITEMS
    ===================================== */

    .star-mobile-products a {
        position: relative;

        display: block;

        box-sizing: border-box;

        padding: 11px 15px 11px 26px;

        color: #38566d;

        background: #f7fafc;

        text-decoration: none;

        font-family: "Poppins", sans-serif;

        font-size: 14px;

        line-height: 1.45;

        border-top: 1px solid #e4eaee;

        transition:
            background 0.2s ease,
            color 0.2s ease,
            padding-left 0.2s ease;
    }


    .star-mobile-products a::before {
        content: "";

        position: absolute;

        left: 12px;

        top: 18px;

        width: 4px;
        height: 4px;

        border-radius: 50%;

        background: var(--star-orange);
    }


    .star-mobile-products a:hover {
        color: var(--star-orange);

        background: #ffffff;

        padding-left: 30px;
    }


    .star-mobile-products small {
        color: #788894;

        font-size: 12px;

        margin-left: 2px;
    }


    /* =====================================
       MOBILE QUOTE
    ===================================== */

    .star-mobile-menu .mobile-quote {
        min-height: 46px;

        margin-top: 15px;

        padding: 0 18px;

        display: flex;

        align-items: center;
        justify-content: center;

        background: var(--star-orange);

        color: #ffffff;

        border-radius: 4px;

        font-size: 14px;

        font-weight: 600;

        text-decoration: none;
    }


    .star-mobile-menu .mobile-quote:hover {
        background: var(--star-orange-dark);

        color: #ffffff;
    }


    .star-mobile-menu .mobile-quote span {
        margin-left: 8px;

        font-size: 17px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .star-container {
        padding-left: 8px;
        padding-right: 8px;
    }


    /* -------------------------------------
       TOP BAR
    ------------------------------------- */

    .star-topbar-inner {
        padding-left: 8px;
        padding-right: 8px;

        min-height: 44px;
    }


    .star-sales {
        gap: 7px;

        font-size: 13px;
    }


    .star-sales a {
        font-size: 13px;
    }


    /* -------------------------------------
       NAVBAR
    ------------------------------------- */

    .star-navbar-inner {
        min-height: 75px;

        padding-left: 8px;
        padding-right: 8px;
    }


    .star-logo img {
        width: 185px;
    }


    /* -------------------------------------
       HAMBURGER
    ------------------------------------- */

    .star-menu-toggle {
        width: 42px;
        height: 42px;
    }


    .star-menu-toggle span {
        width: 24px;
    }


    /* -------------------------------------
       MOBILE MENU
    ------------------------------------- */

    .star-mobile-menu {
        padding-left: 16px;
        padding-right: 16px;
    }


    .star-mobile-menu > a,
    .star-mobile-dropdown-toggle {
        font-size: 14px;
    }
}

/* =========================================
   MOBILE - ALIGN EMAIL ICON WITH LOGO
========================================= */

@media (max-width: 768px) {

    .star-topbar-inner {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .star-navbar-inner {
        padding-left: 0 !important;
        padding-right: 8px !important;
    }

    .star-logo {
        margin-left: 0 !important;
    }

    .star-logo img {
        width: 260px;
        margin-left: 0 !important;
    }

}




/* =========================================
   STAR ABOUT US SECTION
========================================= */

.star-about {
    width: 100%;
    padding: 70px 0;
    background: #ffffff;
}


/* =========================================
   ABOUT CONTAINER
========================================= */

.star-about .star-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 45px;
}


/* =========================================
   ABOUT GRID
========================================= */

.star-about-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 55px;
}


/* =========================================
   LEFT CONTENT
========================================= */

.star-about-content {
    width: 100%;
    max-width: 650px;
}


/* =========================================
   ABOUT LABEL
========================================= */

.star-section-label {
    position: relative;

    display: inline-block;

    margin-bottom: 10px;

    color: var(--star-orange);

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    line-height: 1.3;

    text-transform: uppercase;
}


/* =========================================
   BUSINESS NAME
========================================= */

.star-business-name {
    margin: 0 0 12px;

    color: #5a7182;

    font-family: "Montserrat", sans-serif;

    font-size: 11px;

    line-height: 1.4;

    font-weight: 600;

    letter-spacing: 0.4px;

    text-transform: uppercase;
}


/* =========================================
   ABOUT HEADING
========================================= */

.star-about-content h3 {
    position: relative;

    display: inline-block;

    width: auto;

    margin: 0 0 25px;

    padding-bottom: 14px;

    color: var(--star-navy);

    font-family: "Montserrat", sans-serif;

    font-size: 38px;

    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -0.7px;
}


/* =========================================
   UNDERLINE - EXACT TEXT WIDTH
========================================= */

.star-about-content h3::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 100%;

    height: 3px;

    background: linear-gradient(
        90deg,
        var(--star-orange) 0%,
        var(--star-orange) 82%,
        var(--star-navy) 82%,
        var(--star-navy) 100%
    );

    border-radius: 10px;
}


/* No separate underline extension */

.star-about-content h3::before {
    display: none;
}


/* =========================================
   ABOUT PARAGRAPH
========================================= */

.star-about-content p {
    max-width: 620px;

    margin: 0 0 26px;

    color: #000;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.7;

    font-weight: 400;
}


/* =========================================
   ABOUT BUTTON
========================================= */

.star-about-btn {
    min-height: 46px;

    padding: 0 20px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    background: var(--star-orange);

    color: #ffffff;

    border: 1px solid var(--star-orange);

    border-radius: 4px;

    text-decoration: none;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    font-weight: 600;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.star-about-btn:hover {
    background: var(--star-orange-dark);

    border-color: var(--star-orange-dark);

    transform: translateY(-2px);

    box-shadow: 0 7px 18px rgba(241, 90, 36, 0.18);
}


.star-about-btn span {
    font-size: 17px;

    line-height: 1;
}


/* =========================================
   RIGHT FEATURES BOX
========================================= */

.star-about-features {
    width: 100%;

    box-sizing: border-box;

    padding: 20px 28px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    background: #f3f7fa;

    border-radius: 7px;
}


/* =========================================
   FEATURE ITEM
========================================= */

.star-about-feature {
    box-sizing: border-box;

    min-height: 82px;

    padding: 15px 18px;

    display: flex;

    align-items: center;

    gap: 13px;

    border-right: 1px solid #d5e0e8;

    border-bottom: 1px solid #d5e0e8;
}


/* =========================================
   FEATURE BORDERS
========================================= */

.star-about-feature:nth-child(3),
.star-about-feature:nth-child(6) {
    border-right: none;
}


.star-about-feature:nth-child(4),
.star-about-feature:nth-child(5),
.star-about-feature:nth-child(6) {
    border-bottom: none;
}


/* =========================================
   FEATURE ICON
========================================= */

.star-about-feature i {
    width: 32px;

    flex: 0 0 32px;

    color: var(--star-navy);

    font-size: 25px;

    text-align: center;
}


/* =========================================
   FEATURE TEXT
========================================= */

.star-about-feature div {
    display: flex;

    flex-direction: column;

    gap: 2px;
}


.star-about-feature strong {
    color: var(--star-navy);

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    line-height: 1.3;

    font-weight: 700;
}


.star-about-feature span {
    color: #526779;

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    line-height: 1.35;

    font-weight: 400;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .star-about {
        padding: 60px 0;
    }


    .star-about .star-container {
        padding: 0 25px;
    }


    .star-about-grid {
        gap: 35px;
    }


    .star-about-content h3 {
        font-size: 32px;
    }


    .star-about-features {
        padding: 15px;
    }


    .star-about-feature {
        padding: 13px 10px;

        gap: 9px;
    }


    .star-about-feature i {
        width: 28px;

        flex-basis: 28px;

        font-size: 22px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .star-about {
        padding: 50px 0;
    }


    .star-about .star-container {
        padding: 0 20px;
    }


    .star-about-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .star-about-content {
        max-width: 100%;
    }


    .star-section-label {
        margin-bottom: 9px;

        font-size: 11px;

        letter-spacing: 1.7px;
    }


    .star-business-name {
        margin-bottom: 10px;

        font-size: 10px;
    }


    .star-about-content h3 {
        display: inline-block;

        width: auto;

        margin-bottom: 22px;

        padding-bottom: 12px;

        font-size: 29px;

        line-height: 1.18;
    }


    .star-about-content h3::after {
        height: 3px;
    }


    .star-about-content p {
        font-size: 14px;

        line-height: 1.65;

        margin-bottom: 24px;
    }


    .star-about-btn {
        min-height: 44px;

        padding: 0 18px;

        font-size: 12px;
    }


    /* =====================================
       FEATURE BOX - MOBILE
    ===================================== */

    .star-about-features {
        width: 100%;

        box-sizing: border-box;

        grid-template-columns: repeat(2, 1fr);

        padding: 12px;
    }


    .star-about-feature {
        min-height: 75px;

        padding: 12px 10px;
    }


    /* Reset borders for 2-column layout */

    .star-about-feature:nth-child(3),
    .star-about-feature:nth-child(6) {
        border-right: 1px solid #d5e0e8;
    }


    .star-about-feature:nth-child(2),
    .star-about-feature:nth-child(4),
    .star-about-feature:nth-child(6) {
        border-right: none;
    }


    .star-about-feature:nth-child(5),
    .star-about-feature:nth-child(6) {
        border-bottom: none;
    }


    .star-about-feature i {
        width: 27px;

        flex-basis: 27px;

        font-size: 21px;
    }


    .star-about-feature strong {
        font-size: 12px;
    }


    .star-about-feature span {
        font-size: 11px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .star-about {
        padding: 42px 0;
    }


    .star-about .star-container {
        padding: 0 15px;
    }


    .star-about-grid {
        gap: 28px;
    }


    .star-section-label {
        font-size: 10px;

        letter-spacing: 1.5px;
    }


    .star-business-name {
        font-size: 9px;

        line-height: 1.4;
    }


    .star-about-content h3 {
        font-size: 25px;

        line-height: 1.18;

        letter-spacing: -0.3px;

        padding-bottom: 11px;
    }


    .star-about-content h3::after {
        height: 3px;
    }


    .star-about-content p {
        font-size: 13px;

        line-height: 1.6;
    }


    .star-about-btn {
        min-height: 42px;

        padding: 0 16px;

        font-size: 12px;
    }


    .star-about-features {
        padding: 8px;
    }


    .star-about-feature {
        min-height: 70px;

        padding: 10px 7px;

        gap: 7px;
    }


    .star-about-feature i {
        width: 23px;

        flex-basis: 23px;

        font-size: 18px;
    }


    .star-about-feature strong {
        font-size: 11px;
    }


    .star-about-feature span {
        font-size: 10px;
    }
}


/* =========================================
   GLOBAL BOX SIZING
========================================= */

.star-about *,
.star-about *::before,
.star-about *::after {
    box-sizing: border-box;
}



/* =========================================
   PRODUCTS SECTION
========================================= */

.star-products {
    width: 100%;
    box-sizing: border-box;
    padding: 65px 0;
    background: #f3f6f8;
    border-top: 1px solid #e5ebef;
    border-bottom: 1px solid #e5ebef;
}

.star-products *,
.star-products *::before,
.star-products *::after {
    box-sizing: border-box;
}


/* =========================================
   CONTAINER
========================================= */

.star-products .star-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 45px;
}


/* =========================================
   PRODUCTS HEADER
========================================= */

.star-products-header {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 30px;
}

.star-products-title {
    width: 100%;
    text-align: center;
}


/* =========================================
   SMALL LABEL
========================================= */

.star-products-label {
    display: block;
    margin-bottom: 7px;

    color: var(--star-orange);

    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
    line-height: 1.3;

    text-transform: uppercase;
}


/* =========================================
   MAIN HEADING
========================================= */

.star-products-title h2 {
    position: relative;

    display: inline-block;
    width: auto;

    margin: 0;
    padding: 0 0 13px;

    color: var(--star-navy);

    font-family: "Montserrat", sans-serif;
    font-size: 34px;
    line-height: 1.2;

    font-weight: 700;
    letter-spacing: -0.5px;
}


/* =========================================
   CREATIVE UNDERLINE
   EXACT WIDTH OF HEADING
========================================= */

.star-products-title h2::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    background: linear-gradient(
        90deg,
        var(--star-orange) 0%,
        var(--star-orange) 82%,
        var(--star-navy) 82%,
        var(--star-navy) 100%
    );

    border-radius: 10px;
}


/* =========================================
   PRODUCTS GRID
========================================= */

.star-products-grid {
    width: 100%;
    display: grid;

    grid-template-columns: repeat(6, minmax(0, 1fr));

    gap: 14px;
}


/* =========================================
   PRODUCT CARD
========================================= */

.star-product-card {
    width: 100%;
    min-width: 0;
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #dce4e9;
    border-radius: 6px;

    box-shadow: 0 2px 8px rgba(11, 31, 51, 0.04);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* =========================================
   CARD HOVER
========================================= */

.star-product-card:hover {
    transform: translateY(-4px);

    border-color: #c8d5dd;

    box-shadow: 0 10px 25px rgba(11, 31, 51, 0.11);
}


/* =========================================
   PRODUCT IMAGE AREA
========================================= */

.star-product-card img {
    display: block;

    width: 100%;
    height: 145px;

    padding: 8px;

    object-fit: contain;
    object-position: center;

    background: #ffffff;

    border: 0;
}


/* =========================================
   PRODUCT NAME
========================================= */

.star-product-card h3 {
    width: 100%;
    min-height: 45px;

    margin: 0;
    padding: 8px 7px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    color: var(--star-navy);

    font-family: "Poppins", sans-serif;
    font-size: 12px;
    line-height: 1.35;

    font-weight: 600;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .star-products {
        padding: 55px 0;
    }

    .star-products .star-container {
        padding: 0 25px;
    }

    .star-products-title h2 {
        font-size: 30px;
    }

    .star-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }

    .star-product-card img {
        height: 160px;
        padding: 10px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .star-products {
        padding: 50px 0;
    }

    .star-products .star-container {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }

    .star-products-header {
        margin-bottom: 25px;
    }

    .star-products-label {
        font-size: 11px;
        letter-spacing: 1.7px;
    }

    .star-products-title h2 {
        font-size: 27px;
        padding-bottom: 11px;
    }

    .star-products-grid {
        width: 100%;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 10px;
    }

    .star-product-card {
        width: 100%;
        min-width: 0;
    }

    .star-product-card img {
        width: 100%;
        height: 145px;

        padding: 8px;
        object-fit: contain;
    }

    .star-product-card h3 {
        min-height: 42px;

        padding: 7px 6px;

        font-size: 11px;
        line-height: 1.35;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .star-products {
        padding: 42px 0;
    }

    .star-products .star-container {
        padding: 0 15px;
    }

    .star-products-header {
        margin-bottom: 22px;
    }

    .star-products-label {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .star-products-title h2 {
        font-size: 24px;
        padding-bottom: 10px;
    }

    .star-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .star-product-card img {
        height: 125px;
        padding: 7px;
    }

    .star-product-card h3 {
        min-height: 40px;

        padding: 6px 5px;

        font-size: 10px;
        line-height: 1.3;
    }
}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 360px) {

    .star-products .star-container {
        padding: 0 12px;
    }

    .star-products-grid {
        gap: 7px;
    }

    .star-product-card img {
        height: 115px;
    }

    .star-product-card h3 {
        font-size: 9.5px;
    }
}


/* =========================================
   BUSINESS HIGHLIGHTS SECTION
========================================= */

.star-business-highlights {
    width: 100%;
    padding: 28px 0;

    background: #ffffff;
}

.star-business-highlights .star-container {
    width: 100%;
    max-width: 1440px;

    margin: 0 auto;
    padding: 0 45px;
}


/* =========================================
   THREE CARD GRID
========================================= */

.star-business-grid {
    width: 100%;

    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 10px;
}


/* =========================================
   COMMON CARD
========================================= */

.star-business-card {
    position: relative;

    width: 100%;
    min-width: 0;

    min-height: 170px;

    overflow: hidden;

    background: #f2f6f9;

    border: 1px solid #e4ebef;

    border-radius: 6px;
}


/* =========================================
   CARD CONTENT
========================================= */

.star-business-content {
    position: relative;
    z-index: 2;

    width: 60%;
    min-height: 170px;

    padding: 13px 14px;
}


/* =========================================
   CARD HEADING
========================================= */

.star-business-content h3,
.star-industries-content h3 {

    margin: 0 0 5px;

    color: var(--star-navy);

    font-family: "Montserrat", sans-serif;

    font-size: 16px;
    line-height: 1.2;

    font-weight: 700;
}


/* =========================================
   CARD SUB HEADING
========================================= */

.star-business-content h4 {

    margin: 0 0 7px;

    color: var(--star-navy);

    font-family: "Poppins", sans-serif;

    font-size: 13px;
    line-height: 1.35;

    font-weight: 600;
}


/* =========================================
   CARD DESCRIPTION
========================================= */

.star-business-content p {

    max-width: 230px;

    margin: 0 0 11px;

    color: #42576a;

    font-family: "Poppins", sans-serif;

    font-size: 10px;
    line-height: 1.45;

    font-weight: 400;
}


/* =========================================
   CARD IMAGE
========================================= */

.star-business-image {

    position: absolute;

    top: 0;
    right: 0;

    width: 48%;
    height: 100%;

    z-index: 1;
}

.star-business-image::before {

    content: "";

    position: absolute;

    left: -35px;
    top: 0;

    width: 70px;
    height: 100%;

    z-index: 2;

    background: linear-gradient(
        90deg,
        #f2f6f9 0%,
        rgba(242, 246, 249, 0.75) 25%,
        rgba(242, 246, 249, 0) 100%
    );
}

.star-business-image img {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* =========================================
   ORANGE BUTTON
========================================= */

.star-business-btn {

    min-height: 27px;

    padding: 0 10px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    background: #ffffff;

    color: var(--star-orange);

    border: 1px solid var(--star-orange);

    border-radius: 3px;

    text-decoration: none;

    font-family: "Poppins", sans-serif;

    font-size: 10px;
    line-height: 1;

    font-weight: 600;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.star-business-btn span {

    font-size: 14px;
    line-height: 1;
}

.star-business-btn:hover {

    background: var(--star-orange);
    color: #ffffff;

    transform: translateY(-1px);
}


/* =========================================
   INDUSTRIES CARD
========================================= */

.star-industries-content {

    width: 100%;
    height: 100%;

    padding: 14px 16px;
}

.star-industries-content h3 {

    margin-bottom: 10px;
}


/* =========================================
   INDUSTRIES LIST
========================================= */

.star-industries-list {

    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    column-gap: 18px;
    row-gap: 8px;
}


/* =========================================
   INDUSTRY ITEM
========================================= */

.star-industry-item {

    min-width: 0;

    display: flex;
    align-items: center;

    gap: 8px;

    color: #30475b;

    font-family: "Poppins", sans-serif;

    font-size: 12px;
    line-height: 1.3;

    white-space: nowrap;
}

.star-industry-item i {

    width: 16px;

    flex: 0 0 16px;

    color: var(--star-orange);

    font-size: 14px;

    text-align: center;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .star-business-highlights {
        padding: 25px 0;
    }

    .star-business-highlights .star-container {
        padding: 0 25px;
    }

    .star-business-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 12px;
    }

    .star-industries-card {
        grid-column: span 2;
    }

    .star-business-content {
        width: 58%;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .star-business-highlights {
        padding: 22px 0;
    }

    .star-business-highlights .star-container {
        padding: 0 20px;
    }

    .star-business-grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .star-industries-card {
        grid-column: auto;
    }

    .star-business-card {
        min-height: 165px;
    }

    .star-business-content {
        width: 60%;
        min-height: 165px;

        padding: 13px;
    }

    .star-business-content h3,
    .star-industries-content h3 {
        font-size: 15px;
    }

    .star-business-content h4 {
        font-size: 12px;
    }

    .star-business-content p {
        font-size: 10px;
    }

    .star-business-image {
        width: 46%;
    }

    .star-industries-content {
        padding: 14px;
    }

    .star-industry-item {
        font-size: 10px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .star-business-highlights {
        padding: 18px 0;
    }

    .star-business-highlights .star-container {
        padding: 0 15px;
    }

    .star-business-card {
        min-height: 155px;
    }

    .star-business-content {
        width: 62%;
        min-height: 155px;

        padding: 11px;
    }

    .star-business-content h3,
    .star-industries-content h3 {
        font-size: 14px;
    }

    .star-business-content h4 {
        font-size: 11px;
    }

    .star-business-content p {
        font-size: 9px;
        line-height: 1.4;
    }

    .star-business-image {
        width: 44%;
    }

    .star-business-btn {
        min-height: 25px;
        padding: 0 8px;

        font-size: 9px;
    }

    .star-industries-content {
        padding: 12px;
    }

    .star-industries-list {
        column-gap: 10px;
        row-gap: 7px;
    }

    .star-industry-item {
        gap: 5px;
        font-size: 8.5px;
    }

    .star-industry-item i {
        width: 14px;
        flex-basis: 14px;
        font-size: 12px;
    }
}


/* =========================================
   REQUEST A QUOTE / CTA SECTION
========================================= */

.star-quote-section {
    width: 100%;
    padding: 22px 0;
    background: #ffffff;
    box-sizing: border-box;
}

.star-quote-section .star-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* =========================================
   MAIN CTA BOX
========================================= */

.star-quote-box {
    width: 100%;
    min-height: 125px;

    padding: 20px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        190px
        minmax(0, 350px);

    align-items: center;

    gap: 15px;

    background: linear-gradient(
        110deg,
        #0d4168 0%,
        #0b4b78 55%,
        #0b426b 100%
    );

    border-radius: 6px;

    box-sizing: border-box;

    overflow: hidden;
}


/* =========================================
   LEFT CONTENT
========================================= */

.star-quote-content {
    width: 100%;
    min-width: 0;
}

.star-quote-content h2 {
    margin: 0 0 6px;

    color: #ffffff;

    font-family: "Montserrat", sans-serif;

    font-size: 25px;
    line-height: 1.2;

    font-weight: 700;

    letter-spacing: -0.3px;
}

.star-quote-content p {
    margin: 0;

    color: rgba(255, 255, 255, 0.92);

    font-family: "Poppins", sans-serif;

    font-size: 13px;
    line-height: 1.5;

    font-weight: 400;
}


/* =========================================
   CTA BUTTON
========================================= */

.star-quote-action {
    width: 100%;
    min-width: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

.star-quote-btn {
    width: 100%;
    max-width: 190px;

    min-height: 42px;

    padding: 0 14px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    background: var(--star-orange);
    color: #ffffff;

    border: 1px solid var(--star-orange);
    border-radius: 4px;

    text-decoration: none;

    font-family: "Poppins", sans-serif;

    font-size: 12px;
    line-height: 1;

    font-weight: 600;

    transition: all 0.25s ease;
}

.star-quote-btn span {
    font-size: 17px;
    line-height: 1;
}

.star-quote-btn:hover {
    background: #ffffff;
    color: var(--star-orange);

    transform: translateY(-2px);
}


/* =========================================
   BENEFITS
========================================= */

.star-quote-benefits {
    width: 100%;
    min-width: 0;

    min-height: 72px;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    border-left: 1px solid rgba(255, 255, 255, 0.20);

    box-sizing: border-box;
}


/* =========================================
   BENEFIT ITEM
========================================= */

.star-quote-benefit {
    width: 100%;
    min-width: 0;

    padding: 5px 6px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    border-right: 1px solid rgba(255, 255, 255, 0.20);

    box-sizing: border-box;
}

.star-quote-benefit:last-child {
    border-right: none;
}


/* =========================================
   ICON
========================================= */

.star-quote-benefit i {
    margin-bottom: 7px;

    color: #ffffff;

    font-size: 20px;

    line-height: 1;
}


/* =========================================
   BENEFIT TEXT
========================================= */

.star-quote-benefit span {
    display: block;

    width: 100%;
    min-width: 0;

    color: rgba(255, 255, 255, 0.95);

    font-family: "Poppins", sans-serif;

    font-size: 9px;
    line-height: 1.3;

    font-weight: 500;

    white-space: nowrap;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .star-quote-section {
        padding: 20px 0;
    }

    .star-quote-box {
        padding: 18px;

        grid-template-columns:
            minmax(0, 1fr)
            175px
            minmax(0, 300px);

        gap: 12px;
    }

    .star-quote-content h2 {
        font-size: 21px;
    }

    .star-quote-content p {
        font-size: 11px;
    }

    .star-quote-btn {
        max-width: 165px;
    }

    .star-quote-benefit {
        padding: 5px 4px;
    }

    .star-quote-benefit i {
        font-size: 18px;
    }

    .star-quote-benefit span {
        font-size: 8px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .star-quote-section {
        padding: 18px 0;
    }

    .star-quote-box {
        width: 100%;
        min-height: auto;

        padding: 20px 15px;

        display: flex;
        flex-direction: column;

        align-items: stretch;

        gap: 16px;

        box-sizing: border-box;
    }


    /* LEFT CONTENT */

    .star-quote-content {
        width: 100%;
        text-align: center;
    }

    .star-quote-content h2 {
        font-size: 21px;
        line-height: 1.25;
    }

    .star-quote-content p {
        font-size: 11px;
        line-height: 1.45;
    }


    /* BUTTON */

    .star-quote-action {
        width: 100%;

        display: flex;
        justify-content: center;
    }

    .star-quote-btn {
        width: 180px;
        max-width: 180px;

        min-height: 40px;
    }


    /* BENEFITS */

    .star-quote-benefits {
        width: 100%;

        min-height: 65px;

        border-left: none;

        border-top: 1px solid rgba(255, 255, 255, 0.20);

        padding-top: 10px;
    }

    .star-quote-benefit {
        padding: 3px 3px;
    }

    .star-quote-benefit i {
        margin-bottom: 6px;
        font-size: 17px;
    }

    .star-quote-benefit span {
        font-size: 8px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .star-quote-section {
        padding: 15px 0;
    }

    .star-quote-box {
        padding: 18px 10px;
        gap: 14px;
    }

    .star-quote-content h2 {
        font-size: 18px;
    }

    .star-quote-content p {
        font-size: 10px;
    }

    .star-quote-btn {
        width: 165px;
        max-width: 165px;

        min-height: 38px;

        font-size: 11px;
    }

    .star-quote-benefits {
        min-height: 60px;
    }

    .star-quote-benefit {
        padding: 3px 2px;
    }

    .star-quote-benefit i {
        font-size: 15px;
    }

    .star-quote-benefit span {
        font-size: 7px;
    }
}
/* =========================================
   FOOTER
========================================= */

.star-footer {
    width: 100%;
    margin: 0;
    padding: 0;

    background: #092f4d;
    color: #ffffff;

    box-sizing: border-box;
}


/* =========================================
   FOOTER MAIN
========================================= */

.star-footer-main {
    width: 100%;

    padding: 55px 0 45px;

    background: #092f4d;

    box-sizing: border-box;
}


/* =========================================
   FOOTER CONTENT CONTAINER
========================================= */

.star-footer-container {
    width: 100%;
    max-width: 1440px;

    margin: 0 auto;

    padding: 0 42px;

    box-sizing: border-box;
}


/* =========================================
   FOOTER GRID
========================================= */

.star-footer-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        1.7fr
        0.8fr
        1.15fr
        1.15fr;

    gap: 45px;

    box-sizing: border-box;
}


/* =========================================
   FOOTER COLUMN
========================================= */

.star-footer-column {
    min-width: 0;
}


/* =========================================
   COLUMN HEADINGS
========================================= */

.star-footer-column h3 {
    position: relative;

    margin: 0 0 20px;
    padding-bottom: 10px;

    color: #ffffff;

    font-family: "Montserrat", sans-serif;

    font-size: 15px;
    line-height: 1.3;

    font-weight: 700;
}

.star-footer-column h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 32px;
    height: 2px;

    background: var(--star-orange);

    border-radius: 5px;
}


/* =========================================
   FOOTER LOGO
========================================= */

.star-footer-logo {
    display: inline-flex;

    align-items: center;

    width: 190px;

    margin: 0 0 18px;

    padding: 0;

    background: transparent;

    text-decoration: none;

    box-sizing: border-box;
}

.star-footer-logo img {
    display: block;

    width: 190px;
    height: auto;

    max-width: 100%;

    margin: 0;
    padding: 0;

    object-fit: contain;

    background: transparent;

    border: 0;
    outline: 0;
}


/* =========================================
   COMPANY DESCRIPTION
========================================= */

.star-footer-company p {
    max-width: 390px;

    margin: 0 0 20px;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 12px;
    line-height: 1.7;

    font-weight: 400;
}


/* =========================================
   GET A QUOTE BUTTON
========================================= */

.star-footer-quote {
    min-height: 38px;

    padding: 0 15px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    background: var(--star-orange);

    color: #ffffff;

    border: 1px solid var(--star-orange);

    border-radius: 4px;

    text-decoration: none;

    font-family: "Poppins", sans-serif;

    font-size: 11px;
    font-weight: 600;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.star-footer-quote span {
    font-size: 15px;
    line-height: 1;
}

.star-footer-quote:hover {
    background: #ffffff;

    color: var(--star-orange);

    transform: translateY(-1px);
}


/* =========================================
   FOOTER LINKS
========================================= */

.star-footer-links {
    margin: 0;
    padding: 0;

    list-style: none;
}


/* =========================================
   LINK ITEM
========================================= */

.star-footer-links li {
    margin: 0 0 10px;

    padding: 0;
}

.star-footer-links li:last-child {
    margin-bottom: 0;
}


/* =========================================
   FOOTER LINK
   ALWAYS WHITE
========================================= */

.star-footer-links a {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #ffffff !important;

    text-decoration: none;

    font-family: "Poppins", sans-serif;

    font-size: 12px;
    line-height: 1.4;

    font-weight: 400;

    opacity: 1 !important;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


/* =========================================
   WHITE ARROW
   ALWAYS VISIBLE
========================================= */

.star-footer-arrow {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 8px;

    flex: 0 0 8px;

    color: #ffffff !important;

    font-family: Arial, sans-serif;

    font-size: 16px;
    line-height: 1;

    font-weight: 400;
}


/* =========================================
   LINK HOVER
========================================= */

.star-footer-links a:hover {
    color: #ffffff !important;

    transform: translateX(3px);
}

.star-footer-links a:hover .star-footer-arrow {
    color: #ffffff !important;
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.star-footer-bottom {
    width: 100%;

    background: #072941;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    box-sizing: border-box;
}


/* =========================================
   COPYRIGHT + CONTACT ROW
========================================= */

.star-footer-bottom-container {
    width: 100%;
    max-width: 1440px;

    min-height: 58px;

    margin: 0 auto;

    padding: 0 42px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    box-sizing: border-box;
}


/* =========================================
   COPYRIGHT
========================================= */

.star-footer-copyright {
    margin: 0;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 12px;
    line-height: 1.4;

    white-space: nowrap;
}


/* =========================================
   FOOTER CONTACT
========================================= */

.star-footer-contact {
    display: flex;

    align-items: center;
    justify-content: flex-end;

    gap: 20px;

    min-width: 0;
}

.star-footer-contact a {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #ffffff;

    text-decoration: none;

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    white-space: nowrap;

    transition: color 0.25s ease;
}

.star-footer-contact a:hover {
    color: #ffffff;
}

.star-footer-contact i {
    color: var(--star-orange);

    font-size: 12px;
}


/* =========================================
   WEBSITE DESIGNER CREDIT
========================================= */

.star-footer-designer {
    width: 100%;

    padding: 9px 15px 11px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    color: #b9cbd6;

    text-align: center;

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    line-height: 1.4;

    font-weight: 400;

    box-sizing: border-box;
}

.star-footer-designer strong {
    color: #ffffff;

    font-weight: 500;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .star-footer-main {
        padding: 45px 0 38px;
    }

    .star-footer-container {
        padding: 0 25px;
    }

    .star-footer-grid {
        grid-template-columns:
            1.5fr
            0.8fr
            1fr
            1fr;

        gap: 25px;
    }

    .star-footer-logo {
        width: 180px;
    }

    .star-footer-logo img {
        width: 180px;
    }

    .star-footer-company p {
        font-size: 11px;
    }

    .star-footer-bottom-container {
        padding: 0 25px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .star-footer-main {
        padding: 40px 0 30px;
    }

    .star-footer-container {
        padding: 0 20px;
    }

    .star-footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 35px 25px;
    }


    /* Company full width */

    .star-footer-company {
        grid-column: 1 / -1;
    }


    /* =====================================
       LOGO
    ===================================== */

    .star-footer-logo {
        width: 185px;

        margin-bottom: 15px;
    }

    .star-footer-logo img {
        width: 185px;
    }


    /* =====================================
       DESCRIPTION
    ===================================== */

    .star-footer-company p {
        max-width: 100%;

        font-size: 11px;

        line-height: 1.6;
    }


    /* =====================================
       HEADINGS
    ===================================== */

    .star-footer-column h3 {
        font-size: 14px;

        margin-bottom: 16px;
    }


    /* =====================================
       LINKS
    ===================================== */

    .star-footer-links li {
        margin-bottom: 9px;
    }

    .star-footer-links a {
        font-size: 10px;
    }


    /* =====================================
       MORE PRODUCTS
       CENTER COLUMN
    ===================================== */

    .star-footer-grid .star-footer-column:nth-child(4) {
        grid-column: 1 / -1;

        justify-self: center;

        width: 50%;
    }


    /* =====================================
       BOTTOM
    ===================================== */

    .star-footer-bottom-container {
        min-height: auto;

        padding: 15px 20px;

        flex-direction: column;

        justify-content: center;

        text-align: center;

        gap: 10px;
    }

    .star-footer-copyright {
        white-space: normal;

        font-size: 9px;
    }

    .star-footer-contact {
        justify-content: center;

        flex-wrap: wrap;

        gap: 12px;
    }

    .star-footer-contact a {
        font-size: 9px;
    }


    /* =====================================
       DESIGNER CREDIT
    ===================================== */

    .star-footer-designer {
        padding: 8px 12px 10px;

        font-size: 8.5px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .star-footer-main {
        padding: 35px 0 25px;
    }

    .star-footer-container {
        padding: 0 15px;
    }

    .star-footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 30px 18px;
    }


    /* Company */

    .star-footer-company {
        grid-column: 1 / -1;
    }


    /* Logo */

    .star-footer-logo {
        width: 170px;
    }

    .star-footer-logo img {
        width: 170px;
    }


    /* Description */

    .star-footer-company p {
        font-size: 10px;

        line-height: 1.6;
    }


    /* Headings */

    .star-footer-column h3 {
        font-size: 13px;
    }


    /* Links */

    .star-footer-links a {
        font-size: 9.5px;
    }

    .star-footer-links li {
        margin-bottom: 8px;
    }


    /* =====================================
       MORE PRODUCTS
       CENTER COLUMN
    ===================================== */

    .star-footer-grid .star-footer-column:nth-child(4) {
        width: 55%;

        justify-self: center;
    }


    /* Bottom */

    .star-footer-bottom-container {
        padding: 14px 15px;
    }

    .star-footer-copyright {
        font-size: 8.5px;
    }

    .star-footer-contact {
        gap: 10px;
    }

    .star-footer-contact a {
        font-size: 9px;
    }


    /* Designer */

    .star-footer-designer {
        padding: 8px 10px 10px;

        font-size: 8px;
    }
}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 360px) {

    .star-footer-container {
        padding: 0 12px;
    }

    .star-footer-logo {
        width: 155px;
    }

    .star-footer-logo img {
        width: 155px;
    }

    .star-footer-links a {
        font-size: 9px;
    }

    .star-footer-contact a {
        font-size: 8px;
    }

    .star-footer-designer {
        font-size: 7.5px;
    }
}


/* =========================================
   WHATSAPP FLOATING BUTTON
========================================= */

.star-whatsapp-float {
    position: fixed;

    right: 20px;
    bottom: 20px;

    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;

    color: #ffffff;

    border-radius: 50%;

    text-decoration: none;

    font-size: 28px;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.25);

    z-index: 9999;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.star-whatsapp-float:hover {
    color: #ffffff;

    transform: scale(1.08);

    box-shadow: 0 7px 22px rgba(0, 0, 0, 0.30);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .star-whatsapp-float {
        right: 15px;
        bottom: 15px;

        width: 50px;
        height: 50px;

        font-size: 26px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .star-whatsapp-float {
        right: 12px;
        bottom: 12px;

        width: 48px;
        height: 48px;

        font-size: 25px;
    }
}


/* =========================================
   MOBILE HEADER FIX
========================================= */

@media (max-width: 768px) {

    .star-header {
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }

    .star-topbar {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .star-topbar .star-container {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 8px;
    }

    .star-topbar-content {
        width: 100%;
        max-width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        overflow: hidden;
        white-space: nowrap;
    }

    .star-topbar-sales {
        min-width: 0;
        flex: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 11px;
    }

    .star-topbar-phone {
        flex: 0 0 auto;
        font-size: 11px;
        white-space: nowrap;
    }

    .star-topbar-whatsapp {
        display: none !important;
    }


    /* MAIN HEADER */

    .star-main-header {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: visible;
    }

    .star-main-header .star-container {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 10px;
    }

    .star-header-inner {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }


    /* LOGO */

    .star-logo {
        flex: 1 1 auto;
        min-width: 0;
        max-width: 190px;
        overflow: hidden;
    }

    .star-logo img {
        display: block;
        width: 100%;
        max-width: 185px;
        height: auto;
        object-fit: contain;
    }


    /* DESKTOP NAV HIDDEN */

    .star-desktop-nav {
        display: none !important;
    }


    /* GET A QUOTE */

    .mobile-quote {
        flex: 0 0 auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: auto;
        min-width: 105px;
        height: 42px;
        padding: 0 12px;
        box-sizing: border-box;
        font-size: 12px;
        white-space: nowrap;
    }


    /* HAMBURGER */

    .star-mobile-toggle {
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
        margin: 0;
        padding: 0;
        display: flex !important;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }


    /* MOBILE MENU */

    .star-mobile-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        z-index: 9999;
    }

}

/* =========================================
   MOBILE WIDTH / LEFT SPACING FIX
========================================= */

html,
body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}


/* ALL MAIN SECTIONS */

@media (max-width: 768px) {

    .star-header,
    .star-topbar,
    .star-main-header,
    .star-hero,
    .star-about,
    .star-products,
    .star-services,
    .star-contact,
    .star-footer {
        width: 100%;
        max-width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }


    /* CONTAINER */

    .star-container {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box;
    }


    /* HEADER CONTAINER */

    .star-header .star-container,
    .star-main-header .star-container,
    .star-topbar .star-container {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }


    /* HERO */

    .star-hero,
    .star-slider,
    .star-slide {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .star-hero-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding-left: 55px !important;
        padding-right: 45px !important;
        box-sizing: border-box;
    }


    /* ABOUT */

    .star-about .star-container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .star-about-grid {
        width: 100%;
        margin: 0 !important;
    }

    .star-about-content {
        width: 100%;
        max-width: 100%;
        margin-left: 0 !important;
    }


    /* PRODUCTS */

    .star-products .star-container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .star-products-grid {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }


    /* FOOTER */

    .star-footer-container,
    .star-footer-bottom-container {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }

}

/* =========================================
   PRODUCT INQUIRE NOW BUTTON
========================================= */

.star-product-inquire {
    display: flex;
    width: fit-content;
    margin: 2px auto 12px;

    align-items: center;
    justify-content: center;
    gap: 7px;

    padding: 8px 15px;

    background: #CA500B;
    color: #ffffff;

    border: 1px solid #CA500B;
    border-radius: 4px;

    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    line-height: 1;
    font-weight: 600;

    cursor: pointer;
    transition: all 0.25s ease;
}

.star-product-inquire span {
    font-size: 14px;
    line-height: 1;
}

.star-product-inquire:hover {
    background: #0b3b5c;
    border-color: #0b3b5c;
    color: #ffffff;
}

.star-product-inquire:hover span {
    transform: translateX(3px);
}


/* Keep button centered on mobile */

@media (max-width: 768px) {

    .star-product-inquire {
        margin: 2px auto 10px;
        padding: 8px 13px;
        font-size: 10px;
    }

}


/* Small Mobile */

@media (max-width: 480px) {

    .star-product-inquire {
        padding: 7px 11px;
        font-size: 10px;
        gap: 5px;
    }

    .star-product-inquire span {
        font-size: 13px;
    }

}

