/* General Styles */
:root {
  --primary-color: #ea761d;
  --primary-hover: #d87a1d;
  --muted-text: #64748b;
  --background: #ffffff;
  --border-color: #e5e7eb;
  --header-height: 4rem;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow-x: hidden;
}

        /* Navigation Styles */
        .nav {
          background: white;
          padding: 1rem 2rem;
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          position: fixed;
          width: 100%;
          top: 0;
          z-index: 1000;
      }

      .nav-container {
          max-width: 1200px;
          margin: 0 auto;
          display: flex;
          justify-content: space-between;
          align-items: center;
      }

      .logo {
          display: flex;
          align-items: center;
          gap: 0.5rem;
          text-decoration: none;
          color: #000;
          font-weight: bold;
          font-size: 1.5rem;
      }

      .logo img {
          height: 40px;
      }

      .logo span {
          color: #ff6b1a;
      }

      .nav-links {
          display: flex;
          gap: 2rem;
          align-items: center;
      }

      .nav-links a {
          text-decoration: none;
          color: #333;
          font-weight: 600;
          transition: color 0.2s;
      }

      .nav-links a:hover {
          color: #ff6b1a;
      }

      .contact-btn {
          background: #f66518;
          color: white;
          padding: 0.5rem 1.25rem;
          border-radius: 6px;
          border: none;
          font-weight: 600;
          cursor: pointer;
          transition: background-color 0.2s;
      }

      .contact-btn:hover {
          background: #e85d0c;
      }

      .menu-toggle {
          display: none;
          font-size: 1.5rem;
          cursor: pointer;
      }


/* Contact Page Container */
.container {
  display: flex;
  flex-wrap: wrap; /* Responsive layout for smaller screens */
  width: 90%;
  max-width: 1100px;
  background: #ffffff;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-top: 5rem;
}

/* Contact Info Section */
.contact-info {
  background: linear-gradient(135deg, #ec833d, #ff8c33);
  color: white;
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex;
}

.contact-info h2 {
  margin: 15px 50px;
  font-size: 28px;
  margin-bottom: 25px;
}

.contact-info p {
  margin: 15px 50px;
  font-size: 16px;
}


/*--social-icons---*/
.social-icons {
  flex: 1;
  display: flex;
  justify-content: centre;
  align-items: center;
  margin: 15px 50px;
  gap: 50px;
  margin-top: 30px;
}

.icon a {
  color:#fffdfb;
  font-size: 35px;
  transition: color 0.3s ease;
  text-decoration: none;
}

.icon a:hover {
  color: rgb(0, 0, 0);
}

/* Contact Form Section */
.contact-form {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form h2 {
  font-size: 28px;
  margin-bottom: 25px;
}

form input,
form textarea {
  width: 100%;
  padding: 15px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

form button {
  padding: 15px;
  background: #ff6600;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
}

form button:hover {
  background: #ff8c33;
}

footer {
  background-color: #f3f4f6;
  color: #4a5568;
}

.foot-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 2rem;
}

.footer-heading {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.foot-description {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #6b7280;
}

.foot-brand {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.foot-logo {
  width: auto;
  height: 4rem;
}

.brand-highlight {
  color: #2d89ef;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-link {
  display: block;
  text-decoration: none;
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #2d89ef;
}

.footer-address {
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer-contact {
  color: #2d89ef;
  text-decoration: none;
  display: inline-block;
  margin-top: 0.5rem;
}

.footer-contact:hover {
  text-decoration: underline;
}

.foot-social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  text-decoration: none;
  color: #6b7280;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.social-icon:hover {
  color: #2d89ef;
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
  font-size: 0.875rem;
}


/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-links.active {
    display: flex;
}

.menu-toggle {
    display: block;
}

.icon a{
  font-size: 25px;
}
  .container {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    padding: 30px;
  }

}

