﻿.parallax-section {
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed; /* Creates the scrolling parallax effect */
    overflow: hidden;
    padding: 100px 0;
}

    .parallax-section .container {
        position: relative;
        z-index: 2;
    }

    .parallax-section::after {
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        content: "";
        position: absolute;
        background: rgba(1, 1, 3, 0.6);
    }

.parallax-section2 {
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed; /* Creates the scrolling parallax effect */
    overflow: hidden;
    padding: 100px 0;
}

    .parallax-section2 .container {
        position: relative;
        z-index: 2;
    }

    .parallax-section2::after {
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        content: "";
        position: absolute;
    }

/* Specific Background Images for Each Section */
.bg-finance {
    background-image: url('/Images/cov1.jpg');
}

.bg-fs {
    background-image: url('/Images/cov2.jpg');
}

.bg-hr {
    background-image: url('/Images/cov3.jpg');
}

.bg-legal {
    background-image: url('/Images/cov4.jpg');
}

.bg-sales {
    background-image: url('/Images/serv7.jpg');
}

.bg-tech {
    background-image: url('/Images/cov6.jpg');
}

/* Typography */
.section-title {
    color: white;
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sub-category-title {
    color: #7dd1dd;
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(125, 209, 221, 0.3);
    padding-bottom: 10px;
}

.section-text {
    color: rgba(255, 255, 255, 1);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 50px;
    font-weight: bold;
}

/* Animated Checkbox List Styling */
.coverage-list-container {
    margin-top: 30px;
}

.coverage-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 Column layout */
    gap: 20px 40px;
}

    .coverage-list li {
        position: relative;
        padding-left: 45px;
        color: #ffffff;
        font-size: 1.1rem;
        cursor: default;
        transition: transform 0.4s ease;
        display: flex;
        align-items: center;
        font-weight: bold;
        min-height: 30px;
    }

        /* The Checkbox Square */
        .coverage-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 24px;
            height: 24px;
            background-color: rgba(212, 175, 55, 0.1);
            border: 2px solid #7dd1dd;
            border-radius: 5px;
            transition: all 0.4s ease;
        }

        /* The Checkmark Icon */
        .coverage-list li::after {
            content: '';
            position: absolute;
            left: 9px;
            top: 50%;
            width: 6px;
            height: 12px;
            border: solid #7dd1dd;
            border-width: 0 2px 2px 0;
            transform: translateY(-65%) rotate(45deg);
            transition: all 0.4s ease;
        }

        /* Hover Animations */
        .coverage-list li:hover {
            transform: translateX(10px);
        }

            .coverage-list li:hover::before {
                background-color: #7dd1dd;
                box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
            }

            .coverage-list li:hover::after {
                border-color: #ffffff;
            }

            .margiTop{
                margin-bottom:50px!important;
            }

/* Responsive */
@media (max-width: 991px) {
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .coverage-list {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .h22 {
       font-size:20px!important;
    }
    .coverage-list li{
        font-size:1rem!important;
    }
    .sub-category-title{
        font-size:1.1rem!important;
    }
}
.tp-footer-9-top-wrap {
    margin-top: 0 !important;
}

.parallax-section {
    scroll-margin-top: 90px; /* Prevents the sticky header from covering the top of the div */
}

.section-text p {
    color:white!important;
}