/* Service Page Styling */
.service-hero {
    padding: 150px 0;
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.service-hero h1 span {
    color: #6e8efb;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

/* Service-specific hero backgrounds */
.digital-marketing {
    background-image: url('../images/digital-marketing-bg.jpg');
}

.web-development {
    background-image: url('../images/web-dev-bg.jpg');
}

.video-editing {
    background-image: url('../images/video-editing-bg.jpg');
}

.videography {
    background-image: url('../images/videography-bg.jpg');
}

/* Service Features Grid */
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 80px 0;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(110, 142, 251, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover h3,
.feature-card:hover p,
.feature-card:hover .feature-icon {
    color: white;
}

.feature-icon {
    font-size: 2.5rem;
    color: #6e8efb;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    transition: color 0.3s ease;
}

.feature-card p {
    color: #666;
    transition: color 0.3s ease;
}

/* Service Types Grid */
.service-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 80px 0;
}

.type-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.type-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #6e8efb, #a777e3);
    transition: width 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(110, 142, 251, 0.15);
}

.type-card:hover::after {
    width: 100%;
}

.type-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.type-card p {
    color: #666;
}

/* Technology Stack */
.technology-stack {
    margin-top: 80px;
    text-align: center;
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.tech-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(110, 142, 251, 0.2);
}

.tech-grid img {
    height: 50px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.tech-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-hero {
        padding: 100px 0;
    }
    
    .service-hero h1 {
        font-size: 2.5rem;
    }
    
    .service-features-grid,
    .service-types-grid {
        grid-template-columns: 1fr;
    }
}
/* Gradient Card Styles */
.gradient-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(236, 91, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    text-align: center;
}

.gradient-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ec5b37 0%, #ff9a3c 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gradient-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(236, 91, 55, 0.2);
}

.gradient-card:hover::before {
    opacity: 1;
}

.gradient-card:hover h3,
.gradient-card:hover p {
    color: white;
}

.gradient-card-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gradient-card:hover .gradient-card-logo {
    background: rgba(255,255,255,0.2);
    box-shadow: none;
}

.gradient-card-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.gradient-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    transition: color 0.3s ease;
}

.gradient-card p {
    color: #666;
    margin-bottom: 25px;
    transition: color 0.3s ease;
}

.gradient-card .pricing-btn {
    display: inline-block;
    padding: 12px 25px;
    background: white;
    color: #ec5b37;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(236, 91, 55, 0.2);
}

.gradient-card:hover .pricing-btn {
    background: rgba(255,255,255,0.9);
    color: #ec5b37;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Grid Layout for Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 80px 0;
}