:root {
   --color-primary: #00478F;
   --color-primary-text: #fff;

    --color-primary-light: #CADBFF;
    
    --color-primary-light-text: #1e1e1e;

    --color-accent: #E4572E;
    --color-accent-text: #fff;
    
}

body,html{
    background: #f8f9fa;
    padding: 0;
    margin: 0;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

h1,h2,h3,h4,h5{
    font-family: "Playfair Display", serif;
}


/*/////////////////////////////////////////////////////////////////////*/
/* Hero Segment */

.hero-parent{
    position: relative;
}

.hero {
    position: relative;
    width: 100vw;
    height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-gradient{
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-image: radial-gradient(
        circle at 50% 50%,
        rgba(0, 0, 0, 0.8),
        rgba(11, 39, 65, 0.6) 30%,
        rgba(0, 0, 0, 0.2)
    );
    z-index: 2;
}


.hero-overlay {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    max-width: 90vw;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1.2s ease-out 0.3s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-overlay h1,
.hero-overlay p,
.hero-overlay .contact-btn {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1.2s ease-out forwards;
}
.hero-overlay h1 {
    animation-delay: 0.4s;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.hero-overlay p {
    animation-delay: 0.6s;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.hero-overlay .contact-btn {
    animation-delay: 0.8s;
    padding: 0.8em 2em;
    font-size: 1.1rem;
    background: var(--color-accent);
    color: var(--color-accent-text);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: background 0.2s;
}
.hero-overlay .contact-btn:hover {
    background: var(--color-accent);
}

.company-history {
    position: absolute;

    left:0;
    right: 0;
    bottom: 0;

    width: 80vw;
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 2rem;
    transform: translateY(0%);
    z-index: 3;
}
.history-item {
    flex: 1;
    text-align: center;
}
.history-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}
.history-label {
    font-size: 1.1rem;
    color: #333;
}



/* Max Width */
@media (max-width: 900px) {

    .hero{
        height: 100vh;
    }
    

    .company-history {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1rem;
        transform: translateY(80%);
    }
    
    .history-item {
        margin-bottom: 0.5rem;
    }

    @keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(-40px);
    }
}
}




/*/////////////////////////////////////////////////////////////////////*/
/* Product Pagee */


.home-product-parent-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        min-height: 100vh;
        width: 100vw;
        background: linear-gradient(to right, #EBF5FF 50%, #D6EBFF 50%);
        padding: 128px 0 36px 0;
    }

    .home-product-title-desc {
        width: 90%;
        text-align: center;
        margin-bottom: 64px;
        z-index: 2;
    }
    .home-product-title-desc h1 {
        font-size: 2.5rem;
        color: var(--color-primary);
        margin-bottom: 16px;
    }
    .home-product-title-desc p {
        font-size: 1.2rem;
        color: #3a506b;
        margin: 0;
    }
    .product-image-labels-container {
        position: relative;
        width: 550px;
        height: 450px;
        margin: 64px auto 0px auto;
        z-index: 2;
    }
    .product-image {
        width: 700px;
        height: 700px;
        object-fit: contain;
        display: block;
        margin: 0 auto;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
    }
    .product-label {
        position: absolute;
        background: #fff;
        color: var(--color-primary);
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 1rem;
        font-weight: 500;
        text-decoration: none;
        box-shadow: 0 2px 8px rgba(33, 118, 174, 0.08);
        transition: background 0.2s, color 0.2s, transform 0.25s cubic-bezier(0.4,0,0.2,1), opacity 0.5s;
        z-index: 2;
        opacity: 0;
        transform: translateX(-40px) scale(0.96);
        animation: product-label-fade-in 0.7s forwards;
    }
    .product-label:hover {
        background: var(--color-primary);
        color: #fff;
        transform: scale(1.08);
    }
    /* Staggered animation delays for each product-label */
    .product-label-1 { animation-delay: 0.05s; top: 0; left: 70%; transform: translate(-50%, -50%); }
    .product-label-2 { animation-delay: 0.15s; top: 20%; right: -30%; transform: translate(50%, -50%); }
    .product-label-3 { animation-delay: 0.25s; top: 60%; right: -40%; transform: translate(50%, -50%); }
    .product-label-4 { animation-delay: 0.35s; bottom: 0; left: 70%; transform: translate(-50%, 50%); }
    .product-label-5 { animation-delay: 0.45s; top: 80%; left: -20%; transform: translate(-50%, -50%); }
    .product-label-6 { animation-delay: 0.55s; top: 30%; left: -50%; transform: translate(-50%, -50%); }
    .product-label-7 { animation-delay: 0.55s; top: 0; left: 0; transform: translate(-50%, -50%); }

    @keyframes product-label-fade-in {
        from {
        opacity: 0;
        transform: translateX(-40px) scale(0.96);
        }
        to {
        opacity: 1;
        transform: translateX(0) scale(1);
        }
    }
    @media (max-width: 900px) {
        .home-product-parent-container { padding: 220px 0 0px 0; }
        .home-product-title-desc { width: 90%; }
        .product-image-labels-container { 
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0px;
            position: static;
            height: auto;
            margin: 32px 0 0 0;
        }
        .product-image { 
            width: 100%; 
            height: auto;
            max-width: 400px;
            margin: 0 auto 24px auto;
            position: static;
            transform: none;
            display: block;
        }
        .product-label { 
            position: static;
            display: block;
            width: 100%;
            font-size: 1rem; 
            padding: 20px 0; 
            margin: 0;
            border-bottom: 1px solid rgba(33, 118, 174,0.2);
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(33, 118, 174, 0.08);
            background: #fff;
            color: var(--color-primary);
            text-align: center;
            opacity: 1;
            transform: none;
            animation: none;
            transition: background 0.2s, color 0.2s, transform 0.25s cubic-bezier(0.4,0,0.2,1), opacity 0.5s;
        }
        .product-label:hover {
            background: var(--color-primary);
            color: #fff;
            transform: scale(1.03);
        }
        /* Remove product-label-x specific styles for mobile */
        .product-label-1, .product-label-2, .product-label-3, .product-label-4, .product-label-5, .product-label-6, .product-label-7 {
            animation-delay: 0s;
            top: auto; left: auto; right: auto; bottom: auto;
            transform: none;
        }
    }



/*/////////////////////////////////////////////////////////////////////*/
/* About us Section */    


    .about-section {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 70vh;
        padding: 36px 64px;
        background: #f8f9fa;
        gap: 0px;
        
    }
    .about-left {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 16px;

        
    }
    .about-title {
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 24px;
        color: var(--color-primary);
    }
    .about-details {
        font-size: 1.1rem;
        color: #444;
        margin-bottom: 32px;
        line-height: 1.7;
    }
    .read-more-btn {
        padding: 12px 32px;
        width: 30%;
        text-align: center;
        align-items: center;
        background: var(--color-accent);
        color: #fff;
        border: none;
        border-radius: 24px;
        font-size: 1rem;
        text-decoration: none;
        transition: background 0.2s;
        cursor: pointer;
    }
    .read-more-btn:hover {
        background: var(--color-primary);
    }
    .about-image-container {
        flex: 1;

        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;

        
    }

    .about-image-container > div{
        position: relative;
        height: 400px;
    }
    .about-image {
        height: 100%;
        width: 80%;

        align-self: center;

        object-fit: cover;
        border-radius: 24px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.12);
        display: block;
        margin: 0 auto;
        position: relative;
        z-index: 1;
        background: #ddd;
    }
    .fact-card {
        position: absolute;
        right: -20px;
        width: 220px;
        background: #fff;
        box-shadow: 0 4px 24px rgba(0,0,0,0.10);
        border-radius: 16px;
        padding: 24px 20px;
        font-size: 1rem;
        color: #222;
        opacity: 0;
        transition: left 0.7s cubic-bezier(.77,0,.18,1), opacity 0.7s;
        z-index: 2;
    }
    .fact-card.top {
        top: 10%;
    }
    .fact-card.bottom {
        bottom: 10%;
    }
    .about-section.active .fact-card {
        left: -20px;
        opacity: 1;
    }

    @media (max-width: 900px) {
        .about-section {
            flex-direction: column;
            gap: 24px;
            height: 100vh;
            padding: 64px 16px 24px 16px;
        }
        .about-left, .about-right {
            max-width: 100%;
            padding: 0px;
        }
        .about-right {
            min-width: 0;
            min-height: 300px;
        }
        .about-image {
            width: 100%;
            height: 60vw;
            min-height: 200px;
        }
        .fact-card {
            width: 40%;
            left: 0vw;
            padding: 12px 8px;
        }
        .about-section.active .fact-card.top{
            left: 50vw;
        }

        .about-section.active .fact-card.bottom{
            left: 0;
        }

        .fact-card.top {
            top: 10%;
        }
        .fact-card.bottom {
            bottom: 20%;
        }

    }




/*/////////////////////////////////////////////////////////////////////*/
/* Service Icon */    


.services-section{
    background: #000A14;
    align-items: center;
    padding: 64px 64px;   
}

.services-section > h1{
    margin-bottom: 64px;
    text-align: center;
    color: var(--color-accent-text);
    font-size: 2rem;
}

.service-grid-container{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 36px;
    align-items: stretch;
    
}

.service-card { 
    display: flex;
    flex-direction: column;
    background: #0e1316;
    justify-self: center;
    max-height: 300px;
    border-radius: 12px;
    padding: 26px 20px 20px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.service-title {
    margin-top: 12px;
    margin-bottom: 10px;
    font-size: 1.18rem;
    font-weight: 600;
    color: #f7fafc;
    letter-spacing: 0.02em;
}
.service-desc {
    font-size: 0.98rem;
    color: #b5b5b5;
    line-height: 1.5;
}


.service-icon{
    font-size:36px !important;
    color: var(--color-accent);
}

@media (max-width: 700px) {

    .services-section{
        padding: 24px;
    }

    .services-section > h1{
        margin-bottom: 64px;
    }

    .service-grid-container{
    display: grid;
    grid-template-columns: repeat(1,1fr);
    row-gap: 36px;
    }

    .service-card {
        width: 90%;
    }
}






/* Client Testimonials */

.feedback-container{
        background: #F4F7FF;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 64px 0px;
        }

.feedback-container > h1{
    font-size: 1.5rem;
    color: var(--color-accent);
}

.feedback-slider-container {
    display: flex;
    flex-direction: row;
    align-items:center;
    padding: 64px;
}
.feedback-main {
    border-radius: 12px;
    
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    min-width: 320px;
}



.feedback-content-container{
    flex: 3;
    text-align: start;
    padding: 36px 64px;
}

.feedback-main-img{
    display: flex;
    overflow: hidden;
    margin: 24px;
    flex: 2;
    align-items: end;
    justify-content: end;   
}

.feedback-main-img img {
    height:400px;
    width: 300px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.feedback-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #222;
}
.feedback-text {
    font-size: 1.5rem;
    line-height: 130%;
    letter-spacing: 0.25px;
    font-weight: 400;

    color: #555;
    text-align: start;
    margin-bottom: 64px;
}
.feedback-author {
    font-size: 0.95rem;
    color: #888;
    margin-top: 12px;
}

.feedback-logo-list-container {
    flex: 1;
    padding: 8px 0;
    
    border-radius: 12px;
    
}
.feedback-logo-list {
    display: flex;
    gap: 64px;
    align-items: center;
    padding: 0 0px;
    justify-content: center;

}
.feedback-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    position: relative;
    width: 60px;
    border-radius: 4px;
}
.feedback-logo-img {
    width: 100px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    border-radius: 2px;
    border: 2px solid transparent;
    background: #f0f0f0;
    transition: border 0.2s;
}
.feedback-logo-item.active .feedback-logo-img {
    border: 2px solid #007bff;
    background: #eaf4ff;
}
.progress-bar {
    position: absolute;
    top: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
}
.progress-bar-inner {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #E4572E, #E4572E);
    transition: width 0.1s linear;
}

.feedback-arrow-icon{
font-size:36px !important;
color: #E4572E;
text-align: center;
justify-content: center;
}

#arrow-back, #arrow-next{
    padding: 12px;
}

