/* ===== SERVICES SECTION CSS ===== */
.services {
    padding: 120px 0;
    position: relative;
    background-color: #161623;
    overflow: hidden;
}

.services .section-header {
    position: relative;
    z-index: 1;
}

.services .section-subtitle {
    display: inline-block;
    background: linear-gradient(90deg, rgba(126, 211, 33, 0.2) 0%, rgba(154, 122, 249, 0.2) 100%);
    color: #78e57e;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 15px;
    position: relative;
    text-align: left;
}

.services .section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    text-align: left;
    color: var(--text-heading, #ffffff);
}

.services .section-description,
.services .services-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-body, rgba(255, 255, 255, 0.8));
    max-width: 65%;
    text-align: left;
}

.services .gradient-text {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    font-weight: 800;
}

.section-header .title-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(135deg, #7ED321, #9c27b0);
    margin-top: 5px;
}

.gold-gradient-text {
    background: linear-gradient(135deg, #ff8f00, #ffca28);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    
}

.service-card {
    background: rgba(25, 25, 35, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px 30px 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(126, 211, 33, 0.05), rgba(156, 39, 176, 0.05));
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
}


.service-header h3 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-left: 20px;
    margin-bottom: 0;
    transition: all 0.4s ease;
}

.service-card:hover .service-header h3 {
    color: #7ED321;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(126, 211, 33, 0.1), rgba(156, 39, 176, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #7ED321, #9c27b0);
    opacity: 0;
    z-index: 0;
    transition: all 0.4s ease;
}

.service-icon i {
    font-size: 28px;
    color: #7ED321;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.service-content {
    position: relative;
    z-index: 1;
    padding-left: 10px;
}

.service-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    height: 80px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-weight: 400;
}

.service-card:hover .service-content p {
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* Card-specific description effects */
.service-card[data-service="strategy"] .service-content p {
    border-left: 2px solid rgba(126, 211, 33, 0.3);
    padding-left: 10px;
}

.service-card[data-service="visual"] .service-content p {
    border-left: 2px solid rgba(156, 39, 176, 0.3);
    padding-left: 10px;
}

.service-card[data-service="verbal"] .service-content p {
    border-left: 2px solid rgba(33, 150, 243, 0.3);
    padding-left: 10px;
}

.service-card[data-service="experience"] .service-content p {
    border-left: 2px solid rgba(255, 152, 0, 0.3);
    padding-left: 10px;
}

.service-card[data-service="activation"] .service-content p {
    border-left: 2px solid rgba(233, 30, 99, 0.3);
    padding-left: 10px;
}

.service-card[data-service="management"] .service-content p {
    border-left: 2px solid rgba(0, 188, 212, 0.3);
    padding-left: 10px;
}

.service-card:hover[data-service="strategy"] .service-content p {
    border-left: 2px solid rgba(126, 211, 33, 0.8);
}

.service-card:hover[data-service="visual"] .service-content p {
    border-left: 2px solid rgba(156, 39, 176, 0.8);
}

.service-card:hover[data-service="verbal"] .service-content p {
    border-left: 2px solid rgba(33, 150, 243, 0.8);
}

.service-card:hover[data-service="experience"] .service-content p {
    border-left: 2px solid rgba(255, 152, 0, 0.8);
}

.service-card:hover[data-service="activation"] .service-content p {
    border-left: 2px solid rgba(233, 30, 99, 0.8);
}

.service-card:hover[data-service="management"] .service-content p {
    border-left: 2px solid rgba(0, 188, 212, 0.8);
}

/* Light theme styles for descriptions */
.light-theme .service-content p {
    color: rgba(0, 0, 0, 0.7);
    text-shadow: none;
}

.light-theme .service-card:hover .service-content p {
    color: rgba(0, 0, 0, 0.9);
    text-shadow: none;
}

.service-tags {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 25px;
    min-height: 70px;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 4px;
    background: linear-gradient(90deg, rgba(126, 211, 33, 0.2), rgba(154, 122, 249, 0.2));
    border-radius: 30px;
    font-size: 12px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 28px;
}

.service-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(126, 211, 33, 0.4), rgba(156, 39, 176, 0.4));
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-card:hover .service-tag::before {
    opacity: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.4s ease;
}

.service-card:hover::before {
    height: 100%;
}

.service-card[data-service="strategy"] .service-icon i {
    color: #7ED321;
}

.service-card[data-service="visual"] .service-icon i {
    color: #9c27b0;
}

.service-card[data-service="verbal"] .service-icon i {
    color: #2196F3;
}

.service-card[data-service="experience"] .service-icon i {
    color: #FF9800;
}

.service-card[data-service="activation"] .service-icon i {
    color: #E91E63;
}

