.industry-solutions {
    padding: 4rem 0;
    background: var(--background);
    position: relative;
}

.industry-solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(var(--accent-rgb), 0.05) 0%,
        transparent 50%,
        rgba(var(--accent-rgb), 0.05) 100%
    );
    pointer-events: none;
}

.industry-solutions .section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.industry-solutions .section-title {
    text-align: center;
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-color);
    margin: 0 auto 6rem;
    max-width: 900px;
}

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

.industry-solutions .solution-card {
    background: var(--background);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-solutions .solution-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.industry-solutions .card-content {
    padding: 2.5rem;
    position: relative;
    border: 1px solid rgba(var(--text-rgb), 0.1);
    border-radius: 20px;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-solutions .solution-card:hover .card-content {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.industry-solutions .solution-card:hover::before {
    opacity: 1;
}

.industry-solutions .industry-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-solutions .industry-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(var(--accent-rgb), 0.1);
    border-radius: 16px;
    transform: rotate(45deg);
    transition: transform 0.4s ease;
}

.industry-solutions .solution-card:hover .industry-icon::after {
    transform: rotate(225deg);
}

.industry-solutions h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.industry-solutions p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.industry-solutions .solution-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.industry-solutions .solution-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1rem;
}

.industry-solutions .solution-features li:last-child {
    margin-bottom: 0;
}

.industry-solutions .solution-features i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

@media (max-width: 1200px) {
    .industry-solutions .section-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .industry-solutions {
        padding: 6rem 0;
    }
    
    .industry-solutions .section-title {
        font-size: 3rem;
        margin-bottom: 4rem;
    }
    
    .industry-solutions .solutions-grid {
        gap: 2rem;
    }
    
    .industry-solutions .card-content {
        padding: 2rem;
    }
    
    .industry-solutions h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .industry-solutions .section-title {
        font-size: 2.5rem;
    }
    
    .industry-solutions p {
        font-size: 1rem;
    }
}

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #808080;
    --accent-rgb: 128, 128, 128;
    --background: var(--secondary-color);
    --text-color: var(--primary-color);
    --dark: #000000;
    --hero-text: #ffffff;
    --hero-bg: var(--dark);
    --hero-bg-gradient: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
    --hero-badge-bg: rgba(255, 255, 255, 0.1);
    --hero-badge-border: rgba(255, 255, 255, 0.1);
    --button-bg: var(--secondary-color);
    --button-text: var(--dark);
    --button-hover-bg: var(--accent-color);
    --button-hover-text: var(--secondary-color);
    --grid-line-color: rgba(255, 255, 255, 0.03);
    --transition-speed: 0.3s;
    --hero-bg-start: #000000;
    --hero-bg-end: #1a1a1a;
    --geometric-color: rgba(255, 255, 255, 0.05);
    --geometric-dots: rgba(255, 255, 255, 0.03);
    --geometric-color-rgb: 255, 255, 255;
}

/* Dark Mode Colors */
[data-theme="dark"] {
    --background: var(--primary-color);
    --text-color: var(--secondary-color);
    --hero-bg-start: #000000;
    --hero-bg-end: #1a1a1a;
    --geometric-color: rgba(255, 255, 255, 0.05);
    --geometric-dots: rgba(255, 255, 255, 0.03);
}

