body{
    margin: 0px;
    padding: 0px;
}

.navbar {
    border: 1px white solid;
    position: fixed; /* Fix the navbar to the top */
    top: 0;
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Adjust the left position to center the navbar */
    width: 100%; /* Full width */
    z-index: 100; /* Ensure it's above other content */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    padding: 20px;
    border-bottom-left-radius: 80px; 
    border-bottom-right-radius: 80px;
    margin: 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Optional shadow */
  }
  
  .nav-list {
    display: flex;
    list-style: none;
  }
  
  .nav-list li {
    margin: 0 15px;
  }
  
  .nav-list a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    letter-spacing: 0.05em;
    transition: all 0.3s ease-in-out;
  }
  
  .nav-right {
    display: flex;
    align-items: center;
  }
  
  .nav-right a {
    color: white;
    margin-left: 20px;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
  }
  
  a:hover {
    border: none;
    padding: 10px;
    border-radius: 20px;
    background-color: white;
    box-shadow: 0 0 20px 0 white;
    color: black;
  }
  
  .search-icon::before {
    content: "";
    display: inline-block;
    background-image: url("../image/search.png");
    background-size: cover;
    height: 22px;
    width: 22px;
  }
  
  .login, .signup {
    text-transform: uppercase;
    border: 2px solid white;
    border-radius: 20px;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
  }
  
  .login:hover, .signup:hover {
    background: white;
    color: black;
    font-size: 20px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  }
  
  .signup {
    border-left: 2px solid white;
    padding-left: 20px;
  }
  
  
  
  
  
  
  







  footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 50px 0;
    font-family: 'Arial', sans-serif;
    position: relative;
    overflow: hidden;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    justify-content: space-between;
    gap: 40px;
  }
  
  /* Left Side: Company Info */
  .footer-left {
    flex: 1;
    min-width: 300px;
  }
  
  .footer-left h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #f39c12;
    position: relative;
  }
  
  .footer-left p {
    margin-bottom: 20px;
    color: #bdc3c7;
  }
  
  blockquote {
    background-color: #34495e;
    padding: 15px;
    border-left: 5px solid #f39c12;
    font-style: italic;
    color: #ecf0f1;
  }
  
  footer blockquote p {
    margin: 0;
  }
  
  /* Right Side: Links, Contact, and Map */
  .footer-right {
    flex: 2;
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
  
  .footer-links, .footer-contact, .footer-map {
    flex: 1;
    min-width: 200px;
  }
  
  .footer-links h4, .footer-contact h4, .footer-map h4 {
    font-size: 20px;
    color: #f39c12;
    margin-bottom: 15px;
    position: relative;
  }
  
  .footer-links ul, .footer-contact ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links ul li, .footer-contact ul li {
    margin-bottom: 10px;
  }
  
  .footer-links ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links ul li a:hover {
    color: #f39c12;
    text-decoration: underline;
  }
  
  .footer-contact ul li {
    color: #bdc3c7;
  }
  
  .footer-map iframe {
    width: 100%;
    height: 150px;
    border: none;
    margin-top: 10px;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
  
  .footer-map iframe:hover {
    transform: scale(1.05);
  }
  
  /* Social Icons and Footer Bottom */
  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #7f8c8d;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f39c12;
    border-radius: 50%;
    color: #fff;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .social-icon:hover {
    background-color: #d35400;
    transform: scale(1.1);
  }
  
  .footer-bottom p {
    color: #bdc3c7;
    font-size: 14px;
  }
  
  
  


  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
  }
  
  .contact-main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url("../image/Contact\ us\ 2.jpg");
    background-repeat: no-repeat;
    background-size:100% 100% ;
    padding: 50px;
  }
  
  .contacts {
    display: flex;
    justify-content: space-between;
    width: 70%;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    padding: 40px;
    border: 2px solid rgba(255, 125, 150, 0.3);
  }
  
  .contact.left, .contact.right {
    width: 48%;
  }
  

  .contact.left h1 {
    color: #333;
    margin-bottom: 30px;
    font-size: 48px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  input[type="text"],
  input[type="email"],
  textarea {
    width: 100%;
    padding: 18px;
    margin-bottom: 25px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 18px;
    background-color: #fff;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  input[type="text"]::placeholder,
  input[type="email"]::placeholder,
  textarea::placeholder {
    color: #666;
  }
  
  input[type="text"]:focus,
  input[type="email"]:focus,
  textarea:focus {
    outline: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
  }
  
  textarea {
    height: 200px;
    resize: none;
  }
  
  input[type="text"]:hover,
  input[type="email"]:hover,
  textarea:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  }
  
  /* Button Styling */
  button {
    padding: 18px 20px;
    background-color: #ff7f50;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
    text-align: center;
  }
  
  button:hover {
    background-color: #ff5722;
    transform: translateY(-3px);
  }
  
  button:focus {
    outline: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }
  
  .contact.right button {
    margin-top: 15px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .contacts {
      flex-direction: column;
      width: 90%;
    }
  
    .contact.left,
    .contact.right {
      width: 100%;
    }
  
    .contact.right button {
      width: 100%;
    }
  }
  