/* Contact Page Styles */
body {
  font-family: 'Open Sans', sans-serif;
  background-color: #f8f9fa;
}

/* Hero Section */
.contact-hero {
  background: linear-gradient(135deg, #007bff 0%, #00ff88 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  color: white;
  padding: 80px 20px;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  text-align: center;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.contact-hero h1 {
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  margin-bottom: 1rem;
}

.contact-hero p {
  font-size: 1rem;
}

/* Contact Section */
.contact-section {
  padding: 40px 20px;
}

.contact-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 20px;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.form-control {
  border-radius: 10px;
  padding: 12px 20px;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

.contact-info p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info i {
  width: 30px;
  color: #007bff;
  transition: transform 0.3s ease;
}

.contact-info a:hover i {
  transform: scale(1.2);
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  position: relative;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.btn-primary {
  background: #007bff;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 0.95rem;
}

.btn-primary:hover {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

/* Responsive Design */
@media (min-width: 576px) {
  .contact-hero {
    padding: 100px 20px;
  }

  .contact-hero h1 {
    font-size: 2.5rem;
  }

  .contact-hero p {
    font-size: 1.1rem;
  }

  .contact-card {
    padding: 25px;
  }

  .form-control {
    font-size: 1rem;
  }

  .btn-primary {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .contact-hero {
    padding: 120px 20px;
  }

  .contact-hero h1 {
    font-size: 3rem;
  }

  .contact-card {
    padding: 30px;
    margin-bottom: 0;
  }

  .btn-primary {
    width: auto;
  }
}

@media (min-width: 992px) {
  .contact-hero h1 {
    font-size: 3.5rem;
  }

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

@media (min-width: 1200px) {
  .contact-hero {
    padding: 150px 20px;
  }

  .contact-section {
    padding: 80px 20px;
  }
}
        /* Contact Page Styles */
        body {
          font-family: 'Open Sans', sans-serif;
          background-color: #f8f9fa;
      }

      /* Hero Section */
      .contact-hero {
          background: linear-gradient(135deg, #007bff 0%, #00ff88 100%);
          background-size: 400% 400%;
          animation: gradientShift 15s ease infinite;
          color: white;
          padding: 80px 20px;
          clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
          text-align: center;
      }

      @keyframes gradientShift {
          0% { background-position: 0% 50%; }
          50% { background-position: 100% 50%; }
          100% { background-position: 0% 50%; }
      }

      .contact-hero h1 {
          font-size: 2rem;
          font-weight: 700;
          text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
          margin-bottom: 1rem;
      }

      .contact-hero p {
          font-size: 1rem;
      }

      /* Contact Section */
      .contact-section {
          padding: 40px 20px;
      }

      .contact-card {
          background: white;
          border-radius: 15px;
          padding: 20px;
          box-shadow: 0 10px 30px rgba(0,0,0,0.1);
          transition: transform 0.3s ease;
          margin-bottom: 20px;
      }

      .contact-card:hover {
          transform: translateY(-5px);
      }

      .form-control {
          border-radius: 10px;
          padding: 12px 20px;
          border: 2px solid #e9ecef;
          transition: all 0.3s ease;
          font-size: 0.95rem;
      }

      .form-control:focus {
          border-color: #007bff;
          box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
      }

      .contact-info p {
          font-size: 0.95rem;
          margin-bottom: 1.5rem;
          display: flex;
          align-items: center;
          gap: 10px;
      }

      .contact-info i {
          width: 30px;
          color: #007bff;
          transition: transform 0.3s ease;
      }

      .contact-info a:hover i {
          transform: scale(1.2);
      }

      .map-container {
          border-radius: 15px;
          overflow: hidden;
          box-shadow: 0 4px 15px rgba(0,0,0,0.1);
          position: relative;
          padding-top: 56.25%; /* 16:9 Aspect Ratio */
      }

      .map-container iframe {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          border: 0;
      }

      .btn-primary {
          background: #007bff;
          border: none;
          padding: 12px 30px;
          border-radius: 25px;
          transition: all 0.3s ease;
          width: 100%;
          font-size: 0.95rem;
      }

      .btn-primary:hover {
          background: #0056b3;
          transform: translateY(-2px);
          box-shadow: 0 5px 15px rgba(0,123,255,0.3);
      }

      /* Responsive Design */
      @media (min-width: 576px) {
          .contact-hero {
              padding: 100px 20px;
          }

          .contact-hero h1 {
              font-size: 2.5rem;
          }

          .contact-hero p {
              font-size: 1.1rem;
          }

          .contact-card {
              padding: 25px;
          }

          .form-control {
              font-size: 1rem;
          }

          .btn-primary {
              font-size: 1rem;
          }
      }

      @media (min-width: 768px) {
          .contact-hero {
              padding: 120px 20px;
          }

          .contact-hero h1 {
              font-size: 3rem;
          }

          .contact-card {
              padding: 30px;
              margin-bottom: 0;
          }

          .btn-primary {
              width: auto;
          }
      }

      @media (min-width: 992px) {
          .contact-hero h1 {
              font-size: 3.5rem;
          }

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

      @media (min-width: 1200px) {
          .contact-hero {
              padding: 150px 20px;
          }

          .contact-section {
              padding: 80px 20px;
          }
      }
      /* Add to your existing styles */
html, body {
overflow-x: hidden; /* Prevent horizontal scroll */
width: 100%; /* Ensure full width containment */
}

.contact-hero {
overflow: hidden; /* Contain the clip-path animation */
}

/* Adjust clip-path values */
.contact-hero {
clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
}

@media (min-width: 768px) {
.contact-hero {
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}
}
