* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.7;
}

/* Header Styles */
.custom-header {
  background: #c30e0e;
  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: #333;
  transition: background 0.3s ease-in-out;
}

.custom-left a {
  margin-right: 20px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.custom-left a:hover {
  color: #cccccc;
}

.custom-left i:hover {
  background: #8c0202; /* 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 */

/* Hover Effects */
.custom-social-icon:hover i {
  transform: scale(1.1);
}

/* Facebook */
/* 🔵 Facebook */
.custom-social-icon.facebook {
  background-color: #1877f2; /* official blue */
}
.custom-social-icon.facebook:hover {
  background-color: #0d5fd6;
  transform: scale(1.1);
}

/* 🟣 Instagram (gradient style) */
.custom-social-icon.instagram {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}
.custom-social-icon.instagram:hover {
  filter: brightness(1.2);
  transform: scale(1.1);
}

/* 🔴 YouTube */
.custom-social-icon.youtube {
  background-color: #ff0000;
}
.custom-social-icon.youtube:hover {
  background-color: #cc0000;
  transform: scale(1.1);
}

/* 🔵 LinkedIn */
.custom-social-icon.linkedin {
  background-color: #0077b5;
}
.custom-social-icon.linkedin:hover {
  background-color: #005f8d;
  transform: scale(1.1);
}
/* Responsive Design */
@media (max-width: 768px) {
  .custom-container {
    flex-direction: column;
    text-align: center;
  }

  .custom-left,
  .custom-right {
    margin: 5px 0;
  }

  .custom-left {
    display: flex;
    flex-direction: column;
  }
}
