/* ======= Reset & Font ======= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 @font-face {
    font-family: 'Adorsho';
    src: url('Shadhinata.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
html, body {
  height: 100%;
  font-family: 'Adorsho', sans-serif !important; 
  font-weight: normal;
  display: flex;
  flex-direction: column;
}
.header-wrapper {
  position: fixed;
  height: 80px;
  top: 0;
  left: 0;
  width: 100%;
  background: #006064;
  color: white;
  z-index: 1000;
  padding: 10px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

    /* Top Social Bar */
    .top-right-bar {
      padding: 5px 15px;
      display: flex;
      justify-content: flex-end;
      align-items: center;
    }

    .social-icons {
      display: flex;
      gap: 12px;
      margin-top: -10px;
    }

    .social-icons img {
      width: 18px;
      height: 18px;
      cursor: pointer;
      transition: transform 0.2s;
    }

    .social-icons img:hover {
      transform: scale(1.2);
    }
        .logo-title {
      display: flex;
      align-items: center;
    }

    .logo-title img {
      height: 40px;
      width: 40px;
      border-radius: 50%; /* Make it round */
      margin-left: 60px;
      margin-top: -10px;
    }

    .logo-title h1 {
          font-family: 'Cholontika', sans-serif !important;
      margin-left: 15px;
      color: white;
      text-shadow: 1px 1px 2px black;
    margin-top: -5px;
    font-weight: normal;
    }

    /* Hamburger */
.hamburger {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  border: none;
  background: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1101;
  position: absolute;
  top: 28px;
  left: 10px;
  transition: opacity 0.3s ease;
  outline: none;
  box-shadow: none;
    -webkit-tap-highlight-color: transparent; /* মোবাইলে হালকা গ্লো বন্ধ */
  box-shadow: none !important; /* যেকোনো shadow নিষ্ক্রিয় */
  outline: none !important; /* ক্লিক করলে outline আসে, বন্ধ */
  background: none !important;
}
.hamburger:focus,
.hamburger:focus-visible,
.hamburger:active {
  outline: none !important;
  box-shadow: none !important;
    background: none !important;
}

.hamburger.hidden {
  opacity: 0;
  pointer-events: none;
}

.hamburger .bar {
  height: 3px;
  width: 100%;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}
    /* Sidebar */
    .sidebar {
      position: fixed;
      top: 0;
      left: -260px;
      width: 250px;
      height: 100%;
      background: #006064;
      box-shadow: 2px 0 6px rgba(0,0,0,0.2);
      transition: left 0.3s ease;
      z-index: 1100;
      display: flex;
      flex-direction: column;
      overflow-y: auto;
    }

    .sidebar.active {
      left: 0;
    }

.sidebar-header {
  display: flex;
  align-items: center;
  padding: 10px 10px;
  background-color: white;
  border: none;
  border-radius: 0; /* কোন গোল কোণা নয় */
  color: #fff;
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.4),
    0 8px 16px rgba(0, 0, 0, 0.3),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 25; /* যেন বাকি বাটনের উপরে থাকে */
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

    .sidebar-header img {
      height: 35px;
      width: 35px;
      border-radius: 50%;
      margin-right: 8px;
    }

    .sidebar-header h2 {
      font-weight: normal;
      font-family: 'Cholontika', sans-serif !important;
      font-size: 16px;
      color: #006064;
    }

    .sidebar a {
      padding: 12px 20px;
      text-decoration: none;
      color: white;
      border-bottom: 1px solid #eee;
      transition: background 0.3s;
    }

    .sidebar a:hover {
      background-color: #00695c;
    }

    /* Overlay */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.4);
      display: none;
      z-index: 1000;
    }

    .overlay.active {
      display: block;
    }
/*================modern marque===============*/
.modern-marquee {
  width: 100%;
  overflow: hidden;
  background-color: #f1f1f1;
  border-top: 2px solid #37474F;
  border-bottom: 2px solid #37474F;
  padding: 8px 0;
  position: relative;
}

.marquee-text {
  display: inline-block;
  white-space: nowrap;
  color: #E1136E;
  font-size: 16px;
  font-weight: bold;
  animation: scroll-left 15s linear infinite;
  padding-left: 100%;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* ======= Card Grid Section ======= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  padding: 1.5rem;
  background: transparent;
  border-radius: 10px;
  animation: fadeIn 0.8s ease-in-out;
}

.service-item {
  background: #006064;
  background-size: 800% 800%;
  animation: bgAnimate 6s ease infinite;
  padding: 0.5rem;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 5px 8px rgba(200,295,254,0.80);
  transition: transform 0.2s ease;
  font-family: 'Noto Sans Bengali', sans-serif;
}

.service-item i {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.7rem;
  display: block;
  animation: fadeIn 0.8s ease-in-out;
}

.service-item span {
  display: block;
  font-size: 0.80rem;
  color: white;
  font-weight: bold;
}
.service-item:hover {
  transform: scale(1.05);
  background: red;
}
.service-item {
  text-decoration: none;
  display: block;
  background: #006064;
  background-size: 800% 800%;
  animation: bgAnimate 6s ease infinite;
  padding: 0.5rem;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 5px 8px rgba(200,295,254,0.80);
  transition: transform 0.2s ease;
  font-family: 'Noto Sans Bengali', sans-serif;
}

.service-item:hover {
  transform: scale(1.05);
  background: red;
  text-decoration: none;
}
    /* ======= Footer ======= */
footer {
  background-color: #006064;
  color: #FFEA00;
  padding: 5px 0;
  text-align: center;
  font-size: 14px;
  width: 100%;
  margin-top: auto; /* ✅ This ensures footer stays at bottom when content is short */
}
.footer-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 5px;
  line-height: 1.5;
}
footer a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 0px;
  font-size: 14px;
  transition: color 0.3s ease;
}
footer a:hover {
  text-decoration: underline;
  color: #FFEA00;
}
.footer-links {
  margin-top: 4px;
  font-size: 12px;
}

/* ======= Scrollbar ======= */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
}
    @media (max-width: 600px) {
      .logo-title h1 {
        font-size: 14px;
      }
    }
    
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-20px);}
  to {opacity: 1; transform: translateY(0);}
}

/* টাইটেলের জন্য কাস্টম স্টাইল */
@font-face {
    font-family: 'Cholontika';
    src: url('Codepotro Abu Sayed.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}