/* Custom CSS for MUSEN Kloning Project - Revised V5 */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Font Awesome 6 CDN */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

body {
    font-family: 'Poppins', sans-serif !important;
    color: #333333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Header & Navigation */
.main-header-bar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    position: relative;
    z-index: 1000;
}

.main-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.site-logo-img img {
    max-height: 75px;
    width: auto;
    display: block;
}

/* Hide unwanted mobile/toggle buttons on desktop */
.ast-mobile-menu-buttons,
.menu-toggle {
    display: none !important;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.main-navigation ul li {
    position: relative;
    padding: 10px 14px;
}

.main-navigation ul li a {
    color: #333;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.main-navigation ul li a:hover {
    color: #16529b;
}

/* Submenu dropdown */
.main-navigation ul li .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 250px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    border-radius: 4px;
    border-top: 3px solid #16529b;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0;
    z-index: 9999;
}

.main-navigation ul li .sub-menu li {
    padding: 9px 20px;
    border-bottom: 1px solid #f2f2f2;
}

.main-navigation ul li .sub-menu li:last-child {
    border-bottom: none;
}

.main-navigation ul li .sub-menu li a {
    font-size: 14px;
    font-weight: 500;
    color: #444;
}

.main-navigation ul li .sub-menu li a:hover {
    color: #16529b;
    padding-left: 5px;
}

.main-navigation ul li:hover > .sub-menu {
    display: flex;
}

.main-navigation ul li .sub-menu li .sub-menu {
    top: 0;
    left: 100%;
}

.main-navigation ul li .sub-menu li:hover > .sub-menu {
    display: flex;
}

/* Search bar styling */
.slide-search {
    position: relative;
    display: flex;
    align-items: center;
}

.slide-search input.search-field {
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 13px;
    width: 140px;
    transition: width 0.3s;
}

.slide-search input.search-field:focus {
    width: 200px;
    border-color: #16529b;
}

/* Sticky Contacts Sidebar (Right) with Font Awesome */
.stickyContacts {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: #333333;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    z-index: 9999;
    box-shadow: -2px 0 12px rgba(0,0,0,0.2);
}

.stickyContacts ul {
    list-style: none;
    margin: 0;
    padding: 6px 0;
}

.stickyContacts ul li {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.stickyContacts ul li:last-child {
    border-bottom: none;
}

.stickyContacts ul li a {
    color: #ffffff;
    font-size: 19px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: background 0.2s;
}

.stickyContacts ul li a:hover {
    background: #16529b;
}

.stickyContacts ul li a span {
    position: absolute;
    top: 50%;
    right: 48px;
    transform: translateY(-50%);
    background: #16529b;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    pointer-events: none;
}

.stickyContacts ul li:hover a span {
    opacity: 1;
    visibility: visible;
    right: 54px;
}

/* Modal Overlay */
.quoteModalOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.quoteModalBox {
    background: #fff;
    max-width: 520px;
    width: 100%;
    padding: 35px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.quoteModalClose {
    position: absolute;
    top: 15px;
    right: 18px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
}

.quoteModalClose:hover {
    color: #000;
}

.quickQuoteTitle {
    font-size: 24px;
    font-weight: 700;
    color: #16529b;
}

/* Hero Banner */
.hp-hero-banner {
    position: relative;
    background: url('../images/banner.jpg') no-repeat center center / cover;
    min-height: 560px;
    display: flex;
    align-items: center;
}

.hp-hero-overlay {
    background: rgba(0, 0, 0, 0.42);
    width: 100%;
    height: 100%;
    min-height: 560px;
    display: flex;
    align-items: center;
}

.hp-hero-content {
    color: #ffffff;
    max-width: 800px;
    padding: 40px 15px;
}

.hp-hero-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #f7b731;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hp-hero-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 22px;
    color: #ffffff !important;
}

.hp-hero-desc {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #f0f0f0;
}

/* Section 2: Product Cards - Square Clean Style */
.product-card-clean {
    margin-bottom: 30px;
    text-align: left;
}

.product-card-clean .product-card-img-wrap {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    margin-bottom: 12px;
    background: #f0f0f0;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.product-card-clean img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.product-card-clean:hover img {
    transform: scale(1.05);
}

.product-card-clean .product-card-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.35;
}

