* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
}


.hero-section {
    position: relative;
    height: 520px;
    background-image: url("../img/service.jpg");

    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(190, 186, 186, 0.427);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    max-width: 750px;
    color: #ffffff;
}


.hero-logo {
    width: 220px;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 26px;
    font-weight: 1000;
    margin-bottom: 20px;
}


.hero-text {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.95;
    color: white;
}

.service-card {
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.34);
    transition: 0.3s;
    height: 100%;

    transition: all 0.3s ease-in-out;
}

.service-card:hover {
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.18);
    transform: translateY(-5px);
}

.service-card img {
    max-width: 100%;
    height: 200px;
    object-fit: contain;
}

.service-title {
    color: #2A62AA;
    font-weight: 600;
    font-family: "Tiro Bangla", Sans-serif;
}

.font {

    font-family: "Tiro Bangla", Sans-serif;
}
.gallery-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gallery-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.gallery-img:hover {
    transform: scale(1.04);
}
.gallery-tittle{
    color: #2A62AA;
}

.view-more {
    font-weight: 600;
    text-decoration: none;
    color: #000;
}

.nav-pills .nav-link {
    border-radius: 50px;
    padding: 6px 20px;
}

@media (max-width: 576px) {
    .gallery-img {
        height: 200px;
    }
}
.activities-section {
    background: #f6f8fc;
}

.section-title {
    font-weight: 700;
    color: #1f4aa8;
}

.activity-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    transition: 0.3s;
    height: 100%;
}

.activity-card:hover {
    transform: translateY(-5px);
}

.activity-img {
    overflow: hidden;
    height: 240px;
}

.activity-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.activity-card:hover .activity-img img {
    transform: scale(1.12);
}

.activity-content {
    padding: 20px;
}

.activity-content h5 {
    font-weight: 700;
    color: #1f4aa8;
    margin-bottom: 10px;
}

.activity-content p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

@media (max-width: 576px) {
    .activity-img {
        height: 210px;
    }
}
.fix-color{
    color: #2A62AA;
}
.up-portfolio-title {
      color: #2A62AA;
    font-weight: 700;
}

.up-portfolio-item {
    position: relative;
    overflow: hidden;
     height: 220px;    
    cursor: pointer;
    border: 2px solid #e6e6e6;
}

.up-portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.up-portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
}

.up-portfolio-overlay span {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 15px;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 5px;
}

.up-portfolio-item:hover .up-portfolio-img {
    filter: blur(2px);
    transform: scale(1.05);
}

.up-portfolio-item:hover .up-portfolio-overlay {
    opacity: 1;
}

.myDistrictSectionWrapper {
  background-color: #ffffff;
}

.myDistrictSectionTitle {
  font-size: 32px;
  font-weight: 700;
  color: #1f4fa3;
}

.myDistrictSingleCard {
  background: #ffffff;
  border-radius: 18px;
  padding: 17px 10px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.276);
  height: 100%;
  transition: all 0.3s ease;
}

.myDistrictSingleCard:hover {
  transform: translateY(-5px);
}


.myDistrictSingleCard img {
  max-width: 60px;
  height: auto;
  margin-bottom: 18px;
}

.myDistrictSingleCard h5 {
  font-size: 18px;
  font-weight: 600;
  color: #1f4fa3;
  margin: 0;
}

@media (max-width: 576px) {
  .myDistrictSectionTitle {
    font-size: 24px;
  }

  .myDistrictSingleCard img {
    max-width: 90px;
  }

  .myDistrictSingleCard h5 {
    font-size: 16px;
  }
}
.up-ceo-title {
  color: #2A62AA;
  font-weight: 700;
}

.up-ceo-profile {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.365);
}

.up-ceo-img {
  width: 170px;
  height: 230px;
  object-fit: cover;
  border-radius: 100px;
  border: 2px solid #e63973;
}

.up-ceo-designation {
  color: #555;
  font-size: 14px;
}

.up-ceo-social a {
  color: #2A62AA;
  font-size: 14px;
  margin: 0 6px;
  text-decoration: none;
}

.up-ceo-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.404);
}

.up-ceo-msg-title {
  color: #2A62AA;
  font-weight: 600;
  margin-bottom: 15px;
}

.up-ceo-slider-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.308);
}

.up-ceo-team-card {
  text-align: center;
}

.up-ceo-img-box {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.up-ceo-img-box img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.up-ceo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: 0.4s ease;
}

.up-ceo-overlay a {
  width: 36px;
  height: 36px;
  background: #2A62AA;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.up-ceo-img-box:hover .up-ceo-overlay {
  opacity: 1;
}

.up-ceo-team-card h6 {
  margin-top: 15px;
  color: #2A62AA;
  font-weight: 600;
}

.up-ceo-team-card span {
  font-size: 14px;
  color: #555;
}
.up-ceo-next,
.up-ceo-prev {
  color: #2A62AA;
}

.up-ceo-next::after,
.up-ceo-prev::after {
  font-size: 22px;
  font-weight: bold;
}
.ceo-des{
    color: gray;
}
.it-footer {
  background: #2F3336 !important;
  color: #ffffff;
  padding-top: 50px;
  font-size: 15px;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 18px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 45px;
  height: 2px;
  background: #0d6efd;
  display: block;
  margin-top: 6px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
  color: #dcdcdc;
  cursor: pointer;
  transition: 0.3s;
}

.footer-links li:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 14px;
  color: #dcdcdc;
  line-height: 1.6;
}

.footer-contact span {
  margin-right: 8px;
}

.footer-bottom {
  background: #262a2d;
  margin-top: 40px;
  padding: 15px 0;
  color: #bdbdbd;
}
