/* 
Theme Name:		Hello Elementor Child
Theme URI:		https://elementor.com/
Description:	Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author:			Elementor Team
Author URI:		https://elementor.com/
Template:		hello-elementor
Version:		1.0.0
Text Domain:	hello-elementor-child
Tags:           flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/





/*--------------------------------------------------------------
GSAP Scroll Progress Section
--------------------------------------------------------------*/
.gsap-scroll-progress-wrapper {
    position: relative;
    width: 100%;
    /* Height is set dynamically by JavaScript based on number of sections */
}

.scroll-section-pinned {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #f5f5f5;
}

.scroll-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.circle-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    display: none;
    opacity: 0;
}

/* SVG Progress Ring */
.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.progress-ring-bg {
    fill: none;
    stroke: #e0e0e0;
    stroke-width: 3;
}

.progress-ring-circle {
    fill: none;
    stroke: #FF6B35;
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.1s linear;
}

/* Content Inside Circle */
.content-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 340px;
    padding: 25px;
}

.section-number {
    font-size: 18px;
    font-weight: 600;
    color: #FF6B35;
    margin-bottom: 10px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #FF6B35;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.section-description {
    font-size: 13px;
    line-height: 1.6;
    color: #333;
    margin: 0 0 20px 0;
}

.learn-more-btn {
    display: inline-block;
    padding: 10px 24px;
    background: #FF6B35;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.learn-more-btn:hover {
    background: #e55a25;
    color: #fff;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .circle-container {
        width: 380px;
        height: 380px;
    }

    .content-inner {
        width: 280px;
        padding: 20px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-description {
        font-size: 12px;
    }
}

@media screen and (max-width: 480px) {
    .circle-container {
        width: 300px;
        height: 300px;
    }

    .content-inner {
        width: 220px;
        padding: 15px;
    }

    .section-title {
        font-size: 20px;
    }

    .section-description {
        font-size: 11px;
    }

    .learn-more-btn {
        padding: 8px 18px;
        font-size: 12px;
    }
}

/*--------------------------------------------------------------
GSAP Scroll Stepper Section
--------------------------------------------------------------*/
.gsap-scroll-stepper-wrapper {
    position: relative;
    width: 100%;
}

.scroll-stepper-pinned {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #f5f5f5 url('https://syn03cd.syd6.hostyourservices.net/~techtorq/wp-content/uploads/2026/01/circles-background.svg') center center no-repeat;
    background-size: cover;
}

.scroll-stepper-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.stepper-circle-wrapper {
    position: relative;
    width: 450px;
    height: 450px;
    margin: 0 auto;
}

/* SVG Progress Ring */
.stepper-progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.stepper-progress-ring-bg {
    fill: none;
    stroke: #e0e0e0;
    stroke-width: 3;
}

.stepper-progress-ring-circle {
    fill: none;
    stroke: #FF6B35;
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.1s linear;
}

/* Inner Content */
.stepper-inner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 340px;
}

/* Stepper List */
.stepper-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* Item Styling */
.stepper-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.stepper-number {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
    display: none;
}

.stepper-item.active .stepper-number {
    display: block;
}

.stepper-title {
    font-size: 16px;
    font-weight: 500;
    color: #999;
    margin: 0;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.stepper-item.active .stepper-title {
    color: #FF6B35;
    font-size: 28px;
    font-weight: 700;
    font-style: italic;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .stepper-circle-wrapper {
        width: 380px;
        height: 380px;
    }

    .stepper-inner-content {
        width: 280px;
    }

    .stepper-number {
        font-size: 20px;
    }

    .stepper-title {
        font-size: 14px;
    }

    .stepper-item.active .stepper-title {
        font-size: 24px;
    }
}

@media screen and (max-width: 480px) {
    .stepper-circle-wrapper {
        width: 300px;
        height: 300px;
    }

    .stepper-inner-content {
        width: 220px;
    }

    .stepper-number {
        font-size: 18px;
    }

    .stepper-title {
        font-size: 13px;
    }

    .stepper-item.active .stepper-title {
        font-size: 20px;
    }
}