/* Global Reset */
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Footer Section */
.footer-section {
  background: #151414;
  position: relative;
  padding: 50px 0;
  width: 100%;


}

/* Footer CTA */
.footer-cta {
  border-bottom: 1px solid #373636;
  padding-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.single-cta {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.single-cta i {
  color: #ff5e14;
  font-size: 30px;
  margin-right: 15px;
}

.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.cta-text span {
  color: #757575;
  font-size: 15px;
}

/* Footer Content */
.footer-content {
  position: relative;
  z-index: 2;
}

.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  width: 100%;
  background-size: cover;
  background-position: 100% 100%;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo img {
  max-width: 200px;
}

.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #7e7e7e;
  line-height: 28px;
}

/* Social Icons */
.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}

.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 10px;
}

.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}

.facebook-bg {
  background: #3B5998;
}

.instagram-bg {
  background: linear-gradient(45deg, #E4405F, #F58529, #405DE6, #833AB4);
}

.google-bg {
  background: #DD4B39;
}

/* Footer Widgets */
.footer-widget {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}

.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #ff5e14;
}

.footer-widget ul li {
  margin-bottom: 12px;
}

.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
  font-size: 14px;
  text-decoration: none;
}

.footer-widget ul li a:hover {
  color: #ff5e14;
}

/* Subscribe Form */
.subscribe-form {
  position: relative;
  overflow: hidden;
}

.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2E2E2E;
  border: 1px solid #2E2E2E;
  color: #fff;
}

.subscribe-form button {
  position: absolute;
  right: 0;
  background: #ff5e14;
  padding: 13px 20px;
  border: 1px solid #ff5e14;
  top: 0;
}

.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}

/* Footer Menu */
.footer-menu {
  text-align: center;
}

.footer-menu li {
  display: inline-block;
  margin: 0 15px;
}

.footer-menu li a {
  font-size: 14px;
  color: #878787;
}

.footer-menu li:hover a {
  color: #ff5e14;
}

/* Links Section */
.links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.links .footer-widget {
  flex: 1 1 22%;
  min-width: 220px;
}

/* Copyright Area */
.copyright-area {
  background-color: #151414;
  padding: 20px 0;
  text-align: center;
}

.copyright-text p {
  color: #fff;
  font-size: 14px;
  margin: 0;
}

/* Responsive Styling */


/* Desktop Screens (1920px - 2560px) */
@media (max-width: 2561px) {
  .footer-content {
    padding: 0 100px;
  }

  .copyright-area  .row {
    background-color: #151414;
    padding: 20px 0;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .copyright-text p {
    color: #fff;
    font-size: 14px;
    margin: 0 auto;
    text-align: center;
    max-width: 90%; /* Adjust this value as needed */
  }
  
  .footer-social-icon {
    text-align: center;
    justify-content: center;
  }

  .footer-social-icon span {
    color: #fff;
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
    text-align: center;
  }

  .footer-social-icon a {
    color: #fff;
    font-size: 16px;
    margin: 0 5px;
    display: inline-block;
  }

  .footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    display: inline-block;
  }

  .footer-social-icon .social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .facebook-bg,
  .instagram-bg,
  .google-bg {
    display: inline-block;
  }
}

/* Medium Screens (1440px - 1919px) */
@media (max-width: 1924px) {
  .footer-content {
    padding: 0 50px;
  }
  .copyright-area  .row {
    background-color: #151414;
    padding: 20px 0;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .copyright-text p {
    color: #fff;
    font-size: 14px;
    margin: 0 auto;
    text-align: center;
    max-width: 90%; /* Adjust this value as needed */
  }
  
  .footer-social-icon {
    text-align: center;
    justify-content: center;
  }

  .footer-social-icon span {
    color: #fff;
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
    text-align: center;
  }

  .footer-social-icon a {
    color: #fff;
    font-size: 16px;
    margin: 0 5px;
    display: inline-block;
  }

  .footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    display: inline-block;
  }

  .footer-social-icon .social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .facebook-bg,
  .instagram-bg,
  .google-bg {
    display: inline-block;
  }
  

}

