.inner-content-product-h6 .inner h2.title {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 15px;
}

.inner-content-product-h6 .inner p,
.inner-content-product-h6 .inner ul li {
    font-size: 14px;
    line-height: 1.5;
}

.inner-content-product-h6 .inner ul {
    padding-left: 15px;
    margin-bottom: 10px;
}

.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .inner-content-product-h6 .inner h2.title {
        font-size: 20px;
    }

    .inner-content-product-h6 .inner p,
    .inner-content-product-h6 .inner ul li {
        font-size: 12px;
    }
}

    /* Global font ayarları */
    body {
        font-family: 'ProximaNova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        font-weight: 400;
    }


    /* Header spacing fix */
    .header-area {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        background: rgba(255, 255, 255, 1) !important;
        backdrop-filter: blur(5px);
        padding: 4px 0;
        transition: all 0.3s ease;
    }

    /* Scroll durumunda da beyaz kalması için */
    .header-area.scrolled,
    .header-area.sticky,
    .header-area.fixed-header,
    .header-area[class*="scroll"] {
        background: rgba(255, 255, 255, 1) !important;
    }

    .header-area *,
    .header-area.scrolled *,
    .header-area.sticky *,
    .header-area.fixed-header * {
        color: #000 !important;
    }

    .header-area .navbar-brand,
    .header-area .nav-link,
    .header-area .navbar-toggler,
    .header-area .btn,
    .header-area.scrolled .navbar-brand,
    .header-area.scrolled .nav-link,
    .header-area.scrolled .navbar-toggler,
    .header-area.scrolled .btn {
        color: #000 !important;
    }

    /* Logo rengi */
    .header-area .navbar-brand img {
        filter: brightness(0) saturate(100%) !important;
    }

    /* Dropdown menü stilleri */
    .header-area .dropdown-menu {
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(0, 0, 0, 0.1) !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
    }

    .header-area .dropdown-item {
        color: #000 !important;
        transition: all 0.3s ease;
    }

    .header-area .dropdown-item:hover {
        background: rgba(0, 0, 0, 0.05) !important;
        color: #000 !important;
    }

    /* Mobile hamburger menü - güçlendirilmiş */
    .header-area .navbar-toggler,
    .header-area.scrolled .navbar-toggler {
        border: 1px solid #000 !important;
        padding: 4px 8px;
        background: transparent !important;
    }

    .header-area .navbar-toggler-icon,
    .header-area.scrolled .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
        filter: none !important;
    }

    /* Mobile collapse menü arka planı */
    .header-area .navbar-collapse {
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(10px);
        margin-top: 10px;
        border-radius: 8px;
        padding: 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 10000;
        position: relative;
    }

    /* Navbar açık olduğunda z-index */
    .header-area .navbar-collapse.show {
        z-index: 10001;
    }

    /* Nav link hover efektleri */
    .header-area .nav-link:hover {
        color: #333 !important;
        text-decoration: underline;
    }


    #homepage-slider-custom * {
        box-sizing: border-box;
    }

    #homepage-slider-custom {
        height: 95vh;
        min-height: 600px;
        display: flex;
        position: relative;
        gap: 8px;
        padding: 16px;
        color: white;
        overflow: hidden;
        padding-top: 33px;
    }

    #homepage-slider-custom .slide {
        flex: 0 0 80px;
        height: 100%;
        border-radius: 12px;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        transition: all 0.8s cubic-bezier(0.4, 0.2, 0.4, 1);
        background-size: cover;
        background-position: center;
        background-blend-mode: overlay;
    }

    #homepage-slider-custom .slide.active {
        flex: 1;
        cursor: default;
    }

    #homepage-slider-custom .slide:hover:not(.active) {
        flex: 0 0 120px;
        transition: all 0.4s cubic-bezier(0.4, 0.2, 0.4, 1);
    }

    #homepage-slider-custom .slide-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        transition: background 0.3s ease;
    }

    #homepage-slider-custom .slide.active .slide-overlay {
        background: rgba(0, 0, 0, 0.5);
    }

    #homepage-slider-custom .slide-content {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        padding: 24px 80px 24px 40px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 80%;
        max-width: 1200px;
        text-align: left;
        margin: 0 auto;
    }

    #homepage-slider-custom .slide-icon {
        position: absolute;
        bottom: 24px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.2);
        border: 2px solid white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.6s ease;
        opacity: 1;
    }

    #homepage-slider-custom .slide.active .slide-icon {
        opacity: 0;
        visibility: hidden;
        transform: translateX(-50%) scale(0.8);
    }

    #homepage-slider-custom .slide-icon::before {
        content: '+';
        color: white;
        font-size: 20px;
        font-weight: 300;
    }

    #homepage-slider-custom .slide-title {
        position: absolute;
        right: 24px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 12px;
        font-weight: 600;
        white-space: nowrap;
        transition: all 0.8s cubic-bezier(0.4, 0.2, 0.4, 1);
        opacity: 1;
        writing-mode: vertical-rl;
        text-orientation: mixed;
        transform: translateY(-50%) rotate(180deg);
        color: white;
    }

    #homepage-slider-custom .slide.active .slide-title {
        writing-mode: initial;
        text-orientation: initial;
        transform: none;
        position: static;
        font-size: clamp(40px, 5vw, 60px);
        font-weight: 400;
        margin-bottom: 20px;
        line-height: 1.2;
        opacity: 1;
        animation: fadeInUp 0.8s ease-out 0.1s both;
        color: white;
        white-space: normal;
        word-wrap: break-word;
        max-width: 100%;
    }

    #homepage-slider-custom .slide-description {
        opacity: 0;
        transition: all 0.8s cubic-bezier(0.4, 0.2, 0.4, 1);
        font-size: clamp(16px, 1.4vw, 20px);
        line-height: 1.5;
        margin-bottom: 28px;
        max-width: 580px;
        color: rgba(255, 255, 255, 0.95);
        font-weight: 400;
        white-space: normal;
        word-wrap: break-word;
    }

    #homepage-slider-custom .slide.active .slide-description {
        opacity: 1;
        animation: fadeInUp 0.8s ease-out 0.3s both;
    }

    #homepage-slider-custom .slide-links {
        opacity: 0;
        transition: all 0.9s cubic-bezier(0.4, 0.2, 0.4, 1);
    }

    #homepage-slider-custom .slide.active .slide-links {
        opacity: 1;
        animation: fadeInUp 0.8s ease-out 0.5s both;
    }

    #homepage-slider-custom .slide-links h3 {
        color: white;
        font-weight: 600;
        font-size: 14px;
        margin-bottom: 16px;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    #homepage-slider-custom .slide-links ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 14px;
        margin-bottom: 28px;
    }

    #homepage-slider-custom .slide-links li {
        position: relative;
        padding-left: 18px;
    }

    #homepage-slider-custom .slide-links li::before {
        content: '→';
        position: absolute;
        left: 0;
        top: 0;
        opacity: 0;
        transition: opacity 0.3s ease;
        color: white;
    }

    #homepage-slider-custom .slide-links li:hover::before {
        opacity: 1;
    }

    #homepage-slider-custom .slide-links a {
        color: #000;
        text-decoration: none;
        font-size: clamp(16px, 1.4vw, 16px);
        font-weight: 400;
        transition: all 0.3s ease;
    }

    #homepage-slider-custom .slide-links a:hover {
        background-color: #000;
        color: #fff;
    }

    #homepage-slider-custom .view-service-btn {
        background: rgba(255, 255, 255, 0.95);
        color: #333;
        padding: 16px 32px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 50px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        opacity: 1;
        transition: none;
    }

    #homepage-slider-custom .slide.active .slide-links {
        opacity: 1;
        animation: none;
    }

    #homepage-slider-custom .slide-number {
        position: absolute;
        top: 80px;
        left: 24px;
        font-size: 12px;
        opacity: 0.8;
        color: white;
        font-weight: 600;
    }

    #homepage-slider-custom .slide.active .slide-number {
        opacity: 1;
    }

    #homepage-slider-custom .progress-bar {
        position: absolute;
        bottom: 24px;
        left: 24px;
        right: 24px;
        height: 2px;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 2px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    #homepage-slider-custom .slide.active .progress-bar {
        opacity: 1;
    }

    @keyframes homepage-slider-progress {
        from {
            width: 0;
        }

        to {
            width: 100%;
        }
    }

    #homepage-slider-custom .consultation-card {
        position: absolute;
        right: 24px;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.95);
        color: #333;
        padding: 18px;
        border-radius: 12px;
        width: 300px;
        opacity: 0;
        transform: translateY(-50%) translateX(50px);
        transition: all 1s cubic-bezier(0.4, 0.2, 0.4, 1);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(10px);
    }

    #homepage-slider-custom .slide.active .consultation-card {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
        transition-delay: 0.8s;
    }

    #homepage-slider-custom .consultation-card h3 {
        font-size: 14px;
        margin-bottom: 8px;
        font-weight: 600;
    }

    #homepage-slider-custom .consultation-card .btn {
        background: #333;
        color: white;
        padding: 8px 16px;
        border: none;
        border-radius: 24px;
        font-size: 11px;
        cursor: pointer;
        margin-top: 12px;
        font-weight: 600;
    }

    #homepage-slider-custom .consultation-video {
        width: 90px;
        height: 55px;
        background: #f0f0f0;
        border-radius: 8px;
        margin-bottom: 12px;
        position: relative;
        overflow: hidden;
    }

    #homepage-slider-custom .consultation-video::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 0;
        height: 0;
        border-left: 10px solid #333;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
    }

    #homepage-slider-custom .logos-grid {
        display: flex;
        gap: 16px;
        margin-bottom: 24px;
        flex-wrap: wrap;
    }

    #homepage-slider-custom .logo-item {
        width: 70px;
        height: 35px;
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 9px;
        text-align: center;
        color: white;
        font-weight: 500;
    }

    /* Mobile responsiveness */
    @media (max-width: 1024px) {
        #homepage-slider-custom {
            height: 75vh;
            min-height: 550px;
        }

        #homepage-slider-custom .consultation-card {
            width: 260px;
        }
    }

    @media (max-width: 768px) {
        body {
            padding-top: 50px;
        }

        #homepage-slider-custom {
            flex-direction: row;
            height: 80vh;
            min-height: 80vh;
            gap: 12px;
            padding: 0 16px;
            margin-top: -50px;
            padding-top: 60px;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        #homepage-slider-custom::-webkit-scrollbar {
            display: none;
        }

        #homepage-slider-custom .slide {
            flex: 0 0 85vw !important;
            height: 100%;
            scroll-snap-align: center;
            cursor: grab;
            border-radius: 16px;
            transition: none !important;
        }

        #homepage-slider-custom .slide:active {
            cursor: grabbing;
        }

        #homepage-slider-custom .slide.active {
            flex: 0 0 85vw !important;
            cursor: grab !important;
        }

        #homepage-slider-custom .slide:hover {
            flex: 0 0 85vw !important;
            transition: none !important;
        }

        #homepage-slider-custom .slide-overlay {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
        }

        #homepage-slider-custom .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            top: auto;
            transform: none;
            padding: 32px 24px 80px 24px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
            text-align: left;
            max-width: none;
            height: auto;
            margin: 0;
        }

        #homepage-slider-custom .slide-number {
            position: absolute;
            top: 80px;
            left: 24px;
            font-size: 14px;
            opacity: 0.9 !important;
            color: white;
            font-weight: 700;
            background: rgba(255, 255, 255, 0.15);
            padding: 6px 12px;
            border-radius: 20px;
        }

        #homepage-slider-custom .slide.active .slide-number {
            opacity: 0.9 !important;
        }

        #homepage-slider-custom .slide-title {
            writing-mode: initial !important;
            text-orientation: initial !important;
            transform: none !important;
            position: static !important;
            font-size: clamp(24px, 6vw, 32px) !important;
            margin-bottom: 12px !important;
            color: white !important;
            font-weight: 300 !important;
            line-height: 1.2 !important;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
            opacity: 1 !important;
            transition: none !important;
            animation: none !important;
            white-space: normal !important;
            word-wrap: break-word !important;
            max-width: 100% !important;
        }

        #homepage-slider-custom .slide.active .slide-title {
            font-size: clamp(24px, 6vw, 32px) !important;
            margin-bottom: 12px !important;
            animation: none !important;
            transition: none !important;
            opacity: 1 !important;
        }

        #homepage-slider-custom .slide-description {
            font-size: 14px !important;
            line-height: 1.5 !important;
            margin-bottom: 20px !important;
            color: rgba(255, 255, 255, 0.95) !important;
            max-width: 100% !important;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) !important;
            opacity: 1 !important;
            transition: none !important;
            animation: none !important;
        }

        #homepage-slider-custom .slide.active .slide-description {
            opacity: 1 !important;
            animation: none !important;
            transition: none !important;
        }

        #homepage-slider-custom .slide-links {
            display: none !important;
            opacity: 1 !important;
            transition: none !important;
            animation: none !important;
        }

        #homepage-slider-custom .view-service-btn {
            background: rgba(255, 255, 255, 0.95) !important;
            color: #333 !important;
            padding: 12px 24px !important;
            font-size: 13px !important;
            font-weight: 600 !important;
            border-radius: 50px !important;
            border: 1px solid rgba(255, 255, 255, 0.2) !important;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
            opacity: 1 !important;
            transition: all 0.3s ease !important;
            animation: none !important;
        }

        #homepage-slider-custom .slide.active .slide-links {
            opacity: 1 !important;
            animation: none !important;
            transition: none !important;
        }

        #homepage-slider-custom .view-service-btn:hover {
            background: white !important;
            transform: translateY(-2px) !important;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4) !important;
        }

        #homepage-slider-custom .slide-icon {
            display: none !important;
            opacity: 0 !important;
            visibility: hidden !important;
        }

        #homepage-slider-custom .slide.active .slide-icon {
            display: none !important;
            opacity: 0 !important;
            visibility: hidden !important;
        }

        #homepage-slider-custom .consultation-card {
            display: none !important;
        }

        #homepage-slider-custom .progress-bar {
            display: none !important;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        #homepage-slider-custom {
            touch-action: pan-x;
        }

        #homepage-slider-custom .scroll-indicator {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 20;
        }

        #homepage-slider-custom .scroll-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            transition: all 0.3s ease;
        }

        #homepage-slider-custom .scroll-dot.active {
            background: white;
            transform: scale(1.2);
        }
    }

    @media (max-width: 480px) {
        #homepage-slider-custom {
            padding-top: 50px;
            margin-bottom: 60px;
        }

        #homepage-slider-custom .slide-content {
            padding: 32px 20px 100px 20px;
        }

        #homepage-slider-custom .slide-number {
            top: 80px;
            left: 20px;
            font-size: 12px;
            padding: 4px 10px;
        }

        #homepage-slider-custom .slide-title {
            font-size: clamp(24px, 7vw, 30px) !important;
            margin-bottom: 12px !important;
        }

        #homepage-slider-custom .slide.active .slide-title {
            font-size: clamp(24px, 7vw, 30px) !important;
            margin-bottom: 12px !important;
        }

        #homepage-slider-custom .slide-description {
            font-size: 14px !important;
            margin-bottom: 20px !important;
        }

        #homepage-slider-custom .view-service-btn {
            padding: 12px 24px !important;
            font-size: 13px !important;
        }

        .large-image-option-start.rts_jump_counter__animation .container {
            margin-top: -20px !important;
        }

        .large-video-playing.grow {
            height: 40vh !important;
            min-height: 300px !important;
        }

        .large-video-playing.grow video {
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important;
        }

        .header-area .logo img {
            display: none !important;
        }

        .header-area .logo::after {
            content: "GrowOn" !important;
            font-size: 24px !important;
            font-weight: 700 !important;
            color: #000 !important;
            display: inline-block !important;
        }
    }

    @media (max-width: 768px) and (min-width: 481px) {
        #homepage-slider-custom {
            margin-bottom: 40px;
        }

        .large-video-playing.grow {
            height: 50vh !important;
            min-height: 400px !important;
        }

        .large-video-playing.grow video {
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important;
        }

        .header-area .logo img {
            display: none !important;
        }

        .header-area .logo::after {
            content: "GrowOn" !important;
            font-size: 28px !important;
            font-weight: 700 !important;
            color: #000 !important;
            display: inline-block !important;
        }
    }

    @media (max-width: 991px) {
        .large-image-option-start.rts_jump_counter__animation .container {
            margin-top: -60px;
        }
    }

    @media (max-width: 768px) {
        .large-image-option-start.rts_jump_counter__animation .container {
            margin-top: -40px;
        }

        .counter-up-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            max-width: 100%;
        }

        .counter-single {
            background: #fff;
            border-radius: 12px;
            padding: 24px 16px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid #f0f0f0;
            transition: all 0.3s ease;
        }

        .counter-single:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }

        .counter-single .inner .title {
            font-size: 28px;
            margin-bottom: 8px;
            color: #333;
            font-weight: 700;
        }

        .counter-single .inner p {
            font-size: 14px;
            color: #666;
            margin-bottom: 0;
            font-weight: 500;
        }
    }

    @media (max-width: 480px) {
        .large-image-option-start.rts_jump_counter__animation .container {
            margin-top: -20px;
        }

        .counter-up-wrapper {
            gap: 16px;
        }

        .counter-single {
            padding: 20px 12px;
        }

        .counter-single .inner .title {
            font-size: 24px;
            margin-bottom: 6px;
        }

        .counter-single .inner p {
            font-size: 13px;
        }
    }

    @media (max-width: 375px) {
        .counter-up-wrapper {
            gap: 12px;
        }

        .counter-single {
            padding: 18px 10px;
        }

        .counter-single .inner .title {
            font-size: 22px;
        }

        .counter-single .inner p {
            font-size: 12px;
        }
    }

    .rts-about-area-1 .title,
    .rts-about-area-1 h2,
    .rts-about-area-1 .quote {
        color: #181818 !important;
    }

    .rts-about-area-1 p,
    .rts-about-area-1 .disc {
        color: #333 !important;
    }

    .rts-about-area-1 .progress-bottom .name,
    .rts-about-area-1 .progress-bottom .parcent {
        color: #222 !important;
    }


