:root {
    --primary-color: #00c2ff;
    --secondary-color: #7b2bf9;
    --text-color: #e0e0e0;
    --light-gray: #1e1e2e;
    --dark-gray: #888;
    --bg-color: #0a0a14;
    --card-bg: #12121f;
    --accent-glow: 0 0 10px rgba(0, 194, 255, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

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

h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    bottom: -10px;
    left: 0;
    border-radius: 3px;
    box-shadow: var(--accent-glow);
}

/* Navigation */

/* Logo styling */
.logo-img {
    height: 40px;
    margin-right: 10px;
    vertical-align: middle;
}

/* Hero image */
.hero-image {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Section images */
.section-image {
    width: 100%;
    max-height: 300px;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.section-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 768px) {
    .logo-img {
        height: 30px;
    }

    .hero-image, .section-image {
        max-height: 200px;
    }
}

nav {
    position: fixed;
    width: 100%;
    padding: 20px;
    background: rgba(10, 10, 20, 0.95);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 194, 255, 0.15);
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(0, 194, 255, 0.3);
}

.logo {
    font-size: 24px;
    font-weight: 700;
}

.highlight {
    color: var(--primary-color);
}

/* Language Toggle */
.language-toggle {
    display: flex;
    gap: 5px;
    margin-left: 15px;
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: var(--card-bg);
    color: var(--text-color);
    border-radius: 50%;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(0, 194, 255, 0.1);
    transition: all 0.3s ease;
}

.lang-btn:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 194, 255, 0.3);
}

.lang-btn.active {
    background: var(--primary-color);
    color: var(--bg-color);
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--primary-color);
    z-index: 1001;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 5px 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 194, 255, 0.3);
}

.menu-toggle:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

