* {
    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: #00ff1f26;
    --color-border: #e2e8f0;
}

/* #00ff1f26
#85be5a 
linear-gradient(135deg, #04ff00c2, #2b5920) button colr
#3e860d

#00edff

*/

body {
    overflow-x: hidden;
}

body {
    font-family: 'poppins';
    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;
}

#testimonials {
    max-width: 100%;
    margin: unset;
    background: #85be5a;
    padding-left: 150px;
    padding-right: 150px;
}

#cateroductlist {
    background: #85be5a;
    max-width: 100%;
    margin: unset;
    padding-left: 255px;
    padding-right: 255px;
}

#productDetails {
    background: #85be5a;
    max-width: 100%;
    margin: unset;
    padding-left: 255px;
    padding-right: 255px;
}



#cardbody1 {
    background: unset;
}


/* GLOBAL SECTION */
.global-section {
    background: #f8fafc;
    padding: 80px 0;
}

.global-container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.global-image {
    flex: 1;
    min-width: 300px;
}

.global-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.global-content {
    flex: 1;
    min-width: 300px;
}

.global-tag {
    display: inline-block;
    background: #e8f5e9;
    color: #1b5e20;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 600;
}

.global-content h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #111827;
}

.global-content p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 30px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-box i {
    color: #ff7a00;
    font-size: 20px;
}

.alert.alert-success.mt-2 {
    color: #85be5a;
    font-size: 20px;
    font-weight: 800;
    padding-bottom: 10px;
}

.alert.alert-danger.mt-2 {
    color: red;
    font-size: 20px;
    font-weight: 800;
    padding-bottom: 10px;
}

textarea {
    margin-top: 15px;
}

@media(max-width:768px) {

    .global-container {
        flex-direction: column;
    }

    .global-content h2 {
        font-size: 30px;
    }

    .global-section {
        background: #f8fafc;
        padding: 80px 20px;
    }

}


/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #04ff00c2, #2b5920);
    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;
    /*margin-top: 20px;*/
}
.about-page-view-details-button{
     margin-top: 20px;
}


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

.btn-clear {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #ffff;
    padding: 12px 32px;
    border-radius: 6px;
    margin-left: 8px;
    text-decoration: none;
    font-size: 15px;
    transition: 0.25s;
    border: none;
    box-shadow: 0 6px 14px rgba(15, 92, 110, 0.2);
}

.btn-clear:hover {
    background: linear-gradient(135deg, #0a4a58, #0f7188);
}

.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: 80px;
    width: 100px;
    object-fit: cover;
}

.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: #85be5a;
}

.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: #85be5a !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: #85be5a;
    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: unset;
    padding-bottom: 40px;
}

.banner {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.figma1 {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0000006b;
}

.banner-text {
    position: absolute;
    color: #ffff;
    font-size: 60px;
    font-weight: 700;
    z-index: 2;
}


.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: #ff7a00;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    color: white;
    margin: 15px 0px 0px;
}

/* About Section - Full width */
.about-section {
    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 {
    width: 100%;
    aspect-ratio: 4 / 5;
    background-position: center;
    background-repeat: no-repeat !important;
    background-size: contain;
    border-radius: 10px;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    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;
    border: 1px solid #85be5a;
    text-align: center;
}

.testimonial-card i.fa-quote-left {
    font-size: 2rem;
    color: #85be5a;
    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: #85be5a;
}

/* Newsletter CTA */
.newsletter {
    background: #85be5a;
    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;
}

.newsletter .fas {
    color: #ffff;
}

/* Footer */
.footer-dark {
    background: #255d3a;
    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: #ffffff;
}

.social-icons .a1 a {
    display: block;
    color: black;
    text-decoration: none;
    margin: 6px 0;
    font-size: 0.95rem;
    transition: 0.2s;
}

.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: #85be5a;

}

.footer-bottom a:hover {
    color: #85be5a;
}

.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: #85be5a;

}

.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);
}

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

.hero-full .swiper-slide {
    position: relative;
    overflow: hidden;
}

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

.hero-full .slide-text {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 32%;
    transform: translate(-50%, -50%);

    color: #fff;
    text-align: left;

    padding: 15px 25px;
    border-radius: 8px;
    width: 40%;
}

