/**
* Template Name: Bangladesh Government
* Updated: Aug 17 2025 with Bootstrap v5.3.1
* Template URL: none
* Author: Bangladesh Government
* License: Bangladesh Government
* Designer: **********
*/
/* Fonts */
@font-face {
  font-family: 'solaimanlipi';
  src: url('../Font/solaimanlipi/SolaimanLipi_22-02-2012.ttf');
}
:root {
  --font-default: 'solaimanlipi', system-ui, -apple-system, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif,
    'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  --font-primary: 'solaimanlipi', sans-serif;
  --font-secondary: 'Hind Siliguri', sans-serif;
}

/* Global Colors */
:root {
  --color-default: #212529;
  --color-default-rgb: 33, 37, 41;
  --color-background: #ffffff;
  --color-background-rgb: 255, 255, 255;
  --color-primary: #198754;
  --color-primary-rgb: 52, 168, 83;
  --color-secondary: #32353a;
  --color-secondary-rgb: 50, 53, 58;
  --color-box-background: #ffffff;
  --color-box-background-rgb: 255, 255, 255;
  --color-inverse: #ffffff;
  --color-inverse-rgb: 255, 255, 255;
  --text-tittle-color: #002147;
  --section-background: #f5f7fb;
  --top-header-background: #00472a;
  --section-RGB-Background: rgb(231 253 233);
  --section-background-green: #0d914610;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: var(--color-default);
  font-family: var(--font-default);
  background: url('../img/bg_main.gif') repeat-y scroll center top rgba(0, 0, 0, 0);
  vertical-align: baseline;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: rgba(var(--color-primary-rgb), 0.7);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

section {
  color: var(--color-default);
  /* background-color: var(--color-background); */
  padding: 60px 0;
  overflow: clip;
}

/*--------------------------------------------------------------
# Section Title
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: var(--section-RGB-Background);
  color: var(--color-primary);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--font-secondary);
}
.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 30px;
  font-weight: 700;
  color: var(--text-tittle-color);
}

.section-title h3 span {
  color: var(--color-primary);
}
.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 76%;
  }
}

/*--------------------------------------------------------------
# Modal Text
--------------------------------------------------------------*/
.home-modal-box .php-email-form {
  width: 100%;
  border-top: 3px solid var(--color-primary);
  border-bottom: 3px solid var(--color-primary);
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}
.home-modal-box .php-email-form .form-group {
  margin-bottom: 20px;
}
.home-modal-box .modal-body-tiitle {
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 25px;
  font-size: 30px;
  font-weight: 600;
}
.home-modal-box .php-email-form label {
  padding-bottom: 8px;
  font-weight: 500;
  font-family: var(--font-secondary);
}
.home-modal-box .php-email-form input,
.home-modal-box .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
  border-radius: 4px;
}
.home-modal-box .php-email-form input:focus,
.home-modal-box .php-email-form textarea:focus {
  border-color: var(--color-primary);
}
.home-modal-box .form-group input {
  height: 40px;
}
.home-modal-box .php-email-form textarea {
  padding: 10px 12px;
}
.home-modal-box .php-email-form button[type='submit'] {
  background: var(--color-primary);
  border: 0;
  padding: 6px 23px;
  color: #fff;
  transition: 0.4s;
  border-radius: 6px;
  font-weight: 600;
  font-family: var(--font-secondary);
}
.home-modal-box .php-email-form button[type='submit']:hover {
  color: var(--text-tittle-color);
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-inverse);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}
#preloader:before,
#preloader:after {
  content: '';
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 70px 0 60px 0;
  min-height: 30vh;
  position: relative;
  background-size: cover;
  background-position: center;
  margin-top: 154px;
  background-repeat: no-repeat;
}
.breadcrumbs:before {
  content: '';
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}
.breadcrumbs h3 {
  font-size: 33px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-secondary);
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-background);
  font-family: var(--font-secondary);
}
.breadcrumbs ol a {
  color: #fff;
  transition: 0.3s;
  font-weight: 600;
}
.breadcrumbs ol a i {
  margin-right: 1px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: '/';
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: var(--top-header-background);
  /* background: #037933; */
  /* border-top: 2px solid var(--color-primary); */
  font-size: 14px;
  height: 75px;
  padding: 0;
  transition: all 0.5s;
  overflow: hidden;
  z-index: 9999;
  padding: 15px 0;
}
#topbar.topbar-scrolled {
  top: -44px;
}
#topbar .logo-info img {
  width: 64px;
}
#topbar .logo-info h3 {
  color: var(--color-inverse);
  font-size: 17px;
  font-weight: 600;
  margin-left: 10px;
  letter-spacing: 1px;
}
#topbar .logo-info h3 a {
  color: var(--color-inverse);
}
.En-logo-name {
  margin-bottom: 0;
}
#topbar .july-logo img {
  width: 90px !important;
  object-fit: cover;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 81px;
  z-index: 9998;
  background: #f1f1f1;
  transition: all 0.5s;
  top: 75px;
}
#header.header-scrolled {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  top: 0;
}
#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}
#header .logo h1 a,
#header .logo h1 a:hover {
  color: #354144;
  text-decoration: none;
}
#header .logo h1 a span,
#header .logo h1 a:hover span {
  color: var(--color-primary);
}
#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0px 10px 30px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-transform: uppercase;
  transition: 0.3s;
  color: #333333;
}
.navbar a i,
.navbar a:focus i {
  font-size: 13px;
  line-height: 0;
  margin-left: 3px;
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--color-primary);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(143% + 0px);
  margin: 0;
  padding: 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 2px;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 12px 20px;
  font-size: 16px;
  text-transform: none;
  text-transform: uppercase;
  border-bottom: solid 1px #f5f5f5;
  color: #333333;
  font-weight: 600;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: var(--color-primary);
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 143%;
  visibility: visible;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}
/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #354144;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: var(--color-inverse);
}
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(31, 38, 39, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  background-color: var(--color-inverse);
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #354144;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: var(--color-primary);
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: var(--color-inverse);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: var(--color-primary);
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  padding: 0;
  position: relative;
  background-color: #002f50;
  margin-top: 120px;
  overflow: hidden;
}
#bg-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  z-index: 1;
}
#hero:before {
  content: '';
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  width: 100%;
  z-index: 3;
}
#hero .caption {
  text-align: center;
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#hero h2 {
  color: var(--color-inverse);
  font-size: 40px;
  font-weight: 600;
  margin: 0 auto;
  line-height: 55px;
}

