*{
    margin: 0;
    padding: 0;
}

/* Fix hero section positioning to prevent fixed scroll behavior */
.hero {
    position: relative !important;
    transform: none !important;
    z-index: auto !important;
}

body{
    background-color: #121212;
    color: #fff;
 }
 
 .social-icons a {
     filter: brightness(0) invert(1);
 }
 
 .social-icons img {
     fill: #1E1E1E;
 }
 
 .default-page{
     background-color: #121212;
     overflow-x: hidden;
 }
 .hero {
    background: url(../svg/KaasBG.svg) no-repeat center / cover;
    background-size: cover;
    background-position: center;
    color: white;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding-top: 120px;
    margin-top: -100px;
    position: relative;
    display: flex;
    overflow: visible; /* Allow text to be fully visible */
}

/* Hero text opacity set to 95% in hero-content class */

/* Hero Background Video */
.hero-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Frosted Glass Overlay */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2;
}

/* Ensure hero content appears above video */
.hero-content {
    position: relative;
    text-align: center;
    max-width: 80vw;
    margin: 0 auto;
    padding: 0 2rem;
    opacity: 0.95; /* 95% visible */
    z-index: 3; /* Appear above video (z-index: 1) and overlay (z-index: 2) */
}

.empower{
    color: #FFF;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 55px;
    font-style: normal;
    font-weight: 600;
    padding: 25px 50px 25px 65px;
}

.title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 56px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-top: 5%;
    padding: 0px 100px;
}

.cta-description{
    color: #DDD;
    text-align: justify;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    padding: 0px 100px 100px;
    line-height: 2;
}

.cont-brdr{
    background-color: #121212;
    box-shadow: 0 -5px 100px -5px #282828, 0 5px 100px -5px #282828;
    margin-bottom: 100px;
}

.image-container{
    height: auto;
    width: auto;
}

.serv-title{
    text-align: center;
    font-size: 40px;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.services-description {
    text-align: center;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
}

.cont-padng{
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.serv-title1 {
    text-align: center;
    font-size: 40px;
    padding-top: 50px;
}

.container {
    max-width: 1200px;
    margin: auto;
    font-family: 'Space Grotesk', sans-serif;
    padding: 130px 0 10px 0; /* Add top padding for gradient space */
    flex-direction: column;
    position: relative;
}


.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 140px;
    background: linear-gradient(black, #121212);
    z-index: 1;
    pointer-events: none;
}

/* Enhanced gradient transition for industries and services pages at container level */
/* .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 70px;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.95) 15%,
        rgba(18, 18, 18, 0.85) 40%,
        rgba(18, 18, 18, 0.9) 70%,
        rgba(18, 18, 18, 1) 100%
    );
    z-index: 1;
    pointer-events: none;
} */
h1 {
    font-size: 2em;
    margin-bottom: 10px;
}
.subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    text-align: center;

}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
    justify-content: center;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 400px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    max-width: 450px;
    width: 100%;
    justify-self: center;
}

.card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 182, 193, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card:hover img {
    transform: scale(1.02);
}


.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.card-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px;
    text-align: left;
}
.card h3 {
    margin-bottom: 10px;
    font-size: 1.2em;
}
.card ul {
    padding-left: 20px;
    list-style-type: disc;
}
.card ul li {
    font-size: 0.9em;
    line-height: 1.5;
    color: #ccc;
    text-align: justify;
}


.grid1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-top: 65px;
}
.box1 {
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.icon1 {
    width: 40px;
    height: 40px;
    background: #FFF;
    border-radius: 8px;
}
.text1 {
    text-align: left;
}
.text1 h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}
.text1 p {
    margin: 5px 0 0;
    font-size: 14px;
}

