* {
    margin: 0;
    padding: 0;
    outline: 0;
}

a {
    text-decoration: none;
    display: inline-block;
}

a:hover {
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
ol,
li,
span {
    margin: 0;
    padding: 0;
}

/* Common css end */


#top_part{
  height: 110px;
}
.top_logo{
  line-height: 110px;
}
.top_name h1{
  line-height: 110px;
  color: #0070C0;
  font-family: 'Aptos';
  font-weight: 700;
  font-size: 32px;
}
.top_db h2{
  color:  #063F9A;
    font-family: 'Aptos';
    font-weight: 800;
    font-size: 14px;
    padding: 10px 0;
}
.top_btn a {
  font-size: 14px;
  font-weight: 700;
  font-family: 'Aptos';
  line-height: 34px;
  padding: 0 10px;
  color: #ffff;
  background: #063F9A;
  border: 1px solid  #063F9A;
  margin-left: 15px;
  border-radius: 5px;
  transition: all linear .4s;
  -webkit-transition: all linear .4s;
  -moz-transition: all linear .4s;
  -o-transition: all linear .4s;
  -ms-transition: all linear .4s;
}
.top_btn a:hover{
  color: #ffff;
  background:  #4082ee;
  border: 1px solid  #4082ee;
}
.top_icon_top a{
  color:  #063F9A;
  line-height: 32px;
  font-size: 20px;
  margin-left: 20px;
  /* padding-top: 4px; */
  transition: all linear .3s;
  -webkit-transition: all linear .2s;
  -moz-transition: all linear .2s;
  -o-transition: all linear .2s;
  -ms-transition: all linear .2s;
}
.top_icon_top a:hover{
  color:  #4082ee;
}
/* ======= Top part end ======= */

/* ======= Menu part Start ======= */
/* Navbar General */
.main_menu {
  position: relative;

  height: 40px;
   background: #161F6F; 
  /*background: #1a3664;*/
  justify-content: center;
  line-height: 40px;
}
nav {
  width: 100%;
  padding: 20px;
  /* background: lightblue; */
  transition: all 0.3s ease;
  z-index: 999;
}
.fixed {
  position: fixed;
  top: 0;
  left: 0;
  background: #161F6F;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.navbar-nav .nav-item .nav-link {
  padding: 10px 20px;
  transition: color 0.3s ease;

  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family:  'Aptos';
  line-height: 40px;
  padding: 0 35px;
  position: relative;
  text-align: center;
  
}
/* .main_menu .navbar-nav .nav-item .nav-link {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Aptos';
  line-height: 40px;
  padding: 0 35px;
  position: relative;
  display: block;
  text-align: center;
} */
.navbar-nav .nav-item {
  position: relative;
  transition: all linear .4s;
  -webkit-transition: all linear .4s;
  -moz-transition: all linear .4s;
  -o-transition: all linear .4s;
  -ms-transition: all linear .4s;
  justify-content: center;
}
.navbar-nav .nav-item:hover {
  background: #1959bf;
  color: #fff;
}

/* .navbar-nav .nav-link:hover {
  color: #007bff;
} */

/* Dropdown Menu Style */
.nav-drop, .nav-drop-down {
  position: absolute;
  top: 100%;
  left: 0;
  background: #1959bf;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.4s ease;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  z-index: 999;
}

.nav-drop li, .nav-drop-down li {
  list-style: none;
}

.nav-drop li a, .nav-drop-down li a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  white-space: nowrap;
  transition: background 0.3s, color 0.3s;
}

.nav-drop li a:hover, .nav-drop-down li a:hover {
  background: #84adef;
  color: #fff;
}

/* Hover Effect (Desktop) */
.nav-item:hover > .nav-drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.drop-item:hover > .nav-drop-down {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  left: 100%;
  top: 0;
}

/* Positioning for sub dropdown */
.nav-drop-down {
  left: 100%;
  top: 0;
}

/* Search Styling */
.search-form {
  margin-left: 20px;
}

.input-group input {
  border-radius: 20px 0 0 20px;
}

.input-group .btn {
  border-radius: 0 20px 20px 0;
}

.serch_btn button{
  background-color: #fff;
  border: 0;
}


/* .main_menu{
  height: 40px;
  background: #063F9A;
  justify-content: center;
  line-height: 40px;
}
nav {
  width: 100%;
  padding: 20px;
  background: lightblue;
  transition: all 0.3s ease;
  z-index: 999;
}
.fixed {
  position: fixed;
  top: 0;
  left: 0;
  background: dodgerblue;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.main_menu .navbar-nav .nav-item .nav-link {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Aptos';
  line-height: 40px;
  padding: 0 35px;
  position: relative;
  display: block;
  text-align: center;
}
.main_menu .navbar-nav .nav-item{
  position: relative;
  transition: all linear .4s;
  -webkit-transition: all linear .4s;
  -moz-transition: all linear .4s;
  -o-transition: all linear .4s;
  -ms-transition: all linear .4s;
  justify-content: center;
}
.main_menu .navbar-nav .nav-item:hover {
  background: #1959bf;
  color: #fff;
  
}

.main_menu .navbar-nav .nav-item .nav-drop{
  position: absolute;
  left:0;
  background: #1959bf;
  color: #fff;
  width: 200px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Aptos';
  line-height: 40px;
  display: block;
  transition: all linear .4s;
  -webkit-transition: all linear .4s;
  -moz-transition: all linear .4s;
  -o-transition: all linear .4s;
  -ms-transition: all linear .4s;
  visibility: hidden;
  opacity: 0;
  z-index: 999;
}
.main_menu .navbar-nav .nav-item:hover .nav-drop{
  visibility: visible;
  opacity: 1;
}
.main_menu .navbar-nav .nav-item:hover .nav-drop .drop-item{
display: block;
}
.main_menu .navbar-nav .nav-item:hover .nav-drop .drop-item:hover{
  background: #84adef;
  color: #fff;
}
.main_menu .navbar-nav .nav-item .nav-drop .drop-item{
position: relative;
}
.main_menu .navbar-nav .nav-item .nav-drop .drop-item .nav-drop-down{
position: absolute;
right: -200px;
top: 0;
background: #1959bf;
color: #fff;
width: 200px;
font-size: 14px;
font-weight: 700;
font-family: 'Aptos';
line-height: 40px;
display: block;
transition: all linear .4s;
-webkit-transition: all linear .4s;
-moz-transition: all linear .4s;
-o-transition: all linear .4s;
-ms-transition: all linear .4s;
visibility: hidden;
  opacity: 0;
z-index: 999;
}
.main_menu .navbar-nav .nav-item .nav-drop .drop-item:hover .nav-drop-down{
visibility: visible;
  opacity: 1;
} */

