/* Import Jost font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700&display=swap');

/* Apply Jost font globally */
body {
  font-family: 'Jost', sans-serif;
  margin: 0;
  padding: 0;
}
    nav.navbar {
      position: sticky;
      top: 0;
      z-index: 1020;
      background-color: #fff;
      box-shadow: 0 2px 5px rgb(0 0 0 / 0.1);
    }

    .nav-item :hover {
       color: #FEA735;
    }

    footer {
      background-color: #f8f9fa;
      padding: 20px 0;
    }
    
    h2 {
    position: relative;
    display: inline-block;
    }

    h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px; /* আগে ছিল 0, এটা বাড়িয়ে নিচে নামালাম */
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #FEA735;
    border-radius: 2px;
    }
    
    .border-primary {
     border-color: #F4B03E !important;
     }

    
    .text-primary {
      color: #F4B03E !important;
    }

    .btn-primary {
      background-color: #F4B03E;
      border-color: #F4B03E;
    }

    .btn-primary:hover {
      background-color: #d9982f;
      border-color: #d9982f;
    }
    

    /* Custom styles for dropdown-submenu */
    .dropdown-menu .dropdown-item:hover,
    .dropdown-menu .dropdown-item:focus {
    background-color: #F4B03E;
    color: #fff;
    }
    .dropdown-submenu {
      position: relative;
    }

    .dropdown-submenu > .dropdown-menu {
      top: 0;
      left: 100%;
      margin-top: -1px;
    }
    
    .testimonial-card {
      background: linear-gradient(135deg, #FEA734, #FF6F61);
      border: none;
      color: white;
    }


    .social-links :hover {
    color: #FEA735
    }

    #backToTopBtn {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #FEA735; /* Primary color */
  color: white;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}

#backToTopBtn:hover {
  background-color: #d89430;
}
