body{background: #eee}.news{width: 160px}.news-scroll a{text-decoration: none}.dot{height: 6px;width: 6px;margin-left: 3px;margin-right: 3px;margin-top: 2px !important;background-color: rgb(207,23,23);border-radius: 50%;display: inline-block}

body {
  font-family: "Noto Sans Devanagari", "Poppins", sans-serif;
  background-color: #f9f9f9;
  color: #222;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

img.img-responsive {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* ======= Section Layout ======= */
.section.pad-none.has-bb {
  /* padding: 40px 0; */
  border-bottom: 4px solid #cba135;
  background: #fff;
}

.eq-height.box-border {
  border: 1px solid #e0e0e0;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.container {
  width: 100%;
  margin: 0 auto;
}

/* ======= Columns ======= */
.col-md-3,
.col-md-6 {
  float: left;
  padding: 20px;
  box-sizing: border-box;
}

.col-md-3 {
  width: 25%;
  /* background-color: #fafafa; */
 
}

.col-md-6 {
  width: 50%;
  /* background-color: #fff; */
}

@media (max-width: 991px) {
  .col-md-3,
  .col-md-6 {
    width: 100%;
    border-right: none;
  }
}

/* ======= Spacers ======= */
.spacer-big {
  height: 30px;
}
.spacer-small {
  height: 15px;
}

/* ======= Heading Blocks ======= */
.heading-block {
  text-align: center;
  margin: 20px 0;
}

.heading-block h1 {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.heading-block.theme_color h1 {
  color: #572E15;
  border-bottom: 2px solid #a67829;
}


/* ======= Org Structure ======= */
.org-structure {
  margin-bottom: 40px;
  text-align: center;
}

.org-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 10px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #d6b867;
}

.org-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.org-structure h4 {
  font-size: 18px;
  margin: 10px 0 4px;
  color: #222;
}

.org-structure .name {
  font-weight: 600;
  color: #555;
}

/* ======= Buttons ======= */
.btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 4px;
  text-decoration: none;
  margin: 5px 4px;
  color: #fff;
  transition: 0.3s;
}

.btn-primary { background-color: #0069d9; }
.btn-success { background-color: #28a745; }
.btn-warning { background-color: #ffc107; color: #000; }
.btn-info { background-color: #17a2b8; }
.btn-danger { background-color: #dc3545; }

.btn:hover {
  opacity: 0.85;
}

/* ======= Content Text ======= */
p {
  font-size: 15px;
  text-align: justify;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.read-more {
  color: #a67829;
  font-weight: 600;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

/* ======= News / Info Section ======= */
.cElist h4 {
  font-size: 15px;
  margin: 10px 0;
  line-height: 1.4;
}

.cElist a {
  color: #003366;
  text-decoration: none;
}

.cElist a:hover {
  text-decoration: underline;
}

/* ======= Social Links ======= */
.center {
  text-align: center;
}

.center h5 {
  margin-top: 15px;
  color: #444;
}

/* ======= HR Style ======= */
hr {
  border: none;
  border-top: 1px solid #000000;
  margin: 25px 0;
}

/* ======= Responsive ======= */
@media (max-width: 768px) {
  .heading-block h1 {
    font-size: 20px;
  }
  .org-photo {
    width: 100px;
    height: 100px;
  }
  .col-md-3,
  .col-md-6 {
    padding: 15px;
  }
  .tiro-devanagari-hindi-regular {
  font-family: "Tiro Devanagari Hindi", serif;
  font-weight: 400;
  font-style: normal;
}

.tiro-devanagari-hindi-regular-italic {
  font-family: "Tiro Devanagari Hindi", serif;
  font-weight: 400;
  font-style: italic;
}

}





.main-slider {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.main-slider{
    overflow:hidden;
    position:relative;
}

.slide-track{
    display:flex;
    width:400%; /* 4 slides */
    animation:slideAnimation 16s infinite;
}

.slide{
    width:25%; /* 100/4 */
    flex-shrink:0;
}

.slide img{
    width:100%;
    display:block;
}


@keyframes slideAnimation {
    0%,20% {
        transform: translateX(0);
    }

    25%,45% {
        transform: translateX(-25%);
    }

    50%,70% {
        transform: translateX(-50%);
    }

    75%,95% {
        transform: translateX(-75%);
    }

    100% {
        transform: translateX(0);
    }
}
.gallery-one__img {
    position: relative;
    width: 100%;
    height: 280px; /* fixed same height */
    overflow: hidden;
    border-radius: 10px;
}

.gallery-one__img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* makes all images same size */
    display: block;
    transition: 0.4s ease;
}

.gallery-one__img:hover img {
    transform: scale(1.05);
}
.bg-logo{
  background-color: #ea932a;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.footer-social-icons a {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-icons a:hover {
    background: #dd9223;
    color: #fff;
    transform: translateY(-5px);
}

.footer-widget__title {
    margin-bottom: 25px;
}

.site-footer__bottom-text a {
    color: #dd9223;
    text-decoration: none;
}

.site-footer__bottom-text a:hover {
    color: #fff;
}

@media (max-width: 767px) {

    .footer-widget__column {
        margin-bottom: 40px;
    }

    .footer-social-icons {
        justify-content: flex-start;
    }
}