/* ======= Serch Part start ======= */

/* .search-container {
  position: relative;
  width: 150px;
  margin-left: 30px;
  height: 40px;
  line-height: 40px;
  
}

.search-container input[type="text"] {
  width: 100%;
  padding: 0 40px 10px 0; 
  border: 2px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
}
.search-container input::placeholder{
  position: absolute;
  left: 15px;
  top: 45%;
  transform: translateY(-50%);
  color: #888;
  font-size: 14px;
  pointer-events: none;
}

.search-container input[type="text"]:focus {
  border-color: #007bff;
}

.search-container .search-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 14px;
  pointer-events: none;
} */
/* ======= Menu part end ======= */

/* ======= ED and Founder Part start ======= */
#main_part{
  padding-top: 50px;
  padding-bottom: 50px;
}

 .edfound_container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Ensure both sections grow to fill height */
.founder_wrapper, 
.ed_part {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* So founder cards don't break the layout */
.founder_part {
    flex-shrink: 0;
}
.ed_part {
  background-color: #fff;
 
  border-radius: 12px;
  text-align: justify;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  
}
.ed_part img {
  max-width: 85px;
  height: 110px;
  border-radius: 10px;
  margin-bottom: 1px;
}
.ed_part h5{
    color: #00B0F0;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Aptos';
    width: 100%;
}
.ed_part small{
  color: #222;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Aptos';
}
.ed_part p {
    color: #222;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    font-family: 'Aptos';
    padding: 27px 20px;
    text-align: center;
}



.founder_part {
  background-color: #fff;
  padding: 25px 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}
.founder_part img {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    margin-bottom: 5px;
    border: 3px solid #00B0F0;
}
.founder_part h5{
  color: #00B0F0;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Aptos';
}
.founder_part small{
  color: #222;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Aptos';
}
.founder_part span{
  color: #222;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Aptos';
  margin-bottom: 17px;
}
.founder_part p{
  color: #222;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Aptos';
  text-align: justify;
  padding: 0 10px;
}

/* ======= ED and Founder Part end ======= */
/* ======= Achievement's Photo Part start ======= */

/* Gallery part start */
.gal_full{
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  border-radius: 12px;
  padding: 20px 10px 5px 10px;
}
.gallery_inp{
  text-align:center;
  display:inline;
}
.gallery_inp h5{
  font-size: 18px;
  font-weight: 700;
  font-family: 'Aptos';
  color:#222;
  padding-top: 10px;
  padding-bottom: 10px;
}
.gallery_inp p{
  font-size: 14px;
  font-weight: 500;
  font-family: 'Aptos';
  color:#222;
  
}
.gallery-card {
    border: none;
    border-radius: 15px;
    /* box-shadow: 12px 4px 12px rgba(0, 0, 0, 0.08); */
    transition: transform 0.3s ease;
    height: 100%;
    padding-bottom: 10px;
}
.gallery-img-top {
    height: 200px;
    object-fit: cover;
}
.vedio_text{
  text-align:center;
  display:inline;
}
.vedio_text h5{
  font-size: 18px;
  font-weight: 700;
  font-family: 'Aptos';
  color:#222;
  padding-top: 10px;
}
.vedio_text p{
  font-size: 14px;
  font-weight: 500;
  font-family: 'Aptos';
  color:#222;
  
}

/* .gal_btn{
  padding-top: 55px;
} */
/* .gal_banner {
  background: url(../images/gallery-banner.jpg) no-repeat center;
  background-size: cover;
  padding: 30px 0;
  position: relative;
  z-index: 1;
} */
 .nav-pills .nav-link {
    padding: 10px 20px;
    font-weight: 500;
    background-color: #93da9c;
}
.gal_title{
  background: #fff;
}
.gal_title h3{
  color: #00B0F0;
  font-size: 22px;
  font-weight: 700;
  font-family: 'Aptos';
}
.gal_banner::after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.8); */
  z-index: -1;
}

.gal_img {
  position: relative;
  border-radius: 10px;
  
}
.gal_img img {
  border-radius: 10px;
  height: 209px;
}

.gal_img .overly {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  border-radius: 10px;
  background: rgba(26, 25, 25, 0.5);
  transform: scale(0);
  transition: all linear .4s;
  -webkit-transition: all linear .4s;
  -moz-transition: all linear .4s;
  -o-transition: all linear .4s;
  -ms-transition: all linear .4s;
}

