/* ========================================
   Transparent Cards with Blue Glow Effect
   Works for both Mobile and PC
   ======================================== */

/* Extra spacing for Services section - MORE GAP between cards */
.services-grid {
    gap: 2.5rem !important;
}

/* Service cards - Transparent with Blue Glow */
.service-card {
    margin-bottom: 1rem;
    border-radius: 16px !important;
    aspect-ratio: auto !important;
    min-height: 280px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    padding: 2rem !important;
    
    /* Transparent background with glass effect */
    background: rgba(17, 24, 39, 0.15) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    
    /* Blue border with glow */
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
    box-shadow: 
        0 0 20px rgba(59, 130, 246, 0.1),
        inset 0 0 20px rgba(59, 130, 246, 0.05) !important;
    
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}

/* Blue Light Glow Effect on Hover */
.service-card:hover {
    background: rgba(17, 24, 39, 0.25) !important;
    border-color: rgba(59, 130, 246, 0.6) !important;
    transform: translateY(-8px) !important;
    box-shadow: 
        0 0 30px rgba(59, 130, 246, 0.4),
        0 0 60px rgba(59, 130, 246, 0.2),
        inset 0 0 20px rgba(59, 130, 246, 0.1) !important;
}

/* Service card inner glow overlay */
.service-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
    pointer-events: none !important;
    border-radius: inherit !important;
}

.service-card:hover::before {
    opacity: 1 !important;
}

/* Service icon with blue glow */
.service-icon {
    width: 65px !important;
    height: 65px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background: rgba(59, 130, 246, 0.15) !important;
    border: 2px solid rgba(59, 130, 246, 0.3) !important;
    margin-bottom: 1.25rem !important;
    font-size: 1.75rem !important;
    color: #3b82f6 !important;
    position: relative !important;
    transition: all 0.3s ease !important;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%) !important;
    border-color: transparent !important;
    color: #fff !important;
    transform: scale(1.1) !important;
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.5) !important;
}

/* Service title */
.service-card h3 {
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.75rem !important;
    color: #f1f5f9 !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Service description */
.service-card p {
    color: #94a3b8 !important;
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
    margin-bottom: 1.25rem !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Service tags */
.service-tag {
    display: inline-block !important;
    background: rgba(59, 130, 246, 0.15) !important;
    color: #60a5fa !important;
    padding: 0.35rem 0.75rem !important;
    border-radius: 6px !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    margin-right: 0.5rem !important;
    margin-bottom: 0.5rem !important;
    border: 1px solid rgba(59, 130, 246, 0.2) !important;
    transition: all 0.3s ease !important;
}

.service-card:hover .service-tag {
    background: rgba(59, 130, 246, 0.25) !important;
    border-color: rgba(59, 130, 246, 0.4) !important;
}

/* Service link button */
.service-link {
    display: inline-block !important;
    padding: 0.6rem 1.25rem !important;
    margin-top: auto !important;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%) !important;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
}

.service-link:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4) !important;
}

/* ========================================
   Contact Section - Message Form Styles
   ======================================== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(17, 24, 39, 0.15) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2) !important;
}

.contact-form input,
.contact-form textarea {
    padding: 0.875rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.2) !important;
    background: rgba(17, 24, 39, 0.2) !important;
    color: #f1f5f9;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3b82f6 !important;
    background: rgba(17, 24, 39, 0.3) !important;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2) !important;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form .btn {
    align-self: flex-start;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    cursor: pointer;
}

/* Contact methods and social links spacing */
.contact-methods {
    gap: 1.5rem;
}

.social-links {
    gap: 1.5rem;
}

/* ========================================
   Portfolio/My Journey Cards - Blue Glow
   ======================================== */
.portfolio-card {
    background: rgba(17, 24, 39, 0.15) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(59, 130, 246, 0.2) !important;
    transition: all 0.3s ease !important;
}

.portfolio-card:hover {
    border-color: rgba(59, 130, 246, 0.5) !important;
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.3) !important;
    transform: translateY(-5px) !important;
}

/* Portfolio Icon */
.portfolio-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.15) !important;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease !important;
}

.portfolio-icon i {
    font-size: 1.25rem;
    color: #3b82f6 !important;
}

.portfolio-card:hover .portfolio-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%) !important;
    border-color: transparent !important;
}

.portfolio-card:hover .portfolio-icon i {
    color: #fff !important;
}

/* ========================================
   Responsive Design for Mobile
   ======================================== */
@media (max-width: 768px) {
    .services-grid {
        gap: 1.5rem !important;
    }
    
    .service-card {
        min-height: auto !important;
        padding: 1.5rem !important;
    }
    
    .service-icon {
        width: 55px !important;
        height: 55px !important;
        font-size: 1.5rem !important;
    }
    
    .service-card h3 {
        font-size: 1.15rem !important;
    }
    
    .service-card p {
        font-size: 0.875rem !important;
    }
    
    .contact-form {
        padding: 1rem !important;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 1.25rem !important;
    }
    
    .service-icon {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.25rem !important;
    }
}

