/* Services 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;
}

/* Why Choose Section */
.why-choose-section {
    background-color: #000;
    display: flex;
    flex-wrap: wrap;
    padding: 80px 100px;
    position: relative;
    overflow: hidden;
    color: white;
    min-height: 600px;
}

.why-choose-content {
    width: 60%;
    position: relative;
    z-index: 2;
    padding-right: 40px;
}

.why-choose-heading-container {
    position: relative;
    margin-bottom: 40px;
}

.why-choose-heading-container::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, #03FEF7, #7BFF00);
    top: -15px;
    left: 0;
}

.why-choose-heading {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
    display: flex;
    align-items: center;
}

.gear-icon {
    height: 40px;
    margin: 0 5px;
    position: relative;
    top: -5px;
}

.highlight-text {
    background: linear-gradient(90deg, #7BFF00, #03FEF7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-left: 15px;
}

.growth-partner-tag {
    display: inline-block;
    color: #000;
    /* background-color: #7BFF00; */
    /* border-radius: 30px; */
    padding: 6px 20px;
    /* font-size: 14px; */
    /* font-weight: 600; */
    position: relative;
    margin-top: -15px;
    margin-left: 350px;
}

.why-choose-description {
    margin-bottom: 40px;
}

.why-choose-description p {
    font-size: 16px;
    line-height: 1.7;
    color: #f5f5f5;
}

.services-btn {
    display: inline-block;
    color: #7BFF00;
    border: 1px solid #7BFF00;
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.services-btn:hover {
    background-color: rgba(123, 255, 0, 0.1);
}

.shape-visual {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.shape-image {
    max-width: 100%;
    height: auto;
}

.services-lines {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0.5;
    z-index: 1;
    transform: scaleX(-1);
}

/* 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 */
@media screen and (max-width: 1024px) {
    .why-choose-section {
        padding: 60px 40px;
    }
    
    .why-choose-heading {
        font-size: 48px;
    }
    
    .growth-partner-tag {
        margin-left: 250px;
    }
}

@media screen and (max-width: 768px) {
    .why-choose-section {
        padding: 40px 20px;
    }
    
    .why-choose-content, .shape-visual {
        width: 100%;
    }
    
    .why-choose-content {
        margin-bottom: 40px;
        padding-right: 0;
    }
    
    .why-choose-heading {
        font-size: 36px;
    }
    
    .gear-icon {
        height: 30px;
        top: -4px;
    }
    
    .growth-partner-tag {
        margin-left: 180px;
        font-size: 12px;
        padding: 5px 15px;
    }
    
    .why-choose-description p {
        font-size: 14px;
    }
    
    .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) {
    .why-choose-heading {
        font-size: 30px;
    }
    
    .gear-icon {
        height: 25px;
        top: -3px;
    }
    
    .growth-partner-tag {
        margin-left: 120px;
        font-size: 10px;
        padding: 4px 12px;
    }
    
    .services-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .cta-title {
        font-size: 30px;
    }
    
    .lets-talk-tag {
        font-size: 10px;
    }
}

/* Services Accordion Section */
.services-accordion-section {
    background-color: #000;
    padding: 80px 100px;
    color: white;
    position: relative;
}

.services-accordion-heading {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 60px;
}

.accordion-container {
    max-width: 100%;
}

.accordion-item {
    border-bottom: 1px solid #333;
}

.accordion-header {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.active-text {
    color: #7BFF00;
}

.accordion-arrow {
    font-size: 24px;
    margin-right: 10px;
    color: #7BFF00;
    font-weight: 600;
}

.accordion-item.active .accordion-arrow {
    transform: rotate(90deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
}

.accordion-content.show {
    max-height: 100px;
    padding-bottom: 25px;
}

.accordion-content p {
    max-width: 80%;
}

/* Mobile responsiveness for accordion */
@media screen and (max-width: 1024px) {
    .services-accordion-section {
        padding: 60px 40px;
    }
    
    .services-accordion-heading {
        font-size: 48px;
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 768px) {
    .services-accordion-section {
        padding: 40px 20px;
    }
    
    .services-accordion-heading {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .accordion-header {
        font-size: 16px;
        padding: 20px 0;
    }
}

@media screen and (max-width: 480px) {
    .services-accordion-heading {
        font-size: 30px;
    }
    
    .accordion-header {
        font-size: 14px;
        padding: 15px 0;
    }
    
    .accordion-content {
        font-size: 14px;
    }
} 

.frame-oo-image{
    width: 60px;
}