/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0a0f18;
    --secondary-color: #1e3a8a;
    --accent-color: #00b4d8;
    --accent-red: #ef233c;
    --text-color: #ffffff;
    --text-muted: #94a3b8;
    --dark-bg: #060b14;
    --card-bg: rgba(17, 24, 39, 0.8);
    --border-color: rgba(255, 255, 255, 0.1);
    --gradient-primary: linear-gradient(135deg, #1e3a8a, #00b4d8);
    --gradient-dark: linear-gradient(180deg, #0a0f18 0%, #060b14 100%);
    --gradient-tech: linear-gradient(45deg, #1e3a8a, #00b4d8, #ef233c);
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
    --glow-effect: 0 0 20px rgba(0, 180, 216, 0.3);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--primary-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 1000;
    background: rgba(13, 17, 23, 0.85);
    backdrop-filter: blur(8px);
    overflow: hidden;
}

#header3dScene {
    position: absolute;
    top: 50%;
    right: 0;
    width: 300px;
    height: 200px;
    transform: translateY(-50%);
    z-index: -1;
    pointer-events: none;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(13, 17, 23, 0.95) 0%,
        rgba(13, 17, 23, 0.8) 50%,
        rgba(13, 17, 23, 0.4) 100%
    );
    z-index: -1;
}

.navbar {
    display: flex;
    align-items: center;
    height: 100%;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(135deg, #00f7ff, #00B4D8, #0077B6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo-text span {
    color: #00f7ff;
    -webkit-text-fill-color: initial;
    font-weight: 800;
}

.logo-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00f7ff, #00B4D8, #0077B6);
    filter: blur(20px);
    opacity: 0.3;
    z-index: -1;
    animation: glowPulse 2s infinite;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00f7ff, transparent);
    animation: scanLine 2s linear infinite;
}

@keyframes scanLine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.nav-menu {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--accent-color);
}

.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

/* Responsive header adjustments */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(13, 17, 23, 0.98);
        padding: 1rem 0;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }
}

/* Add margin to main content to prevent header overlap */
main {
    margin-top: 70px;
}

/* Adjust hero section to account for fixed header */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0d1117;
}

/* Hero Container Layout */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    min-height: 100vh;
    padding: 2rem 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
    text-align: left;
    padding: 2rem;
}

.glitch-text {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.5);
    animation: glitch 5s infinite;
    line-height: 1.1;
    text-align: left;
}

.cyber-text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #a0a0a0;
    text-align: left;
    line-height: 1.4;
}

.hero-3d-container {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -2rem;
}

#securityLockCanvas {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: transparent;
}

.glow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    pointer-events: none;
    background: radial-gradient(circle at center, rgba(0, 247, 255, 0.2) 0%, transparent 70%);
    animation: glowPulse 3s infinite;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00f7ff, transparent);
    animation: scanLine 3s linear infinite;
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.5);
}

@keyframes scanLine {
    0% {
        top: 0;
    }
    100% {
        top: 100%;
    }
}

@keyframes glowPulse {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 0.5;
    }
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    overflow: hidden;
    background: var(--dark-bg);
}

#heroCanvas {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-tech);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: var(--glow-effect);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-effect), 0 10px 20px rgba(0, 180, 216, 0.4);
}

