h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", "Oswald", sans-serif;
  font-weight: 600;
}
p {
  font-family: "Poppins", "Roboto Condensed", sans-serif;
  font-weight: 400;
  line-height: 1.6;
}
div,
span {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

* {
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.7;
}

/* Header Styles */
.custom-header {
  background: #6e2e1e;
  color: white;
  padding: 10px 0;
}

.custom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.custom-left,
.custom-right {
  display: flex;
  align-items: center;
}

/* Left Section (Phone & Email) */
.custom-left i {
  margin-right: 8px;
  background: white; /* Circle background */
  padding: 8px;
  border-radius: 50%;
  color: #333333;
  transition: background 0.3s ease-in-out;
  font-size: 20px;
}

.custom-left a {
  margin-right: 20px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.custom-left a:hover {
  color: #f1e5e5;
}

.custom-left i:hover {
  background: #ffebeb; /* Darker shade on hover */
}

/* Social Icons - Right Side */
.custom-social-icon {
  text-decoration: none;
  font-size: 18px;
  margin-right: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
}

/* Background colors for icons */
.custom-social-icon i {
  background: #ececec; /* Default gray */
  padding: 10px;
  border-radius: 50%;
  transition: background 0.3s ease-in-out, transform 0.3s;
}

/* Hover Effects */
.custom-social-icon:hover i {
  transform: scale(1.1);
}

/* Facebook */
.custom-social-icon.text-primary:hover i {
  background: #1877f2;
  color: white;
}

/* Instagram */
.custom-social-icon.text-danger:hover i {
  background: #e4405f;
  color: white;
}

/* Twitter */
.custom-social-icon.text-primary:nth-child(3):hover i {
  background: #1da1f2;
  color: white;
}

/* LinkedIn */
.custom-social-icon.text-primary:nth-child(4):hover i {
  background: #0077b5;
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .custom-header {
    display: none;
  }
  .custom-container {
    flex-direction: column;
    text-align: center;
  }

  .custom-left,
  .custom-right {
    margin: 5px 0;
  }

  .custom-left {
    display: flex;
    flex-direction: column;
  }
}
