* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background: #f9f9f9;
  }
  
  .container {
    width: 90%;
    margin: auto;
    overflow: hidden;
  }
  
  /* .navbar {
    background: #2c3e50;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .navbar .logo {
    font-size: 1.8rem;
    font-weight: bold;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
  }
  
  .nav-links li a {
    color: white;
    text-decoration: none;
    padding: 0.5rem;
  }
  
  .nav-links li a:hover {
    background: #34495e;
    border-radius: 5px;
  } */
  
  .carousel {
    position: relative;
    max-height: 400px;
    overflow: hidden;
  }
  
  /* .carousel-container {
    display: flex;
    transition: transform 0.5s ease;
  }
  
  .slide {
    min-width: 100%;
    transition: 1s ease;
    position: relative;
  } */

  .carousel-container {
    position: relative;
  }
  .slide {
    position: relative;
  }
  .caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: #fff;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  }
  
  .slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
  
  /* .caption {
    position: absolute;
    bottom: 30px;
    left: 50px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    font-size: 1.5rem;
    border-radius: 5px;
  } */
  
  .carousel-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
  }
  
  .carousel-buttons button {
    background: rgba(0, 0, 0, 0.4);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
  }
  
  .services {
    background: white;
    padding: 3rem 0;
  }
  
  .services h2 {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .service-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .service-item {
    background: #ecf0f1;
    padding: 2rem;
    text-align: center;
    flex: 1 1 250px;
    border-radius: 10px;
  }
  
  .service-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
  }

  .service-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  }
  
  footer {
    background: #2c3e50;
    color: white;
    padding: 1rem 0;
    text-align: center;
  }
  
  .social-icons a {
    margin: 0 0.5rem;
    color: white;
  }
  

  .navbar {
    background: rgba(44, 62, 80, 0.85);
    backdrop-filter: blur(5px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.75rem 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  }
  .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .navbar .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .navbar .logo img {
    width: 40px;
    height: 40px;
  }
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
  }
  .nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  .nav-links li a:hover,
  .nav-links li a.active {
    color: #1abc9c;
  }