@media (max-width: 768px) {
  #hero {
    height: 90vh;
  }

  #hero .carousel-item {
    height: 90vh;
  }

  #hero h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  #hero h2 {
    /* width: 80%; */
  }
}

@media (max-height: 500px) {
  #hero {
    height: 150vh;
  }

  #hero .carousel-item {
    height: 150vh;
  }
}
/*--------------------------------------------------------------
# least notices
--------------------------------------------------------------*/
.leastNotice {
  padding: 0px 0px;
}
.leastNotice .notice-top {
  display: inline-block;
  position: relative;
  background-color: rgb(0 71 42);
  height: 42px;
  padding: 0 20px;
  line-height: 42px;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
}
.leastNotice .notice-top h4 {
  color: var(--color-inverse);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0;
}
.leastNotice .notice-top-content {
  display: inline-block;
  position: relative;
  background-color: #e3e3e3;
  height: 42px;
  padding: 0 20px;
  line-height: 42px;
  width: 100%;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  /* color: #fff; */
  color: #002147;
}
.leastNotice .notice-top-content a {
  /* color: #fff; */
  color: #002147;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 0;
  padding-right: 15px;
  font-family: var(--font-secondary);
}
.leastNotice .notice-top-content a i {
  color: var(--color-primary);
  font-weight: 600;
}

/*--------------------------------------------------------------
# about- us
--------------------------------------------------------------*/
#about {
  padding-top: 30px;
  padding-bottom: 30px;
}
#about .about-info {
  box-shadow: 0 0 4px #ddd;
  padding: 10px 10px;
  border-radius: 5px;
}
#about .about-tittle {
  background: var(--text-tittle-color);
  padding: 10px;
  margin-bottom: 10px;
}
#about .about-tittle h4 {
  margin-bottom: 0px;
  font-size: 20px;
  text-transform: capitalize;
  color: var(--color-inverse);
}
#about .about-details p {
  text-align: justify;
  color: var(--text-tittle-color);
  font-weight: 500;
  margin-bottom: 6px;
}
#about .about-details a {
  background: var(--color-primary);
  color: var(--color-inverse);
  border-radius: 30px;
  padding: 2px 16px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-secondary);
}
/*--------------------------------------------------------------
# new and notice
--------------------------------------------------------------*/
#newsAndMedia {
  padding-top: 10px;
  padding-bottom: 20px;
  background: transparent;
}
.main-news-about {
  box-shadow: 0 0 4px #ddd;
  padding: 10px 10px;
  border-radius: 5px;
}
.main-news-title {
  background: #609513;
  padding: 10px;
  margin-bottom: 10px;
}
.main-news-title h4 {
  margin-bottom: 0px;
  font-size: 20px;
  text-transform: capitalize;
  color: var(--color-inverse);
  font-weight: 600;
}
.main-news-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-news-info ul li {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-secondary);
  margin-bottom: 6px;
}
.main-news-info ul li:last-child {
  margin-bottom: 0px;
}
.main-news-info ul li a {
  color: #333;
  display: flex;
  align-items: start;
  gap: 10px;
}
.main-news-info ul li a:hover {
  color: var(--color-primary);
}
.main-news-info ul li a i {
  color: var(--color-primary);
}
.main-news-info .news-button {
  text-align: right;
  margin-top: 8px;
}
.main-news-info .news-button a {
  background: var(--color-primary);
  color: var(--color-inverse);
  border-radius: 30px;
  padding: 2px 16px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-secondary);
  text-align: right;
}

.category-list {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.category-list li {
  position: relative;
  display: block;
  margin-bottom: 8px;
  border: 1px solid #dee2e6;
  padding: 3px 10px;
  border-radius: 5px;
}
.category-list li a {
  position: relative;
  display: block !important;
  font-size: 15px !important;
  line-height: 30px !important;
  color: var(--title-color);
}
.category-list li a span {
  float: right;
}
/*--------------------------------------------------------------
# all blogs
--------------------------------------------------------------*/
.blog {
  background: transparent;
}

/** styled-pagination */
.pagination {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.pagination li {
  position: relative;
  display: inline-block;
  margin: 0px 3px;
}

.pagination li a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: #666666;
  height: 50px;
  width: 50px;
  line-height: 50px;
  border: 1px solid #e5e5e5;
  font-weight: 500;
  text-align: center;
  border-radius: 50%;
  z-index: 1;
  transition: all 500ms ease;
}
.pagination li a:hover,
.pagination li a.current {
  color: #111111;
}
.pagination li a.current {
  background-color: var(--color-primary);
  color: var(--color-inverse);
}
.pagination li a:hover {
  background-color: var(--color-primary);
  color: var(--color-inverse);
}
.pagination li a i {
  font-size: 18px;
}

.mr-0 {
  margin: 0px !important;
}
/*--------------------------------------------------------------
# Notice Boards
--------------------------------------------------------------*/
#notice {
  background: transparent;
  padding-bottom: 50px;
}
#notice .notice-title h4 {
  font-size: 16px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
}
#notice .notice-title h4::after {
  content: '';
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--color-primary);
  margin: 4px 10px;
}
#notice .notice-title p {
  margin: 0;
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-tittle-color);
}
#notice .notice-all-btn {
  text-align: center;
}
#notice .notice-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}
#notice .notice-all-btn a {
  background: var(--color-primary);
  color: var(--color-inverse);
  padding: 7px 25px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-secondary);
  border-radius: 30px;
}
#notice .notice-single-items {
  margin-top: 40px;
}
#notice .notice-items {
  display: flex;
  align-items: center;
  border: 1px solid #eeeeee;
  padding: 10px;
  margin-bottom: 10px;
}

