@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Footer Styling */
.footer {
  background-image: url('/assets/rig-2251648_1280.jpg');
  color: #ffffff;
  padding: 50px 10%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #0000007a;
  background-blend-mode: overlay;
}

/* Left Section */
.left_footer {
  flex: 1;
  max-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.footer_logo {
  width: 15rem;
  height: 10rem;
  border-radius: 3px;
  object-fit: cover;
  margin-bottom: 15px;
}

.left_paragraph {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

.social_cont_footer {
  margin-top: 15px;
  display: flex;
  gap: 12px;
}

.social_link {
  color: #ffffff;
  font-size: 18px;
  transition: 0.3s;
}

.social_link:hover {
  color: #ff6600;
}

/* Middle Section */
.middle_footer {
  flex: 1;
  min-width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.middle_title, .right_title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.quick_link_ul {
  list-style: none;
  padding: 0;
}

.quick_link_list {
  margin-bottom: 8px;
}

.footer_a {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer_a:hover {
  color: #ff6600;
}

/* Right Section */
.right_footer {
  flex: 1;
  min-width: 250px;
  align-items: center;
  flex-direction: column;
}

.right_ul {
  list-style: none;
  padding: 0;
}

.rightli {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
}

.rightli i {
  color: #ff6600;
  font-size: 16px;
}

/* Bottom Section */
.footer_bottom {
  width: 100%;
  text-align: center;
  margin-top: 30px;
  font-size: 13px !important;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.twitter {
  color: #1DA1F2;
}
 
.instagram {
  color: #E1306C;
}

.facebook {
  color: #1877F2;
}

.whatsapp {
  color: #25D366;
}

.icon{
  font-size: 2.2rem;
  margin-right: 16px;
  transition: .4s;
}

.fab:hover{
  transform: scale(1.1);
}

.address{
  color: #fff;
  font-size: 15px;
  width: 60%;
}


@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: center;
    padding: 30px 5%;
  }

  .left_footer, .middle_footer, .right_footer {
    max-width: 100%;
    margin-bottom: 20px;
    align-items: center;
    text-align: center;
    }

    .footer_logo {
    width: 12rem;
    height: 8rem;
    }

    .middle_title, .right_title {
    font-size: 1.8rem;
    }

    .footer_bottom {
    font-size: 12px !important;
    }

    .address {
    width: 80%;
    text-align: center;
    }

    .right_ul{
      display: flex;
      justify-content: center;
      flex-direction: column;
    }
  }

  @media (max-width: 480px) {
    .footer {
    padding: 20px 3%;
    }

    .footer_logo {
    width: 10rem;
    height: 6rem;
    }

    .middle_title, .right_title {
    font-size: 1.5rem;
    }

    .footer_a, .rightli, .left_paragraph {
    font-size: 12px;
    text-align: center;
    }

    .address {
    width: 100%;
    }
  }
