/* ============================
   Page-Specific Styles
============================ */

/* ============================
   Clean Professional Style - Following Index.html
============================ */

/* Dark Professional Hero Section - FORCED DARK BACKGROUND WITH PARALLAX */
.page-hero {
    padding: 0 !important;
    margin-top: 0 !important;
    background: linear-gradient(rgba(13, 27, 42, 0.85), rgba(27, 38, 59, 0.85)), url('../assets/images/projects/PURPOSE.jpg') center/cover no-repeat fixed !important;
    position: relative;
    z-index: 1;
    min-height: 85vh !important;
    display: flex !important;
    align-items: center !important;
    overflow: visible;
    padding-bottom: 100px !important;
}

/* Smooth wave transition to next section */
.page-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, #0d1b2a 100%);
    z-index: 2;
}

/* Minimal Sleek Grid Pattern */
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(30, 115, 190, 0.06) 1px, transparent 1px),
        linear-gradient(0deg, rgba(30, 115, 190, 0.06) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: gridMove 60s linear infinite;
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
}

/* Subtle Gradient Overlay */
.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(30, 115, 190, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(247, 148, 29, 0.06) 0%, transparent 50%);
    z-index: 2;
    pointer-events: none;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(80px, 80px);
    }
}

.page-hero-content {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    padding: 0 3rem;
}

/* Modern accent line */
.page-hero-content::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary);
    z-index: 1;
}

/* Subtle Floating Particles */
.page-hero-content::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(circle, rgba(247, 148, 29, 0.4) 1.5px, transparent 1.5px),
        radial-gradient(circle, rgba(30, 115, 190, 0.3) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 
        600px 600px,
        400px 400px,
        300px 300px;
    background-position: 
        0 0,
        50px 50px,
        100px 30px;
    animation: particlesDrift 50s linear infinite;
    z-index: -1;
    pointer-events: none;
    opacity: 0.3;
}

@keyframes particlesDrift {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-50px, -50px);
    }
}

.page-hero-title {
    font-size: clamp(3rem, 7vw, 6rem);
    color: #FFFFFF;
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: 10px;
    text-transform: uppercase;
    line-height: 1.1;
    position: relative;
}

.page-hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    letter-spacing: 1px;
}

/* Modern Scroll Indicator */
.page-hero .scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.page-hero .scroll-indicator::before {
    content: '';
    display: block;
    width: 28px;
    height: 46px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 14px;
    position: relative;
}

.page-hero .scroll-indicator::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDot 2.5s ease-in-out infinite;
}

