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

:root {
    --color-primary: #ff7a00;
    --color-primary-dark: #e66900;

    --color-navy: #0b1f3a;
    --color-navy-light: #1a3a6b;

    --color-black: #111111;
    --color-white: #ffffff;

    --color-bg-light: #f7f9fc;
    --color-border: #e2e8f0;
}

body {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
    scroll-behavior: smooth;
    color: var(--color-black);
    background: var(--color-white);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #e2e8f0;
}

::-webkit-scrollbar-thumb {
    background: #1689a0;
    border-radius: 10px;
}

/* FULL WIDTH RESET - NO CONTAINER RESTRICTIONS */
.full-width {
    width: 100%;
}

/* Inner content wrapper for alignment (optional, but keeps text readable) */
.wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.wrapper1 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 32px;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border: none;
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    color: #ffff;
    transition: 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 14px rgba(15, 92, 110, 0.2);
    text-decoration: none;
}



.btn-primary:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #0a4a58, #0f7188);
    box-shadow: 0 12px 22px rgba(15, 92, 110, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 10px 28px;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.2s;
}

.btn-outline:hover {
    background: #1689a0;
    color: white;
}

/* STICKY HEADER - FULL WIDTH */
.sticky-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    /* backdrop-filter: blur(8px); */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    z-index: 1000;
    border-bottom: 1px solid #eef2f8;
    transition: all 0.2s ease;
    border: none;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 32px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.7rem;
    font-weight: 800;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

.logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    color: #ffffff;
    transition: 0.2s;
}

.nav-links a:hover {
    color: var(--color-primary);
}

.menu-icon {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* HERO CAROUSEL - FULL WIDTH */
.hero-full {
    width: 100%;
    background: linear-gradient(135deg, #eef7fc, #ffffff);
}

.swiper-slide {
    padding: 0 !important;
    display: block !important;
}

.slide-content {
    flex: 1.2;
    padding-left: 20px;
}

.slide-content h1 {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-navy);
}

.slide-content p {
    font-size: 1.15rem;
    color: #3b5e70;
    max-width: 550px;
    margin-bottom: 32px;
}

.slide-img {
    flex: 0.8;
    text-align: center;
    font-size: 6rem;
    color: #1689a0;
}

.swiper-pagination-bullet-active {
    background: #ff7a00 !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: #ff7a00;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
}

/* Section Styling (Full Width backgrounds) */
.section-bg-white {
    background: white;
    padding-top: 40px;
}

.product-section-bg-white {
    background: #f8fbfd;
    padding-bottom: 40px;
}

.banner {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    background-image: url('/images/product-image.jpeg');
    color: white;
    background-size: cover;
}


.section-bg-light {
    background: #f8fbfd;
}

.section-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    padding-top: 40px;
}

.section-sub {
    text-align: center;
    color: #5d7a8c;
    max-width: 680px;
    margin: 0 auto 48px;
    font-size: 1.1rem;
}

/* Battery Listing - Cards */
.battery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin: 40px 0 60px;
}

.battery-card {
    background: white;
    border-radius: 32px;
    padding: 32px 24px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2edf2;
    transition: all 0.25s;
    text-align: center;
}

.battery-card:hover {
    transform: translateY(-8px);
    border-color: #bddbe5;
    box-shadow: 0 25px 35px rgba(22, 137, 160, 0.08);
}

.battery-icon {
    font-size: 3.2rem;
    background: #fff3e6;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 28px;
    margin: 0 auto 20px;
    color: var(--color-primary);
}

.battery-card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.specs {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin: 16px 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
}

.badge-tech {
    background: #e0f0f5;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
}

/* About Section - Full width */
.about-section {
    background: #f5fafd;
    border-radius: 48px;
    padding: 70px 40px;
}

.about-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    flex-direction: row;
    flex-wrap: nowrap;
}

.about-text {
    width: 100%;
    height: 100%;
}

.about-text h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 32px;
    margin: 32px 0;
}

.stat-item h4 {
    font-size: 2rem;
}

.stat-item {
    color: #ff7a00;
}

