/* Modern Professional Website - Large Text, Great Proportions */
html
{
     scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --accent-blue: #2563eb;
    --accent-light: #3b82f6;
    --text-white: #ffffff;
    --text-light: #f8fafc;
    --text-gray: #cbd5e1;
    --text-dark: #1e293b;
    --border-color: rgba(255, 255, 255, 0.2);
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.2);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.3);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.4);
    --gradient-primary: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --gradient-accent: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--primary-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navigation - More Visible */
.section01 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-brand {
    color: var(--text-white);
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: -0.02em;
    text-decoration: none;
}


.nav-links {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    gap: 2rem;
}

.section01 a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.section01 a:hover {
    color: var(--text-white);
    background: rgba(59, 130, 246, 0.1);
}

.section01 a span {
    position: relative;
}

/* Hero Section - Properly Sized */
.section1 {
    height: 100vh;
    min-height: 600px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.section1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(30, 41, 59, 0.1) 0%, transparent 70%);
    opacity: 0.8;
}

.section1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(ellipse 200px 400px at 20% 20%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 300px 150px at 80% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 150px 300px at 50% 10%, rgba(30, 41, 59, 0.06) 0%, transparent 40%),
        radial-gradient(ellipse 250px 200px at 10% 70%, rgba(37, 99, 235, 0.05) 0%, transparent 45%),
        radial-gradient(ellipse 180px 350px at 90% 30%, rgba(59, 130, 246, 0.04) 0%, transparent 35%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="checker" width="60" height="60" patternUnits="userSpaceOnUse"><rect width="30" height="30" fill="rgba(59,130,246,0.08)"/><rect x="30" y="30" width="30" height="30" fill="rgba(59,130,246,0.08)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23checker)"/></svg>');
    animation: spiralFlow 30s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes spiralFlow {
    0% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }

    25% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-40px) scale(0.9);
        opacity: 0.4;
    }

    75% {
        transform: translateY(-20px) scale(1.05);
        opacity: 0.7;
    }

    100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
}


.hero-content {
    text-align: center;
    padding: 0 40px;
    max-width: 800px;
    z-index: 2;
    position: relative;
}


.hero-title {
    color: var(--text-white);
    font-size: 3.8rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    color: var(--text-light);
    font-size: 1.5rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: var(--accent-light);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}


.cta-button {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--text-white);
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

/* About Section - Large and Spacious */
.section2 {
    padding: 80px 40px;
    max-width: 800px;
    margin: -60px auto 60px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.section2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.s2a {
    color: var(--text-white);
    text-align: center;
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    position: relative;
}

.s2a::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.s2b {
    color: var(--text-white);
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Services Section - Large Two-Column Layout */
.section3 {
    padding: 120px 40px;
    background: var(--primary-dark);
    position: relative;
}

.section3::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 100 100"><defs><pattern id="dots" width="15" height="15" patternUnits="userSpaceOnUse"><circle cx="7.5" cy="7.5" r="1" fill="rgba(59,130,246,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.s3a {
    color: var(--text-white);
    text-align: center;
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 4rem;
    position: relative;
}

.s3a::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

/* Centered Services Layout */
.section3 .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Services Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.service-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(59, 130, 246, 0.3);
}

.service-card.featured {
    border: 2px solid rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #1a1a1a 0%, rgba(37, 99, 235, 0.05) 100%);
    position: relative;
}

.service-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--gradient-accent);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 0 0 12px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.3));
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.service-title {
    color: var(--text-white);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.service-description {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

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

.highlight-text {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--accent-light);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.s3d1 {
    max-width: 800px;
    width: 100%;
    background: #1a1a1a;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 60px 50px;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.s3d1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.s3d1:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}


.heading {
    color: var(--text-white);
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.text {
    color: var(--text-white);
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}



/* Values Section - Large Grid */
.section4 {
    padding: 120px 40px;
    background: #1a1a1a;
    position: relative;
}

.section4::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(30, 41, 59, 0.05) 0%, transparent 50%);
}

.s4d5 {
    color: var(--text-white);
    text-align: center;
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 4rem;
    display: block;
    position: relative;
    z-index: 2;
}

.s4d5::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.value-card {
    grid-column: span 4;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.value-icon {
    font-size: 3.5rem;
    color: var(--accent-blue);
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.3));
    text-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
    margin-bottom: 2rem;
}

.value-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.value-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Footer - Compact and Clean */
.footer {
    background: var(--gradient-primary);
    color: var(--text-light);
    text-align: center;
    padding: 40px 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.s5a {
    color: var(--text-white);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.s5b {
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.s5c {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.s5d {
    color: var(--accent-light);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.s5d:hover {
    color: var(--text-white);
}

/* Utility Classes */
.space,
.space2,
.space3 {
    display: none;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .value-card {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card {
        padding: 40px 30px;
    }

    .service-icon {
        font-size: 3.5rem;
    }

    .service-title {
        font-size: 1.6rem;
    }

    .s2a,
    .s3a,
    .s4d5 {
        font-size: 2.5rem;
    }

    .values-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .value-card {
        grid-column: 1 / span 6;
    }

    .section01 {
        height: 70px;
        padding: 0 4%;
    }

    .nav-links {
        gap: 1rem;
    }

    .section01 a {
        font-size: 15px;
        padding: 10px 16px;
    }

    .section2,
    .section3,
    .section4 {
        padding: 100px 20px;
    }

    .s3d1 {
        padding: 50px 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }


    .s2a,
    .s3a,
    .s4d5 {
        font-size: 2rem;
    }

    .section01 a {
        font-size: 14px;
        padding: 8px 12px;
    }

    .nav-links {
        gap: 0.5rem;
    }

    .section2,
    .section3,
    .section4 {
        padding: 80px 20px;
    }

    .s3d1 {
        padding: 40px 30px;
    }
}