#notice .notice-date {
  margin-right: 25px;
  text-align: center;
}
#notice .notice-date .date {
  background: var(--text-tittle-color);
  color: var(--color-inverse);
  width: 150px;
}
#notice .notice-date .date h4 {
  font-size: 20px;
  padding-top: 6px;
  padding-bottom: 6px;
  margin-bottom: 0;
}
#notice .notice-date .Years {
  background: #002f50;
  color: var(--color-inverse);
}
#notice .notice-date .Years h5 {
  font-size: 16px;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 0;
}
#notice .notice-text h4 {
  color: var(--text-tittle-color);
  font-weight: 700;
  font-size: 18px;
}
#notice .notice-text a {
  font-family: var(--font-secondary);
}
/*--------------------------------------------------------------
# news
--------------------------------------------------------------*/
#news {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: transparent;
  padding: 40px 0px;
}
.news-animation-icons {
  position: absolute;
  z-index: -1;
  top: 7%;
  left: 8%;
  animation: banner_animi_2 linear 3s infinite alternate;
}
@keyframes banner_animi_2 {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}
.news-animation-icons2 {
  position: absolute;
  right: 100.4px;
  bottom: 45px;
  animation: banner_animi_2 linear 3s infinite alternate;
}
.news .news-carousel,
.news .news-slider {
  overflow: hidden;
}
.news-card {
  box-shadow: 0 0 20px #eee;
  border: 0;
  background: #fff;
  border-radius: 5px;
}
.news-image {
  position: relative;
  overflow: hidden;
  border-radius: 5px 5px 0 0;
}
.news-image img {
  border-radius: 5px 5px 0 0;
  height: 180px;
  object-fit: cover;
  transition: all 0.6s;
}
.news-card:hover .news-image img {
  transform: scale(1.15);
  border-radius: 5px 5px 0 0;
}

.news-image .dates {
  background: var(--color-primary);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 7px 20px;
  display: inline-block;
  color: var(--color-inverse);
  border-radius: 15px 15px 0 0;
  right: 0;
  margin: 0 auto;
  max-width: 220px;
  text-align: center;
  font-weight: 500;
}
.news-info {
  padding: 25px 30px 25px 30px;
  text-align: center;
  border-radius: 0 0 5px 5px;
}
.news-info h4 {
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.4;
  font-size: 17px;
}
.news-info h4 a {
  color: var(--text-title-color);
}

.news-info .news-btn a {
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 30px;
  padding: 2px 16px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
  font-family: var(--font-secondary);
}

.news-info .news-btn a:hover {
  background-color: var(--color-primary);
  color: var(--color-inverse);
}

.news .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.news .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--color-primary);
  opacity: 1;
  border: 1px solid var(--color-primary);
  transition: all 0.4s ease;
}

.news .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
  width: 22px;
  border-radius: 30px;
}

/*--------------------------------------------------------------
# Student Count
--------------------------------------------------------------*/
#studentCount {
  background: transparent;
  padding-bottom: 40px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
#studentCount .class-items {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border: 1px solid #dbdbdb;
  margin-bottom: 20px;
  cursor: pointer;
}
#studentCount .class-items:hover {
  border: 1px solid var(--color-primary);
}
#studentCount .class-name {
  flex: 1;
}
#studentCount .class-name h4 {
  font-weight: 600;
  font-size: 21px;
  line-height: 2rem;
  margin-bottom: 0.25rem;
  color: var(--text-tittle-color);
}
#studentCount .class-name p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.75rem;
  color: gray;
}
#studentCount .student-qu {
  display: flex;
  align-items: center;
  gap: 20px;
}
#studentCount .student-qu p i {
  font-weight: 500;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.teacher {
  padding-bottom: 40px;
}
.teacher .teacher-items {
  margin-bottom: 20px;
}
.teacher .teacher-card {
  border-radius: 10px 0 10px;
  box-shadow: 0 0 10px #ddd;
  transition: all 0.3s ease;
  padding: 30px 15px 25px;
  border: 0;
  text-align: center;
}
.teacher .teacher-card .teacher-images {
  margin-bottom: 20px;
}
.teacher .teacher-card .teacher-images img {
  max-width: 200px;
  max-height: 200px;
  border-radius: 100%;
  object-fit: cover;
}
.teacher .teacher-info h4 {
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 18px;
  color: var(--color-primary);
}
.teacher .teacher-info h4 a {
  color: var(--text-tittle-color);
}
.teacher .teacher-info p {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.teacher .teacher-all-btn {
  text-align: center;
  margin-top: 15px;
}
.teacher .teacher-all-btn a {
  background-color: var(--color-primary);
  color: var(--color-inverse);
  padding: 7px 35px 7px;
  font-size: 14px;
  line-height: 25px;
  font-weight: 700;
  border-radius: 3px;
  transition: all 250ms;
  font-family: var(--font-secondary);
}
/*--------------------------------------------------------------
# OUR Phooto Gallery
--------------------------------------------------------------*/
#gallery {
  background: transparent;
}
.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.gallery .gallery-item img {
  transition: 0.3s;
}
.gallery .gallery-links {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3;
}
.gallery .gallery-links .preview-link,
.gallery .gallery-links .details-link {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
  line-height: 1.2;
  margin: 30px 8px 0 8px;
}
.gallery .gallery-links .preview-link:hover,
.gallery .gallery-links .details-link:hover {
  color: var(--color-inverse);
}
.gallery .gallery-links .details-link {
  font-size: 30px;
  line-height: 0;
}
.gallery .gallery-item:hover .gallery-links {
  opacity: 1;
}
.gallery .gallery-item:hover .preview-link,
.gallery .gallery-item:hover .details-link {
  margin-top: 0;
}
.gallery .gallery-item:hover img {
  transform: scale(1.1);
}
.glightbox-clean .gslide-description {
  background: #222425;
}
.glightbox-clean .gslide-title {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
/*--------------------------------------------------------------
# videos Gallery
--------------------------------------------------------------*/
.videos {
  background-image: url(../img/animation/blog-bg.png);
  background-position: top center;
  background-repeat: no-repeat;
}
.videos .videos-items {
  background: var(--color-inverse);
  border-radius: 5px 0 5px;
  box-shadow: 0 0 10px #ddd;
}
.videos .videos-items h4 {
  text-align: center;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  font-size: 16px;
  padding: 20px 10px;
}
.videos .videos-item {
  position: relative;
  overflow: hidden;
  border-radius: 5px 5px 0px 0px;
}
.videos .videos-links {
  position: absolute;
  inset: 0;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.5);
  z-index: 3;
}
.videos .play-btn {
  width: 74px;
  height: 74px;
  background: radial-gradient(
    var(--color-primary) 50%,
    rgba(232, 69, 69, 0.4) 52%
  );
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}
#videos .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
#videos .play-btn::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(232, 69, 69, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: transparent;
}
.footer-wrapper {
  background-color: #ebebeb;
  height: 100px;
  margin: 0 auto;
  width: 100%;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
}
.copyright {
  font-size: 14px;
}
.footer-link {
  text-align: right;
  font-size: 14px;
}
.url-link-footer {
  margin-bottom: 1rem !important;
}
.footer-link p {
  margin-bottom: 0px;
}
/* !--About us Pages */
/*--------------------------------------------------------------
# About Page css
--------------------------------------------------------------*/
.school-history .school-history-info {
  border-top: 3px solid var(--color-primary);
  border-bottom: 3px solid var(--color-primary);
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}
.school-history .school-history-info p {
  text-align: justify;
  color: var(--text-tittle-color);
  font-size: 16px;
  font-weight: 500;
}
.school-history .school-history-info p:last-child {
  margin-bottom: 0;
}