.service-area-one-main-wrapper .single-item-service-one {
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .title-top-service-varticle br {
        display: none;
    }

    .title-top-service-varticle p {
        line-height: 1.6;
    }
}

@media (max-width: 768px) {
    .service-area-one-main-wrapper {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .service-area-one-main-wrapper .single-item-service-one {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        border: 1px solid #f0f0f0;
    }

    .service-area-one-main-wrapper .single-item-service-one a {
        display: block;
        padding: 0;
        text-decoration: none;
        color: inherit;
    }

    .service-area-one-main-wrapper .rts-img-contaciner {
        width: 100%;
        height: 180px;
        overflow: hidden;
    }

    .service-area-one-main-wrapper .rts-img-contaciner .list-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin: 0;
    }

    .service-area-one-main-wrapper .single-item-service-one .list-title,
    .service-area-one-main-wrapper .single-item-service-one .list-info {
        width: 100%;
        padding: 20px;
        padding-bottom: 0;
    }

    .service-area-one-main-wrapper .single-item-service-one .list-title {
        padding-bottom: 10px;
    }

    .service-area-one-main-wrapper .single-item-service-one .list-title h3 {
        font-size: 20px;
        margin-bottom: 0;
        color: #333;
        font-weight: 600;
    }

    .service-area-one-main-wrapper .single-item-service-one .list-info {
        padding-top: 0;
        padding-bottom: 15px;
    }

    .service-area-one-main-wrapper .single-item-service-one .list-info .disc {
        color: #666;
        margin-bottom: 0;
        line-height: 1.5;
    }

    .service-area-one-main-wrapper .single-item-service-one .list-info .disc br {
        display: none;
    }

    .service-area-one-main-wrapper .single-item-service-one .button-area {
        position: absolute;
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: #333;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .service-area-one-main-wrapper .single-item-service-one .button-area svg {
        width: 18px;
        height: 18px;
        fill: white;
    }

    .service-area-one-main-wrapper .single-item-service-one:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

    .service-area-one-main-wrapper .single-item-service-one:hover .button-area {
        background: #000;
        transform: scale(1.1);
    }

    .service-area-one-main-wrapper .single-item-service-one {
        position: relative;
    }
}