/* Light Mode Colors */
[data-theme="light"] {
    --background: var(--secondary-color);
    --text-color: var(--primary-color);
    --hero-text: var(--dark);
    --hero-bg: var(--secondary-color);
    --hero-bg-gradient: linear-gradient(135deg, #f5f5f5 0%, var(--secondary-color) 100%);
    --hero-badge-bg: rgba(0, 0, 0, 0.05);
    --hero-badge-border: rgba(0, 0, 0, 0.1);
    --button-bg: var(--dark);
    --button-text: var(--secondary-color);
    --button-hover-bg: var(--accent-color);
    --button-hover-text: var(--secondary-color);
    --grid-line-color: rgba(0, 0, 0, 0.03);
    --hero-bg-start: #ffffff;
    --hero-bg-end: #f5f5f5;
    --geometric-color: rgba(0, 0, 0, 0.05);
    --geometric-dots: rgba(0, 0, 0, 0.03);
    --geometric-color-rgb: 0, 0, 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Accounts for fixed header */
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scrollbars */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--secondary-color);
    transition: 0.3s ease-in-out;
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--primary-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        gap: 2rem;
        
        /* Animation properties */
        display: flex;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: 
            opacity 0.3s ease-in-out,
            transform 0.3s ease-in-out,
            visibility 0.3s ease-in-out;
    }

    .nav-links.active {
        display: flex;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem;
        width: 100%;
        text-align: center;
        transform: translateY(-10px);
        opacity: 0;
        transition: 
            transform 0.3s ease-in-out,
            opacity 0.3s ease-in-out;
    }

    .nav-links.active a {
        transform: translateY(0);
        opacity: 1;
    }

    /* Stagger the animation of nav items */
    .nav-links a:nth-child(1) { transition-delay: 0.1s; }
    .nav-links a:nth-child(2) { transition-delay: 0.2s; }
    .nav-links a:nth-child(3) { transition-delay: 0.3s; }
    .nav-links a:nth-child(4) { transition-delay: 0.4s; }

    .nav-links a:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    /* Smooth hamburger animation */
    .hamburger-line {
        transition: transform 0.3s ease-in-out,
                    opacity 0.2s ease-in-out;
    }

    .hamburger.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

}

/* Hero Section */
.hero {
    position: relative;
    /* height: 100vh; */
    background: linear-gradient(135deg, var(--hero-bg-start) 0%, var(--hero-bg-end) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: background var(--transition-speed);
}


@keyframes moveBackground {
    0% {
        background-position: 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 60px 60px, 60px 60px, 30px 30px;
    }
}

.hero-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    z-index: 1;
}

.hero-text {
    flex: 1;
    text-align: left;
    color: var(--text-color);
    animation: fadeInUp 1s ease-out;
    order: 1;
}

.globe-animation {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    order: 2;
}

/* Globe Animation */
.globe {
    position: relative;
    width: 300px;
    height: 300px;
    animation: floatAnimation 6s ease-in-out infinite;
}

.globe-sphere {
    position: absolute;
    width: 200px;
    height: 200px;
    /* background: var(--text-color); */
    background: linear-gradient(135deg, var(--text-color), var(--accent-color));

    /* background: radial-gradient(circle at 30% 30%, 
        rgba(var(--background), 0.1) 0%,
        rgba(var(--background), 0.2) 50%,
        rgba(var(--background), 0.4) 100%);     */
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/* .company-name, */
.globe-text-index {
    color: var(--background);
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
}
.globe-text-index,
.globe-text {
    font-family: Georgia;
    background: transparent;  
    font-size: 3.5rem; 
}
.company-name {
    color: var(--background);
    background-color: var(--text-color);
    font-size: 0.6rem;
    margin-top: 0.3rem;
    /* padding-left: 0.5rem; */
    padding: 0.25rem;
}

.globe-outer-ring {
    position: absolute;
    width: 280px;
    height: 280px;
    border: 2px solid rgba(var(--geometric-color-rgb), 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotateRing 20s linear infinite;
}

.globe-inner-ring {
    position: absolute;
    width: 240px;
    height: 240px;
    border: 2px solid rgba(var(--geometric-color-rgb), 0.15);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    animation: rotateRing 15s linear infinite reverse;
}

.connection-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateRing 25s linear infinite;
}

.dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--geometric-color);
    border-radius: 50%;
    animation: pulseAnimation 2s ease-in-out infinite;
}

.dot:nth-child(1) { top: 20%; left: 30%; animation-delay: 0s; }
.dot:nth-child(2) { top: 60%; left: 70%; animation-delay: 0.4s; }
.dot:nth-child(3) { top: 40%; left: 50%; animation-delay: 0.8s; }
.dot:nth-child(4) { top: 80%; left: 40%; animation-delay: 1.2s; }
.dot:nth-child(5) { top: 30%; left: 80%; animation-delay: 1.6s; }