/* !--President's speech Pages */
/*--------------------------------------------------------------
# President's speech css
--------------------------------------------------------------*/
.President-history .President-history-info {
  border-top: 3px solid var(--color-primary);
  border-bottom: 3px solid var(--color-primary);
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}
.President-history .President-history-info p {
  text-align: justify;
  color: var(--text-tittle-color);
  font-size: 16px;
  font-weight: 500;
}
.President-history .President-history-info p:last-child {
  margin-bottom: 0;
}
.President-history .President-history-info h4 {
  color: var(--text-title-color);
  font-size: 22px;
  font-weight: 600;
  margin-top: 25px;
}
.President-history .President-history-info h5 {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 15px;
  color: #666666;
  margin-bottom: 0;
}
/* !--Notice Board Pages */
/*--------------------------------------------------------------
# Notice Board css
--------------------------------------------------------------*/
#noitce-Board .noitce-Board-single-items {
  border-top: 3px solid var(--color-primary);
  border-bottom: 3px solid var(--color-primary);
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}
#noitce-Board .noitce-Board-items {
  display: flex;
  align-items: center;
  border: 1px solid #eeeeee;
  padding: 10px;
  margin-bottom: 10px;
}

#noitce-Board .noitce-Board-date {
  margin-right: 25px;
  text-align: center;
}
#noitce-Board .noitce-Board-date .date {
  background: var(--text-tittle-color);
  color: var(--color-inverse);
  width: 150px;
}
#noitce-Board .noitce-Board-date .date h4 {
  font-size: 20px;
  padding-top: 6px;
  padding-bottom: 6px;
  margin-bottom: 0;
}
#noitce-Board .noitce-Board-date .Years {
  background: #002f50;
  color: var(--color-inverse);
}
#noitce-Board .noitce-Board-date .Years h5 {
  font-size: 16px;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 0;
}
#noitce-Board .noitce-Board-text h4 {
  color: var(--text-tittle-color);
  font-weight: 700;
  font-size: 18px;
}
#noitce-Board .noitce-Board-text a {
  font-family: var(--font-secondary);
}
/* !--Notice Details Pages */
/*--------------------------------------------------------------
# Notice Details css
--------------------------------------------------------------*/
.notice-details .noticeDetails-info {
  border-top: 3px solid var(--color-primary);
  border-bottom: 3px solid var(--color-primary);
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}
.notice-details .noticeDetails-info h4 {
  font-size: 20px;
  color: var(--text-tittle-color);
  font-weight: 700;
}
.notice-details .noticeDetails-info p {
  font-family: var(--font-secondary);
  color: #666666;
}
.notice-details .noticeDetails-images {
  margin: 0 auto;
  text-align: center;
}
.notice-details .noticeDetails-images img {
  cursor: pointer;
  border: 2px solid #dbdbdb;
  border-radius: 5px;
  transition: 0.3s;
}
.notice-details .noticeDetails-images img:hover {
  border: 2px solid var(--color-primary);
}
/* !--Contact us Pages */
/*--------------------------------------------------------------
# Contact us css
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  padding: 20px;
  width: 100%;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  display: flex;
  align-items: center;
}
.contact .info-box .icons {
  background: #ffe4e4;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}
.contact .info-box i.lo {
  font-size: 24px;
  color: var(--color-primary);
}
.contact .info-box h3 {
  font-size: 20px;
  color: var(--text-tittle-color);
  font-weight: 700;
  margin: 10px 0 8px 25px;
}
.contact .info-box p {
  padding: 0;
  color: #777777;
  line-height: 24px;
  font-size: 14px;
  margin: 0 0 0 25px;
  font-family: var(--font-secondary);
}
.contact .info-box .social-links {
  margin: 5px 0 0 25px;
  display: flex;
  align-items: center;
}
.contact .info-box .social-links a {
  font-size: 18px;
  display: inline-block;
  color: var(--color-primary);
  line-height: 1;
  margin-right: 12px;
  transition: 0.3s;
}
.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 27px;
}
.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.08);
  transition: 0.3s;
}
.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}
.contact .php-email-form input {
  padding: 10px 15px;
}
.contact .php-email-form textarea {
  padding: 12px 15px;
}
.contact .php-email-form button[type='submit'] {
  background: var(--color-primary);
  border: 0;
  padding: 6px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
  font-weight: 600;
  font-family: var(--font-secondary);
  margin-top: 20px;
}
.contact .php-email-form button[type='submit']:hover {
  background: var(--text-tittle-color);
}
/*--------------------------------------------------------------
# google map location
--------------------------------------------------------------*/
.map {
  padding-top: 10px;
  padding-bottom: 0px;
}

/* !-- News and event Details Pages */
/*--------------------------------------------------------------
# News and event Details
--------------------------------------------------------------*/
.news-details .newsDetails-info {
  border-top: 3px solid var(--color-primary);
  border-bottom: 3px solid var(--color-primary);
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}
.news-details .newsDetails-info h4 {
  font-size: 20px;
  color: var(--text-tittle-color);
  font-weight: 700;
}
.news-details .newsDetails-info p {
  font-family: var(--font-secondary);
  color: #666666;
}
.news-details .newsDetails-images {
  margin: 0 auto;
  text-align: center;
}
.news-details .newsDetails-images img {
  cursor: pointer;
  border: 4px solid #dbdbdb;
  border-radius: 5px;
  transition: 0.3s;
}
.news-details .newsDetails-images img:hover {
  border: 4px solid var(--color-primary);
}
.news-details .news-more-details {
  margin-top: 25px;
}
.news-details .news-more-details p {
  text-align: justify;
}
.news-details .news-more-details p:last-child {
  margin-bottom: 0;
}
/* !-- Result Boards Pages */
/*--------------------------------------------------------------
# Result Boards Details
--------------------------------------------------------------*/
#class-result .result-list {
  border-top: 3px solid var(--color-primary);
  border-bottom: 3px solid var(--color-primary);
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}
#class-result .result-list h4 {
  font-size: 20px;
  color: var(--text-tittle-color);
  font-weight: 700;
  margin-bottom: 15px;
}
#class-result .Result-list-table tr th {
  padding: 12px 8px;
  text-align: center;
  font-weight: 600;
  font-family: var(--font-secondary);
}
#class-result .Result-list-table th {
  font-size: 16px;
  vertical-align: middle !important;
  line-height: 1.3 !important;
  text-transform: uppercase;
}