/* Tablets (1024px - 1439px) */
@media (max-width: 1441px) {
  .footer-widget-heading h3 {
    font-size: 18px;
  }
  .copyright-area  .row {
    background-color: #151414;
    padding: 20px 0;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .copyright-text p {
    color: #fff;
    font-size: 18px;
    margin: 0 auto;
    text-align: center;
    max-width: 90%; /* Adjust this value as needed */
  }
  

  
  .footer-social-icon {
    text-align: center;
    justify-content: center;
  }

  .footer-social-icon span {
    margin-top: 20px;
    color: #fff;
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
    text-align: center;
  }

  .footer-social-icon a {
    color: #fff;
    font-size: 16px;
    margin: 0 5px;
    display: inline-block;
  }

  .footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    display: inline-block;
  }

  .footer-social-icon .social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .facebook-bg,
  .instagram-bg,
  .google-bg {
    display: inline-block;
  }
}


/* Tablets (1024px - 1439px) */
@media (max-width: 1397px) {
  .footer-widget-heading h3 {
    font-size: 18px;
  }
  .copyright-area  .row {
    background-color: #151414;
    padding: 20px 0;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .copyright-text p {
    color: #fff;
    font-size: 15px;
    margin: 0 auto;
    text-align: center;
    max-width: 90%; /* Adjust this value as needed */
  }
  

  
  .footer-social-icon {
    text-align: center;
    justify-content: center;
  }

  .footer-social-icon span {
    color: #fff;
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
    text-align: center;
  }

  .footer-social-icon a {
    color: #fff;
    font-size: 16px;
    margin: 0 5px;
    display: inline-block;
  }

  .footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    display: inline-block;
  }

  .footer-social-icon .social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .facebook-bg,
  .instagram-bg,
  .google-bg {
    display: inline-block;
  }
}

/* Small Tablets & Large Mobiles (769px - 1023px) */
@media (max-width: 1025px) {
  .footer-content {
    padding: 0 30px;
  }

  .footer-cta {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .single-cta {
    flex-direction: column;
    align-items: center;
  }

  .single-cta i {
    margin-bottom: 10px;
  }
  .copyright-area  .row {
    background-color: #151414;
    padding: 20px 0;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .copyright-text p {
    color: #fff;
    font-size: 14px;
    margin: 0 auto;
    text-align: center;
    max-width: 90%; /* Adjust this value as needed */
  }
  

  
  .footer-social-icon {
    text-align: center;
    justify-content: center;
  }

  .footer-social-icon span {
    color: #fff;
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
    text-align: center;
    margin-top: 20px;
  }

  .footer-social-icon a {
    color: #fff;
    font-size: 16px;
    margin: 0 5px;
    display: inline-block;
  }

  .footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    display: inline-block;
  }

  .footer-social-icon .social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .facebook-bg,
  .instagram-bg,
  .google-bg {
    display: inline-block;
  }
}

/* Mobile Screens (426px - 768px) */
@media (max-width: 769px) {
  .footer-widget {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-menu li {
    display: block;
    margin: 5px 0;
  }

  .links {
    grid-template-columns: 1fr;
  }

  .footer-content {
    padding: 0 15px;
  }
  .single-cta i {
    color: #ff5e14;
    font-size: 30px;
    margin-right: 6px;
  }

  
  .footer-social-icon {
    text-align: center;
    justify-content: center;
  }

  .footer-social-icon span {
    color: #fff;
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
    text-align: center;
  }

  .footer-social-icon a {
    color: #fff;
    font-size: 16px;
    margin: 0 5px;
    display: inline-block;
  }

  .footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    display: inline-block;
  }

  .footer-social-icon .social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .facebook-bg,
  .instagram-bg,
  .google-bg {
    display: inline-block;
  }

}

/* Extra Small Screens (321px - 425px) */
@media (max-width: 425px) {
  .footer-section {
    padding: 30px 0;
  }

  .footer-widget-heading h3 {
    font-size: 16px;
  }

  .footer-text p {
    font-size: 12px;
    line-height: 24px;
  }

  .subscribe-form input {
    padding: 10px 20px;
  }

  .subscribe-form button {
    padding: 10px 15px;
  }

  .single-cta i {
    color: #ff5e14;
    font-size: 30px;
    margin-right: 5px;
  }

  
  .footer-social-icon {
    text-align: center;
    justify-content: center;
  }

  .footer-social-icon span {
    color: #fff;
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
    text-align: center;
  }

  .footer-social-icon a {
    color: #fff;
    font-size: 16px;
    margin: 0 5px;
    display: inline-block;
  }

  .footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    display: inline-block;
  }

  .footer-social-icon .social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .facebook-bg,
  .instagram-bg,
  .google-bg {
    display: inline-block;
  }
  

}


