/* Navbar1 Styling */
.navbar1 {
  background-color: #fff;
  padding: 10px 20px;
  border-bottom: 2px solid #ddd;
}

.navbar1-container {
  display: flex;
  justify-content: space-between;
  /* Space between logo and contact section */
  align-items: center;
  /* max-width: 1200px; */
  /* margin: auto; */
  width: 100%;
}

/* Logo Section */
.navbar1-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}


.bottom-border {
  border-bottom: 1px solid #fff !important;
}

.calltonewacction {
  text-align: center;
  background-color: #f3f3f3;
  padding: 30px;
  margin-top: 60px;
}


.navbar1-logo img {
  width: 250px;
  height: 50px;
}

.navbar1-logo span {
  font-size: 22px;
  font-weight: bold;
  color: #c00;
}

/* Contact Section */
.navbar1-contact {
  display: flex;
  gap: 30px;
  margin-left: auto;
  /* Align contact section to the right */
}

/* Contact Item */
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Icons */
.contact-item i {
  font-size: 24px;
}

/* Text Layout */
.contact-text {
  display: flex;
  flex-direction: column;
}

.contact-title {
  font-size: 18px;
  font-weight: bold;
  color: #000000;
  line-height: 1;
}

.contact-subtitle {
  font-size: 16px;
  color: #666;
  line-height: 1;
  margin: 3px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar1-container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .navbar1 {
    padding: 0px;
  }

  .navbar1-contact {
    flex-direction: row;
    gap: 8px;
    margin-left: unset;
  }

  .contact-item {
    justify-content: center;
    gap: 8px;
  }
}