@keyframes rotateRing {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

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

@keyframes pulseAnimation {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 1; }
}

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

/* Highlights Section */
.highlights {
    padding: 6rem 2rem;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
}

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

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

.highlight-card {
    background: var(--background);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid rgba(var(--geometric-color-rgb), 0.1);
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    background: linear-gradient(135deg, 
        rgba(var(--geometric-color-rgb), 0.1) 0%,
        rgba(var(--geometric-color-rgb), 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.highlight-card h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.highlight-card p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Responsive adjustments for highlights */
@media screen and (max-width: 768px) {
    .highlights {
        padding: 4rem 1rem;
    }

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

    .highlight-card {
        padding: 1.5rem;
    }

    .highlight-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .highlight-card h3 {
        font-size: 1.3rem;
    }
}

/* Feature Cards */
.features {
    padding: 5rem 5%;
}

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

.feature-card {
    padding: 2rem;
    border-radius: 8px;
    background-color: var(--background);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed);
}

.feature-card:hover {
    transform: translateY(-5px);
}

/* Theme Toggle Button */
/* .theme-toggle {
    background: none;
    border: none;
    color: var(--secondary-color);
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.2rem;
} */


/* About Page Styles */
.about-hero {
    background-color: var(--dark);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.about-hero::before,
.about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.about-hero::before {
    background: 
        linear-gradient(45deg, rgba(255,255,255,0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.03) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.03) 75%);
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
    animation: patternMove 20s linear infinite;
}

.about-hero::after {
    background: radial-gradient(circle at 50% 50%, 
        rgba(255,255,255,0.05) 0%, 
        rgba(255,255,255,0.02) 25%, 
        transparent 50%);
    background-size: 100px 100px;
    animation: pulseBackground 10s ease-in-out infinite;
}

.about-hero .hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem;
}

@keyframes patternMove {
    0% {
        background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
    }
    100% {
        background-position: 40px 40px, 40px 60px, 60px 20px, 20px 40px;
    }
}

@keyframes pulseBackground {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

.network-animation {
    width: 300px;
    height: 300px;
}

.network-animation circle {
    fill: var(--accent);
    animation: pulse 2s infinite;
}

.network-animation line {
    stroke: var(--accent);
    stroke-width: 2;
    animation: connectionFade 3s infinite;
}

.about-vision {
    padding: 6rem 0;
    background: var(--background);
}

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

.vision-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background: var(--surface);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text);
}

@keyframes pulse {
    0% { r: 5; }
    50% { r: 7; }
    100% { r: 5; }
}

@keyframes connectionFade {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .vision-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vision-stats {
        grid-template-columns: 1fr;
    }

    .network-animation {
        width: 200px;
        height: 200px;
    }
}

/* Services Page Styles */
.services-hero {
    position: relative;
    min-height: 100vh;
    background: var(--hero-bg-gradient);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 6rem 0;
    transition: background var(--transition-speed) ease;
}

.services-hero .section-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.services-hero .hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.services-hero .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.services-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--hero-badge-bg);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--hero-badge-border);
    transition: all var(--transition-speed) ease;
}

.services-hero .badge-icon {
    font-size: 1.2rem;
}

.services-hero .badge-text {
    color: var(--hero-text);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color var(--transition-speed) ease;
}

.services-hero .hero-title {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.services-hero .title-line {
    color: var(--hero-text);
    transition: color var(--transition-speed) ease;
}

.services-hero .title-line.highlight {
    background: linear-gradient(45deg, var(--accent-color), var(--hero-text));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all var(--transition-speed) ease;
}

.services-hero .hero-subtitle {
    font-size: 1.5rem;
    color: var(--hero-text);
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
    transition: color var(--transition-speed) ease;
}

.services-hero .hero-cta {
    margin-top: 1rem;
}

.services-hero .button-primary {
    background: var(--button-bg);
    color: var(--button-text);
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.services-hero .button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    background: var(--button-hover-bg);
    color: var(--button-hover-text);
}

.services-hero .button-icon {
    transition: transform var(--transition-speed) ease;
}

.services-hero .button-primary:hover .button-icon {
    transform: translateX(5px);
}

.services-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.services-hero .grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(var(--grid-line-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line-color) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    opacity: 0.5;
    transition: background-image var(--transition-speed) ease;
}

.services-hero .gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(var(--accent-rgb), 0.15) 0%,
        transparent 70%
    );
    transition: background var(--transition-speed) ease;
}

