:root {
    --primary: #002549;
    --secondary: #064c94;
    --accent: #F8B400;
    --dark: #1B1B1B;
    --light: #F8F9FA;
    --gray: #6c757d;
    --border: #dee2e6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
}

/* ========== TOPBAR ========== */
.topbar {
    background: var(--primary);
    color: #fff;
    font-size: 0.82rem;
    padding: 6px 0;
    border-bottom: 2px solid var(--accent);
}

.topbar a {
    color: #cdd9ea;
    text-decoration: none;
}

.topbar a:hover {
    color: var(--accent);
}

/* ========== NAVBAR ========== */
.navbar {
    background: #fff !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.10);
    padding: 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 6px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-brand img {
    max-height: 110px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--primary) !important;
    letter-spacing: 0.3px;
    padding: 6px 14px !important;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary) !important;
}

.nav-link.active {
   font-weight: 600;
}

.btn-quote-nav {
    background: var(--accent);
    color: var(--primary) !important;
    font-weight: 700 !important;
    border-radius: 4px;
    padding: 10px 18px !important;
    font-size: 0.85rem !important;
    transition: background 0.2s;
}

.btn-quote-nav:hover {
    background: #e0a300;
    color: #000 !important;
}

/* ========== HERO ========== */
.hero {
    min-height: 80vh;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.92) 0%, rgba(27, 32, 62, 0.80) 100%),
    url('../images/hero-bg.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(transparent, #fff);
}

.hero-badge {
    display: inline-block;
    background: rgba(248, 180, 0, 0.18);
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 22px;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 580px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.btn-hero-primary {
    background: var(--accent);
    color: var(--primary);
    font-weight: 700;
    padding: 14px 34px;
    border-radius: 4px;
    border: none;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.btn-hero-primary:hover {
    background: #e0a300;
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-hero-outline {
    background: transparent;
    color: #fff;
    font-weight: 600;
    padding: 13px 32px;
    border-radius: 4px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.btn-hero-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-item .num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.hero-stat-item .lbl {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== SECTION STYLES ========== */
section {
    padding: 90px 0;
}

.section-tag {
    display: inline-block;
    background: rgba(13, 110, 253, 0.08);
    color: var(--secondary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 14px;
    line-height: 1.2;
}

.section-title span {
    color: var(--secondary);
}

.section-sub {
    color: var(--gray);
    font-size: 1rem;
    max-width: 600px;
    line-height: 1.7;
}

.section-divider {
    width: 55px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    margin: 16px 0 22px;
}

/* ========== PRODUCT CATEGORIES ========== */
.bg-light-gray {
    background: #f0f4f8;
}

.cat-card {
    background: #fff;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 15px 5px 28px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.cat-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    box-shadow: 0 12px 32px rgba(13, 110, 253, 0.14);
}

.cat-card .icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #e8f0fe, #d0e3ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--secondary);
    transition: all 0.3s;
}

.cat-card:hover .icon {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: #fff;
}

.cat-card h5 {
    font-size: 0.975rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.cat-card p {
    font-size: 0.75rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 18px;
}

.cat-card .btn-learn {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--secondary);
    border: 1.5px solid var(--secondary);
    padding: 6px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s;
}

.cat-card:hover .btn-learn {
    background: var(--secondary);
    color: #fff;
}

/* ========== WHY CHOOSE US ========== */
.why-card {
    background: #fff;
    border-radius: 10px;
    padding: 15px 10px;
    text-align: center;
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.07);
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    height: 100%;
}

.why-card:hover {
    border-bottom-color: var(--accent);
    transform: translateY(-5px);
}

.why-card .wicon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.5rem;
    color: #fff;
}

.why-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.65;
}

/* ========== FEATURED PRODUCTS ========== */
.prod-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.prod-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0, 51, 102, 0.14);
}

.prod-card .prod-img {
    height: 200px;
    background: linear-gradient(135deg, #fff 0%, #fff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--secondary);
    position: relative;
    overflow: hidden;
}

.prod-card .prod-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.prod-card .prod-img .badge-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 3px;
}

.prod-card .prod-body {
    padding: 22px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.prod-card .prod-body h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.prod-card .prod-body p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
    flex: 1;
}

.btn-view {
    margin-top: 16px;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: 0.83rem;
    padding: 9px 22px;
    border-radius: 4px;
    border: none;
    text-decoration: none;
    transition: background 0.2s;
    display: inline-block;
    text-align: center;
}

.btn-view:hover {
    background: var(--secondary);
    color: #fff;
}

/* ========== INDUSTRIES ========== */
.industry-card {
    background: #fff;
    border-radius: 10px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    cursor: pointer;
    height: 100%;
}

.industry-card:hover {
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.2);
}

.industry-card .ind-icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.industry-card h6 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    transition: color 0.3s;
}

.industry-card p {
    font-size: 0.78rem;
    color: var(--gray);
    margin-top: 6px;
    transition: color 0.3s;
}

.industry-card:hover h6, .industry-card:hover p {
    color: #fff;
}

/* ========== STATS ========== */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, #0a4a8f 100%);
    padding: 70px 0;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.stat-item .stat-lbl {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    height: 60px;
    margin: auto;
}

