@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@700&display=swap');
body {
    font-family: 'Inter', sans-serif;
    background-color: #111;
    color: #ddd;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #0F172A;
border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #008B8B;
}

/* Animation for buttons */
.btn-hover-effect {
    transition: all 0.3s ease;
    transform: translateY(0);
}

.btn-hover-effect:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Service card hover effect */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Form input focus effect */
.input-focus:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(139, 90, 43, 0.3);
}
/* Testimonial card styling */
.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Neon glow effects */
.glow-text {
    text-shadow: 0 0 8px rgba(0, 245, 255, 0.6);
    transition: text-shadow 0.3s ease;
}

.glow-icon {
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
    transition: box-shadow 0.3s ease;
}

.glow-icon:hover {
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.8);
}
/* Hero section overlay */
.hero-overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
}