<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

@font-face {
  font-family: Mont-Heavy;
  src: url(fonts/Mont-Heavy.otf);
}

@font-face {
  font-family: DefaultSans;
  src: url(fonts/DefaultSans.ttf);
}


        .carousel-1-wrapper {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: white;
repeat: none;
            padding: 40px 20px;
            position: relative;
            overflow-x: hidden;
        }

        /* Background decorative elements */
        .carousel-1-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            background-size: cover;
            pointer-events: none;
            z-index: 0;
        }

        .carousel-1-container {
            max-width: 1300px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* Header Section */
        .carousel-1-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .carousel-1-header-accent {
            width: 40px;
            height: 4px;
            background: linear-gradient(90deg, #00c853, #69f0ae);
            margin: 0 auto 15px;
            border-radius: 2px;
        }

        .carousel-1-header-subtitle {
            color: #6f7376;
            font-size: 16px;
            font-style: italic;
            margin-bottom: 10px;
font-family: DefaultSans;
        }

        .carousel-1-header-title {
            color: #13691d;
            font-size: 42px;
            font-weight: 700;
            line-height: 1.3;
font-family: Mont-Heavy;
        }

        /* Cards Grid */
        .carousel-1-services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        /* Service Card */
        .carousel-1-service-card {
            position: relative;
            padding-bottom: 30px;
        }

        .carousel-1-card-image-wrapper {
            width: 100%;
            height: 280px;
            border-radius: 20px;
            overflow: hidden;
        }

        .carousel-1-card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .carousel-1-card-content {
            position: relative;
            background: white;
            border-radius: 15px;
            padding: 30px 20px 25px;
            margin: -80px 15px 0 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            z-index: 2;
        }

        .carousel-1-card-icon {
            position: absolute;
            top: -25px;
            left: 20px;
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, #13691d, #4caf50);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            box-shadow: #00000054;
        }

        .carousel-1-card-title {
            color: #13691d;
            font-size: 20px;
            font-weight: 600;
            margin-top: 15px;
            margin-bottom: 12px;
font-family: Mont-Heavy;
        }

        .carousel-1-card-description {
            color: #666;
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 18px;
font-family: DefaultSans;
        }

        .carousel-1-read-more-btn {
            display: inline-block;
            padding: 10px 25px;
  border: 2px solid #13691d;
    color: #247427;
            text-decoration: none;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            background: transparent;
            cursor: pointer;
font-family: Mont-Heavy;
        }

        .carousel-1-read-more-btn:hover {
            background: #1a237e;
            color: white;
        }

        /* Scroll to top button */
        .carousel-1-scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #1565c0, #1e88e5);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(21, 101, 192, 0.4);
            transition: transform 0.3s ease;
            z-index: 1000;
        }

        .carousel-1-scroll-top:hover {
            transform: translateY(-3px);
        }



        .carousel-1-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ccc;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .carousel-1-dot.carousel-1-active {
            background: #1565c0;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .carousel-1-services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .carousel-1-header-title {
                font-size: 36px;
            }
        }

        @media (max-width: 768px) {
            .carousel-1-header-title {
                font-size: 28px;
            }

            .carousel-1-services-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }

            .carousel-1-card-image-wrapper {
                height: 250px;
            }

            .carousel-1-wrapper {
                padding: 30px 15px;
            }
        }

        @media (max-width: 480px) {
            .carousel-1-header-title {
                font-size: 24px;
            }

            .carousel-1-header-subtitle {
                font-size: 14px;
            }

            .carousel-1-card-content {
                padding: 25px 15px 20px;
                margin: -70px 10px 0 10px;
            }

            .carousel-1-card-title {
                font-size: 18px;
            }

            .carousel-1-scroll-top {
                bottom: 20px;
                right: 20px;
                width: 40px;
                height: 40px;
            }
        }
    </style>