@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;600&family=Noto+Serif+Bengali:wght@400;700&family=Tiro+Bangla&family=Amiri&display=swap');

:root {
  --primary-color: #0d8b4e;
  --secondary-color: #2c5f2d;
  --secondary-color: #003f88;
  --accent-color: #f8f1e5;
  --text-color: #333;
  --light-color: #f9f9f9;
  --dark-color: #1a472a;
  --gold-color: #c9a145;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-midiuam: 0 1px 6px rgba(0, 0, 0, 0.1);
}

/* বেসিক স্টাইল */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Tiro Bangla', 'Noto Serif Bengali', 'Hind Siliguri', 'Amiri', serif;
  font-size: 15px;
  /* লেখার সাইজ একটু ছোট করো */
  font-weight: 400;
  /* সবসময় normal রাখো */
  line-height: 1.6;
  /* পড়ার জন্য আরামদায়ক */
  color: var(--text-color);
  background-color: #f5f5f5;
  direction: ltr;
}

body ::selection {
  background: #036800;
  color: #ffffff;
  padding: 10px;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.4;
}


/* বাংলা ফন্ট সাপোর্ট */
@font-face {
  font-family: 'SolaimanLipi';
  src: url('../fonts/SolaimanLipi.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


/* হেডার স্টাইল */
#main-header {
  display: block;
  height: auto;
  padding: 15px 5%;
  background-size: cover;
  box-shadow: var(--shadow);
  flex-wrap: wrap;
  transition: background-image 20s ease-in-out;
  animation: topbottombackg 90s ease infinite;
}

@keyframes topbottombackg {
  0% {
    background-position: top;
  }

  25% {
    background-position: center;
  }

  50% {
    background-position: top;
  }

  75% {
    background-position: center;
  }

  100% {
    background-position: top;
  }
}

progress {
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  margin: none;
  display: inline-flex;
  align-items: center;
  z-index: 2000;
}

.hedarcontent {
  background-color: #fefffe11;
  backdrop-filter: blur(2px);
  padding: 20px;
  border-radius: 50px;
  border: 1px double whitesmoke;
  box-shadow: 0px 3px 2px rgba(136, 136, 136, 0.658);
  transition: all 0.5s;
  transform-style: preserve-3d;
  height: fit-content;
  transition: background 1.8s;
  transition: color 1.4s ease;
  overflow: hidden;
}

.hedarcontent:hover {
  transform: translateY(-10px) rotateY(5deg);
}

/* রঙ পরিবর্তন অ্যানিমেশন */
.hedarcontent::before {
  content: "";
  position: absolute;
  top: var(--y);
  left: var(--x);
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.041), transparent 100%);
  transform: translate(-50%, -50%);
  transition: width 1.8s ease, height 1.8s ease;
  border-radius: 50%;
  z-index: 0;
}

.hedarcontent:hover::before {
  width: 4000px;
  height: 4000px;
}

.logo-block {
  display: block;
  align-items: flex-start;
  justify-content: center;
  margin-top: 15px;
  left: 5px;
}

.logo {
  height: 150px;
  width: auto;
  border-radius: 50%;
  border: 2px solid var(--gold-color);
  box-shadow: var(--shadow);
  transform: rotateY(0deg);
  transition: transform 1s;
}

.logo:hover {
  transform: rotateY(360deg);
}

.headertext {
  display: inline-block;
  position: relative;
  text-align: right;
  justify-content: last baseline;
  padding: 0 15px;
  width: 100%;
  height: auto;
}

.headertext h1 {
  color: rgb(255, 255, 255);
  font-size: 2.8rem;
  text-align: right;
}

.headertext .sthapito {
  font-size: 20px;
  color: rgb(181, 176, 176);
  margin-bottom: 5px;
}

.tagline {
  text-align: left;
  justify-content: flex-end;
  margin-top: 30px;
  color: #b7b7b7;
  font-size: 20px;
}

