/* Services Hero Section */
#services-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(18, 18, 18, 0.85), rgba(18, 18, 18, 0.9)),
                url('../services/IMSC-TOWER-2.jpeg') center/cover fixed;
    padding: 8rem 5% 4rem;
    overflow: hidden;
}

#services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 184, 0, 0.1), transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 4.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    animation: slideDown 1s ease-out;
}

.hero-content .highlight {
    color: #FFB800;
    text-shadow: 0 0 20px rgba(255, 184, 0, 0.3);
    position: relative;
    display: inline-block;
}

.hero-content .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #FFB800;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.hero-content:hover .highlight::after {
    transform: scaleX(1);
    transform-origin: left;
}

.hero-content p {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: slideUp 1s ease-out 0.3s backwards;
}

/* Services Showcase */
#services-showcase {
    background-color: #121212;
    padding: 6rem 0;
    position: relative;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Service Cards */
.service-item {
    display: flex;
    margin-bottom: 3rem;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.9));
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 1px solid rgba(255, 184, 0, 0.1);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 184, 0, 0.15);
    border-color: rgba(255, 184, 0, 0.3);
}

.service-image {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(18, 18, 18, 0.8),
        rgba(255, 184, 0, 0.2)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-item:hover .service-overlay {
    opacity: 1;
}

.service-overlay i {
    color: var(--primary-color);
    font-size: 3rem;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.service-item:hover .service-overlay i {
    transform: translateY(0);
}

.service-info {
    flex: 1;
    padding: 2.5rem;
    position: relative;
    z-index: 1;
}

.service-tag {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(45deg, var(--primary-color), #FFC837);
    color: var(--dark-bg);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-info h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.service-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.service-item:hover .service-info h2::after {
    width: 100px;
}

.service-info p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Enhanced Button Styles */
.service-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: linear-gradient(45deg, var(--primary-color), #FFC837);
    color: var(--dark-bg);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.2);
    border: none;
    cursor: pointer;
    margin-top: 1rem;
}

.service-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.3);
    background: linear-gradient(45deg, #FFC837, var(--primary-color));
}

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

.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.service-btn:hover::before {
    left: 100%;
}

/* Services CTA */
.services-cta {
    background: linear-gradient(rgba(18, 18, 18, 0.95), rgba(18, 18, 18, 0.95)),
                url('../services/IMSC-TOWER-2.jpeg') center/cover fixed;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    color: #FFB800;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 500;
}

.company-info p {
    color: #cccccc;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.cta-button {
    padding: 1.2rem 3rem;
    background: linear-gradient(45deg, #FFB800, #FFC933);
    color: #121212;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 184, 0, 0.4);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

.experience-badges {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
}

.badge {
    text-align: center;
    color: #ffffff;
}

.badge i {
    font-size: 2.5rem;
    color: #FFB800;
    margin-bottom: 1rem;
}

.badge span {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 4rem;
    }

    .service-info h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 968px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .service-item {
        flex-direction: column;
    }

    .service-item:nth-child(even) {
        flex-direction: column;
    }

    .service-image {
        height: 300px;
    }

    .service-info {
        padding: 2rem;
    }

    .service-info h2 {
        font-size: 2rem;
    }

    .experience-badges {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .service-image {
        height: 250px;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .experience-badges {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .service-info h2 {
        font-size: 1.8rem;
    }

    .service-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}
