/* Consolidated custom styles */
@import "./Article-Cards.css";
@import "./Articles-Cards-images.css";
@import "./Footer-Multi-Column-icons.css";
@import "./gradient-navbar-styles.css";
@import "./gradient-navbar.css";
@import "./Modern-Contact-Form.css";
@import "./Rowfcards-styles.css";


/* Corporate button style for specific .btn-d */
.btn-d {
    text-decoration: none;
    background-color: #0056b3;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.btn-d:hover {
    background-color: #004494;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}
.btn-d:active {
    background-color: #003370;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
}

/* Project cards styling */
.project-card {
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.375rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem;
    text-align: center;
}
.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.project-card img {
    max-width: 100%;
    border-radius: 0.25rem;
    margin: 0 auto;
}

/* Service cards hover effect */
.card.h-100 {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card.h-100:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

#services {
    min-height: 50vh;
    scroll-margin-top: 75px;
}

#contact {
    min-height: 50vh;
    scroll-margin-top: 75px;
}

/* Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}
.delay-1 {
  animation-delay: 0.3s;
}
