/* Custom CSS for an elegant design */
    body {
        font-family: Poppins;
      color: #333;
      background-color: #f8f9fa;
    }

    .navbar {
        font-family: Poppins;
        background-color: #333;
        padding: 15px 0;
    }

    .navbar-brand img {
      height: 50px;
    }

    .navbar-nav .nav-link {
      color: #ffffff !important;
      margin: 0 10px;
      cursor: pointer;
    }

    .carousel-item {
      height: 600px;
      position: relative;
    }

    .carousel-item img {
      object-fit: cover;
      height: 100%;
      width: 100%;
    }

    .carousel-caption {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100%;
      text-align: center;
      color: #fff;
      background-color: rgba(0, 0, 0, 0.5);
      padding: 20px;
    }

    .carousel-inner {
      position: relative;
    }
    .fixed-form-container {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: rgba(255, 255, 255, 0.8);
      padding: 20px;
      border-radius: 8px;
      z-index: 10;
    }
    .fixed-form-container .form-group {
      margin-bottom: 15px;
    }
  
    .card {
      border: none;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .card img {
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
    }

    .card-body {
      text-align: center;
    }


    .map-container {
      position: relative;
      padding-bottom: 56.25%; /* 16:9 aspect ratio */
      height: 0;
      overflow: hidden;
      border: 1px solid #ddd;
      border-radius: 10px;
      margin-top: 20px;
    }
  
    .map-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    .contact-info {
      text-align: center;
      margin-top: 50px;
    }

    .contact-form {
      margin-top: 20px;
    }

    footer {
      background-color: #333;
      color: #ffffff;
      padding: 20px 0;
      text-align: center;
    }


    .social-icons {
      position: fixed;
      top: 50%;
      left: 10px;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      z-index: 1000;
  }
  
  .social-icons a {
      text-decoration: none;
      color: white;
      background: #333;
      padding: 10px;
      margin: 5px 0;
      border-radius: 50%;
      text-align: center;
      font-size: 20px;
      transition: background 0.3s;
  }
  
  .social-icons a:hover {
      background: #555;
  }
  
  .back-to-top {
      position: fixed;
      bottom: 20px;
      left: 20px;
      background: #333;
      color: white;
      padding: 10px 15px;
      border-radius: 50%;
      font-size: 24px;
      text-align: center;
      text-decoration: none;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s, background 0.3s;
      z-index: 1000;
  }
  
  .back-to-top.show {
      opacity: 1;
      pointer-events: auto;
  }
  
  .back-to-top:hover {
      background: #555;
  }
  
  .form-group {
    position: relative;
  }

.icon-right {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #aaa;
}
    