body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to right, #c5c5c5, #b5b5b5);
  color: #333;
}

.contact-section {
  background: #f4f7fc;
  padding: 60px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact-info {
  flex: 1;
  padding: 40px;
  background: #273d4e;
  color: #fff;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  margin: 15px 0;
  font-size: 1rem;
}

.info-item i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  color: #fff;
  margin-right: 15px;
  font-size: 1.3rem;
  transition: transform 0.3s;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: var(--hover-color, #f1f1f1);
}

.contact-form {
  flex: 1;
  padding: 40px;
}

.contact-form h3 {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  font-size: 1rem;
}

.contact-btn {
  background: #273d4e;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-btn:hover {
  background: #0056b3;
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    padding: 30px 20px;
  }
}


/* Footer */
.simple-footer {
  background-color: #111;
}

.social-icons a {
  font-size: 1.6rem;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.3);
}

.social-icons a.twitter:hover {
  color: #1da1f2;
}

.social-icons a.facebook:hover {
  color: #1877f2;
}

.social-icons a.instagram:hover {
  color: #e1306c;
}

.social-icons a.linkedin:hover {
  color: #0077b5;
}

.social-icons a.youtube:hover {
  color: #ff0000;
}


.footer-dropdown {
  position: relative;
  display: inline-block;
}

.footer-dropdown-menu {
  position: absolute;
  top: 100%;
  /* shows below the link */
  left: 0;
  background-color: #343a40;
  padding: 10px 0;
  border-radius: 5px;
  display: none;
  z-index: 1000;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-dropdown:hover .footer-dropdown-menu,
.footer-dropdown-menu:hover {
  display: block;
}

.footer-dropdown-menu li {
  list-style: none;
  padding: 5px 20px;
}

.footer-dropdown-menu a {
  color: white;
  text-decoration: none;
  display: block;
}

.footer-dropdown-menu a:hover {
  color: #ffc107;
  text-decoration: underline;
}

.footer-dropdown .dropdown-toggle {
  color: white;
  cursor: pointer;
  display: inline-block;
  padding: 5px 10px;
}

/*header*/
.header {
  background-color: #273d4e !important;
}


/* Footer Navigation Link Styles */
.footer-logo-img {
  max-height: 170px;
  transition: transform 0.3s ease;
}

.footer-logo-img:hover {
  transform: scale(1.2);
  cursor: pointer;
}

.footer-links a {
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #ffffffcc;
}

.footer-links a:hover::after {
  width: 80%;
}

.simple-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}