.about-img {
    background: url(https://www.hglaserglobal.com/upload/20240806/1i4j6gjgr1v7k1u3gb.jpg);
    width: 100%;
    aspect-ratio: 3 / 2;
    background-position: center;
    background-repeat: no-repeat !important;
    background-size: cover;
    border-radius: 10px;
}

.about-img i {
    font-size: 6rem;
    color: #0f5c6e;
    display: none;
}

/* Testimonials */
.testimonials {
    padding: 40px 0 70px;
}

.testimonial-card {
    background: white;
    border-radius: 36px;
    padding: 36px 28px;
    margin: 20px 12px;
    box-shadow: 0 20px 35px #fff3e6;
    border: 1px solid #eef2f0;
    text-align: center;
}

.testimonial-card i.fa-quote-left {
    font-size: 2rem;
    color: #ff7a00;
    margin-bottom: 16px;
    display: inline-block;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: #0b1f3a;
    margin: 20px 0;
}

.client-info h5 {
    font-weight: 700;
    font-size: 1.1rem;
}

.client-info span {
    font-size: 0.8rem;
    color: #ff7a00;

}

/* Newsletter CTA */
.newsletter {
    background: #0b1f3a;
    color: white;
    border-radius: 48px;
    padding: 55px 40px;
    margin: 50px 0;
    text-align: center;
}

.newsletter h3 {
    font-size: 1.9rem;
}

.newsletter form {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.newsletter input {
    padding: 14px 24px;
    border-radius: 60px;
    border: none;
    width: 320px;
    font-size: 1rem;
}

/* Footer */
.footer-dark {
    background: var(--color-black);
    color: #e5e5e5;
    padding-top: 50px;
}

.footer-container {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    padding: 0 40px 40px;
}

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #ff7a00;
}

.footer-col a {
    display: block;
    color: #d1d1d1;
    text-decoration: none;
    margin: 6px 0;
    font-size: 0.95rem;
    transition: 0.2s;
}

.footer-col a:hover {
    color: #ff7a00;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ff7a00;
}

.footer-col p {
    margin: 6px 0;
    font-size: 0.95rem;
}

.footer-col .fas {
    color: #ff7a00;
}

.footer-bottom {
    text-align: center;
    padding: 15px;
    border-top: 1px solid #777;
    font-size: 0.9rem;
    color: #ddd;
}

/* Default header */
.sticky-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    transition: all 0.3s ease;
    z-index: 999;
}

/* Scroll ke baad sticky active */
.sticky-header.active {
    background: #0b1f3a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.swiper-slide img {
    width: 100%;
    height: 100vh;
    object-fit: content;
}


/* Product button */
.view-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 18px;
    background: #ff7a00;
    color: #fff;
    border-radius: 25px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: 0.3s;
}

.view-btn:hover {
    background: #1689a0;
    transform: translateY(-2px);
}

/* Container */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Filter */
.filter-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-bar input,
.filter-bar select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card {
    background: #fff3e6;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    border: 1px solid #ff7a00;

}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-body {
    padding: 15px;
}

.card-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.card-price {
    color: #0b1f3a;
    font-weight: 700;
}

/* Pagination Center */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.page-btn,
.page-number {
    padding: 10px 16px;
    border: none;
    background: #f1f1f1;
    color: #333;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

/* Hover */
.page-btn:hover,
.page-number:hover {
    background: #ff7a00;
    color: #fff;
}

/* Active Page */
.page-number.active {
    background: #ff7a00;
    color: #fff;
}




/* Layout */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 50px 0;
}

/* Image */
.product-img {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.product-img img {
    max-width: 100%;
    height: 300px;
    object-fit: contain;
}

/* Content */
.product-info h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.price {
    font-size: 1.8rem;
    color: #ff7a00;
    font-weight: bold;
    margin-bottom: 15px;
}

.badge {
    background: #ff7a00;
    color: #fff;
    padding: 5px 10px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 15px;
}

/* Specs */
.specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 20px 0;
}

.spec-box {
    background: #f5f5f5;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
}

/* Description */
.description {
    margin-top: 30px;
    line-height: 1.6;
    color: #555;
}

/* Enquiry Form */
.enquiry-box {
    margin-top: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.enquiry-box h4 {
    margin-bottom: 15px;
}

.enquiry-box input,
.enquiry-box textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
}

.enquiry-box input:focus,
.enquiry-box textarea:focus {
    border-color: #ff7a00;
}

/* Button */
.btn-enquiry {
    width: 100%;
    background: #ff7a00;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.btn-enquiry:hover {
    background:#1689a0;
}

/* Similar Products */
.similar-products {
    margin-top: 60px;
}

.similar-products h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

/* Grid */
.similar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Card */
.similar-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    width: 130px;

}

.similar-card:hover {
    transform: translateY(-5px);
}

.similar-card img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 10px;
}

.similar-card h4 {
    font-size: 13px;
    margin-bottom: 5px;
}

.similar-card p {
    color: #ff7a00;
    font-weight: bold;
}

/* Button */
.view-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background: #ff7a00;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
}



/* FEATURED PRODUCT */
.featured-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.fp-img img {
    width: 100%;
    border-radius: 10px;
}

.fp-info h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.fp-info ul {
    padding-left: 20px;
    margin: 15px 0;
}

.fp-info li {
    margin-bottom: 8px;
}

.price {
    font-size: 22px;
    font-weight: bold;
    color: #ff7a00;
    margin-bottom: 15px;
}