.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, 
        var(--dark-bg) 0%,
        rgba(6, 11, 20, 0.8) 30%,
        rgba(6, 11, 20, 0.4) 100%
    );
    z-index: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
        padding: 1rem;
    }

    .glitch-text {
        text-align: center;
        font-size: 3rem;
    }

    .cyber-text {
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .hero-stats {
        text-align: center;
    }

    .hero-3d-container {
        height: 500px;
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .glitch-text {
        font-size: 2.5rem;
    }

    .cyber-text {
        font-size: 1.1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-3d-container {
        height: 400px;
    }
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0.5rem;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, #00f7ff, #0077B6);
    color: #ffffff;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 247, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 247, 255, 0.4);
    background: linear-gradient(135deg, #00f7ff, #00B4D8);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.btn-primary:hover::before {
    transform: translateX(100%) rotate(45deg);
}

.pulse {
    animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 247, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(0, 247, 255, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 247, 255, 0.3);
    }
}

.btn-secondary {
    background: transparent;
    border: 2px solid #00f7ff;
    color: #00f7ff;
}

.btn-secondary:hover {
    background: rgba(0, 247, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 247, 255, 0.2);
}

/* Animations */
@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes glow {
    0% { box-shadow: 0 0 5px #00f7ff; }
    50% { box-shadow: 0 0 20px #00f7ff; }
    100% { box-shadow: 0 0 5px #00f7ff; }
}

/* Stats Section */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00f7ff;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: #a0a0a0;
}

.counter {
    animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Animated Background */
@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes rotateAround {
    0% {
        transform: rotate(0deg) translateX(50px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(50px) rotate(-360deg);
    }
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-tech);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    opacity: 0.1;
    pointer-events: none;
}

.cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(14, 23, 47, 0.2) 2px, transparent 2px),
        linear-gradient(90deg, rgba(14, 23, 47, 0.2) 2px, transparent 2px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Hero Section */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,180,216,0.1) 0%, rgba(10,15,24,0.95) 100%);
    z-index: 1;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-tech);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

/* Section Styles */
section {
    padding: 100px 0;
    background: var(--primary-color);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: var(--gradient-tech);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    position: relative;
    background: var(--dark-bg);
    padding: 6rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    overflow: hidden;
}

.service-card.featured {
    transform: scale(1.05);
    border-color: var(--accent-color);
    box-shadow: var(--glow-effect);
}

.service-card .btn {
    margin-top: 20px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--text-color);
}

.service-card h3 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.service-features {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: var(--text-muted);
}

.service-features li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--primary-color);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.about-card {
    text-align: center;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.about-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.about-card h3 {
    color: var(--text-color);
    margin-bottom: 15px;
}

.about-card p {
    color: var(--text-muted);
}

/* Methodology Section */
.methodology {
    position: relative;
    padding: 6rem 0;
    background: var(--dark-bg);
    overflow: hidden;
}

.methodology-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
}

.step {
    background: rgba(15, 23, 42, 0.6);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 180, 216, 0.1);
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.2);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00B4D8, #0077B6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.step-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #00B4D8, #0077B6);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
    animation: pulse 2s infinite;
}

.step-icon i {
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.step:hover .step-icon i {
    transform: scale(1.2);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #00B4D8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 0 15px rgba(0, 180, 216, 0.3);
}

.step-content {
    margin-top: 1rem;
}

.step h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

.step p {
    color: #94A3B8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-connector {
    position: absolute;
    top: 40px;
    right: -30%;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, #00B4D8, transparent);
    z-index: -1;
}

.step:last-child .step-connector {
    display: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .methodology-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .methodology-steps {
        grid-template-columns: 1fr;
    }
    
    .step {
        padding: 2rem;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
    }
    
    .step-icon i {
        font-size: 1.8rem;
    }
}

/* 3D Elements and Tech Decorations */
.tech-sphere {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient-tech);
    filter: blur(20px);
    opacity: 0.1;
    animation: pulse 4s ease-in-out infinite;
}

.tech-ring {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    opacity: 0.1;
    animation: rotateAround 20s linear infinite;
}

.tech-dots {
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, var(--accent-color) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
}