.image-cont{
    justify-content: center;
    align-items: center;
    }

    .broder-emoji{
        height: 110px;
        width: 110px;
    }

    .content-cont{
        line-height: 1;
        align-items: start;
    }

    .content-cont b {
        display: block;
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .content-cont p {
    line-height: 1.2;
    color: #ddd;
}

.cta-section1 {
    text-align: center;
    padding: 25px; 
    font-family: 'Space Grotesk', sans-serif;
}

.cta-text1 h1 {
    font-size: 40px;
    padding-bottom: 10px;
    text-align: left;
}

.cta-text1 p {
    font-size: 16px;
    margin-bottom: 15px;
    text-align: center;
}

/* DEPRECATED - Use .btn .btn-primary instead */
.cta-btn1 {
    display: none !important; /* Hidden to force use of new button system */
}




.hero-content {
    max-width: 80vw;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Ensure content can overflow if needed */
    overflow: visible;
    word-wrap: break-word;
}

/* Hero title and description styles moved to header-footer.css for consistency */

/* Floating text animation moved to style.css for consistency */

.cta-section1 {
         display: flex;
         flex-direction: column;
         align-items: flex-start;
         justify-content: flex-start;
         border-radius: 24px;
         background: rgba(255, 255, 255, 0.10);
         border: 1px solid rgba(0, 0, 0, 1);
         padding: 65px;
         max-width: 1200px;
         /* width: 90%; */
         margin: 100px auto;
         text-align: left;
}

.cta-text1 {
max-width: 95%;
text-align: left;
}

.cta-text1 p {
color: #ddd;
font-size: 20px;
line-height: 1.6;
padding-bottom: 10px;
font-weight: 500;
font-family: 'Space Grotesk', sans-serif;
text-align: left;
}

@media(max-width:333px){
    .cta-section1 {
        display: flex;
        padding: 25px;
        align-items: center;
        margin-top: 35% !important;
        justify-content: flex-start;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(0, 0, 0, 1);
        max-width: 90%;
        width: 80%;
        position: relative;
        /* left: 50%; */
        transform: translateX(-50%);
        gap: 70px;
        margin-bottom: 50px !important;
    }
    .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 50px;
        padding: 10px !important;
    }
}
@media(max-width: 500px){
    .empower {
        color: #FFF;
        font-family: 'Space Grotesk', sans-serif;
        font-size: 28px !important;
        font-style: normal;
        font-weight: 600;
        padding: 10px 10px 0px 10px !important;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0.5rem 0;
    }

    .card {
        min-height: 350px;
    }

    .card img {
        height: 150px;
    }

    .cont-padng {
        padding: 1.5rem;
    }

    .card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .card ul li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .hero {
        min-height: 100vh;
        padding: 1rem 0;
    }

    .hero-content {
        padding: 1.5rem 1rem;
        width: 95%;
    }

    .hero-title {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
        line-height: 1 !important;
    }

    .hero-description {
        font-size: 1rem;
    }

    .title {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 25px;
        font-weight: 600;
        line-height: 40px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        margin-top: 5%;
        padding: 0px 25px;
    }
    .cta-description {
        color: #DDD !important;
        text-align: justify !important;
        font-family: 'Space Grotesk', sans-serif !important;
        font-size: 16px !important;
        font-style: normal !important;
        font-weight: 500 !important;
        padding: 0px 25px 80px !important;
        line-height: normal !important;
    }
    .serv-title1 {
        text-align: center;
        font-size: 25px;
        padding-top: 50px;
    }
    .subtitle {
        font-size: 16px;
        margin-bottom: 40px;
        text-align: center;
    }
    .serv-title {
        text-align: center;
        font-size: 25px;
    }
    .content-cont b {
        display: block;
        font-size: 16px;
        margin-bottom: 10px;
    }
    .content-cont p {
        line-height: 1.2;
        font-size: 12px;
    }
    .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 50px;
        padding: 25px;
    }
    .grid1 {
        display: block;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 5px 0px 10px 0px !important;
    }

    .cta-section1 {
        display: flex;
        padding: 25px !important;
        align-items: center;
        margin-top: 25% !important;
        justify-content: flex-start;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(0, 0, 0, 1);
        max-width: 90%;
        width: 80%;
        position: relative;
        /* left: 50%; */
        transform: translateX(-50%);
        gap: 70px;
        margin-bottom: 40px !important;
    }
    .cta-text1 h1 {
        font-size: 25px !important;
        padding-bottom: 10px;
        text-align: left;
    }
    .cta-text1 p {
        color: #fff;
        font-size: 16px;
        line-height: 1.6;
        padding-bottom: 10px;
        font-weight: 500;
        font-family: 'Space Grotesk', sans-serif;
        text-align: left;
    }
    .cta-btn1 {
        display: none !important; /* Use .btn .btn-primary instead */
    }
    .card h3 {
        margin-bottom: 10px;
        font-size: 16px !important;
    }
    .card ul li {
        font-size: 12px !important;
        line-height: 1.5;
        color: #ddd;
    }
    .card img {
        width: 100%;
        display: block;
        height: 55%;
    }
