body {
  font-family: 'Segoe UI', sans-serif;
}
.carousel-item {
  transition: transform 1s ease, opacity 1s ease;
}
.card img {
  height: 250px;
  object-fit: cover;
}



/* Global styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

/* Top header with contact and socials */
.top-header {
    background: #343a40;
    color: #fff;
    padding: 5px 0;
    font-size: 14px;
}

.top-header .social-icons a {
    color: #fff;
    margin-left: 10px;
    text-decoration: none;
}

/* Navbar styling */
.navbar-brand img {
    height: 40px;
    margin-right: 10px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #333 !important;
}

/* Hero slider styles */
.carousel-caption {
    background: rgba(0,0,0,0.6);
    padding: 20px;
    border-radius: 8px;
}

.carousel-caption h1 {
    font-size: 2.5rem;
    color: #fff;
}

.carousel-caption p {
    color: #eee;
}

/* Buttons */
.btn-apply,
.btn-login {
    margin: 10px;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 25px;
}

.btn-apply {
    background-color: #28a745;
    color: white;
}

.btn-login {
    background-color: #007bff;
    color: white;
}

/* Staff section */
.staff-card {
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 20px;
    margin: 15px 0;
    background-color: white;
}

.staff-card img {
    width: 100%;
    border-radius: 50%;
    height: 150px;
    object-fit: cover;
    margin-bottom: 10px;
}

.staff-card h5 {
    font-weight: bold;
}

.staff-card p {
    font-size: 14px;
    color: #555;
}

/* Footer styles */
.footer {
    background-color: #343a40;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer a {
    color: #ccc;
    text-decoration: none;
}

.footer a:hover {
    color: white;
}


/* Custom CSS */

img {
    max-width: 100%;
    height: auto;
}


.sidebar {
    background-color: red !important; /* for testing */
}

.card:hover {
  transform: scale(1.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}


