: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/category.png') center center/cover no-repeat;
    padding-top: 80px;
    padding-bottom: 80px;
}

.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;
}

.modern-slider {
    position: relative;
    height: 700px;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
}

.slider-wrapper {
    display: flex;
    height: 100%;
    border-radius: 16px;
    transition: transform 0.6s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 40px;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.75));
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin-bottom: 50px;
}

.slide-content h2 {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
}

.slide-content p {
    font-size: 18px;
    color: #e0e0e0;
}

.category-btn {
    margin-top: 20px;
    padding: 14px 38px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: var(--brand);
    border: 2px solid transparent;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.category-btn:hover {
    background: transparent;
    border-color: var(--brand);
}


/* Thumbnails */
.thumbnail-strip {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 35px;
    justify-content: center;
    align-items: center;
}

.thumbnail-strip img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    padding: 10px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* hover effect */
.thumbnail-strip img:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}


.product-card {
    width: 220px;
    height: 260px;
    border-radius: 18px;
    padding: 15px;

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.95),
            rgba(255, 255, 255, 0.75));

    backdrop-filter: blur(12px);

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);

    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

/* square image area */
.product-image {
    width: 100%;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* bottom details */
.product-info {
    text-align: center;
}

.product-info h6 {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin: 0;
}

/* Controls */
.slider-controls {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.slider-controls button {
    pointer-events: all;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    font-size: 26px;
    color: #fff;

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);

    transition: 0.3s;
}

.slider-controls button:hover {
    background: var(--brand);
    transform: scale(1.1);
}

.slide {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.thumbnail-strip {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 35px;
    justify-content: center;
    align-items: flex-end;
    padding: 0 60px;
}

@keyframes zoomBg {
    from {
        background-size: 100%;
    }

    to {
        background-size: 110%;
    }
}

/* ================= 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);
}