:root {
    --brand: rgb(36, 176, 77);
    --navbar-height: 90px;
}


/* ===============================
   PREMIUM CATEGORIES SECTION
=================================*/

.categories-section {
    background: #f4f6f8;
    overflow: hidden;
}

.categories-slider .owl-stage {
    display: flex;
}

.categories-slider .owl-item {
    display: flex;
}

.category-card {
    width: 100%;
    padding: 15px;
}

.card-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #f8f9fa;
    /* soft light background */
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-wrapper:hover {
    transform: translateY(-10px);
}

/* ================= 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(0, 0, 0, 0.65), transparent);
}

.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);
}

/* ================= PRODUCT SLIDER ================= */

.product-slider {
    height: 100%;
}

.product-slide {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    /* spacing from borders */
    background: transparent;
}

.product-slide img {
    max-width: 85%;
    max-height: 75%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.card-wrapper:hover .product-slide img {
    transform: scale(1.05);
}

/* Hide product dots */
.product-slider .owl-dots {
    display: none;
}


/* =============================
   WHY CHOOSE US SECTION FIX
============================= */

.division-section {
    position: relative;
    overflow: hidden;
}

.division-section .row {
    min-height: 500px;
}

.diagonal-img-container {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.diagonal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ensure left content stretches */
.division-section .col-lg-7 {
    display: flex;
    align-items: center;
}


.step-item {
    position: relative;
}

.step-item .border {
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #f1f1f1;
    transition: all 0.4s ease;
}

.step-item:hover .border {
    transform: translateX(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: #e6f7ed;
}

/* Number Circle */
.number-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #e9f8ef;
    color: var(--brand);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.step-item:hover .number-circle {
    background: var(--brand);
    color: #fff;
}

/* Icon Box */
.icon-square {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: 0.3s;
}

.step-item:hover .icon-square {
    transform: scale(1.1);
}


/* =============================
   CONTACT US SECTION
============================= */

.get-in-touch {
    position: relative;
    background: url('../assets/images/backgrounds/world-map.png') center center/cover no-repeat;
    padding: 120px 0;
}

.get-in-touch .container {
    position: relative;
    z-index: 2;
}

.contact-info .contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--brand);
    /* circle background */
    color: #fff;
    /* icon color */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info h6 {
    font-weight: 600;
    color: #111;
    font-size: 16px;
}

.contact-info p {
    color: #111;
    font-size: 15px;
}

.get-in-touch::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    /* dark overlay */
    z-index: 0;
}


.get-in-touch input::placeholder,
.get-in-touch textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.get-in-touch .form-control {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}