.service-card[data-service="management"] .service-icon i {
    color: #00BCD4;
}

.service-card[data-service="strategy"]:hover .service-icon {
    background: rgba(126, 211, 33, 0.2);
}

.service-card[data-service="visual"]:hover .service-icon {
    background: rgba(156, 39, 176, 0.2);
}

.service-card[data-service="verbal"]:hover .service-icon {
    background: rgba(33, 150, 243, 0.2);
}

.service-card[data-service="experience"]:hover .service-icon {
    background: rgba(255, 152, 0, 0.2);
}

.service-card[data-service="activation"]:hover .service-icon {
    background: rgba(233, 30, 99, 0.2);
}

.service-card[data-service="management"]:hover .service-icon {
    background: rgba(0, 188, 212, 0.2);
}

.light-theme .service-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.light-theme .service-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.08);
}

.light-theme .service-header h3 {
    color: #333;
}

.light-theme .service-card:hover .service-header h3 {
    color: #7ED321;
}

.light-theme .service-icon {
    background: linear-gradient(135deg, rgba(126, 211, 33, 0.1), rgba(156, 39, 176, 0.1));
}

.light-theme .service-icon i {
    color: #7ED321;
}

.light-theme .service-card:hover .service-content p {
    color: #333;
}

.light-theme .service-card::before {
    background: rgba(126, 211, 33, 0.03);
}

.light-theme .service-card:hover::before {
    background: rgba(126, 211, 33, 0.05);
}

/* Service card-specific tag colors */
.service-card[data-service="strategy"] .service-tag {
    background: linear-gradient(90deg, rgba(126, 211, 33, 0.2), rgba(76, 175, 80, 0.2));
    border-color: rgba(126, 211, 33, 0.2);
}

.service-card[data-service="visual"] .service-tag {
    background: linear-gradient(90deg, rgba(156, 39, 176, 0.2), rgba(103, 58, 183, 0.2));
    border-color: rgba(156, 39, 176, 0.2);
}

.service-card[data-service="verbal"] .service-tag {
    background: linear-gradient(90deg, rgba(33, 150, 243, 0.2), rgba(3, 169, 244, 0.2));
    border-color: rgba(33, 150, 243, 0.2);
}

.service-card[data-service="experience"] .service-tag {
    background: linear-gradient(90deg, rgba(255, 152, 0, 0.2), rgba(255, 87, 34, 0.2));
    border-color: rgba(255, 152, 0, 0.2);
}

.service-card[data-service="activation"] .service-tag {
    background: linear-gradient(90deg, rgba(233, 30, 99, 0.2), rgba(244, 67, 54, 0.2));
    border-color: rgba(233, 30, 99, 0.2);
}

.service-card[data-service="management"] .service-tag {
    background: linear-gradient(90deg, rgba(0, 188, 212, 0.2), rgba(63, 81, 181, 0.2));
    border-color: rgba(0, 188, 212, 0.2);
}

/* Service card hover state for tags */
.service-card[data-service="strategy"]:hover .service-tag {
    background: linear-gradient(90deg, rgba(126, 211, 33, 0.3), rgba(76, 175, 80, 0.3));
    border-color: rgba(126, 211, 33, 0.4);
}

.service-card[data-service="visual"]:hover .service-tag {
    background: linear-gradient(90deg, rgba(156, 39, 176, 0.3), rgba(103, 58, 183, 0.3));
    border-color: rgba(156, 39, 176, 0.4);
}

.service-card[data-service="verbal"]:hover .service-tag {
    background: linear-gradient(90deg, rgba(33, 150, 243, 0.3), rgba(3, 169, 244, 0.3));
    border-color: rgba(33, 150, 243, 0.4);
}

.service-card[data-service="experience"]:hover .service-tag {
    background: linear-gradient(90deg, rgba(255, 152, 0, 0.3), rgba(255, 87, 34, 0.3));
    border-color: rgba(255, 152, 0, 0.4);
}

.service-card[data-service="activation"]:hover .service-tag {
    background: linear-gradient(90deg, rgba(233, 30, 99, 0.3), rgba(244, 67, 54, 0.3));
    border-color: rgba(233, 30, 99, 0.4);
}

.service-card[data-service="management"]:hover .service-tag {
    background: linear-gradient(90deg, rgba(0, 188, 212, 0.3), rgba(63, 81, 181, 0.3));
    border-color: rgba(0, 188, 212, 0.4);
}