@media (max-width: 992px) {
    .services-hero .hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 4rem 0;
    }
    .services-hero .hero-title {
        font-size: 3.5rem;
    }
    .services-hero .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .services-hero .hero-title {
        font-size: 3rem;
    }
    .services-hero .hero-badge {
        padding: 0.4rem 0.8rem;
    }
    .services-hero .badge-text {
        font-size: 0.8rem;
    }
    .services-hero .button-primary {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 4rem 5%;
}

.service-card {
    padding: 2rem;
    border-radius: 8px;
    background-color: var(--background);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section {
    text-align: center;
    padding: 4rem 5%;
    background-color: var(--accent-color);
    color: var(--secondary-color);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    margin-top: 1rem;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 4px;
    transition: background-color var(--transition-speed);
}

.cta-button:hover {
    background-color: var(--accent-color);
}

/* Contact Page Styles */
.contact-hero {
    height: 40vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('assets/contact-bg.jpg') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--secondary-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    padding: 4rem 5%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    padding: 2rem;
    border-radius: 8px;
    background-color: var(--background);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form {
    padding: 2rem;
    border-radius: 8px;
    background-color: var(--background);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    background-color: var(--background);
    color: var(--text-color);
}

.submit-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color var(--transition-speed);
}

.submit-button:hover {
    background-color: var(--accent-color);
}


/* Responsive Design for new pages */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-hero, .services-hero, .contact-hero {
        height: 30vh;
    }
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    background: linear-gradient(135deg,
        rgba(var(--geometric-color-rgb), 0.05) 0%,
        rgba(var(--geometric-color-rgb), 0.02) 100%);
}

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

