/* ================================
   GLOBAL RESET & BASE
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    display: block;
}

h1,
h2,
h3 {
    margin-top: 0;
}


html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    background-color: #ffffff;
    color: #1f1f1f;
    line-height: 1.6;
}

/* ================================
   COLOR SYSTEM (INDUSTRIAL)
================================ */
:root {
    --blue: #0b2a4a;
    --blue-light: #163f6b;
    --red: #c62828;
    --red-dark: #9b1d1d;
    --gray: #555;
    --light-bg: #f7f8fa;
}

/* ================================
   LAYOUT
================================ */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

section {
    padding: 90px 0;
}

/* ================================
   NAVBAR
================================ */
/* ================================
   NAVBAR (FIXED & CLEAN)
================================ */
/* ================================
   DARK TRANSLUCENT NAVBAR
================================ */
.navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    display: block;

    width: 100%;
    height: 64px;

    background: rgba(11, 42, 74, 0.98);
    backdrop-filter: blur(10px);

    z-index: 999999;
    /* nuclear option */
}

body {
    margin: 0;
    padding-top: 64px;
    /* must match navbar height */
}


.navbar,
.navbar * {
    text-align: left;
}



.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    height: 70px;
    /* 👈 fixed height */
    display: flex;
    align-items: center;
    /* 👈 vertical centering */
    justify-content: space-between;
}


.nav-logo {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    line-height: 3;
}


.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    /* 👈 key fix */
    gap: 28px;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    font-weight: 600;
    color: #ffffff;
    font-size: 15px;
    line-height: 1;
    padding: 5px 0;
    transition: color 0.25s ease;
}



.nav-links a:hover,
.nav-links a.active {
    color: yellow;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background-color: whitesmoke;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}




.nav-call {
    margin-left: 20px;
    font-weight: 600;
    color: var(--red);
    text-decoration: none;
}


/* ================================
   MOBILE NAVBAR
================================ */