/* Enhanced Card Hover Effects */
.service-card,
.about-card,
.step {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card:hover,
.about-card:hover,
.step:hover {
    transform: translateY(-5px) rotateX(5deg);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--primary-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-info {
    display: grid;
    gap: 30px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

.contact-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.contact-item h3 {
    color: var(--text-color);
    margin-bottom: 10px;
}

.contact-item p {
    color: var(--text-muted);
}

/* Contact Form */
.contact-form {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-color);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(0, 180, 216, 0.2);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-info p {
    color: var(--text-muted);
    margin-top: 20px;
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links a,
.footer-services li {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-contact p {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-contact p i {
    color: var(--accent-color);
    margin-right: 10px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

/* Particle System */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
    }
}

/* Enhanced Animations */
@keyframes glowPulse {
    0% {
        box-shadow: 0 0 5px rgba(0, 180, 216, 0.2),
                    0 0 10px rgba(0, 180, 216, 0.2),
                    0 0 15px rgba(0, 180, 216, 0.2);
    }
    50% {
        box-shadow: 0 0 10px rgba(0, 180, 216, 0.5),
                    0 0 20px rgba(0, 180, 216, 0.3),
                    0 0 30px rgba(0, 180, 216, 0.2);
    }
    100% {
        box-shadow: 0 0 5px rgba(0, 180, 216, 0.2),
                    0 0 10px rgba(0, 180, 216, 0.2),
                    0 0 15px rgba(0, 180, 216, 0.2);
    }
}

@keyframes borderGlow {
    0% {
        border-color: var(--accent-color);
        box-shadow: 0 0 10px rgba(0, 180, 216, 0.2);
    }
    50% {
        border-color: var(--secondary-color);
        box-shadow: 0 0 20px rgba(30, 58, 138, 0.4);
    }
    100% {
        border-color: var(--accent-color);
        box-shadow: 0 0 10px rgba(0, 180, 216, 0.2);
    }
}

/* Apply enhanced animations to elements */
.service-card:hover,
.about-card:hover,
.step:hover {
    animation: borderGlow 2s ease-in-out infinite;
}

.service-icon i,
.about-card i {
    animation: glowPulse 2s ease-in-out infinite;
}

/* 3D Lock Styles */
.hero-3d-element {
    position: relative;
    width: 300px;
    height: 300px;
}

.hero-3d-element canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Animated Background Elements */
.animated-bg {
    mask-image: linear-gradient(to bottom, 
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.9) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    -webkit-mask-image: linear-gradient(to bottom,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.9) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
}

.cyber-grid {
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(50px);
    }
}

/* Enhanced Card Animations */
.service-card.animate,
.about-card.animate,
.step.animate {
    animation: cardEnter 0.6s ease-out forwards;
}

@keyframes cardEnter {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Glowing Text Effect */
.gradient-text {
    background: var(--gradient-tech);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.gradient-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: var(--gradient-tech);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(8px);
    opacity: 0.5;
}

/* Button Glow Effects */
.btn-primary {
    position: relative;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-tech);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.btn-primary:hover::after {
    opacity: 0.3;
    animation: buttonGlow 2s ease-in-out infinite;
}

@keyframes buttonGlow {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
    100% {
        opacity: 0.3;
        transform: scale(1);
    }
}

/* Packages Section */
.packages-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: var(--dark-bg);
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.pricing-card {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(0, 180, 216, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card.featured {
    transform: scale(1.05);
    border-color: var(--accent-color);
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 0 30px rgba(0, 180, 216, 0.2);
}

.pricing-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 180, 216, 0.1);
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.price-subtitle {
    color: #94A3B8;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    color: #94A3B8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.addon-info {
    font-size: 0.9rem;
    color: #64748B !important;
    padding-left: 1.5rem !important;
}

/* Add-on Services Section */
.addon-services {
    margin-top: 4rem;
    text-align: center;
}

.addon-services h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #00f7ff, #0077B6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.addon-card {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(0, 180, 216, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.addon-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.1);
}

.addon-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.addon-card h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.addon-card p {
    color: #94A3B8;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .pricing-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .addon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .pricing-container {
        grid-template-columns: 1fr;
    }
    
    .addon-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .pricing-header h3 {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
}

/* Package Details Section */
.package-details-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: var(--primary-color);
}

.details-tabs {
    max-width: 1400px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.tab-btn {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.tab-btn:hover {
    color: var(--text-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: var(--text-color);
    border: none;
    box-shadow: 0 5px 15px rgba(0, 180, 216, 0.3);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

/* Comparison Table Styles */
.table-wrapper {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    overflow-x: auto;
    margin-bottom: 2rem;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 800px;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: rgba(0, 180, 216, 0.1);
    font-weight: 600;
    color: var(--accent-color);
    position: sticky;
    top: 0;
    z-index: 10;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    padding-left: 2rem;
}

.comparison-table tr:hover {
    background: rgba(0, 180, 216, 0.05);
}

.comparison-table i.fas.fa-check {
    color: #00b894;
    font-size: 1.2rem;
}

.comparison-table i.fas.fa-times {
    color: #ff7675;
    font-size: 1.2rem;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .hero-content {
        padding: 2rem;
    }

    .services-grid,
    .about-grid,
    .methodology-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .services-grid,
    .about-grid,
    .methodology-steps {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Real-time Security Monitoring Section */
.monitoring-section {
    position: relative;
    padding: 100px 0;
    background: var(--dark-bg);
    overflow: hidden;
}

.monitoring-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.monitoring-text {
    padding: 2rem;
}

.monitoring-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    line-height: 1.2;
}

.monitoring-visual {
    position: relative;
    height: 500px;
}

/* Package Details & Add-ons Section */
.package-details {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.details-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Industries Section */
.industries-section {
    padding: 6rem 0;
    background: var(--primary-color);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Certifications Section */
.certifications-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    align-items: center;
}

/* Assessment CTA Section */
.assessment-cta {
    padding: 6rem 0;
    background: var(--primary-color);
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

/* Transparent Pricing Section */
.transparent-pricing {
    padding: 6rem 0;
    background: var(--dark-bg);
}

/* Start Immediately Section */
.start-section {
    padding: 6rem 0;
    background: var(--primary-color);
    text-align: center;
}

.start-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

/* FAQ Section */
.faq {
    position: relative;
    padding: 8rem 0;
    background: var(--dark-bg);
    min-height: 100vh;
    overflow: hidden;
}

.faq .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-category {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(0, 180, 216, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-category:hover {
    border-color: var(--accent-color);
    box-shadow: 0 0 30px rgba(0, 180, 216, 0.1);
}

.faq-category h3 {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
}

.faq-category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-tech);
    border-radius: 2px;
}

.faq-item {
    background: rgba(15, 23, 42, 0.8);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 180, 216, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 500;
    padding-right: 2rem;
}

.faq-question i {
    color: var(--accent-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    background: rgba(15, 23, 42, 0.4);
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    color: #94A3B8;
    font-size: 1rem;
    line-height: 1.6;
}

.faq-answer ul {
    padding: 0 1.5rem 1.5rem 3rem;
    margin: 0;
    color: #94A3B8;
    list-style-type: disc;
}

.faq-answer ul li {
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.faq-item.active .faq-question {
    background: rgba(0, 180, 216, 0.1);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 1s ease-in-out;
}

.faq-support {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 24px;
    border: 1px solid rgba(0, 180, 216, 0.1);
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-support h3 {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.faq-support p {
    color: #94A3B8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Responsive adjustments for FAQ section */
@media (max-width: 1200px) {
    .faq-categories {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .faq {
        padding: 4rem 0;
    }

    .faq-category {
        padding: 2rem;
    }

    .faq-category h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .faq-question h4 {
        font-size: 1rem;
    }

    .faq-support {
        padding: 2rem;
        margin-top: 2rem;
    }

    .faq-support h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .faq-categories {
        padding: 0 1rem;
    }

    .faq-category {
        padding: 1.5rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-answer p,
    .faq-answer ul {
        padding: 1rem;
    }
}

/* Success Stories Section */
.success-stories {
    padding: 6rem 0;
    background: var(--primary-color);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .monitoring-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .monitoring-visual {
        height: 400px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .monitoring-text h2 {
        font-size: 2.5rem;
    }

    .lab-grid,
    .industries-grid,
    .certifications-grid,
    .stories-grid {
        grid-template-columns: 1fr;
    }
}

/* Enterprise Custom Solution Section */
.enterprise-section {
    position: relative;
    padding: 120px 0;
    background: var(--dark-bg);
    overflow: hidden;
}

.enterprise-section .animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(79, 172, 254, 0.1), transparent 70%);
    z-index: 1;
}

.enterprise-section .cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(79, 172, 254, 0.1) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(79, 172, 254, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: 1;
}

.enterprise-content {
    position: relative;
    z-index: 2;
}

.enterprise-header {
    text-align: center;
    margin-bottom: 4rem;
}

.enterprise-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.enterprise-header .subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    opacity: 0.9;
}

.enterprise-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.enterprise-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-group {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-group:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.feature-group h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.feature-group h3 i {
    color: #4facfe;
    font-size: 1.4rem;
}

.feature-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-group ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.feature-group ul li i {
    color: #4facfe;
    font-size: 0.9rem;
}

.enterprise-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.price-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.price-tag .label {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.price-tag .price {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.enterprise-cta .btn {
    margin-bottom: 1rem;
}

.contact-info {
    color: var(--text-light);
    font-size: 1rem;
}

.contact-info strong {
    color: #4facfe;
}

.enterprise-visual {
    position: relative;
    height: 500px;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.security-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 1px 1px, rgba(79, 172, 254, 0.2) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: meshFloat 20s linear infinite;
}

.floating-elements {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.float-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(79, 172, 254, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-item i {
    font-size: 1.5rem;
    color: #4facfe;
}

.float-item:nth-child(1) {
    animation: float1 4s ease-in-out infinite;
}

.float-item:nth-child(2) {
    animation: float2 5s ease-in-out infinite;
}

.float-item:nth-child(3) {
    animation: float3 6s ease-in-out infinite;
}

@keyframes meshFloat {
    0% { background-position: 0 0; }
    100% { background-position: 30px 30px; }
}

@keyframes float1 {
    0%, 100% { transform: translate(-50px, -50px); }
    50% { transform: translate(-30px, -70px); }
}

@keyframes float2 {
    0%, 100% { transform: translate(20px, 0px); }
    50% { transform: translate(40px, -20px); }
}

@keyframes float3 {
    0%, 100% { transform: translate(-20px, 50px); }
    50% { transform: translate(-40px, 30px); }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .enterprise-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .enterprise-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .enterprise-visual {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .enterprise-section {
        padding: 80px 0;
    }

    .enterprise-header h2 {
        font-size: 2.4rem;
    }

    .enterprise-features {
        grid-template-columns: 1fr;
    }

    .feature-group {
        padding: 1.5rem;
    }

    .enterprise-visual {
        height: 300px;
    }
} 