/* Contact Us Page Styles */

/* Hero Section */
.contact-hero {
    position: relative;
    height: 400px;
    background-image: url('../Images/Completed/Harmony.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #ffffff;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #6C1A78;
}

.separator {
    margin: 0 10px;
    color: #ffffff;
}

.current {
    color: #ffffff;
}

/* About Us Section Styles */
.about-section {
    padding: 50px;
    background-color: #ffffff;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    animation: slideUp 3s ease-out;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: transform 0.5s ease;
}

.about-image:hover {
    transform: scale(1.05);
}

.about-content {
    animation: slideFromLeft 3s ease-out;
}

.about-title {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 30px;
}

.about-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 1.7;
    margin-bottom: 35px;
    text-align: justify;
    text-align-last: left;
    hyphens: none;
    overflow-wrap: normal;
    word-break: keep-all;
}

.about-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #6C1A78;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(123, 44, 191, 0.3);
}

.about-button:hover {
    background-color: #6C1A78;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(123, 44, 191, 0.5);
}

/* Animations */
@keyframes slideFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive About Us Section */
@media screen and (max-width: 1200px) {
    .about-container {
        gap: 40px;
    }

    .about-title {
        font-size: 42px;
    }
}

@media screen and (max-width: 968px) {
    .about-section {
        padding: 80px 30px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image-wrapper {
        order: 2;
    }

    .about-content {
        order: 1;
        text-align: center;
    }

    .about-title {
        font-size: 38px;
    }

    .about-description {
        font-size: 15px;
        text-align: center;
    }
}

@media screen and (max-width: 640px) {
    .about-section {
        padding: 60px 20px;
    }

    .about-container {
        gap: 40px;
    }

    .about-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .about-description {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .about-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .about-section {
        padding: 50px 20px;
    }

    .about-title {
        font-size: 28px;
    }

    .about-description {
        font-size: 13px;
        line-height: 1.7;
        text-align : justify;
    }

    .about-button {
        padding: 14px 35px;
        font-size: 15px;
    }
}

/* About Us Section End */



/* Stats/Counter Section Styles */
.stats-section {
    padding: 50px;
    background-color: #ffffff;
}

.stats-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
}

.stats-left {
    flex: 1;
    animation: slideFromLeft 1s ease-out;
}

.stats-right {
    flex: 1;
    animation: slideFromLeft 1s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.stats-text-content {
    margin-bottom: 40px;
}

.stats-title {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 20px;
}

.stats-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #333;
    margin-top: 0;
    margin-bottom: 0;
    text-align: justify;
    text-align-last: left;
    hyphens: none;
    overflow-wrap: normal;
    word-break: keep-all;
}
        
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
    cursor: pointer;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

/* Desktop view color pattern: 1st white, 2nd purple, 3rd purple, 4th white */
.stats-grid .stat-card:nth-child(1) {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    color: #000000;
}

.stats-grid .stat-card:nth-child(2) {
    background-color: #6C1A78;
    color: #ffffff;
}

.stats-grid .stat-card:nth-child(3) {
    background-color: #6C1A78;
    color: #ffffff;
}

.stats-grid .stat-card:nth-child(4) {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    color: #000000;
}

/* Hover Effects */
.stats-grid .stat-card:hover {
    transform: translateY(-10px);
}

.stats-grid .stat-card:nth-child(1):hover,
.stats-grid .stat-card:nth-child(4):hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stats-grid .stat-card:nth-child(2):hover,
.stats-grid .stat-card:nth-child(3):hover {
    box-shadow: 0 15px 40px rgba(123, 44, 191, 0.3);
}

/* Mobile hover effects */
@media screen and (max-width: 640px) {
    .stats-grid .stat-card:nth-child(odd) {
        background-color: #ffffff;
        border: 2px solid #e0e0e0;
        color: #000000;
    }
    
    .stats-grid .stat-card:nth-child(even) {
        background-color: #6C1A78;
        color: #ffffff;
    }
    
    .stats-grid .stat-card:nth-child(odd):hover {
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }
    
    .stats-grid .stat-card:nth-child(even):hover {
        box-shadow: 0 15px 40px rgba(123, 44, 191, 0.3);
    }
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid currentColor;
    transition: color 0.4s ease;
    text-align: left;
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 64px;
    font-weight: 700;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    justify-content: left;
    gap: 5px;
}

.counter {
    display: inline-block;
}

.plus {
    font-size: 55px;
    margin-top: 5px;
}

.stat-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
    transition: color 0.4s ease;
    text-align: justify;
    line-height: 1.7;
    text-align-last: left;
    hyphens: none;
    overflow-wrap: normal;
    word-break: keep-all;
}

.stats-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    animation: slideUp 1s ease-out;
    margin-top: 150px;
    height: 500px;
}


.stats-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.stats-image:hover img {
    transform: scale(1.05);
}

.building{
    margin-top: 20px;
}
/* Animation for Fade In Up */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Stats Section */
@media screen and (max-width: 1200px) {
    .stats-container {
        gap: 60px;
    }

    .stats-title {
        font-size: 42px;
    }

    .stat-number {
        font-size: 56px;
    }
}