.nav-links {
    display: flex;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    margin-left: 30px;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover {
    color: var(--primary-color);
    text-shadow: var(--accent-glow);
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s;
    box-shadow: var(--accent-glow);
}

.nav-links a:hover:after, .nav-links a.active:after, .nav-links a:focus:after {
    width: 100%;
}

.nav-links a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.nav-active {
    display: flex !important;
}

/* Hero Section */
header {
    height: 100vh;
    padding-top: 70px; /* Added padding to account for fixed navbar */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://images.unsplash.com/photo-1504384764586-bb4cdc1707b0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

/* Page Hero for subpages */
.page-hero {
    padding: 150px 0 80px;
    margin-top: 0;
    padding-top: 120px; /* Increased padding to account for fixed navbar */
    background: var(--light-gray);
    text-align: center;
    position: relative;
    background-image: radial-gradient(rgba(0, 194, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(0, 194, 255, 0.5);
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 194, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 194, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: center;
    pointer-events: none;
}

.hero-content {
    width: 100%;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(0, 194, 255, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 194, 255, 0.3);
    z-index: 1;
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.cta-button:hover {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 194, 255, 0.5);
}

.cta-button:hover:before {
    opacity: 1;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    margin-left: 15px;
}

.cta-button.secondary:hover {
    background: rgba(0, 194, 255, 0.2);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Featured Section */
.featured-section {
    padding: 100px 0;
    background: var(--bg-color);
    scroll-margin-top: 70px; /* Helps with smooth scrolling when clicking nav links */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 194, 255, 0.1);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 194, 255, 0.2);
    border: 1px solid rgba(0, 194, 255, 0.3);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: var(--accent-glow);
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

.text-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.text-link:hover {
    text-shadow: var(--accent-glow);
}

.text-link i {
    transition: transform 0.3s;
}

.text-link:hover i {
    transform: translateX(5px);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--light-gray);
    background-image: radial-gradient(rgba(0, 194, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.benefits {
    list-style: none;
    margin-top: 30px;
}

.benefits li {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Services Section */
.services-section {
    padding: 100px 0;
}

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

.service-card {
    padding: 30px;
    background: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    border: 1px solid rgba(0, 194, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 194, 255, 0.2);
    border: 1px solid rgba(0, 194, 255, 0.3);
}

.service-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: var(--accent-glow);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input, textarea {
    padding: 15px;
    border: 1px solid rgba(0, 194, 255, 0.3);
    border-radius: 5px;
    font-family: inherit;
    background: rgba(18, 18, 31, 0.8);
    color: var(--text-color);
    transition: all 0.3s;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 194, 255, 0.2);
}

.invalid-input {
    border-color: rgba(255, 60, 60, 0.7);
    box-shadow: 0 0 10px rgba(255, 60, 60, 0.3);
}

/* Success message for form submission */
.success-message {
    background-color: rgba(0, 194, 255, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    text-align: center;
    animation: fadeIn 0.5s;
}

/* Error message for form submission */
.error-message {
    background-color: rgba(255, 60, 60, 0.1);
    border: 1px solid rgba(255, 60, 60, 0.7);
    color: rgba(255, 60, 60, 0.9);
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    text-align: center;
    animation: fadeIn 0.5s;
}

/* Language notification */
.language-notification {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 1000;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background: #080812;
    color: white;
    padding: 50px 0 20px;
    border-top: 1px solid rgba(0, 194, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.footer-section h4 {
    margin-bottom: 20px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    display: block;
    margin: 10px 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: rgba(10, 10, 20, 0.98);
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        padding: 10px 0;
        box-shadow: 0 0 15px rgba(0, 194, 255, 0.2);
        border-bottom: 1px solid rgba(0, 194, 255, 0.3);
    }

    .language-toggle {
        position: absolute;
        top: 20px;
        right: 80px;
    }

    .nav-links a {
        margin: 10px 20px;
    }

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

    .about-content {
        flex-direction: column;
    }
}


/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 194, 255, 0.1);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 194, 255, 0.2);
    border: 1px solid rgba(0, 194, 255, 0.3);
}

.testimonial-quote {
    position: relative;
    padding: 20px 0;
}

.testimonial-quote i.fa-quote-left {
    position: absolute;
    top: 0;
    left: -10px;
    color: var(--primary-color);
    opacity: 0.2;
    font-size: 24px;
}

.testimonial-quote i.fa-quote-right {
    position: absolute;
    bottom: 0;
    right: -10px;
    color: var(--primary-color);
    opacity: 0.2;
    font-size: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
    border-top: 1px solid rgba(0, 194, 255, 0.1);
    padding-top: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--primary-color);
}

.testimonial-author h4 {
    margin: 0;
    font-size: 1.1rem;
}

.testimonial-author p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Blog Styles */
.blog-section {
    padding: 100px 0;
    background: var(--light-gray);
    background-image: radial-gradient(rgba(0, 194, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.blog-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 194, 255, 0.1);
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 194, 255, 0.2);
    border: 1px solid rgba(0, 194, 255, 0.3);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.blog-content h3 {
    margin-bottom: 15px;
}

.resources-section {
    margin-top: 80px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.resource-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 194, 255, 0.1);
    transition: all 0.3s;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 194, 255, 0.2);
    border: 1px solid rgba(0, 194, 255, 0.3);
}

.resource-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: var(--accent-glow);
}

.resource-card h3 {
    margin-bottom: 15px;
}

.resource-card p {
    margin-bottom: 25px;
}

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

/* FAQ Styles */
.faq-section {
    padding: 100px 0;
}

.faq-container {
    margin-top: 50px;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 194, 255, 0.1);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(0, 194, 255, 0.2);
    border: 1px solid rgba(0, 194, 255, 0.3);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    padding-right: 40px;
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 1000px;
}

.faq-answer ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.faq-answer ul li {
    margin-bottom: 8px;
}

.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 194, 255, 0.1);
}

.faq-cta h3 {
    margin-bottom: 15px;
}

.faq-cta p {
    margin-bottom: 25px;
}