/* টেক্সট স্লাইডার */
.text-slider {
  background-color: var(--dark-color);
  color: white;
  padding: 10px 0;
  text-align: center;
  overflow: hidden;
  height: 40px;
  position: relative;
}

.text-slider span {
  position: absolute;
  width: 100%;
  left: 0;
  opacity: 0;
  animation: textSlider 15s infinite;
}

.text-slider span:nth-child(2) {
  animation-delay: 5s;
}

.text-slider span:nth-child(3) {
  animation-delay: 10s;
}

@keyframes textSlider {

  0%,
  20% {
    opacity: 0;
    transform: translateY(20px);
  }

  5%,
  15% {
    opacity: 1;
    transform: translateY(0);
  }
}


.messagesbaton {
  background-color: var(--primary-color);
  color: rgb(255, 255, 255);
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s;
}

.messagesbaton:hover {
  background-color: #b38934;
}

.hambargaricon {
  display: none;
  width: auto;
  height: 25px;
  padding: 2px;
  text-align: center;
  cursor: pointer;
  box-shadow: var(--shadow);
}

/* হ্যামবার্গার মেনু */
.hamburger {
  background: rgba(255, 255, 255, 0.952);
  border: none;
  font-size: 15px;
  padding: 1px 3px 1px 3px;
  font-weight: 800;
  cursor: pointer;
  color: var(--primary-color);
  border: 2px groove #b38934;
}

.hamburger:hover {
  color: #014a05;
  background: #d4ffd4;
  box-shadow: 0px 1px 3px gold;
}

/* হ্যামবার্গার মেনু */
.fixdhamburger {
  display: none;
  background: none;
  border: none;
  font-size: 15px;
  padding: 1px 3px 1px 3px;
  font-weight: 800;
  cursor: pointer;
  color: var(--primary-color);
  border: 2px groove #b38934;
}

.fixdhamburger:hover {
  color: #014a05;
  background: #d4ffd4;
  box-shadow: 0px 1px 3px gold;
}

/* সাইডবার নেভিগেশন */
.sidebar-nav {
  width: 100%;
  align-items: center;
  align-content: center;
  justify-items: center;
  justify-content: center;
  place-content: center;
  place-items: center;
  margin-top: 15px;
  top: 0px;
  position: sticky;
  display: grid;
  background: #ffffff;
  padding: 15px 10px;
  box-shadow: var(--shadow);
  z-index: 1000;
  overflow-X: hidden;
  overflow-x: scroll;
}

.nav-menu {
  align-items: center;
  align-content: center;
  justify-items: center;
  justify-content: center;
  place-content: center;
  place-items: center;
  display: inline-flex;
}

.topbuttonlin1 {
  background-color: rgba(52, 47, 47, 0.216);
  padding: 1px;
  height: 30px;
  width: 0px;
}

.nav-menu a {
  width: max-content;
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  padding: 10px 15px;
  transition: all 0.3s;
  border-radius: 10%;
}

.nav-menu a:hover {
  border-radius: 5px;
  background-color: var(--primary-color);
  color: rgb(255, 255, 255);
}

.nav-menu a.active {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 4px 8px rgba(13, 105, 139, 0.3);
}


/* ফিক্সড হেডার */
.fixed-header {
  position: fixed;
  top: -100px;
  left: 0;
  width: 50%;
  background-color: white;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 10px 5%;
  z-index: 1000;
  transition: top 0.3s;
  animation: fadeIn 0.2ms ease-in-out;
}

.fixdfast {
  display: inline-flex;
  gap: 5px;
}

.hadertxt {
  display: block;
  width: max-content;
  align-items: center;
  justify-content: flex-start;
}


.fixed-header .logo1 {
  height: 40px;
  width: auto;
}

.hadertxt p {
  font-size: 0.9rem;
}

.coler-item {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 0.8rem;
}

