  /* =========================================
           PLANT PAGE
        ========================================= */

        .plant-page-area {
            padding: 40px 0;
            background: #fff;
        }

        .plant-layout {
            display: grid;
            grid-template-columns: 290px 1fr;
            gap: 55px;
            align-items: start;
        }


        /* =========================================
           LEFT PLANT TABS
        ========================================= */

        .plant-tabs {
            position: sticky;
            top: 100px;
        }

        .plant-tabs-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #111;
        }

        .plant-tab-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .plant-tab-list li {
            margin-bottom: 10px;
        }

        .plant-tab-list li a {
            position: relative;
            display: flex;
            align-items: center;
            gap: 13px;

            padding: 17px 20px;

            background: #f5f6f7;
            color: #222;

            border-radius: 6px;

            font-size: 15px;
            font-weight: 600;

            text-decoration: none;

            transition: all .35s ease;
            overflow: hidden;
        }

        .plant-tab-list li a::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;

            background: #293681;

            transform: scaleY(0);
            transform-origin: center;

            transition: .35s ease;
        }

        .plant-tab-list li a:hover,
        .plant-tab-list li.active a {
            background: #111;
            color: #fff;
            transform: translateX(6px);
            box-shadow: 0 10px 25px rgba(0,0,0,.12);
        }

        .plant-tab-list li:hover a::before,
        .plant-tab-list li.active a::before {
            transform: scaleY(1);
        }

        .plant-tab-icon {
            width: 32px;
            height: 32px;

            display: flex;
            align-items: center;
            justify-content: center;

            background: #fff;
            color: #293681;

            border-radius: 50%;

            flex-shrink: 0;

            transition: .35s ease;
        }

        .plant-tab-list li a:hover .plant-tab-icon,
        .plant-tab-list li.active .plant-tab-icon {
            background: #293681;
            color: #fff;
        }


        /* =========================================
           RIGHT CONTENT
        ========================================= */

        .plant-content {
            min-width: 0;
        }

        .plant-main-image {
            position: relative;
            overflow: hidden;

            border-radius: 12px;
            margin-bottom: 35px;

            box-shadow: 0 15px 40px rgba(0,0,0,.12);
        }

        .plant-main-image img {
            width: 100%;
            height: 480px;
            object-fit: cover;
            display: block;

            transition: transform .7s ease;
        }

        .plant-main-image:hover img {
            transform: scale(1.05);
        }

        .plant-content .section-subtitle {
            margin-bottom: 12px;
        }

        .plant-content h2 {
            font-size: 38px;
            line-height: 1.2;
            font-weight: 700;

            margin-bottom: 22px;
        }

        .plant-content h2 span {
            color: #293681;
        }

        .plant-content p {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 18px;
        }


        /* =========================================
           FEATURES
        ========================================= */

        .plant-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;

            margin-top: 30px;
            margin-bottom: 45px;
        }

        .plant-feature {
            display: flex;
            align-items: center;
            gap: 12px;

            padding: 15px 18px;

            background: #f7f7f7;
            border-radius: 7px;

            transition: .3s ease;
        }

        .plant-feature:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0,0,0,.08);
        }

        .plant-feature i {
            color: #293681;
            font-size: 18px;
        }

        .plant-feature span {
            font-size: 14px;
            font-weight: 600;
        }


        /* =========================================
           GALLERY
        ========================================= */

        .plant-gallery-section {
            margin-top: 10px;
        }

        /* .plant-gallery-heading {
            text-align: center;
            margin-bottom: 35px;
        } */

        .plant-gallery-heading .subtitle {
            color: #293681;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .plant-gallery-heading h2 {
            font-size: 36px;
            font-weight: 700;
            margin-top: 8px;
        }

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

        .gallery-item {
            position: relative;
            overflow: hidden;

            border-radius: 10px;

            height: 230px;

            display: block;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;

            object-fit: cover;

            transition: transform .6s ease;
        }

        .gallery-item::after {
            content: "\f00e";

            font-family: "Font Awesome 6 Pro";

            position: absolute;

            left: 50%;
            top: 50%;

            transform: translate(-50%, -50%) scale(.5);

            width: 50px;
            height: 50px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 50%;

            background: #293681;
            color: #fff;

            opacity: 0;

            transition: .35s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item:hover::after {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }


        /* =========================================
           RESPONSIVE
        ========================================= */

        @media (max-width: 991px) {

            .plant-layout {
                grid-template-columns: 1fr;
                gap: 35px;
            }

            .plant-tabs {
                position: static;
            }

            .plant-tab-list {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .plant-tab-list li {
                margin-bottom: 0;
            }

            .plant-main-image img {
                height: 400px;
            }

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

        }


        @media (max-width: 575px) {

            .plant-page-area {
                padding: 60px 0;
            }

            .plant-tab-list {
                grid-template-columns: 1fr;
            }

            .plant-content h2 {
                font-size: 28px;
            }

            .plant-main-image img {
                height: 280px;
            }

            .plant-features {
                grid-template-columns: 1fr;
            }

            .plant-gallery {
                grid-template-columns: 1fr;
            }

            .gallery-item {
                height: 250px;
            }

        }
 
        .service-page-area {
            padding: 40px 0;
            background: #fff;
        }

        .service-layout {
            display: grid;
            grid-template-columns: 290px 1fr;
            gap: 55px;
            align-items: start;
        }


        /* =========================================
           LEFT SERVICE TABS
        ========================================= */

        .service-tabs {
            position: sticky;
            top: 100px;
        }

        .service-tabs-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #111;
        }

        .service-tab-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .service-tab-list li {
            margin-bottom: 10px;
        }

        .service-tab-list li a {
            position: relative;
            display: flex;
            align-items: center;
            gap: 13px;

            padding: 17px 20px;

            background: #f5f6f7;
            color: #222;

            border-radius: 6px;

            font-size: 15px;
            font-weight: 600;

            text-decoration: none;

            transition: all .35s ease;
            overflow: hidden;
        }

        .service-tab-list li a::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;

            background: #293681;

            transform: scaleY(0);
            transform-origin: center;

            transition: .35s ease;
        }

        .service-tab-list li a:hover,
        .service-tab-list li.active a {
            background: #111;
            color: #fff;
            transform: translateX(6px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
        }

        .service-tab-list li:hover a::before,
        .service-tab-list li.active a::before {
            transform: scaleY(1);
        }

        .service-tab-icon {
            width: 32px;
            height: 32px;

            display: flex;
            align-items: center;
            justify-content: center;

            background: #fff;
            color: #293681;

            border-radius: 50%;

            flex-shrink: 0;

            transition: .35s ease;
        }

        .service-tab-list li a:hover .service-tab-icon,
        .service-tab-list li.active .service-tab-icon {
            background: #293681;
            color: #fff;
        }


        /* =========================================
           RIGHT CONTENT
        ========================================= */

        .service-content {
            min-width: 0;
        }

        .service-main-image {
            position: relative;
            overflow: hidden;

            border-radius: 12px;
            margin-bottom: 35px;

            box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
        }

        .service-main-image img {
            width: 100%;
            height: 480px;
            object-fit: cover;
            display: block;

            transition: transform .7s ease;
        }

        .service-main-image:hover img {
            transform: scale(1.05);
        }

        .service-content .section-subtitle {
            margin-bottom: 12px;
        }

        .service-content h2 {
            font-size: 38px;
            line-height: 1.2;
            font-weight: 700;

            margin-bottom: 22px;
        }

        .service-content h2 span {
            color: #293681;
        }

        .service-content p {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 18px;
        }


        /* =========================================
           FEATURES
        ========================================= */

        .service-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;

            margin-top: 30px;
            margin-bottom: 45px;
        }

        .service-feature {
            display: flex;
            align-items: center;
            gap: 12px;

            padding: 15px 18px;

            background: #f7f7f7;
            border-radius: 7px;

            transition: .3s ease;
        }

        .service-feature:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
        }

        .service-feature i {
            color: #293681;
            font-size: 18px;
        }

        .service-feature span {
            font-size: 14px;
            font-weight: 600;
        }


        /* =========================================
           GALLERY
        ========================================= */

        .service-gallery {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;

            margin-top: 45px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;

            border-radius: 10px;

            height: 230px;

            display: block;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;

            object-fit: cover;

            transition: transform .6s ease;
        }

        .gallery-item::after {
            content: "\f00e";

            font-family: "Font Awesome 6 Pro";

            position: absolute;

            left: 50%;
            top: 50%;

            transform: translate(-50%, -50%) scale(.5);

            width: 50px;
            height: 50px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 50%;

            background: #293681;
            color: #fff;

            opacity: 0;

            transition: .35s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item:hover::after {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }


        /* =========================================
           RESPONSIVE
        ========================================= */

        @media (max-width: 991px) {

            .service-layout {
                grid-template-columns: 1fr;
                gap: 35px;
            }

            .service-tabs {
                position: static;
            }

            .service-tab-list {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .service-tab-list li {
                margin-bottom: 0;
            }

            .service-main-image img {
                height: 400px;
            }

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

        }


        @media (max-width: 575px) {

            .service-page-area {
                padding: 60px 0;
            }

            .service-tab-list {
                grid-template-columns: 1fr;
            }

            .service-content h2 {
                font-size: 28px;
            }

            .service-main-image img {
                height: 280px;
            }

            .service-features {
                grid-template-columns: 1fr;
            }

            .service-gallery {
                grid-template-columns: 1fr;
            }

            .gallery-item {
                height: 250px;
            }

        }
