/* Base Styles */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --dark-color: #1f2937;
    --light-color: #f9fafb;
    --text-dark: #334155;
    --text-light: #94a3b8;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
    --border-radius: 4px;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-color);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 600;
    text-align: center;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow);
}

.primary-btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
}

.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 50px;
}

.main-menu {
    display: flex;
}

.main-menu li {
    margin: 0 15px;
}

.main-menu a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.main-menu a:hover::after,
.main-menu a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Language Selector */
.language-selector {
    position: relative;
    margin-right: 20px;
}

#language-btn {
    display: flex;
    align-items: center;
    background: none;
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

#language-btn:hover {
    background-color: var(--light-color);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    width: 150px;
    z-index: 10;
    display: none;
}

.language-dropdown a {
    display: block;
    padding: 10px 15px;
    color: var(--text-dark);
    transition: var(--transition);
}

.language-dropdown a:hover {
    background-color: var(--light-color);
}

.language-selector.active .language-dropdown {
    display: block;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/api/placeholder/1600/800') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 150px 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

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

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--dark-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    position: relative;
    font-weight: 600;
}

.read-more::after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover::after {
    margin-left: 10px;
}

/* Why Choose Us */
.why-choose-us {
    background-color: var(--light-color);
}

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

.feature {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.feature h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--dark-color);
}

.feature p {
    color: var(--text-light);
}

/* Testimonials */
.testimonials {
    background-color: white;
}

.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial {
    text-align: center;
    padding: 0 20px;
}

.testimonial-content {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    position: relative;
    margin-bottom: 30px;
}

.testimonial-content::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-color: var(--light-color);
    transform: rotate(45deg);
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

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

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.prev-testimonial,
.next-testimonial {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.prev-testimonial:hover,
.next-testimonial:hover {
    color: var(--primary-dark);
}

.slider-dots {
    display: flex;
    gap: 8px;
    margin: 0 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    margin-bottom: 30px;
    font-size: 1.2rem;
    opacity: 0.9;
}

.cta-content .primary-btn {
    background-color: white;
    color: var(--primary-color);
}

.cta-content .primary-btn:hover {
    background-color: var(--light-color);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 70px 0 20px;
}

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

.footer-logo img {
    margin-bottom: 15px;
}

.footer-logo p {
    color: var(--text-light);
}

.footer-content h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-services a {
    color: var(--text-light);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.footer-contact p a {
    color: var(--text-light);
}

.footer-contact p a:hover {
    color: white;
}

.social-media {
    display: flex;
    gap: 15px;
}

.social-media a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    transition: var(--transition);
}

.social-media a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-light);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--text-light);
}

