/* new header and footetr css farhan */

@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');

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}



:root {
  --orange-bg: #FFA400;
  --gray-50: #030712;
}

.orange-bg {
  background-color: #FFA400;
}


@media (min-width: 1200px) {

  #new_header .navmenu a,
  #new_header .navmenu a:focus {
    padding: 10px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    font-style: normal;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #030712;
    font-size: 1rem;
    line-height: 1.5rem;
    margin: 0 12px;
  }



}


#new_header .navmenu a:hover {
  background-color: #27272a0d;
  border-radius: 8px;
  padding: 5px 10px;
  color: #FFA400;
}



.signup_btn {
  background-color: #FFA400;
  border-radius: 8px;
  padding: 8px 12px;
  white-space: nowrap;
  transition: 0.3s;
  font-style: normal;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: .875rem;
  line-height: 1.25rem;

  &&:hover {
    background-color: #030712;

    color: #fff;
  }
}

.left_btns {
  border: 1px solid #AEB7C3;
  border-radius: 8px;
  padding: 4px;
}


/* Marquee container styling */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  padding: 5px 0;
}

/* Marquee text styling */
marquee {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
  color: #fff;
  padding: 0 10px;

}



.floating-logo-container {
  position: fixed;
    z-index: 1000;
    bottom: 30px;
    right: 19px;

}

/* Styles for the logo image */
.floating-logo-container img {
  width: 60px;

  height: 60px;
  border-radius: 50%;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);

  transition: transform 0.3s ease, box-shadow 0.3s ease;

  border: 1px solid #ffa400;

  object-fit: cover;

}

.floating-logo-container img:hover {
  transform: scale(1.08);

  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);

}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .floating-logo-container {
    position: fixed;
    z-index: 1000;
    top: 35%;
    right: 5px;
  }
  .floating-logo-container a
  {
  	    display: block;
  }

  .floating-logo-container img {
    width: 50px;
    /* Smaller size for mobile */
    height: 50px;
  }

  body {
    padding-top: 70px;
    /* Adjust body padding for smaller logo */
  }
}

/* new footer css */

.footer {
  background-color: #F9FAFB;

 padding-top: clamp(40px, calc(2.5rem + 2vw), 80px);
 padding-bottom: clamp(40px, calc(2.5rem + 2vw), 80px);
  color: #343a40;
  /* Dark text color */
}

.footer h5 {
  color: #030712;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.5rem;
  font-size: .875rem;
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  line-height: 1.5rem;
  color: #111827;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: .875rem;
}

.footer ul li a:hover {
  color: #FFA400;
  /* Blue on hover */
}

.footer .form-control {
  border-radius: 8px;
  /* Rounded corners for input */
  border-color: #ced4da;
  padding: 10px 15px;
}

.footer .input-group-text {
  background-color: transparent;
  border: none;
  padding-right: 0;
  color: #6c757d;
}

.footer .btn-subscribe {
  background-color: #ffc107;
  /* Orange subscribe button */
  color: #fff;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 600;
  border: none;
  transition: background-color 0.3s ease;
}

.footer .btn-subscribe:hover {
  background-color: #FFA400;
  /* Darker orange on hover */
  color: #fff;
}

.footer .powered-by {
  font-size: 0.9em;
  color: #6c757d;
}

.footer .powered-by a {
  color: #343a40;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer .powered-by a:hover {
  color: #FFA400;
}

.footer .social-icons a {
  color: #111827;
  font-size: 20px;
  margin-left: 15px;
  transition: color 0.3s ease;
}

.footer .social-icons a:hover {
  color: #FFA400;
}

.footer .copyright {
  font-size: 0.85em;
  color: #6c757d;
}

hr {
  border-top: 1px solid #1F2937;

  opacity: 1;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 767.98px) {



  .footer .social-icons {
    text-align: center;
    margin-top: 20px;
  }

  .footer .social-icons a {
    margin: 0 10px;
    /* Adjust spacing for mobile */
  }

  .footer .copyright {
    text-align: center;
  }
}

/* ends header */