/* *****************************************************

    ** Custom Stylesheet **

    Any custom styling you want to apply should be
    defined here.

***************************************************** */

/*=========== Sticky Header CSS ======================*/

/* ডিফল্ট হেডার স্টাইল */
#header {
  transition: all 2s ease-in-out;
  opacity: 1;
}

#header.my-header {
  position: relative;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease;
}

/* যখন স্ক্রল করলে header-scrolled ক্লাস যুক্ত হয় */
#header.my-header.header-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff; /* ইচ্ছেমতো ব্যাকগ্রাউন্ড কালার দিন */
  box-shadow: 
    0 2px 4px rgba(255, 0, 0, 0.3),    /* লাল */
    0 4px 8px rgba(0, 255, 0, 0.2),    /* সবুজ */
    0 6px 12px rgba(0, 0, 255, 0.2);
    opacity: 1;
  transform: translateY(0);
}



#header.my-header.header-scrolled .main-menu{
    margin-bottom: 0 !important;
}

html {
  scroll-behavior: smooth;
}