/* ===== Managed Services Page Styles ===== */
.managed-services-page {
    font-family: 'Segoe UI', sans-serif;
    color: #1d3557;
    background: #ffffff;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* text to the left */
    text-align: left;
    color: white;
    padding: 0 8%; /* spacing from edge */
    overflow: hidden;
}

/* Background video */
.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(50%) contrast(110%) saturate(120%);
}

/* Overlay for contrast */
.managed-services-page .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 37, 63, 0.85), rgba(0, 118, 255, 0.55));
    z-index: -1;
}

/* Hero content with accent line */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;       /* keep block neat */
    margin-left: 80px;      /* adjust how far from edge */
    text-align: left;
}

/* Glowing vertical accent line */
.hero-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: -20px;  /* closer to text block */
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #00e1ff, #007bff);
    box-shadow: 0 0 15px rgba(0,225,255,0.7);
    border-radius: 2px;
    animation: glowLine 3s ease-in-out infinite alternate;
}
/* Headline */
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    background: linear-gradient(90deg, #00e1ff, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 225, 255, 0.6);
    margin-bottom: 15px;
}

/* Subheadline */
.hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #00e1ff;
    letter-spacing: 1px;
    text-shadow: 0 0 12px rgba(0, 225, 255, 0.6);
}

/* Paragraph */
.hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #dce3ec;
    margin-bottom: 20px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);    
}

/* CTA Buttons */
.hero .btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero .btn-primary {
    background: linear-gradient(90deg, #007bff, #00e1ff);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,123,255,0.4);
}

.hero .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,123,255,0.6);
}

.hero .btn-outline {
    border: 2px solid #00e1ff;
    color: #00e1ff;
    margin-left: 12px;
}

.hero .btn-outline:hover {
    background: #00e1ff;
    color: #fff;
}

/* ===== Info Card Section ===== */
.content-section {
    padding: 60px 20px;
}

.info-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 40px;
    border: 1px solid #e0e0e0;
}

.info-card h2 {
    margin-bottom: 10px;
    font-size: 1.8rem;
    color: #1d3557;
}

.info-card p {
    color: #4a4a4a;
}

/* ===== Features Grid ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.feature-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.feature-box .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #007bff;
}

.feature-box h3 {
    margin-bottom: 8px;
    color: #1d3557;
    font-size: 1.2rem;
    font-weight: 600;
}

.feature-box p {
    color: #4a4a4a;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.hero-content h1,
.hero-content h2,
.hero-content p {
    text-align: left;
}