@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Public+Sans:wght@300;400;500;600;700&family=JetBrains+Mono:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, rgba(0, 17, 34, 0.75) 0%, rgba(0, 51, 102, 0.75) 100%);
    color: white;
    padding: 1.5rem 0;
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-section h1 {
    font-family: 'Public Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 0.3rem;
    background: linear-gradient(135deg, #ffffff, #94d3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.05em;
    position: relative;
}

.logo-section h1::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #0099ff, transparent);
    opacity: 0.6;
}

.tagline {
    font-size: 0.95rem;
    opacity: 0.85;
    font-weight: 500;
    letter-spacing: 0.5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    padding: 0.8rem 0;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #0099ff, #00ccff);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #ffffff;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000814 0%, #001d3d 50%, #003566 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grid" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(0,153,255,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(0,153,255,0);stop-opacity:0" /></radialGradient></defs><pattern id="smallGrid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(0,153,255,0.05)" stroke-width="1"/></pattern><rect width="100%" height="100%" fill="url(%23smallGrid)" /></svg>') center/cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Public Sans', sans-serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 600;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #94d3ff 50%, #0099ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.highlight-banner {
    font-family: 'JetBrains Mono', monospace;
    background: linear-gradient(135deg, #0099ff 0%, #00ccff 100%);
    padding: 2rem 3rem;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 3rem auto;
    max-width: 700px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 20px 40px rgba(0, 153, 255, 0.3);
    transform: perspective(1000px) rotateX(5deg);
}

.cta-primary {
    display: inline-block;
    background: linear-gradient(135deg, #0099ff 0%, #00ccff 100%);
    color: white;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    margin-top: 2rem;
    box-shadow: 0 15px 30px rgba(0, 153, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 153, 255, 0.6);
    background: linear-gradient(135deg, #00ccff 0%, #0099ff 100%);
}

/* Section Styles */
.section-dark {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: white;
}

.section-darker {
    background: linear-gradient(135deg, #000000 0%, #0f0f0f 100%);
    color: white;
}

.section-gradient {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    color: white;
}

section {
    padding: 8rem 0;
    position: relative;
}

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

.section-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    font-weight: 500;
    color: #0099ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Public Sans', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #94d3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0099ff, #00ccff);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 153, 255, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    font-weight: 600;
    flex-shrink: 0;
}

.service-icon::before {
    content: attr(data-icon);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    letter-spacing: -0.5px;
}

/* Service Icon Colors */
.service-icon.pm { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.service-icon.cloud { background: linear-gradient(135deg, #06b6d4, #3b82f6); }
.service-icon.arch { background: linear-gradient(135deg, #f59e0b, #f97316); }
.service-icon.opt { background: linear-gradient(135deg, #10b981, #059669); }
.service-icon.adv { background: linear-gradient(135deg, #ef4444, #dc2626); }
.service-icon.rev { background: linear-gradient(135deg, #8b5cf6, #a855f7); }
.service-icon.exec { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.service-icon.train { background: linear-gradient(135deg, #84cc16, #65a30d); }

/* Enhanced Service Card Layout for Large Screens */
@media (min-width: 1024px) {
    .service-card {
        display: flex;
        align-items: flex-start;
        gap: 2rem;
        text-align: left;
    }
    
    .service-card .service-icon {
        margin-bottom: 0;
        margin-top: 0.5rem;
    }
    
    .service-content {
        flex: 1;
    }
}

.service-title {
    font-family: 'Public Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.service-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Case Study Section */
.case-study-container {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.case-study-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 153, 255, 0.05), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.case-study-content {
    position: relative;
    z-index: 2;
}

.case-study-badge {
    font-family: 'JetBrains Mono', monospace;
    display: inline-block;
    background: linear-gradient(135deg, #0099ff, #00ccff);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.case-study-title {
    font-family: 'Public Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: white;
}

.case-study-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

/* Contact Section */
.contact-hero {
    text-align: center;
    margin-bottom: 4rem;
}

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

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 4px solid #0099ff;
}

.contact-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: #0099ff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.contact-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #000000 0%, #001122 100%);
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Image Placeholders */
.image-placeholder {
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.1), rgba(0, 204, 255, 0.05));
    border: 2px dashed rgba(0, 153, 255, 0.3);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin: 2rem 0;
}

/* Empower Framework Styles */
.empower-phases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.phase-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
}

.phase-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 153, 255, 0.2);
}

.phase-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: #0099ff;
    margin-bottom: 1rem;
}

.phase-title {
    font-family: 'Public Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.phase-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.phase-features {
    list-style: none;
    padding: 0;
}

.phase-features li {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.phase-features li::before {
    content: "→";
    color: #0099ff;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.empower-features {
    margin-top: 5rem;
    text-align: center;
}

.empower-features h3 {
    font-family: 'Public Sans', sans-serif;
    font-size: 2rem;
    color: white;
    margin-bottom: 3rem;
}

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

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
}

.feature-icon::before {
    content: attr(data-icon);
}

/* Feature Icon Colors */
.feature-icon.bp { background: linear-gradient(135deg, #7c3aed, #5b21b6); }
.feature-icon.tool { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
.feature-icon.roi { background: linear-gradient(135deg, #eab308, #ca8a04); }
.feature-icon.stke { background: linear-gradient(135deg, #22c55e, #16a34a); }

/* Enhanced Feature Item Layout for Large Screens */
@media (min-width: 1024px) {
    .feature-item {
        text-align: left;
    }
}

.feature-text {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Enhanced Services Styles */
.services-categories {
    margin-top: 4rem;
}

.service-category {
    margin-bottom: 5rem;
}

.category-title {
    font-family: 'Public Sans', sans-serif;
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
    text-align: center;
}

/* Case Studies Enhanced */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.case-study-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-item {
    text-align: center;
}

.highlight-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: #0099ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.5rem;
}

.highlight-value {
    font-weight: 600;
    color: white;
    font-size: 1rem;
}

.awards-section {
    margin-top: 5rem;
    text-align: center;
}

.awards-title {
    font-family: 'Public Sans', sans-serif;
    font-size: 2rem;
    color: white;
    margin-bottom: 3rem;
}

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

.award-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.award-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
}

.award-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 auto;
    flex-shrink: 0;
}

.award-icon::before {
    content: attr(data-icon);
}

/* Award Icon Colors */
.award-icon.sap { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.award-icon.uk { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.award-icon.qlty { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.award-icon.first { background: linear-gradient(135deg, #10b981, #059669); }

/* Enhanced Award Item Layout for Large Screens */
@media (min-width: 1024px) {
    .award-item {
        flex-direction: row;
        text-align: left;
        gap: 1.5rem;
        align-items: center;
    }
    
    .award-icon {
        margin: 0;
    }
}

.award-text {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-align: left;
}

/* Founder Profile */
.founder-profile {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
   
}

.founder-name {
    font-family: 'Public Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.founder-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: #0099ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.founder-bio {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stats-grid::before {
    display: none;
}    
    
.highlight-banner {
    position: relative;
    margin: 4rem auto;
    max-width: 900px;
    text-align: center;
    background: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    transform: none !important;
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

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

.stats-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 153, 255, 0.3), transparent);
    transform: translateY(-50%);
}

.stat-item {
    position: relative;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #0099ff, #00ccff);
    transform: translateX(-50%);
    border-radius: 2px;
}

.stat-number {
    font-family: 'Public Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #94d3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    line-height: 1.4;
}

.achievement-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 153, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 50px;
    margin-top: 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.achievement-badge::before {
    display: none;
    content: '🏆';
    font-size: 1.1rem;
}

.founder-img {
    max-width: 12rem;
    border-radius: 100rem;
    background: linear-gradient(135deg, #ffffff 0%, #94d3ff 100%);
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .header-content .logo-section {
        text-align: center;
    }
    
    .header-content .tagline {
        font-size: 0.66rem;
        max-width: 13rem;
    }
    
    nav {
        display: none;
    }

    nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav a {
        font-size: 0.95rem;
        padding: 0.6rem 0;
    }

    .hero {
        padding: 3rem 0;
        min-height: 90vh;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: stretch; /* Better for mobile stacking */
    }

    .case-study-container,
    .contact-info {
        padding: 2rem;
    }

    section {
        padding: 5rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }
    
    .highlight-banner {
        margin: 2rem auto 1rem;
        max-width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem 0;
    }
    
    .stats-grid::before {
        display: none;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .achievement-badge {
        padding: 0;
        font-size:0.95rem;
        margin-top: 1rem;
        gap: 0.6rem;
        background: transparent;
        border: none;
    }
    
    .cta-primary {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .empower-phases {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 0;
    }
    
    .section-number {
        font-size: 0.75rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .phase-card {
        padding: 0.5rem 1.25rem 1.5rem 1.25rem;
    }
    
    .phase-number {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .phase-description {
        margin-bottom: 1rem;
    }
    
    .empower-features h3,
    h3.category-title,
    h3.awards-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    .feature-text {
        text-align: left;
        font-size: 0.875rem;
    }
    
    .features-grid {
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.5rem 1.0rem;
        border-radius: 16px;
        margin-bottom: 0;
        display: block; /* Override flex layout for mobile */
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .service-card:hover {
        transform: translateY(-3px); /* Reduced movement for mobile */
        background: rgba(255, 255, 255, 0.08);
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        margin: 0 auto 1.5rem auto; /* Center and add bottom margin */
        font-size: 0.8rem;
    }
    
    .service-content {
        width: 100%;
    }
    
    .service-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }
    
    .service-description {
        font-size: 0.9rem;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.75);
    }
    
    /* Services grid improvements */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem; /* Reduced from 2rem */
    }
    
    .service-category {
        margin-bottom: 2rem;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem; /* Reduced from 5rem */
    }
    
    .case-study-container {
        padding: 2rem 1.5rem;
        border-radius: 16px;
        margin-bottom: 1rem;
    }
    
    .case-study-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
        margin-bottom: 1.5rem;
        border-radius: 25px;
    }
    
    .case-study-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
        word-break: break-word;
    }
    
    .case-study-text {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .case-study-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .highlight-item {
        text-align: left;
        padding: 0.8rem 0;
    }
    
    .highlight-label {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
        display: block;
    }
    
    .highlight-value {
        font-size: 0.95rem;
        font-weight: 600;
        word-break: break-word;
    }
    
    /* Awards section mobile improvements */
    .awards-section {
        margin-top: 3rem; /* Reduced from 5rem */
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .award-item {
        padding: 1.5rem;
        flex-direction: column; /* Stack icon and text */
        text-align: center;
        gap: 1rem;
    }
    
    .award-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }
    
    .award-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Founder profile improvements */
    .founder-profile {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .founder-name {
        font-size: 1.3rem;
        line-height: 1.3;
    }
    
    .founder-title {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .founder-bio {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Contact info improvements */
    .contact-info {
        padding: 2rem 1.5rem;
    }
    
    .contact-item {
        margin-bottom: 1.5rem;
        padding: 1rem;
    }
    
    .contact-label {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }
    
    .contact-value {
        font-size: 1rem;
        line-height: 1.4;
        word-break: break-word; /* This is key for email wrapping */
        overflow-wrap: break-word; /* Additional browser support */
        hyphens: auto; /* Allow hyphenation if needed */
    }
    
    /* Specific fix for email links */
    .contact-value a {
        word-break: break-all; /* Force break on long emails */
        color: #0099ff;
        text-decoration: none;
    }
    
    .founder-img {
        max-width: 10rem;
    }
}

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

section {
    scroll-margin-top: 120px;
}

/* Subtle animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

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


