 .navbar{
        padding: 54px 100px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #252525;
    }
    .nav-item{
        display: flex;
        align-items: center;
        gap: 76px;
    }
    .nav-item a {
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    position: relative;
    font-size: 18px;
    font-family: 'Manrope', sans-serif; 
    line-height: 29.4px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-item a:hover {
    color: #40ADE3;
    transform: translateY(-2px);
}

   
.nav-item a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -38px;
  top: 50%;
  transform: translateY(-50%);
  height: 42px;
  width: 1px;
  background-color: #737373; 
}
.about{
    margin-bottom: 200px;
}
.sec-4{
    margin-bottom: 150px;
}
.contact-section {
  padding: 100px 0;
 
}

.contact-container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 60px;
  padding: 0 50px;
}

.contact-image img {
  width: 100%;
  height: 100%;
  max-width: 500px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-content {
  flex: 1;
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-text {
  margin-bottom: 40px;
}

.contact-text h1 {
  font-family: 'Barlow', sans-serif;
  font-size: 42px;
  color: #252525;
}

.contact-text p {
  color: #555;
  font-size: 18px;
  line-height: 1.6;
  margin-top: 10px;
}

.contact-form .form-row {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
}

.input-group {
  flex: 1;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 16px 25px;
  font-size: 17px;
  font-family: 'Barlow', sans-serif;
  border: 1.5px solid #ccc;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-group input, .input-group select {
    width: 100%;
    padding: 16px 25px;
    font-size: 17px;
    font-family: 'Barlow', sans-serif;
    border: 1.5px solid #ccc;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.3s 
ease, box-shadow 0.3s 
ease;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
  color: #1E1E1E;
  opacity: 0.37;
  text-transform: capitalize;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #40ADE3;
  box-shadow: 0 0 6px rgba(64, 173, 227, 0.4);
}

.contact-btn {
    margin-top: 50px;
  background: #40ADE3;
  color: #fff;
  border: none;
  padding: 16px 60px;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Barlow', sans-serif;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #252525;
  transform: translateY(-3px);
}

/* ✅ Responsive Design */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    padding: 0 20px;
  }

  .contact-image img {
    max-width: 100%;
  }

  .contact-content {
    padding: 40px 25px;
  }
}


.team-card {
  background: radial-gradient(101.84% 92.52% at 50% 50%, #40ADE3 0%, #235F7D 100%);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.team-card:hover {
  transform: translateY(-6px);
}

.object-fit-cover {
  object-fit: cover;
}
.card-body {
  padding: 1.75rem;
}
@media (max-width: 767.98px) {
  .team-card {
    flex-direction: column !important;
  }
  .team-card img {
    height: 250px;
  }
}