@keyframes scrollDot {
    0%, 100% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    30%, 70% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Innovation Intro Section - Modern Design */
.innovation-intro-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.innovation-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

/* Left Content */
.intro-content {
    position: relative;
}

.intro-label {
    display: inline-block;
    color: var(--secondary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.intro-heading {
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.intro-text {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.intro-highlight {
    background: linear-gradient(135deg, rgba(30, 115, 190, 0.05) 0%, rgba(247, 148, 29, 0.05) 100%);
    border-left: 4px solid var(--secondary);
    padding: 2rem;
    border-radius: 0 12px 12px 0;
    position: relative;
}

.quote-icon {
    width: 32px;
    height: 32px;
    color: var(--secondary);
    opacity: 0.3;
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
}

.intro-highlight p {
    font-size: 1.125rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
    padding-left: 2.5rem;
}

/* Right Features */
.intro-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--secondary) 0%, #ff8c42 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(247, 148, 29, 0.25);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: white;
    stroke-width: 2;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .innovation-intro-grid {
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .innovation-intro-section {
        padding: 4rem 0;
    }
    
    .innovation-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .intro-heading {
        font-size: 2rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .intro-highlight {
        padding: 1.5rem;
    }
    
    .intro-highlight p {
        font-size: 1rem;
        padding-left: 0;
    }
    
    .quote-icon {
        display: none;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
    }
    
    .feature-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* Technology Pillars Section - Dark Background */
.tech-pillars-section {
    padding: 6rem 0;
    background: #1a1a1a;
    background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
}

.section-header-centered {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-white {
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.section-description-white {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.tech-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.pillar-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.pillar-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

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

.pillar-content {
    padding: 2rem;
    text-align: center;
}

.pillar-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.pillar-content p {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
}

/* All in One System Section */
.all-in-one-section {
    padding: 6rem 0;
    background: #ffffff;
}

.all-in-one-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
}

.feature-list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.25rem;
}

/* Responsive for Tech Pillars */
@media (max-width: 1024px) {
    .tech-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .pillar-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .tech-pillars-section {
        padding: 4rem 0;
    }
    
    .section-header-centered {
        margin-bottom: 3rem;
    }
    
    .tech-pillars-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pillar-card:nth-child(3) {
        max-width: 100%;
    }
    
    .pillar-image {
        height: 220px;
    }
    
    .pillar-content {
        padding: 1.5rem;
    }
    
    .all-in-one-section {
        padding: 4rem 0;
    }
}

/* Services Equal Section - Three Equal Cards */
.services-equal-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

/* Section Header */
.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.services-main-title {
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.services-main-description {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
}

/* Three Equal Cards Grid */
.services-equal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card-equal {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.service-card-equal:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

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

.service-card-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.service-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary) 0%, #ff8c42 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(247, 148, 29, 0.4);
}

.service-card-content {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.service-card-text {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: auto;
    flex-grow: 1;
}

.service-card-highlight {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(30, 115, 190, 0.05) 0%, rgba(247, 148, 29, 0.05) 100%);
    padding: 1.25rem;
    border-radius: 12px;
    border-left: 3px solid var(--secondary);
    margin-top: 1.5rem;
}

.service-card-highlight svg {
    width: 20px;
    height: 20px;
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 2px;
}

.service-card-highlight p {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-equal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .service-card-equal:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .services-equal-section {
        padding: 4rem 0;
    }
    
    .section-header-center {
        margin-bottom: 3rem;
    }
    
    .services-main-title {
        font-size: 2rem;
    }
    
    .services-main-description {
        font-size: 1rem;
    }
    
    .services-equal-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card-equal:nth-child(3) {
        max-width: 100%;
    }
    
    .service-card-image {
        height: 240px;
    }
    
    .service-card-content {
        padding: 2rem;
    }
    
    .service-card-title {
        font-size: 1.35rem;
    }
    
    .service-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Signature Walls Section - Unique Inspired Design */
.signature-walls-section {
    padding: 8rem 0;
    background: #ffffff;
    overflow: hidden;
}

.signature-walls-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

/* Image Side with Modern Frame */
.signature-walls-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    transform: translateZ(0);
}

.image-frame img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

/* Orange Accent Border */
.image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 4px solid var(--secondary);
    border-radius: 20px;
    pointer-events: none;
    z-index: -1;
}

/* Content Side */
.signature-walls-content {
    padding: 2rem 0;
}

.content-wrapper {
    max-width: 600px;
}

.section-label {
    display: inline-block;
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-heading {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-intro {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 3rem;
}

/* Feature List - Numbered Style */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary) 0%, #ff6b35 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(247, 148, 29, 0.3);
}

.feature-text h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .signature-walls-layout {
        gap: 4rem;
    }
    
    .image-frame img {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .signature-walls-section {
        padding: 5rem 0;
    }
    
    .signature-walls-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .image-frame img {
        height: 400px;
    }
    
    .image-accent {
        top: -10px;
        left: -10px;
        right: 10px;
        bottom: 10px;
        border-width: 3px;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .features-list {
        gap: 1.5rem;
    }
}

/* Clean - No decorative elements for professional look */

/* Ensure all sections have proper structure */
section {
    position: relative;
    z-index: 1;
}

/* Remove animated background - keeping clean professional look */
/* 
.animated-background {
    display: none;
}
*/

.bg-gradient-mesh {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(30, 115, 190, 0.03) 0%, 
        rgba(247, 148, 29, 0.02) 50%, 
        rgba(30, 115, 190, 0.03) 100%);
    animation: meshMove 20s ease-in-out infinite;
}

@keyframes meshMove {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    opacity: 0.05;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    top: 10%;
    left: 5%;
    animation: float1 25s infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 60%;
    right: 10%;
    animation: float2 20s infinite;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    bottom: 15%;
    left: 15%;
    animation: float3 18s infinite;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    top: 30%;
    right: 20%;
    animation: float4 22s infinite;
}

.shape-5 {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    top: 70%;
    left: 40%;
    animation: float5 19s infinite;
}

@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(50px, -50px) rotate(120deg);
    }
    66% {
        transform: translate(-30px, 30px) rotate(240deg);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(-60px, 40px) rotate(-120deg);
    }
    66% {
        transform: translate(40px, -40px) rotate(-240deg);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -60px) scale(1.1);
    }
}

@keyframes float4 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-40px, -40px) rotate(90deg);
    }
    50% {
        transform: translate(40px, 40px) rotate(180deg);
    }
    75% {
        transform: translate(-20px, 20px) rotate(270deg);
    }
}