.container{
    padding-bottom: 30px !important;
}
}

@media(max-width:1024px){

    .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 50px;
        padding: 25px;
    }
    .empower {
        color: #FFF;
        font-family: 'Space Grotesk', sans-serif;
        font-size: 55px;
        font-style: normal;
        font-weight: 600;
        padding: 15px 50px 15px 65px;
    }
    .grid1 {
        display: block;
        padding: 0px 0px 48px 48px;
    }
    .cta-text1 h1 {
        font-size: 30px;
        padding-bottom: 10px;
        text-align: left;
    }
    .cta-section1 {
         display: flex;
         flex-direction: column;
         align-items: flex-start;
         justify-content: flex-start;
         border-radius: 24px;
         background: rgba(255, 255, 255, 0.10);
         border: 1px solid rgba(0, 0, 0, 1);
         padding: 65px;
         max-width: 1200px;
         /* width: 90%; */
         margin: 100px auto;
         text-align: left;
    }

    .cta-description{
        color: #DDD;
        text-align: justify;
        font-family: 'Space Grotesk', sans-serif;
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        padding: 0px 100px 100px;
        line-height: normal;
    }
    

}

.card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.3;
}

.card p {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 1.5rem 0;
    font-family: 'Space Grotesk', sans-serif;
    flex-grow: 1;
    min-height: 60px;
}


.read-more {
    display: inline-block;
    margin-top: auto;
    color: #FFB6C1;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
    align-self: flex-start;
}

.read-more:hover {
    color: #FF69B4;
    transform: translateX(5px);
}

/* ========== SERVICE DETAIL PAGES ========== */

.service-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    color: #fff;
}

.service-detail h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.service-detail > p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Space Grotesk', sans-serif;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.service-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FFB6C1;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.service-feature p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-family: 'Space Grotesk', sans-serif;
}

.technology-stack {
    margin-bottom: 4rem;
}

.technology-stack h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tech-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-category h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #FFB6C1;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.tech-category ul {
    list-style: none;
    padding: 0;
}

.tech-category li {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Space Grotesk', sans-serif;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tech-category li::before {
    content: none;
}

.tech-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
    transition: all 0.3s ease;
}

.tech-logo:hover {
    background: rgba(255, 182, 193, 0.2);
    transform: scale(1.1);
}

/* Fix: Reset state for tech-logo */
.tech-logo {
    transform: scale(1);
    animation-fill-mode: none;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateX(5px);
}

/* Fix: Reset state for tech-item */
.tech-item {
    transform: translateX(0);
    animation-fill-mode: none;
}

.tech-item:hover .tech-logo {
    background: rgba(255, 182, 193, 0.2);
    transform: scale(1.1);
}

/* Fix: Ensure nested tech-logo resets properly */
.tech-item .tech-logo {
    transform: scale(1);
    animation-fill-mode: none;
}

.tech-name {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
}

.process-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.process-step {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(255, 182, 193, 0.3);
}

.process-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: #FFB6C1;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
    background: rgba(255, 182, 193, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    display: inline-block;
    border: 1px solid rgba(255, 182, 193, 0.2);
}

.process-step h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #FFB6C1;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.process-step p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-family: 'Space Grotesk', sans-serif;
}

/* ========== MODERN SERVICES SECTION ========== */

