/* Case Studies 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;
}

/* Case Study Hero Section */
.case-study-hero {
    background-color: #000;
    display: flex;
    flex-wrap: wrap;
    padding: 80px 100px;
    position: relative;
    overflow: hidden;
    color: white;
    min-height: 600px;
}

.case-study-content {
    width: 50%;
    position: relative;
    z-index: 2;
    padding-right: 40px;
}

.case-study-tag {
    display: inline-block;
    color: #7BFF00;
    border: 1px solid #7BFF00;
    border-radius: 30px;
    padding: 5px 15px;
    font-size: 14px;
    margin-bottom: 30px;
}

.case-study-heading {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.1;
    position: relative;
}

.case-study-heading::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, #7BFF00, transparent);
    bottom: -15px;
    left: 0;
}

.case-study-description {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
    margin-top: 40px;
}

.scroll-indicator {
    flex-shrink: 0;
}

.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: 80px;
    /* height: 24px; */
}

.case-study-description p {
    font-size: 16px;
    line-height: 1.7;
    max-width: 90%;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background-color: #03FEF7;
    color: #000;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    min-width: 160px;
}

.read-more-btn:hover {
    background-color: #7BFF00;
}

.circle-small {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: white; */
    border-radius: 50%;
}

.circle-small img {
    width: 40px;
    padding-left: 10px;
}

.case-study-visual {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.card-container {
    background-color: #000;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border: 2px solid #7BFF00;
    /* padding: 20px; */
    max-width: 90%;
    /* box-shadow: 0 0 30px rgba(123, 255, 0, 0.2); */
    border-bottom: none;
}

.hand-mobile-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.case-study-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) {
    .case-study-hero, .cta-section {
        padding: 60px 40px;
    }
    
    .case-study-heading {
        font-size: 48px;
    }
}

@media screen and (max-width: 768px) {
    .case-study-hero, .cta-section {
        padding: 40px 20px;
    }
    
    .case-study-content, .case-study-visual {
        width: 100%;
    }
    
    .case-study-content {
        margin-bottom: 40px;
        padding-right: 0;
    }
    
    .case-study-heading {
        font-size: 36px;
    }
    
    .case-study-description p {
        font-size: 14px;
        max-width: 100%;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .lets-talk-tag {
        font-size: 12px;
    }
    
    .schedule-btn, .read-more-btn {
        font-size: 14px;
        padding: 10px 25px;
    }
}

@media screen and (max-width: 480px) {
    .case-study-heading {
        font-size: 32px;
    }
    
    .case-study-tag {
        font-size: 12px;
        padding: 4px 12px;
    }
    
    .scroll-circle {
        width: 50px;
        height: 50px;
    }
    
    .cta-title {
        font-size: 30px;
    }
    
    .lets-talk-tag {
        font-size: 10px;
    }
}

/* Objectives Section */
.objectives-section {
    background-color: #000;
    padding: 80px 100px;
    color: white;
    position: relative;
}

.objectives-container {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.objectives-left {
    flex: 0 0 45%;
}

.objectives-heading {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 50px;
}

.objective-item {
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #333;
    text-transform: uppercase;
}

.objective-item:last-child {
    border-bottom: none;
}

.objective-item p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    max-width: 90%;
}

.objectives-right {
    flex: 0 0 45%;
    margin-top: 10px;
}

.actions-tag {
    display: inline-block;
    color: #000;
    background-color: #7BFF00;
    border-radius: 30px;
    padding: 5px 18px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
}

.actions-list {
    list-style: none;
    padding: 0;
    text-transform: uppercase;
}

.actions-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 22px;
}

.actions-list li::before {
    content: '•';
    color: #7BFF00;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
}

.actions-list p {
    font-size: 16px;
    line-height: 1.6;
    color: #f5f5f5;
    margin: 0;
}