.slide-text h2 {
    margin: 0;
    font-size: 40px;
    font-family: poppins;
    font-weight: 900;
    line-height: 40px;
    color: #ffff;
}

.slide-text p {
    margin-top: 20px;
    font-size: 20px;
    font-family: poppins;
    font-weight: 500;
}

.hero-full .swiper-slide::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0000006b;
    z-index: 1;
}



/* 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;
}

#pcategorylist {
    max-width: 100%;
    background: #85be5a;
    padding-left: 255px;
    padding-right: 255px;
}

/* 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;
}

.filter-bar select option:checked {
    background-color: #ff7a00;
    color: #fff;
}

.filter-bar input {
    padding: 12px;
    width: 250px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.filter-bar select {
    padding: 12px;
    width: 250px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.search-btn {
    padding: 12px 18px;
    background-color: #ff7a00;
    border: none;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

.filter-container {
    position: relative;
}

/* Toggle button (mobile icon) */
.toggle-search {
    display: none;
    padding: 10px 14px;
    font-size: 18px;
    background: #ffff;
    color: #85be5a;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

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

/* Inputs */
.filter-bar input {
    padding: 12px;
    width: 250px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.filter-bar select {
    padding: 12px;
    width: 305px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

/* Button */
.search-btn {
    padding: 12px 18px;
    background-color: #ff7a00;
    border: none;
    border-radius: 6px;
    color: white;
    cursor: pointer;
}

/* MOBILE VIEW */
.filter-container {
    display: none;
}

@media (max-width: 768px) {
    .filter-container {
        display: block;
    }

    .toggle-search {
        display: block;
    }

    .filter-bar {
        display: none;
        flex-direction: column;
        margin-bottom: 15px;
    }

    .filter-bar.active {
        display: flex;
    }

    .filter-container {
        position: relative;
        padding-bottom: 10px;
    }

    .filter-bar input {
        margin-top: 10px;
    }

    .btn-primary:hover {
        box-shadow: none;
    }

    .filter-bar select {
        width: 305;
        margin-top: 10px;
    }

    #pcategorylist {
        max-width: 100%;
        background: #85be5a;
        padding-left: 20px;
        padding-right: 20px;
    }

    #cateroductlist {
        background: #85be5a;
        max-width: 100%;
        margin: unset;
        padding-left: 20px;
        padding-right: 20px;
    }

    #productDetails {
        background: #85be5a;
        padding-left: 20px;
        padding-right: 30px;
    }

    .swiper-button-next {
        color: #fff;
        background: #85be5a;
        border-radius: 50%;
        width: 44px;
        height: 44px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        position: absolute;
        top: 278px;
    }

    .swiper-button-prev {
        color: #fff;
        background: #85be5a;
        border-radius: 50%;
        width: 44px;
        height: 44px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        position: absolute;
        top: 278px;
        left: 295px;
    }


}

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

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

}

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

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

.card-body {
    padding: 15px;
    background: unset;
}

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

#title-font {
    font-size: 24px;
}

.product-category-anim {
    overflow: hidden;
    transition: 0.4s ease;
}

.product-category-anim img {
    width: 100%;
    transition: transform 0.5s ease;
}

.product-category-anim:hover img {
    transform: scale(1.12);
}

.no-product-found {
    grid-column: 1 / -1;
    text-align: center;
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    padding: 10px 0;
    background-color: #85be5a;
    color: #ffffff;
}

.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;
    display: flex;
    flex-direction: column;
}

.product-img img {
    max-width: 100%;
    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;
}

.main-image-box {
    width: 100%;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

#mainProductImage {
    width: 100%;
    height: 450px;
    object-fit: contain;
    display: block;
    padding: 10px;
}

/* THUMBNAIL ROW */
.product-gallery {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    overflow-x: auto;
    padding-bottom: 5px;
    justify-content: center;
}

.product-gallery::-webkit-scrollbar {
    height: 5px;
}

.thumb-img {
    width: 85px;
    height: 85px;
    object-fit: cover;
    border: 2px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    flex-shrink: 0;
    background: #fff;
    padding: 4px;
}

.thumb-img:hover {
    transform: scale(1.05);
    border-color: #85be5a;
}

.active-thumb {
    border-color: #000;
}