.product-card-clean .product-card-title a {
    color: #16529b;
    text-decoration: none;
    transition: color 0.2s;
}

.product-card-clean .product-card-title a:hover {
    color: #111111;
}

/* Section 3: Large Metrics */
.hp17s3Box-large {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.hp17s3Box-large .hp17s3Img-wrap {
    flex-shrink: 0;
}

.hp17s3Box-large .hp17s3Img-wrap img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.hp17s3Box-large .hp17s3Title-large {
    font-size: 21px;
    font-weight: 700;
    color: #16529b;
    margin-bottom: 6px;
}

.hp17s3Box-large .hp17s3Text-large {
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
}

/* Section 5: Square Process Cards */
.process-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #edf2f7;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.09);
}

.process-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f1f5f9;
}

.process-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.process-card-body {
    padding: 16px 20px 22px;
    text-align: left;
    flex-grow: 1;
}

.process-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #16529b;
    margin: 0 0 6px 0;
    line-height: 1.35;
}

.process-card-desc {
    font-size: 14px;
    color: #555555;
    line-height: 1.55;
    margin: 0;
}

/* Section 6: Styled Quote Form */
.hp17Form-styled {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #eaeaea;
}

.custom-file-upload-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 6px;
}

.custom-file-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    padding: 8px 18px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    transition: all 0.2s;
}

.custom-file-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.file-chosen-text {
    font-size: 13px;
    color: #64748b;
}

.btn-submit-styled {
    background: #16529b !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 4px !important;
    padding: 14px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    width: 100% !important;
    cursor: pointer !important;
    box-shadow: 0 4px 10px rgba(22, 82, 155, 0.25) !important;
    transition: background 0.3s ease, transform 0.1s !important;
}

.btn-submit-styled:hover {
    background: #0f3c73 !important;
}

/* Section 6 Testimonials Slider */
.testimonial-single-slider-wrap {
    padding: 10px 15px;
}

.testimonial-single-slider {
    cursor: grab;
    margin-bottom: 20px;
}

.testimonial-single-slider:active {
    cursor: grabbing;
}

.testimonial-card-single {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    border-left: 5px solid #16529b;
    margin: 5px 10px;
}

.testimonial-quote-text {
    font-size: 16px;
    font-style: italic;
    color: #444444;
    line-height: 1.8;
    margin-bottom: 22px;
}

.testimonial-author-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author-wrap img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #16529b;
}

.testimonial-author-name {
    font-size: 17px;
    font-weight: 700;
    color: #16529b;
}

.testimonial-author-company {
    font-size: 14px;
    color: #666;
}

/* Slick dots styling */
.slick-dots {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0 !important;
    display: flex !important;
    justify-content: center;
    gap: 8px;
}

.slick-dots li {
    margin: 0 !important;
    display: inline-block;
}

.slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    text-indent: -9999px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
}

.slick-dots li.slick-active button {
    background: #16529b;
    transform: scale(1.25);
}

/* Section 7: Centered Brands Slider */
.brands-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

.hp17s7Brands {
    display: block;
    margin: 0 -15px;
}

.brand-slide-item {
    text-align: center;
    padding: 10px 20px;
    outline: none;
}

.brand-slide-item img {
    max-height: 65px;
    width: auto;
    filter: grayscale(10%);
    transition: filter 0.3s, transform 0.3s;
    margin: 0 auto;
    display: inline-block !important;
}

.brand-slide-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.08);
}

/* Footer Title: Line Before Title (Vertically Centered with First Letter) */
.footer-adv {
    background: #111111;
    color: #b0b0b0;
    padding: 65px 0 35px;
}

.footer-adv .widget-title {
    color: #ffffff !important;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    padding-bottom: 0;
}

.footer-adv .widget-title::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 3px;
    background: #16529b;
    flex-shrink: 0;
}

.footer-adv .widget-title::after {
    display: none !important;
}

