/* Hero Banner Styles */
/* Updated for GitHub Pages deployment - v1.2 */
.hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background-image: url('../Images/Homepage/HeroBanner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 0 50px;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 70px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 50px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background-color: #6C1A78;
    color: #ffffff;
    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(123, 44, 191, 0.4);
}


.arrow-icon {
    transition: transform 0.3s ease;
}

.hero-button:hover .arrow-icon {
    transform: translate(3px, -3px);
}

/* Responsive Hero Banner */
@media screen and (max-width: 1200px) {
    .hero-title {
        font-size: 70px;
    }
}

@media screen and (max-width: 968px) {
    .hero-banner {
        min-height: 500px;
        height: 80vh;
    }

    .hero-content {
        padding: 0 30px;
        text-align: center;
    }

    .hero-title {
        font-size: 56px;
        margin-bottom: 40px;
    }

    .hero-button {
        font-size: 16px;
        padding: 16px 35px;
    }
}

@media screen and (max-width: 640px) {
    .hero-banner {
        min-height: 100vh;
        height: 100vh;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .hero-content {
        padding: 0 5px;
        text-align: left;
        position: absolute;
        top: 50%;
        left: 20px;
        transform: translateY(-50%);
        z-index: 3;
        max-width: 90%;
    }

    .hero-title {
        font-size: 42px;
        margin-bottom: 30px;
        color: #ffffff;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    }

    .hero-button {
        font-size: 15px;
        padding: 14px 30px;
    }
}

@media screen and (max-width: 480px) {
    .hero-banner {
        min-height: 400px;
        height: 100%;
        background-size: cover;
        background-position: center center;
    }

    .hero-content {
        text-align: left;
        position: absolute;
        top: 50%;
        left: 20px;
        transform: translateY(-50%);
        z-index: 3;
        max-width: 85%;
    }

    .hero-title {
        font-size: 31px;
        margin-bottom: 5px;
        color: #ffffff;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
        
    }

    .hero-button {
        font-size: 14px;
        padding: 12px 25px;
        width: auto;
        max-width: 280px;
        justify-content: center;
    }

    .arrow-icon {
        width: 16px;
        height: 16px;
    }
}

/* Hero Banner End */

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

.about-container {
    max-width: 1600px;
    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);
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s 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 {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s 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: 20px;
    text-align: justify;
    text-align-last: left;
}

.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 slideFromRight {
    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: 60px;
    }

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

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

    .about-container {
        grid-template-columns: 1fr;
        gap: 30px;
        display: flex;
        flex-direction: column;
    }

    .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: 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-image-wrapper.animate-visible,
.about-content.animate-visible {
    opacity: 1;
    transform: translateX(0);
}

.about-image-wrapper.animate-visible { transition-delay: 0.1s; }
.about-content.animate-visible { transition-delay: 0.3s; }

/* About Us Section End */

/* Ongoing Projects Section Styles */
.projects-section {
    padding: 50px;
    background-color: #f8f8f8;
    overflow: hidden;
}

.projects-header {
    text-align: center;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.projects-title {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 20px;
    text-align: center;
}

.projects-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #333333;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    hyphens: none;
    overflow-wrap: normal;
    word-break: keep-all;
}

.projects-slider-container {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}

.projects-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
}

.projects-slider::-webkit-scrollbar {
    display: none;
}

.project-card {
    min-width: 350px;
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateX(100px);
}



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

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

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

.project-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

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

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-info {
    padding: 25px;
}

.project-name {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
}

.project-location {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #000;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.location-icon {
    flex-shrink: 0;
    margin-top: 2px;
    color: #6C1A78;
}

.project-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background-color: #6C1A78;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.project-button:hover {
    background-color: #6C1A78;
    transform: translateX(5px);
}

.project-button svg {
    transition: transform 0.3s ease;
}

.project-button:hover svg {
    transform: translateX(5px);
}

/* Slider Navigation Buttons */
.slider-btn {
    display: none;
}

/* Animations */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Projects Section */
@media screen and (max-width: 1200px) {
    .projects-title {
        font-size: 42px;
    }

    .projects-subtitle {
        font-size: 16px;
    }

    .project-card {
        min-width: 320px;
    }
}

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

    .projects-header {
        margin-bottom: 40px;
    }

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

    .projects-subtitle {
        font-size: 15px;
    }

    .projects-slider-container {
        padding: 0;
    }

    .project-card {
        min-width: 300px;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
    }
}

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

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

    .projects-subtitle {
        font-size: 14px;
    }

    .projects-slider-container {
        padding: 0;
    }

    .projects-slider {
        gap: 20px;
        padding: 20px 20px;
        scroll-snap-type: x mandatory;
    }

    .project-card {
        min-width: calc(100vw - 40px);
        scroll-snap-align: center;
    }

    .project-image {
        height: 220px;
    }

    .project-info {
        padding: 20px;
    }

    .project-name {
        font-size: 18px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }
}

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

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

    .projects-subtitle {
        font-size: 13px;
    }

    .projects-slider-container {
        padding: 0;
    }

    .projects-slider {
        gap: 15px;
        padding: 20px 15px;
        scroll-snap-type: x mandatory;
    }

    .project-card {
        min-width: calc(100vw - 30px);
        scroll-snap-align: center;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
    }

    .slider-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* Projects 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;
}