/* ========== ABOUT ========== */
.about-img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.about-img-wrapper img {
    border-radius: 12px;
    width: 100%;
}

.about-badge {
    position: absolute;
    bottom: 24px;
    right: -20px;
    background: var(--accent);
    color: var(--primary);
    padding: 16px 22px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
}

.about-badge .num {
    font-size: 2.2rem;
    font-weight: 800;
    display: block;
}

.about-badge .txt {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.about-feature .af-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #e8f0fe, #d0e3ff);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-feature h6 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 3px;
}

.about-feature p {
    font-size: 0.84rem;
    color: var(--gray);
}

/* ========== VISION MISSION ========== */
.vm-card {
    border-radius: 12px;
    padding: 40px 36px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.vm-card.vision {
    background: linear-gradient(135deg, var(--primary) 0%, #0a4a8f 100%);
    color: #fff;
}

.vm-card.mission {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: #fff;
}

.vm-card .vm-icon {
    font-size: 3rem;
    opacity: 0.15;
    position: absolute;
    top: 20px;
    right: 24px;
}

.vm-card .vm-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.vm-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.vm-card p {
    font-size: 0.95rem;
    line-height: 1.75;
    opacity: 0.88;
}

/* ========== SERVICES ========== */
.svc-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    margin-bottom: 20px;
}

.svc-card:hover {
    box-shadow: 0 8px 28px rgba(0, 51, 102, 0.12);
    border-left: 3px solid var(--secondary);
}

.svc-card .svc-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.svc-card h6 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.svc-card p {
    font-size: 0.84rem;
    color: var(--gray);
    margin: 0;
}

/* ========== CONTACT ========== */
.contact-section {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8f0fe 100%);
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary), var(--secondary));    border-radius: 12px;
    padding: 40px 36px;
    color: #fff;
    height: 100%;
}

.contact-info-card h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
}

.contact-info-card .tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 32px;
}

.c-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.c-info-item .ci-icon {
    width: 42px;
    height: 42px;
    background: rgba(248, 180, 0, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
}

.c-info-item h6 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 3px;
}

.c-info-item p {
    font-size: 0.9rem;
    color: #fff;
    margin: 0;
}

.c-info-item a {
    color: var(--accent);
    text-decoration: none;
}

.contact-form-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 36px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.contact-form-card h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
}

.contact-form-card .sub {
    font-size: 0.87rem;
    color: var(--gray);
    margin-bottom: 26px;
}

.form-control, .form-select {
    border: 1.5px solid #dde3ea;
    border-radius: 6px;
    font-size: 0.9rem;
    padding: 10px 14px;
    transition: border-color 0.2s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.12);
}

.form-label {
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-weight: 700;
    padding: 12px 36px;
    border-radius: 6px;
    border: none;
    font-size: 0.92rem;
    width: 100%;
    transition: opacity 0.2s;
}

.btn-submit:hover {
    opacity: 0.9;
}

/* ========== FOOTER ========== */
.footer {
    background: #0a0f1c;
    color: rgba(255, 255, 255, 0.72);
    padding: 70px 0 0;
}

.footer-brand img {
    height: 48px;
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 0.86rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer h6 {
    color: var(--accent);
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.87rem;
    transition: color 0.2s;
}

.footer ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    margin-top: 50px;
    padding: 18px 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom a {
    color: var(--accent);
    text-decoration: none;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    text-decoration: none;
    margin-right: 6px;
    transition: all 0.2s;
}

.social-links a:hover {
    background: var(--secondary);
    color: #fff;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ========== QUOTE MODAL ========== */
.modal-header {
    background: var(--primary);
    color: #fff;
    border-bottom: 3px solid var(--accent);
}

.modal-title {
    font-weight: 700;
}

.modal-header .btn-close {
    filter: invert(1);
}

.modal-footer {
    border-top: 1px solid #eee;
}

/* ========== SCROLL TO TOP ========== */
.scroll-top {
    position: fixed;
    bottom: 95px;
    right: 28px;
    width: 42px;
    height: 42px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 3px 12px rgba(0, 51, 102, 0.3);
    transition: background 0.2s;
}

.scroll-top:hover {
    background: var(--secondary);
    color: #fff;
}

.scroll-top.show {
    display: flex;
}

/* ========== SWIPER ========== */
.swiper {
    padding-bottom: 44px !important;
}

.swiper-pagination-bullet-active {
    background: var(--secondary) !important;
}

/* ========== MISC ========== */
.accent-bar {
    display: block;
    width: 50px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    margin: 10px 0 20px;
}

.text-accent {
    color: var(--accent);
}

.bg-primary-custom {
    background: var(--primary);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-stat-item .num {
        font-size: 1.5rem;
    }

    .about-badge {
        display: none;
    }

    section {
        padding: 60px 0;
    }
}
.marquee-wrapper {
    background-color: #F8B400;
    color: #000;
    padding: 8px 0;
    overflow: hidden;
    position: relative;
    z-index: 1030;
    display: flex;
}
.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll 15s linear infinite;
}
.marquee-content span {
    padding: 0 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}
.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}