/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    flex: 0 0 auto;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo h3 {
    color: #00bfff !important; /* Sky blue */
    margin: 0;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.logo a {
    text-decoration: none !important;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links li {
    position: relative;
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-links a i {
    margin-left: 0.5rem;
}

.nav-links a:hover {
    color: #007bff;
}

/* Dropdown styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

/* Show dropdown on hover for desktop */
@media (min-width: 993px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Show dropdown on click for mobile */
@media (max-width: 992px) {
    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        position: static;
        box-shadow: none;
        padding-left: 2rem;
    }
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.dropdown-menu a i {
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
}

/* Mobile menu styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        flex-direction: column;
    }

    .nav-links.active {
        display: block;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .nav-links a {
        padding: 0.5rem 0;
    }
}

/* Main content */
main {
    padding-top: 80px;
}

section {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero section */
.hero {
    padding: 0;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #000; /* Dark background to prevent white flash */
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background-color: #ffffff;
    color: #3b82f6;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* Services section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    transition: transform 0.35s cubic-bezier(.23,1.01,.32,1), filter 0.35s, color 0.35s;
    display: block;
    margin-bottom: 1.1rem;
}

.service-card:hover i {
    transform: scale(1.18) rotate(-6deg);
    filter: drop-shadow(0 4px 16px #00ffe7cc);
}

/* Contact section styles */
.contact {
    background-color: #f8fafc;
    padding: 5rem 0;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-info {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-info h3 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    color: #3498db;
    font-size: 1.2rem;
    margin-top: 0.3rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    color: #fff !important;
    background: #222e3a;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 2px 12px #00ffe733;
    transition: background 0.3s, color 0.3s, transform 0.2s;
}

.social-link:hover {
    background: #00ffe7;
    color: #0f2027 !important;
    transform: scale(1.13) rotate(-7deg);
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.submit-btn {
    background-color: #007bff;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #0056b3;
}

/* Footer Styles */
footer {
    background: linear-gradient(90deg, #0f2027 0%, #2c5364 100%);
    color: #fff;
    padding: 3.5rem 0 2rem 0;
    border-top: 3px solid #00ffe7;
    box-shadow: 0 -4px 32px #00ffe71a;
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-logo-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    margin-right: 1.5rem;
}

.footer-logo-block img {
    width: 70px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 12px #00ffe733;
    margin-bottom: 0.3rem;
}

.footer-logo-block span {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.footer-contact {
    flex: 1 1 320px;
    min-width: 220px;
}

.footer-contact h3 {
    color: #00ffe7;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-contact p {
    color: #e0f7fa;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: #00ffe7;
    margin-right: 0.7rem;
    font-size: 1.1rem;
}

.social-links {
    margin-top: 1.2rem;
    display: flex;
    gap: 1.1rem;
}

.social-link {
    color: #fff !important;
    background: #222e3a;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 2px 12px #00ffe733;
    transition: background 0.3s, color 0.3s, transform 0.2s;
}

.social-link:hover {
    background: #00ffe7;
    color: #0f2027 !important;
    transform: scale(1.13) rotate(-7deg);
}

.footer-copyright {
    flex: 1 1 100%;
    text-align: center;
    color: #b2ebf2;
    font-size: 1.05rem;
    margin-top: 2.5rem;
    letter-spacing: 0.2px;
    opacity: 0.85;
}

@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    .footer-logo-block {
        margin-right: 0;
        margin-bottom: 1.2rem;
    }
}

/* Slider styles */
.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    transform: translateX(0);
    transition: transform 0.5s ease-in-out;
    background: #000; /* Dark background to prevent white flash */
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none; /* Prevent clicks on slides */
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 80%;
    max-width: 800px;
    pointer-events: none; /* Prevent clicks on content */
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slide h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards;
}

.slide p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s 0.2s forwards;
}

.slide .cta-button {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s 0.4s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation Buttons */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.8);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* Dots Navigation */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 30px;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .slide h1 {
        font-size: 2rem;
    }

    .slide p {
        font-size: 1rem;
    }

    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }

    .slider-arrow.prev {
        left: 15px;
    }

    .slider-arrow.next {
        right: 15px;
    }

    .slider-dots {
        bottom: 20px;
    }
}

/* General Page Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.service-hero {
    padding: 150px 0;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    text-align: center;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    text-align: center;
}

/* Case Studies */
.case-studies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.case-study {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.case-study img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-study-content {
    padding: 1.5rem;
}

/* Contact Section */
.contact-section {
    text-align: center;
    padding: 4rem 0;
    background: #f8f9fa;
    margin-top: 4rem;
}

.contact-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #0056b3;
}

/* Contact Page Styles */
.contact-page {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-info {
    padding-right: 2rem;
    border-right: 1px solid #eee;
}

.contact-info h2 {
    color: #333;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #666;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    color: #007bff;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: #007bff;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #0056b3;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact {
        margin-right: 0;
        margin-bottom: 2rem;
    }

    .footer-contact p {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-copyright {
        text-align: center;
    }
}

/* AI Hero Section Styles */
.ai-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, #0f2027 0%, #2c5364 100%);
    overflow: hidden;
    padding-top: 0;
}

.ai-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('images/ai-bg.jpg'), linear-gradient(120deg, #0f2027 0%, #2c5364 100%);
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    z-index: 1;
    animation: aiBgAnim 10s ease-in-out infinite alternate;
}

@keyframes aiBgAnim {
    0% { filter: blur(0px) brightness(1); }
    100% { filter: blur(2px) brightness(1.1); }
}

.ai-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1.2s cubic-bezier(.23,1.01,.32,1) both;
}

.ai-hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
    line-height: 1.1;
    animation: fadeInUp 1.5s 0.2s both;
}

.highlight {
    color: #00ffe7;
    text-shadow: 0 0 8px #00ffe7, 0 0 16px #00ffe7;
    animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
    0% { text-shadow: 0 0 8px #00ffe7, 0 0 16px #00ffe7; }
    100% { text-shadow: 0 0 16px #00ffe7, 0 0 32px #00ffe7; }
}

.ai-hero-desc {
    font-size: 1.5rem;
    margin-bottom: 2.2rem;
    color: #e0e0e0;
    animation: fadeInUp 1.5s 0.5s both;
}

.ai-cta {
    background: linear-gradient(90deg, #00ffe7 0%, #007bff 100%);
    color: #fff;
    border: none;
    padding: 0.9rem 2.2rem;
    font-size: 1.2rem;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 24px rgba(0,255,231,0.15);
    transition: background 0.3s, transform 0.2s;
    animation: fadeInUp 1.5s 0.8s both;
}

.ai-cta:hover {
    background: linear-gradient(90deg, #007bff 0%, #00ffe7 100%);
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 32px rgba(0,255,231,0.25);
}

/* Remove gap between header and hero */
@media (max-width: 768px) {
    .ai-hero-title {
        font-size: 2.1rem;
    }
    .ai-hero-desc {
        font-size: 1.1rem;
    }
    .ai-hero-content {
        padding: 0 1rem;
    }
}

#home,
.hero,
.ai-hero {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    left: 0;
    right: 0;
    position: relative;
    box-sizing: border-box;
}

/* Remove max-width and margin for hero section only */
#home.hero {
    max-width: none !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.mission-section {
    width: 100vw;
    max-width: 100vw;
    margin: 0 auto 2rem auto;
    padding: 4rem 5% 3rem 5%;
    background: linear-gradient(120deg, rgba(255,255,255,0.7) 60%, rgba(0,255,231,0.08) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(30,64,175,0.08), 0 1.5px 8px rgba(0,255,231,0.04);
    backdrop-filter: blur(8px) saturate(1.2);
    border: 1.5px solid rgba(0,255,231,0.13);
}

.mission-header {
    font-size: 2.8rem;
    font-weight: 900;
    color: #0f2027;
    text-align: center;
    margin-bottom: 1.2rem;
    letter-spacing: 1.5px;
    line-height: 1.12;
    text-shadow: 0 2px 12px rgba(0,255,231,0.08);
    position: relative;
    z-index: 2;
}

.mission-header::after {
    content: '';
    display: block;
    margin: 1.2rem auto 0 auto;
    width: 90px;
    height: 5px;
    border-radius: 3px;
    background: linear-gradient(90deg, #00ffe7 0%, #007bff 100%);
    opacity: 0.8;
    animation: accentBar 2.5s infinite alternate;
}

@keyframes accentBar {
    0% { width: 60px; opacity: 0.7; }
    100% { width: 120px; opacity: 1; }
}

.mission-desc {
    font-size: 1.28rem;
    color: #222b45;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.12px;
    background: rgba(255,255,255,0.55);
    border-radius: 18px;
    padding: 2rem 2.5rem;
    box-shadow: 0 2px 24px rgba(0,255,231,0.06);
    border: 1px solid rgba(0,255,231,0.07);
    transition: box-shadow 0.3s, background 0.3s;
}

.mission-desc:hover {
    background: rgba(255,255,255,0.8);
    box-shadow: 0 8px 32px rgba(0,255,231,0.13);
}

@media (max-width: 768px) {
    .mission-header {
        font-size: 1.5rem;
        padding: 0 0.5rem;
    }
    .mission-desc {
        font-size: 1rem;
        padding: 1rem 0.5rem;
    }
    .mission-section {
        padding: 2.5rem 0.5rem 2rem 0.5rem;
        border-radius: 1rem;
    }
}

.value-grid-section {
    width: 100vw;
    max-width: 100vw;
    padding: 3.5rem 5% 3.5rem 5%;
    background: linear-gradient(120deg, rgba(0,255,231,0.07) 0%, rgba(0,123,255,0.04) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.value-card {
    background: rgba(255,255,255,0.85);
    border-radius: 1.5rem;
    box-shadow: 0 4px 32px rgba(0,255,231,0.08), 0 1.5px 8px rgba(0,123,255,0.06);
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.25s cubic-bezier(.23,1.01,.32,1), box-shadow 0.25s, background 0.25s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: -40%; left: -40%;
    width: 180%; height: 180%;
    background: linear-gradient(120deg, #00ffe7 0%, #007bff 100%);
    opacity: 0.07;
    z-index: 0;
    border-radius: 50%;
    transition: opacity 0.3s;
}

.value-card:hover {
    transform: translateY(-10px) scale(1.04) rotate(-1deg);
    box-shadow: 0 8px 40px rgba(0,255,231,0.18), 0 2px 16px rgba(0,123,255,0.10);
    background: rgba(255,255,255,0.97);
}

.value-card:hover::before {
    opacity: 0.16;
}

.value-icon {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    background: linear-gradient(90deg, #00ffe7 0%, #007bff 100%);
    color: #fff;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 16px rgba(0,255,231,0.13);
    transition: box-shadow 0.3s, background 0.3s;
    position: relative;
    z-index: 1;
    animation: popIn 1.2s cubic-bezier(.23,1.01,.32,1);
}

@keyframes popIn {
    0% { transform: scale(0.7); opacity: 0; }
    80% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); }
}

.value-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f2027;
    margin-bottom: 0.7rem;
    text-align: center;
    letter-spacing: 0.5px;
    z-index: 1;
}

.value-desc {
    font-size: 1.05rem;
    color: #333;
    text-align: center;
    line-height: 1.6;
    z-index: 1;
}

@media (max-width: 900px) {
    .value-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .value-card {
        padding: 2rem 1rem 1.5rem 1rem;
    }
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 2.1rem;
    }
}

.deliver-header-section {
    width: 100vw;
    max-width: 100vw;
    padding: 2.5rem 0 0.5rem 0;
    background: linear-gradient(90deg, #f8fafc 0%, #e9f1f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.deliver-header {
    font-size: 2.2rem;
    font-weight: 800;
    color: #007bff;
    text-align: center;
    letter-spacing: 1px;
    margin: 0 auto 1.2rem auto;
    text-shadow: 0 2px 8px rgba(0,123,255,0.07);
}

.services-section {
    width: 100vw;
    max-width: 100vw;
    padding: 4rem 0 4rem 0;
    background: linear-gradient(120deg, #f8fafc 60%, #e9f1f7 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('images/circuit-pattern.png');
    opacity: 0.07;
    z-index: 0;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f2027;
    margin-bottom: 0.5rem;
    text-align: center;
}
.section-subtitle {
    font-size: 1.15rem;
    color: #333;
    margin-bottom: 2.5rem;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    width: 100%;
    margin: 0 auto;
}

.service-card {
    background: rgba(255,255,255,0.92);
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px rgba(0,255,231,0.07), 0 1.5px 8px rgba(0,123,255,0.05);
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.22s cubic-bezier(.23,1.01,.32,1), box-shadow 0.22s, background 0.22s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,255,231,0.07);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,255,231,0.13), 0 2px 16px rgba(0,123,255,0.10);
    background: rgba(255,255,255,0.99);
}

.service-card img {
    width: 54px;
    height: 54px;
    margin-bottom: 1.1rem;
    filter: drop-shadow(0 2px 8px #00ffe7aa);
    transition: filter 0.3s, transform 0.3s;
    animation: iconPulse 2.2s infinite alternate;
}

@keyframes iconPulse {
    0% { filter: drop-shadow(0 2px 8px #00ffe7aa); transform: scale(1); }
    100% { filter: drop-shadow(0 4px 16px #007bffaa); transform: scale(1.08); }
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 0.6rem;
    text-align: center;
    letter-spacing: 0.5px;
}

.service-card p {
    font-size: 1rem;
    color: #222b45;
    text-align: center;
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media (max-width: 800px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .service-card {
        padding: 1.2rem 0.7rem 1rem 0.7rem;
    }
    .deliver-header {
        font-size: 1.2rem;
    }
}

.industries-section {
    width: 100vw;
    max-width: 100vw;
    padding: 4rem 0 0 0;
    margin-bottom: 0;
    background: linear-gradient(120deg, #fafdff 0%, #e9f7fa 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.industries-hero-img {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 2.5rem auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.2rem;
}
.industries-hero-img img {
    width: 100%;
    max-width: 700px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 24px #00ffe733);
}
.industries-section .section-title,
.industries-section .section-subtitle {
    color: #0f2027;
}
.industries-section .section-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 12px rgba(0,255,231,0.07);
}
.industries-section .section-subtitle {
    font-size: 1.15rem;
    color: #007bff;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 8px rgba(0,255,231,0.04);
}

.industries-hero-text {
    margin-bottom: 1.2rem;
    max-width: 420px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.industries-hero-title {
    font-size: 2rem;
    font-weight: 900;
    color: #007bff;
    margin-bottom: 0.3rem;
    letter-spacing: 1px;
    line-height: 1.1;
    text-shadow: 0 2px 12px #00ffe733;
}
.industries-hero-subtitle {
    font-size: 1.1rem;
    color: #222b45;
    font-weight: 500;
    margin-bottom: 0.2rem;
    letter-spacing: 0.2px;
    line-height: 1.4;
    background: linear-gradient(90deg, #e9f7fa 0%, #fafdff 100%);
    padding: 0.4rem 0.9rem;
    border-radius: 0.7rem;
    box-shadow: 0 2px 8px #00ffe71a;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2.2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.industry-card {
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 16px rgba(0,123,255,0.07);
    padding: 2.2rem 1.2rem 1.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1.5px solid #e0f7fa;
    transition: transform 0.22s cubic-bezier(.23,1.01,.32,1), box-shadow 0.22s, border 0.22s, background 0.22s;
    cursor: pointer;
    position: relative;
    overflow: visible;
    min-height: 320px;
}

.industry-card:hover,
.industry-card:focus-within {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px #00ffe722, 0 2px 16px #007bff22;
    border-color: #00ffe7;
    z-index: 2;
}

.industry-card img {
    width: 44px;
    height: 44px;
    margin-bottom: 1.1rem;
    filter: none;
    transition: transform 0.3s;
}

.industry-card:hover img,
.industry-card:focus-within img {
    transform: scale(1.08) rotate(-2deg);
}

.industry-card h3 {
    font-size: 1.13rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 0.6rem;
    text-align: center;
    letter-spacing: 0.5px;
    text-shadow: none;
}

.industry-card p {
    font-size: 1rem;
    color: #333;
    text-align: center;
    line-height: 1.6;
    text-shadow: none;
}

.industry-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, #00ffe7cc 0%, #007bffcc 100%);
    color: #fff;
    border-radius: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 3;
    text-align: center;
    padding: 2rem 1rem;
}

.industry-card:hover .industry-overlay,
.industry-card:focus-within .industry-overlay {
    opacity: 1;
    pointer-events: auto;
}

.case-link {
    color: #fff;
    font-weight: 600;
    margin-top: 0.7rem;
    text-decoration: underline;
    font-size: 1.05rem;
    transition: color 0.2s;
}
.case-link:hover {
    color: #222b45;
}

@media (max-width: 1100px) {
    .industry-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media (max-width: 800px) {
    .industry-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .industry-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .industry-card {
        padding: 1.2rem 0.7rem 1rem 0.7rem;
        min-height: 220px;
    }
    .industries-hero-img img {
        max-width: 98vw;
    }
}

.industries-flex {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 3.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.industries-hero-img {
    flex: 1 1 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 320px;
    max-width: 480px;
    margin: 0;
}
.industries-hero-img img {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 24px #00ffe733);
}
.industry-rect-list {
    flex: 1 1 55%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    min-width: 0;
}
.industry-card-rect.styled {
    background: linear-gradient(90deg, #fafdff 80%, #e9f7fa 100%);
    border-left: 6px solid #00ffe7;
    box-shadow: 0 2px 12px rgba(0,255,231,0.08), 0 1.5px 8px rgba(0,123,255,0.06);
    position: relative;
    transition: box-shadow 0.22s, border 0.22s, background 0.22s, transform 0.22s;
    min-height: 72px;
    padding: 1rem 1.2rem 1rem 1.2rem;
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    gap: 1.1rem;
    max-width: 480px;
    transform: translateY(40px) scale(0.98);
    animation: industryFadeInUp 0.7s cubic-bezier(.23,1.01,.32,1) forwards;
}
.industry-card-rect.styled:hover,
.industry-card-rect.styled:focus-within {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px #00ffe722, 0 2px 16px #007bff22;
    border-color: #00ffe7;
    animation: industryFloat 1.2s ease-in-out infinite alternate;
    z-index: 2;
}
@keyframes industryFloat {
    0% { transform: scale(1.025) rotate(-1deg) translateY(0); }
    100% { transform: scale(1.035) rotate(-1.5deg) translateY(-6px); }
}
.industry-card-rect.styled:nth-child(1) { animation-delay: 0.1s; }
.industry-card-rect.styled:nth-child(2) { animation-delay: 0.22s; }
.industry-card-rect.styled:nth-child(3) { animation-delay: 0.34s; }
.industry-card-rect.styled:nth-child(4) { animation-delay: 0.46s; }
.industry-card-rect.styled:nth-child(5) { animation-delay: 0.58s; }
@keyframes industryFadeInUp {
    0% { opacity: 0; transform: translateY(40px) scale(0.98); }
    80% { opacity: 1; transform: translateY(-4px) scale(1.01); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
.industry-card-rect.styled:hover .industry-icon,
.industry-card-rect.styled:focus-within .industry-icon {
    transform: scale(1.13) rotate(-3deg);
    filter: drop-shadow(0 4px 16px #007bffaa);
}
.industry-rect-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.1rem;
}
.industry-rect-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 0.1rem;
    text-align: left;
    letter-spacing: 0.5px;
    text-shadow: none;
}
.industry-rect-content p {
    font-size: 0.95rem;
    color: #333;
    text-align: left;
    line-height: 1.5;
    text-shadow: none;
    margin: 0;
}
@media (max-width: 1100px) {
    .industry-card-rect.styled {
        max-width: 98vw;
    }
}
@media (max-width: 600px) {
    .industry-card-rect.styled {
        flex-direction: row;
        align-items: center;
        padding: 0.7rem 0.5rem;
        min-height: 60px;
    }
    .industry-icon {
        width: 32px;
        height: 32px;
    }
    .industry-rect-content h3,
    .industry-rect-content p {
        font-size: 0.95rem;
    }
}

.industry-card-rect.styled.clicked {
    animation: industryClickPulse 0.4s cubic-bezier(.23,1.01,.32,1);
    z-index: 3;
}
@keyframes industryClickPulse {
    0% { transform: scale(1) rotate(0); box-shadow: 0 2px 12px #00ffe733; }
    40% { transform: scale(1.08) rotate(-2deg); box-shadow: 0 8px 32px #00ffe7aa; }
    100% { transform: scale(1) rotate(0); box-shadow: 0 2px 12px #00ffe733; }
} 