#arrow-back:hover, #arrow-next:hover{
    cursor: pointer;
    color: var(--color-primary);
}




    @media (max-width: 900px) {

        .feedback-slider-container {
            flex-direction: row;
            gap: 8px;
            margin-top: 12px;
            padding: 24px;
        }
        .feedback-main {
            
            flex-direction:column !important;
            min-width: 0;
            padding: 0;
        }

        .feedback-content-container{
            padding: 36px;
        }

        .feedback-text {
            font-size: 1.2rem;
            margin-bottom: 32px;
        }

        .feedback-feedback-main-img {
            margin: 0 0 16px 0;
            justify-content: center;
            align-items: center;
            width: 100%;
        }
        .feedback-main-img img {
            width: 90vw;
            max-width: 320px;
            height: 220px;
            border-radius: 16px;
        }
        .feedback-content-container {
            flex-direction: column;
            padding: 16px;
            text-align: center;
        }
        .feedback-title,
        .feedback-text,
        .feedback-author,
        .feedback-author-designation {
            text-align: center;
        }
        .feedback-logo-list-container {
            padding: 8px 0;
        }
        .feedback-logo-list {
            gap: 12px;
            padding: 0;
            justify-content: center;
        }
        .feedback-logo-item {
            width: 16px;
            height: 16px;
            min-width: 16px;
            min-height: 16px;
            border-radius: 50%;
            background: transparent;
            padding: 0;
            margin: 0;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .feedback-logo-img,
        .progress-bar {
            display: none !important;
        }
        .feedback-logo-item::before {
            content: '';
            display: block;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #bbb;
            transition: background 0.2s;
        }
        .feedback-logo-item.active::before {
            background: #E4572E;
        }


        .feedback-arrow-icon{
            display: none;
            visibility: gone;
        }

        #arrow-back, #arrow-next {
            display: none;
        }

        .feedback-slider-container > div {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
        }
    }