@keyframes float5 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(-50px, 50px) rotate(180deg) scale(1.15);
    }
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0.3;
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation: particleFloat 8s infinite ease-in-out;
}

.particle-2 {
    top: 40%;
    left: 30%;
    animation: particleFloat 10s infinite ease-in-out;
    animation-delay: -2s;
}

.particle-3 {
    top: 60%;
    right: 25%;
    animation: particleFloat 7s infinite ease-in-out;
    animation-delay: -4s;
}

.particle-4 {
    top: 80%;
    right: 15%;
    animation: particleFloat 9s infinite ease-in-out;
    animation-delay: -1s;
}

.particle-5 {
    top: 30%;
    right: 40%;
    animation: particleFloat 11s infinite ease-in-out;
    animation-delay: -3s;
}

.particle-6 {
    top: 50%;
    left: 20%;
    animation: particleFloat 8.5s infinite ease-in-out;
    animation-delay: -5s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0.6;
    }
}

.grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(30, 115, 190, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 115, 190, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100px);
    }
}

/* OLD Page Header - Replaced with clean page-hero above */
/*
.page-header {
    position: relative;
    padding: 12rem 0 6rem;
    background: #1a1a2e;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    z-index: 1;
}

.page-header-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(rgba(26, 26, 46, 0.95), rgba(26, 26, 46, 0.95)),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 40px,
            rgba(30, 115, 190, 0.08) 40px,
            rgba(30, 115, 190, 0.08) 41px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 40px,
            rgba(30, 115, 190, 0.08) 40px,
            rgba(30, 115, 190, 0.08) 41px
        ),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 80px,
            rgba(30, 115, 190, 0.03) 80px,
            rgba(30, 115, 190, 0.03) 81px
        );
    opacity: 1;
    animation: blueprintPulse 15s ease-in-out infinite;
    overflow: hidden;
}
*/

@keyframes blueprintPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.95;
    }
}

.page-header-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(30, 115, 190, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(247, 148, 29, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(30, 115, 190, 0.05) 0%, transparent 60%);
    animation: glowMove 20s ease-in-out infinite;
}

@keyframes glowMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    33% {
        transform: translate(20px, -20px) scale(1.05);
        opacity: 0.9;
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
        opacity: 0.85;
    }
}

.page-header-background::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: 
        linear-gradient(45deg, 
            transparent 40%, 
            rgba(30, 115, 190, 0.03) 50%, 
            transparent 60%),
        linear-gradient(-45deg, 
            transparent 40%, 
            rgba(247, 148, 29, 0.02) 50%, 
            transparent 60%);
    background-size: 200% 200%;
    animation: shimmer 25s linear infinite;
}

@keyframes shimmer {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(50%, 50%) rotate(360deg);
    }
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-title {
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.page-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    font-weight: 400;
    margin-top: 1rem;
}

/* Typing Effect Styles */
.typing-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    margin: 1.5rem auto;
    padding: 0 1rem;
}

.typing-text {
    color: var(--secondary);
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    display: inline-block;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 15px rgba(247, 148, 29, 0.3);
    position: relative;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f7941d 0%, #ffa940 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typing-cursor {
    width: 3px;
    height: clamp(1.8rem, 4vw, 2.5rem);
    background: var(--secondary);
    display: inline-block;
    margin-left: 6px;
    animation: blink 0.7s infinite;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(247, 148, 29, 0.5);
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* Ensure all content is above animated background */
body {
    position: relative;
}

main,
section:not(.page-header) {
    position: relative;
    z-index: 1;
    background: transparent;
}

/* Content Sections */
.content-section {
    padding: var(--spacing-xl) 0;
    background: #f9f9f9;
    position: relative;
    z-index: 1;
}

.content-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.15rem;
    color: #4A5568;
    line-height: 1.8;
    margin-top: 1.5rem;
}