.footer-adv a {
    color: #b0b0b0 !important;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-adv a:hover {
    color: #ffffff !important;
}

ul.footerSocial,
.footerSocial {
    list-style: none !important;
    margin: 20px 0 0 0 !important;
    padding: 0 !important;
    display: flex !important;
    gap: 12px !important;
    align-items: center !important;
}

ul.footerSocial li,
.footerSocial li {
    display: inline-block !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    background: transparent !important;
}

ul.footerSocial li a,
.footerSocial li a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    background: #262626 !important;
    color: #ffffff !important;
    font-size: 15px !important;
    text-align: center !important;
    line-height: 38px !important;
    text-decoration: none !important;
    padding: 0 !important;
    margin: 0 !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
}

ul.footerSocial li a i,
.footerSocial li a i {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    text-align: center !important;
    margin: 0 auto !important;
    padding: 0 !important;
    line-height: 1 !important;
}

ul.footerSocial li a:hover,
.footerSocial li a:hover {
    background: #16529b !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
}

.ast-small-footer {
    background: #0a0a0a;
    color: #777777;
    padding: 20px 0;
    font-size: 14px;
    border-top: 1px solid #1a1a1a;
}

/* Floating Scroll To Top Button (Bottom Right) with Circular Blue Border */
#ast-scroll-top,
.ast-scroll-top-icon,
.ast-scroll-to-top-right {
    position: fixed !important;
    bottom: 25px !important;
    right: 25px !important;
    width: 44px !important;
    height: 44px !important;
    background: #ffffff !important;
    border: 2px solid #16529b !important;
    border-radius: 50% !important;
    color: #16529b !important;
    display: none;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 99999 !important;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18) !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
}

#ast-scroll-top:hover,
.ast-scroll-top-icon:hover,
.ast-scroll-to-top-right:hover {
    background: #16529b !important;
    color: #ffffff !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 6px 18px rgba(22, 82, 155, 0.35) !important;
}

#ast-scroll-top i,
.ast-scroll-top-icon i {
    font-size: 16px !important;
    color: inherit !important;
    margin: 0 !important;
    display: inline-block !important;
}

/* ==========================================================================
   Universal Perfectly Centered Hero Banner System
   ========================================================================== */
.hero-banner-unified,
.bannerWraper.pc3Banner,
.bannerWraper.categoryBanner {
    position: relative !important;
    width: 100% !important;
    min-height: 480px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

.hero-banner-overlay,
.bannerWraper.pc3Banner > div:first-child,
.bannerWraper.categoryBanner > div:first-child {
    width: 100% !important;
    min-height: 480px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(0, 0, 0, 0.45) !important;
    position: relative !important;
    z-index: 1 !important;
}

.hero-banner-content,
.bannerWraper .bannerContent,
.pc3Banner .bannerContent {
    width: 100% !important;
    max-width: 900px !important;
    margin: 0 auto !important;
    padding: 40px 20px !important;
    text-align: center !important;
    color: #ffffff !important;
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    float: none !important;
}

.bannerContainer {
    width: 100% !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.hero-banner-title,
.bannerHeading,
.pc3BannerHeading {
    font-size: 42px !important;
    line-height: 1.3 !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin: 0 auto 16px auto !important;
    text-align: center !important;
    width: 100% !important;
    float: none !important;
}

.hero-banner-desc,
.bannerText,
.pc3BannerDetails,
.pc3BannerDetails p {
    font-size: 17px !important;
    line-height: 1.6 !important;
    color: #f1f5f9 !important;
    max-width: 780px !important;
    margin: 0 auto 24px auto !important;
    text-align: center !important;
    width: 100% !important;
    float: none !important;
}

.hero-banner-btn-wrap,
.bannerBtn,
.pc3BannerDetails div {
    text-align: center !important;
    margin: 0 auto !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
}

@media (max-width: 768px) {
    .hero-banner-title,
    .bannerHeading,
    .pc3BannerHeading {
        font-size: 28px !important;
    }
    .hero-banner-desc,
    .bannerText,
    .pc3BannerDetails,
    .pc3BannerDetails p {
        font-size: 15px !important;
    }
}