/* Hero Section Styling */
.hero {
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible; /* Allow text to be fully visible */
}

.hero-content {
    display: flex;
    text-align: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 2rem;
    max-width: 80vw;
    width: 100%;
    gap: 3rem;
    flex-direction: column;
}

.hero-text-section {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: clamp(5rem, 10vw, 8rem);
    font-weight: 700;
    line-height: 1 !important;
    margin-bottom: 1.5rem;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    /* Ensure title text wraps properly and isn't cut off */
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    max-width: 100%;
}

.hero-title .highlight {
    color: rgba(255, 182, 193, 1);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
}

.neural-network-graphic {
    width: 100%;
    height: auto;
    max-width: 500px;
    opacity: 0.9;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/* Services Grid Section */
.services-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.95) 0%, rgba(18, 18, 18, 1) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-family: 'Space Grotesk', sans-serif;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Service Card Styling */
.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 182, 193, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 182, 193, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: rgba(255, 182, 193, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
}

/* Fix: Reset state for service icon img */
.service-icon img {
    transform: scale(1);
    animation-fill-mode: none;
}

.service-content {
    position: relative;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    font-family: 'Space Grotesk', sans-serif;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(255, 182, 193, 1);
    font-weight: bold;
}

.service-cta {
    margin-top: auto;
}

.learn-more {
    color: rgba(255, 182, 193, 1);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.learn-more:hover {
    color: rgba(255, 182, 193, 0.8);
    transform: translateX(4px);
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 4rem 1rem;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
}

/* ========== INDUSTRIES LAYOUT ========== */

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 1rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.industry-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 400px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.industry-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 182, 193, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.industry-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.industry-item:hover img {
    transform: scale(1.02);
}

.industry-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.industry-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.3;
}

.industry-content p {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    flex-grow: 1;
    min-height: 60px;
}

/* Tablet layout - 2 columns */
@media (max-width: 1024px) and (min-width: 769px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile layout - 1 column */
@media (max-width: 768px) {
    .industries-grid {
        width:90%;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .industry-item {
        min-height: 350px;
    }
    
    .industry-item img {
        height: 150px;
    }
    
    .industry-content {
        padding: 1.5rem;
    }
    
    .industry-content h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .industry-content p {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
}

/* ========== ABOUT PAGE STYLES ========== */

/* Purpose Section */
.purpose-section {
    /*padding: 4rem 0;*/
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 3rem;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    text-align: center;
}

.purpose-content {
    max-width: 800px;
    margin: 0 auto;
}

.purpose-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-family: 'Space Grotesk', sans-serif;
    text-align: left;
}

/* Values Section */
.values-section {
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.95) 0%, rgba(18, 18, 18, 1) 100%);
    /* padding: 8rem 0;
    margin: 4rem 0; */
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 182, 193, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.values-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.values-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.value-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(255, 182, 193, 0.3);
}

.value-icon {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.1);
}

.value-icon svg {
    filter: drop-shadow(0 0 8px rgba(255, 182, 193, 0.3));
}

.value-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: #FFB6C1;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
    background: rgba(255, 182, 193, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    display: inline-block;
    border: 1px solid rgba(255, 182, 193, 0.2);
}

.value-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #FFB6C1;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.value-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 1.5rem;
}

.value-highlight {
    font-size: 0.875rem;
    color: #FFB6C1;
    font-weight: 500;
    font-family: 'Space Grotesk', sans-serif;
    font-style: italic;
    opacity: 0.9;
    border-top: 1px solid rgba(255, 182, 193, 0.2);
    padding-top: 1rem;
    margin-top: 1rem;
}

/* Leadership Section */
.leadership-section {
    padding: 4rem 0;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.leader-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.leader-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 182, 193, 0.3);
    transform: translateY(-5px);
}

.leader-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.leader-title {
    font-size: 1rem;
    color: #FFB6C1;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
}

.leader-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Space Grotesk', sans-serif;
}

/* Approach Section */
.approach-section {
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.95) 0%, rgba(18, 18, 18, 1) 100%);
    /* padding: 6rem 0;
    margin: 4rem 0; */
}

