/* <!-- who we are CSS --> */
        :root {
            --primary-color: #ff5722;
            --bg-color: #f7f7f7;
            --text-color: #333;
            --border-radius: 12px;
            --transition-speed: 0.5s;
        }

        .gemslider {
            margin: 0;
            padding: 20px;
            background-color: white;
            color: var(--text-color);
            display: flex;
            justify-content: center;
            align-items: center;
            box-sizing: border-box;
            overflow-x: hidden;
        }

        .carousel-wrapper {
            display: flex;
            align-items: center;
            max-width: 1400px; /* Adjusted to give more space for buttons */
            width: 100%;
            padding: 0 40px; /* Added padding to separate buttons from slides */
            box-sizing: border-box;
        }

        .carousel-container {
            position: relative;
            flex-grow: 1; /* Allows container to take up remaining space */
            overflow: hidden;
            padding: 30px 0;
        }

        .slider-track {
            display: flex;
            transition: transform var(--transition-speed) ease-in-out;
            flex-wrap: nowrap;
        }

        .gemslide{
            flex: 0 0 calc(33.333% - 20px);
            margin: 0 10px;
            background-color: var(--bg-color);
            border-radius: var(--border-radius);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            padding: 24px;
            box-sizing: border-box;
            transition: transform var(--transition-speed) ease-in-out, box-shadow var(--transition-speed) ease-in-out;
            min-width: 280px;
            height: 25rem;
        }

        .slide:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 20px rgba(0, 0, 0, 0.15);
        }

        .slide-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
            height: 40%;
        }

        .icon-box, .arrow-box {
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
        }
        .arrow-box {
            width: 40px;
            height: 40px;
        }

        .icon-box {
            width: 100px;
            height: 100px;
        }

        .icon-box {
            background-color: #f7f7f7;
        }

        .arrow-box {
            background-color: var(--primary-color);
            box-shadow: 0 0 10px rgba(255, 87, 34, 0.3);
        }

        .icon-box img {
            width: 72px;
            height: 72px;
            object-fit: contain;
        }
        
        .arrow-box svg {
            width: 32px;
            height: 32px;
            stroke: white;
            stroke-width: 2;
        }

        .slide-content h2 {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 8px;
            color: #333;
            height: 70px;
        }

        .slide-content p {
            font-size: 1rem;
            line-height: 1.6;
            color: #666;
            height: 80px;
        }

        .prev-button, .next-button {
            background-color: var(--bg-color);
            border: none;
            border-radius: 50%;
            width: 45px;
            height: 45px;
            cursor: pointer;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            z-index: 10;
            transition: transform 0.2s ease-in-out;
            display: flex;
            justify-content: center;
            align-items: center;
            outline: none;
            flex-shrink: 0; /* Prevents buttons from shrinking */
        }

        .prev-button {
            margin-right: 20px;
        }

        .next-button {
            margin-left: 20px;
        }

        .prev-button:hover, .next-button:hover {
            transform: scale(1.1);
        }
        
        .prev-button:active, .next-button:active {
            transform: scale(0.95);
        }

        .prev-button svg, .next-button svg {
            width: 24px;
            height: 24px;
            color: var(--primary-color);
        }

        /* --- Media Queries for Responsiveness --- */
        @media (max-width: 1024px) {
            .gemslide{
                flex: 0 0 calc(50% - 20px);
            }
        }
        
        @media (max-width: 768px) {
            .gemslide{
                flex: 0 0 100%;
                margin: 0 10px;
                height: 15rem;
            }
            .slide-content h2 {
                height: 40px;
            }

            .slide-content p {
                height: 50px;
            }
            .carousel-wrapper {
                padding: 0;
            }
            .prev-button, .next-button {
                position: absolute;
                top: auto;
                bottom: -40px;
                transform: none;
            }
            .prev-button {
                left: 20px;
                margin-right: 0;
            }
            .next-button {
                right: 20px;
                margin-left: 0;
            }
        }

/* home css end */