@media screen and (max-width: 968px) {
    .stats-section {
        padding: 80px 30px;
    }

    .stats-container {
        flex-direction: column;
        gap: 50px;
    }

    .stats-right {
        order: 2;
    }

    .stats-left {
        order: 1;
    }

    .stats-title {
        font-size: 38px;
        margin-bottom: 30px;
    }

    .stat-number {
        font-size: 48px;
    }
}

@media screen and (max-width: 640px) {
    .stats-section {
        padding: 60px 20px;
    }

    .stats-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .stats-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 42px;
    }

    .plus {
        font-size: 36px;
    }
    
    /* Mobile view: alternating white and purple */
    .stats-grid .stat-card:nth-child(odd) {
        background-color: #ffffff;
        border: 2px solid #e0e0e0;
        color: #000000;
    }

    .stats-grid .stat-card:nth-child(even) {
        background-color: #6C1A78;
        color: #ffffff;
    }
}

@media screen and (max-width: 480px) {
    .stats-section {
        padding: 20px;
    }

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

    .stat-label {
        font-size: 16px;
    }

    .stat-number {
        font-size: 45px;
    }

    .stat-description {
        font-size: 14px;
    }
    .stats-text-content {
        flex-direction: column;
        gap: 10px;
    }
    .stats-subtitle {
        margin-left: 1px;
    }
   .stats-container{
    align-items: normal;
   }
    .stats-image {
    margin-top: 20px;
    height: 400px;
}
}

/* Stats Section End */


/* Leadership Section Styles */
.leadership-section {
    padding: 50px 0px;
    background-color: #ffffff;
}

.leadership-container {
    max-width: 1600px; /* Increased from 1400px to match desktop standard */
    margin: 0 auto;
    display: flex;
    height: 600px; /* Increased height to accommodate larger images */
}



.leadership-purple-panel {
    width: 30%;
    background-color: #6C1A78;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px; /* Increased padding */
}

.purple-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: flex-start;
}

.purple-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    text-align: left;
}

.purple-controls {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    align-items: center;
    justify-content: center;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background-color: #ffffff;
    color: #6C1A78;
    transform: scale(1.1);
}

.control-btn svg {
    width: 24px;
    height: 24px;
}

.leadership-white-panel {
    width: 70%;
    background-color: #ffffff;
    padding: 50px; /* Increased padding */
    position: relative;
    overflow: hidden;
}

.leaders-grid {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}


.leader-card {
    min-width: calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 500px; /* Increased height for larger images */
}


/* Mobile view adjustments */
@media screen and (max-width: 768px) {
    .leader-card {
        min-width: calc(100% - 20px); /* One card takes almost full width */
        max-width: calc(100% - 20px);
        margin: 0 10px; /* Add some margin on sides */
        height: 450px; /* Adjust height for mobile */
    }
    
    /* Show only one card at a time on mobile */
    .leaders-grid {
        gap: 0; /* Remove gap to show one card at a time */
        padding: 0 10px; /* Add padding to center the card */
    }
    
    /* Adjust container for mobile */
    .leadership-white-panel {
        overflow-x: hidden; /* Hide horizontal scrollbar */
        padding: 20px 0; /* Adjust padding */
    }
    
    /* Adjust container height for mobile */
    .leadership-container {
        height: 500px; /* Adjust height for mobile */
    }
    
    /* Adjust purple title for mobile */
    .purple-title {
        font-size: 16px; /* Smaller font size for mobile */
    }
    .control-btn {
    width: 40px;
    height: 40px;
    }
}

.leader-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.leader-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.leader-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    transform: scale(1.15); /* Increased scale for larger images */
}





.leader-card:hover .leader-image-wrapper img {
    transform: scale(1.25); /* Further increased scale effect for larger images */
}

.leader-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none; /* Allow clicks to pass through to the image */
}

.leader-image-wrapper:hover .leader-overlay {
    opacity: 1;
}



.leader-info {
    text-align: center;
    padding: 15px;
    width: 100%;
}

.leader-name {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 5px 0;
}

.leader-designation {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    margin: 0;
}

/* Responsive Leadership Section */






/* Leadership Section End */


/* Why Choose Us Section Styles */
.why-choose-section {
    padding: 50px;
    background-color: #f8f8f8;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.why-choose-title {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: 2px;
    animation: fadeInDown 0.8s ease-out;
}

.why-choose-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #333333;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 30px;
    animation: fadeInDown 0.8s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
    hyphens: none;
    overflow-wrap: normal;
    word-break: keep-all;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.feature-card {
    padding: 50px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.feature-card:nth-child(1) { transition-delay: 0.1s; }
.feature-card:nth-child(2) { transition-delay: 0.2s; }
.feature-card:nth-child(3) { transition-delay: 0.3s; }

.feature-white {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
}

.feature-purple {
    background-color: #6C1A78;
    color: #ffffff;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-purple:hover {
    box-shadow: 0 15px 40px #6C1A78;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.4s ease;
}

.feature-white .feature-icon {
    background-color: #6C1A78;
}

.feature-white .feature-icon svg {
    stroke: #ffffff;
}

.feature-purple .feature-icon {
    background-color: #ffffff;
}

.feature-purple .feature-icon svg {
    stroke: #6C1A78;
}

.feature-title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.feature-white .feature-title {
    color: #000000;
}

.feature-purple .feature-title {
    color: #ffffff;
}
/* 
.feature-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    text-align: justify;
    text-align-last: left;
    hyphens: none;
    overflow-wrap: normal;
    word-break: keep-all;
} */

.feature-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    text-align: justify;
    text-align-last: left;
    text-justify: inter-word;
    word-spacing: -0.50px;
    /* letter-spacing: 0.2px; */
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
}


