* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  nav {
    background-color: rgb(247, 241, 241);
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    position: fixed;
    width: 100%;
  }
  
  nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  
  }
  
  
  nav ul img {
    max-width: 160px;
    margin-top: 0px;
    display: block;
  }
  
  nav li:not(:first-child) {
    height: 50px;
  }
  
  nav a {
    height: 100%;
    padding: 0 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: red;
    font-weight: bold;
    font-size: 22px;
  
  }
  
  nav a:hover {
    background-color: rgb(202, 199, 199);
  
  }
  
  nav li:first-child {
    margin-right: auto;
  
  }
  
  .sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: rgba(163, 167, 164, 0.205);
    backdrop-filter: blur(25px);
    box-shadow: -10px 0 10px black rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: absolute;
  }
  .k-img{
    max-width: 100%;
    height: auto;
    padding-top: 8px;
  
  }
  .k-img:hover{transform: scale(1.05);
    transition: transformation 0.4s ease-in-out;
  }
  
  .sidebar li {
    width: 100%;
  
  }
  
  .sidebar a {
    width: 100%;
  }
  
  @media(max-width: 800px) {
    .hideonmobile {
      display: none;
    }
  }
  
  @media(max-width: 400px) {
    .sidebar {
      width: 100%;
      background-color: black;
    }
  }

  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f9f9f9;
    color: #333;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0px auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 20px;
}

.contact-image {
    flex: 1;
    max-width: 50%;
    background-color: #f2f2f2;
    padding-top: 90px;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form {
    flex: 1;
    max-width: 50%;
    padding: 30px;
}

.contact-form h2 {
    margin-bottom: 15px;
    font-size: 24px;
    color: #333;
}

.contact-form p {
    margin-bottom: 20px;
    color: #666;
    font-size: 16px;
}

.contact-form form label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-weight: bold;
}

.contact-form form input,
.contact-form form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
}

.contact-form form input:focus,
.contact-form form textarea:focus {
    border-color: #007BFF;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.2);
}

.contact-form form button {
    background-color: #007BFF;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.contact-form form button:hover {
    background-color: #0056b3;
}

#thankYouMessage {
    display: none;
    color: green;
    font-size: 18px;
    margin-top: 15px;
    font-weight: bold;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-image, .contact-form {
        max-width: 100%;
    }
}


.social-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 3rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.social-icon {
  color: #555;
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}

.social-icon:hover {
  color: #0073e6;
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 600px) {
  .social-container {
    flex-direction: flex;
  }
}



footer{
  align-items: center;
  justify-content: center;
  background-color: #b71c1c;
  color: #f1ecec;
  padding: 20px;
  font-size: 15px;
}