/*/////////////////////////////////////////////////////////////////////*/
/* Industries Section */    


.industries-parent{
    display: flex;
    flex-direction: column;
    background: #010725;
    background-size: cover;
    padding: 64px;
}

.industries-parent h1{
    margin-bottom: 96px;
    text-align: center;
    color: white;
}

.industries-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 300px;
    width: auto;
    overflow: hidden;
    cursor: pointer;

    position: relative;
    border-radius: 4px;

    padding: 0px;
}


.industry-item h2 {
    text-align: center;
    background: rgb(52, 52, 142);
    padding: 16px 0px;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    font-weight: 600;
    color: white;
    z-index: 2;
    margin: 0;
    
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    display: block;
}

.industry-item img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    

    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.industry-item:hover img {
    transform: scale(1.1);
    filter: blur(4px);
}

.industry-item:hover h2{
    color: whitesmoke;
    background-color: #E4572E;
}

.industry-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    
    opacity: 0;
    
    transition: opacity 0.3s ease;

    text-align: start;
    padding: 10px;
}

.industry-item:hover .overlay {
    opacity: 1;
    transform: translateY(0px);
}

.industry-item .overlay p{
    opacity: 0;
    transform: translateY(50px);
    transition: transform 0.7s ease;
}

.industry-item:hover .overlay p{
    opacity: 1;
    transform: translateY(0px);
}