.service-card {
    background: var(--background);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(var(--geometric-color-rgb), 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(var(--geometric-color-rgb), 0.1) 0%,
        rgba(var(--geometric-color-rgb), 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-size: 1.8rem;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(0deg);
}

.service-content h3 {
    color: var(--text-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-content p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.service-features li {
    color: var(--text-color);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    opacity: 0.9;
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

.services-cta {
    text-align: center;
    margin-top: 4rem;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .services {
        padding: 4rem 1rem;
    }

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

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .service-content h3 {
        font-size: 1.3rem;
    }

    .services-cta {
        margin-top: 3rem;
    }
}

/* Clients Section */
.clients {
    padding: 5rem 2rem;
    background-color: var(--background);
    position: relative;
}

.client-carousel {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 2rem 0;
}

.client-logo {
    flex: 0 0 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-control {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-control:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Dark mode adjustments */
[data-theme="dark"] .service-card {
    background-color: #1a1a1a;
}

[data-theme="dark"] .client-logo img {
    filter: grayscale(100%) brightness(200%);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .client-carousel {
        gap: 1rem;
    }

    .client-logo {
        flex: 0 0 150px;
    }
}

/* About Teaser Section */
.about-teaser {
    padding: 6rem 2rem;
    background: var(--background);
    overflow: hidden;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

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

.about-text p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.about-visual {
    flex: 1;
    max-width: 600px;
}

.tech-team-illustration {
    width: 100%;
    height: auto;
    color: var(--text-color);
}

/* SVG Animation Styles */
.circuit-path {
    opacity: 0.2;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPath 3s ease forwards;
}

.node {
    fill: var(--primary-color);
    animation: pulse 2s ease-in-out infinite;
}

.team-member {
    fill: var(--text-color);
    opacity: 0.9;
    transform-origin: center;
    animation: fadeInScale 0.5s ease forwards;
}

.connection {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawPath 2s ease forwards;
    opacity: 0.3;
}

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 0.9;
        transform: scale(1);
    }
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .about-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 2rem;
    }

    .about-text {
        max-width: 100%;
    }

    .about-visual {
        max-width: 400px;
        margin: 0 auto;
    }

    .tech-team-illustration {
        max-height: 300px;
    }
}

@media screen and (max-width: 480px) {
    .about-teaser {
        padding: 4rem 1rem;
    }

    .about-visual {
        max-width: 300px;
    }

    .tech-team-illustration {
        max-height: 250px;
    }
}


/* Geometric Shapes Animation */
.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: linear-gradient(135deg,
        rgba(var(--geometric-color-rgb), 0.1) 0%,
        rgba(var(--geometric-color-rgb), 0.05) 100%);
}

.shape-1 {
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    animation: floatAnimation 20s infinite linear;
}

.shape-2 {
    top: 30%;
    right: -100px;
    width: 400px;
    height: 400px;
    animation: floatAnimation 25s infinite linear reverse;
}

.shape-3 {
    bottom: -100px;
    left: 20%;
    width: 350px;
    height: 350px;
    animation: floatAnimation 22s infinite linear;
}

.shape-4 {
    top: 20%;
    left: 30%;
    width: 200px;
    height: 200px;
    animation: floatAnimation 18s infinite linear reverse;
}

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

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .cta-section {
        padding: 6rem 0;
    }

    .cta-tagline {
        font-size: 1.1rem;
        margin: 1rem 0 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        justify-content: center;
    }

    .shape {
        opacity: 0.5;
    }
}

/* Company Overview Section */
.company-overview {
    padding: 6rem 0;
    background: var(--background);
}

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

.overview-text {
    padding-right: 2rem;
}

.overview-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 2rem 0;
    color: var(--text);
}

.overview-features {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--surface);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--accent);
}

.feature-item span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text);
}

.overview-image .image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.grayscale-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(var(--accent-rgb), 0.2),
        rgba(var(--accent-rgb), 0.1)
    );
    transition: opacity 0.3s ease;
}

.image-container:hover .grayscale-img {
    filter: grayscale(50%);
}

.image-container:hover .image-overlay {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 992px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .overview-text {
        padding-right: 0;
    }

    .overview-image {
        order: -1;
    }

    .feature-item:hover {
        transform: translateX(0) translateY(-5px);
    }
}

/* SVG Workspace Styles */
.workspace-svg {
    width: 100%;
    height: auto;
    filter: grayscale(0.8);
}

.svg-bg {
    fill: var(--surface);
}

.svg-desk, .svg-desk-leg {
    fill: #444;
}

.svg-monitor, .svg-laptop rect:first-child {
    fill: #333;
    stroke: #555;
    stroke-width: 2;
}

.svg-monitor-stand {
    fill: #2a2a2a;
}

.svg-screen, .svg-laptop rect:last-child {
    fill: #1a1a1a;
    opacity: 0.9;
}

.svg-coffee rect {
    fill: #444;
}

.svg-steam {
    fill: none;
    stroke: #555;
    stroke-width: 2;
    opacity: 0.6;
    animation: steamFloat 3s infinite ease-in-out;
}

.svg-code-line {
    fill: var(--accent);
    opacity: 0.7;
    animation: codePulse 2s infinite;
}

.svg-float {
    fill: var(--accent);
    opacity: 0.3;
    animation: float 4s infinite ease-in-out;
}

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

@keyframes codePulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 0.4;
    }
}

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

/* Dark mode adjustments */
.dark-mode .workspace-svg {
    filter: grayscale(0.5);
}

.dark-mode .svg-bg {
    fill: var(--dark);
}

.dark-mode .svg-desk,
.dark-mode .svg-desk-leg,
.dark-mode .svg-monitor,
.dark-mode .svg-laptop rect:first-child {
    fill: #222;
}

.dark-mode .svg-screen,
.dark-mode .svg-laptop rect:last-child {
    fill: #111;
}