/* Light theme tag styling */
.light-theme .service-tag {
    background-color: transparent;
    color: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.light-theme .service-card[data-service="strategy"] .service-tag {
    background: linear-gradient(90deg, rgba(126, 211, 33, 0.15), rgba(76, 175, 80, 0.15));
    border-color: rgba(126, 211, 33, 0.2);
}

.light-theme .service-card[data-service="visual"] .service-tag {
    background: linear-gradient(90deg, rgba(156, 39, 176, 0.15), rgba(103, 58, 183, 0.15));
    border-color: rgba(156, 39, 176, 0.2);
}

.light-theme .service-card[data-service="verbal"] .service-tag {
    background: linear-gradient(90deg, rgba(33, 150, 243, 0.15), rgba(3, 169, 244, 0.15));
    border-color: rgba(33, 150, 243, 0.2);
}

.light-theme .service-card[data-service="experience"] .service-tag {
    background: linear-gradient(90deg, rgba(255, 152, 0, 0.15), rgba(255, 87, 34, 0.15));
    border-color: rgba(255, 152, 0, 0.2);
}

.light-theme .service-card[data-service="activation"] .service-tag {
    background: linear-gradient(90deg, rgba(233, 30, 99, 0.15), rgba(244, 67, 54, 0.15));
    border-color: rgba(233, 30, 99, 0.2);
}

.light-theme .service-card[data-service="management"] .service-tag {
    background: linear-gradient(90deg, rgba(0, 188, 212, 0.15), rgba(63, 81, 181, 0.15));
    border-color: rgba(0, 188, 212, 0.2);
}

.light-theme .service-card:hover .service-tag {
    color: rgba(0, 0, 0, 0.9);
}

/* Media query for service tags */
@media (max-width: 768px) {
    .service-tags {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
        margin-top: 12px;
        margin-bottom: 15px;
        min-height: 66px;
    }
    
    .service-tag {
        padding: 4px 10px;
        font-size: 11px;
        height: 24px;
    }
}

/* Media query for service tags at smaller screens */
@media (max-width: 768px) {
    .service-tags {
        gap: 6px;
        margin-top: 12px;
        margin-bottom: 15px;
        min-height: 60px;
    }
    
    .service-tag {
        padding: 4px 10px;
        font-size: 11px;
        min-width: 85px;
        height: 24px;
    }
    
}

/* Light/Dark Theme service styles */
html.light-theme .services {
    background-color: #f5f5f5;
    color: #1a1a2e;
    background-image: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

html:not(.light-theme) .services {
    background-color: #161623;
    color: #ffffff;
}

.light-theme .services .section-title {
    color: #333333;
}

.light-theme .services .section-description,
.light-theme .services .services-description {
    color: rgba(0, 0, 0, 0.7);
}

.light-theme .service-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.light-theme .service-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.08);
    transform: translateY(-10px);
}

.light-theme .service-header h3 {
    color: #333;
}

.light-theme .service-card:hover .service-header h3 {
    color: var(--primary-green, #7ED321);
}

.light-theme .service-content p {
    color: rgba(0, 0, 0, 0.7);
    text-shadow: none;
}

.light-theme .service-card:hover .service-content p {
    color: rgba(0, 0, 0, 0.9);
    text-shadow: none;
}

/* Responsive styles for small screens */
@media screen and (max-width: 768px) {
    .services {
        padding: 60px 0;
    }
}

/* Service button styling - creative and eye-catching */
.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(45deg, var(--primary-green), var(--primary-purple));
    border-radius: 30px;
    text-decoration: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: none;
    margin-top: 10px;
}

/* Adding bubble effect to service buttons */
.service-btn .bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: service-bubble-rise var(--duration, 4s) ease-in infinite var(--delay, 0s);
    z-index: 1;
    transform: translateY(100%);
    opacity: 0;
    width: var(--size, 15px);
    height: var(--size, 15px);
    left: var(--left, 50%);
    bottom: 0;
}

@keyframes service-bubble-rise {
    0% {
        transform: translateY(100%) scale(0.2);
        opacity: 0;
    }
    5% {
        opacity: 0.8;
    }
    95% {
        opacity: 0.2;
    }
    100% {
        transform: translateY(-100%) scale(0.5);
        opacity: 0;
    }
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-purple), var(--primary-green));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-btn i {
    position: relative;
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.3s ease;
    z-index: 2;
}

.service-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    color: #ffffff !important;
}

.service-btn:hover::before {
    opacity: 1;
}

.service-btn:hover i {
    transform: translateX(5px);
}

/* Light theme button enhancements */
.light-theme .service-btn {
    box-shadow: 0 5px 15px rgba(126, 211, 33, 0.2);
    color: #ffffff;
}

.light-theme .service-btn:hover {
    box-shadow: 0 10px 25px rgba(126, 211, 33, 0.3), 0 5px 15px rgba(156, 39, 176, 0.15);
    color: #ffffff !important;
}

/* Responsive styling for buttons */
@media (max-width: 768px) {
    .service-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .service-btn i {
        margin-left: 6px;
        font-size: 11px;
    }
}

