
:root {
    --primary: #0a48a3;
    --secondary: #8B5CF6;
    --accent1: #15105f;
    --accent2: #5b73ff;
    --dark: #0A0A0A;
    --light: #f8fafe;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Enhanced Hero Section */
.hero {
    margin-top: 140px;
    background: linear-gradient(135deg, var(--dark) 20%, var(--gray-900) 50%, var(--primary) 100%);
    color: white;
    padding: 8rem 0 10rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at 20% 20%, rgba(89, 51, 177, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 102, 255, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(6, 255, 165, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }
        
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
         url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.05' stroke-width='1'%3E%3Cpath d='M60 0 L120 60 L60 120 L0 60 Z'/%3E%3C/g%3E%3C/svg%3E"),
        linear-gradient(135deg, var(--dark) 0%, var(--primary) 50%, var(--secondary) 100%);
    opacity: 1;
    z-index: 1;
    animation: backgroundShift 20s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #ffffff, #e0f3ff, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    animation: gradientShift 8s ease infinite;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.3s both;
    opacity: 0.9;
    line-height: 1.8;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent1) 0%, var(--accent2) 100%);
    color: white;
    padding: 1.5rem 3.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    animation: fadeInUp 1s ease-out 0.6s both;
    box-shadow: 0 15px 35px rgba(91, 115, 255, 0.5);
    position: relative;
    overflow: hidden;
    z-index: 2;
    letter-spacing: 0.5px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.7s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(91, 115, 255, 0.6);
}

/* Enhanced Benefits Section */
.benefits {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafe 0%, #ffffff 50%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(26, 74, 141, 0.1) 0%, transparent 70%);
    animation: floating 15s ease-in-out infinite;
}

.benefits::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: floating 18s ease-in-out infinite reverse;
}

.section-title {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.2s both;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    padding: 3.5rem 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 45px rgba(26, 74, 141, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    animation: fadeInUp 1s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent1), var(--accent2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.benefit-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 65px rgba(26, 74, 141, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.benefit-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    animation: pulse 3s infinite;
    background: linear-gradient(45deg, var(--accent1), var(--accent2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
}

.benefit-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
    position: relative;
    z-index: 2;
}

.benefit-card p {
    position: relative;
    z-index: 2;
    line-height: 1.7;
    font-size: 1.1rem;
    color: #555;
}

/* Enhanced Services Section */
.services {
    padding: 8rem 0;
    background: linear-gradient(to bottom, #ffffff, #f8fafe);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(91, 115, 255, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 30%);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    transition: all 0.4s ease;
    animation: slideInRight 1s ease-out;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 45px rgba(26, 74, 141, 0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(91, 115, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 65px rgba(26, 74, 141, 0.12);
}

.service-card h3 {
    color: var(--primary);
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.service-card h3 i {
    font-size: 2.5rem;
    background: linear-gradient(45deg, var(--accent1), var(--accent2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card p {
    line-height: 1.7;
    color: #555;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

/* Enhanced Industries Section */
.industries {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafe 0%, #e8f4ff 100%);
    position: relative;
    overflow: hidden;
}

.industries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a4a8d' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: backgroundMove 20s linear infinite;
}

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

.industry-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s ease;
    animation: zoomIn 1s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 45px rgba(26, 74, 141, 0.08);
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent1) 0%, var(--accent2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.industry-card:hover::before {
    opacity: 0.1;
}

.industry-card:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 55px rgba(26, 74, 141, 0.25);
}

.industry-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, var(--accent1), var(--accent2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
}

.industry-card:hover .industry-icon {
    transform: scale(1.2) rotate(5deg);
}

.industry-card h3,
.industry-card p {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.industry-card h3 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 1.6rem;
}

.industry-card p {
    font-size: 1.1rem;
    color: #555;
}

/* Enhanced FAQ Section */
.faq {
    padding: 8rem 0;
    background: linear-gradient(to bottom, #f8fafe, #ffffff);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 70%, rgba(91, 115, 255, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 80% 30%, rgba(0, 212, 255, 0.05) 0%, transparent 30%);
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    margin-bottom: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(26, 74, 141, 0.08);
    overflow: hidden;
    animation: fadeInUp 1s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 2;
}

.faq-question {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(248, 250, 254, 0.7), rgba(255, 255, 255, 0.9));
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 1.2rem;
}

.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent1), var(--accent2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-question:hover::before {
    opacity: 1;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(248, 250, 254, 0.9), rgba(255, 255, 255, 1));
}

.faq-question span,
.faq-question i {
    position: relative;
    z-index: 2;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 2.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: white;
    font-size: 1.1rem;
    line-height: 1.7;
}

.faq-answer.active {
    padding: 2.5rem;
    max-height: 300px;
}

/* New Animations */
@keyframes backgroundShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes floating {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(2deg); }
}

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

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 8rem;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .benefits-grid,
    .services-grid,
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .benefits,
    .services,
    .industries,
    .faq {
        padding: 6rem 0;
    }
    
    .cta-button {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