/* Features Section */
.features-section {
    padding: var(--spacing-xl) 0;
    background: #F8F9FD;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.feature-item {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border-top: 4px solid transparent;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-top-color: var(--primary);
}

.feature-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.feature-description {
    color: #4A5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.6rem 0;
    color: #4A5568;
    position: relative;
    padding-left: 1.8rem;
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Showcase Section */
.showcase-section {
    padding: var(--spacing-xl) 0;
    background: #FFFFFF;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.showcase-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--text-primary);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: var(--transition-normal);
}

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

.showcase-card:hover {
    transform: translateY(-10px);
}

.showcase-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.showcase-icon svg {
    width: 40px;
    height: 40px;
    color: var(--text-primary);
}

.showcase-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.showcase-description {
    position: relative;
    z-index: 1;
    opacity: 0.9;
}

/* Benefits Section */
.benefits-section {
    padding: var(--spacing-xl) 0;
    background: var(--dark);
    color: var(--text-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.benefits-content .section-title {
    color: var(--text-primary);
    text-align: left;
}

.benefits-content .section-title::after {
    left: 0;
    transform: none;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.benefit-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.benefits-visual .visual-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.benefits-visual .visual-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.1) 10px,
            rgba(255, 255, 255, 0.1) 20px
        );
}

/* Process Timeline */
.timeline-section {
    padding: var(--spacing-xl) 0;
    background: #FFFFFF;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: var(--spacing-lg) auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-2);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.timeline-item:nth-child(even) .timeline-content {
    order: 2;
}

.timeline-item:nth-child(even) .timeline-number {
    order: 1;
}

.timeline-content {
    background: #F8F9FD;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.timeline-step {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.timeline-description {
    color: #4A5568;
    line-height: 1.7;
}

.timeline-number {
    text-align: center;
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.timeline-number::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border: 4px solid var(--primary);
    border-radius: 50%;
    z-index: -1;
}

/* Projects Grid */
.projects-section {
    padding: var(--spacing-xl) 0;
    background: #F8F9FD;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.project-card {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.project-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.05) 10px,
            rgba(255, 255, 255, 0.05) 20px
        );
}

.project-content {
    padding: 2rem;
}