@media (max-width: 395px) {
  .footer-widget-heading h3 {
    font-size: 14px;
    text-align: center;
  }

  .footer-text p {
    font-size: 11px;
    text-align: center;
  }

  .footer-menu {
    text-align: center;
    padding: 0;
  }

  .footer-menu li {
    display: inline-block;
    margin: 3px 5px;
  }

  .single-cta {
    text-align: center;
  }

  .single-cta i {
    color: #ff5e14;
    font-size: 30px;
    margin-right: 0;
    display: block;
    margin: 0 auto;
  }

  /* Social Icons */
  .footer-social-icon {
    text-align: center;
    justify-content: center;
  }

  .footer-social-icon span {
    color: #fff;
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
    text-align: center;
  }

  .footer-social-icon a {
    color: #fff;
    font-size: 16px;
    margin: 0 5px;
    display: inline-block;
  }

  .footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    display: inline-block;
  }

  .footer-social-icon .social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .facebook-bg,
  .instagram-bg,
  .google-bg {
    display: inline-block;
  }
}


@media (max-width: 375px) {
  .footer-widget-heading h3 {
    font-size: 14px;
    text-align: center;
  }

  .footer-text p {
    font-size: 11px;
    text-align: center;
  }

  .footer-menu {
    text-align: center;
    padding: 0;
  }

  .footer-menu li {
    display: inline-block;
    margin: 3px 5px;
  }

  .single-cta {
    text-align: center;
  }

  .single-cta i {
    color: #ff5e14;
    font-size: 30px;
    margin-right: 0;
    display: block;
    margin: 0 auto;
  }

  /* Social Icons */
  .footer-social-icon {
    text-align: center;
    justify-content: center;
  }

  .footer-social-icon span {
    color: #fff;
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
    text-align: center;
  }

  .footer-social-icon a {
    color: #fff;
    font-size: 16px;
    margin: 0 5px;
    display: inline-block;
  }

  .footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    display: inline-block;
  }

  .footer-social-icon .social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .facebook-bg,
  .instagram-bg,
  .google-bg {
    display: inline-block;
  }
}

@media (max-width: 321px) {
  .footer-widget-heading h3 {
    font-size: 14px;
    text-align: center;
  }

  .footer-text p {
    font-size: 11px;
    text-align: center;
  }

  .footer-menu {
    text-align: center;
    padding: 0;
  }

  .footer-menu li {
    display: inline-block;
    margin: 3px 5px;
  }

  .single-cta {
    text-align: center;
  }

  .single-cta i {
    color: #ff5e14;
    font-size: 30px;
    margin-right: 0;
    display: block;
    margin: 0 auto;
  }

  /* Social Icons */
  .footer-social-icon {
    text-align: center;
    justify-content: center;
  }

  .footer-social-icon span {
    color: #fff;
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
    text-align: center;
  }

  .footer-social-icon a {
    color: #fff;
    font-size: 16px;
    margin: 0 5px;
    display: inline-block;
  }

  .footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    display: inline-block;
  }

  .footer-social-icon .social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .facebook-bg,
  .instagram-bg,
  .google-bg {
    display: inline-block;
  }
}
