/* Modern Hero */
.modern-hero {
    position: relative;
    padding: 120px 80px;
    background-color: var(--light-bg);
}

.abouthero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.abouthero-text {
    max-width: 600px;
}

.abouthero-subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.abouthero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.abouthero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.abouthero-image {
    position: relative;
}

.image-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 20px;
    border-radius: 15px;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 30px rgba(255, 154, 118, 0.3);
    z-index: 2;
}

.experience-badge span:first-child {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge span:last-child {
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.3;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%23ffffff" opacity=".25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%23ffffff" opacity=".5"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23ffffff"/></svg>');
    background-size: cover;
    background-repeat: no-repeat;
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background-color: var(--white);
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-light);
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--secondary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
    display: flex;
    margin-bottom: 60px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    flex-direction: row;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    flex-direction: row-reverse;
    text-align: left;
}

.timeline-content {
    flex: 1;
    padding: 20px;
    position: relative;
    border-radius: 15px;
    background-color: var(--light-bg);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.timeline-year {
    position: absolute;
    top: -25px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 0 0 4px var(--white);
}

.timeline-item:nth-child(odd) .timeline-year {
    right: -25px;
}

.timeline-item:nth-child(even) .timeline-year {
    left: -25px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.timeline-image {
    flex: 1;
    padding: 20px;
}

.timeline-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.timeline-image:hover img {
    transform: scale(1.05);
}

/* Approach Section */
.approach-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.section-intro.centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.approach-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.approach-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.approach-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--primary-color);
    transition: height 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.approach-card:hover::after {
    height: 100%;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.approach-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.card-features {
    margin-top: 20px;
}

.card-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.card-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Credentials Section */
.credentials-section {
    padding: 100px 0;
    background-color: var(--white);
}

.credentials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.credentials-image {
    position: relative;
}

.image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    border-radius: 15px;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 30px rgba(0, 104, 56, 0.3);
    z-index: 2;
}

.floating-badge span:first-child {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.floating-badge span:last-child {
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.3;
}

.education-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.education-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.education-details h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.education-details p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Philosophy Section */
.philosophy-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-statement {
    font-size: 1.3rem;
    font-style: italic;
    margin: 40px auto;
    position: relative;
    color: var(--text-color);
    max-width: 700px;
}

.philosophy-statement::before,
.philosophy-statement::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
}

.philosophy-statement::before {
    top: -20px;
    left: -30px;
}

.philosophy-statement::after {
    bottom: -40px;
    right: -30px;
}

.philosophy-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.point-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.point-card:hover {
    transform: translateY(-10px);
}

.point-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.point-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

/* CTA Section */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.cta-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 60px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-light);
}



.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-white:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timeline::before {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
        flex-direction: row !important;
        text-align: left !important;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-item:nth-child(odd) .timeline-year,
    .timeline-item:nth-child(even) .timeline-year {
        left: -25px;
        right: auto;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px;
    }
    
    .cta-action {
        align-items: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .experience-badge,
    .floating-badge {
        width: 100px;
        height: 100px;
    }
    
    .experience-badge span:first-child,
    .floating-badge span:first-child {
        font-size: 1.8rem;
    }
}

.cta-link {
    display: inline;
    background: #e76f51;
    align-items: center;
    margin-left: 11px;
    padding: 16px;
    gap: 10px;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
    border-radius: 11px;
}
.cta-action {
    display: inline;
    flex-direction: column;
    gap: 15px;
}

.cta-card {
    /* background-image: url(images\transformation.jpg); */
    border-radius: 20px;
    padding: 60px;
    display: grid
;
    grid-template-columns: 2fr;
    gap: 6px;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: #006838;
    font-family: montserrat !important;
    line-height: 1;
}
.cta-section p {
    color: rgb(0 104 91);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-section h2 {
    color: #00685b;
    font-size: 2.5rem;
    margin-bottom: 20px;
} 

.cta-action {
    /* display: inline; */
    flex-direction: column;
    gap: 15px;
    align-items: center !important;
}
.cta-content p {
    text-align: center !important;
    font-size: 1.1rem;
    color: var(--text-light);
}
.cta-content h2 {
    text-align: center !important;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}
.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgb(8 108 62 / 40%), hsl(11deg 86.43% 83.76% / 50%)), url(../images/transformation.jpg) no-repeat center center / cover !important;
    color: var(--white);
    text-align: center !important;
}
.image-wrapper img {
    object-fit: cover;
    width: 100%;
    height: 500px;
    display: block;
    transition: transform 0.5s ease;
}
.about-cta {
    padding: 100px 0;
    /* background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); */
    background: linear-gradient(rgb(8 108 62 / 40%), hsl(11deg 86.43% 83.76% / 50%)), url(../images/transformation.jpg) no-repeat center center / cover !important;
}
.philosophy-section {
    padding: 100px 0;
    background-color: #fff3ee !important;
}
.image-container img {
    object-fit: cover !important;
    width: 100%;
    height: 580px !important;
    display: block;
    transition: transform 0.5s ease;
}

.experience-badge {
    display: none !important;
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 20px;
    border-radius: 15px;
    width: 140px;
    height: 140px;
    display: flex
;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 30px rgba(255, 154, 118, 0.3);
    z-index: 2;
}