/* Custom styles */
:root {
    --lightning-yellow: #FFD700;
    --text-dark: #2D3748;
    --background: #FFFFFF;
    --card-bg: #F8FAFC;
    --border-color: #E2E8F0;
}

body {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background);
    margin: 0;
    padding: 0;
}

/* Navbar Styles */
.navbar {
    background-color: white;
    padding: 1.5rem 0;
    border-bottom: 1px solid #f1f1f1;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 600;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Minimalist Lightning Bolt - SVG based */
.lightning-bolt {
    width: 24px;
    height: 45px;
    background-color: var(--lightning-yellow);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 45'%3E%3Cpath d='M14,0 L0,28 L10,28 L0,45 L24,17 L14,17 L24,0 L14,0 Z'/%3E%3C/svg%3E") no-repeat center / contain;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 45'%3E%3Cpath d='M14,0 L0,28 L10,28 L0,45 L24,17 L14,17 L24,0 L14,0 Z'/%3E%3C/svg%3E") no-repeat center / contain;
}

.brand-text {
    color: var(--text-dark);
    letter-spacing: -0.5px;
    font-weight: 700;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 15px;
    font-size: 0.95rem;
}

/* Hero Section */
.hero-section {
    padding: 6rem 0 2rem 0;
    min-height: calc(100vh - 90px);
    display: block;
    position: relative;
}

body .hero-section {
    padding-top: 3rem;
    padding-bottom: 2rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

.highlight {
    color: var(--lightning-yellow);
}

.lead {
    font-size: 1.25rem;
    color: #4A5568;
    margin-bottom: 2.5rem;
    max-width: 500px;
    font-weight: 400;
}

.custom-btn {
    background-color: var(--text-dark);
    border: none;
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    display: inline-block;
    text-decoration: none;
}

.custom-btn:hover {
    background-color: #1A202C;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

/* Large Minimalist Lightning Bolt */
.large-lightning-bolt {
    width: 120px;
    height: 225px;
    background-color: var(--lightning-yellow);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 45'%3E%3Cpath d='M14,0 L0,28 L10,28 L0,45 L24,17 L14,17 L24,0 L14,0 Z'/%3E%3C/svg%3E") no-repeat center / contain;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 45'%3E%3Cpath d='M14,0 L0,28 L10,28 L0,45 L24,17 L14,17 L24,0 L14,0 Z'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* Add smooth scrolling to the entire page */
html {
    scroll-behavior: smooth;
}

/* Add scroll margin to account for fixed navbar */
#solutions {
    scroll-margin-top: 60px; /* Reduced from 100px to eliminate the small gap */
}

#services {
    scroll-margin-top: 60px; /* Reduced from 100px to eliminate the small gap */
}

/* Solutions Section */
.solutions-section {
    padding: 6rem 0;
    background-color: #F8FAFC;
}

.section-header {
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #4A5568;
    max-width: 600px;
    margin: 0 auto;
}

.solution-card {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.solution-icon {
    margin-bottom: 1.5rem;
    color: var(--lightning-yellow);
}

.solution-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.solution-card p {
    color: #4A5568;
    margin-bottom: 1.5rem;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.solution-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.solution-features li:before {
    content: "✓";
    color: var(--lightning-yellow);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.solution-link {
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    position: relative;
}

.solution-link:after {
    content: "→";
    margin-left: 5px;
    transition: transform 0.2s ease;
    display: inline-block;
}

.solution-link:hover:after {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 4rem 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    .lead {
        font-size: 1.1rem;
        margin: 0 auto 2rem auto;
    }

    .hero-image {
        margin-top: 3rem;
        height: 250px;
    }

    .large-lightning-bolt {
        width: 80px;
        height: 150px;
    }
    
    .solutions-section {
        padding: 4rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
} 

/* Updated styles for an even slimmer Cloud Infrastructure animation */

/* Container for both animations */
.animations-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

/* Lightning bolt container - BIGGER (unchanged) */
.animated-lightning-container {
    position: relative;
    width: 180px;
    height: 320px;
    margin-right: 20px;
    flex-shrink: 0;
}

.animated-lightning {
    position: absolute;
    width: 140px;
    height: 260px;
    background-color: var(--lightning-yellow);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 45'%3E%3Cpath d='M14,0 L0,28 L10,28 L0,45 L24,17 L14,17 L24,0 L14,0 Z'/%3E%3C/svg%3E") no-repeat center / contain;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 45'%3E%3Cpath d='M14,0 L0,28 L10,28 L0,45 L24,17 L14,17 L24,0 L14,0 Z'/%3E%3C/svg%3E") no-repeat center / contain;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: flash 4s infinite;
    z-index: 2;
}

.glow {
    position: absolute;
    width: 160px;
    height: 280px;
    background-color: rgba(255, 215, 0, 0.3);
    filter: blur(25px);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: glow 4s infinite;
    z-index: 1;
}

.particles {
    position: absolute;
    width: 180px;
    height: 320px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

/* Cloud infrastructure visualization - MUCH SLIMMER */
.cloud-infrastructure {
    position: relative;
    width: calc(100% - 220px); /* Even less width */
    height: 240px; /* Reduced height */
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    background-color: #fafafa;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* Server Rack - Even Slimmer */
.server-rack {
    position: absolute;
    left: 6%;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;  /* Further reduced */
    height: 140px; /* Further reduced */
    background-color: #2D3748;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 6px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.server {
    width: 24px;  /* Further reduced */
    height: 20px; /* Further reduced */
    margin: 3px auto;
    background-color: #4A5568;
    border-radius: 2px;
    position: relative;
}

.server:after {
    content: '';
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--lightning-yellow);
    animation: serverBlink 3s infinite;
}

@keyframes serverBlink {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Connection Lines - Slimmer */
.connection-lines {
    position: absolute;
    left: 18%;
    top: 0;
    width: 38%;
    height: 100%;
}

.line {
    position: absolute;
    height: 1px; /* Thinner lines */
    background-color: #A0AEC0;
    left: 0;
    right: 0;
}

.line-1 {
    top: 30%;
    animation: lineGlow 4s infinite;
}

.line-2 {
    top: 50%;
    animation: lineGlow 4s infinite 1s;
}

.line-3 {
    top: 70%;
    animation: lineGlow 4s infinite 2s;
}

@keyframes lineGlow {
    0%, 100% { 
        background-color: #A0AEC0; 
    }
    50% { 
        background-color: var(--lightning-yellow);
        box-shadow: 0 0 8px var(--lightning-yellow);
    }
}

/* Cloud Container - Slimmer */
.cloud-container {
    position: absolute;
    right: 34%;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;  /* Further reduced */
    height: 40px; /* Further reduced */
}

.cloud {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #E2E8F0;
    border-radius: 20px;
    animation: cloudPulse 5s infinite;
}

.cloud:before {
    content: '';
    position: absolute;
    top: -15px;
    left: 18px;
    width: 35px;
    height: 35px;
    background-color: #E2E8F0;
    border-radius: 50%;
}

.cloud:after {
    content: '';
    position: absolute;
    top: -8px;
    left: 8px;
    width: 20px;
    height: 20px;
    background-color: #E2E8F0;
    border-radius: 50%;
}

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

/* Data Points - Smaller */
.data-point {
    position: absolute;
    width: 5px;  /* Smaller dots */
    height: 5px; /* Smaller dots */
    background-color: var(--lightning-yellow);
    border-radius: 50%;
    opacity: 0;
}

.data-1 {
    top: 20%;
    left: 30%;
    animation: dataMove 3s infinite;
}

.data-2 {
    top: 40%;
    left: 70%;
    animation: dataMove 3s infinite 0.5s;
}

.data-3 {
    top: 60%;
    left: 40%;
    animation: dataMove 3s infinite 1s;
}

.data-4 {
    top: 80%;
    left: 60%;
    animation: dataMove 3s infinite 1.5s;
}

@keyframes dataMove {
    0% {
        transform: translateX(0px);
        opacity: 1;
    }
    100% {
        transform: translateX(20px);
        opacity: 0;
    }
}

/* Devices - Even Slimmer */
.devices {
    position: absolute;
    right: 6%;
    top: 0;
    height: 100%;
    width: 24px; /* Further reduced */
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 30px 0;
}

.device {
    width: 24px; /* Further reduced */
    height: 24px; /* Further reduced */
    background-color: #CBD5E0;
    border-radius: 3px;
    position: relative;
}

.device:after {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    width: 20px;
    height: 1px; /* Thinner connection */
    background-color: #A0AEC0;
}

.device-1 {
    animation: devicePulse 4s infinite;
}

.device-2 {
    animation: devicePulse 4s infinite 1.3s;
}

.device-3 {
    animation: devicePulse 4s infinite 2.6s;
}

@keyframes devicePulse {
    0%, 100% { 
        background-color: #CBD5E0; 
    }
    50% { 
        background-color: #A0AEC0;
        box-shadow: 0 0 8px rgba(0,0,0,0.1);
    }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .animated-lightning-container {
        width: 150px;
        height: 280px;
    }
    
    .animated-lightning {
        width: 120px;
        height: 220px;
    }
    
    .glow {
        width: 140px;
        height: 240px;
    }
    
    .particles {
        width: 150px;
        height: 280px;
    }
    
    .cloud-infrastructure {
        width: calc(100% - 180px);
        height: 220px;
    }
}

@media (max-width: 992px) {
    .animations-container {
        flex-direction: column;
        align-items: center;
    }
    
    .animated-lightning-container {
        margin-right: 0;
        margin-bottom: 30px;
    }
    
    .cloud-infrastructure {
        width: 80%; /* Make it narrower on medium screens */
        height: 200px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .animated-lightning-container {
        width: 120px;
        height: 220px;
    }
    
    .animated-lightning {
        width: 100px;
        height: 180px;
    }
    
    .glow {
        width: 120px;
        height: 200px;
    }
    
    .particles {
        width: 120px;
        height: 220px;
    }
    
    .cloud-infrastructure {
        width: 90%;
        height: 160px;
    }
    
    .server-rack {
        width: 24px;
        height: 100px;
    }
    
    .server {
        width: 20px;
        height: 16px;
    }
    
    .cloud-container {
        width: 60px;
        height: 40px;
    }
} 

/* Left side content */
.hero-content {
    width: 40%;
    position: relative;
    z-index: 2;
}

/* Lightning bolt positioned absolutely */
.hero-lightning {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Target common grey box implementations and make them white */
.container-fluid,
.jumbotron,
.bg-light,
.bg-secondary,
.bg-gray,
.bg-grey,
section,
.card,
.solutions-section + div,
#services + div,
[style*="background-color: #f"],
[style*="background-color: #e"],
[style*="background-color: #d"],
[style*="background-color: rgb(2"],
[style*="background-color: rgba(2"],
[style*="background-color: gray"],
[style*="background-color: grey"],
[class*="gray-bg"],
[class*="grey-bg"] {
    background-color: white !important;
    background: white !important;
    box-shadow: none !important;
}

/* Remove any borders that might be creating the grey appearance */
.border,
.border-secondary,
.border-light,
[class*="border-gray"],
[class*="border-grey"] {
    border-color: transparent !important;
} 

/* Contact CTA Blue Box */
.contact-cta-section {
    padding: 2rem 0;
    margin: 2rem 0;
}

.blue-box {
    background-color: #1e2a3a; /* Dark blue/navy color from the image */
    background: linear-gradient(135deg, #1e2a3a, #141e2b); /* Gradient with slightly darker shade */
    color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(30, 42, 58, 0.3);
}

.blue-box h2 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.blue-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.blue-box .custom-btn.btn-light {
    background-color: white;
    color: #1e2a3a; /* Match the dark blue */
    border: 2px solid white;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blue-box .custom-btn.btn-light:hover {
    background-color: transparent;
    color: white;
}

/* Contact Page Styles */
.contact-form-container {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    /* margin-top: 2rem; */
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.75rem;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--lightning-yellow);
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

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

.contact-info-container {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    height: 100%;
}

.contact-info-section h3,
.support-hours h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #F8FAFC;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.contact-item:hover {
    background-color: #F1F5F9;
    transform: translateY(-2px);
}

.contact-icon {
    color: var(--lightning-yellow);
    margin-right: 1rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-details p {
    margin-bottom: 0.25rem;
    color: #4A5568;
    font-size: 0.95rem;
}

.support-hours {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #E2E8F0;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item .day {
    font-weight: 500;
    color: var(--text-dark);
}

.hours-item .time {
    font-weight: 600;
    color: var(--lightning-yellow);
}

.contact-methods-section {
    padding: 6rem 0;
    background-color: #F8FAFC;
}

/* Active nav link styling */
.nav-link.active {
    color: var(--lightning-yellow) !important;
    font-weight: 600;
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .contact-info-container {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .contact-item {
        padding: 0.75rem;
    }
    
    .hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .contact-methods-section {
        padding: 4rem 0;
    }
}

@media (max-width: 576px) {
    .contact-form-container {
        padding: 1rem;
    }
    
    .contact-info-container {
        padding: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

/* Form validation styles */
.contact-form .form-control.is-invalid,
.contact-form .form-select.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.contact-form .form-control.is-valid,
.contact-form .form-select.is-valid {
    border-color: #198754;
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
}

.alert {
    border-radius: 6px;
    border: none;
    margin-bottom: 1.5rem;
}

.alert-success {
    background-color: #d1e7dd;
    color: #0f5132;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.alert .btn-close {
    filter: none;
}

.alert-success .btn-close {
    filter: invert(27%) sepia(51%) saturate(2878%) hue-rotate(86deg) brightness(104%) contrast(97%);
}

.alert-danger .btn-close {
    filter: invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
}

/* Reduce top padding for hero-section only on contact page */
body .hero-section {
    padding-top: 3rem;
}

/* Center the lead text on the knowledge base page */
.knowledge-base-page .lead {
    max-width: none;
    width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Styles */
.footer {
    background-color: #1e2a3a;
    color: white;
    padding: 4rem 0 2rem 0;
    margin-top: 4rem;
}

.footer-brand .logo-container {
    margin-bottom: 1.5rem;
}

.footer-brand .brand-text {
    color: white;
    font-size: 1.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--lightning-yellow);
    color: #1e2a3a;
    transform: translateY(-2px);
}

.footer-heading {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    position: relative;
}

.footer-links a:hover {
    color: var(--lightning-yellow);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: var(--lightning-yellow);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem 0;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-heading {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .footer-bottom .row {
        text-align: center;
    }
    
    .copyright {
        margin-bottom: 1rem;
    }
}

/* Customer Feedback Section - Colorful Theme */
.customer-feedback-section {
    background: linear-gradient(90deg, #2193b0 0%, #6dd5ed 100%);
    padding: 4rem 0;
    border-radius: 16px;
    margin-bottom: 3rem;
    margin-top: 1rem;
}
.customer-feedback-section h2 {
    color: #ff6f61;
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: -1px;
}
.customer-feedback-section .lead {
    color: #374151;
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
}
.customer-feedback-section .card {
    background: linear-gradient(135deg, #fffbe6 0%, #e0f7fa 100%);
    border-radius: 14px;
    border: none;
    box-shadow: 0 4px 24px rgba(255, 111, 97, 0.08), 0 1.5px 6px rgba(0,0,0,0.04);
    transition: transform 0.2s;
}
.customer-feedback-section .card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(255, 111, 97, 0.16), 0 3px 12px rgba(0,0,0,0.08);
}
.customer-feedback-section .card-text {
    color: #374151;
    font-size: 1.1rem;
    font-style: italic;
}
.customer-feedback-section h6 {
    color: #ff6f61 !important;
    font-weight: 700;
}
.customer-feedback-section small {
    color: #0097a7 !important;
    font-weight: 500;
}
@media (max-width: 768px) {
    .customer-feedback-section {
        padding: 2rem 0;
    }
    .customer-feedback-section h2 {
        font-size: 2rem;
    }
    .customer-feedback-section .lead {
        font-size: 1.1rem;
    }
} 

/* Animated data dots between server and cloud */
.data-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 130px;
    height: 80px;
    pointer-events: none;
}
.data-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #FFD600;
    border-radius: 50%;
    opacity: 0.85;
    animation: data-move 1.7s linear infinite;
}
.data-dot:nth-child(1) { animation-delay: 0s; width: 7px; height: 7px; }
.data-dot:nth-child(2) { animation-delay: 0.3s; width: 6px; height: 6px; }
.data-dot:nth-child(3) { animation-delay: 0.6s; width: 6px; height: 6px; }
.data-dot:nth-child(4) { animation-delay: 0.9s; width: 7px; height: 7px; }
.data-dot:nth-child(5) { animation-delay: 1.2s; width: 4px; height: 4px; }
.data-dot:nth-child(6) { animation-delay: 1.5s; width: 5px; height: 5px; }
.data-dot:nth-child(7) { animation-delay: 0.7s; width: 3px; height: 3px; }
.data-dot:nth-child(8) { animation-delay: 1.1s; width: 4px; height: 4px; }

@keyframes data-move {
    0% {
        transform: translateX(0px);
        opacity: 1;
    }
    100% {
        transform: translateX(20px);
        opacity: 0;
    }
}

/* VPS Page Specific Styles */
.pricing-price {
    margin: 1.5rem 0;
    text-align: center;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--lightning-yellow);
    line-height: 1;
}

.pricing-price .period {
    font-size: 1rem;
    color: #4A5568;
    font-weight: 400;
}

.vps-hero-visual {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.server-stack {
    position: relative;
    width: 200px;
    height: 120px;
}

.server-layer {
    position: absolute;
    width: 100%;
    height: 30px;
    background: linear-gradient(135deg, #2D3748 0%, #4A5568 100%);
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.server-layer:nth-child(1) {
    top: 0;
    left: 0;
}

.server-layer:nth-child(2) {
    top: 35px;
    left: 10px;
    width: 90%;
}

.server-layer:nth-child(3) {
    top: 70px;
    left: 20px;
    width: 80%;
}

.server-layer::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 10px;
    width: 8px;
    height: 8px;
    background: var(--lightning-yellow);
    border-radius: 50%;
    animation: serverBlink 2s infinite;
}

.server-layer::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 10px;
    width: 8px;
    height: 8px;
    background: #48BB78;
    border-radius: 50%;
    animation: serverBlink 2s infinite 0.5s;
}

.vps-connections {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 200px;
}

.connection-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--lightning-yellow), transparent);
    animation: connectionPulse 3s infinite;
}

.connection-line:nth-child(1) {
    top: 20%;
    left: 0;
    width: 100%;
    animation-delay: 0s;
}

.connection-line:nth-child(2) {
    top: 50%;
    left: 0;
    width: 80%;
    animation-delay: 1s;
}

.connection-line:nth-child(3) {
    top: 80%;
    left: 0;
    width: 60%;
    animation-delay: 2s;
}

@keyframes connectionPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Responsive adjustments for VPS page */
@media (max-width: 768px) {
    .vps-hero-visual {
        height: 200px;
        margin-top: 2rem;
    }
    
    .server-stack {
        width: 150px;
        height: 90px;
    }
    
    .server-layer {
        height: 22px;
    }
    
    .server-layer:nth-child(2) {
        top: 26px;
    }
    
    .server-layer:nth-child(3) {
        top: 52px;
    }
    
    .pricing-price .amount {
        font-size: 2.5rem;
    }
} 

/* Technology Partner Auto-scroll Styles */
.tech-partner-section {
    background: #2D3748;
    border-radius: 18px;
    border: 1.5px solid #2D3748;
    box-shadow: 0 6px 32px rgba(45,55,72,0.13);
    margin-top: 3.5rem;
    margin-bottom: 0;
}
.tech-partner-section h2 {
    color: #fff;
}
.tech-partner-scroll {
    overflow: hidden;
    position: relative;
    width: 100%;
    background: linear-gradient(90deg, #2D3748 0%, #4A5568 100%);
    border-radius: 12px;
    padding: 18px 0;
}
.tech-partner-track {
    display: flex;
    width: max-content;
    animation: tech-partner-scroll-left 45s linear infinite;
}
.tech-partner-item {
    background: #F8FAFC;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin: 0 28px;
    padding: 18px 44px 18px 28px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2D3748;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #e2e8f0;
    position: relative;
}
.tech-partner-item:hover {
    transform: translateY(-7px) scale(1.04);
    box-shadow: 0 8px 24px rgba(45,55,72,0.18);
    z-index: 2;
}
.tech-partner-logo {
    width: 32px;
    height: 32px;
    background: #FFD70033;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-size: 1.5rem;
}
@keyframes tech-partner-scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
    .tech-partner-item {
        min-width: 120px;
        padding: 12px 20px 12px 12px;
        font-size: 1rem;
    }
    .tech-partner-logo {
        width: 22px;
        height: 22px;
        font-size: 1rem;
        margin-right: 8px;
    }
} 

.customer-feedback-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}
.customer-feedback-card {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(45,55,72,0.06);
    padding: 1rem 1rem 0.8rem 1rem;
    min-width: 180px;
    max-width: 180px;
    width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: none;
}
.customer-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #F8FAFC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(45,55,72,0.07);
}
.customer-feedback-text {
    font-size: 0.98rem;
    color: #2D3748;
    margin-bottom: 1.1rem;
    font-weight: 500;
    font-style: italic;
}
.customer-name {
    font-size: 1rem;
    color: #4A5568;
    font-weight: 600;
}
@media (max-width: 768px) {
    .customer-feedback-card {
        min-width: 130px;
        max-width: 100%;
        width: 130px;
        padding: 0.7rem 0.5rem 0.5rem 0.5rem;
    }
    .customer-avatar {
        display: none;
    }
} 

.customer-feedback-scroll {
    overflow: hidden;
    position: relative;
    width: 100%;
    background: transparent;
    border-radius: 12px;
    padding: 18px 0;
}
.customer-feedback-track {
    display: flex;
    width: max-content;
    animation: customer-feedback-scroll-left 60s linear infinite;
    align-items: stretch;
}
@keyframes customer-feedback-scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.customer-feedback-card {
    margin: 0 24px;
    flex: 0 0 320px;
}
@media (max-width: 768px) {
    .customer-feedback-card {
        flex: 0 0 220px;
        margin: 0 10px;
    }
} 