/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: 
        radial-gradient(ellipse at top left, #1a2347 0%, #0a0e1a 40%),
        radial-gradient(ellipse at bottom right, #1a1f2e 0%, #0f1823 50%),
        linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 25%, #0f1823 50%, #1a2347 75%, #0a0e1a 100%);
    background-attachment: fixed;
    color: #ffffff;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(147, 51, 234, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(196, 181, 253, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 40% 40%, rgba(147, 51, 234, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 60% 60%, rgba(196, 181, 253, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 10% 90%, rgba(168, 85, 247, 0.12) 0%, transparent 35%);
    pointer-events: none;
    z-index: 1;
    animation: backgroundPulse 12s ease-in-out infinite alternate;
}

@keyframes backgroundPulse {
    0% { opacity: 0.95; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.005); }
    100% { opacity: 0.98; transform: scale(1.005); }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, transparent 20%, rgba(147, 51, 234, 0.04) 21%, transparent 22%),
        radial-gradient(circle at 75% 75%, transparent 20%, rgba(196, 181, 253, 0.04) 21%, transparent 22%),
        radial-gradient(circle at 50% 50%, transparent 30%, rgba(147, 51, 234, 0.03) 31%, transparent 32%),
        radial-gradient(circle at 10% 90%, transparent 25%, rgba(168, 85, 247, 0.03) 26%, transparent 27%),
        radial-gradient(circle at 90% 10%, transparent 20%, rgba(196, 181, 253, 0.02) 21%, transparent 22%);
    background-size: 120px 120px, 180px 180px, 250px 250px, 150px 150px;
    pointer-events: none;
    z-index: 1;
    animation: patternMove 15s linear infinite;
}

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

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

