/* 🌌 Gradient Background */
.gradient-bg {
    background: linear-gradient(135deg, rgb(9, 37, 65) 0%, rgb(10, 23, 40) 100%);
}

/* 📦 Service Card Hover Effect */
.service-card:hover {
    transform: translateY(-10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 20px 25px -5px rgba(68, 146, 183, 0.1), 
                0 10px 10px -5px rgba(68, 146, 183, 0.04);
}

/* 🔗 Navigation Link Underline on Hover */
.nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: rgb(68, 146, 183);
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}

/* ✍️ Input Focus Highlight */
.contact-input:focus {
    outline: none;
    border-color: rgb(68, 146, 183);
    box-shadow: 0 0 0 3px rgba(68, 146, 183, 0.2);
}

/* 📞 Footer Contact: Prevent Text Wrapping */
.footer-contact-item span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* Optional: adds "..." on overflow */
}

/* 🧱 Optional: Responsive service-card fix for smaller screens */
@media (max-width: 768px) {
    .service-card:hover {
        transform: none;
        box-shadow: none;
    }
}
.contact-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #092541; /* or use your theme color */
}