.footer-bottom-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .main-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
        z-index: 999;
    }
    
    .main-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .main-menu li {
        margin: 10px 0;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 100px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .service-card,
    .feature {
        padding: 20px 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-media {
        justify-content: center;
    }
}

/* Services Page Specific Styles */
.service-details {
    padding: 50px 0;
}

.service-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.service-details-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    align-items: center;
    padding: 40px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.service-details-icon {
    text-align: center;
}

.service-details-icon i {
    font-size: 4rem;
    color: var(--primary-color);
}

.service-details-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.service-details-content p {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-details-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.service-details-content ul li {
    margin-bottom: 8px;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .service-details-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-details-icon {
        margin-bottom: 20px;
    }
}

/* Contact Page Specific Styles */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.contact-info p {
    margin-bottom: 30px;
    color: var(--text-dark);
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-method-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.contact-method-info p {
    margin-bottom: 0;
    color: var(--text-light);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        order: -1;
    }
}

/* Languages and Translations */
[lang="es"] [data-key="nav-home"] {
    content: "Inicio";
}

[lang="es"] [data-key="nav-services"] {
    content: "Servicios";
}

[lang="es"] [data-key="nav-solutions"] {
    content: "Soluciones";
}

[lang="es"] [data-key="nav-about"] {
    content: "Nosotros";
}

[lang="es"] [data-key="nav-contact"] {
    content: "Contacto";
}

/* Add similar rules for other languages and elements */

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.feature,
.testimonial {
    animation: fadeIn 0.8s ease forwards;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.4s;
}

.service-card:nth-child(4) {
    animation-delay: 0.6s;
}

.feature:nth-child(2) {
    animation-delay: 0.2s;
}

.feature:nth-child(3) {
    animation-delay: 0.4s;
}

.feature:nth-child(4) {
    animation-delay: 0.6s;
}

/* SEO Specific Styles */
.seo-keywords {
    display: none;
}

/* Accessibility Styles */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    padding: 8px;
    background-color: var(--primary-color);
    color: white;
    z-index: 1001;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

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

/* Dark Mode - Future Implementation */
@media (prefers-color-scheme: dark) {
    :root {
        /* Dark mode variables can be implemented here */
    }
}
/* Portfolio Section Styles */
.portfolio-section {
    background-color: var(--light-color);
    padding: 80px 0;
}

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

.portfolio-item {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

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

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(37, 99, 235, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.portfolio-link:hover {
    background-color: var(--primary-dark);
    color: white;
}

.portfolio-info {
    padding: 25px;
}

.portfolio-info h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
    font-size: 1.3rem;
}

.portfolio-info p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.portfolio-button {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.portfolio-button:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
}

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

/* Additional CSS for the shared_hosting.html page */

/* Pricing Section Styles */
.pricing-section {
    background-color: var(--light-color);
    padding: 80px 0;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 0;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.pricing-features {
    text-align: left;
    margin: 20px 0;
    padding: 0 15px;
}

.pricing-features li {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.pricing-features li i {
    color: var(--secondary-color);
    margin-right: 8px;
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background-color: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.faq-icon {
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 20px;
    display: none;
    border-top: 1px solid var(--border-color);
    background-color: var(--light-color);
}

.faq-answer p {
    padding: 20px 0;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .price {
        font-size: 1.8rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}
/* Additional CSS for the network.html page */

/* Service Overview Section */
.service-overview {
    background-color: white;
    padding: 80px 0;
}

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

.overview-text p {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.overview-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    width: 100%;
}

/* Process Timeline */
.process-section {
    background-color: var(--light-color);
    padding: 80px 0;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

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

.process-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
}

.process-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 2;
}

.process-content {
    background-color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.process-content h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.process-content p {
    color: var(--text-dark);
    margin: 0;
}

/* Testimonial Slider Animation */
.testimonial {
    transition: opacity 0.5s ease;
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background-color: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.faq-icon {
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 20px;
    display: none;
    border-top: 1px solid var(--border-color);
    background-color: var(--light-color);
}

.faq-answer p {
    padding: 20px 0;
    margin: 0;
}

/* Specialized Solutions Section */
.specialized-solutions {
    background-color: white;
    padding: 80px 0;
}

/* Testimonial Section Styles */
.testimonials {
    background-color: var(--light-color);
    padding: 80px 0;
}

.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.prev-testimonial,
.next-testimonial {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.prev-testimonial:hover,
.next-testimonial:hover {
    color: var(--primary-dark);
}

.slider-dots {
    display: flex;
    gap: 8px;
    margin: 0 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
}

/* Responsive Design for Network Page */
@media (max-width: 992px) {
    .overview-content {
        grid-template-columns: 1fr;
    }
    
    .overview-image {
        order: -1;
    }
    
    .process-timeline::before {
        left: 15px;
    }
    
    .process-step {
        grid-template-columns: 40px 1fr;
    }
}

@media (max-width: 768px) {
    .process-content {
        padding: 15px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .process-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .process-timeline::before {
        left: 12px;
    }
    
    .process-step {
        grid-template-columns: 30px 1fr;
        gap: 15px;
    }
}
/* Additional CSS for the wordpress-development.html page */

/* WordPress Intro Section */
.wordpress-intro {
    background-color: white;
    padding: 80px 0;
}

.wordpress-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.wordpress-text p {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.wordpress-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    width: 100%;
}

/* WordPress One-Page Section */
.one-page-website {
    background-color: var(--light-color);
    padding: 80px 0;
}

.one-page-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.one-page-text h3 {
    margin-bottom: 20px;
    color: var(--dark-color);
    font-size: 1.8rem;
}

.one-page-text h4 {
    margin: 25px 0 15px;
    color: var(--dark-color);
    font-size: 1.3rem;
}

.one-page-text p {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.benefits-list {
    margin-bottom: 25px;
}

.benefits-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.benefits-list li i {
    color: var(--secondary-color);
    margin-right: 10px;
    margin-top: 4px;
}

.one-page-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    width: 100%;
}

/* Portfolio Grid Styles */
.wordpress-showcase {
    background-color: white;
    padding: 80px 0;
}

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

.portfolio-item {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

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

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(37, 99, 235, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.portfolio-link:hover {
    background-color: var(--primary-dark);
    color: white;
}

.portfolio-info {
    padding: 25px;
}

.portfolio-info h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
    font-size: 1.3rem;
}

.portfolio-info p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.portfolio-button {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.portfolio-button:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
}

/* Domain Tips Section */
.domain-tips {
    background-color: white;
    padding: 80px 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.tip-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

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

.tip-icon {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.tip-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.tip-card p {
    color: var(--text-dark);
}

/* Package Features List */
.package-features {
    text-align: left;
    margin: 20px 0;
    padding: 0 15px;
}

.package-features li {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.package-features li i {
    color: var(--secondary-color);
    margin-right: 8px;
}

/* Process Timeline for Wordpress */
.wordpress-process {
    background-color: var(--light-color);
    padding: 80px 0;
}

/* Responsive Design Adjustments */
@media (max-width: 992px) {
    .wordpress-content,
    .one-page-content {
        grid-template-columns: 1fr;
    }
    
    .wordpress-image,
    .one-page-image {
        order: -1;
        margin-bottom: 20px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
    
    .one-page-text h3 {
        font-size: 1.5rem;
    }
    
    .one-page-text h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .tip-card {
        padding: 20px 15px;
    }
}
/* CSS for Web Development Solutions Section */

.web-development-solutions {
    background-color: var(--light-color);
    padding: 80px 0;
}

.web-solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.web-solution-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.web-solution-icon {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 10px;
}

.web-solution-icon i {
    font-size: 3rem;
    color: var(--primary-color);
}

.web-solution-content h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
    font-size: 1.8rem;
}

.web-solution-content p {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.web-solution-content h4 {
    margin: 25px 0 15px;
    color: var(--dark-color);
    font-size: 1.2rem;
}

.web-solution-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
    list-style: disc;
}

.web-solution-content ul li {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.web-solution-content .btn {
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .web-solution-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .web-solution-icon {
        margin-bottom: 20px;
    }
    
    .web-solution-content ul {
        display: inline-block;
        text-align: left;
    }
}
/* Security Posture Assessment Styles */
.security-assess-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/api/placeholder/1600/400') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.assessment-intro {
    background-color: white;
    padding: 80px 0;
}

.assessment-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.assessment-intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

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

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-text h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.benefit-text p {
    color: var(--text-light);
}

.assessment-start {
    margin-top: 40px;
}

.assessment-form-section {
    background-color: var(--light-color);
    padding: 80px 0;
    min-height: 600px;
}

.assessment-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 40px;
    display: none;
}

.progress-bar-container {
    margin-bottom: 30px;
}

.progress-bar {
    height: 8px;
    background-color: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress {
    height: 100%;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.progress-text {
    text-align: right;
    font-size: 0.9rem;
    color: var(--text-light);
}

.question-slide {
    display: none;
}

.question-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.question-content {
    margin-bottom: 30px;
}

.question-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.answer-options {
    margin-top: 20px;
}

.answer-option {
    display: block;
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.answer-option:hover {
    background-color: var(--light-color);
}

.answer-option input[type="radio"] {
    margin-right: 10px;
}

.answer-option.selected {
    border-color: var(--primary-color);
    background-color: rgba(37, 99, 235, 0.1);
}

.question-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    padding: 12px 24px;
    transition: var(--transition);
}

.text-btn:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.assessment-results {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 40px;
    display: none;
}

.results-header {
    text-align: center;
    margin-bottom: 40px;
}

.results-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.score-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.score-gauge {
    width: 200px;
    margin-right: 40px;
}

.gauge-outer {
    position: relative;
    width: 200px;
    height: 200px;
}

.gauge-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 100px;
    background-color: #e2e8f0;
    border-radius: 200px 200px 0 0;
    overflow: hidden;
}

.gauge-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 100px;
    background: linear-gradient(to right, #f97316, #f59e0b, #10b981);
    border-radius: 200px 200px 0 0;
    transform-origin: bottom center;
    transform: rotate(0deg);
    transition: transform 1s ease;
}

.gauge-center {
    position: absolute;
    top: 100px;
    left: 0;
    width: 200px;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.score-max {
    font-size: 1.5rem;
    color: var(--text-light);
}

.score-details {
    flex: 1;
}

.score-rating {
    margin-bottom: 20px;
}

.rating-label {
    display: block;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 5px;
}

.rating-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
}

.results-breakdown {
    margin-bottom: 40px;
}

.results-breakdown h3,
.key-recommendations h3,
.next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.domain-scores {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.domain-score {
    margin-bottom: 15px;
}

.domain-name {
    margin-bottom: 5px;
    font-weight: 600;
}

.score-bar-container {
    display: flex;
    align-items: center;
}

.score-bar {
    flex: 1;
    height: 10px;
    background-color: #e2e8f0;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    margin-right: 10px;
}

.score-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: var(--primary-color);
    width: 0;
    transition: width 1s ease;
}

.score-value {
    font-size: 0.9rem;
    color: var(--text-light);
    min-width: 40px;
    text-align: right;
}

.recommendations-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.recommendation {
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
}

.recommendation-critical {
    background-color: rgba(239, 68, 68, 0.1);
    border-left: 4px solid #ef4444;
}

.recommendation-high {
    background-color: rgba(245, 158, 11, 0.1);
    border-left: 4px solid #f59e0b;
}

.recommendation-medium {
    background-color: rgba(16, 185, 129, 0.1);
    border-left: 4px solid #10b981;
}

.recommendation-icon {
    font-size: 1.5rem;
    margin-right: 15px;
}

.recommendation-critical .recommendation-icon {
    color: #ef4444;
}

.recommendation-high .recommendation-icon {
    color: #f59e0b;
}

.recommendation-medium .recommendation-icon {
    color: #10b981;
}

.recommendation-content h4 {
    margin-bottom: 10px;
}

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

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

.next-steps-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Maturity Level Badge */
.rating-value {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 1.2rem;
}

.level-1 {
    background-color: rgba(239, 68, 68, 0.2);
    color: #dc2626;
}

.level-2 {
    background-color: rgba(245, 158, 11, 0.2);
    color: #d97706;
}

.level-3 {
    background-color: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.level-4 {
    background-color: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .score-container {
        flex-direction: column;
    }
    
    .score-gauge {
        margin-right: 0;
        margin-bottom: 30px;
    }
    
    .score-details {
        text-align: center;
    }
    
    .assessment-form,
    .assessment-results {
        padding: 20px;
    }
    
    .recommendations-container {
        grid-template-columns: 1fr;
    }
    
    .next-steps-actions {
        flex-direction: column;
    }
    
    .next-steps-actions .btn {
        width: 100%;
    }
}

/* Animation for Score Display */
@keyframes fillGauge {
    from { transform: rotate(0deg); }
    to { transform: rotate(var(--rotation-degree)); }
}

/* Assessment Form Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.domain-score {
    animation: slideIn 0.5s ease forwards;
    opacity: 0;
}

.domain-score:nth-child(1) { animation-delay: 0.1s; }
.domain-score:nth-child(2) { animation-delay: 0.2s; }
.domain-score:nth-child(3) { animation-delay: 0.3s; }
.domain-score:nth-child(4) { animation-delay: 0.4s; }
.domain-score:nth-child(5) { animation-delay: 0.5s; }
.domain-score:nth-child(6) { animation-delay: 0.6s; }
.domain-score:nth-child(7) { animation-delay: 0.7s; }

.recommendation {
    animation: slideIn 0.5s ease forwards;
    opacity: 0;
}

.recommendation:nth-child(1) { animation-delay: 0.8s; }
.recommendation:nth-child(2) { animation-delay: 0.9s; }
.recommendation:nth-child(3) { animation-delay: 1s; }
