/* Cheema Digital Section Enhanced Styling */
.about-cheema-digital {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.about-cheema-digital::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(26, 35, 126, 0.05);
    border-radius: 50%;
    transform: translate(150px, -150px);
    z-index: 0;
}

.about-cheema-digital::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 250px;
    height: 250px;
    background: rgba(0, 230, 118, 0.05);
    border-radius: 50%;
    transform: translate(-100px, 100px);
    z-index: 0;
}

/* Logo styling */
.digital-logo-wrapper {
    position: relative;
    display: inline-block;
    padding: 15px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: rotate(-2deg);
    transition: transform 0.5s ease;
}

.digital-logo-wrapper:hover {
    transform: rotate(0deg) scale(1.05);
}

.digital-logo-wrapper::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 30%;
    height: 30%;
    background: rgba(0, 230, 118, 0.1);
    border-radius: 50%;
    z-index: -1;
}

/* Heading styling */
.about-cheema-digital h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a237e;
    position: relative;
}

.about-cheema-digital h2 .highlight {
    color: #00e676;
    position: relative;
}

.about-cheema-digital h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #00e676;
    border-radius: 2px;
}

.about-cheema-digital p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}

/* Contact details styling */
.contact-details {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1;
    border-left: 4px solid #00e676;
}

.contact-details p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-details i {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 230, 118, 0.1);
    border-radius: 50%;
    margin-right: 15px;
    color: #00e676;
    transition: transform 0.3s ease;
}

.contact-details p:hover i {
    transform: scale(1.2);
}

.contact-details a {
    color: #1a237e;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-details a:hover {
    color: #00e676;
}

/* Service boxes styling */
.service-box {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-bottom: 4px solid transparent;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.03) 0%, rgba(0, 230, 118, 0.03) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-bottom: 4px solid #00e676;
}

.service-box:hover::before {
    opacity: 1;
}

.service-box i {
    font-size: 2.5rem;
    color: #1a237e;
    background: linear-gradient(135deg, #1a237e 0%, #00e676 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.4s ease;
}

.service-box:hover i {
    transform: scale(1.1) rotate(5deg);
}

.service-box h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.service-box h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #00e676;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.service-box:hover h4::after {
    width: 60px;
}

.service-box p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Copyright text styling */
.copyright-text {
    font-size: 0.95rem;
    color: #666;
    margin-top: 30px;
    padding: 15px;
    background: rgba(255,255,255,0.7);
    border-radius: 30px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .about-cheema-digital .col-lg-5 {
        margin-bottom: 40px;
        text-align: center;
    }
    
    .contact-details {
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 767px) {
    .about-cheema-digital {
        padding: 60px 0;
    }
    
    .about-cheema-digital h2 {
        font-size: 2rem;
    }
    
    .service-box {
        margin-bottom: 20px;
    }
}