/* General Reset */
/* index.css */

/* Update Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 10px 5%;
  flex-wrap: wrap;
}
html {
  scroll-behavior: smooth;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px;
  background-color: #fff;
}

.Title {
  color: black;
  font-size: 24px;
  font-weight: 500;
  max-width: 200px;
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: black;
  text-decoration: none;
  padding: 8px 16px;
  transition: background-color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  background-color: #0055a5;
  color: #ffcc00;
  border-radius: 4px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
}

header {
  background-color: white;
  color: #fff;
  padding: 10px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li {
  display: inline;
}

.nav-links li a {
  color: black;
  text-decoration: none;
  padding: 8px 16px;
  transition: background-color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background-color: #0055a5;
  border-radius: 4px;
}

  /* Main Heading */
  main h1 {
    text-align: center;
    margin: 30px 0;
    font-size: 32px;
    color: #003366;
  }
  
  /* Services Grid */
  .service-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 90%;
    margin: auto;
    padding-bottom: 40px;
  }
  
  .service-block {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding-bottom: 20px;
  }
  
  .service-block img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  .service-block h2 {
    font-size: 20px;
    color: #003366;
    margin: 15px 0 10px;
  }
  
  .service-block p {
    padding: 0 15px;
    color: #555;
  }
  
  .service-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  .carousel img {
    height: 300px;
    object-fit:cover;
  }
  
  .carousel-caption h5 {
    background: rgba(0, 0, 0, 0.5);
    display: inline-block;
    padding: 5px 10px;
    border-radius: 8px;
  }
    
  /* Footer */
  footer {
    background-color: #003366;
    color: #fff;
    padding: 30px 20px;
    font-size: 14px;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .footer-section {
    flex: 1 1 200px;
    margin: 10px;
  }
  
  .footer-section h4 {
    margin-bottom: 10px;
    color: #00bcd4;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 10px;
  }
  