

/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}



/* Hero Section */
.hero-section {
    background: url('../images/technology-background-gears-connected.jpg') no-repeat center center/cover;
    padding: 150px 0;
    height: 100vh;
}
    
/* Cards services */
.card-body {
    background-color: rgb(251, 255, 255);
    color: rgb(10, 0, 0);
}


/* Navbar Customization */

/*.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}*/
.navbar {
    transition: background-color 0.3s ease;
}

.navbar-brand {
    /* font-size: clamp(1rem, 2.5vw, 1.5rem); auto-scales between 1rem and 1.5rem */
    font-size: 3vw; 
    font-weight: 600;
    color: #333;
}

.navbar-nav .nav-link {
    font-size: clamp(0.9rem, 2vw, 1.1rem); /* scales with screen width */
    color: #333;
    margin-left: 1rem;
}

.navbar-nav .nav-link:hover {
     color: #007bff;
}

/*Responsive navbar*/
@media (max-width: 576px) {
    .navbar {
        padding: 0.5rem 1rem;
    }

    .navbar-brand {
        font-size: 1.1rem;
    }

    .navbar-nav .nav-link {
        font-size: 0.95rem;
    }
}

/* About Section */
#about img {

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    font-size: 0.9rem;
}