@media (max-width: 900px) {


    .industries-parent{
        padding: 16px;
    }

    .industries-container {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }

    .industry-item{
        height: 200px;
    }

    .industry-item h2{
        padding: 8px 0;
    }

    .industry-item.overlay{
        opacity: 1;
    }

    .industry-item .overlay p{
    opacity: 1;
}
}


/*////////////////////////////////////////////////////*/

/*Case Study Project Styles*/

.casestudy-parent {
        display: flex;
        flex-direction: column;
        margin: 64px 64px;
        padding:64px;
        border-radius: 16px;
        background: #fff;
            
    }

    .casestudy-parent > h1{
        margin-bottom: 64px;
        text-align: center;
        color: var(--color-accent);
    }

    .casestudy-container{
        display: flex;
        
        flex-direction: row;
        height: 60vh;
        overflow: hidden;
        
    }



    .case-study-left-column {
        flex: 3;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-right: 1px solid #eee;
        min-width: 0;
        padding: 12px;
    }
    .collage {
        display: flex;
        gap: 24px;
        margin-bottom: 32px;
    }
    .collage img {
        min-width: 100px;
        max-width: 200px;
        min-height: 150px;
        max-height: 250px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    .case-study-project-title {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 16px;
        color: var(--color-primary);
    }
    .case-study-project-desc {
        font-size: 1.1rem;
        width: 90%;
        margin-bottom: 20px;
        color: #444;
    }
    .tags {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }
    .tag {
        background: var(--color-primary-light);
        color: #3730a3;
        padding: 4px 12px;
        border-radius: 12px;
        font-size: 0.95rem;
    }
    .case-study-right-column {
        flex: 2;
        display: flex;
        height: 100%;
        flex-direction: column;
        align-items: center;
        
        border-left: 2px solid grey;

    }
    .case-study-slider {
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: #a5b4fc #f3f4f6;
        border-radius: 8px;
    }
    .case-study-slider::-webkit-scrollbar {
        width: 8px;
    }
    .case-study-slider::-webkit-scrollbar-thumb {
        background: #a5b4fc;
        border-radius: 8px;
    }
    .case-study-card {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        margin: 12px 24px;
        padding: 16px;
        display: flex;
        flex-direction: row;
        align-items: start;
        cursor: pointer;
        transition: box-shadow 0.2s, border 0.2s;
        border: 2px solid transparent;
    }

    .casestudy-card-content{
        display: flex;
        flex-direction: column;
        padding: 0px 16px;
    }

    .case-study-card.selected {
        border: 2px solid var(--color-accent);
        box-shadow: 0 4px 16px rgba(99,102,241,0.10);
    }
    .case-study-card img {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 12px;
    }
    .case-study-card-title {
        font-weight: bold;
        margin-bottom: 8px;
        text-align: start;
    }
    .case-study-card-desc {
        font-size: 0.98rem;
        color: #555;
        margin-bottom: 10px;
        text-align: start;
    }
    .case-study-card-tags {
        display: flex;
        gap: 6px;
        flex-wrap: wrap;
        justify-content: start;
    }
    .case-study-card-tag {
        background: #f1f5f9;
        color: #334155;
        padding: 2px 8px;
        border-radius: 8px;
        font-size: 0.85rem;
    }

    @media (max-width: 900px) {

        .casestudy-parent {
            margin: 16px 0;
            padding: 16px;
        }
        .casestudy-container {
            flex-direction: column;
            height: auto;
        }
        .case-study-left-column {
            border-right: none;
            border-bottom: 1px solid #eee;
            padding: 24px 0 36px 0;
        }
        .case-study-right-column {
            width: 100%;
            padding: 0;
            align-items: flex-start;

            border-top: 2px solid grey;
            border-left: 0px;
        }
        .case-study-slider {
            display: flex;
            flex-direction: row;
            overflow-x: auto;
            overflow-y: hidden;
            width: 100%;
            padding-bottom: 16px;
            scrollbar-width: thin;
            scrollbar-color: #a5b4fc #f3f4f6;
        }
        .case-study-slider::-webkit-scrollbar {
            height: 8px;
            width: 0;
        }
        .case-study-slider::-webkit-scrollbar-thumb {
            background: #a5b4fc;
            border-radius: 8px;
        }
        .case-study-card {
            min-width: 200px;
            max-width: 50vw;
            margin: 12px 12px 0 0;
            flex-direction: column;
            align-items: flex-start;
        }
        .case-study-card img {
            width: 100%;
            height: 120px;
            margin-bottom: 8px;
        }
        .casestudy-card-content {
            padding: 0;
        }
        .collage {
            gap: 12px;
            margin-bottom: 20px;
            align-items: center;
            justify-content: center;
        }
        .collage img {
            min-width: 80px;
            max-width: 100px;
            min-width: 100px;
            max-height: 120px;
        }
        .case-study-project-title {
            font-size: 1.3rem;
            margin-top: 24px;
            margin-bottom: 10px;
            text-align: center;
        }
        .case-study-project-desc {
            font-size: 1rem;
            width: 100%;
            margin-bottom: 14px;
            text-align: center;
        }
        .tags {
            gap: 6px;
            align-items: center;
            justify-content: center;
        }
        .tag {
            font-size: 0.85rem;
            padding: 3px 8px;
        }
    }
    
    
    /*////////////////////////////////////////////////////*/

/*Our Clients*/

.clients-container {
            display: flex;
            min-height: 100vh;
            padding: 40px;
            box-sizing: border-box;
            background: #fff;
        }
        .clients-text {
            flex: 1;
            padding-right: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .clients-text h1 {
            font-size: 2.5rem;
            margin-bottom: 24px;
            font-weight: 700;
            letter-spacing: -1px;
            color: var(--color-primary);
        }
        .clients-text p {
            font-size: 1.15rem;
            line-height: 1.6;
            color: var(--color-primary-light-text);
            max-width: 400px;
        }
        .clients-icons {
            flex: 2;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .clients-icons .marquee-row {
            display: flex;
            align-items: center;
            margin: 18px 0;
            white-space: nowrap;
            position: relative;
            width: 100%;
            height: 120px;
        }
        .clients-icons .marquee-content {
            display: flex;
            gap: 24px;
            animation: marquee 40s linear infinite;
        }
        .clients-icons .marquee-row:nth-child(2) .marquee-content {
            animation-direction: reverse;
            animation-duration: 60s;
        }
        .clients-icons .marquee-row:nth-child(3) .marquee-content {
            animation-duration: 40s;
        }
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .clients-card {
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.07);
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;

            min-width: 180px;
            max-width: 180px;


            overflow: hidden;

            padding: 18px 12px;
            text-align: center;
            transition: box-shadow 0.2s;
            text-align: center;

        }
        .clients-card img {
            object-fit: contain;
            margin-bottom: 0px;
            align-items: center;
            align-self: center;

            width: 85%;
            max-height: 100px;
            object-fit: contain;
            text-align: center;
        }
        .partner-title {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 4px;
            color: #222;
        }
        .partner-industry {
            font-size: 0.92rem;
            color: #888;
        }
        /* Blur effect at the end of right column */
        .clients-icons::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 80px;
            height: 100%;
            pointer-events: none;
            z-index: 2;
        }
        @media (max-width: 900px) {
            .clients-container {
                flex-direction: column;
                padding: 20px;
                align-items: center;
                justify-content: center;
            }
            .clients-text {
                padding-right: 0;
                margin-bottom: 32px;
                text-align: center;
            }
            .clients-icons {
                min-width: 0;
            }

            .clients-text h1{
                margin-bottom: 12px;
            }
        }
        @media (max-width: 600px) {
            .marquee-row {
                height: 90px;
            }
            .clients-card {
                min-width: 120px;
                max-width: 120px;
                padding: 10px 6px;
            }
            .clients-text h1 {
                font-size: 1.5rem;
                margin-bottom: 12px;
            }
        }






