/* Custom CSS for animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-card {
    transition: all 0.3s ease;
}

.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: scale(1.03);
}

/* Pulse animation for call button */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gradient-animate {
    background-size: 200% 200%;
    animation: gradient 3s ease infinite;
}
:root {
    --text-dark: #1a1a1a;
    --text-light: #f8f8f8;
    --text-gray: #666666;
    --bg-dark: #1a1a1a;
    --bg-light: #ffffff;
    --bg-gray: #f5f5f5;
    --accent: #333333;
}

/* Responsive adjustments for large screens */
@media (min-width: 1600px) {
  .container {
    max-width: 1500px !important;
  }
}

@media (min-width: 1200px) {
    .margin-left-3rem {
        margin-left: 3rem;
    }

    #contact {
        padding-left: 4rem;
        padding-right: 4rem;
    }

    .home-container{
        padding-top: 5.3rem;
        padding-bottom: 5.3rem;
    }
}

/* Custom styles for service cards */
.service-card {
    width: 85%;
    margin: 0 auto;
}

/* Custom styles for testimonial cards */
.testimonial-card {
    width: 90%;
    margin: 0 auto;
}


/* Custom styles for brand logos */
.brands-container {
    width: 90%;
    margin: 0 auto;
}

/* Custom styles for contact section */
.contact-container {
    width: 90%;
    margin: 0 auto;
}

/* Custom styles for footer */
.footer-container {
    width: 90%;
    margin: 0 auto;
}

/* Custom styles for floating action button */
.fab-container {
    width: 90%;
    margin: 0 auto;
}

/* Custom styles for mobile menu */
.mobile-menu-container {
    width: 90%;
    margin: 0 auto;
}

/* Custom styles for hero section */
.hero-container {
    width: 90%;
    margin: 0 auto;
}

/* Custom styles for stats section */
.stats-container {
    width: 90%;
    margin: 0 auto;
}

/* Custom styles for why choose us section */
.why-choose-us-container {
    width: 90%;
    margin: 0 auto;
}

/* Custom styles for header */
.header-container {
    width: 90%;
    margin: 0 auto;
}