/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap');

/* General Styles */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, #f5f5f5, #e6f7ff);
    color: #333;
    scroll-behavior: smooth;
    line-height: 1.6;
}

/* Navigation Bar */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(0, 31, 63, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

.nav-container.shrink {
    padding: 10px 15px;
    background: rgba(0, 31, 63, 1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
}

.nav-horizontal {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-horizontal li {
    display: inline-block;
}

.nav-horizontal a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 10px 15px;
    transition: color 0.3s ease, background 0.3s ease;
    border-radius: 5px;
}

.nav-horizontal a:hover {
    color: #ffcc00;
    background: rgba(255, 255, 255, 0.2);
}

/* Software Development Section */
#software-development {
    padding: 60px;
    margin: 120px auto 30px;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    text-align: center;
    animation: fadeIn 1.2s ease-in-out;
}

#software-development h2 {
    font-size: 2.2rem;
    text-transform: uppercase;
    color: #005bbb;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

#software-development p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Offerings List */
#software-development ul {
    list-style: none;
    padding: 0;
    text-align: center;
    margin-top: 20px;
}

#software-development ul li {
    font-size: 1.1rem;
    padding: 14px;
    background: linear-gradient(135deg, #005bbb, #003366);
    color: white;
    margin: 10px auto;
    border-radius: 8px;
    max-width: 400px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

#software-development ul li:hover {
    background: linear-gradient(135deg, #003366, #001f3f);
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Call to Action Button */
.cta-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 30px;
    background: linear-gradient(90deg, #ffcc00, #ff6600);
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.cta-btn:hover {
    background: linear-gradient(90deg, #ff9900, #ff3300);
    transform: scale(1.08);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

/* Footer */
footer {
    margin-top: 50px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    #software-development {
        padding: 40px;
        margin-top: 140px;
    }

    #software-development ul li {
        max-width: 300px;
    }

    .cta-btn {
        font-size: 1rem;
        padding: 12px 24px;
    }
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
