:root {
    --brand: rgb(36, 176, 77);
    --navbar-height: 90px;
}


.brand-name {
    color: var(--brand);
}

.aboutUs .aboutLayer {
    background: #ffffff;
}

/* ===============================
   PREMIUM CATEGORIES SECTION
=================================*/

.categories-section {
    background: url('../images/backgrounds/black-bg.jpg') center/cover no-repeat;
    padding: 120px 0;
}

.categories-section .section-title {
    color: #fff;
    font-size: 60px;
    font-weight: 600;
}

.categories-section .section-subtitle {
    color: var(--brand);
    font-size: 22px;
    font-weight: 600;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 380px;
    gap: 25px;
    width: 100%;
}

.category-large {
    grid-column: span 2;
}

.category-wide {
    grid-column: span 2;
}

.category-tall {
    grid-row: span 2;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    transition: all .4s ease;
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .7));
    z-index: 1;
    pointer-events: none;
}

.category-card:hover {
    transform: translateY(-6px);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #ffffff;
}

.category-card:hover img {
    transform: scale(1.03);
}

.category-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    z-index: 2;
}

.category-overlay h3 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.category-overlay p {
    font-size: 16px;
    margin-bottom: 18px;
    color: var(--brand);
    font-weight: 500;
}

.category-overlay h3,
.category-overlay p {
    text-shadow: 0 2px 10px rgba(0, 0, 0, .6);
}

.visit-btn {
    display: inline-block;
    padding: 10px 26px;
    border-radius: 40px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    width: max-content;
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, .1);
    transition: .3s;
}

.visit-btn:hover {
    background: #fff;
    color: #000;
}

@media(max-width:991px) {

    .category-grid {
        grid-template-columns: 1fr 1fr;
    }

    .category-large,
    .category-wide,
    .category-tall {
        grid-column: span 1;
        grid-row: span 1;
    }

}

@media(max-width:576px) {

    .category-grid {
        grid-template-columns: 1fr;
    }

}

/* ================= TOP TITLE ================= */

.category-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 25px;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom,
            rgba(36, 176, 77, 0.85),
            rgba(36, 176, 77, 0.15));
}

.category-top h5 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.arrow-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.arrow-icon iconify-icon {
    font-size: 20px;
    color: #fff;
    transition: transform 0.3s ease;
}

.card-wrapper:hover .arrow-icon {
    background: var(--brand);
}

.card-wrapper:hover .arrow-icon iconify-icon {
    transform: rotate(45deg);
}

.section-title {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.section-subtitle {
    color: var(--brand);
    font-size: 15px;
}

/* ================= PRODUCT SLIDER ================= */

.product-slider {
    height: 100%;
    width: 100%;
    margin-top: 90px;
}

.product-slide {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* reduced padding */
}

.product-slide img {
    width: 100%;
    height: 120%;
    object-fit: contain;
    /* show full image */
    transition: transform 0.6s ease;
}

/* ================= PRODUCT CONTENT ================= */

.product-info {
    padding: 20px 15px;
    text-align: center;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 5px;
}

.product-desc {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
}

/* =============================
   WHY CHOOSE US SECTION FIX
============================= */

.division-section {
    position: relative;
    overflow: hidden;
    background: #f8fafb;
    padding: 20px 0;
}

.division-section .row {
    display: flex;
    align-items: stretch;
}

.division-section .col-lg-7 {
    display: flex;
    align-items: center;
}

.division-section h2 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 40px;
}

.division-section h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: var(--brand);
    margin-top: 10px;
}

.step-item {
    margin-bottom: 25px;
}

.step-item .border {
    border-radius: 16px;
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    transition: all .35s ease;
}

.step-item:hover .border {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: #e8f6ee;
}

.number-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e9f8ef;
    color: var(--brand);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: .3s;
}

.step-item:hover .number-circle {
    background: var(--brand);
    color: #fff;
}

/* Icon Box */

.icon-square {
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #fff;
    transition: 0.3s;
}

.step-item:hover .icon-square {
    transform: scale(1.08);
}

.icon-square i {
    font-size: 30px;
}

.content-box h6 {
    font-size: 18px;
}

.content-box p {
    font-size: 14px;
    color: #6c757d;
}

.diagonal-img-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diagonal-img {
    width: 100%;
    height: 60%;
    object-fit: cover;

    border-top-left-radius: 75%;
    border-top-right-radius: 75%;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* =============================
   CONTACT US SECTION
============================= */

.get-in-touch {
    position: relative;
    padding: 120px 0;
    background: #f7f9fb;
    /* soft clean background */
}

/* remove background pseudo elements */
.get-in-touch::before,
.get-in-touch::after {
    display: none;
}

.get-in-touch .container {
    position: relative;
}

/* contact icon */
.contact-info .contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* headings */
.contact-info h6 {
    font-weight: 600;
    color: #222;
    font-size: 16px;
}

.contact-info p {
    color: #555;
    font-size: 15px;
}

/* form inputs */
.get-in-touch .form-control {
    background: transparent;
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    box-shadow: none;
}

/* placeholder */
.get-in-touch input::placeholder,
.get-in-touch textarea::placeholder {
    color: #999;
}

/* focus effect */
.get-in-touch .form-control:focus {
    border-bottom: 2px solid var(--brand);
    box-shadow: none;
}

/* ********* ABOUT US SECTION ************************************* */

.about-content {
    position: relative;
}

/* small label */
.section-tag {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand);
    font-weight: 600;
}

/* heading */
.aboutHeading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 10px;
}

.aboutHeading span {
    color: var(--brand);
}

/* divider line */
.title-divider {
    width: 70px;
    height: 3px;
    background: var(--brand);
    margin-top: 15px;
    border-radius: 4px;
}

/* paragraph styling */
.about-description p {
    font-size: 16px;
    line-height: 1.7;
    color: #292727;
    margin-bottom: 18px;
}

/* highlight words */
.highlight {
    color: var(--brand);
    font-weight: 600;
}

/* subtle content card effect */
.about-description {
    padding-left: 10px;
    border-left: 3px solid rgba(255, 255, 255, 0.15);
}


/* ================= CERTIFICATION SECTION ================= */

.certification-section {
    padding: 60px 0;
    background: #f9fafb;
    border-top: 1px solid #eee;
}

/* Title */

.cert-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #222;
}

.cert-subtitle {
    font-size: 0.95rem;
    color: var(--brand);
    margin-top: 8px;
}

/* Card */

.cert-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px 15px;
    text-align: center;
    height: 100%;
    transition: all 0.25s ease;
    border: 1px solid #eee;
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Image */

.cert-card img {
    max-height: 85px;
    margin-bottom: 12px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.cert-card:hover img {
    transform: scale(1.1);
}

/* Text */

.cert-card p {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand);
    margin: 0;
}

/* Responsive */

@media (max-width:768px) {

    .certification-section {
        padding: 40px 0;
    }

    .cert-title {
        font-size: 1.4rem;
    }

    .cert-card {
        padding: 15px;
    }

    .cert-card img {
        max-height: 40px;
    }

}