#class-result .Result-list-table td {
  padding: 12px 8px;
  font-size: 15px;
  vertical-align: middle !important;
  line-height: 1.3 !important;
  font-weight: 500;
}
#class-result .Result-list-table tr td:nth-child(1) {
  text-align: center;
}
#class-result .Result-list-table tr td:nth-child(2) {
  text-align: center;
}

#class-result .Result-list-table tr td:nth-child(3) {
  text-align: center;
}
#class-result .Result-list-table tr td:nth-child(4) {
  text-align: center;
}
/* !-- Exam free Pages */
/*--------------------------------------------------------------
# Exam free Details
--------------------------------------------------------------*/
#exam-free .exam-free-info {
  border-top: 3px solid var(--color-primary);
  border-bottom: 3px solid var(--color-primary);
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}
#exam-free .exam-free-info h4 {
  font-size: 20px;
  color: var(--text-tittle-color);
  font-weight: 700;
  margin-bottom: 13px;
}

#exam-free .exam-free-info ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
#exam-free .exam-free-info ul li {
  padding-left: 28px;
  position: relative;
}
#exam-free .exam-free-info ul li + li {
  margin-top: 7px;
}
#exam-free .exam-free-info ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: var(--color-primary);
  line-height: 1;
}
/* !-- onlineAdmission Pages */
/*--------------------------------------------------------------
# onlineAdmission from
--------------------------------------------------------------*/
.onlineAdmission-section-title {
  text-align: center;
  padding-bottom: 30px;
}
.onlineAdmission-section-title i {
  color: var(--color-primary);
  font-size: 35px;
}
.onlineAdmission-section-title p {
  margin: 0px auto 0 auto;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .onlineAdmission-section-title p {
    width: 76%;
  }
}
#onlineAdmission .onlineAdmission-content {
  border-top: 3px solid var(--color-primary);
  border-bottom: 3px solid var(--color-primary);
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}
#onlineAdmission .onlineAdmission-content h4 {
  font-size: 20px;
  color: var(--text-tittle-color);
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}
#onlineAdmission .php-email-form input,
#onlineAdmission .php-email-form textarea,
#onlineAdmission .php-email-form select {
  border-radius: 0;
  box-shadow: none;
  font-size: 16px;
  transition: 0.3s;
}
.onlineAdmission .php-email-form input,
.onlineAdmission .php-email-form select {
  height: 44px;
}
.onlineAdmission .php-email-form input[type='checkbox'] {
  height: 0px !important;
  padding: 8px !important;
  width: 1em !important;
  height: 1em !important;
  border-radius: 0.25em !important;
  margin-right: 7px !important;
}
#onlineAdmission .php-email-form input:focus,
#onlineAdmission .php-email-form textarea:focus,
.onlineAdmission .php-email-form select:focus {
  border-color: var(--color-primary);
}
#onlineAdmission .php-email-form input {
  padding: 10px 15px;
}
#onlineAdmission .php-email-form textarea {
  padding: 12px 15px;
}
#onlineAdmission .php-email-form button[type='submit'] {
  background: var(--color-primary);
  border: 0;
  padding: 6px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
  font-weight: 600;
  font-family: var(--font-secondary);
  margin-top: 20px;
}
#onlineAdmission .php-email-form button[type='submit']:hover {
  background: var(--text-tittle-color);
}
#onlineAdmission .php-email-form .payment-note {
  background-color: #ff9;
  padding: 15px;
  border-radius: 10px;
}
#onlineAdmission .php-email-form .payment-note p {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 15px;
  color: var(--color-secondary);
}
#onlineAdmission .php-email-form .payment-note p:last-child {
  margin-bottom: 0px;
}
.onlineAdmission .php-email-form label {
  padding-bottom: 5px;
  font-weight: 600;
  font-size: 15px;
}
#onlineAdmission .php-email-form .font-color {
  color: rgb(255, 0, 0);
  font-weight: normal;
}
.input-file-container {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  padding: 15px;
  border: 2px dashed grey;
}

/* !-- Home Pages */
/*--------------------------------------------------------------
# Bangladesh National
--------------------------------------------------------------*/
.bangladesh-national {
  background: transparent;
  padding: 20px 0px;
}
.bangladesh-national-card {
  background: #8cc643;
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  padding: 8px 5px;
  border-right: 2px solid #fff;
  cursor: pointer;
}
.bangladesh-national-card:hover {
  background: #e40001;
}

.bangladesh-national-card h4 {
  margin-bottom: 0px;
  font-size: 26px;
  color: white;
  line-height: 33px;
}
.bangladesh-national-card p {
  margin-bottom: 0px;
  font-size: 13px;
  line-height: 11px;
  color: white;
}

/* !-- Home Pages */
/*--------------------------------------------------------------
# counter up
--------------------------------------------------------------*/
.counter-section {
  background: transparent;
  padding: 40px 0px;
  padding-bottom: 40px;
}
.counter-container {
  background-color: var(--section-background-green);
  border-radius: 10px;
  padding: 50px 40px 50px 40px;
}
.rts__single__counter .heading__color {
  position: relative;
  z-index: 2;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto;
  padding-bottom: 10px;
  font-weight: 700;
  font-size: 50px;
  line-height: 60px;
}
.rts__single__counter .heading__color::before {
  content: '';
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: linear-gradient(
    228.34deg,
    #fef2eb 0%,
    #f1f1f1 46.31%,
    #e4e0ea 100%
  );
  position: absolute;
  top: 0;
  left: -20px;
  z-index: -1;
}
.rts__single__counter .heading__color.__noround::before {
  display: none;
}
.rts__single__counter .heading__color {
  color: #34a853;
}
.rts__single__counter p {
  color: #092753;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 18px;
}
/* !-- Home Pages */
/*--------------------------------------------------------------
# How to crating account
--------------------------------------------------------------*/
.crating-account-step {
  padding: 60px 0px;
  background: transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.crating-account-step .shape1 {
  position: absolute;
  top: 164px;
  left: 306px;
  right: 306px;
  border-top: 1px dashed #606060;
  z-index: -1;
}

.working-process-one__single {
  padding: 0px 15px 0px;
  position: relative;
  display: block;
}

.working-process-one__single .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #e7e7e7;
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.06);
  margin: 0 auto 24px;
}
.working-process-one__single .icon .count-box {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--color-primary);
  color: var(--color-inverse);
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  border-radius: 50%;
}
.working-process-icons {
  width: 60px;
  height: 60px;
  object-fit: cover;
}
.working-process-one__single .content {
  text-align: center;
  margin-top: 20px;
}
.working-process-one__single .content h4 {
  font-size: 22px;
  line-height: 34px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 8px;
  color: var(--text-tittle-color);
}
.working-process-one__single .content p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #606060;
}