.project-category {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.project-title {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.project-description {
    color: #4A5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.project-meta {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #E2E8F0;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.meta-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.meta-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

/* Team Section */
.team-section {
    padding: var(--spacing-xl) 0;
    background: #FFFFFF;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.team-card {
    text-align: center;
    background: #F8F9FD;
    padding: 2rem;
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-avatar {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-2);
    border-radius: 50%;
    overflow: hidden;
}

.team-name {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: #4A5568;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-2);
    text-align: center;
    color: var(--text-primary);
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Culture Section */
.culture-section {
    padding: var(--spacing-xl) 0;
    background: #F8F9FD;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.culture-card {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
}

.culture-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.culture-emoji {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.culture-title {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.culture-description {
    color: #4A5568;
    line-height: 1.7;
}

/* ============================
   Projects Page Styles
============================ */
.communicate-section {
    padding: var(--section-padding);
    background: var(--bg-gradient-light);
    position: relative;
}

.communicate-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.communicate-text {
    font-size: 1.15rem;
    color: #4A5568;
    line-height: 1.9;
    margin-top: 1.5rem;
}

.projects-showcase {
    padding: var(--section-padding);
    background: var(--bg-white);
    position: relative;
}

.projects-grid-main {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

.project-item {
    flex: 1;
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 10px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.project-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 115, 190, 0.02) 0%, rgba(247, 148, 29, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.project-item:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 30px 60px rgba(30, 115, 190, 0.15);
    border-color: rgba(30, 115, 190, 0.15);
}

.project-item:hover::before {
    opacity: 1;
}

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

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-item:hover .project-img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0) 0%,
        rgba(15, 23, 42, 0.6) 60%,
        rgba(15, 23, 42, 0.92) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: flex-end;
    padding: 2.5rem;
    z-index: 2;
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-overlay-content {
    color: var(--text-primary);
    width: 100%;
}

.project-overlay-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    transform: translateY(20px);
    transition: transform 0.5s ease 0.1s;
}

.project-overlay-content p {
    font-size: 1.05rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(20px);
    transition: transform 0.5s ease 0.15s;
}

.project-item:hover .project-overlay-content h3,
.project-item:hover .project-overlay-content p {
    transform: translateY(0);
}

.project-info {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.project-name {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.project-item:hover .project-name {
    color: var(--primary);
}

.project-category {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 1rem;
}

/* Projects Responsive */
@media (max-width: 1200px) {
    .projects-grid-main {
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .projects-grid-main {
        flex-wrap: wrap;
    }
    
    .project-item {
        flex: 1 1 calc(50% - 1rem);
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .projects-showcase {
        padding: 4rem 0;
    }
    
    .projects-grid-main {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .project-item {
        flex: 1 1 100%;
    }
    
    .project-image-container {
        height: 280px;
    }
}

/* Expertise Section - Industry Standard Horizontal Layout */
.expertise-section {
    padding: 5rem 0;
    background: var(--bg-light);
    position: relative;
}

.expertise-grid {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    justify-content: space-between;
}

.expertise-card {
    flex: 1;
    text-align: center;
    padding: 1.75rem 1.25rem;
    background: #ffffff;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.expertise-card:hover {
    background: var(--primary);
    color: var(--text-primary);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(30, 115, 190, 0.2);
}

.expertise-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.expertise-card:hover .expertise-icon {
    background: var(--text-primary);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.25);
}

.expertise-icon svg {
    width: 26px;
    height: 26px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.expertise-card:hover .expertise-icon svg {
    color: var(--primary);
}

.expertise-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.625rem;
    color: var(--dark);
    transition: color 0.3s ease;
}

.expertise-card:hover h3 {
    color: var(--text-primary);
}

.expertise-card p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    margin: 0;
}

.expertise-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Expertise */
@media (max-width: 1024px) {
    .expertise-grid {
        flex-wrap: wrap;
    }
    
    .expertise-card {
        flex: 1 1 calc(50% - 0.75rem);
        min-width: 280px;
    }
}

@media (max-width: 640px) {
    .expertise-section {
        padding: 4rem 0;
    }
    
    .expertise-grid {
        flex-direction: column;
        gap: 1rem;
    }
    
    .expertise-card {
        padding: 1.5rem 1rem;
    }
    
    .expertise-icon {
        width: 44px;
        height: 44px;
    }
    
    .expertise-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .expertise-card h3 {
        font-size: 1.05rem;
    }
    
    .expertise-card p {
        font-size: 0.85rem;
    }
}

/* Stats Section - Modern Design */
.stats {
    padding: 6rem 0 !important;
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%) !important;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(30, 115, 190, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(247, 148, 29, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary) 0%, #ff8c42 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(247, 148, 29, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.stat-number {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    color: var(--secondary);
    text-shadow: 0 4px 20px rgba(247, 148, 29, 0.5);
}

.stat-label {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 0;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-label {
    color: rgba(255, 255, 255, 1);
}

/* Responsive Stats */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .stats {
        padding: 4rem 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

/* ============================
   Common Content Sections
============================ */
.content-section {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.content-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.9;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ============================
   Innovations Page Styles
============================ */
.development-section {
    padding: var(--section-padding);
    background: var(--bg-gradient-light);
    position: relative;
}

.all-in-one-section {
    padding: var(--section-padding);
    background: var(--bg-white);
    position: relative;
}

.all-in-one-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.all-in-one-image {
    position: relative;
}

.all-in-one-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-slow);
}

.all-in-one-image img:hover {
    transform: scale(1.02);
}

.signature-walls-section {
    position: relative;
    padding: var(--section-padding);
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow: hidden;
}

.signature-walls-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 0;
}

.signature-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2.5rem;
}

.signature-content .section-title {
    color: var(--text-primary);
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.signature-subtitle {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.signature-intro {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 1.5rem;
}

.key-features-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: 2.5rem;
}

.key-feature-card {
    background: rgba(255, 255, 255, 0.12);
    padding: 2rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.key-feature-card:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: var(--secondary);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.feature-card-title {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* ============================
   Process Page Styles
============================ */
.manufacturing-section {
    padding: var(--section-padding);
    background: var(--bg-gradient-light);
    position: relative;
}

.manufacturing-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: 3rem;
}

.step-card {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.step-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.step-info {
    padding: 1.5rem;
}

.step-info h4 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.step-info p {
    color: var(--text-secondary);
}

.services-section {
    padding: var(--section-padding);
    background: var(--bg-white);
    position: relative;
}

.services-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.services-text {
    text-align: left;
}

.services-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.services-text .section-description {
    text-align: left;
}

.services-image {
    position: relative;
}

.services-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-slow);
}

.services-image img:hover {
    transform: scale(1.02);
}

.consultation-section {
    padding: var(--section-padding);
    background: var(--bg-light);
    position: relative;
}

.consultation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-md);
}

.consultation-card {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.consultation-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.consultation-image {
    width: 100%;
    height: 250px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.consultation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.consultation-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.consultation-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.consultation-highlight {
    color: var(--dark);
    font-weight: 600;
    font-style: italic;
}

/* ============================
   About Page Styles - Sleek Modern Design
============================ */
.about-features-section {
    padding: 6rem 0 !important;
    background: #ffffff !important;
    position: relative;
    overflow: hidden;
    margin-top: -100px;
    padding-top: 120px !important;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.about-feature-card {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.1),
        0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary) 0%, #ff8c42 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.about-feature-card:hover::before {
    transform: scaleX(1);
}

.about-feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(247, 148, 29, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-feature-card:hover::after {
    opacity: 1;
}

.about-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.25),
        0 0 60px rgba(247, 148, 29, 0.2);
    border-color: rgba(247, 148, 29, 0.6);
}

.about-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-feature-card:hover h3 {
    color: var(--secondary);
    text-shadow: 0 2px 10px rgba(247, 148, 29, 0.3);
}

.about-feature-card p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    margin: 0;
    position: relative;
    z-index: 1;
}

.about-feature-card:hover p {
    color: rgba(255, 255, 255, 0.95);
}

/* About Features Responsive */
@media (max-width: 1024px) {
    .about-features-section {
        padding: 5rem 0;
    }
    
    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
    
    .about-feature-card:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-features-section {
        padding: 4rem 0;
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-feature-card:nth-child(5) {
        max-width: 100%;
    }
    
    .about-feature-card {
        padding: 2rem 1.5rem;
    }
    
    .about-feature-card h3 {
        font-size: 1.1rem;
    }
    
    .about-feature-card p {
        font-size: 0.9rem;
    }
}

/* Company Story Section - Modern Sleek Design */
.company-story-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%) !important;
    position: relative;
}

.story-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.1),
        0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.story-content .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2rem;
}

.story-text {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
}

.story-highlight {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 700;
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(30, 115, 190, 0.08) 0%, rgba(247, 148, 29, 0.08) 100%);
    border-left: 4px solid var(--secondary);
    border-radius: 0 12px 12px 0;
    font-style: normal;
    text-align: left;
}

/* Mission & Vision Section - Sleek Modern Design */
.mission-vision-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.mission-vision-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.mission-vision-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
}

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

