body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
}

/* Header with Image */
.contact-header {
  background: url('cable\ image.jpg') center/cover no-repeat;
  height: 300px;
  position: relative;
  color: white;
}

.header-overlay {
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header-overlay h1 {
  font-size: 3rem;
  margin: 0;
}

.header-overlay p {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

/* Main Section Layout */
.contact-main {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3rem 1rem;
  justify-content: center;
}

.left-info {
  flex: 1 1 300px;
  max-width: 400px;
  padding: 1rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.left-info h2 {
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.left-info p {
  margin: 0.5rem 0;
  font-size: 1rem;
}

/* Form Styling */
.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  background-color: #f5f7fa;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
}

/* Form Heading */
.contact-form h2 {
  margin-bottom: 24px;
  font-size: 24px;
  color: #333;
  text-align: center;
}

/* Input + Label Styling */
.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: #555;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: border 0.3s ease;
  font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007BFF;
  outline: none;
}

/* Submit Button */
.contact-form button {
  width: 100%;
  padding: 14px;
  background-color: #007BFF;
  color: white;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #0056b3;
}

/* Form Status */
#form-status {
  margin-top: 16px;
  font-size: 14px;
  text-align: center;
  color: green;
}
/* Google Map */
.map-container {
  height: 400px;
  width: 100%;
  margin-top: 2rem;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
      background: #1a2b40;
      color: #e0e0e0;
      padding: 2rem;
      margin-top: 3rem;
    }

    .footer-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
    }

    .footer-column h4 {
      margin-bottom: 1rem;
      color: #2f71b3;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
    }

    .footer-column ul li {
      margin: 0.5rem 0;
    }

    .footer-column ul li a {
      color: #a0a0a0;
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-column ul li a:hover {
      color:rgb(223, 10, 10);
    }

    .social-icons a {
      margin-right: 10px;
      font-size: 1.2rem;
      color: rgb(205, 212, 210);
      transition: color 0.3s;
    }

    .social-icons a:hover {
      color: rgb(223, 10, 10);
    }