/* Purpose Section Styles */
.purpose-section {
    padding: 6rem 0;
    background: var(--background);
}

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

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

.purpose-card {
    padding: 3rem 2rem;
    background: var(--surface);
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.purpose-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.purpose-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--heading);
}

.purpose-card p {
    color: var(--text);
    line-height: 1.6;
}

/* Values Section */
/* .values-section {
    margin-top: 4rem;
} */

.values-title {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--heading);
}

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

.value-card {
    position: relative;
    background: var(--text-color);
    color: var(--background);
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.value-content {
    /* background: var(--text-color); */
    color: var(--secondary-color);
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.value-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
    z-index: 1;
    transition: opacity 0.3s ease;
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.value-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.value-card:hover .value-icon {
    transform: scale(1.2);
}

.value-card:hover .value-overlay {
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 992px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        aspect-ratio: auto;
        min-height: 200px;
    }
}

/* Leadership Section Styles */
.leadership-section {
    padding: 6rem 0;
    background: var(--dark);
    color: white;
}

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

.team-member {
    text-align: center;
    position: relative;
}

.member-photo {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.photo-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background: var(--surface);
}

.photo-placeholder i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(var(--accent-rgb), 0.2),
        rgba(var(--accent-rgb), 0.1)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-info {
    position: relative;
    z-index: 2;
}

.member-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: white;
}