.mission-card, .vision-card {
    background: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.mission-card::before, .vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.mission-card::after, .vision-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(30, 115, 190, 0.03) 0%, transparent 70%);
    transition: opacity 0.5s ease;
    opacity: 0;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 30px 60px rgba(30, 115, 190, 0.15);
    border-color: rgba(30, 115, 190, 0.15);
}

.mission-card:hover::after, .vision-card:hover::after {
    opacity: 1;
}

.mission-card h3, .vision-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.mission-card p, .vision-card p {
    color: #475569;
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.leadership-info {
    margin-top: 4rem;
    padding: 2.5rem 3rem;
    background: linear-gradient(135deg, rgba(30, 115, 190, 0.05) 0%, rgba(247, 148, 29, 0.05) 100%);
    border-radius: 20px;
    border-left: 5px solid var(--secondary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.leadership-info p {
    color: #475569;
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
}

/* Mission & Vision Responsive */
@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-card, .vision-card {
        padding: 2.5rem 2rem;
    }
    
    .leadership-info {
        padding: 2rem;
    }
}

/* Purpose Section - Bold Professional Design WITH PARALLAX */
.purpose-section {
    padding: 5rem 0 !important;
    background: linear-gradient(rgba(13, 27, 42, 0.85), rgba(27, 38, 59, 0.85)), url('../assets/images/projects/PURPOSE.jpg') center/cover no-repeat fixed !important;
    text-align: center;
    position: relative;
    border-bottom: 4px solid var(--secondary);
}

.purpose-content {
    position: relative;
    z-index: 1;
}

.purpose-label {
    font-size: 0.875rem;
    color: var(--secondary);
    margin-bottom: 1.25rem;
    letter-spacing: 4px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(247, 148, 29, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(247, 148, 29, 0.3);
}

.purpose-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: #ffffff;
    font-weight: 800;
    line-height: 1.3;
    max-width: 900px;
    margin: 0 auto;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

/* Core Values Section - Clean Professional Design */
.core-values {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
}

.core-values .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.core-values .section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--dark);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    background: #ffffff;
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #f0f1f3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(30, 115, 190, 0.15);
    border-color: var(--primary);
}

/* Core Values Section - Icons & Content Styling */
.value-icon {
    height: auto;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.value-icon svg {
    width: 50px;
    height: 50px;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(247, 148, 29, 0.1) 0%, rgba(247, 148, 29, 0.2) 100%);
    border-radius: 50%;
    color: var(--secondary);
    stroke: var(--secondary);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon svg {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(247, 148, 29, 0.2) 0%, rgba(247, 148, 29, 0.3) 100%);
}

.value-title {
    font-size: 1.125rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.value-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.9rem;
}

.value-card:hover .value-title {
    color: var(--primary);
}

/* Core Values Responsive */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .core-values {
        padding: 3rem 0;
    }
    
    .purpose-section {
        padding: 3rem 0;
    }
}