.stats-right {
    flex: 1;
}

.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;
    hyphens: none;
    overflow-wrap: normal;
    word-break: keep-all;
    text-align-last: left;
}
        
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* 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;
}

.stat-card {
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
}

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

.stat-card:nth-child(1).animate-visible { transition-delay: 0.3s; }
.stat-card:nth-child(2).animate-visible { transition-delay: 0.4s; }
.stat-card:nth-child(3).animate-visible { transition-delay: 0.5s; }
.stat-card:nth-child(4).animate-visible { transition-delay: 0.6s; }


/* 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):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;
    hyphens: none;
    line-height: 1.7;
    overflow-wrap: normal;
    word-break: keep-all;
    text-align-last: left;
}

.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;
}
.building {
    margin-top: 20px;
}
.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);
}

/* Animation for Fade In Up */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    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 */

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

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

.why-choose-title.animate-visible { transition-delay: 0.1s; }
.why-choose-subtitle.animate-visible { transition-delay: 0.2s; }

.why-choose-container {
    max-width: 1600px;
    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;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s 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 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    text-align: center;
    hyphens: none;
    overflow-wrap: normal;
    word-break: keep-all;

}

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

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



.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-card.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.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: 25px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-align: center;
}

.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;
    hyphens: none;
    overflow-wrap: normal;
    word-break: keep-all;
    text-align-last: left;
    word-spacing: -0.5px;
    letter-spacing: 0.2px;
}

.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: 40px;
    }

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

@media screen 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: 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;
    }
}

@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 */

/* Featured Projects Section Styles */
.featured-projects-section {
    padding: 50px;
    background-color: #ffffff;
}

.featured-title.animate-visible,
.featured-subtitle.animate-visible,
.featured-slider-wrapper.animate-visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.featured-title.animate-visible { transition-delay: 0.1s; }
.featured-subtitle.animate-visible { transition-delay: 0.2s; }
.featured-slider-wrapper.animate-visible { transition-delay: 0.3s; }

.featured-container {
    max-width: 1600px;
    margin: 0 auto;
}

.featured-title {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.featured-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #333333;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    hyphens: none;
    overflow-wrap: normal;
    word-break: keep-all;
}

.featured-slider-wrapper {
    overflow: hidden;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.featured-item {
    min-width: calc((100% - 60px) / 3);
    max-width: calc((100% - 60px) / 3);
    flex-shrink: 0;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}



.featured-item:hover {
    transform: translateY(-10px);
}

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

.featured-item:nth-child(1).animate-visible { transition-delay: 0.1s; }
.featured-item:nth-child(2).animate-visible { transition-delay: 0.2s; }
.featured-item:nth-child(3).animate-visible { transition-delay: 0.3s; }
.featured-item:nth-child(4).animate-visible { transition-delay: 0.4s; }
.featured-item:nth-child(5).animate-visible { transition-delay: 0.5s; }
.featured-item:nth-child(6).animate-visible { transition-delay: 0.6s; }

.featured-image {
    width: 100%;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-item:hover .featured-image img {
    transform: scale(1.1);
}

.featured-project-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.featured-project-name {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    line-height: 1.4;
    margin: 0;
}

.featured-project-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666666;
    line-height: 1.4;
}

.featured-project-location .location-icon {
    flex-shrink: 0;
    color: #6C1A78;
}

/* Featured Bottom - Progress Bar, Arrow and View Button */
.featured-bottom {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

/* Progress Bar */
.progress-container {
    flex: 1;
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: #6C1A78;
    width: 50%;
    border-radius: 10px;
    transition: width 0.5s ease;
}

/* Controls Wrapper - Arrow and View Button */
.controls-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

/* Arrow Button - Circle */
.arrow-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #6C1A78;
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(123, 44, 191, 0.3);
    flex-shrink: 0;
}

.arrow-btn:hover {
    background-color: #6C1A78;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(123, 44, 191, 0.5);
}

.arrow-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    opacity: 0.5;
}

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

/* View Project Button */
.view-project-btn {
    display: inline-flex;
    align-items: center;
    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);
}