.gal_img .overly a {
  color: #fff;
  font-size: 30px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.gal_img:hover .overly {
  transform: scale(1);
  
}
.acp_mar{
   margin-bottom: 12px;
}
.vbox-next {
  right: 32%;
}

.vbox-prev {
  left: 30%;
}

/* Gallery part end */




/* ======= Achievement's Photo Part end ======= */
/* ======= Pro Part Start ======= */
/* .table-row {
  transition: background-color 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.table-row:hover {
  filter: brightness(90%);
} */

/* Custom color if Bootstrap doesn't have teal */
/* .bg-teal {
  background-color: #20c997 !important;
}

.text-white {
  color: #fff !important;
} */
.pro_part{
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  border-radius: 12px;
  padding-top: 20px;
  padding-bottom: 8px;
}

.pro_head h3{
  font-size: 22px;
  font-weight: 700;
  font-family: 'Aptos';
  color: #00B0F0;
}
.table, 
.table td, 
.table tr {
    border: none !important;   /* remove all borders */
}
.pro_inner tr td p{
  color: #222;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  font-family: 'Aptos';
  /* padding-bottom: 5px; */
}
.myproact {
    position: relative;
    padding-left: 18px;
}

.myproact::before {
    content: "";
    width: 7px;
    height: 7px;
    background: #00B0F0;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}
.pro_inner tr td p{
  color: #222;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  font-family: 'Aptos';
  /* padding-bottom: 5px; */
}

/* ======= Pro Part end ======= */

/* ======= CDP Activies Part start ======= */
.cdp_part{
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  /* margin-bottom: 10px; */
  border-radius: 12px;
  padding-top: 20px;
}

.cdp_head h3{
  font-size: 22px;
  font-weight: 700;
  font-family: 'Aptos';
  color: #00B0F0;
}
.cdp_inner {
    display: flex;
    flex-direction: column;
    gap: 12px; 
}

.cdp_inner tr {
    background: transparent; 
}

.cdp_inner tr td {
    display: block; 
    padding: 0;    
}

.myNotice {
    background-color: #f1ebeb;      
    padding: 16px 20px;               
    border-radius: 12px;              
    
    margin: 0;                        
    font-size: 16px;
    color: #222;
    font-family: 'Aptos';
}

/* .cdp-mar{
  margin-bottom: 12px;
} */
/* ======= CDP Activies Part end ======= */

/* ======= Main Page News Part Start ======= */
.news_notic_part {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* NEWS section */
.nws_part {
    flex-grow: 1;
    background: #ffffff;
    border-radius: 10px;
    padding: 10px 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

/* NOTICE section */
.cdp_part {
    flex-grow: 1;
    background: #ffffff;
    border-radius: 10px;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

/* scrollable table */
.nws_part .table-responsive,
.cdp_part .table-responsive {
    flex-grow: 1;
    overflow-y: auto;
}

/* Optional: smooth scrollbar */
.nws_part .table-responsive::-webkit-scrollbar,
.cdp_part .table-responsive::-webkit-scrollbar {
    width: 6px;
}
.nws_part .table-responsive::-webkit-scrollbar-thumb,
.cdp_part .table-responsive::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}




 .nws_part{
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  border-radius: 12px;
  padding-top: 20px;
  padding-bottom: 6px;
  margin-bottom: 20px;
}
.news-table {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); */
}

.news-table thead {
  background-color: #0d6efd;
  color: #fff;
}
.new_head h3{
  font-size: 22px;
  font-weight: 700;
  font-family: 'Aptos';
  color: #00B0F0;
}
.news-table tbody tr {
  transition: background-color 0.3s ease;
}

/* .news-table tbody tr:hover {
  background-color: #e9f3ff;
  cursor: pointer;
} */

/* .news-title {
  font-weight: 600;
  color: #0d6efd;
} */
 .news_homeinner {
    padding: 16px;
    background-color: #f9f9f9; 
    border-radius: 10px;      
    margin: 5px 0;            
}

/* Add spacing between rows using tbody > tr */
.news-table tbody tr {
    background: transparent;   
}

.news-table tbody {
    display: flex;
    flex-direction: column;
    gap: 10px;                 
}

.news-table tbody tr td {
    display: block;            
    padding: 0;               
}

 .news-table tbody tr  td{
     background-color: #f1ebeb;
     padding: 10px !important;
}

.news_homeinner h4{
  color: #00B050;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Aptos';
}
.news_homeinner p{
  color: #222;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  font-family: 'Aptos';
}
.news_homeinner a{
  color: #0d6efd;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  font-family: 'Aptos';
}
.table-responsive {
  border-radius: 10px;
}

/* .nws_part{
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.09);
}
.new_head tr th {
  background-color: #0d6efd;
  color: white;
}
.new_head tr th h4{
  font-size: 18px;
  font-weight: 700;
  font-family: 'Aptos';
}
.news_inner tr td h6{
  color: #222;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Aptos';
  padding-bottom: 5px;
}
.news_inner p{
  color: #222;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Aptos';
} */
 .news_inner img{
  width: 60%;
 }
/* ======= Main Page News Part end ======= */


/* ======= main_bottom Part start ======= */
#main_bottom{
  padding-bottom: 50px;
}
/* ======= Approach Part Start ======= */
.approach_part{
  background-color: #fff;
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  border-radius: 12px;
}
.approach_header{
  padding: 20px 0;
  text-align: center;
  color: #222;
  
  
}
.approach_header h3{
  font-size: 22px;
  font-weight: 700;
  font-family: 'Aptos';
  color: #00B0F0;
  
}
.approach_inner{
  background-color: #f1ebeb;
    padding: 10px;
    border-radius: 12px;
}
.approach_inner p{
  text-align: justify;
  color: #222;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  font-family: 'Aptos';
}
/* ======= Approach Part end ======= */


.mycurrentProjectContent {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* show 3 lines only */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.5em;
    transition: all 0.3s ease;
    color: #222;
}

.mycurrentProjectContent.expanded {
    -webkit-line-clamp: unset;
    max-height: 1000px; /* show full content */
    overflow: visible;
}

.readMoreBtn {
    margin-top: 5px;
    background: none;
    border: none;
    color: #007bff;
    cursor: pointer;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
}

/* ======= Testimonials Part Start ======= */
.testi_part{
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  border-radius: 12px;
  padding-top: 30px;
  
  /* padding: 30px 10px 10px 10px; */
}
.testi_head h3 {
  font-size: 22px;
  font-weight: 700;
  font-family: 'Aptos';
  color: #00B0F0;
  text-align: center;
}
.testimonial-slider {
  max-width: 700px;
  margin: auto;
  position: relative;
  overflow: hidden;
  background: white;
  border-radius: 12px;
  height: 315px;
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); */
}
.testimonial-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.testimonial {
  min-width: 100%;
  padding: 33px 30px;
  text-align: center;
}
.testimonial img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 3px solid #eee;
}
.testimonial p {
  
  color: #222;
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Aptos';
}
.testimonial h3 {
  margin: 0;
  font-weight: 600;
  color: #222;
  font-size: 22px;
  font-weight: 700;
  font-family: 'Aptos';
}
.buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding-left: 10px;
  padding-right: 10px;
}
.buttons button {
  background: rgba(0,0,0,0.2);
  border: none;
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
}
.buttons button:hover {
  background: rgba(0,0,0,0.4);
}
/* .testi_part{
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 30px 10px 10px 10px;
}
.testi_inner {
  padding-bottom: 50px;
  
  position: relative;
  z-index: 1;
}


.testi_head h2 {
  font-size: 18px;
  font-weight: 700;
  font-family: 'Aptos';
  text-align: center;
}

.testi_text img {
  float: left;
  margin-right: 12px;
}

.testi_text h4 {
  color: #222;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Oswald', sans-serif;
}

.testi_text h5 {
  color: #222;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Oswald', sans-serif;
  padding: 5px 0 10px;
}

.testi_text h6 {
  color: #e23e38;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}

.testi_text h6 i {
  margin-right: 3px;
}

.testi_text p {
  color: #222;
  font-size: 13px;
  font-weight: 400;
  font-family: 'Aptos';
  line-height: 18px;
  padding-top: 25px;
  letter-spacing: -.2px;
  text-align: justify;
}

.test_slide .slick-dots li button {
  font-size: 0;
  width: 16px;
  height: 16px;
  background: transparent;
  border: 2px solid #222;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 50%;
}

.test_slide .slick-dots {
  position: absolute;
  left: 50%;
  bottom: -48px;
  transform: translateX(-50%);
  display: flex;
}

.test_slide .slick-dots li.slick-active button {
  background: #e23e38;
  border: 2px solid #e23e38;
  width: 20px;
  height: 20px;
} */
/* ======= Testimonials Part end ======= */