/* ABOUT PAGE FORM */
.about-us-form {
    max-width: 1400px;
    margin: 50px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-us-form h4 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 600;
}

/* Inputs */
.about-us-form input,
.about-us-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.3s;
}

/* Focus effect */
.about-us-form input:focus,
.about-us-form textarea:focus {
    border-color: #ff7a00;
    box-shadow: 0 0 0 2px rgba(255, 122, 0, 0.15);
    outline: none;
}

.section-bg-dark {
    background: #f8fbfd;
    padding: 40px 0;
}


/* CONTACT LAYOUT */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    padding: 40px 0px;
}

/* LEFT SIDE */
.contact-info h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-info p {
    margin-bottom: 25px;
    color: #666;
}

/* INFO BOX */
.info-box {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.info-box i {
    font-size: 20px;
    color: #ff7a00;
    background: #fff3e8;
    padding: 12px;
    border-radius: 50%;
}

/* RIGHT FORM */
.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    margin-bottom: 20px;
}

/* FORM ROW */
.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: 0.3s;
}

/* FOCUS */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff7a00;
    box-shadow: 0 0 0 2px rgba(255, 122, 0, 0.15);
    outline: none;
}

/* BUTTON */
.contact-form button {
    margin-top: 10px;
}

/* GRID */
.center-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    padding: 40px 0px;
}

/* CARD */
.center-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

/* HOVER */
.center-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 122, 0, 0.3);
}

/* TEXT */
.center-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color:#111111;
}

.center-card p {
    margin: 5px 0;
    color: #0b1f3a;
    font-size: 16px;
}
.center-card i {
    color: #ff7a00;
}

/* MAP */
.center-map {
    margin-top: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.center-map iframe {
    width: 100%;
    height: 200px;
    border: 0;
}

/* JOB DETAIL CARD */
.job-detail-card {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #fff;
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
}

.job-detail-card h2 {
    margin-bottom: 10px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
}

.job-meta span i {
    color: #ff7a00;
    margin-right: 5px;
}

/* DESCRIPTION */
.job-description {
    margin-top: 30px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.job-description h3 {
    margin-bottom: 15px;
}

.job-description h4 {
    margin-top: 15px;
    color: #ff7a00;
}

.job-description ul {
    padding-left: 20px;
}

/* APPLY FORM */
.job-apply-form {
    margin-top: 30px;
    background: #f4f8fb;
    padding: 25px;
    border-radius: 12px;
}

.job-apply-form h3 {
    margin-bottom: 15px;
}

/* FORM ROW */
.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row input {
    flex: 1;
}

/* INPUTS */
.job-apply-form input,
.job-apply-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
}

.job-apply-form input:focus,
.job-apply-form textarea:focus {
    border-color: #ff7a00;
}

/* FILE */
.file-upload {
    margin: 10px 0;
}

/* BUTTON */
.apply-submit-btn {
    width: 100%;
    padding: 12px;
    background: #ff7a00;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

.apply-submit-btn:hover {
    background: #e66a00;
}

/* RESPONSIVE */
@media(max-width:768px){
    .form-row {
        flex-direction: column;
    }
}



/* RESPONSIVE */
@media(max-width:1024px) {
    .center-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .center-grid {
        grid-template-columns: 1fr;
    }
}

/* RESPONSIVE */
@media(max-width:768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }
}


/* RESPONSIVE */
@media(max-width: 768px) {
    .about-us-form {
        padding: 20px;
        margin: 30px 15px;
    }
}

/* RESPONSIVE */
@media(max-width:768px) {
    .featured-product {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }
}

/* Responsive */
@media(max-width: 768px) {
    .similar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .menu-icon {
        display: block;
        color: #fff;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        width: 100%;
        background: #0b1f3a;
        padding: 24px;
        border-radius: 28px;
        margin-top: 20px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    }

    .navbar {
        padding: 16px 24px;
    }

    .slide-content h1 {
        font-size: 2.2rem;
    }

    .about-inner {
        flex-direction: column;
    }

    .wrapper {
        padding: 0 24px;
    }

    .swiper-slide {
        padding: 40px 24px;
    }

    .slide-img {
        font-size: 4rem;
    }
}


@media(max-width:778px) {

    .about-stats {
        display: flex;
        gap: 32px;
        margin: 32px 0;
        flex-direction: column;
        text-align: center;
    }

    .swiper-slide img {
        width: 100%;
        height: 30vh;
        object-fit: cover;
    }

    .logo img {
        height: 70px;
    }
}

/* Responsive */
@media(max-width:992px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 991px) {
    .banner {
        height: none;
        background-size: cover;
    }
}

/* Responsive */
@media(max-width:768px) {
    .product-detail {
        grid-template-columns: 1fr;
    }
}