.nav-toggle {
    display: none;
    font-size: 26px;
    color: #ffffff;
    cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {

    .nav-container {
        height: 60px;
        padding: 0 16px;
    }

    .nav-logo {
        font-size: 18px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;

        background: rgba(11, 42, 74, 0.95);
        backdrop-filter: blur(10px);

        flex-direction: column;
        align-items: center;

        max-height: 0;
        overflow: hidden;

        transition: max-height 0.3s ease;
    }

    .nav-links li {
        padding: 14px 0;
    }

    .nav-links a {
        color: #ffffff;
        font-size: 16px;
    }

    .nav-links.open {
        max-height: 400px;
    }
}

/* ================================
   HERO SECTION
================================ */

.hero::before,
.hero::after,
.hero-ticker::before,
.hero-ticker::after,
.ticker-track::before,
.ticker-track::after {
    display: none !important;
}

.hero,
.hero-ticker,
.ticker-track {
    width: 100%;
    max-width: 100vw;
    margin-bottom: 0;
}

/* ================================
   HERO WITH TICKER BACKGROUND
================================ */
/* ================================
   HERO – MULTI IMAGE TICKER
================================ */

.hero {
    position: relative;
    /*min-height: 100vh;
    /* 👈 mobile-safe viewport */
    /*height: 100vh;*/
    overflow: hidden;
    background: #000;
}


.hero-ticker {
    position: relative;
    width: 100%;
    overflow: hidden;
}



.ticker-track {
    display: flex;
    /*height: 100%;*/
    width: max-content;
    align-items: center;

    min-width: 200vw;
    /* 👈 key fix */
    will-change: transform;
    transform: translateZ(0);
}




.ticker-track img {
    /*height: 100vh;*/
    height: auto;
    width: 100%;
    min-width: 100vw;
    /*object-fit: cover;
    object-position: center 35%;*/
    flex-shrink: 0;
    display: block;
}




/* Dark overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}


/* Content */
.hero-content {
    position: absolute;
    inset: 0;
    z-index: 3;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    pointer-events: none;
}

.hero-content h1 {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.3rem;
    color: #e6e6e6;
    margin-bottom: 30px;
}

.hero-content button,
.hero-content a {
    pointer-events: auto;
}

/* ================================
   BUTTONS
================================ */
.btn {
    display: inline-block;
    background: var(--red);
    color: #ffffff;
    padding: 14px 34px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: var(--red-dark);
}

/* ================================
   SECTION TITLES
================================ */
.section-title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================================
   PRODUCTS (HOME)
================================ */
.products {
    background: var(--light-bg);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.product-card {
    background: #ffffff;
    padding: 35px 25px;
    border-top: 4px solid var(--red);
    transition: 0.3s;
}

.product-card h3 {
    font-size: 1.4rem;
    color: var(--blue);
    margin-bottom: 10px;
}

.product-card p {
    color: var(--gray);
    font-size: 15px;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* ================================
   INDUSTRIES
================================ */
.industries {
    background: #ffffff;
}

.industry-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
}

.industry-list li {
    background: var(--light-bg);
    padding: 16px;
    text-align: center;
    font-weight: 600;
    border-left: 4px solid var(--red);
}

/* ================================
   PAGE HEADER
================================ */
.page-header {
    background: var(--blue);
    color: #ffffff;
    text-align: center;
    padding: 120px 20px 70px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ================================
   PRODUCTS DETAIL PAGE
================================ */
.products-detail {
    background: #ffffff;
}

.product-detail-card {
    max-width: 900px;
    margin-bottom: 70px;
}

.product-detail-card h2 {
    font-size: 2rem;
    color: var(--blue);
    margin-bottom: 10px;
}

.product-detail-card p {
    color: var(--gray);
    margin-bottom: 15px;
}

.product-detail-card ul {
    padding-left: 20px;
}

.product-detail-card li {
    margin-bottom: 8px;
}

/* ================================
   ABOUT PAGE
================================ */
.about-page {
    background: #ffffff;
}

.about-page h2 {
    font-size: 2rem;
    color: var(--blue);
    margin-bottom: 12px;
}

.about-page p {
    max-width: 900px;
    margin-bottom: 25px;
    color: var(--gray);
}

.about-page ul {
    padding-left: 20px;
}

.about-page li {
    margin-bottom: 8px;
}

/* ================================
   CONTACT PAGE
================================ */
.contact-page {
    background: #ffffff;
}

.contact-page .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.contact-form textarea {
    height: 120px;
    resize: none;
}

#form-status {
    margin-top: 10px;
    font-size: 14px;
}

/* ================================
   CALL CTA
================================ */
.call-cta {
    text-align: center;
    margin: 40px 0;
}

.call-btn {
    display: inline-block;
    background: var(--red);
    color: white;
    padding: 15px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
}

.call-btn:hover {
    background: var(--red-dark);
}

/* ================================
   FLOATING BUTTONS
================================ */
.whatsapp-float,
.call-float {
    position: fixed;
    right: 12px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    max-width: 100vw;
}

.whatsapp-float {
    bottom: 25px;
    background: var(--blue-light);
}

.call-float {
    bottom: 90px;
    background: var(--blue-light);
}

/* ================================
   FOOTER
================================ */
.footer {
    background: var(--blue);
    color: #ffffff;
    text-align: center;
    padding: 25px;
    font-size: 14px;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .hero {
        min-height: 520px;
    }

    .hero-content h1 {
        font-size: 2.6rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }
}

/* ================================
   RESPONSIVE GOOGLE MAP
================================ */

.map-wrapper {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 8px;
}

/* iframe fills container */
.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Mobile fix */
@media (max-width: 768px) {
    .map-wrapper {
        height: 260px;
        /* better for mobile */
    }
}

.contact-page .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .contact-page .container {
        grid-template-columns: 1fr;
        /* stack on mobile */
    }
}

.calculator {
    max-width: 900px;
    margin: 80px auto;
    padding: 40px;
    background: #0b2a4a;
    color: #fff;
    border-radius: 10px;
}

.calculator h2 {
    margin-bottom: 10px;
}

.calculator p {
    opacity: 0.85;
    margin-bottom: 30px;
}

.calc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.calc-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
}

.calc-group input,
.calc-group select {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: none;
    outline: none;
}

