/* Hero Header Style */
.section-title {
    font-weight: 700;
    color: #0056b3;
    /* Primary Blue from logo */
    position: relative;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 3px;
    background: #00a8e8;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Verticals Card Design */
.vertical-card {
    background: #fff;
    border: none;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.vertical-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 10px rgba(0, 86, 179, 0.15);
    background: linear-gradient(145deg, #ffffff, #e6f2ff);
}

.vertical-card i {
    font-size: 3rem;
    color: #0056b3;
    margin-bottom: 1.5rem;
}

.vertical-card h5 {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Transforming Spaces Section */
.spaces-wrapper {
    background: #002d5b;
    color: white;
    border-radius: 30px;
    padding: 60px 40px;
    margin-top: 5rem;
}

.space-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.space-item i {
    color: #00a8e8;
    margin-right: 12px;
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .spaces-wrapper {
        padding: 30px 20px;
    }
}


/* +++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* Verticals Page Specific Styles */
.verticals-hero {
    background: linear-gradient(135deg, #0077bd 0%, #005a9e 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.verticals-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.verticals-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.verticals-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
}

/* Vertical Cards */
.vertical-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    cursor: pointer;
}

.vertical-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0077bd, #00a8e8);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.vertical-card:hover::before {
    transform: scaleX(1);
}

.vertical-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 119, 189, 0.5);
}

.vertical-icon-wrapper {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.vertical-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vertical-icon-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 119, 189, 0.1), transparent);
    transition: all 0.6s ease;
}

.vertical-card:hover .vertical-icon-wrapper::after {
    animation: shine 1.5s ease-in-out;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.vertical-icon {
    font-size: 5rem;
    color: #0077bd;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.vertical-card:hover .vertical-icon {
    transform: scale(1.15) rotate(5deg);
    color: #005a9e;
}

.vertical-content {
    padding: 30px 25px;
    text-align: center;
}

.vertical-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #242424;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.vertical-card:hover .vertical-content h3 {
    color: #0077bd;
}

.vertical-content p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.vertical-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #0077bd, #005a9e);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.vertical-card:hover .vertical-badge {
    opacity: 1;
    transform: translateY(0);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #242424 0%, #1a1a1a 100%);
    padding: 80px 0;
    position: relative;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0077bd;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* CTA Section */
.cta-section {
    background-image: url('./images/Banner\ 3.png');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-btn {
    padding: 18px 50px;
    background: white;
    color: #0077bd;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
    color: #005a9e;
}

/* Responsive */
@media (max-width: 768px) {
    .verticals-hero h1 {
        font-size: 2.5rem;
    }

    .verticals-hero p {
        font-size: 1.1rem;
    }

    .vertical-icon {
        font-size: 4rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++ */