/* Affiliate Marketing Page Styles */

/* Active navigation link */
nav ul li a.active {
    color: #7BFF00;
    position: relative;
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #7BFF00;
    bottom: -5px;
    left: 0;
}

/* Affiliate Marketing Section */
.affiliate-marketing-section {
    background-color: #000;
    display: flex;
    flex-wrap: wrap;
    padding: 80px 100px;
    position: relative;
    overflow: hidden;
    color: white;
    min-height: 600px;
}

.affiliate-content {
    width: 80%;
    position: relative;
    z-index: 2;
    padding-right: 40px;
}

.affiliate-heading-container {
    position: relative;
    margin-bottom: 40px;
}

.affiliate-heading {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
}

.growth-tag {
    position: absolute;
    top: 5%;
    right: 30%;
    display: inline-block;
    color: #7BFF00;
    /* border: 1px solid #7BFF00; */
    /* border-radius: 30px; */
    padding: 5px 15px;
    font-size: 14px;
    /* background-color: rgba(0, 0, 0, 0.7); */
}


.affiliate-description {
    margin-bottom: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.affiliate-description p {
    font-size: 16px;
    line-height: 1.7;
    max-width: 90%;
}

.scroll-indicator {
    /* margin-bottom: 40px; */
    margin-right: 80px;
}

.scroll-circle {
    width: 60px;
    height: 60px;
    /* border: 2px dashed white; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-circle img {
    width: 150px;
    height: 150px;
}

.how-it-works {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.how-heading {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.teal-text {

    background: linear-gradient(90deg, #03FEF7, #7BFF00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;    /* color: #03FEF7; */
}



.how-it-works p {
    font-size: 16px;
    line-height: 1.7;
    max-width: 90%;
}

.affiliate-visual {
    width: 20%;
    height: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.lime-image {
    max-width: 100%;
    height: auto;
    /* animation: rotate 120s linear infinite; */
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.affiliate-lines {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0.5;
    z-index: 1;
    transform: scaleX(-1);
}

@media screen and (max-width: 1080px){
.growth-tag{
    display: none;
}
}
/* Mobile responsiveness */
@media screen and (max-width: 1024px) {
    .affiliate-marketing-section {
        padding: 40px 60px 40px 100px
    }
    
    .affiliate-heading {
        font-size: 48px;
    }
    
    .growth-tag {
        top: 75px;
        right: 45%;
    }
    
    .how-heading {
        font-size: 36px;
    }
}

@media screen and (max-width: 768px) {
   

    .affiliate-marketing-section {
        padding: 40px 60px 40px 100px
    }
    
    .lime-image{
        display: none;
    }

    .affiliate-content, .affiliate-visual {
        width: 100%;
    }
    
    .affiliate-content {
        margin-bottom: 40px;
        padding-right: 0;
    }
    
    .affiliate-heading {
        font-size: 36px;
    }
    
    .growth-tag {
        top: 50px;
        right: 30%;
        font-size: 12px;
    }
    
    .affiliate-description p, .how-it-works p {
        font-size: 14px;
        max-width: 100%;
    }
    
    .how-heading {
        font-size: 30px;
    }
}

@media screen and (max-width: 480px) {
    .affiliate-heading {
        font-size: 32px;
    }

    .scroll-indicator{
        display: none;
    }
    
    
    .affiliate-marketing-section {
        padding: 40px 60px 40px 40px
    }

    .growth-tag {
        top: 40px;
        right: 20%;
        font-size: 10px;
        padding: 4px 12px;
    }
    
    .scroll-circle {
        width: 50px;
        height: 50px;
    }
    
    .how-heading {
        font-size: 26px;
    }
    
    .how-it-works {
        margin-top: 50px;
    }
}

/* CTA Section */
.cta-section {
    background-color: #000;
    padding: 80px 100px;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.lets-talk-tag {
    display: inline-block;
    color: #7BFF00;
    border: 1px solid #7BFF00;
    border-radius: 30px;
    padding: 5px 15px;
    font-size: 14px;
    margin-bottom: 20px;
}

.cta-title {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 40px;
}

.schedule-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: #7BFF00;
    color: #000;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.schedule-btn:hover {
    background-color: #03FEF7;
}

.arrow-right-schedule {
    width: 40px;
    padding-left: 10px;
    
}

.cta-lines {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.5;
    z-index: 1;
}

/* Mobile responsiveness for CTA section */
@media screen and (max-width: 1024px) {
    .cta-section {
        padding: 60px 40px;
    }
    
    .cta-title {
        font-size: 48px;
    }
}

@media screen and (max-width: 768px) {
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .lets-talk-tag {
        font-size: 12px;
    }
    
    .schedule-btn {
        font-size: 14px;
        padding: 10px 25px;
    }
}

@media screen and (max-width: 480px) {
    .cta-title {
        font-size: 30px;
    }
    
    .lets-talk-tag {
        font-size: 10px;
    }
}

/* Affiliate Steps Section */
.affiliate-steps-section {
    background-color: #000;
    padding: 60px 120px;
    color: white;
    position: relative;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 80px;
    padding-left: 70px;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #7BFF00, #03FEF7);
    left: 30px;
    top: 0;
}

.timeline-item {
    position: relative;
    margin-bottom: 70px;
    display: flex;
}

.timeline-item:last-child {
    margin-bottom: 30px;
}

.timeline-number {
    position: absolute;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    left: -70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 500;
    margin-right: 30px;
    background: #000;
    z-index: 2;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.timeline-number::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    /* background: linear-gradient(to bottom right, #7BFF00, #03FEF7); */
    z-index: -1;
}

.circle-number{
    width: 60px;
}

.timeline-number span {
    position: relative;
    z-index: 3;
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
    max-width: 90%;
}

/* Expect Section */
.expect-section {
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 70px;
}

.expect-button {
    display: inline-block;
    color: #000;
    background-color: #7BFF00;
    border-radius: 30px;
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.expect-content {
    display: flex;
    justify-content: flex-start;
    gap: 80px;
    padding-left: 20px;
}

.expect-column {
    flex: 0 0 auto;
}

.expect-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.bullet {
    color: #7BFF00;
    font-size: 22px;
    margin-right: 10px;
    line-height: 1;
}

.expect-item p {
    font-size: 16px;
    margin: 0;
    line-height: 1.4;
    color: #fff;
}

/* Mobile responsiveness for Affiliate Steps */
@media screen and (max-width: 1024px) {
    .affiliate-steps-section {
        padding: 40px 60px;
    }
    
    .timeline-content h3 {
        font-size: 24px;
    }
    
    .timeline-content p {
        font-size: 14px;
        max-width: 100%;
    }
    
    .expect-content {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .expect-column {
        flex: 0 0 calc(50% - 20px);
    }
}

@media screen and (max-width: 768px) {
    .affiliate-steps-section {
        padding: 30px 40px;
    }
    .circle-number{
        width: 40px;
    }
    
    .timeline {
        padding-left: 40px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
        left: -40px;
    }
    
    .timeline-number::before {
        width: 40px;
        height: 40px;
    }
    
    .timeline-content h3 {
        font-size: 20px;
    }
    
    .expect-column {
        flex: 0 0 100%;
    }
}

@media screen and (max-width: 480px) {
    .expect-section{
        padding-left: 0;
    }
    .affiliate-steps-section {
        padding: 20px;
    }
    .circle-number{
        width: 30px;
    }
    .timeline {
        padding-left: 30px;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-number {
        width: 30px;
        height: 30px;
        font-size: 14px;
        left: -30px;
    }
    
    .timeline-number::before {
        width: 30px;
        height: 30px;
    }
    
    .timeline-content h3 {
        font-size: 18px;
    }
    
    .timeline-content p {
        font-size: 13px;
    }
    
    .expect-button {
        font-size: 12px;
        padding: 6px 15px;
        margin-left:23px;
    }
    
    .expect-item p {
        font-size: 13px;
    }
} 

.per{
    background-color: black;
    border:none;
}

.per-image{
    width: 100%;
}

.sales-increase{
    background-color: black;
}

.sales-increase-heading{
    font-size: 48px;
    padding: 30px 0;
    text-align: center;
    color: white;
}

.sales-increase-grid{
    padding: 0 60px 60px 60px;
}

.case-title{
    color: #7BFF00;
}