@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.section-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 100vh;
  background-color: #00264d;
  color: white;
  overflow: hidden;
}

.section-content img {
  width: 30%;
}

.section-content header {
  font-size: 40px;
  color: #ffc20e;
  font-weight: 600;
}

.section-content p {
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  max-width: 550px;
  text-align: center;
}

.social_connects {
  display: flex;
  gap: 15px; /* Space between icons */
}

.social_connects a {
  text-decoration: none;
  font-size: 30px; /* Adjust icon size */
  color: #fff; /* Default color */
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover effects */
.social_connects a:hover .bi-facebook {
  color: #1877f2; /* Facebook blue */
  transform: scale(1.2);
}

.social_connects a:hover .bi-instagram {
  color: #e4405f; /* Instagram pink */
  transform: scale(1.2);
}

.social_connects a:hover .bi-youtube {
  color: #ff0000; /* YouTube red */
  transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-content {
    padding: 40px 20px;
  }

  .section-content header {
    font-size: 1.8rem;
  }

  .section-content p {
    font-size: 1rem;
  }

  .social_connects a {
    font-size: 24px; /* Smaller icons */
  }
}

@media (max-width: 480px) {
  .section-content img {
    max-width: 500px;
  }

  .social_connects {
    flex-direction: column;
    align-items: center;
  }

  .social_connects a {
    font-size: 22px;
  }
}
