/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body.co {
  background: #bcd4f6;
  color: #333;
  line-height: 1.6;
}

/* Navigation Bar */
nav.ayan {
  background: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
  gap: 30px;
}

nav.ayan a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

nav.ayan a:hover {
  color: orange;
  transform: scale(1.2);
}

/* Contact Section */
.contac {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
}

.container {
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 100%;
  max-width: 1000px;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Contact Info (Left Side) */
.contactinfo .bo {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contactinfo .icon {
  min-width: 50px;
  height: 50px;
  background: orange;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  margin-right: 15px;
}

.contactinfo .text h3 {
  color: #222;
  font-size: 18px;
  margin-bottom: 5px;
}

.contactinfo .text p {
  font-size: 15px;
  color: #555;
}

/* Contact Form (Right Side) */
.contactform h2 {
  font-size: 24px;
  color: #222;
  margin-bottom: 20px;
}

.contactform .inputBox {
  margin-bottom: 20px;
}

.contactform input,
.contactform textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
}

.contactform input:focus,
.contactform textarea:focus {
  border-color: orange;
  box-shadow: 0 0 8px rgba(255,165,0,0.4);
}

.contactform textarea {
  min-height: 120px;
  resize: none;
}

/* Submit Button */
#in {
  background: orange;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

#in:hover {
  background: #e69500;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
    padding: 25px;
  }

  nav.ayan {
    flex-wrap: wrap;
    gap: 15px;
  }
}
