.containerr {
  margin: 0 auto;
  padding: 80px 0px px 120px 0px;
  background-color: #f7f7f8;
}

.head {}

.title {
  font-size: 2.5rem;
  color: var(--blackColor);
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 600;
  margin-top: 5rem;
}

input textarea {
  width: 100% !important;
  margin-bottom: 25px !important;
  padding: 20px 20px 20px 20px !important;
  font-size: 1em !important;
  line-height: 1em !important;
  border-style: solid !important;
  border-color: #F7F7F800 !important;
  background-color: rgba(224, 224, 224, 0.566) !important;
}

input {
  width: 100% !important;
  height: 4rem !important;
  margin: 0px 0px 25px 0px !important;
  padding: 20px 20px 20px 20px !important;
  font-size: 1em !important;
  line-height: 1em !important;
  border-style: solid !important;
  border-color: #F7F7F800 !important;
  background-color: rgba(224, 224, 224, 0.566) !important;
}

.hero {
  width: auto;
  margin: 0 2rem;
  height: 60vh;
  position: relative;
  background-image: linear-gradient(rgba(12, 3, 51, 0.3), rgba(12, 3, 51, 0.3));
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero h1 {
  padding-top: 5rem;
  position: absolute;
  font-size: 4rem;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.hero-text {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.conv {
  margin: 0 2rem;
  height: 60vh;
  position: relative;
  background-image: linear-gradient(rgba(12, 3, 51, 0.3), rgba(12, 3, 51, 0.3));
  color: #fff;
  text-align: center;
  overflow: hidden;
  background-image: url(https://res.cloudinary.com/dsshezi20/image/upload/v1761476814/young-black-race-man-with-blueprint-stading-near-glass-building_d2nz2e.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

}

.conv h1 {
  display: flex;
  justify-content: center;
  padding-top: 2rem;
  font-size: 5rem;
  align-items: center;
  color: white;

}

.form {
  width: 65% !important;
  padding: 45px;
  background-color: white;
}

.form-map-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background-color: var(--whiteColor);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .container {
    width: 100% !important;
  }

  .form-map-container {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: var(--textColor);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid gray;
  border-radius: 0.5rem;
  background-color: var(--inputColor);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--PrimaryColor);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-button {
  background-color: var(--PrimaryColor);
  color: var(--whiteColor);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 1rem;

}

.submit-button:hover {
  background-color: var(--HoverColor);
}

/* Reset */
* {
  margin: 0;
  padding: 0px;
  box-sizing: border-box;
}

.ht {
  padding: 45px !important;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Containers */
.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Colors */
.text-green {
  color: #85a768;
}

.text-gray {
  color: #555;
}

/* Top Bar */
.top-bar {
  background: #0c1329;
  color: #fff;
  padding: 8px 0;
  font-size: 14px;
}

.top-bar .social-icons i {
  margin-right: 10px;
  cursor: pointer;
}

.top-bar .links span {
  margin-left: 20px;
  cursor: pointer;
}

/* Header */
.header {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.contact-info {
  display: flex;
  gap: 30px;
  font-size: 14px;
}

.contact-info div {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Nav */
.nav {
  margin-top: 15px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #333;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: #85a768;
}

.btn-dark {
  background: #0c1329;
  color: #fff;
  padding: 8px 20px;
  border-radius: 5px;
  text-decoration: none;
}

/* Page Title */
.page-title {
  background: #f8f8f8;
  text-align: center;
  padding: 60px 0;
}

.page-title h1 {
  font-size: 36px;
}

/* Map */
.map {
  height: 300px;
  background: linear-gradient(to bottom, #5dcfd6, #9ed1c3);
}

/* Contact Section */


.contact-grid {
  max-width: 1190px;
  background-color: white;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}



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

.form input,
.form textarea {
  width: 100%;
  margin-bottom: 25px;
  padding: 20px 20px 20px 20px;
  font-size: 1em;
  line-height: 1em;
  border-style: solid;
  border-color: #F7F7F800;
}

.form textarea {
  width: 100%;
  margin-bottom: 25px;
  padding: 20px 20px 20px 20px;
  font-size: 1em;
  line-height: 1em;
  border-style: solid;
  border-color: #F7F7F800;
  background-color: rgba(224, 224, 224, 0.566);
  height: 150px;
  resize: none;
}

.btn-green {
  background: #DAA520;
  color: #fff;
  border: none;
  cursor: pointer;
  width: 37rem;
  height: 3rem;
  margin-left: 15px;
}

.btn-green:hover {
  background: black;
  color: white;
}

/* Info Box */
.info-box {
  width: 35.911% !important;
  background: #0c1329;
  color: #fff;
  padding: 30px;
  margin-top: 12%;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.info-box h3 {
  margin-bottom: 40px;
  text-align: center;
}

.info-box .name i {
  margin-right: 10px;
  cursor: pointer;
  font-size: 3rem;
}

.info-box .name {
  margin-top: 5rem;
  display: flex;
  justify-content: space-between;
}

.info-box .p {
  text-align: start;
  margin-top: 5rem;
}

.info-box .address {
  margin-top: 5rem;
}

.info-box .address h4 {
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  background: #f8f8f8;
  padding: 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer h4 {
  margin-bottom: 15px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul a {
  text-decoration: none;
  color: #555;
}

.footer ul a:hover {
  color: #85a768;
}

.copy {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #777;
}


.map-container {
  height: 400px;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--greyText);
}

/* Add smooth transitions */
input,
textarea,
button {
  transition: all 0.3s ease;
}

/* Add focus styles */
input:focus,
textarea:focus {
  box-shadow: 0 0 0 2px rgba(var(--PrimaryColor), 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .content-container {
    padding: 1rem;
  }

  .title {
    font-size: 2rem;
  }

  .form-map-container {
    padding: 1rem;
  }

  .contact-form {
    display: grid;
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .form-group {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0.5rem;
  }

  .flex-between {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    padding: 1rem;
  }

  .contact-info {
    display: grid;
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .contact-info div {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    padding: 10px;
  }

  .nav-links {
    display: grid;
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    width: 100% !important;
  }

  .ht {
    padding: 1px !important;
    width: 100% !important;
  }

  .info-box .address {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.form h2 {
    margin: 2rem 4rem;
}

  .btn-green {
    width: 60%;
    height: 2rem;
    margin-left: 5rem;
  }

  .form {
    width: 100% !important;
    padding: 1px;
    background-color: white;
  }
  input {
        
    }

  .inputt{
    display: block !important; 
  }



  .info-box {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    width: 100% !important;
    padding: 1rem;
  }

  .info-box .name {
    display: flex;
    grid-template-columns: 1fr;
    padding: 1rem;
  }
}