@media (max-width: 480px) {
    .service-area-one-main-wrapper {
        gap: 16px;
    }

    .service-area-one-main-wrapper .rts-img-contaciner {
        height: 160px;
    }

    .service-area-one-main-wrapper .single-item-service-one .list-title,
    .service-area-one-main-wrapper .single-item-service-one .list-info {
        padding: 16px;
    }

    .service-area-one-main-wrapper .single-item-service-one .list-title {
        padding-bottom: 8px;
    }

    .service-area-one-main-wrapper .single-item-service-one .list-info {
        padding-top: 0;
        padding-bottom: 12px;
    }

    .service-area-one-main-wrapper .single-item-service-one .list-title h3 {
        font-size: 18px;
    }

    .service-area-one-main-wrapper .single-item-service-one .button-area {
        bottom: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
    }

    .service-area-one-main-wrapper .single-item-service-one .button-area svg {
        width: 16px;
        height: 16px;
    }
}

.inner span {
    color: #000 !important;
}

.inner p {
    margin-bottom: 16px !important;
}

.thumbnail.rts-team__item {
    display: block;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.thumbnail.rts-team__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.thumbnail.rts-team__item:hover {
    transform: translateY(-5px);
}

@media (max-width: 991px) {
    .thumbnail.rts-team__item {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .thumbnail.rts-team__item {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .thumbnail.rts-team__item {
        height: 200px;
    }
}

.row {
    margin-bottom: 80px;
}

.row:last-child {
    margin-bottom: 0;
}

.inner-content-product-h6 ul {
    list-style: none;
    padding: 0;
}

.inner-content-product-h6 ul li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.inner-content-product-h6 ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

@media (max-width: 768px) {
    .learn-more-btn i {
        font-size: 11px !important;
        width: 50px;
        height: 50px;
    }
}