/* ======= Publication Part Start ======= */
.pub_part{
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  border-radius: 12px;
  padding: 30px 10px 1px 10px;
}
.pub_header{
  text-align: center;
}
.pub_header h3{
  font-size: 22px;
  font-weight: 700;
  font-family: 'Aptos';
  color: #00B0F0;
  
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
    display: block;
    /* height: 164px; */
    height: 179px;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  font-size: 1.25rem;
  text-align: center;
  padding: 10px;
}

.gallery-item:hover .overlay {
  opacity: 1;
}
.overlay a{
  font-size: 18px;
  font-weight: 700;
  font-family: 'Aptos';
  color: #fff;
}
/* ======= Publication Part end ======= */



/* ======= NOtic Part Start ======= */
.notice-board {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  border-radius: 12px;
  padding: 30px 10px 10px 10px;
    }

    .notice {
      background-color: #e9ecef;
      border-left: 5px solid #0d6efd;
      padding: 15px 20px;
      margin-bottom: 20px;
      border-radius: 8px;
      transition: transform 0.6s, box-shadow 0.6s;
      cursor: pointer;
    }

    .notice:hover {
      color: #ffd700;
      border-left-color: #ffd700;
      transform: translateX(5px);
    }
    .notice:hover .notice-title,
    .notice:hover .notice-date,
    .notice:hover .notic-para{
      color: #ffd700; /* Gold on hover */
    }

    .notic_header{
      text-align: center;
    }
    .notic_header h3{
      font-size: 22px;
      font-weight: 700;
      font-family: 'Aptos';
      color: #00B0F0;
    }
    .notice-title {
      font-weight: 700;
      font-family: 'Aptos';
      font-size: 18px;
      color: #f1f1f1;
      margin-bottom: 5px;
    }

    .notice-date {
      font-size: 0.875rem;
      font-family: 'Aptos';
      color: #f1f1f1;
    }
    .notice p{
      color: #f1f1f1;
      font-family: 'Aptos';
      font-size: 16px;
    }
/* ======= Notic Part end ======= */



/* ======= Programs Part Start ======= */
#pronot_part{
  padding-bottom: 50px;
}
.programs_part {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  border-radius: 12px;
  padding: 30px 10px 2px 10px;
 
}
.programs_header h2{
  font-size: 22px;
  font-weight: 700;
  font-family: 'Aptos';
  color: #00B0F0;
}

/* .program-card {
 padding: 33px 20px;
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
  color: #fff;
  height: 100%;
} */
.col-sm-6.col-md-4.pb-4 {
  display: flex;
}

.program-card {
  padding: 33px 20px;
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
  color: #fff;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 180px; /* Adjust height */
}


.program-title {
  font-size: 1.2rem;
  font-family: 'Aptos';
  font-weight: 600;
  margin-top: 10px;
  transition: color 0.3s ease;
}

.program-icon i {
  font-size: 28px;
  transition: color 0.3s ease;
}

.program-date {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #f1f1f1;
}

/* Hover effect */
.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.program-card:hover .program-title,
.program-card:hover .program-icon i {
  color: #ffd700; /* Gold on hover */
}

