/* Service Section Styles */
.services {
    margin-top: 80px;
    padding: 80px 0;
    width:100vw;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-grid {
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.dark-theme .service-card {
    background: #2d2d2d;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff0000 0%, #ff4d4d 100%);
    border-radius: 50%;
    color: white;
    font-size: 30px;
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.dark-theme .service-title {
    color: #fff;
}

.service-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.dark-theme .service-description {
    color: #ccc;
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 50px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-social {
    margin-bottom: 30px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff0000 0%, #ff4d4d 100%);
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.footer-content p {
    margin: 10px 0;
    font-size: 16px;
    color: #ccc;
}

.footer-quote {
    font-style: italic;
    font-size: 18px !important;
    color: #ff4d4d !important;
    margin-top: 20px !important;
}

.dark-theme footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}
