* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background: #f8f9fa;
    color: #333;
  }
  
  header {
    background: #000;
    padding: 15px 0;
  }
  
  .container {
    max-width: 1140px;
    margin: auto;
    padding: 0 15px;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .navbar a.logo {
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
  }
  
  .nav-links a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: #ffcc00;
  }
  
  .breadcrumb_section {
    background: #eee;
    padding: 20px 0;
  }
  
  .breadcrumb_section h1 {
    font-size: 28px;
    font-weight: 600;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .contact_wrap {
    background: #fff;
    padding: 25px;
    margin-bottom: 30px;
    border-left: 5px solid #000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
  
  .contact_icon {
    font-size: 24px;
    color: #000;
    margin-bottom: 10px;
  }
  
  form .form-control {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  button.btn {
    background: #000;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
  }
  
  button.btn:hover {
    background: #333;
  }
  
  #map {
    background: #ddd;
    height: 100%;
  }
  
  footer {
    background: #111;
    color: #bbb;
  }
  
  .footer_top {
    padding: 40px 0;
  }
  
  .footer_top h4,
  .footer_top h6 {
    color: #fff;
  }
  
  .footer_top ul {
    list-style: none;
    padding-left: 0;
  }
  
  .footer_top ul li {
    margin-bottom: 8px;
  }
  
  .footer_top a {
    color: #bbb;
    text-decoration: none;
  }
  
  .footer_top a:hover {
    color: #fff;
  }
  
  .social-icons {
    text-align: right;
  }
  
  .social-icons a {
    color: #bbb;
    margin-left: 15px;
    font-size: 18px;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: #fff;
  }
  
  .bottom_footer {
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #333;
  }
  
  @media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .nav-links {
      margin-top: 10px;
    }
  
    .social-icons {
      text-align: center;
      margin-top: 20px;
    }
  }
  

/* NEWSLETTER */
.newsletter {
    background: #fffbe6;
    padding: 50px 0;
    text-align: center;
  }
  
  .newsletter_box h2 {
    font-size: 26px;
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .newsletter_box p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .newsletter_form {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .newsletter_form input[type="email"] {
    padding: 12px 15px;
    width: 300px;
    max-width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .newsletter_form button {
    padding: 12px 25px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
  }
  
  .newsletter_form button:hover {
    background-color:#e91e63
  }
  

#map iframe {
    width: 100%;
    height: 350px;
    border: none;
}
  