/* Custom background colors */
.bg-blue    { background-color: #007bff; }
.bg-green   { background-color: #28a745; }
.bg-orange  { background-color: #fd7e14; }
.bg-purple  { background-color: #6f42c1; }
.bg-pink    { background-color: #e83e8c; }
.bg-teal    { background-color: #20c997; }
/* ======= Programs Part end ======= */
/* ======= footer part start ======= */
#footer_part{
  padding-top: 20px;
  /* background: #222; */
  /* background: #111E6C; */
  background: #23c5f3;
}

/* footer counter part start */
/* .footer_header{
  color: #fff;
  text-align: center;
  
}
.footer_header h2{
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  font-family: 'Aptos';
  text-align: center;
  border-bottom: #999999 solid 2px;
  padding-bottom: 30px;
} */
.footer_con{
  padding-top: 20px;
  padding-bottom: 20px;
  /* padding-left: 10px; */
  /* box-shadow: 0 0 3px rgba(0, 0, 0, 0.6); */
} 

.footer_con h2{
  color: #fff;

  font-size: 20px;
  font-weight: 700;
  font-family: 'Aptos';
  padding-bottom: 15px;
}
/* .counter-item samp{
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Aptos';
}
.counter-item span{
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Aptos';
} */
 
/* Web Counter Wrapper */
.web-counter-boxes {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Each Box */
.wc-box {
    background: #ffffff;
    /* padding: 10px 15px; */
    border-radius: 10px;
    text-align: center;
    min-width: 70px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

/* Number Style */
.wc-number {
    display: block;
    background: #222;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

/* Label Style */
.wc-label {
    color: #222;
    font-size: 14px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 575px) {
    .web-counter-boxes {
        justify-content: center;
    }

    .wc-box {
        min-width: 60px;
    }
}

.footer-sme{
  text-align: center;
}
.footer_social h6{
  /* color:#222; */
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Aptos';
  padding-bottom: 10px;
}
.footer_social a{
  height: 35px;
  width: 35px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  font-family: 'Aptos';
  margin-right: 5px;
  /* border: 1px solid  #063F9A; */
  border: 1px solid  #fff;
  border-radius: 5px;
  /* padding: 1px 10px; */
  transition: all linear .4s;
  -webkit-transition: all linear .4s;
  -moz-transition: all linear .4s;
  -o-transition: all linear .4s;
  -ms-transition: all linear .4s;
  position:relative;
  
}
.footer_social a i {
    position: absolute;
    top: 25%;
    left: 25%;
}
.footer_social a:hover{
  background: #3165b9;
  border: 1px solid  #3165b9;
}
/* .footer_address h6 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  font-family: 'Aptos';
  padding-bottom: 10px;
} */
.footer_address p {
  /* color:#222; */
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Aptos';
  /* margin-right: 5px; */
  padding-bottom: 10px;
}
.footer_address p span{
  /* color:#222; */
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Aptos';
  /* margin-right: 5px; */
  padding-bottom: 10px;
}
.con_info h6 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  font-family: 'Aptos';
  padding-bottom: 10px;
}
.con_info p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Aptos';
}
/*.footer-border {*/
/*    border-top: 1px solid #ddd !important;*/
/*    padding-top: 15px;*/
/*}*/
.footer_bottom p{
  /* color: #fff; */
  color: #222;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Aptos';
  padding: 10px 0;
}
.footer_bottom span{
  /* color: #999999; */
  color: #555;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Aptos';
  text-align: center;
  padding: 10px 0;
}
.footer_shaptak p{
  text-align: end;
  /* color: #fff; */
  color: #222;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Aptos';
  padding: 10px 0;
}
.footer_shaptak span{
  text-align: end;
  /* color: #999999; */
  color:#555;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Aptos';
  padding: 10px 0;
}
.footer_off_address{
  padding-top: 30px;
  text-align: end;
}
/* ======= footer part end ======= */



/* ======= Service Part Start ======= */
#service_part{
  padding: 50px 0;
}
.service_header h2{
  font-size: 25px;
  font-weight: 700;
  font-family: 'Aptos';
  color: #00B0F0;
}
.service-box {
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  color: #fff;
}
.service-box:hover{
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.service-title {
  font-size: 20px;
  margin: 10px 0;
  font-weight: 700;
  font-family: 'Aptos';
  color: #f0f0f0;
}

.service-desc {
  font-size: 16px;
  color: #f0f0f0;
  font-family: 'Aptos';
}

/* Base colors */
.blue { background-color: #0d6efd; }
.green { background-color: #198754; }
.purple { background-color: #6f42c1; }
.yellow { background-color: #ffc107; color: #333; }
.red { background-color: #dc3545; }
.indigo { background-color: #6610f2; }

/* Hover effects */
.blue:hover { background-color: #0b5ed7; }
.green:hover { background-color: #157347; }
.purple:hover { background-color: #5b2ea3; }
.yellow:hover { background-color: #e0a800; }
.red:hover { background-color: #bb2d3b; }
.indigo:hover { background-color: #520dc2; }
/* ======= Service Part end ======= */


/* ======= Current Project Part start ======= */
#current_Project_part{
  padding-bottom: 50px;
  padding-top: 50px;
}
.card-custom {
  border: none;
  border-radius: 15px;
  box-shadow: 12px 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  height: 100%;
} 
.cproject_header h2{
  font-size: 25px;
  font-weight: 700;
  font-family: 'Aptos';
  color: #00B0F0;
}

.card-custom:hover {
  transform: translateY(-5px);
}
.current_project_inner{
 padding-top:30px;
}
.card-img-top {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  height: 200px;
  object-fit: cover;
}
.cproject-body{
  padding: 10px;
}
.cproject-body h5{
  font-size: 20px;
  font-weight: 700;
  font-family: 'Aptos';
  padding-bottom: 10px;
  color: #00B050;
}
.cproject-body p{
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  font-family: 'Aptos';
  padding-bottom: 10px;
}
/* Current Project pagination start */
/* .pagination {
  text-align: center;
  margin-top: 40px;
}

.pagination a {
  display: inline-block;
  padding: 8px 14px;
  margin: 0 5px;
  color: #007bff;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.2s;
}

.pagination a:hover {
  background-color: #007bff;
  color: white;
}

.pagination a.active {
  background-color: #007bff;
  color: white;
  font-weight: bold;
} */

/* @media (max-width: 768px) {
  .card {
    width: 90%;
  } */
}
/* Current Project pagination end */
/* ======= Current Project Part end ======= */

/* ======= Previous Project Part start ======= */

/* ======= Previous Project Part end ======= */


.devlopment_header h2{
  color: #00B0F0;
  font-size: 25px;
  font-weight: 700;
  font-family: 'Aptos';
}
.devlopment-item{
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  height: 100%;
  transition: transform 0.6s ease;
}

.devlopment-item:hover {
  transform: translateY(-5px);
}

/*.partner-logo {*/
/*  max-width: 100px;*/
/*  height: auto;*/
/*  margin-bottom: 15px;*/
/*}*/

.partner-logo {
  width: 120px;        /* same width for all */
  height: 120px;       /* same height for all */
  object-fit: contain; /* show full image */
  background: #fff;    /* optional – clean look */
  padding: 5px;        /* optional spacing */
}

.partner-name {
  font-weight: 600;
  margin-top: 10px;
  color: #00B050;
  font-family: 'Aptos';
  font-weight: 18px;
  margin-bottom: 8px;
}

.partner-desc {
  color: #222;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  font-family: 'Aptos';
}
/* ======= Devlopment Partners Part end ======= */

/* ======= Solidanty Partners Part end ======= */
/* Solidanty Partners part start */
.solidarity-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.4s ease-in-out;
}

.solidarity-card:hover {
  transform: translateY(-5px);
}

.solidanty_partners_part h2{
  font-size: 25px;
  font-weight: 700;
  font-family: 'Aptos';
  color: #00B0F0;
}
/*.solidarity-logo {*/
/*  max-width: 100px;*/
/*  margin-bottom: 15px;*/
/*  height: auto;*/
/*}*/
.solidarity-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    background: #fff;
    padding: 5px;
    transition: transform 0.3s ease;
    text-align: center;
}
.partner-name {
  font-weight: 600;
  margin-top: 10px;
  color: #00B050;
  font-family: 'Aptos';
  font-weight: 18px;
  margin-bottom: 5px;
}

.partner-message {
  color: #222;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  font-family: 'Aptos';
}
/* Solidanty Partners part end */
/* ======= Solidanty Partners Part end ======= */

/* ======= network Partners Part end ======= */
/*.partner-logo {*/
/*  background: #fff;*/
/*  border-radius: 12px;*/
/*  margin: 0 50px;*/
  /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);*/
/*  transition: transform 0.3s ease;*/
/*  text-align: center;*/
/*}*/
.network_partners_header h2{
  font-size: 25px;
  font-weight: 700;
  font-family: 'Aptos';
}
.partner-name{
  font-weight: 600;
  margin-top: 10px;
  color: #00B050;
  font-family: 'Aptos';
  font-weight: 18px;
}
.partner-logo img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}
.partner-logo:hover {
  transform: scale(1.05);
}
.partner-name {
  font-weight: 600;
  margin-top: 10px;
  color: #00B050;
  font-family: 'Aptos';
  font-weight: 18px;
}
/* ======= network Partners Part end ======= */

/* ======= news Part start ======= */
/* News part start */
#news_part{
  padding-top: 50px;
}
.news_header{
    padding-top: 30px;
  padding-bottom: 30px;
}
.news_header h2{
  color: #00B0F0;
  font-size: 25px;
  font-weight: 700;
  font-family: 'Aptos';
}
/* .inner_news_part{
  padding: 50px 0;
} */
.news-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.news_card {
	background: #fff;
	border-radius: 12px;
	box-shadow: 10px 6px 10px rgba(0, 0, 0, 0.1);
	width: 358.67px;
	overflow: hidden;
	transition: transform 0.3s;
}

.news_card:hover {
  transform: translateY(-5px);
}

.news_card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.news-content {
  padding: 15px;
}

.news_card h3 {
	color: #00B050;
	font-size: 20px;
	font-weight: 700;
	font-family: 'Aptos';
	padding: 15px;
  /*text-align: center;*/
}

.news_card p {
  color: #222;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  font-family: 'Aptos';
  /*text-align: center;*/
  /* line-height: 1.5; */
}

.pagination {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.pagination a {
  display: inline-block;
  padding: 8px 14px;
  margin: 0 5px;
  color: #007bff;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.2s;
}

.pagination a:hover {
  background-color: #007bff;
  color: white;
}

.pagination a.active {
  background-color: #007bff;
  color: white;
  font-weight: bold;
}

/* @media (max-width: 768px) {
  .card {
    width: 90%;
  } */
}
/* News part end */
/* ======= news Part end ======= */



/* ======= News Details part start ======= */
#details_news_part{
  padding: 50px 0;
}
.news-title {
  font-size: 2rem;
  font-weight: 700;
}
.news_inner h2{
  font-size: 20px;
  font-weight: 500;
  font-family: 'Aptos';
}
.news-meta {
  font-size: 0.9rem;
  color: #6c757d;
}
.featured-image {
  max-height: 400px;
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
}
.news_sidebar {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
.news_sidebar h5{
  color: #00B050;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Aptos';
}
.related-news a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Aptos';
  border-bottom: 1px solid #eee;
  color: #0d6efd;
  text-decoration: none;
}
.related-news a:hover {
  text-decoration: underline;
}

.news_inner{
  padding: 20px;
}
.news_inner h2{
  color: #00B050;
  font-size: 22px;
  font-weight: 700;
  font-family: 'Aptos';
}
 .news_inner p{
  color: #222;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  font-family: 'Aptos';
}
/* ======= News Details part end ======= */

/* ======= Publications part start ======= */
#fullpublication_part{
  padding: 50px 0;
}
.allpublication_header{
  padding-bottom: 30px;
}
.allpublication_header h2{
  color: #00B0F0;
  font-size: 25px;
  font-weight: 700;
  font-family: 'Aptos';
}
.fullpublication_inner{
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
  transition: transform 0.3s ease;
  padding: 20px;
}
.fullpub_header h4{
  color: #00B050;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Aptos';
  padding-bottom: 20px;
}
.fullpub_pag p{
  color: #222;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  font-family: 'Aptos';
  text-align: justify;
}
/* ======= Publications part end ======= */


/* ======= Gallery part start ======= */
.gallery-img {
	max-height: 200px;
	max-width: 245px;
	object-fit: cover;
}
.gal_btn button {
  background-color: #31e749;
  color: #fff;
  margin-top: 10px;
}
/* ======= media part start ======= */
#media_part{
  padding: 50px 0;
}
.meadia_header{
  color: #00B0F0;
  font-size: 22px;
  font-weight: 700;
  font-family: 'Aptos';
}
.gal_btn{
  background-color: rgba(61, 3, 61, 0.067);
  border-radius: 5px;
}


.gallery_inner{
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
  transition: transform 0.3s ease;
  padding: 40px;
  
}
.gallery_inner button{
  font-size: 20px;
  font-weight: 700;
  font-family: 'Aptos';
}
.all_gallery-img{
  max-height: 206.717px;
      max-width: 375.5px;
      object-fit: cover;
}
/* ======= Gallery part end ======= */
/* Human Resources part start */
#human_part{
  padding: 50px 0;
}
.human_header h2{
  font-size: 25px;
  font-weight: 700;
  font-family: 'Aptos';
  color: #00B0F0;
}
.human_inner {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
  transition: transform 0.3s ease;
  padding: 20px;
  text-align: justify;
}
.human_inner h4{
  color: #00B050;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Aptos';
}
/* Typography base style for text */
.more-text,
.human_inner p {
  color: #222;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  font-family: 'Aptos', sans-serif; /* Fallback font added */
}

/* Hide .more-text by default */
.more-text {
  display: none;
  margin-top: 10px;
  transition: all 0.3s ease-in-out;
}

/* Read More button style */
.read-more-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 15px;
  background-color: #007bff; 
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-family: 'Aptos', sans-serif;
}

.read-more-btn:hover {
  background-color: #0056b3;
}

/* Fade-in animation when showing */
.more-text.show {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Human Resources part end */

/* Policy Documents part start */
#policy_part{
  padding: 50px 0;
}
.policy_header h2{
  font-size: 25px;
  font-weight: 700;
  font-family: 'Aptos';
  color: #00B0F0;
}
.policy-card {
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-left: 4px solid #0d6efd;
  border-radius: 8px;
  padding: 20px;
  height: 100%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: transform 0.6s, box-shadow 0.6s;
}
.policy-card h5 {
  color: #f1f1f1;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Aptos';
  margin-bottom: 0.5rem;
}
.policy-card p {
  color: #f1f1f1;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  font-family: 'Aptos';
  padding-bottom: 10px;
}

.btn-download {
  font-size: 0.875rem;
}
/* Base colors */
.blue { background-color: #0d6efd; }
.green { background-color: #198754; }
.purple { background-color: #6f42c1; }
.yellow { background-color: #ffc107; color: #333; }

.red { background-color: #dc3545; }
.indigo { background-color: #6610f2; }

.bg-blue    { background-color: #007bff; }
.bg-green   { background-color: #28a745; }
.bg-orange  { background-color: #fd7e14; }
.bg-purple  { background-color: #6f42c1; }
.bg-pink    { background-color: #e83e8c; }
.bg-teal    { background-color: #20c997; }

.policy-card:hover {
  color: #ffd700;
  border-left-color: #ffd700;
  transform: translateX(5px);
}

/* Policy Documents part end */


/* About part start */
#about_part{
  padding: 50px 0;
}
.about_header h4{
  /* color: #222; */
  font-size: 25px;
  font-weight: 700;
  font-family: 'Aptos';
}
.about_header img{
  width: 100px;
}
/* .about_inner img{
  float: left;
  margin-right: 20px;
}
.about_inner h4{
  color: #222;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Aptos';
}
.about_inner p{
  color: #222;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
} */
.about_inner{
  padding-bottom: 50px;
  border: none;
  /*border-radius: 15px;*/
  box-shadow: 6px 6px 6px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  padding: 20px;
  text-align: justify;
}

.about_inner h4{
  color: #00B050;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Aptos';
}
.about_inner p{
  color: #222;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  font-family: 'Aptos';
}
/* About part end */
/* Ed details part start */

.ed_inner{
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  margin-bottom:20px;
}
.ed_nb span {
    color: #222;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Aptos';
    margin-bottom: 17px;
}
.ed_inner p{
  text-align: justify;
}
.ed_nb h4{
  font-size: 16px;
  font-weight: 700;
  font-family: 'Aptos';
  color:  #00B050;
  
}
.ed_nb p{
  color: #222;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Aptos';
  text-align: center;
}
.ed_item h2{
  font-size: 20px;
  font-weight: 700;
  font-family: 'Aptos';
  color:  #00B050;
}
.ed_item p{
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  font-family: 'Aptos';
  padding-bottom: 10px;
}
.ed_item strong{
  font-size: 14px;
  font-weight: 700;
  font-family: 'Aptos';
}
/* Ed details part end */
/* Reports part start */
#reports_part{
  padding: 50px 0;
}
.reports_header{
  padding-bottom: 30px;
}
.reports_header h2{
  color: #00B0F0;
  font-weight: 700;
  font-size: 25px;
  font-family: 'Aptos';
}
.rep_tabhed tr th{
  color: #00B050;
  font-weight: 700;
  font-family: 'Aptos';
  font-size: 18px;
}
.rep_tabinner tr td p{
  font-size: 16px;
  font-weight: 400;
  font-family: 'Aptos';
}

/* .rep_tabinner {
  font-size: 16px;
  font-weight: 400;
  font-family: 'Aptos';
} */
/* Reports part end */

/* Contact part start */
#contact_part{
  padding: 50px 0;
}
.contact-card {
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.contact-card i {
 color: rgb(225, 153, 153);
 font-size: 10px;
 margin-left: 5px;

}
.contact_header{
  padding-bottom: 30px;
}
.contact_header h2{
  color: #00B0F0;
  font-size: 22px;
  font-weight: 700;
  font-family: 'Aptos';
}
.btn-custom {
  background-color: #0d6efd;
  color: #fff;
}
.btn-custom:hover {
  background-color: #0b5ed7;
}
.contact-card label{
  color: #222;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Aptos';
}
.map-container {
 
  position: relative;
  height: 538px; /* Fixed height */
  width: 538px;  /* Fixed width */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  margin-left: auto;
  margin-right: auto; /* Center the map */
}
.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 0;
}
/* Contact part end */


/* Donet part end */
.donation-section {
  background-color: #f8f9fa;
  padding: 60px 0;
}
.donte_header h2{
  font-size: 25px;
  font-weight: 700;
  font-family: 'Aptos';
  color: #00B0F0;
}
.don_name{
  color: #222;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Aptos';
}
.donation-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.btn-donate {
  background-color: #0d6efd;
  color: #fff;
}
.btn-donate:hover {
  background-color: #0b5ed7;
} */
.btn-outline-primary, .btn-outline-primary:focus {
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.5);
    background-color: #0b5ed7;
    color: #fff;
}
.btn-outline-primary.focus, .btn-outline-primary:focus {
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.5);
    background-color: #0b5ed7;
    color: #fff;
}
.don_name i {
    color: rgb(225, 153, 153);
    font-size: 10px;
    margin-left: 5px;
}
/* Donet part end

/* Donate page 1 part start */
#donatepartfirst {
    padding-bottom: 50px;
    padding-top: 50px;
}
/* .donate_inner{

} */
 .donte_header{
  padding-top: 50px;
  
}
.donate_inner{
  padding-bottom: 30px;
}
.donte_header h4{
  font-size: 25px;
  font-weight: 700;
  font-family: 'Aptos';
  padding-top: 50px;
  
}
.donate1-body h5{
  font-size: 18px;
  font-weight: 700;
  font-family: 'Aptos';
  padding-bottom: 10px;
  color: #00B050;
  
}
.donate1-body h6 {
  font-size: 16px;
  font-weight: 700;
  font-family: 'Aptos';
  padding-bottom: 5px;
}
.donate1-body p{
  color: #222;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  font-family: 'Aptos';
  padding-bottom: 20px;
}
.ac_donet{
  color: #222;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Aptos';
  padding-bottom: 10px;
}
.donate1-body .donate_address span{
  color: #222;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Aptos';
  padding-bottom: 5px;
}
.donate1-body a{
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Aptos';
  /* text-transform: uppercase; */
}
.donate-body{
  /*height: 300px;*/
  height:auto;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.donate_address{
  padding-bottom: 10px;
}
.donate_btn button{
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Aptos';
}
/* Donate page 1 part end */

/* ======= Details current Project part start ======= */
#allcurrentprojects_part{
  padding: 50px 0;
}

.allcurrentprojects_header h4{
    font-size: 25px;
    font-weight: 700;
    font-family: 'Aptos';
    color: #00B0F0;
}
.currentproject_name h4{
    font-size: 20px;
    font-weight: 700;
    font-family: 'Aptos';
    color: #00B050;
    padding-bottom: 30px;
}
.budget_part {
    display: flex;
   
}
.budget {
    color: #00B050;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Aptos', sans-serif;
   
}

.budget_values{
    display: inline-block;
    color: #222;
        font-size: 16px;
        font-weight: 500;
        font-family: 'Aptos', sans-serif;
    
}

   .project_id h6,
    .project_start h6 {
        color: #222;
        font-size: 16px;
        font-weight: 500;
        font-family: 'Aptos', sans-serif;
        margin-bottom: 5px;
    }
   .project_id span,
    .project_start span,
    .project_end span{
        color: #00B050;
        font-size: 16px;
        font-weight: 700;
        font-family: 'Aptos', sans-serif;
        margin-bottom: 5px;
    }

     .budget_values p {
        color: #222;
        font-size: 16px;
        font-weight: 500;
        font-family: 'Aptos', sans-serif;
        margin-bottom: 5px;
        margin-left: 15px;
    }

    .project_end h6 {
        color: #222;
        font-size: 16px;
        font-weight: 500;
        font-family: 'Aptos', sans-serif;
        margin-bottom: 5px;
        text-align: end;
    }

    

    /* Optional: Add spacing between columns for desktop */
    /* .project_id,
    .budget_part,
    .project_start,
    .project_end {
        padding-top: 10px;
    } */
/* ======= Details current Project part end ======= */
/* ======= Details current Project part top start ======= */
/*#project_des_doc{*/
/*  padding: 50px 0;*/
/*}*/

#project_des_doc {
    padding: 20px 0;
}
.currentproject_documents{
  border: 1px solid  #00B050;
  border-radius: 10px;
  padding: 10px;
}
.currentproject_description h4{
   font-size: 20px;
    font-weight: 700;
    font-family: 'Aptos';
    color: #00B050;
    padding-bottom: 10px;
}
.currentproject_documents h4{
   font-size: 20px;
    font-weight: 700;
    font-family: 'Aptos';
    color: #00B050;
    padding-bottom: 10px;
}
.currentproject_documents p{
  color: #222;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  font-family: 'Aptos';
}
/* ======= Details current Project part top end ======= */