.view-project-btn:hover {
    background-color: #6C1A78;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 44, 191, 0.5);
}

/* Responsive Featured Projects Section */
@media screen and (max-width: 968px) {
    .featured-projects-section {
        padding: 80px 30px;
    }

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

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

    .featured-item {
        min-width: calc((100% - 30px) / 2);
        max-width: calc((100% - 30px) / 2);
    }

    .featured-image {
        height: 380px;
    }

    .arrow-btn {
        width: 55px;
        height: 55px;
    }
}

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

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

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

    .featured-slider-wrapper {
        overflow: visible;
    }

    .featured-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        transform: none !important;
    }

    .featured-item {
        min-width: 100%;
        max-width: 100%;
    }

    .featured-item:nth-child(n+4) {
        display: none;
    }

    .featured-item:nth-child(n+4).show-mobile {
        display: block;
    }

    .featured-image {
        height: 320px;
    }

    .featured-bottom {
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }

    .progress-container,
    .arrow-btn,
    #prevBtn {
        display: none;
    }

    .controls-wrapper {
        width: 100%;
    }

    .view-project-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
        justify-content: center;
        padding: 16px 40px;
    }

    #mobileViewMore {
        display: inline-flex;
        width: 100%;
        max-width: 300px;
        align-items: center;
        justify-content: center;
        padding: 16px 40px;
        background-color: #6C1A78;
        color: #ffffff;
        font-family: 'Inter', sans-serif;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        border: none;
        border-radius: 8px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(123, 44, 191, 0.3);
        cursor: pointer;
    }

    #mobileViewMore:hover {
        background-color: #6C1A78;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(123, 44, 191, 0.3);
    }

    #mobileViewMore.hidden {
        display: none;
    }
}

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

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

    .featured-image {
        height: 280px;
    }

    .featured-project-name {
        font-size: 16px;
    }

    .featured-project-location {
        font-size: 12px;
    }
}

/* Featured Projects Section End */

/* Testimonials Section Styles */
.testimonials-section {
    padding: 50px;
    background-color: #f8f8f8;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.testimonials-section.animate-visible { transition-delay: 0.1s; }
.testimonials-title.animate-visible { transition-delay: 0.2s; }
.testimonials-subtitle.animate-visible { transition-delay: 0.3s; }

.testimonials-container {
    max-width: 1600px;
    margin: 0 auto;
}

.testimonials-title {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.testimonials-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #333333;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    hyphens: none;
    overflow-wrap: normal;
    word-break: keep-all;
}

.testimonials-slider-wrapper {
    overflow: hidden;
    margin-bottom: 40px;
}

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

.testimonial-card {
    min-width: calc((100% - 10px) / 4);
    max-width: calc((100% - 0px) / 4);
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 40px 30px;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #6C1A78;
}

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

.testimonial-card:nth-child(1).animate-visible { transition-delay: 0.1s; }
.testimonial-card:nth-child(2).animate-visible { transition-delay: 0.2s; }
.testimonial-card:nth-child(3).animate-visible { transition-delay: 0.3s; }
.testimonial-card:nth-child(4).animate-visible { transition-delay: 0.4s; }
.testimonial-card:nth-child(5).animate-visible { transition-delay: 0.5s; }
.testimonial-card:nth-child(6).animate-visible { transition-delay: 0.6s; }
.testimonial-card:nth-child(7).animate-visible { transition-delay: 0.7s; }
.testimonial-card:nth-child(8).animate-visible { transition-delay: 0.8s; }
.testimonial-card:nth-child(9).animate-visible { transition-delay: 0.9s; }
.testimonial-card:nth-child(10).animate-visible { transition-delay: 1.0s; }

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.stars span {
    font-size: 24px;
    color: #FFD700;
}

.testimonial-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #333333;
    text-align: justify;
    hyphens: none;
    line-height: 1.7;
    overflow-wrap: normal;
    word-break: keep-all;
    margin-bottom: 25px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-name {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

.testimonial-arrow:hover {
    background-color: #6C1A78;
    border-color: #6C1A78;
    color: #ffffff;
    transform: scale(1.1);
}

.testimonial-arrow svg {
    width: 24px;
    height: 24px;
}

/* Responsive Testimonials Section */
@media screen and (max-width: 1200px) {
    .testimonial-card {
        min-width: calc((100% - 60px) / 3);
        max-width: calc((100% - 60px) / 3);
    }
}

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

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

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

    .testimonial-card {
        min-width: calc((100% - 30px) / 2);
        max-width: calc((100% - 30px) / 2);
        padding: 35px 25px;
    }

    .testimonial-arrow {
        width: 55px;
        height: 55px;
    }
}

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

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

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

    .testimonials-slider-wrapper {
        margin-left: -20px;
        margin-right: -20px;
        padding: 0 20px;
    }

    .testimonials-grid {
        gap: 20px;
    }

    .testimonial-card {
        min-width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
        padding: 30px 20px;
    }

    .testimonial-arrow {
        width: 50px;
        height: 50px;
    }

    .testimonial-arrow svg {
        width: 20px;
        height: 20px;
    }
}

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

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

    .testimonial-text {
        font-size: 14px;
    }
}