/* !-- Home Pages */
/*--------------------------------------------------------------
# Give your opinion
--------------------------------------------------------------*/
.opinion-section {
  position: relative;
  background: transparent;
  padding-bottom: 30px;
  padding-top: 30px;
}
.opinion-section .inner-container {
  position: relative;
  display: block;
  background: #e6f2e8;
  /* background: var(--section-background-green); */
  border-radius: 10px;
  overflow: hidden;
  padding: 80px 40px 80px 40px;
}
.opinion-section .inner-container .pattern-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.opinion-section .image-box {
  position: relative;
  display: block;
}

.opinion-section .image-box .image {
  position: relative;
  display: inline-block;
  border-radius: 10px;
  box-shadow: 20px 24px 20px 0px rgba(0, 0, 0, 0.2);
}
.opinion-section .image-box .image img {
  width: 100%;
  border-radius: 10px;
}
.opinion-section .content-box {
  position: relative;
  display: block;
}
.opinion-section .content-box h2 {
  display: block;
  font-size: 35px;
  line-height: 45px;
  margin-bottom: 24px;
  font-family: var(--font-primary);
  font-weight: 700;
}
.opinion-section .content-box h2 span {
  color: var(--color-primary);
}

.opinion-section .content-box .list-item {
  margin: 0;
  padding: 0;
  list-style: none;
}
.opinion-section .content-box .list-item li {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: var(--title-color);
  padding-left: 36px;
  margin-bottom: 12px;
  font-weight: 500;
}

.opinion-section .content-box .list-item li:last-child {
  margin-bottom: 0px;
}

.opinion-section .content-box .list-item li:before {
  position: absolute;
  content: '';
  background-image: url(../img/animation/icon-9.png);
  left: 0px;
  top: 1px;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
}
.btn-box {
  margin-top: 35px;
}
.btn-box a {
  background-color: var(--color-primary);
  color: var(--color-inverse);
  padding: 11px 24px;
  font-size: 14px;
  line-height: 25px;
  font-weight: 700;
  border-radius: 10px;
  transition: all 250ms;
  font-family: var(--font-secondary);
}
/* !-- Home Pages */
/*--------------------------------------------------------------
# Top opinion
--------------------------------------------------------------*/
.Top-opinion {
  padding: 60px 0px;
  background: transparent;
}
.opinion-card {
  background-color: #fff;
  transition: 0.3s ease;
  padding: 40px 25px;
  border-radius: 15px;
}
.opinion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.opinion-card h4 {
  font-weight: 600;
  font-size: 21px;
  line-height: 2rem;
  color: var(--text-tittle-color);
}
.opinion-card p {
  margin-bottom: 20px;
  font-family: var(--font-secondary);
  font-weight: 500;
}
.opinion-card p strong {
  color: #c40233;
}
.opinion-btn {
  margin-top: 20px;
}
.opinion-btn a {
  background-color: var(--color-primary);
  color: var(--color-inverse);
  padding: 8px 20px;
  font-size: 14px;
  line-height: 25px;
  font-weight: 700;
  border-radius: 6px;
  transition: all 250ms;
  font-family: var(--font-secondary);
}
/* !-- Home Pages */
/*--------------------------------------------------------------
# voting section
--------------------------------------------------------------*/
.voting-section {
  background: transparent;
  padding: 30px 0px;
  padding-bottom: 20px;
}
.poll-box {
  margin: 20px auto;
  margin-top: 0px;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  font-family: Arial, sans-serif;
  background: #fff;
}

.poll-box h4 {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: var(--text-tittle-color);
}

.poll-option {
  margin-bottom: 8px;
}

.poll-option span {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-family: var(--font-secondary);
}

.bar {
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 6px;
}

.fill {
  height: 100%;
  background: var(--color-primary);
  transition: width 0.4s ease;
}

.info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info span {
  font-size: 15px;
  color: #333;
  font-family: var(--font-secondary);
  font-weight: 500;
}

.info button {
  padding: 3px 11px;
  border: 1px solid var(--color-primary);
  background: #fff;
  color: var(--color-primary);
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 600;
}

.info button:hover {
  background: var(--color-primary);
  color: #fff;
}

.show-results {
  text-align: center;
}

.show-results button {
  background: #fff;
  border: 1px solid var(--color-primary);
  padding: 4px 14px;
  border-radius: 6px;
  color: var(--color-primary);
  cursor: pointer;
  transition: 0.3s;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 14px;
}

.show-results button:hover {
  background: var(--color-primary);
  color: #fff;
}
/* more */
.circle-chart {
  width: 120px;
  height: 120px;
  position: relative;
  margin: 0 auto;
}

.circle-chart svg {
  transform: rotate(-90deg);
}

.circle-chart circle {
  fill: none;
  stroke-width: 10;
}

.circle-chart .bg {
  stroke: #e6e6e6;
}

.circle-chart .progress {
  stroke-linecap: round;
  transition: stroke-dashoffset 0.6s ease;
}

.circle-chart .percent-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  font-size: 20px;
}

.vote-label {
  text-align: center;
  font-weight: 600;
  margin-top: 10px;
}
.poll-box-2 {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  font-family: Arial, sans-serif;
  background: #fff;
}

/* more */
.opinion-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0);
}

