
/**************************************/
/************ Services CSS ************/
/**************************************/
.service {
    background: #ffffff;
    padding: 90px 0 60px 0;
    text-align: center;
}

.service .service-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.service .service-icon {
    position: relative;
    width: 100%;
    padding: 30px 15px;
    background: #4F84C4;
}

.service .service-icon i {
    font-size: 90px;
    line-height: 0;
    color: #ffffff;
}

.service .service-detail {
    position: relative;
    width: 100%;
    padding: 30px 15px;
    background: #f2f2f2;
}

.service .service-detail h4,
.service .service-detail h4 a {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.service .service-detail p {
    margin: 0;
}

/**************************************/
/************ ourservices CSS ***********/
/**************************************/
.ourservices {
    position: relative;
    padding: 90px 0 60px 0;
    background: #f2f2f2;
}

.ourservices .ourservices-item {
    margin-bottom: 30px;
    overflow: hidden;
}

.ourservices .ourservices-item .ourservices-img {
    position: relative;
    background: #000000;
    overflow: hidden;

}

.ourservices .ourservices-item .link-preview,
.ourservices .ourservices-item .link-details {
    position: absolute;
    display: inline-block;
    padding: 5px 0;
    line-height: 1;
    text-align: center;
    width: 45px;
    height: 35px;
    background: #4F84C4;
    border: 1px solid #ffffff;
    transition: 0.3s;
    opacity: 0;
}

.ourservices .ourservices-item .link-preview i,
.ourservices .ourservices-item .link-details i {
    font-size: 22px;
    color: #ffffff;
}

.ourservices .ourservices-item .link-preview:hover,
.ourservices .ourservices-item .link-details:hover {
    background: #ffffff;
    border: 1px solid #4F84C4;
}

.ourservices .ourservices-item .link-preview:hover i,
.ourservices .ourservices-item .link-details:hover i {
    color: #353535;
}

.ourservices .ourservices-item .link-preview {
    left: 0;
    top: calc(50% - 18px);
}

.ourservices .ourservices-item .link-details {
    right: 0;
    top: calc(50% - 18px);
}

.ourservices .ourservices-item:hover .link-preview {
    opacity: 1;
    left: calc(50% - 50px);
}

.ourservices .ourservices-item:hover .link-details {
    opacity: 1;
    right: calc(50% - 50px);
}

.ourservices .ourservices-item .ourservices-info {
    position: relative;
    width: 100%;
    padding: 30px 15px;
    text-align: center;
    background: #ffffff;
}

.ourservices .ourservices-item .ourservices-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ourservices .ourservices-item .ourservices-info p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
}


.services-page-banner {
    background: #0f172a;
    color: white;
    padding: 70px 0;
}

.services-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.services-banner-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.services-banner-content img {
    width: 500px;
    max-width: 100%;
    border-radius: 12px;
}

.services-banner-text h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.services-banner-text p {
    font-size: 18px;
    line-height: 1.8;
}

.services-section {
    padding: 60px 0;
}

.services-section h2 {
    color: #0f172a;
    margin-bottom: 20px;
    font-size: 34px;
}

.services-section p {
    line-height: 1.8;
    color: #555;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.services-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.services-card h3 {
    color: #1d4ed8;
    margin-bottom: 15px;
    font-size: 25px
}

.services-card ul {
    padding-left: 25px;
}

.services-card li {
    margin-bottom: 10px;
}

.services-feature-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 30px;
}

.services-feature-row img {
    width: 450px;
    border-radius: 12px;
}

.services-feature-content {
    flex: 1;
}

.services-feature-content li{
    margin-left: 40px
}

.services-cta {
    background: white;
    color: black;
    text-align: center;
    padding: 70px 20px;
}

.services-cta h2 {
    margin-bottom: 15px;
    color: black;
}
.services-cta p {
     color: black;
}

.services-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 30px;
    background: blue;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
}

/*
To open the image in full screen along with a close button
*/
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}

.modal-content {
    width: 95vw;
    max-width: 1800px;
    height: auto;
    max-height: 95vh;
    object-fit: contain;
}

.close-btn {
    position: fixed;
    top: 15px;
    right: 25px;
    color: #fff;
    font-size: 45px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.close-btn:hover {
    color: #ccc;
}

.clickable-image {
    cursor: pointer;
}

@media(max-width:768px) {

    .services-banner-content,
    .services-feature-row {
        flex-direction: column;
    }

}