.feature-white .feature-description {
    color: #333333;
}

.feature-purple .feature-description {
    color: #ffffff;
}

/* Responsive Why Choose Us Section */
@media screen and (max-width: 1200px) {
    .why-choose-title {
        font-size: 42px;
    }

    .why-choose-subtitle {
        font-size: 16px;
    }
}

@media screen and (min-width: 641px) and (max-width: 968px) {
    .why-choose-section {
        padding: 80px 30px;
    }

    .why-choose-title {
        font-size: 36px;
    }

    .why-choose-subtitle {
        font-size: 15px;
        margin-bottom: 50px;
    }

    .features-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 25px;
    }
}

@media screen and (max-width: 640px) {
    .why-choose-section {
        padding: 80px 30px;
    }

    .why-choose-title {
        font-size: 36px;
    }

    .why-choose-subtitle {
        font-size: 15px;
        margin-bottom: 50px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media screen and (max-width: 640px) {
    .why-choose-section {
        padding: 60px 20px;
    }

    .why-choose-title {
        font-size: 28px;
    }

    .why-choose-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
        text-align: justify;
    }

    .feature-card {
        padding: 40px 25px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
    }

    .feature-icon svg {
        width: 40px;
        height: 40px;
    }

    .feature-title {
        font-size: 20px;
        text-align: center;
    }

    .feature-description {
        font-size: 14px;
        text-align: justify;
        text-align-last: left;
        word-break: normal;
        overflow-wrap: break-word;
        letter-spacing: 0.15px;
    }
}

@media screen and (max-width: 480px) {
    .why-choose-section {
        padding: 50px 20px;
    }

    .why-choose-title {
        font-size: 24px;
    }

    .feature-card {
        padding: 35px 20px;
    }
}

/* Why Choose Us Section End */



/* CTA Section Styles */
.cta-section {
    background: #6C1A78;
    padding: 80px 50px;
    margin: 0;
}

.cta-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-content {
    flex: 1;
    max-width: 800px;
}

.cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
    text-align-last: left;
    hyphens: none;
    overflow-wrap: normal;
    word-break: keep-all;
}

.cta-button-wrapper {
    flex-shrink: 0;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background-color: #ffffff;
    color: #6C1A78;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive CTA Styles */
@media screen and (max-width: 968px) {
    .cta-section {
        padding: 60px 30px;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .cta-content {
        max-width: 100%;
    }

    .cta-title {
        font-size: 36px;
    }

    .cta-description {
        font-size: 16px;
        text-align: justify;
    }

    .cta-button {
        padding: 16px 40px;
        font-size: 16px;
    }
}

@media screen and (max-width: 640px) {
    .cta-section {
        padding: 50px 20px;
    }

    .cta-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .cta-description {
        font-size: 15px;
    }

    .cta-button {
        padding: 14px 35px;
        font-size: 15px;
        width: 100%;
        max-width: 300px;
    }
}

@media screen and (max-width: 480px) {
    .cta-section {
        padding: 40px 20px;
    }

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

    .cta-description {
        font-size: 14px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* Add scroll animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* About Us Section Animations */
.about-image-wrapper {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about-content {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about-image-wrapper.animate-visible,
.about-content.animate-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stats Section Animations */
.stats-title {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.stats-subtitle {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.stats-container {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.stats-image {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.stats-title.animate-visible,
.stats-subtitle.animate-visible,
.stats-container.animate-visible,
.stats-image.animate-visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* Leadership Section Animations */
.leadership-purple-panel {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.leaders-grid {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.leadership-purple-panel.animate-visible,
.leaders-grid.animate-visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* Why Choose Us Section Animations */
.why-choose-title,
.why-choose-subtitle {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.why-choose-title.animate-visible,
.why-choose-subtitle.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.feature-card.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:nth-child(1) { transition-delay: 0.1s; }
.feature-card:nth-child(2) { transition-delay: 0.2s; }
.feature-card:nth-child(3) { transition-delay: 0.3s; }

.feature-card:nth-child(1).animate-visible { transition-delay: 0.1s; }
.feature-card:nth-child(2).animate-visible { transition-delay: 0.2s; }
.feature-card:nth-child(3).animate-visible { transition-delay: 0.3s; }

/* CTA Section Animations */
.cta-title,
.cta-description {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.cta-button-wrapper {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.cta-title.animate-visible,
.cta-description.animate-visible,
.cta-button-wrapper.animate-visible {
    opacity: 1;
    transform: translateX(0);
}