.opinion-section__circle {
  width: 150px;
  height: 150px;
  background: conic-gradient(var(--color-primary) 0% 60%, #ff4d4f 60% 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.opinion-section__circle:hover {
  transform: scale(1.05);
}

.opinion-section__circle-inner {
  background: #fff;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.opinion-section__percent {
  font-size: 30px;
  font-weight: bold;
  color: var(--color-primary);
}

.opinion-section__label {
  font-size: 18px;
  color: #555;
}

.opinion-section__content {
  flex: 1;
}

.opinion-section__title {
  font-size: 24px;
  font-weight: 600;
  color: #222;
  margin-bottom: 20px;
}

.opinion-section__overview {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.opinion-section__box {
  flex: 1 1 45%;
  background: #ebebeb;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  align-items: center;
}
.opinion-section__box:hover {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.opinion-section__box h4 {
  font-size: 20px;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 3px;
}

.opinion-section__box p {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0px;
}
.red-box h4 {
  color: #ff4d4f;
}
.red-box p {
  color: #ff4d4f;
}

/*--------------------------------------------------------------
# Upazila section
--------------------------------------------------------------*/
.upazila {
  position: relative;
  background: transparent;
  padding-bottom: 30px;
  padding-top: 30px;
}
.upazila .inner-container {
  position: relative;
  display: block;
  background: #e6f2e8;
  border-radius: 10px;
  overflow: hidden;
  padding: 30px 20px 30px 20px;
  margin-bottom: 30px;
}
.upazila .image-box {
  position: relative;
  display: block;
}

.upazila .image-box .image {
  position: relative;
  display: inline-block;
  border-radius: 10px;
  box-shadow: 20px 24px 20px 0px rgba(0, 0, 0, 0.2);
}
.upazila .image-box .image img {
  width: 100%;
  border-radius: 10px;
}
.upazila .content-box {
  position: relative;
  display: block;
}
.upazila .content-box h2 {
  display: block;
  font-size: 26px;
  line-height: 36px;
  margin-bottom: 15px;
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--text-tittle-color);
}
.upazila .content-box p {
  text-align: justify;
  color: var(--text-tittle-color);
  font-size: 16px;
  font-weight: 500;
}
.upazila .upazila-details {
  padding: 10px;
  border-radius: 7px;
  border: 1px solid var(--color-primary);
  text-align: center;
  margin-bottom: 15px;
}
.upazila .upazila-details h4 {
  font-weight: 600;
  font-size: 16px;
  line-height: 1rem;
  color: var(--text-tittle-color);
  margin-bottom: 5px;
}
.upazila .upazila-details p {
  margin-bottom: 0px;
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# OUR Phooto Gallery
--------------------------------------------------------------*/
#gallery {
  background: transparent;
}
.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.gallery .gallery-item img {
  transition: 0.3s;
}
.gallery .gallery-links {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3;
}
.gallery .gallery-links .preview-link,
.gallery .gallery-links .details-link {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
  line-height: 1.2;
  margin: 30px 8px 0 8px;
}
.gallery .gallery-links .preview-link:hover,
.gallery .gallery-links .details-link:hover {
  color: var(--color-inverse);
}
.gallery .gallery-links .details-link {
  font-size: 30px;
  line-height: 0;
}
.gallery .gallery-item:hover .gallery-links {
  opacity: 1;
}
.gallery .gallery-item:hover .preview-link,
.gallery .gallery-item:hover .details-link {
  margin-top: 0;
}
.gallery .gallery-item:hover img {
  transform: scale(1.1);
}
.glightbox-clean .gslide-description {
  background: #222425;
}
.glightbox-clean .gslide-title {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}


/*--------------------------------------------------------------
# Blog Details - Exact Bangladesh Government Design
--------------------------------------------------------------*/

/* Main section - exactly as in reference */
.sidebar-page-container {
  background: transparent !important;
}

/* Blog details content container */
.blog-details-content {
  position: relative;
  display: block;
}

/* News block styling - exact match */
.news-block-two .inner-box {
  margin-bottom: 70px;
}

.news-block-two .inner-box .image-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px 10px 0px 0px;
}

.news-block-two .inner-box .image-box img {
  width: 100%;
  border-radius: 10px 10px 0px 0px;
}

.news-block-two .inner-box .lower-content {
  position: relative;
  border: 1px solid #e5e5e5;
  border-radius: 0px 0px 10px 10px;
  padding: 28px 30px 31px 30px;
}

/* Blog details specific override */
.blog-details-content .news-block-two .inner-box .lower-content {
  padding: 0px;
  border: none;
  padding-top: 10px;
}

.news-block-two .inner-box .lower-content .category {
  position: absolute;
  left: 30px;
  top: -15px;
  display: inline-block;
  font-size: 16px;
  line-height: 20px;
  font-family: var(--font-secondary);
  color: var(--color-inverse);
  font-weight: 500;
  border-radius: 30px;
  padding: 5px 20px;
  z-index: 1;
  background: var(--color-primary);
}

/* Blog details category override */
.blog-details-content .news-block-two .inner-box .lower-content .category {
  position: relative;
  left: 0px;
  top: 0px;
  margin-bottom: 18px;
  font-family: var(--font-secondary);
}

.news-block-two .inner-box .lower-content h3 {
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 13px;
}

/* Blog details h3 override */
.blog-details-content .news-block-two .inner-box .lower-content h3 {
  font-size: 26px;
  line-height: 36px;
  font-weight: 600;
  margin-bottom: 13px;
}

.news-block-two .inner-box .lower-content h3 a {
  position: relative;
  display: inline-block;
  color: var(--text-tittle-color);
}

.news-block-two .inner-box .lower-content .post-info {
  position: relative;
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.news-block-two .inner-box .lower-content .post-info li {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  color: var(--text-tittle-color);
  font-weight: 500;
  margin-right: 35px;
}

.news-block-two .inner-box .lower-content .post-info li:last-child {
  margin: 0px !important;
}

.news-block-two .inner-box .lower-content .post-info li span {
  font-weight: 400;
  color: var(--text-tittle-color);
}

.news-block-two .inner-box .lower-content .post-info li a {
  display: inline-block;
  color: var(--text-tittle-color);
}

.news-block-two .inner-box .lower-content .post-info li:before {
  position: absolute;
  content: '';
  width: 2px;
  height: 16px;
  top: 5px;
  right: -18px;
  background: var(--text-tittle-color);
  opacity: 0.1;
}

.news-block-two .inner-box .lower-content .post-info li:last-child:before {
  display: none;
}

/* Text box */
.text-box {
  position: relative;
  display: block;
}

/* Blog Sidebar - exact match */
.blog-sidebar {
  position: relative;
  display: block;
  padding: 40px 25px;
  box-shadow: 0px 0px 80px 0px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
}

.blog-sidebar .widget-title h3 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: var(--text-tittle-color);
  margin-bottom: 20px;
}

.blog-sidebar .post-widget .post {
  position: relative;
  display: block;
  padding: 2px 0px 2px 118px;
  margin-bottom: 20px;
  min-height: 77px;
}

.blog-sidebar .post-widget .post .post-thumb {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 95px;
  border-radius: 5px;
}

.blog-sidebar .post-widget .post .post-thumb img {
  width: 100%;
  border-radius: 5px;
}

.blog-sidebar .post-widget .post h6 {
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 23px;
  font-weight: 500;
  margin-bottom: 0px;
  font-family: var(--font-secondary);
}

.blog-sidebar .post-widget .post h6 a {
  display: inline-block;
  color: var(--text-tittle-color);
}

.blog-sidebar .post-widget .post h6 a:hover {
  color: var(--color-primary);
}

.blog-sidebar .post-widget .post .post-date {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 25px;
  color: #666666;
  font-family: var(--font-secondary);
}

.blog-sidebar .tags-widget .tags-list {
  position: relative;
  margin: 0px -7.5px;
  list-style: none;
  padding: 0px;
}

.blog-sidebar .tags-widget .tags-list li {
  position: relative;
  display: inline-block;
  float: left;
  margin: 0px 5.5px 10px 5.5px;
}

.blog-sidebar .tags-widget .tags-list li a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  color: var(--text-tittle-color);
  border: 1px solid #e5e5e5;
  border-radius: 40px;
  padding: 2px 15px;
  font-family: var(--font-secondary);
  transition: all 0.3s ease;
}