/* Navigation */
.navbar {
    background: rgba(10, 14, 26, 0.8);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    font-family: 'Space Grotesk', sans-serif;
    color: #9333ea;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #9333ea, #c4b5fd);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #9333ea;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.contact-btn {
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

.nav-link.contact-btn:hover {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: 
        radial-gradient(ellipse at 30% 20%, #1a2347 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, #1a1f2e 0%, transparent 50%),
        linear-gradient(135deg, #0a0e1a 0%, #1a2332 25%, #0f1823 50%, #1a2347 75%, #0a0e1a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(147, 51, 234, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 75% 75%, rgba(196, 181, 253, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(147, 51, 234, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
    animation: backgroundPulse 20s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(147, 51, 234, 0.03) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 40%, rgba(196, 181, 253, 0.03) 60%, transparent 80%),
        linear-gradient(90deg, transparent 20%, rgba(168, 85, 247, 0.02) 40%, transparent 60%),
        radial-gradient(circle at 15% 85%, rgba(147, 51, 234, 0.02) 0%, transparent 30%),
        radial-gradient(circle at 85% 15%, rgba(196, 181, 253, 0.02) 0%, transparent 30%);
    animation: heroShimmer 8s linear infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(40px, -30px) rotate(90deg) scale(1.1); }
    50% { transform: translate(-20px, 40px) rotate(180deg) scale(1.05); }
    75% { transform: translate(30px, 20px) rotate(270deg) scale(1.08); }
}

/* Floating Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(147, 51, 234, 0.4);
    border-radius: 50%;
    pointer-events: none;
}

.particle:nth-child(1) {
    width: 4px;
    height: 4px;
    top: 15%;
    left: 20%;
    animation: floatUp 20s infinite;
}

.particle:nth-child(2) {
    width: 5px;
    height: 5px;
    top: 25%;
    left: 60%;
    animation: floatUp 18s infinite;
    animation-delay: 3s;
}

.particle:nth-child(3) {
    width: 3px;
    height: 3px;
    top: 35%;
    left: 30%;
    animation: floatUp 16s infinite;
    animation-delay: 5s;
}

.particle:nth-child(4) {
    width: 4px;
    height: 4px;
    top: 45%;
    left: 70%;
    animation: floatUp 14s infinite;
    animation-delay: 1s;
}

.particle:nth-child(5) {
    width: 3px;
    height: 3px;
    top: 55%;
    left: 20%;
    animation: floatUp 12s infinite;
    animation-delay: 4s;
}

.particle:nth-child(6) {
    width: 5px;
    height: 5px;
    top: 65%;
    left: 50%;
    animation: floatUp 10s infinite;
    animation-delay: 6s;
}

.particle:nth-child(7) {
    width: 4px;
    height: 4px;
    top: 75%;
    left: 80%;
    animation: floatUp 22s infinite;
    animation-delay: 7s;
}

.particle:nth-child(8) {
    width: 3px;
    height: 3px;
    top: 85%;
    left: 15%;
    animation: floatUp 19s infinite;
    animation-delay: 2s;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    50% {
        opacity: 0.7;
        transform: translateY(0) scale(1);
    }
    100% {
        transform: translateY(-100vh) scale(0);
        opacity: 0;
    }
}

@keyframes heroShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

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

.hero-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #9333ea 50%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #b8c5d6;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Cards Section */
.feature-cards {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0e1a 0%, #0f1823 100%);
    position: relative;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.card {
    background: linear-gradient(135deg, #1a2332 0%, #243447 50%, #1a2332 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(147, 51, 234, 0.2);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(147, 51, 234, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(147, 51, 234, 0.3),
        0 0 60px rgba(147, 51, 234, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(147, 51, 234, 0.4);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 50%, #6d28d9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(147, 51, 234, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #c4b5fd, #9333ea, #7c3aed);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.card:hover .card-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(147, 51, 234, 0.4);
}

.card-icon i {
    font-size: 1.8rem;
    color: #ffffff;
    z-index: 1;
    position: relative;
}

.card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #b8c5d6;
    line-height: 1.7;
}

/* What We Do Section */
.what-we-do {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2332 0%, #243447 100%);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-header h2 {
    color: #4a9eff;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.section-header p {
    font-size: 1.1rem;
    color: #b8c5d6;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.all-services-link {
    color: #4a9eff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.all-services-link:hover {
    gap: 1rem;
}

/* Services Grid Section */
.services-grid {
    padding: 80px 0;
    background-color: #0a0e1a;
}

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

.service-card {
    background: linear-gradient(135deg, #1a2332 0%, #243447 100%);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(147, 51, 234, 0.2);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 1.2rem;
    color: #ffffff;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-card p {
    color: #b8c5d6;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a2332 0%, #0a0e1a 100%);
    padding: 50px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    color: #4a9eff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: #b8c5d6;
}

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

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #b8c5d6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4a9eff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b8c5d6;
}

/* Page Header Styles */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a2332 100%);
    text-align: center;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #4a9eff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header-content p {
    font-size: 1.2rem;
    color: #b8c5d6;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Detail Section */
.services-detail {
    padding: 80px 0;
    background-color: #0a0e1a;
}

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

.service-detail-card {
    background: linear-gradient(135deg, #1a2332 0%, #243447 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(147, 51, 234, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-header .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-detail-header .service-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.service-detail-header h2 {
    font-size: 1.8rem;
    color: #ffffff;
    margin: 0;
}

.service-detail-content p {
    color: #b8c5d6;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    color: #b8c5d6;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.service-features i {
    color: #9333ea;
    font-size: 0.9rem;
}

.service-cta {
    display: inline-block;
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(147, 51, 234, 0.4);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2332 0%, #243447 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.2rem;
    color: #b8c5d6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(147, 51, 234, 0.4);
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
    background-color: #0a0e1a;
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.about-text p {
    color: #b8c5d6;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image {
    background: linear-gradient(135deg, #1a2332 0%, #243447 100%);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(74, 158, 255, 0.2);
}

.about-image i {
    font-size: 5rem;
    color: #9333ea;
}

.values-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2332 0%, #243447 100%);
}

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

.value-card {
    text-align: center;
    padding: 2rem;
}

.value-card i {
    font-size: 3rem;
    color: #9333ea;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.value-card p {
    color: #b8c5d6;
    line-height: 1.6;
}

/* Careers Page Styles */
.careers-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a2332 100%);
    text-align: center;
}

.careers-hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #4a9eff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.careers-hero p {
    font-size: 1.2rem;
    color: #b8c5d6;
    max-width: 600px;
    margin: 0 auto;
}

.open-positions {
    padding: 80px 0;
    background-color: #0a0e1a;
}

.positions-grid {
    display: grid;
    gap: 2rem;
}

.position-card {
    background: linear-gradient(135deg, #1a2332 0%, #243447 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(147, 51, 234, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.position-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.position-title {
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0;
}

.position-type {
    background: rgba(147, 51, 234, 0.2);
    color: #9333ea;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.position-details {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    color: #b8c5d6;
}

.position-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.position-description {
    color: #b8c5d6;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.apply-button {
    display: inline-block;
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.apply-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(147, 51, 234, 0.4);
}

/* Industries Page Styles */
.industries-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a2332 100%);
    text-align: center;
}

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

.industry-card {
    background: linear-gradient(135deg, #1a2332 0%, #243447 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(147, 51, 234, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
}

.industry-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.industry-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.industry-card p {
    color: #b8c5d6;
    line-height: 1.6;
}

/* Capabilities Page Styles */
.capabilities-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a2332 100%);
    text-align: center;
}

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

.capability-card {
    background: linear-gradient(135deg, #1a2332 0%, #243447 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(147, 51, 234, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
}

.capability-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.capability-header i {
    font-size: 1.5rem;
    color: #9333ea;
}

.capability-header h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin: 0;
}

.capability-card p {
    color: #b8c5d6;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 14, 26, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-header h1 {
        font-size: 2rem;
    }

    .cards-grid,
    .services-cards {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .nav-container {
        padding: 0 15px;
    }

    .container {
        padding: 0 15px;
    }

    .card,
    .service-card {
        padding: 1.5rem;
    }
}