.calculator button {
    margin-top: 30px;
    padding: 14px 30px;
    background: #d62828;
    border: none;
    color: #fff;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}

.calculator button:hover {
    background: #b51f1f;
}

.result {
    margin-top: 25px;
    font-size: 20px;
    font-weight: 600;
}

input:disabled,
select:disabled {
    background: #e0e0e0;
    color: #666;
    cursor: not-allowed;
}

.unit {
    font-size: 12px;
    opacity: 0.7;
}

.hero,
.calculator,
section,
main,
.wrapper,
.container {
    position: relative;
    z-index: auto !important;
}


/* ABOUT */
.hero-about::before {
    background-image: url("../images/page-hero.jpg");
}

/* PRODUCTS */
.hero-products::before {
    background-image: url("../images/products-hero.jpg");
}

/* CALCULATOR */
.hero-calculator::before {
    background-image: url("../images/calculator-hero.jpg");
}

/* CONTACT */
.hero-contact::before {
    background-image: url("../images/contact-hero.jpg");
}


.page-hero {
    position: relative;
    padding: 37vh 20px;
    width: 100%;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

/* blurred image */
.page-hero::before {
    content: "";
    position: absolute;
    inset: -10%;

    background-size: cover;
    background-position: center;

    filter: blur(3px);
    z-index: 0;
}


/* dark overlay */
.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(1, 3, 5, 0.5);
    z-index: 1;
}

/* text */
.page-hero h1,
.page-hero p {
    position: relative;
    z-index: 2;
}


@media (max-width: 768px) {
    .page-hero {
        padding: 30vh 16px;
    }

    .page-hero::before {
        filter: blur(6px);
    }
}

.page-header {
    background: none !important;
    padding: 0;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

.hero-ticker {
    width: 100%;
    position: relative;
}

.ticker-viewport {
    width: 100%;
    /*height: 100%;*/
    overflow: hidden;
    /* THIS is the clip */
    position: relative;
}

.ticker-track {
    display: flex;
    will-change: transform;
    align-items: center;
}

.hero-ticker,
.page-hero {
    /*height: 70vh;*/

    overflow: hidden;
}

@media (max-width: 768px) {

    .hero-ticker,
    .page-hero {
        position: relative;
        min-height: 100%;
        /*max-height: 93vh;*/
    }
}

.hero-ticker img {
    width: 100%;
    /*height: 70vh;*/
    position: relative;
    min-height: 110%;
    max-height: 91vh;
    object-fit: cover;
    object-position: center 35%;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .ticker-track img {
        min-height: 91vh;
    }
}

/* NAVBAR LOGO ONLY */
.navbar .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.navbar .logo img {
    height: 85px;
    /* LOCK SIZE */
    width: auto;
    max-width: none;
    object-fit: contain;
    filter: drop-shadow(0 0 4px rgb(0, 0, 0));

}

.navbar .logo span {
    color: #fff;
    font-weight: 600;
    font-size: 25px;
}

@media (max-width: 768px) {
    .navbar .logo img {
        height: 74px;
    }
}

/* ===== HARD NAVBAR RESET ===== */
.navbar {
    display: block !important;
    text-align: left !important;
    height: 64px;
}

.navbar * {
    text-align: left !important;
}

.navbar .nav-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

/* Force logo left */
.navbar .logo {
    margin: 0 !important;
    justify-content: flex-start !important;
}

/* Force menu right */
.navbar .nav-links {
    margin-left: auto !important;
}


/* ===== HERO WHITE SPACE FIX ===== */
.hero-ticker,
/*.page-hero,*/
.ticker-viewport {
    position: relative;
    height: auto !important;
    min-height: 100% !important;
    max-height: 91vh !important;

    margin: 0 !important;
    padding: 0 !important;
}

/* Ensure hero images define height */
.ticker-track img {
    max-height: none !important;
}

html,
body {
    height: auto !important;
    min-height: 0 !important;
    overflow-x: hidden;
}

/* FINAL HERO WHITE GAP FIX */
.hero-ticker {
    display: block;
    overflow: hidden;
}

.hero-ticker>* {
    margin-bottom: 0 !important;
}

.hero-ticker+section,
.hero-ticker+div {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

/* Filled premium circle */
.logo-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white /*linear-gradient(314deg, #705353, #000000)*/;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-2px);

}

/* Logo inside */
.logo-circle img {
    height: 24px;
    width: auto;
    object-fit: contain;

    transform: translate(-2px, 2px);
}

/* Text */
.logo-text {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
}

.logo-circle {
    position: relative;
}

.logo-circle::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(229, 57, 53, 0.35);
    /* soft red accent */
    pointer-events: none;
}


@media (max-width: 768px) {
    .logo-ring {
        width: 45px;
        height: 53px;
        border: 0px;
    }

    .logo-ring img {
        height: 22px;
    }

    .logo-text {
        font-size: 1rem;
    }
}

/* ===== FOOTER ===== */
.site-footer {
    background-color: #0d2a45;
    padding: 40px 20px;
    color: #ffffff;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

/* Brand row */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Logo circle */
.footer-logo-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff, #ffffffa1);

    display: flex;
    align-items: center;
    justify-content: center;

}

/* Logo image */
.footer-logo-circle img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transform: translate(-2px, 1px); /* optical alignment */
}

/* Text */
.footer-logo-text {
    font-size: 1rem;
    font-weight: 600;
}

/* Copyright */
.footer-copy {
    font-size: 0.9rem;
    opacity: 0.75;
    margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .footer-logo-circle {
        width: 32px;
        height: 32px;
    }

    .footer-logo-circle img {
        height: 50px;
    }

    .footer-logo-text {
        font-size: 0.95rem;
    }
}

.whatsapp-float {
    position: fixed;
    /*bottom: 90px;*/            /* above call button */
    
    /*width: 52px;
    height: 52px;*/
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 26px;
    text-decoration: none;

    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
    z-index: 9999;

    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.45);
}



.logo-circle {
    position: relative;
}

.logo-circle {
    background: #ffffff;
    border-radius: 50%;

    box-shadow:
        inset 0 4px 6px #0b2a4ac6,   /* top engraving */
        inset 0 -4px 6px #0b2a4ac6, /* bottom engraving */
        0 4px 8px rgba(0, 0, 0, 0.25);           /* outer depth */
}


/*.logo-circle::after {
    content: "";
    position: absolute;

    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;

    border-radius: 100%;
    box-shadow: inset 0 4px 4px #102e4e;
    pointer-events: none;
}*/