.blog-sidebar .tags-widget .tags-list li a:hover {
  color: var(--color-inverse);
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}

.clearfix::after {
  display: block;
  clear: both;
  content: '';
}

/* Post share options - exact match */
.post-share-option {
  margin-bottom: 40px;
}
.blog-details-content .post-share-option {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.blog-details-content .post-share-option ul {
  position: relative;
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.blog-details-content .post-share-option ul li {
  position: relative;
  display: inline-block;
  margin-right: 12px;
}

.blog-details-content .post-share-option ul li:last-child {
  margin: 0px !important;
}

.blog-details-content .post-share-option ul li h6 {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

.blog-details-content .post-share-option .tags-list li a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  color: var(--text-tittle-color);
  border: 1px solid #e5e5e5;
  border-radius: 40px;
  padding: 2px 15px;
  font-family: var(--font-secondary);
  transition: all 0.3s ease;
}

.blog-details-content .post-share-option .tags-list li a:hover {
  color: var(--color-inverse);
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}

.blog-details-content .post-share-option .social-links li a {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--text-tittle-color);
}

.blog-details-content .post-share-option .social-links li a:hover {
  color: var(--color-primary);
}

/* Ensure no bullet points anywhere in blog details */
.blog-details-content ul,
.blog-details-content .post-info,
.blog-details-content .tags-list,
.blog-details-content .social-links {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

/* Comment area - exact match */
.comment-area {
  margin-bottom: 40px;
}

.comment-area h3 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: var(--text-tittle-color);
  margin-bottom: 20px;
}

.comment-list {
  margin-bottom: 25px;
}

.comment-area .single-comment {
  display: flex;
  gap: 1rem;
}

.comment-area .single-comment img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
}

.comment-area .single-comment h5 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  color: var(--text-tittle-color);
  margin-bottom: 0;
  font-family: var(--font-secondary);
}

.comment-area .single-comment span {
  font-size: 14px;
  line-height: 24px;
  color: #666666;
  font-family: var(--font-secondary);
}

.comment-list p {
  margin-top: 10px;
  color: #7d8087;
}

/* Comment box - exact match */
.blog-details-content .comment-box {
  background: linear-gradient(
    228.42deg,
    #f1feeb 0%,
    #f1f1f1 46.48%,
    #e0eae6 100.36%
  );
  padding: 30px;
  border-radius: 10px;
}

.blog-details-content .group-title {
  position: relative;
  display: block;
}

.blog-details-content .group-title h3 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: var(--text-tittle-color);
}

.blog-details-content .comment-box .form-inner .form-group {
  position: relative;
  display: block;
  margin-bottom: 22px;
}

.blog-details-content .comment-box .form-inner .form-group label {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: var(--text-tittle-color);
  margin-bottom: 8px;
}

.blog-details-content .comment-box .form-inner .form-group input[type='text'],
.blog-details-content .comment-box .form-inner .form-group input[type='email'],
.blog-details-content .comment-box .form-inner .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  border: 1px solid rgba(229, 229, 229, 1);
  border-radius: 50px;
  font-size: 16px;
  color: var(--text-tittle-color);
  padding: 10px 20px;
  transition: all 500ms ease;
  outline: none;
}

.blog-details-content .comment-box .form-inner .form-group input:focus,
.blog-details-content .comment-box .form-inner .form-group textarea:focus {
  border-color: var(--color-primary);
}

.blog-details-content .comment-box .form-inner .form-group textarea {
  height: 195px;
  resize: none;
  border-radius: 20px;
}

.message-btn button,
.theme-btn,
.btn-one {
  background-color: var(--color-primary);
  color: var(--color-inverse);
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.theme-btn:hover,
.btn-one:hover,
.message-btn button:hover {
  background-color: var(--color-secondary);
  transform: translateY(-1px);
}

/* Utility Classes */
.mb_25 {
  margin-bottom: 25px;
}
.mb_45 {
  margin-bottom: 45px;
}
.mb_60 {
  margin-bottom: 60px;
}
.pt_25 {
  padding-top: 25px;
}

/* Responsive fixes for blog details */
@media only screen and (max-width: 991px) {
  .blog-sidebar {
    margin-top: 40px;
  }
  
  .post-share-option {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .sidebar-page-container {
    padding: 20px 0;
  }
  
  .blog-sidebar {
    padding: 30px 20px;
    margin-top: 30px;
  }
  
  .blog-sidebar .post-widget .post {
    padding: 2px 0px 2px 100px;
    min-height: 65px;
  }
  
  .blog-sidebar .post-widget .post .post-thumb {
    width: 80px;
  }
}

@media only screen and (max-width: 499px) {
  .comment-box {
    padding: 20px 15px;
  }
  
  .blog-sidebar .post-widget .post {
    padding: 2px 0px;
    min-height: auto;
    text-align: center;
  }
  
  .blog-sidebar .post-widget .post .post-thumb {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
  }
}

/* Comment voting animations */
.comment-vote-btn.vote-updated {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

.comment-vote-btn.active {
    background-color: #007bff !important;
    color: white !important;
}

.comment-vote-btn {
    transition: all 0.2s ease;
}