.approach-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.approach-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.approach-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.approach-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFB6C1;
    display: block;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 4rem 0;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.mission-card,
.vision-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    text-align: center;
}

.mission-card:hover,
.vision-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 182, 193, 0.3);
    transform: translateY(-5px);
}

.card-icon {
    margin-bottom: 1.5rem;
}

.card-icon img {
    width: 60px;
    height: 60px;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.mission-card p,
.vision-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Space Grotesk', sans-serif;
    text-align: left;
}

/* Global Section */
.global-section {
    /*padding: 4rem 0;*/
    text-align: center;
}

.global-content {
    margin-top: 2rem;
}

.global-image {
    margin-bottom: 2rem;
}

.desktop-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

.mobile-image {
    display: none;
}

.global-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Space Grotesk', sans-serif;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 1.5rem;
    }
    
    .values-section {
        padding: 6rem 0;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .values-section {
        padding: 5rem 0;
        margin: 2rem 0;
    }
    
    .values-header {
        margin-bottom: 3rem;
    }
    
    .values-subtitle {
        font-size: 1.125rem;
        max-width: 90%;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .approach-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .approach-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .stat-item {
        flex: 1;
        margin: 0 0.5rem;
    }
    
    .desktop-image {
        display: none;
    }
    
    .mobile-image {
        display: block;
        max-width: 100%;
        height: auto;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .value-item {
        padding: 2rem 1.5rem;
    }
    
    .value-item h3 {
        font-size: 1.25rem;
    }
    
    .value-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .value-highlight {
        font-size: 0.8rem;
    }
    
    .value-number {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .values-subtitle {
        font-size: 1rem;
    }
    
    .leader-card,
    .mission-card,
    .vision-card {
        padding: 1.5rem;
    }
    
    .approach-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        margin: 0;
    }
    
    .values-section,
    .approach-section {
        padding: 4rem 0;
    }
    
    .value-icon svg {
        width: 28px;
        height: 28px;
    }
}

/* ========== BUTTON COMPONENT SYSTEM ========== */

/* Base Button Component */
.btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 600 !important;
    border-radius: 30px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    border: 2px solid transparent !important;
    min-height: 44px !important; /* Accessibility: minimum touch target */
    box-sizing: border-box !important;
    
    /* Responsive sizing */
    padding: 15px !important;
    font-size: clamp(1.125rem, 2.5vw, 1.5rem) !important;
    gap: clamp(0.625rem, 1.5vw, 1rem) !important;
    margin: 0 !important;
    line-height: 1.2 !important;
}

/* Button Icon Styling */
.btn img {
    width: clamp(1.25rem, 2.5vw, 1.75rem) !important;
    height: auto !important;
    transition: transform 0.3s ease !important;
    margin: 0 !important;
    vertical-align: middle !important;
    transform: rotate(315deg) !important;
}

/* Button Variants */

/* Primary Button (Default) */
.btn-primary {
    background-color: #fff !important;
    color: #333 !important;
    border: 2px solid transparent !important;
}

.btn-primary:hover {
    background-color: #f8f8f8 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}

.btn-primary:hover img {
    transform: rotate(315deg) translateX(4px) !important;
}

/* Secondary Button (Outlined) */
.btn-secondary {
    background-color: transparent !important;
    color: rgba(255, 182, 193, 1) !important;
    border: 2px solid rgba(255, 182, 193, 1) !important;
}

.btn-secondary:hover {
    background-color: rgba(255, 182, 193, 1) !important;
    color: #000 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(255, 182, 193, 0.3) !important;
}

.btn-secondary:hover img {
    transform: rotate(315deg) translateX(4px) !important;
}

/* Button in CTA Section - Additional Specificity */
.cta-section .btn,
.cta-text .btn,
.cta-section1 .btn,
.cta-text1 .btn,
.services-section .btn,
.hero-actions .btn {
    display: inline-flex !important;
    text-align: center !important;
    margin: 0 !important;
    vertical-align: top !important;
    width: auto !important;
    max-width: none !important;
    flex-shrink: 0 !important;
}

/* Animated Title Styles */
.animated-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    min-height: 4rem;
    text-align: center;
    position: relative;
}

.title-part-1 {
    opacity: 1;
    transform: translateX(3rem);
    transition: transform 0.3s ease;
}

.title-part-2 {
    color: #FFB6C1;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.3s ease;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
}

@keyframes slideToLeft {
    0% {
        transform: translateX(3rem);
    }
    50% {
        transform: translateX(3rem);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        width: 0;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
        width: auto;
        transform: translateX(0);
    }
    100% {
        opacity: 1;
        width: auto;
        transform: translateX(0);
    }
}

/* ========== SCROLL ANIMATIONS ========== */

/* Progressive enhancement - ensure content is visible before JS loads */
.animate-fade-up:not(.animate-hidden),
.animate-fade-in:not(.animate-hidden),
.animate-slide-left:not(.animate-hidden),
.animate-slide-right:not(.animate-hidden),
.animate-scale:not(.animate-hidden) {
    opacity: 1 !important;
}

/* Base animation states - visible by default for progressive enhancement */
.animate-fade-up,
.animate-fade-in,
.animate-scale,
.animate-slide-left,
.animate-slide-right {
    opacity: 1;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

/* Ensure hidden state is properly applied */
.animate-hidden {
    opacity: 0 !important;
}

/* Ensure visible state is properly applied */
.animate-visible {
    opacity: 1 !important;
}

/* Fade in animation - uses global opacity rules */

/* Fade up animation */
.animate-fade-up {
    transform: translateY(0);
}

.animate-fade-up.animate-visible {
    transform: translateY(0) !important;
}

.animate-fade-up.animate-hidden {
    transform: translateY(40px) !important;
}

/* Scale animation */
.animate-scale {
    transform: translateY(0);
}

.animate-scale.animate-visible {
    transform: translateY(0) !important;
}

.animate-scale.animate-hidden {
    transform: translateY(30px) !important;
}

/* Slide animations */
.animate-slide-left {
    transform: translateX(0);
}

.animate-slide-left.animate-visible {
    transform: translateX(0) !important;
}

.animate-slide-left.animate-hidden {
    transform: translateX(-60px) !important;
}

.animate-slide-right {
    transform: translateX(0);
}

.animate-slide-right.animate-visible {
    transform: translateX(0) !important;
}

.animate-slide-right.animate-hidden {
    transform: translateX(60px) !important;
}

/* Industries page specific enhancements */
.industries-grid .industry-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Staggered animation for grid items */
.industry-item:nth-child(1) { transition-delay: 0ms; }
.industry-item:nth-child(2) { transition-delay: 50ms; }
.industry-item:nth-child(3) { transition-delay: 100ms; }
.industry-item:nth-child(4) { transition-delay: 150ms; }
.industry-item:nth-child(5) { transition-delay: 200ms; }
.industry-item:nth-child(6) { transition-delay: 250ms; }
.industry-item:nth-child(7) { transition-delay: 300ms; }
.industry-item:nth-child(8) { transition-delay: 350ms; }
.industry-item:nth-child(9) { transition-delay: 400ms; }
.industry-item:nth-child(10) { transition-delay: 450ms; }

/* Industry items inherit animation states from their animation classes */

/* Hero parallax preparation */
.hero {
    will-change: transform;
    transition: transform 0.1s linear;
}

/* Duplicate floating-text removed to prevent conflicts */

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
.industry-item img {
    background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.industry-item img[src] {
    animation: none;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .animate-fade-up {
        transform: translateY(20px);
    }
    
    .animate-slide-left {
        transform: translateX(-30px);
    }
    
    .animate-slide-right {
        transform: translateX(30px);
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .animate-fade-up,
    .animate-fade-in,
    .animate-scale,
    .animate-slide-left,
    .animate-slide-right {
        transition: none;
    }
    
    .hero {
        transition: none;
    }
    
    .floating-text {
        animation: none;
    }
    
    html {
        scroll-behavior: auto;
    }
}