/* Service card hover effects for each service type */
.service-card[data-service="strategy"]:hover {
    border-bottom: 3px solid #7ED321;
}

.service-card[data-service="visual"]:hover {
    border-bottom: 3px solid #9c27b0;
}

.service-card[data-service="verbal"]:hover {
    border-bottom: 3px solid #2196F3;
}

.service-card[data-service="experience"]:hover {
    border-bottom: 3px solid #FF9800;
}

.service-card[data-service="activation"]:hover {
    border-bottom: 3px solid #E91E63;
}

.service-card[data-service="management"]:hover {
    border-bottom: 3px solid #7ED321;
}

/* Responsive styles for the Services section */
@media screen and (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .services .section-title {
        font-size: 34px;
    }
    
    .services .section-description,
    .services .services-description {
        max-width: 85%;
    }
    
    .service-header h3 {
        font-size: 20px;
    }
    
    .service-content p {
        font-size: 14px;
        height: 75px;
    }
    
    .service-icon {
        width: 58px;
        height: 58px;
    }
    
    .service-icon i {
        font-size: 24px;
    }
}

@media screen and (max-width: 992px) {
    .services {
        padding: 100px 0 80px;
    }
    
    .services .section-title {
        font-size: 32px;
    }
    
    .services .section-description,
    .services .services-description {
        max-width: 90%;
        font-size: 15px;
        line-height: 1.7;
    }
    
    .service-card {
        padding: 30px 25px 25px;
    }
    
    .service-header {
        margin-bottom: 20px;
    }
    
    .service-header h3 {
        font-size: 18px;
        margin-left: 15px;
    }
    
    .service-content p {
        font-size: 14px;
        height: auto;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    .services {
        padding: 80px 0 60px;
    }
    
    .services .section-subtitle {
        font-size: 12px;
        padding: 6px 12px;
        letter-spacing: 1.5px;
        margin-left: 10px;
    }
    
    .services .section-title {
        font-size: 28px;
        margin-left: 10px;
    }
    
    .services .section-description,
    .services .services-description {
        font-size: 14px;
        margin-left: 10px;
        line-height: 1.6;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-card {
        padding: 25px 20px 20px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon i {
        font-size: 22px;
    }
    
    .service-header h3 {
        font-size: 17px;
    }
    
    .service-content p {
        font-size: 14px;
        letter-spacing: 0.2px;
    }
    
    .service-tags {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .service-tag {
        font-size: 10px;
        padding: 4px 8px;
        height: 24px;
    }
    
    .service-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}

@media screen and (max-width: 576px) {
    .services {
        padding: 60px 0 40px;
    }
    
    .services .section-subtitle {
        font-size: 11px;
        padding: 5px 10px;
        margin-left: 5px;
        margin-bottom: 10px;
    }
    
    .services .section-title {
        font-size: 26px;
        margin-left: 5px;
        margin-bottom: 10px;
    }
    
    .services .section-description,
    .services .services-description {
        font-size: 14px;
        margin-left: 5px;
        margin-bottom: 25px;
    }
    
    .service-card {
        padding: 20px 15px 15px;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
    }
    
    .service-icon i {
        font-size: 20px;
    }
    
    .service-header h3 {
        font-size: 16px;
        margin-left: 12px;
    }
    
    .service-content {
        padding-left: 5px;
    }
    
    .service-content p {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 15px;
        height: auto;
    }
    
    .service-tags {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        margin-top: 10px;
        margin-bottom: 15px;
        min-height: 60px;
    }
    
    .service-tag {
        padding: 3px 6px;
        font-size: 9px;
        height: 22px;
    }
    
    .service-btn {
        padding: 11px 50px;
        font-size: 15px;
    }
    
    .service-btn i {
        margin-left: 5px;
        font-size: 10px;
    }
}

@media screen and (max-width: 480px) {
    .services {
        padding: 50px 0 30px;
    }
    
    .services .section-title {
        font-size: 40px;
    }
    
    .service-card {
        margin: 15px 15px 0px 15px;
    }
    
    .service-header {
        margin-bottom: 15px;
    }
    
    .service-header h3 {
        font-size: 25px;
        margin-left: 15px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 18px;
    }
    
    .service-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .service-tags {
        gap: 5px;
        margin-top: 8px;
        margin-bottom: 12px;
    }
    
    .service-tag {
        font-size: 14px;
        padding: 16px 10px 16px 10px;
    }
}

.services .col-lg-6.p-0 {
    padding-left: 25px !important;
}

@media (max-width: 768px) {
    .services .col-lg-6.p-0 {
        padding-left: 15px !important;
    }
}

@media (max-width: 576px) {
    .services .col-lg-6.p-0 {
        padding-left: 30px !important;
    }
} 