/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #fff;
}

/* .container {
    max-width: 85%;
    margin: 0 auto;
}

.container-fluid {
    max-width: 100%;
    margin: 0 auto;
} */

/* Section Header Styles */
.section-header {
    text-align: start;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a0936;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.title-highlight {
    color: #ff6a02;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0;
    line-height: 1.6;
}

/* It Services Section */
.it-services-section {
    padding: 80px 0;
    background: #eff8ff;
}

.main-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.main-service-card {
    position: relative;
    background: #eff8ff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.main-service-card:hover {
    background: white;
    border: 1px transparent solid;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}


.service-image {
    height: 270px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.service-tags {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    z-index: 2;
}

.service-tag {
    background: #1a0936;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.70rem;
    font-weight: 500;
}

.service-info {
    padding: 1.5rem;
}
.service-info hr{
    margin: 1.8rem 0 ;
    height: 1px;
    background-color: #dddbdb;
}

.service-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a0936;
    margin-bottom: 0.8rem;
}

.service-description {
    color: #666;
    line-height: 2;
    font-size: 0.9rem;
}

.service-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.9rem;
}

.service-icon-small {
    width: 35px;
    height: 35px;
    background: #ff6a02;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

/* Animation Styles */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 95%;
        padding: 0 15px;
    }
    
    .it-services-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .main-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .service-image {
        height: 220px;
    }
    
    .service-info {
        padding: 1.2rem;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .it-services-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-info {
        padding: 1rem;
    }
    
    .service-tag {
        font-size: 0.65rem;
        padding: 3px 8px;
    }
}