/* 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: #85be5a;

}

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

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


.similar-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.similar-item {
    display: flex;
    gap: 15px;
    background: #f8f8f8;
    padding: 12px;
    border-radius: 10px;
    align-items: center;
    transition: 0.3s;
}

/*.similar-item:hover {*/
/*    background: #1689a0;*/
/*}*/

.similar-img img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}

.similar-content {
    flex: 1;
}

.similar-content h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.similar-date {
    font-size: 12px;
    color: #777;
    margin-bottom: 5px;
}

.similar-date i {
    margin-right: 5px;
}

/* Button */
.view-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 13px;
    background: linear-gradient(135deg, #04ff00c2, #2b5920);
    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;
}

#about {
    background: #00ff1f26
}


/* 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: #000;
    font-weight: 600;
}

.contact-info p:hover {
    color:   #85be5a;
}

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

.info-box i {
    font-size: 20px;
    color: #85be5a;
    background: #00ff1f26;
    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: #85be5a;
    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:#00ff1f26;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 255, 31, 0.15);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

/* HOVER */
.center-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 4px 10px rgba(0, 255, 31, 0.15);
}

/* 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: #85be5a;
}

/* 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: #85be5a;
    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-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.error-text {
    color: red;
    font-size: 13px;
    margin-top: 5px;
}

.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:linear-gradient(135deg, #04ff00c2, #2b5920);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
}

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

/* social icons css */
.a1 {
    background: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    color: red !important;
    ;
    align-items: center;
    justify-content: center;
}

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

.terms-box {
    background: #fff;
    padding: 30px;
    margin-top: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    line-height: 1.7;
    margin-bottom: 30px;
}

.terms-box h2 {
    margin-bottom: 15px;
}

.terms-box h4 {
    margin-top: 20px;
    color: #ff7a00;
}

.terms-box p {
    margin-top: 8px;
    color: #555;
}

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

    .section-bg-light {
        padding: 20px 15px;
        text-align: center;
    }

    .about-section {
        padding: 0px;
    }

    .wrapper {
        padding: 0px;
    }

    .section-title {
        padding-top: 0px;
    }

    .section-bg-white {
        padding: 20px 15px;
    }

    .product-section-bg-white {
        padding: 20px 15px;
    }

    #testimonials {
        padding: 20px 15px;
    }

    .testimonials {
        padding: 0px;
    }

    #contact {
        padding: 20px 15px;
    }

    .newsletter {
        margin: 0px;
    }

    .footer-dark {
        padding: 20px 15px;
    }

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

    .swiper-slide img {
        height: 35vh !important;
    }

    .sticky-header {
        background: #0b1f3a;
    }

    .hero-full {
        margin-top: 132px;
    }

    .info-box {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
        align-items: center;
        border: 2px ridge #ffff;
        border-radius: 10px;
        padding-top: 25px;
        flex-direction: column;
        transition: 0.5s;
    }

    /* .info-box:hover {
        background-color: #fff3e6;
    } */

    .info-box:hover i {
        background: #fff;

    }

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

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

    .contact-container {
        grid-template-columns: 1fr;
    }

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

    .featured-product {
        grid-template-columns: 1fr;
    }

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

    .similar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-detail {
        grid-template-columns: 1fr;
    }

    #wrapstar {
        padding: 20px 15px;
    }

    .job-detail-card {
        margin-top: 0px;
    }

    .apply-submit-btn {
        display: flex;
        justify-content: center;
    }

    .similar-products {
        margin-top: 0px;
        padding: 20px 15px;
    }

    .product-info {
        padding: 20px 15px;
    }

    .product-img {
        padding: 0px;
    }

    .slide-text p {
        font-size: 14px;
    }

    .hero-full .slide-text {
        top: 50%;
        left: 50%;
        text-align: center;
        width: 100%;
    }

    .slide-text h2 {
        font-size: 30px;
        line-height: 30px;
    }

    .banner-text {
        font-size: 30px;
        text-align: center;
    }

    .banner {
        margin-top: 132px;
        height: 250px;
    }

    .btn-primary {
        margin-top: 10px;
    }

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

}


/* 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: 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: 0px;
    }

    .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 {
        width: 100px;
        height: 100px;
        overflow: hidden;
    }

    .logo img {
        object-fit: cover;
    }
}

/* 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;
    }
}