/* ইমেজ মার্কি */
.image-marquee {
  overflow: hidden;
  background-color: #ffffff;
  padding: 9px 0;
  margin: 15px 0;
  box-shadow: 0px 0px 10px #95c5cac7;
}

.marquee-track {
  display: flex;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-track img {
  height: 120px;
  width: auto;
  margin: 0 5px;
  border-radius: 5px;
  object-fit: cover;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* মোবাইল মেনু */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 200px;
  height: 100%;
  background-color: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1100;
  padding: 50px 20px;
  transition: right 0.3s;
  overflow-y: auto;
}

#mobilemenu1 {
  position: fixed;
  top: 0;
  right: -600px;
  width: 500px;
  height: 100%;
  background-color: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1100;
  padding: 50px 20px;
  transition: right 0.3s;
  overflow-y: auto;
}

.menubotum {
  position: absolute;
  bottom: 15px;
  right: 15px;
  align-items: center;
  justify-content: center;
}

.menubotum .socalicon a {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white !important;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.menubotum .socalicon a:hover {
  font-size: 16px;
  width: 27px;
  height: 27px;
}

.menubotum .fb-brand:hover {
  background: #1563c9;
  border-radius: 20%;
}

.menubotum .yt-brand:hover {
  background: #da0707;
  border-radius: 20%;
}

.menubotum .wh-brand:hover {
  background: #1a9b49;
  border-radius: 20%;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  text-align: center;
  text-decoration: none;
  color: var(--text-color);
  border-bottom: 1px solid #eee;
  font-weight: 500;
}

.mobile-menu a:hover {
  background-color: var(--primary-color);
  color: white;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.close-btn.active {
  position: fixed;
  top: 15px;
  right: 15px;
  animation: iconanimation2 4.0ms ease-in;
}

.close-btn.active1 {
  position: fixed;
  top: 15px;
  right: 15px;
  animation: iconanimation3 4.0ms ease-in;
}

@keyframes iconanimation2 {
  0% {
    transform: translateX(-100px);
    font-size: 5px;
    opacity: 0;
  }

  100% {
    transform: translateX(0);
  }

}

@keyframes iconanimation3 {
  0% {
    transform: translateX(0px);
  }

  100% {
    opacity: 0;
    transform: translateX(-100);
    font-size: 5px;
  }

}

/* মেইন কন্টেন্ট */
.main-layout-wrapper {
  max-width: 1500px;
  margin: 20px auto;
  padding: 0 15px;
}

.page-wrapper {
  background-color: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 20px;
  margin-bottom: 10px;
}

.lastebtn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Loading Animation */
button .loading {
  display: inline-block;
  position: absolute;
  right: 1%;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

button span.htmlicon {
  transition: opacity 0.3s;
}

.section-title {
  color: var(--primary-color);
  border-bottom: 2px solid var(--gold-color);
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
}

.section-title i {
  margin-right: 10px;
  color: var(--gold-color);
}

/* অ্যাকর্ডিয়ন */
.accordion1 {
  background-color: var(--gold-color);
  color: white;
  cursor: pointer;
  padding: 15px;
  width: 100%;
  text-align: center;
  border: none;
  border-radius: 5px;
  outline: none;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 5px 0;
  transition: 0.4s;
  font-family: inherit;
}

.accordion1:hover {
  background-color: var(--gold-color);
  color: white;
  transform: scale(1.02);
}

.accordion-container {
  width: 100%;
}

/* লিংকের জন্য অ্যাকর্ডিয়ন */
.accordion2 {
  cursor: pointer;
  outline: none;
  display: inline-flex;
  justify-content: space-between;
  background-color: rgba(17, 95, 5, 0.864);
  color: #f9f9f9;
  padding: 15px;
  width: 100%;
  text-align: left;
  border: none;
  border-radius: 0px 0px 10px;
  font-size: 1rem;
  text-decoration: none;
  font-weight: bold;
  margin: 5px 0;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s, background 0.4s;
  font-family: inherit;
}

.accordion2:hover {
  text-decoration: none;
  background-color: rgb(17, 95, 5);
  color: white;
  transform: rotateX(3deg) rotateY(3deg) scale(1.03);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

a {
  text-decoration: none;
}

.accordion2 span {
  font-size: 20px;
  font-weight: bold;
  transition: transform 0.4s ease;
}

.accordion2.active span {
  transform: rotate(90deg);
}


/* অ্যাকর্ডিয়ন */
.accordion {
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: space-between;
  background-color: var(--accent-color);
  color: var(--dark-color);
  padding: 15px;
  width: 100%;
  text-align: left;
  border: none;
  border-radius: 0px 0px 10px;
  font-size: 1rem;
  font-weight: lighter;
  margin: 5px 0;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s, background 0.4s;
  font-family: inherit;
}

.accordion:hover {
  background-color: var(--gold-color);
  color: white;
  transform: rotateX(3deg) rotateY(3deg) scale(1.03);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.accordion span {
  font-size: 20px;
  font-weight: bold;
  transition: transform 0.4s ease;
}

.accordion.active span {
  transform: rotate(90deg);
}



.panel {
  padding: 0 20px;
  background-color: rgb(255, 255, 255);
  max-height: 0;
  overflow: hidden;
  text-align: justify;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: max-height 0.5s ease, padding 0.5s ease;
}


/* নোটিশ বোর্ড */
.notisbord {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  position: relative;
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #f8f9faab 0%, #e9ecefaa 100%);
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.notisheadcontent {
  display: block;
  position: sticky;
  top: 10px;
  background-color: white;
}

.notishaed {
  font-size: 30px;
  font-weight: 800;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 15px;
}


.notis {
  flex: 1;
  text-align: justify;
  flex-direction: column;
  justify-content: space-between;
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-top: 0px;
  line-height: 1.8;
  width: 50px;
  height: 50px;
  min-height: 700px;
  overflow: hidden;
  overflow: scroll;
  background: white;
  box-shadow: var(--shadow);
}

.contentitem {
  margin: 15px 0;
}

.author p {
  margin-bottom: 0px;
  text-align: right;
}

.author {
  margin-bottom: 0px;
}

.underline {
  border-bottom: 2px solid var(--gold-color);
  margin: 10px 0;
}


.centerbiv {
  padding: 10px;
  margin: 10px 0;
  text-align: justify;
}


.paragraph-P20 {
  font-size: 40%;
  text-align: right;
}



.paragraph-P22 {
  text-align: center;
  margin-top: -1%;
  margin-bottom: 15px;
}


.paragraph-P21 {
  text-align: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.paragraph-P25 {
  text-align: right;
}

.paragraph-P23 {
  font-size: 13px;
  text-align: right;
  margin-top: 10px;
  margin-bottom: 40px;
}

/* সেকশন স্টাইল */
section {
  margin-bottom: 30px;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

section h2 {
  color: var(--primary-color);
  border-bottom: 2px solid var(--gold-color);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

/* গ্যালারি */
.gallery {
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 3px solid rgb(195, 144, 2);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #ffffff;
  gap: 5px;
  width: 20%;
  height: 20%;
  margin: 15px 0;

}

.gallery img {
  width: 100%;
  height: 100%;
}

.gallery img :hover {
  transition: all;
}

.gallery-caption {
  align-items: center;
  align-content: center;
  text-align: center;
  font-size: 13px;
  font-weight: lighter;
}

#wifinone::before {
  content: "\f87d"
}

.sobhapti {
  display: flex;
  gap: 5px;
}

.gallarytext {
  text-align: justify;
  flex-wrap: wrap;
  margin: 15px 0;
}

/* 3D কার্ড */
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

@media (max-width:593px) {

  /* 3D কার্ড */
  .card-container {
    grid-template-columns: 1fr;
  }

  .card {
    min-width: 0px;
  }
}

.card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 30px 20px;
  border-radius: 2px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.5s;
  transform-style: preserve-3d;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid var(--gold-color);
  border-radius: var(--border-radius);
  opacity: 0;
  transition: opacity 0.3s;
  transform: translateZ(-10px);
}

.card:hover {
  transform: translateY(-10px) rotateY(5deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card:hover::before {
  opacity: 0.5;
}

.card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: inline-block;
  transform: translateZ(20px);
}

.card h3 {
  color: var(--dark-color);
  margin-bottom: 10px;
  transform: translateZ(10px);
}

.card p {
  transform: translateZ(5px);
}

.card span {
  border: none;
  background: none;
  font-size: 16px;
  text-align: center;
  color: #145dbf;
  cursor: pointer;
}

/* Floating Chat Bubble */
.launcher-icon {
  display: block;
  position: fixed;
  bottom: 10px;
  right: 18px;
  width: 40px;
  height: 120px;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

/*উপরে উঠার আইকোন*/
.upre {
  position: fixed;
  bottom: 120px;
  display: block;
  border-radius: 50%;
  width: 40px;
  margin: 5px 0px 20px 0px;
}

.upreicon {
  background: #353c4631;
  color: rgb(1, 14, 3);
  font-size: 18px;
  border-radius: 50%;
  padding: 12px 12px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: background 0.3s;
  z-index: 1200;
  backdrop-filter: blur(2px);
  border: 1px double rgba(7, 5, 5, 0.336);
}

.upreicon:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
}

.sdosso-launcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  width: 100%;
  margin: 5px 0px 5px 0px;
}

.sdosso-icon {
  background: #353c4631;
  font-size: 18px;
  color: rgb(44, 88, 6);
  text-shadow: 1px 1px 0px #ffffff;
  border-radius: 50%;
  padding: 13px 13px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: background 1.8s;
  z-index: 2;
  backdrop-filter: blur(2px);
  border: 1px double rgba(7, 5, 5, 0.336);
}

.sdosso-icon:hover {
  transform: translateX(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
}

.sdosso-badge {
  position: absolute;
  background: #353c4666;
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 20px 0 0 20px;
  margin-right: 40px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s ease;
}


.sdosso-launcher:hover .sdosso-icon {
  background: #0b8b02eb;
  color: rgb(255, 255, 255);
  text-shadow: none;
}

.sdosso-launcher:hover .sdosso-badge {
  left: -80px;
  opacity: 1;
  transform: translateX(0);
}

.chat-launcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  width: 100%;
  margin: 5px 0px 5px 0px;
}

.chat-icon {
  font-size: 18px;
  background: #353c4631;
  color: white;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.788);
  border-radius: 50%;
  padding: 12px 12px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: background 1.8s;
  z-index: 2;
  backdrop-filter: blur(2px);
  border: 1px double rgba(7, 5, 5, 0.336);
}

.chat-icon:hover {
  transform: translateX(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  text-shadow: none
}

.chat-badge {
  position: absolute;
  background: #353c4666;
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 20px 0 0 20px;
  margin-right: 40px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s ease;
}

.chat-launcher:hover .chat-icon {
  background: #02398beb;
}

.chat-launcher:hover .chat-badge {
  left: -80px;
  opacity: 1;
  transform: translateX(0);
}

.allmodal {
  width: auto;
  height: auto;
  position: fixed;
  top: 0;
  z-index: 1500;
}

/* ফুটার */
footer {
  background-color: rgba(4, 5, 5, 0.908);
  color: white;
  padding: 20px;
  text-align: center;
}

.paragraph-P01 {
  background-color: var(--dark-color);
  color: #ececec;
  border-bottom: 1px solid rgb(156, 149, 149);
  padding: 5px;
  text-align: center;
  margin-top: 30px;
}

.credit-right {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 10px;
  margin-top: 15px;
  font-size: 0.9rem;
}

.topbuttonlin {
  background-color: rgb(52, 47, 47);
  padding: 1px;
  height: 100px;
  width: 0px;
}

.sazed {
  text-align: right;
}

.sadi {
  text-align: left;
}

.credit-right span {
  color: rgb(165, 172, 175);
  font-weight: bold;
}

.socalicon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white !important;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
}

.brand-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgb(0, 0, 0, 02);
  border-radius: 20%;
  border-bottom: 1px solid white;
}

.fb-brand {
  background: #1877f2;
}

.yt-brand {
  background: #ff0000;
}

.wh-brand {
  background: #25D366;
}

/* ফেসবুক মোডাল */
#fbModal {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1200;
  justify-content: center;
  align-items: center;
}

.fbModal-content {
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  padding: 20px;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fbBackBtn {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #c4c4c438;
  color: rgb(0, 0, 0);
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
}

.fbBackBtn:hover {
  background-color: #ff0000;
  color: rgb(255, 255, 255);
}

.fbModal-body {
  text-align: center;
}

.profile-pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 1px solid #000000;
}

.profile-name {
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 15px;
  color: #1877f2;
}

.fbBtn {
  display: inline-block;
  background-color: #1877f2;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  margin: 10px 0;
}

.fbBtn i {
  padding-right: 10px;
}

.fbBtn .fbloading {
  display: none;
  margin-right: 10px;
  width: 16px;
  height: 16px;
  border: 3px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

.fbBtn:hover {
  background-color: #145dbf;
}

.fb-note {
  font-size: 0.8rem;
  color: #666;
  margin-top: 10px;
}

.fb-link-js {
  cursor: pointer;
  font-family: 'Arial', sans-serif;
  font-size: 15px;
  color: #1877f2;
  padding: 5px 5px;
  border-radius: 9px;
  text-decoration: none;
}

.fb-link-js:hover {
  text-shadow: 1px 0px 1px rgb(160, 201, 255);
}


.sodosonotifeketion {
  position: fixed;
  display: none;
  place-items: center;
  width: 100%;
  top: 0;
  z-index: 10000;
}

.noticontet {
  margin: 15px;
  padding: 5px;
  width: 50%;
  height: auto;
  align-items: center;
  align-content: center;
  border-radius: 20px;
  box-shadow: 1px 1px 5px rgba(2, 56, 110, 0.38);
  background: rgba(9, 108, 144, 0.044);
  animation: fadeIn 0.2s ease;
}

.close-btnnot {
  cursor: pointer;
  background: none;
  border-radius: 50px;
  border: none;
  font-size: 12px;
  color: #ff0000;
  padding: 4px;
}

.close-btnnot:hover {
  background-color: #ff000015;
  color: #ffffff;
}

.block-btn {
  cursor: pointer;
  text-align: center;
  font-size: 12px;
  font-weight: bolder;
  color: white;
  background-color: rgb(233, 42, 25);
  padding: 6px 10px;
  border-radius: 9px;
  border: 1px solid white;
  margin-left: 10px;
}

.block-btn:hover {
  background-color: rgb(207, 11, 11);
  border: 1px solid rgb(105, 11, 2);
}

.notifbody {
  display: block;
  margin: 5px;
  padding: 15px;
  border: 2px solid rgb(9, 108, 144);
  border-radius: 10px;
  background-color: #ffffff;
}

.salam {
  text-align: center;
  font-size: 13px;
  font-weight: 100;
}

.sagtom {
  text-align: center;
  font-size: 15px;
  margin-top: 2px;
}

.witline {
  display: block;
  background-color: rgba(9, 108, 144, 0.191);
  width: 100%;
  height: 1px;
}

.formworf {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-top: 5px;
  align-content: center;
  align-items: center;
}

.onurod {
  font-family: Arial;
  font-size: 25px;
  font-weight: bold;
  color: rgb(9, 108, 144);
}

.formbtn {
  cursor: pointer;
  padding: 8px 15px;
  border: 2px solid rgba(1, 118, 160, 0);
  border-radius: 10px;
  background: linear-gradient(135deg, #123464 0%, rgb(1, 117, 160) 100%);
  color: #ffffff;
  align-items: center;
  align-content: center;
  font-size: 18px;
  font-weight: bold;
  animation: swing 4s ease-in-out infinite;
}

@keyframes swing {
  0% {
    transform: rotateX(-15deg);
  }

  50% {
    transform: rotateY(15deg);
  }

  100% {
    transform: rotateX(-15deg);
  }
}


.formbtn:hover {
  color: rgb(255, 255, 255);
  border: 2px solid rgb(0, 87, 118);
  animation: none;

}

/* লিংক এলার্ট */
.linkelssw {
  display: none;
  position: fixed;
  background: #00000026;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  place-items: center;
}

.linkecontent {
  max-width: 90%;
  max-width: 400px;
  background: rgb(245, 245, 245);
  border: 3px solid rgb(95, 95, 95);
  border-radius: 12px;
  padding: 20px;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.2s ease;
}

.linkelsclos {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #c4c4c438;
  cursor: pointer;
  border: none;
  font-size: 20px;
  color: rgb(69, 47, 47);
  border-radius: 100%;
  padding: 7px;
}

.linkelsclos:hover {
  background: #ff000038;
  color: red;
}

.linkselsbody {
  text-align: center;
}

.linicon {
  display: inline-block;
  position: relative;
  align-items: center;
  align-content: center;
  padding: 20px;
  border-radius: 50%;
  border: 2px double rgb(48, 48, 48)0;
  background: #dadada;
  color: rgb(71, 71, 71);
}

.linicon i {
  font-size: 70px;
}

.netim {
  width: 70px;
  height: 70px;
  background-size: 70px;
}

.cardname {
  font-weight: bold;
  font-size: 1.8em;
  margin-bottom: 5px;
  color: #4f4f4f;
}

.cardnote {
  font-size: 1.70em;
  color: #605e5e;
}

.linknote {
  font-size: 13px;
  color: #014a05;
  margin-top: 23px;
}

.madrasalink {
  display: inline-block;
  background-color: #169d11;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  margin-top: 15px;
}

.madrasalink:hover {
  background-color: #086b05;
}

::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

::-webkit-scrollbar:hover {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #3a493f00;
}

::-webkit-scrollbar-track:hover {
  background: #cee2d4;
}

::-webkit-scrollbar-thumb {
  background: #447a50;
}

::-webkit-scrollbar-thumb:hover {
  background: #3fa05c;
}

body ::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

body ::-webkit-scrollbar:hover {
  width: 5px;
  height: 5px;
}

body ::-webkit-scrollbar-track {
  background: #3a493f00;
}

body ::-webkit-scrollbar-track:hover {
  background: #cee2d4;
}

body ::-webkit-scrollbar-thumb {
  background: #a8b9ad;
}

body ::-webkit-scrollbar-thumb:hover {
  background: #6c796f;
}

/* রেসপনসিভ ডিজাইন */
@media (max-width: 830px) {

  /* হেডার স্টাইল */
  #main-header {
    display: block;
    height: 380px auto;
    padding: 10px 3%;
  }

  .hedarcontent {
    padding: 10px;
    border-radius: 20px;
  }

  .logo-block {
    display: block;
    align-items: flex-start;
    justify-content: center;
    margin-top: 15px;
    left: 5px;
  }

  .logo {
    height: 90px;
    border: 1px solid var(--gold-color);
  }

  .headertext {
    display: inline-block;
    padding: 0 10px;
  }

  .headertext h1 {
    color: rgb(255, 255, 255);
    font-size: 25px;
  }

  .headertext .sthapito {
    font-size: 18px;
    margin-bottom: 3px;
  }

  .tagline {
    margin-top: 25px;
    font-size: 17px;
    -ms-text-size-adjust: 17px;
  }

  .hambargaricon {
    display: block;
    position: absolute;
    top: 40px;
    right: 20px;
  }

  .hamburger {
    display: inline-block;
  }

  .fixdhamburger {
    display: block;
  }

  .sidebar-nav {
    display: none;
  }

  .nav-menu {
    flex-direction: column;
    display: none;
  }

  .fixed-header {
    padding: 9px;
    width: 100%;
  }

  .headertext p {
    font-size: 0.8rem;
  }

  .marquee-track img {
    height: 80px;
  }

  /* মেইন কন্টেন্ট */
  .main-layout-wrapper {
    margin: 6px;
    padding: 0 6px;
  }

  .page-wrapper {
    border-radius: 4px;
    box-shadow: var(--shadow-midiuam);
    padding: 10px;
    margin-bottom: 6px;
  }

  /* সেকশন স্টাইল */
  section {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 4px;
    box-shadow: none;
  }

  /* নোটিশ বোর্ড */
  .notisbord {
    flex-direction: column;
  }

  .notis {
    width: 100%;
    height: 100;
  }

  .bibrit {
    width: 100%;
    height: 100%;
  }

  .fade {
    width: 100%;
    height: 100%;
  }

  .sobhapti {
    display: block;
    gap: 10px;
  }

  .gallery {
    width: 100%;
    height: 100%;
    padding-right: 0%;
    padding-bottom: 2px;
  }

  .gallery-caption {
    font-size: 10px;
  }

  /* Loading Animation */
  button .loading {
    right: 3%;
  }

  /* Floating Chat Bubble */
  .launcher-icon {
    bottom: 5px;
    right: 14px;
    width: 20px;
    height: 110px;
  }

  /*উপরে উঠার আইকোন*/
  .upre {
    bottom: 110px;
    width: 20px;
    margin: 5px 0px 14px 0px;
  }

  .upreicon {
    font-size: 8px;
    padding: 10px 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    transition: background 0.3s;
  }

  .upreicon:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
  }

  .sdosso-launcher {
    width: 100%;
  }

  .sdosso-icon {
    font-size: 8px;
    padding: 10px 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    transition: background 0.3s;
  }

  .sdosso-badge {
    font-size: 10px;
    padding: 4px 8px;
  }

  .sdosso-launcher:hover .sdosso-badge {
    left: -50px;
  }

  .chat-launcher {
    width: 100%;
  }

  .chat-icon {
    font-size: 8px;
    padding: 10px 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    transition: background 0.3s;
  }

  .chat-badge {
    font-size: 10px;
    padding: 4px 8px;
  }

  .chat-launcher:hover .chat-badge {
    left: -50px;
  }

  .accordion2:hover {
    box-shadow: none;
  }

  .accordion:hover {
    box-shadow: none;
  }

  .lastebtn {
    display: block;
  }

  .credit-right {
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 5px;
    margin-top: 15px;
    font-size: 0.6rem;
  }


  .credit-right span {
    margin: 0%;
    font-size: 10px;
    color: rgb(165, 172, 175);
    font-weight: bold;
  }

  .noticontet {
    margin: 15;
    padding: 3px;
    width: 100%;
    border-radius: 10px;
  }

  .notifbody {
    margin: 3px;
    padding: 9px;
    border: 1qx solid rgb(9, 108, 144);
    border-radius: 10px;
  }

  .block-btn {
    font-size: 10px;
    padding: 3px 5px;
    border-radius: 5px;
  }

  .salam {
    font-size: 8px;
    font-weight: 50;
  }

  .sagtom {
    font-size: 9px;
    margin-top: 1px;
  }


  .formworf {
    margin-top: 3px;
  }

  .onurod {
    font-size: 14px;
  }

  .formbtn {
    padding: 4px 7px;
    border-radius: 5px;
    font-size: 10px;
  }

}

@media (max-width:500px) {
  .notisborder {
    padding: 0px;
  }

  .notis {
    padding: 5px;
    border: 1px solid #dddddd7c;
    box-shadow: non;
  }
}