/*  ==========================================   6 jun css added ============================================================ */
.hero-bg {
    height: 460px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.hero-title {
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    margin-top: 10%;
    text-emphasis: center;
    text-transform: uppercase;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }
}


/* =================  contact us ============================================ */
.contact-info-box,
.contact-form-box {
    background: #ffffff;
    padding: 45px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
    transition: all 0.4s ease;
}

.contact-info-box::before,
.contact-form-box::before {
    content: "";
    display: block;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0F172A, #EA580C);
    position: absolute;
    top: 0;
    left: 0;
}

.contact-info-box,
.contact-form-box {
    position: relative;
    overflow: hidden;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 2px;
    margin-bottom: 15px;
    background: #f8fafc;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #fff7ed;
    transform: translateX(8px);
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0F172A, #1E3A8A);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item h5 {
    color: #2a190f;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-item p,
.contact-item a {
    color: #64748B;
    text-decoration: none;
}

.contact-form-box .form-control {
    height: 58px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 18px;
    transition: all 0.3s ease;
}

.contact-form-box .form-control:focus {
    border-color: #1E3A8A;
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.12);
}

.contact-form-box textarea.form-control {
    height: 160px;
    resize: none;
}

.btn-submit {
    background: linear-gradient(135deg, #0F172A, #1E3A8A);
    color: #fff;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #EA580C, #FB923C);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(234, 88, 12, 0.25);
}


/*  ============================================  products ============================================================= */
.product-details-section {
    background: #fff;
}

.product-details-image {
    background: #f8f9fb;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 300px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.product-details-image img {
    width: 100%;
    display: block;
    transition: .5s;
}

.product-details-image:hover img {
    transform: scale(1.05);
}

.product-tag {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(234, 85, 1, .1);
    color: #EA5501;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-title {
    font-size: 48px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

.product-description {
    font-size: 17px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 30px;
}

.product-feature-list {
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
}

.feature-item i {
    color: #EA5501;
    font-size: 20px;
}

.product-enquiry-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    background: #EA5501;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: .4s;
}

.product-enquiry-btn:hover {
    background: #111;
    color: #fff;
}

@media (max-width: 991px) {
    .product-title {
        font-size: 36px;
    }
}

.product-specification {
    margin: 30px 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e9e9e9;
}

.spec-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0;
    padding: 15px 20px;
    background: hsl(0, 0%, 8%);
    color: #fff;
}

.product-specification table {
    margin-bottom: 0;
}

.product-specification th {
    width: 35%;
    background: #f8f9fa;
    color: #111;
    font-weight: 600;
    padding: 14px 20px;
}

.product-specification td {
    color: #666;
    padding: 14px 20px;
}

.product-specification tr:not(:last-child) {
    border-bottom: 1px solid #ececec;
}


.rs-products-area {
    background: linear-gradient(135deg, #f4f7fc 0%, #eef3fb 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

/* Decorative Shapes */
.rs-products-area::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(15, 43, 70, .05);
    border-radius: 50%;
    top: -120px;
    right: -120px;
}

.rs-products-area::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(234, 85, 1, .05);
    border-radius: 50%;
    bottom: -80px;
    left: -80px;
}

/* Heading */
.section-subtitle {
    color: #EA5501;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
}

.section-subtitle:before {
    content: '';
    width: 40px;
    height: 2px;
    background: #EA5501;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #0f2b46;
    line-height: 1.2;
    margin-bottom: 0;
}

/* Left Product Tabs */
.product-tabs {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(15, 43, 70, .08);
    border: 1px solid rgba(15, 43, 70, .06);
}

.product-tabs .nav-link {
    width: 100%;
    text-align: left;
    border: none;
    margin-bottom: 12px;
    padding: 18px 22px;
    border-radius: 12px;
    background: #f5f8fc;
    color: #0f2b46;
    font-weight: 600;
    font-size: 16px;
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
}

.product-tabs .nav-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .4),
            transparent);
    transition: .6s;
}