/* ============================
   Life at SS Page Styles
============================ */
.work-with-us-section {
    padding: var(--section-padding);
    background: var(--bg-gradient-light);
    position: relative;
    text-align: center;
}

/* Application Form Section - Parallax Design */
.application-form-section {
    padding: 5rem 0 !important;
    background: linear-gradient(rgba(13, 27, 42, 0.92), rgba(27, 38, 59, 0.92)), url('../assets/images/projects/PURPOSE.jpg') center/cover no-repeat fixed !important;
    position: relative;
    overflow: hidden;
}

.application-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(30, 115, 190, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(247, 148, 29, 0.06) 0%, transparent 50%);
    z-index: 0;
}

.form-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.form-left {
    display: flex;
    align-items: center;
}

.form-left-content {
    color: #ffffff;
}

.form-main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.6);
}

.form-subtitle {
    font-size: 1.125rem;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7), 0 1px 4px rgba(0, 0, 0, 0.5);
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: var(--secondary);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.benefit-icon {
    width: 24px;
    height: 24px;
    color: var(--secondary);
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}

.benefit-item span {
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.4);
}

.form-right {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.career-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group-modern {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-modern label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group-modern input,
.form-group-modern textarea {
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    color: #1e293b;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 115, 190, 0.1);
}

.form-group-modern textarea {
    resize: vertical;
    min-height: 100px;
}

.file-upload-group {
    margin-top: 0.5rem;
}

.file-upload-wrapper input[type="file"] {
    display: none;
}

.file-upload-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    border: 2px dashed #cbd5e1;
    border-radius: 10px;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-button:hover {
    border-color: var(--primary);
    background: #f1f5f9;
}

.file-upload-button svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.file-upload-button span {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
}

.btn-submit-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, #0d5a9e 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 115, 190, 0.3);
    margin-top: 0.5rem;
}

.btn-submit-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 115, 190, 0.4);
}

.btn-submit-modern:active {
    transform: translateY(0);
}

