.logo {
  width: 60px !important;
}

#contact {
  width: 100%;
  height: 100%;
}

.section-header {
  display: block; /* Change to block to center with margin auto */
  width: fit-content; /* Adjust width to fit the content */
  text-align: center;
  margin: 0 auto; /* This will center the element */
  font: 300 60px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 4px;
  border: 2px solid #f36c22; /* Orange border matching the image */
  background-color: #f36c22;
  padding: 5px;
  border-radius: 15px; /* Square border */

}


.contact-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  max-width: 1000px;
}

/* Left contact page */
/* Map container */
#map-container {
  max-width: 400px;
  font-family: "Lato";
  font-weight: 400;
  margin-bottom: 15px;
}

/* Map styling */
#map {
  height: 300px;
  max-width: 400px;
  background-color: #000;
  margin-bottom: 15px;
}

/* Keeping the button styling same as before */
.send-button {
  background-color: #f36e21;

  margin-top: 15px;
  height: 34px;
  width: 400px;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}

.alt-send-button {
  background-color: #f36e21;
  width: 400px;
  height: 34px;
  transition: all 0.2s ease-in-out;
  cursor: auto; /* Changes the cursor to indicate the button is not clickable */
}

.send-text {
  display: block;
  margin-top: 10px;
  font: 700 12px "Lato", sans-serif;
  letter-spacing: 2px;
}

.alt-send-button:hover {
  transform: translate3d(0px, -29px, 0px);
}
#map {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  position: relative;
}

#map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0; /* Optional: to remove the default border */
}

/* Begin Right Contact Page */
.direct-contact-container {
  max-width: 400px;
}

/* Location, Phone, Email Section */
.contact-list {
  list-style-type: none;
}

/* General list item styling */
.list-item {
  line-height: 4;
  color: #f36e21;
  margin: 10px;
  display: flex; /* Use flexbox for inline alignment */
  align-items: center; /* Center-align icons and text vertically */
  direction: rtl; /* Ensure RTL direction for list items */
  justify-content: flex-start; /* Start alignment for content */
}

/* Adjusting icon and text spacing */
.contact-text {
  font: 300 18px "Lato", sans-serif;
  letter-spacing: 1.9px;
  color: black;
  margin-left: 10px; /* Space between icon and text in RTL */
}

.contact-list .fa {
  margin-left: 10px; /* Adjust margin as needed for spacing in RTL */
  display: inline-block; /* Ensure icons remain inline */
}

/* Specific adjustments for individual items */
.place {
  margin-right: 10px; /* Space adjustment for RTL */
}

.phone,
.mobile {
  display: inline-block;
}

.phone,
.mobile {
  margin-right: 10px; /* Space adjustment for RTL */
}

/* Link styling */
.contact-text a {
  color: black;
  text-decoration: none;
  transition-duration: 0.2s;
}

.contact-text a:hover {
  color:#f36e21;
  text-decoration: none;
}

/* Social Media Icons */
.social-media-list {
  display: flex; /* Use flexbox for alignment */
  justify-content: center; /* Center the icons horizontally */
  align-items: center; /* Center the icons vertically (if necessary) */
  font-size: 22px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  list-style-type: none; /* Remove default list styling */
}

.social-media-list li {
  position: relative;
  display: inline-flex; /* Use inline-flex to align items inline and centered */
  justify-content: center; /* Center the icon inside the circle */
  align-items: center; /* Vertically center the icon */
  height: 60px;
  width: 60px;
  margin: 10px 3px;
  line-height: 60px;
  border-radius: 50%;
  color: #fff;
  background-color: #f36e21;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.social-media-list li a {
  color: #fff;
  text-align: center; /* Center text (icon) inside each li */
}

.social-media-list li:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 0 1px #fff;
  transition: all 0.2s ease-in-out;
}

.social-media-list li:hover {
  background-color: #fff;
}

.social-media-list li:hover:after {
  opacity: 1;
  transform: scale(1.12);
  transition-timing-function: cubic-bezier(0.37, 0.74, 0.15, 1.65);
}

.social-media-list li:hover a {
  color: #000;
}

hr {
  border-color: rgba(255, 255, 255, 0.6);
}

/* Begin Media Queries*/
@media screen and (max-width: 850px) {
  .contact-wrapper {
    display: flex;
    flex-direction: column;
  }
  .direct-contact-container,
  .form-horizontal {
    margin: 0 auto;
  }

  .direct-contact-container {
    margin-top: 60px;
    max-width: 300px;
  }
  .social-media-list li {
    height: 60px;
    width: 60px;
    line-height: 60px;
  }
  .social-media-list li:after {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
}

@media screen and (max-width: 569px) {
  .direct-contact-container,
  .form-wrapper {
    float: none;
    margin: 0 auto;
  }
  .form-control,
  textarea {
    margin: 0 auto;
  }

  .name,
  .email,
  textarea {
    width: 280px;
  }

  .direct-contact-container {
    margin-top: 60px;
    max-width: 280px;
  }
  .social-media-list {
    left: 0;
  }
  .social-media-list li {
    height: 55px;
    width: 55px;
    line-height: 55px;
    font-size: 2rem;
  }
  .social-media-list li:after {
    width: 55px;
    height: 55px;
    line-height: 55px;
  }
}

@media screen and (max-width: 410px) {
  .send-button {
    width: 99%;
  }
}


footer {
	background: #1E1E1E;
	padding: 20px 0;
}
.single-content {
	text-align: center;
	padding: 115px 0;
}
.single-box p {
	color: #fff;
	line-height: 1.9;
}
.single-box h3 {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
}
.single-box .card-area i {
	color: #ffffff;
	font-size: 20px;
	margin-right: 10px;
}
.single-box ul {
	list-style: circle;
  color: white;
	padding: 0;
  margin: 15px;
}
.single-box ul li a {
	text-decoration: none;
	color: #fff;
	line-height: 2.5;
	font-weight: 100;
}
.single-box h2 {
	color: #fff;
	font-size: 20px;
	font-weight: 700;
}
#basic-addon2 {
	background: #fe1e4f;
	color: #fff;
}
.socials i {
	font-size: 18px;
	margin-right: 15px;
}
@media (max-width: 767px) {
	.single-box {
		margin-bottom: 50px;
	}
  .single-box {
    text-align: center;
  }
  
  .single-box  a {
    display: inline-block;
    margin-top: 10px;

  } 
  .single-box ul {
    list-style: none;
  
  }
}
@media (min-width: 768px) and (max-width: 991px) {
	.single-box {
		margin-bottom: 50px;
	}

  .single-box {
    text-align: center;
  }
  
  .single-box  a {
    display: inline-block;
    margin-top: 10px;

  } 
  .single-box ul {
    list-style: none;
  
  }
  
}
.socials i {
  display: inline-block;
  width: 40px; /* Adjust the size as needed */
  height: 40px; /* Adjust the size as needed */
  line-height: 40px;
  text-align: center;
  border: 1px solid #ccc; /* Optional: Adds a border to the square */
  border-radius: 5px; /* Optional: Adjusts the corners (0px for a perfect square) */
  margin: 2px; /* Optional: Adds space between the icons */
  font-size: 20px;

}
 .call {
  text-align: center;
}

.call  a {
  display: inline-block;
  margin-top: 10px;
} 
.callus{
border: 2px solid #f36e21;
border-radius: 5px;
padding: 3px;
color: white;
text-decoration: none;


}
.callus:hover{
color: white;

}
.main-hr{

width: 80%;
border: solid 1px  #f36e21;
  
}
h2{
color: #f36e21 !important;
font-size: 16px !important;

}