/* Add fade-up animation class */
.fade-up-animation {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

/* Testimonials Section End */

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

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

.cta-title.animate-visible { transition-delay: 0.1s; }
.cta-description.animate-visible { transition-delay: 0.2s; }
.cta-button-wrapper.animate-visible { transition-delay: 0.3s; }

.cta-container {
    max-width: 1600px;
    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;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.cta-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.7;
    margin: 0;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    text-align: justify;
    hyphens: none;
    overflow-wrap: normal;
    word-break: keep-all;
}

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

.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,
.animate-fade-left,
.animate-fade-right,
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-left {
    transform: translateX(-50px);
}

.animate-fade-right {
    transform: translateX(50px);
}

.animate-fade-up {
    transform: translateY(30px);
}

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

.initial-hidden {
    opacity: 0;
}

/* Ensure all elements with animation classes start hidden except stats section content */
.hero-title,
.hero-button,
.about-image-wrapper,
.about-content,
.projects-header,
.why-choose-title,
.why-choose-subtitle,
.feature-card,
.featured-title,
.featured-subtitle,
.featured-slider-wrapper,
.testimonials-section,
.testimonials-title,
.testimonials-subtitle,
.cta-title,
.cta-description,
.cta-button-wrapper {
    opacity: 0;
}

/* Stats section content should start hidden for scroll animations */
.stats-title,
.stats-subtitle,
.stats-container,
.stats-image,
.stats-text-content,
.stats-grid,
.stat-card {
    opacity: 0;
    transform: translateY(30px);
    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,
.stats-text-content.animate-visible,
.stats-grid.animate-visible,
.stat-card.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.stats-title.animate-visible { transition-delay: 0.1s; }
.stats-subtitle.animate-visible { transition-delay: 0.2s; }
.stats-container.animate-visible { transition-delay: 0.3s; }
.stats-image.animate-visible { transition-delay: 0.5s; }
.stats-text-content.animate-visible { transition-delay: 0.1s; }
.stats-grid.animate-visible { transition-delay: 0.2s; }
.stat-card:nth-child(1).animate-visible { transition-delay: 0.3s; }
.stat-card:nth-child(2).animate-visible { transition-delay: 0.4s; }
.stat-card:nth-child(3).animate-visible { transition-delay: 0.5s; }
.stat-card:nth-child(4).animate-visible { transition-delay: 0.6s; }

/* Add delays for sequential animations */
.hero-title.animate-visible { transition-delay: 0.1s; }
.hero-button.animate-visible { transition-delay: 0.3s; }

.about-image-wrapper.animate-visible { transition-delay: 0.1s; }
.about-content.animate-visible { transition-delay: 0.3s; }

.projects-header.animate-visible { transition-delay: 0.1s; }

.why-choose-title.animate-visible { transition-delay: 0.1s; }
.why-choose-subtitle.animate-visible { transition-delay: 0.2s; }
.feature-card:nth-child(1).animate-visible { transition-delay: 0.3s; }
.feature-card:nth-child(2).animate-visible { transition-delay: 0.4s; }
.feature-card:nth-child(3).animate-visible { transition-delay: 0.5s; }

.featured-title.animate-visible { transition-delay: 0.1s; }
.featured-subtitle.animate-visible { transition-delay: 0.2s; }
.featured-slider-wrapper.animate-visible { transition-delay: 0.3s; }

.testimonials-section.animate-visible { transition-delay: 0.1s; }

.cta-title.animate-visible { transition-delay: 0.1s; }
.cta-description.animate-visible { transition-delay: 0.2s; }
.cta-button-wrapper.animate-visible { transition-delay: 0.3s; }

/* Hero Section Animations */
.hero-title.animate-fade-left,
.hero-button.animate-fade-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-button.animate-fade-left {
    transition-delay: 0.3s;
}

.hero-title.animate-fade-left.animate-visible,
.hero-button.animate-fade-left.animate-visible {
    opacity: 1;
    transform: translateX(0);
}

/* About Us Section Animations */
@media screen and (max-width: 968px) {
    .about-image-wrapper {
        opacity: 0;
        transform: translateY(100px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

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

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

/* Ongoing Projects Section Animations */
.projects-header {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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