.member-info .position {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.member-info .bio {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

/* Hover Effects */
.team-member:hover .member-photo {
    transform: translateY(-10px);
}

.team-member:hover .photo-overlay {
    opacity: 1;
}

.team-member:hover img {
    filter: grayscale(50%);
}

.team-member:hover .bio {
    opacity: 1;
    transform: translateY(0);
}

.team-member:hover .photo-placeholder i {
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .member-photo {
        width: 180px;
        height: 180px;
    }

    .member-info .bio {
        opacity: 1;
        transform: none;
    }
}

/* Choose Us Section */
.choose-us-section {
    background: var(--background);
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

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

.feature-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 3rem 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-box:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 10px 30px rgba(var(--shadow-rgb), 0.1);
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-icon {
    margin-bottom: 2rem;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--accent);
    opacity: 0.1;
    border-radius: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: 0;
    transition: all 0.4s ease;
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--accent);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.feature-box:hover .feature-icon::after {
    transform: translate(-50%, -50%) rotate(225deg);
    opacity: 0.2;
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-content h3 {
    color: var(--heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
}

.feature-content p {
    color: var(--text);
    line-height: 1.7;
    font-size: 1.05rem;
    opacity: 0.9;
    max-width: 90%;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .features-grid {
        gap: 2rem;
    }
    
    .feature-box {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .choose-us-section {
        padding: 6rem 0;
    }

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

    .feature-box {
        padding: 2rem 1.5rem;
    }

    .feature-icon i {
        font-size: 2rem;
    }

    .feature-content h3 {
        font-size: 1.3rem;
    }

    .feature-content p {
        font-size: 1rem;
    }
}

.services-overview {
    padding: 6rem 0;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

.services-overview .section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-overview .overview-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services-overview .section-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 auto 1.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, var(--text-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all var(--transition-speed) ease;
    max-width: 800px;
    width: 100%;
}

.services-overview .section-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.9;
    margin: 0;
    transition: color var(--transition-speed) ease;
}

@media (max-width: 768px) {
    .services-overview {
        padding: 4rem 0;
    }
    
    .services-overview .section-title {
        font-size: 2.5rem;
    }
    
    .services-overview .section-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .services-overview .section-title {
        font-size: 2rem;
    }
    
    .services-overview .section-description {
        font-size: 1rem;
        line-height: 1.6;
    }
}

.scroll-link .button-icon {
    transition: transform 0.3s ease;
}

.scroll-link:hover .button-icon {
    transform: translateY(5px);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 2rem;
    width: 100%;
}

.services-grid {
    padding: 4rem 0;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

.services-grid::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        radial-gradient(circle at 0% 0%, rgba(var(--accent-rgb), 0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(var(--accent-rgb), 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid .section-container {
    margin: 0 auto;
    padding: 0 2rem;
}

.services-grid .section-title {
    text-align: center;
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-color);
    margin: 0 auto 6rem;
    position: relative;
    width: 100%;
}

.services-grid .section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.services-grid .services-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.services-grid .service-card {
    background: transparent;
    padding: 3rem 2rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.services-grid .service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--background);
    border: 2px solid transparent;
    border-radius: 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.services-grid .service-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--accent-color), transparent);
    border-radius: 2rem;
    z-index: -2;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-grid .service-card:hover {
    transform: translateY(-10px);
}

.services-grid .service-card:hover::before {
    background: color-mix(in srgb, var(--background) 97%, var(--accent-color));
    border-color: transparent;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.services-grid .service-card:hover::after {
    opacity: 1;
}

.services-grid .card-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    display: inline-block;
    position: relative;
    color: var(--accent-color);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-grid .card-icon::after {
    content: '';
    position: absolute;
    width: 2rem;
    height: 2rem;
    background: rgba(var(--accent-rgb), 0.1);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1.5);
    z-index: -1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-grid .service-card:hover .card-icon {
    transform: translateY(-5px);
}

.services-grid .service-card:hover .card-icon::after {
    transform: translate(-50%, -50%) scale(2);
    background: rgba(var(--accent-rgb), 0.15);
}

.services-grid .card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.services-grid .card-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.services-grid .card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.services-grid .card-cta::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.services-grid .card-cta:hover::before {
    width: 100%;
}

.services-grid .card-cta i {
    transition: transform 0.3s ease;
}

.services-grid .card-cta:hover i {
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .services-grid .services-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        padding: 6rem 0;
    }
    
    .services-grid .section-title {
        font-size: 3rem;
        margin-bottom: 4rem;
    }
    
    .services-grid .services-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid .service-card {
        padding: 2.5rem 2rem;
    }
    
    .services-grid .card-icon {
        font-size: 2.5rem;
    }
    
    .services-grid .card-title {
        font-size: 1.5rem;
    }
}

.industry-solutions {
    padding: 4rem 0;
    background: var(--background);
    position: relative;
}

.industry-solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(var(--accent-rgb), 0.05) 0%,
        transparent 50%,
        rgba(var(--accent-rgb), 0.05) 100%
    );
    pointer-events: none;
}

.industry-solutions .section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.industry-solutions .section-title {
    text-align: center;
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-color);
    margin: 0 auto 6rem;
    max-width: 900px;
}

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

.industry-solutions .solution-card {
    background: var(--background);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-solutions .solution-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.industry-solutions .card-content {
    padding: 2.5rem;
    position: relative;
    border: 1px solid rgba(var(--text-rgb), 0.1);
    border-radius: 20px;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-solutions .solution-card:hover .card-content {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.industry-solutions .solution-card:hover::before {
    opacity: 1;
}

.industry-solutions .industry-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-solutions .industry-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(var(--accent-rgb), 0.1);
    border-radius: 16px;
    transform: rotate(45deg);
    transition: transform 0.4s ease;
}

.industry-solutions .solution-card:hover .industry-icon::after {
    transform: rotate(225deg);
}

.industry-solutions h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.industry-solutions p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.industry-solutions .solution-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.industry-solutions .solution-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1rem;
}

.industry-solutions .solution-features li:last-child {
    margin-bottom: 0;
}

.industry-solutions .solution-features i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

@media (max-width: 1200px) {
    .industry-solutions .section-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .industry-solutions {
        padding: 6rem 0;
    }
    
    .industry-solutions .section-title {
        font-size: 3rem;
        margin-bottom: 4rem;
    }
    
    .industry-solutions .solutions-grid {
        gap: 2rem;
    }
    
    .industry-solutions .card-content {
        padding: 2rem;
    }
    
    .industry-solutions h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .industry-solutions .section-title {
        font-size: 2.5rem;
    }
    
    .industry-solutions p {
        font-size: 1rem;
    }
}