/* Mobile responsiveness for objectives section */
@media screen and (max-width: 1024px) {
    .objectives-section {
        padding: 60px 40px;
    }
    
    .objectives-heading {
        font-size: 48px;
        margin-bottom: 40px;
    }
    
    .objectives-container {
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .objectives-section {
        padding: 40px 20px;
    }
    
    .objectives-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .objectives-heading {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .objective-item p {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .objectives-heading {
        font-size: 30px;
    }
    
    .objective-item p {
        font-size: 15px;
    }
    
    .actions-tag {
        font-size: 12px;
        padding: 5px 15px;
    }
    
    .actions-list p {
        font-size: 14px;
    }
}

/* Results Section */
.results-section {
    background-color: #000;
    padding: 80px 100px;
    color: white;
    position: relative;
}

.results-heading {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 60px;
    color: #03FEF7;
}

.results-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.result-card {
    flex: 1;
    border: 1px solid #7BFF00;
    border-radius: 10px;
    padding: 40px 30px;
    background-color: #000;
    position: relative;
}

.result-percentage {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 20px;
}

.result-description {
    font-size: 16px;
    line-height: 1.6;
    color: #f5f5f5;
}

/* Our Cases Section */
.our-cases-section {
    background-color: #000;
    padding: 80px 100px;
    color: white;
    position: relative;
}

.our-cases-section::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 2px;
    background-color: #03FEF7;
    top: 0;
    left: 100px;
}

.our-cases-container {
    max-width: 1200px;
    margin: 0 auto;
}

.our-cases-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.our-cases-heading {
    font-size: 60px;
    font-weight: 800;
}

.our-cases-right {
    flex: 0 0 55%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.our-cases-description {
    font-size: 16px;
    line-height: 1.6;
    color: #f5f5f5;
    margin-bottom: 20px;
}

.contact-us-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background-color: #03FEF7;
    color: #000;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    align-self: flex-end;
    width: 200px;
    margin: auto auto;
}

.contact-us-btn:hover {
    background-color: #7BFF00;
}

.case-cards-container {
    display: flex;
    gap: 30px;
}

.case-card {
    flex: 1;
    border: 1px solid #7BFF00;
    border-radius: 10px;
    background-color: #000;
    position: relative;
    overflow: hidden;
  
}

.case-card-image {
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0C0C0C;
    overflow: hidden;
}

.case-card-image img {
    max-width: 70%;
    height: auto;
}

.case-card-content {
    padding: 30px;
}

.case-card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.case-card-description {
    font-size: 16px;
    line-height: 1.6;
    color: #f5f5f5;
    margin-bottom: 20px;
}

.learn-more-link {
    color: #7BFF00;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

.learn-more-link:hover {
    text-decoration: underline;
}

/* Mobile responsiveness for results and cases sections */
@media screen and (max-width: 1024px) {
    .results-section, .our-cases-section {
        padding: 60px 40px;
    }
    
    .results-heading, .our-cases-heading {
        font-size: 48px;
        margin-bottom: 40px;
    }
    
    .our-cases-section::before {
        left: 40px;
    }
}

@media screen and (max-width: 768px) {
    .results-section, .our-cases-section {
        padding: 40px 20px;
    }
    
    .results-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .results-heading, .our-cases-heading {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .result-percentage {
        font-size: 48px;
    }
    
    .our-cases-section::before {
        left: 20px;
        width: 150px;
    }
    
    .our-cases-top {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .our-cases-right {
        flex: auto;
    }
    
    .case-cards-container {
        flex-direction: column;
        gap: 20px;
    }
}

@media screen and (max-width: 480px) {
    .results-heading, .our-cases-heading {
        font-size: 30px;
    }
    
    .result-percentage {
        font-size: 36px;
    }
    
    .result-description, .case-card-description {
        font-size: 14px;
    }
    
    .case-card-title {
        font-size: 20px;
    }
    
    .contact-us-btn {
        width: 100%;
    }
} 