/* Case Studies Styles */
.case-studies-section {
    padding: 100px 0;
    background: var(--light-gray);
    background-image: radial-gradient(rgba(0, 194, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.case-study-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 194, 255, 0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 194, 255, 0.2);
    border: 1px solid rgba(0, 194, 255, 0.3);
}

.case-study-header {
    padding: 30px;
    border-bottom: 1px solid rgba(0, 194, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.industry-tag {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.case-study-meta {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-top: 5px;
}

.case-study-content {
    padding: 30px;
    flex-grow: 1;
}

.case-study-content h4 {
    color: var(--primary-color);
    margin: 20px 0 10px;
}

.case-study-content h4:first-child {
    margin-top: 0;
}

.case-study-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.case-study-content ul li {
    margin-bottom: 8px;
}

.results-list {
    list-style: none;
    padding-left: 0 !important;
}

.results-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.results-list i {
    color: var(--primary-color);
    margin-right: 10px;
}

.case-study-footer {
    padding: 20px 30px;
    border-top: 1px solid rgba(0, 194, 255, 0.1);
    background: rgba(0, 0, 0, 0.1);
}

.section-cta {
    margin-top: 40px;
    text-align: center;
}

/* ROI Section Styles */```text
.roi-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.8) 0%, rgba(0, 40, 85, 0.9) 100%);
    border-top: 1px solid rgba(0, 194, 255, 0.1);
    border-bottom: 1px solid rgba(0, 194, 255, 0.1);
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.roi-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 194, 255, 0.2);
    transition: all 0.3s;
}

.roi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 194, 255, 0.3);
}

.roi-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.roi-explanation {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 194, 255, 0.1);
}

.roi-explanation h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.roi-explanation .cta-button {
    margin-top: 20px;
    display: inline-block;
}

/* Process Timeline Styles */
.process-section {
    padding: 80px 0;
}

.process-timeline {
    margin: 60px 0;
    position: relative;
}

.process-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    width: 4px;
    background: var(--primary-color);
    opacity: 0.5;
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 60px;
}

.timeline-number {
    position: absolute;
    left: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 1;
    box-shadow: 0 0 15px rgba(0, 194, 255, 0.5);
}

.timeline-content {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 194, 255, 0.1);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.timeline-duration {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.timeline-description h4 {
    margin: 20px 0 10px;
    color: var(--text-color);
}

.timeline-description ul {
    list-style: none;
}

.timeline-description li {
    margin: 8px 0;
    padding-left: 25px;
    position: relative;
}

.timeline-description li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.process-diagram {
    margin: 60px 0;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 194, 255, 0.1);
}

.process-diagram h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.responsibility-table {
    overflow-x: auto;
}

.responsibility-table table {
    width: 100%;
    border-collapse: collapse;
}

.responsibility-table th {
    background: rgba(0, 194, 255, 0.1);
    color: var(--text-color);
    text-align: left;
    padding: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.responsibility-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.responsibility-table tr:last-child td {
    border-bottom: none;
}

.responsibility-table i.fas {
    color: var(--primary-color);
}

.next-steps {
    text-align: center;
    margin: 60px 0 30px;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 194, 255, 0.1);
}

.next-steps h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.next-steps p {
    margin-bottom: 30px;
}

/* Calculator Styles */
.calculator-section {
    padding: 100px 0;
}

.calculator-container {
    margin-top: 50px;
}

.calculator-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 194, 255, 0.1);
}

.calculator-inputs {
    padding: 40px;
    border-right: 1px solid rgba(0, 194, 255, 0.1);
}

.calculator-results {
    padding: 40px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.input-group {
    margin-bottom: 30px;
}

.input-group label {
    display: block;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 1.1rem;
}

input[type="range"] {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 194, 255, 0.5);
}

.range-value {
    margin-top: 15px;
    font-size: 1.1rem;
    text-align: center;
}

#user-count-value {
    color: var(--primary-color);
    font-weight: 700;
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 194, 255, 0.3);
    border-radius: 4px;
}

.checkbox-container:hover .checkmark {
    background-color: var(--accent-color);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.input-with-currency {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-prefix {
    position: absolute;
    left: 15px;
    color: var(--text-color);
}

#current-spend {
    padding: 12px 12px 12px 30px;
    width: 100%;
    border-radius: 5px;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

.input-hint {
    font-size: 0.8rem;
    margin-top: 5px;
    color: var(--text-muted);
}

.roi-calculation {
    background: rgba(0, 194, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid rgba(0, 194, 255, 0.2);
}

.roi-comparison {
    display: flex;
    margin: 15px 0;
    text-align: center;
}

.roi-current, .roi-new {
    flex: 1;
    padding: 10px;
}

.roi-current {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.roi-label {
    display: block;
    margin-bottom: 5px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.roi-value {
    font-size: 1.4rem;
    font-weight: 600;
}

.roi-new .roi-value {
    color: var(--primary-color);
}

.roi-savings {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.roi-savings:last-child {
    margin-bottom: 0;
}

.roi-savings .roi-value {
    color: #4CAF50;
}

.business-benefits {
    margin-top: 20px;
}

.business-benefits ul {
    list-style: none;
    padding: 0;
}

.business-benefits li {
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.business-benefits i {
    color: #4CAF50;
    margin-right: 10px;
}

/* Comparison Section Styles */
.comparison-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.8) 0%, rgba(0, 40, 85, 0.9) 100%);
}

.section-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-muted);
}

.comparison-table-container {
    overflow-x: auto;
    margin-bottom: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: center;
}

.comparison-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    background: rgba(0, 194, 255, 0.1);
    font-weight: 500;
}

.comparison-table tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.03);
}

.comparison-table tr:nth-child(odd) {
    background-color: rgba(0, 0, 0, 0.2);
}

.comparison-table i.fas {
    font-size: 1.1rem;
}

.comparison-table i.fa-check-circle {
    color: #4CAF50;
}

.comparison-table i.fa-times-circle {
    color: #f44336;
}

.comparison-table i.fa-exclamation-circle {
    color: #ff9800;
}

.comparison-table i.highlight {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.comparison-summary {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 194, 255, 0.1);
}

.comparison-summary h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.comparison-summary p {
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-model {
    padding: 80px 0;
}

.pricing-model h3 {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-model p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.pricing-model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.model-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 194, 255, 0.1);
    transition: all 0.3s;
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 194, 255, 0.2);
}

.model-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.model-card h4 {
    margin-bottom: 15px;
}

.model-card p {
    margin-bottom: 25px;
}

.pricing-structure {
    padding: 80px 0;
    background: var(--light-gray);
    background-image: radial-gradient(rgba(0, 194, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

.pricing-structure h3 {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 50px;
}

.pricing-table th,
.pricing-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-table th {
    background: rgba(0, 194, 255, 0.1);
    color: var(--text-color);
}

.pricing-table td:nth-child(2),
.pricing-table td:nth-child(3) {
    text-align: center;
}

.pricing-table i {
    color: var(--primary-color);
}

.integrations-section {
    padding: 80px 0;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    margin-top: 50px;
    justify-items: center;
}

.integration-logo {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 194, 255, 0.1);
    transition: all 0.3s;
}

.integration-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 194, 255, 0.3);
}

.integration-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.testimonials-section {
    padding: 80px 0;
    background: var(--light-gray);
    background-image: radial-gradient(rgba(0, 194, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

.customer-logos {
    padding: 80px 0;
}

.customer-logos h3 {
    text-align: center;
    margin-bottom: 40px;
}

.customer-logos-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.customer-logo {
    width: 150px;
    height: 80px;
    opacity: 0.7;
    transition: all 0.3s;
}

.customer-logo:hover {
    opacity: 1;
}

.customer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.case-studies-section {
    padding: 80px 0;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.case-study-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 194, 255, 0.1);
    transition: all 0.3s;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 194, 255, 0.2);
}

.case-study-image {
    height: 220px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.1);
}

.case-study-content {
    padding: 30px;
}

.case-study-content h4 {
    margin-bottom: 15px;
}

.case-study-content p {
    margin-bottom: 20px;
}

.call-to-action {
    padding: 100px 0;
    background: var(--light-gray);
    background-image: radial-gradient(rgba(0, 194, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    text-align: center;
}

.call-to-action h3 {
    margin-bottom: 20px;
}

.call-to-action p {
    margin-bottom: 30px;
}

.faq-section {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.faq-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 194, 255, 0.1);
    transition: all 0.3s;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 194, 255, 0.2);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.faq-answer {
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .pricing-model-grid,
    .integrations-grid,
    .customer-logos-grid,
    .case-studies-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .customer-logos-grid {
        justify-content: center;
    }
}


/* Service Highlights Section */
.service-highlights {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
    border: 1px solid #e1e8ed;
}

.service-highlights h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.managed-services-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.managed-services-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #34495e;
    padding: 0.5rem;
}

.managed-services-list li i {
    color: #27ae60;
    font-size: 1.1rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .managed-services-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .service-highlights {
        padding: 1.5rem;
        margin-top: 2rem;
    }
}

/* Enhanced Services Page Styles */
.services-overview {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.service-intro {
    margin-top: 3rem;
}

.intro-text {
    font-size: 1.2rem;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.benefit-item {
    text-align: center;
    padding: 1.5rem;
}

.benefit-item i {
    font-size: 3rem;
    color: #007acc;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.benefit-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Managed Workloads Section */
.managed-workloads {
    padding: 4rem 0;
}

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

.workload-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1e8ed;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workload-card.featured {
    border: 2px solid #007acc;
    background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
}

.workload-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.workload-card i {
    font-size: 2.5rem;
    color: #007acc;
    margin-bottom: 1rem;
}

.workload-card h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.workload-card ul {
    list-style: none;
    padding: 0;
}

.workload-card li {
    padding: 0.5rem 0;
    color: #34495e;
    position: relative;
    padding-left: 1.5rem;
}

.workload-card li:before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Deployment Process Section */
.deployment-process {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

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

.step-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid #e1e8ed;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #007acc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.step-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Ongoing Management Section */
.ongoing-management {
    padding: 4rem 0;
}

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

.management-feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1e8ed;
}

.management-feature i {
    font-size: 2.5rem;
    color: #007acc;
    margin-bottom: 1rem;
}

.management-feature h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.management-feature p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Service Comparison Section */
.service-comparison {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #007acc 0%, #0056a3 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-buttons .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .workloads-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .deployment-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .management-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .key-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
}