.btn-submit-modern:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-submit-modern:hover .btn-icon {
    transform: translateX(4px);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.form-message.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Responsive Form */
@media (max-width: 1024px) {
    .form-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-left {
        text-align: center;
    }
    
    .benefit-item {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .application-form-section {
        padding: 3rem 0;
    }
    
    .form-right {
        padding: 2rem 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-main-title {
        font-size: 2rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
}

.why-join-section {
    padding: var(--section-padding);
    background: #ffffff;
    color: var(--text-dark);
    position: relative;
}

.why-join-section .section-title {
    color: var(--text-dark);
}

.why-join-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: 3rem;
}

.why-join-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
    border: 1px solid #e5e7eb;
}

.why-join-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(30, 115, 190, 0.15);
    background: #ffffff;
    border-color: var(--primary);
}

.why-join-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.why-join-card h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.why-join-card p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
}

/* Life Gallery Section - Masonry Layout */
.life-gallery-section {
    padding: 4rem 0;
    background: #ffffff;
    position: relative;
}

.life-gallery-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.life-gallery-section .section-title {
    font-size: 2.25rem;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 0;
    letter-spacing: 0;
}

.life-gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 180px;
    gap: 1rem;
    margin-top: 2.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    background: #f5f5f5;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Different Size Classes for Masonry Effect */
.gallery-item-small {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item-medium {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 3;
    grid-row: span 1;
}

.gallery-item-tall {
    grid-column: span 1;
    grid-row: span 2;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

/* Gallery Responsive */
@media (max-width: 1200px) {
    .life-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 160px;
    }
}

@media (max-width: 768px) {
    .life-gallery-section {
        padding: 3rem 0;
    }
    
    .life-gallery-section .section-title {
        font-size: 1.75rem;
    }
    
    .life-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 140px;
        gap: 0.75rem;
    }
    
    .gallery-item-small,
    .gallery-item-medium,
    .gallery-item-large,
    .gallery-item-wide,
    .gallery-item-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 480px) {
    .life-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .all-in-one-grid {
        grid-template-columns: 1fr;
    }
    
    .services-content-grid {
        grid-template-columns: 1fr;
    }
    
    .consultation-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 0;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 0;
        padding-left: 3rem;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        order: 2;
    }
    
    .timeline-number {
        position: absolute;
        left: -3rem;
        font-size: 2rem;
    }
    
    .life-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 75vh;
    }
    
    .page-hero-content {
        padding: 0 1.5rem;
    }
    
    .page-hero-content::before {
        top: -45px;
        width: 60px;
        height: 3px;
    }
    
    .page-hero-title {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
        letter-spacing: 5px;
        margin-bottom: 1.5rem;
    }
    
    .page-hero-subtitle {
        font-size: clamp(1.1rem, 4.5vw, 1.4rem);
        letter-spacing: 0.5px;
    }
    
    /* Hide scroll indicator on mobile */
    .page-hero .scroll-indicator {
        display: none;
    }
    
    /* Simplify animations on mobile */
    .page-hero::before {
        animation: gridMove 90s linear infinite;
        opacity: 0.3;
    }
    
    .page-hero-content::after {
        opacity: 0.15;
        animation: particlesDrift 80s linear infinite;
    }
}
    
    /* OLD - keeping for backwards compatibility if needed */
    .page-header {
        padding: 10rem 0 4rem;
    }
    
    .page-title {
        font-size: clamp(2rem, 6vw, 3.5rem);
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .typing-container {
        min-height: 50px;
        margin: 1rem auto;
        padding: 0 0.5rem;
    }
    
    .typing-text {
        font-size: clamp(1.5rem, 4.5vw, 2rem);
        letter-spacing: 1.5px;
    }
    
    .typing-cursor {
        height: clamp(1.5rem, 4.5vw, 2rem);
        width: 2px;
        margin-left: 4px;
    }
    
    .page-subtitle {
        margin-top: 0.5rem;
    }
    
    /* Simplify animations on mobile for better performance */
    .shape {
        opacity: 0.03;
    }
    
    .shape-4,
    .shape-5 {
        display: none;
    }
    
    .particle-4,
    .particle-5,
    .particle-6 {
        display: none;
    }
    
    .grid-pattern {
        animation: none;
        background-size: 50px 50px;
    }
    
    /* Simplify header animations on mobile */
    .page-header-background::after {
        animation: shimmer 35s linear infinite;
    }
    
    .page-header-background::before {
        animation: glowMove 25s ease-in-out infinite;
    }
    
    .life-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .projects-grid,
    .projects-grid-main {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