.product-tabs .nav-link:hover:before {
    left: 100%;
}

.product-tabs .nav-link:hover {
    background: #0f2b46;
    color: #fff;
    transform: translateX(8px);
}

.product-tabs .nav-link.active {
    background: linear-gradient(135deg, #0f2b46, #1d466d);
    color: #fff;
    box-shadow: 0 10px 25px rgba(15, 43, 70, .25);
}

/* Product Details Card */
.product-details-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(15, 43, 70, .08);
    border: 1px solid rgba(15, 43, 70, .06);
}

.product-details-card img {
    border-radius: 15px;
    transition: .5s;
}

.product-details-card img:hover {
    transform: scale(1.03);
}

.product-details-card h3 {
    font-size: 34px;
    font-weight: 800;
    color: #0f2b46;
    margin-bottom: 15px;
}

.product-details-card p {
    color: #5d6c7c;
    font-size: 16px;
    text-align: justify;
    line-height: 1.9;
}

/* Product Features */
.product-features {
    margin: 25px 0;
}

.product-features ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-features ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    color: #0f2b46;
    font-weight: 600;
}

.product-features ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    background: #EA5501;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
}

/* Specification Table */
.specification-table {
    margin-top: 30px;
}

.specification-table table {
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
}

.specification-table th {
    width: 120px;
    background: #0f2b46;
    color: #fff;
    font-weight: 600;
    border-color: #e9eef5;
}

.specification-table td {
    background: #f8fbff;
    color: #0f2b46;
    border-color: #e9eef5;
}

.product-details-card ul {
    list-style: none;
    padding-left: 0;
}

.product-details-card ul li {
    position: relative;
    padding-left: 25px;
    font-size: 17px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.product-details-card ul li::before {
    content: "";
    width: 10px;
    height: 2px;
    background: #EA5501;
    position: absolute;
    left: 0;
    top: 11px;
}

/* Accordion Wrapper */
.accordion {
    border-radius: 10px;
    overflow: hidden;
}

/* Accordion Item */
.accordion-item {
    border: none;
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Header Button */
.accordion-button {
    background: #0d1b2a;
    /* Navy */
    color: #fff;
    font-weight: 600;
    padding: 15px 18px;
    font-size: 15px;
    border: none;
    outline: none;
    box-shadow: none;
}

/* Remove Bootstrap default arrow color */
.accordion-button::after {
    filter: brightness(0) invert(1);
}

/* Hover effect */
.accordion-button:hover {
    background: #14243a;
    color: #fff;
}

/* Active/Open state */
.accordion-button:not(.collapsed) {
    color: #fff;
}

/* Remove focus outline */
.accordion-button:focus {
    box-shadow: none;
}

/* Body content */
.accordion-body {
    background: #fff;
    color: #444;
    padding: 18px;
    line-height: 1.7;
    font-size: 15px;
}

/* Smooth transition */
.accordion-collapse {
    transition: all 0.3s ease-in-out;
}

/* Responsive */
@media(max-width:991px) {

    .section-title {
        font-size: 36px;
    }

    .product-details-card {
        padding: 25px;
    }
}

@media(max-width:767px) {

    .section-title {
        font-size: 30px;
    }

    .product-tabs {
        margin-bottom: 30px;
    }
}

/* ========================================= 12 jun ================================== */
/* Certificate Grid */

.certificate-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 60px auto;
    gap: 30px;
}


/* Certificate Card */

.certificate-box {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: .4s ease;
}


.certificate-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}


/* Image */

.certificate-img {
    height: 200px;
    padding: 15px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}


.certificate-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: .4s;
}


.certificate-box:hover img {
    transform: scale(1.08);
}


/* Overlay */

.certificate-overlay {
    position: absolute;
    inset: 0;
    background: lab(81.56% -0.5 -0.75 / 0.851);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .4s;
}


.certificate-box:hover .certificate-overlay {
    opacity: 1;
}


