* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  background-color: #fff;
}

a {
  text-decoration: none;
  color: #ff6347;
}

ul {
  list-style: none;
}

h1,
h2,
h3 {
  font-weight: 600;
}

header {
  background-color: #000;
  padding: 20px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav h1 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

nav h1:hover {
  color: #ff6347;
  transform: scale(1.1);
}

nav ul li a.active {
  color: #ff6347;
  font-weight: 600;
  position: relative;
}

nav ul li a.active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #ff6347;
  left: 0;
  bottom: -5px;
  transition: width 0.3s ease;
}

nav h1::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  background-color: #ff6347;
  left: 0;
  bottom: -5px;
  transition: width 0.3s ease;
}

nav h1:hover::after {
  width: 100%;
}

nav h1 a {
  color: inherit;
  text-decoration: none;
}

nav ul {
  display: flex;
  gap: 20px;
}

nav ul li {
  transition: color 0.3s, transform 0.3s;
}

nav ul li:hover {
  transform: scale(1.1);
}

nav ul li a {
  color: #fff;
  font-weight: 400;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ff6347;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact {
  padding: 100px 20px 60px;
  background-color: #f9f9f9;
  min-height: 100vh;
}

.contact h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  text-align: center;
  color: #333;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.contact-info {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
  color: #ff6347;
  margin-bottom: 20px;
  font-size: 1.5em;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-details p {
  margin-bottom: 15px;
  color: #555;
  display: flex;
  align-items: center;
}

.contact-details i {
  margin-right: 10px;
  color: #ff6347;
  font-weight: bold;
}

.social-media {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #f0f0f0;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #ff6347;
  transform: scale(1.1);
}

.social-icon img {
  width: 20px;
  height: 20px;
}

.contact-form {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
  font-size: 1.5em;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  font-size: 1em;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #ff6347;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background-color: #ff6347;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #ff7f6b;
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-details img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.lang-btn {
    position: absolute;
    top: 80px;
    right: 30px;
    background: #FF6347;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 18px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    z-index: 1100;
}

.lang-btn:hover {
    background: #ff7f6b;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #000;
  color: #fff;
}

@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
  }
}