.certificate-overlay a {
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}



/* Content */

.certificate-info {
    padding: 22px;
    text-align: center;
}


.certificate-info h3 {
    font-size: 20px;
    color: #111827;
    margin-bottom: 10px;
}


.certificate-info p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
}



/* Button */

.certificate-btn {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 11px 22px;
    background: #0d6efd;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
}



/* Responsive */

@media(max-width:992px) {

    .certificate-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media(max-width:576px) {

    .certificate-grid {
        grid-template-columns: 1fr;
    }

}

/* ========================== 12 jun ====================== clients ==================== */
.logo-section {
    padding: 100px 0;
    background: hwb(211deg 1.52% 79.53%);
}


.logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}


.logo-box {
    background: #fff;
    height: 150px;
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all .4s ease;
}



.logo-box a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.logo-box img {
    width: 100%;
    max-width: 200px;
    height: 100px;
    object-fit: contain;
    cursor: pointer;
    transition: all .4s ease;
    filter: grayscale(0);
}



.logo-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.15);
}



.logo-box:hover img {
    transform: scale(1.08);
    filter: grayscale(0);
}

.gslide-description {
    text-align: center !important;
    color: #fff !important;
    background: transparent !important;
    padding: 10px 25px !important;
    font-size: 20px !important;
    font-weight: 600 !important;
}

.gslide-description,
.gslide-description * {
    color: #fff !important;
    background: transparent !important;
}


.glightbox-clean .gslide-description,
.glightbox-modern .gslide-description {
    background: transparent !important;
}

[data-aos] {
    pointer-events: auto;
}

/* Tablet */
@media(max-width:991px) {

    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* Mobile */
@media(max-width:767px) {

    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .logo-box {
        height: 130px;
        padding: 15px;
    }

}


/* Small Mobile */
@media(max-width:576px) {

    .logo-grid {
        grid-template-columns: 1fr;
    }

    .logo-box img {
        max-width: 180px;
    }

}

/* GLightbox Image Size */
.gslide-image img {
    width: auto !important;
    height: 500px !important;
    max-width: 90vw !important;
    object-fit: contain !important;
}


/* Mobile Lightbox Image */
@media(max-width:768px) {

    .gslide-image img {
        height: 350px !important;
        max-width: 95vw !important;
    }

}

/* ========================================== 15 jun ================================== */
.custom-spec-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}

/* Table Header */
.custom-spec-table th {
    background: #1a3f63;
    color: #fff;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    padding: 10px;
    letter-spacing: 0.3px;
}

/* Table Data */
.custom-spec-table td {
    padding: 8px 8px;
    font-size: 14px;
    color: #333;
    vertical-align: middle;
    border-bottom: 1px solid #e8edf5;
}


.custom-spec-table td:first-child {
    width: 30%;
    background: #f3f7ff;
    color: #1a3f63;
    font-weight: 600;
}

/* Rounded Corners */
.custom-spec-table th:first-child {
    border-top-left-radius: 16px;
}

.custom-spec-table th:last-child {
    border-top-right-radius: 16px;
}

.custom-spec-table tr:last-child td {
    border-bottom: none;
}

/* Hover Effect */
.custom-spec-table tbody tr {
    transition: all 0.3s ease;
}

.custom-spec-table tbody tr:hover {
    background: #f8fbff;
    transform: scale(1.01);
}

/* Badge Style */
.badge {
    display: inline-block;
    background: linear-gradient(135deg, #eef5ff, #ffffff);
    color: #1a3f63;
    padding: 4px 8px;
    margin: 5px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #c8dcff;
    transition: 0.3s;
}

.badge:hover {
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}

/* Mobile Responsive */
@media(max-width:768px) {

    .custom-spec-table th {
        font-size: 14px;
        padding: 12px;
    }

    .custom-spec-table td {
        padding: 12px;
        font-size: 14px;
    }

    .badge {
        font-size: 12px;
        padding: 6px 10px;
    }
}