@import url(bootstrap.min.css);
@import url(bootstrap-icons.min.css);
@import url(owl.carousel.min.css);
@import url(owl.theme.default.min.css);
@import url(fancybox.css);


@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.shadow{ box-shadow:none !important;}
/* Colors - */
:root {
  --background-color: #ffffff;
  --default-color: #364d59;
  --heading-color: #52565e;
  --accent-color: #feb900;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors */
:root {
  --nav-color: rgba(255, 255, 255, 0.55);
  --nav-hover-color: #ffffff;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #feb900;
}

.dark-background {
  --background-color: #0606062e;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  font-family: "Poppins", sans-serif;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: rgba(0, 0, 0, 0.35);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.logo_text a h2 {
  font-size: 30px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  text-align: center;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  font-family: "Poppins", sans-serif !important;
}

.logo_text a h5 {
  position: relative;
  text-align: center;
  font-size: 14px;
  margin-bottom: 0;
  padding: 0 30px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  font-family: "Poppins", sans-serif !important;
}

.logo_text a h5:before,
.logo_text a h5:after {
  content: "";
  height: 1px;
  position: absolute;
  top: 50%;
  width: 10%;
}

.logo_text a h5:before {
  background: #7e7e7e;
  background: -webkit-gradient(linear, right top, left top, from(#7e7e7e), to(#fff));
  background: linear-gradient(to left, #ff8b38 0%, #fff 100% 100%);
  left: 0;
}

.logo_text a h5:after {
  background: #7e7e7e;
  background: -webkit-gradient(linear, left top, right top, from(#7e7e7e), to(#fff));
  background: linear-gradient(to right, #ff8b38 0%, #fff 100%);
  right: 0;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo span {
  font-size: 24px;
  padding-left: 1px;
  font-family: var(--heading-font);
  color: var(--color-primary);
}


.logo_text a {
  gap: 12px;
  /* image aur text ke beech gap */
}

.logo_img {
  width: 70px;
  /* image size */
  height: 70px;
  border-radius: 50%;
  /* circle image */
  object-fit: cover;
}

.logo_content h2 {
  font-size: 20px;
  margin: 0;
  color: #000;
}

.logo_content h5 {
  font-size: 14px;
  margin: 0;
}


.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Header on Scroll
------------------------------*/
body.scrolled .header {
  background-color: #212933;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.top-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.top-actions a {
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  font-family: "Poppins", sans-serif !important;
  font-size: 15px;
  font-weight: 500;
}

.action-btn {
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

.menu-toggler {
  background: #fff;
  color: #000;
  border: none;
  padding: 8px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.menu-toggler:hover {
  background: #dc4d2a;
  color: #fff;
}

/* ===== Mega Menu ===== */
.mega-menu {
  position: fixed;
  top: 105px;
  left: 0;
  width: 100%;
  background:linear-gradient(90deg, #073d8b, #003a8b);
  padding: 20px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.35s ease;
  z-index: 999;
  font-family: "Noto Sans Devanagari", sans-serif;
}

.mega-menu .col-3 {
  flex: 1 0 0%;
}

@media (max-width: 1199.98px) {
  .mega-menu .col-3 {
    flex: 0 0 auto;
    width: 50%;
  }


  .top_footer .row .col {
    flex: 0 0 auto;
    width: 50%;
  }
}


.mega-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu h6 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
}

.mega-menu ul {
  list-style: none;
  padding: 0;
}

.mega-menu h6 {
  display: inline-block;
  background: #ffeee7f5;
  color: #000;
  padding: 5px 20px 3px 10px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  border-radius: 2px 15px 15px 2px;
}

.border-right {
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.mega-menu ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
}

.mega-menu ul li a:hover:before {
  margin-right: 13px;
}

.mega-menu ul li a:hover {
  color: #ffeee7
}

.top-actions {
  display: flex;
  gap: 15px;
}


/* ===== Mobile ===== */
@media (max-width: 768px) {
  .main-header {
    display: flex;
    flex-direction: column;
  }


  .top-actions {
    order: 2;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }


  .top-actions a {
    display: flex;
    align-items: center;
    font-size: 14px;
    white-space: nowrap;
  }

  .mega-menu {
    top: 93px;
    padding: 20px 10px;
  }

  .mega-menu h6 {
    font-size: 16px;
  }

  .mega-menu ul li a {
    font-size: 14px;
  }

  .mega-menu .row>div {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .mega-menu {
    top: 185px;
  }
}

.search_select {
  text-decoration: none;
  color: #000;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Search dropdown hidden by default */
.dropdown_search {
  position: absolute;
  top: 80px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.dropdown_search.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown_search input {
  padding: 6px 10px;
  width: 300px;
}

.input-rounded input {
  border-radius: 0px !important;
}

.mega-menu ul li a:before {
  display: inline-block;
  content: "\f285";
  font-family: 'bootstrap-icons';
  margin-right: 6px;
  font-size: 13px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}



.search-btn {
  background: linear-gradient(135deg, #f26522, #d94a2c);
  border: none;
  color: #fff;
  padding: 8px 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  font-size: 16px;
}

.search-btn i {
  font-size: 16px;
}

/* Hover effect */
.search-btn:hover {
  background: linear-gradient(135deg, #d94a2c, #b83c28);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

/* Focus accessibility */
.search-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.4);
}

/* Active click */
.search-btn:active {
  transform: scale(0.95);
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .hero .info {
    padding: 100px 50px 60px 50px;
  }
}

.hero .info h2 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 56px;
  font-weight: 700;
  position: relative;
}

.hero .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero .info h2 {
    font-size: 36px;
  }
}

.hero .info p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
}

.hero .info .btn-get-started {
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--accent-color);
}

.hero .info .btn-get-started:hover {
  background: var(--accent-color);
}

.hero .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.4s;
}

.hero .carousel-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transform: scale(1.3) translateX(-20px);
  transition: transform 6s ease-in-out, opacity 1.2s;
}


.hero .carousel-item.active img {
  opacity: 1;
  transform: scale(1) translateX(0);
}


.hero .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

.carousel-container {
  position: absolute;
  left: 8%;
  bottom: 20%;
  max-width: 420px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  padding: 20px 24px;
  border-left: 4px solid #ffcc00;
  z-index: 5;
}

.carousel-container p {
  margin: 0;
  font-size: 15px;
  color: #fff;
  font-weight: 600;
  line-height: 1.6;
}

.carousel-indicators {
  bottom: 30px;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #dc4d2b;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: #db4d2c;
}

.carousel-indicators [data-bs-target] {
  width: 20px;
  height: 20px;
  opacity: 8.0;
}

.carousel-indicators {
  left: 0%;
  right: auto;
  margin-bottom: 3rem;
}

.hero h2,
.hero p {
  max-width: 100%;
}

.carousel-indicators {
  z-index: 3;
}

.hero .carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero .carousel-item {
  position: relative;
  height: 100vh;
}

.hero .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
  width: 60px;
}

.carousel-control-prev i,
.carousel-control-next i {
  font-size: 32px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}



@media (max-width: 1024px) {

  .hero h2,
  .hero p {
    max-width: 80%;
    font-size: 14px;
  }
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  transition: 1s ease;
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 20%);
}

.scroll-top i {
  font-size: 30px;
  color: #1a1a1a;
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, #db4d2c, transparent 20%);
  color: var(--contrast-color);
}

.scroll-top i:hover {
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# About_section
--------------------------------------------------------------*/

.second_section {
  position: relative;
  z-index: 1;
  padding: 60px 0 50px;
  overflow: hidden;
  background-image: url(../images/About_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.home_introbox h3 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: 0px;
  color: #db4d2c;
}

.theme_headstyle {
  position: relative;
}

.theme_headstyle i {
  color: #dc4d2a;
  font-size: 18px;
}

.theme_headstyle:before {
  content: "";
  height: 2px;
  width: 60px;
  background: #00418f;
  position: absolute;
  top: 7px;
  left: 25px;
}

.theme_headstyle:after {
  content: "";
  height: 2px;
  width: 30px;
  background: #00418f;
  position: absolute;
  bottom: 6px;
  left: 25px;
}

.text-blue {
  --bs-text-opacity: 1;
  color: rgb(2 77 173) !important;
}

.cm_qoute {
  background-color: #fff;
  padding: 20px 14px 10px;
}

.leftside_img {
  background-color: #fff;
  text-align: center;
  /* padding: 0px 10px 0px 10px; */
}

.cm_qoute p {
  text-align: justify;
  font-size: 14px;
  font-weight: 600;
}

.signature {
  font-weight: 600;
  font-style: italic;
  color: #db4c2b;
  margin-top: 10px;
}

.profile-card {
  border-radius: 12px;
}

.profile-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px;
}

.profile-list li {
  display: flex;
  gap: 10px;
  padding: 12px 14px;
  background: #f7f9fc;
  border-radius: 8px;
  border-left: 4px solid #0d6efd;
}

.profile-list .label {
  font-weight: 600;
  color: #0d6efd;
  min-width: 120px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.profile-list .value {
  color: #333;
  line-height: 1.6;
  font-weight: 500;
  font-size: 15px
}

.department-box {
  margin-top: 25px;
  padding: 18px;
  background: linear-gradient(135deg, #eef4ff, #ffffff);
  border-left: 5px solid #dc4d2a;
  border-radius: 10px;
}

.department-box h5 {
  margin-bottom: 10px;
  font-weight: 600;
  color: #dc4d2a;
}

.department-box p {
  margin: 0;
  color: #333;
  line-height: 1.7;
  font-weight: 500;
  font-size: 15px
}

.image-box {
  width: 100%;
  height: 410px;
  position: relative;
  overflow: hidden;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-box::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}


.image-box:hover::before {
  animation: imgFlash 0.75s ease-out;
}

@keyframes imgFlash {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }

  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Services_section
--------------------------------------------------------------*/

.nm-services {
  padding: 70px 15px;
  /* background: #FBEDEA; */
}

.nm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px dotted #9d9b9b;
  border-left: 1px dotted #9d9b9b;
}

.nm-card {
  position: relative;
  height: 220px;
  border-right: 1px dotted #9d9b9b;
  border-bottom: 1px dotted #9d9b9b;
  overflow: hidden;
  background: #f4f6ff;
}

/* FRONT VIEW */
.nm-front {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  transition: opacity 0.4s ease;
}

.nm-front img {
  width: 52px;
}

.nm-front h4 {
  color: #014aac;
  font-weight: 500;
}

/* HOVER VIEW */
.nm-hover {
  position: absolute;
  inset: 0;
  background: #ffffff;
  padding: 25px;
  transform: translateY(100%);
  transition: transform 0.45s ease;
  text-align: center;
}

.nm-hover h4 {
  color: #db4d2c;
  margin-bottom: 10px;
}

.nm-hover p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

.nm-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 5px 12px;
  background: linear-gradient(135deg, #f26522, #d94a2c);
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
}

/* HOVER EFFECT */
.nm-card:hover .nm-hover {
  transform: translateY(0);
}

.nm-card:hover .nm-front {
  opacity: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .nm-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .nm-grid {
    grid-template-columns: 1fr;
  }
}

.icon {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.icon i {
  font-size: 35px;
  color: #db4d2c;
  position: relative;
  z-index: 1;
}

.icon::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.5s linear;
  transform: scale(1);
  z-index: 0;
  border: 1px solid #ddd;
}

.live-effect .icon::before {
  animation: ripple 1.5s infinite;
}

@-webkit-keyframes ripple {
  0% {
    box-shadow: 0px 0px 0px 0px #f0b400;
  }

  100% {
    box-shadow: 0px 0px 0px 30px rgba(0, 0, 0, 7e-06);
  }
}

@keyframes ripple {
  0% {
    box-shadow: 0px 0px 0px 0px #f0b400;
  }

  100% {
    box-shadow: 0px 0px 0px 30px rgba(0, 0, 0, 7e-06);
  }
}


/*--------------------------------------------------------------
# testimonials
--------------------------------------------------------------*/

.testimonials {
  position: relative;
  padding: 60px 0 70px;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../images/About_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  transform: scaleY(-1);
  /* 👈 left-right flip */
  z-index: -1;
}



.blogpost_item {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog_feature_img img {
  width: 100%;
  height: 325px;
  object-fit: cover;
}

.blog_feature_img::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}


.blog_feature_img:hover::before {
  animation: imgFlash 0.75s ease-out;
}

@keyframes imgFlash {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }

  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

.blog_description {
  padding: 15px;
  flex-grow: 1;
}

.blogtitle {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #db4d2c;
}
.blogtitle a{
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #db4d2c;
}

.blog_description p {
  font-size: 13px;
  color: #555;
  font-weight: 600;
  line-height: 1.6;
}

.bottom_btn {
  padding: 0 15px 15px;
}

/* TAG */
.posttag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(90deg, #2a82ff, #0047ab);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

/* FIX owl height issue */
.othernews_slide .owl-item {
  display: flex;
}

/* NAV BUTTONS */
.othernews_slide .owl-nav {
  position: absolute;
  top: -55px;
  right: 0;
  display: flex;
  margin-top: 55px;
}

.othernews_slide .owl-nav button {
  background: #044db4 !important;
  color: #fff !important;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-left: 6px;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.othernews_slide .owl-nav button:hover {
  background: #013175 !important;
}

/* REMOVE default owl styles conflict */
.owl-carousel {
  display: block;
}

.owl-stage {
  margin-top: 65px;
}

.blog_description p {
  text-align: justify;
}

/* Clamp only when class added */
.blog_description p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blogtitle {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.7;
}

/* Large screen me 10 lines */
@media (min-width: 1600px) {
  .blog_description p {
    -webkit-line-clamp: 4;
  }
}

/* Normal desktop */
@media (min-width: 992px) and (max-width: 1900px) {
  .blog_description p {
    -webkit-line-clamp: 3;
  }

  .blogtitle {
    -webkit-line-clamp: 1;
  }

  .blogtitle {
    font-size: 15px;
  }

  .blog_description p {
    font-size: 12px;
  }
}

/* Mobile */
@media (max-width: 991px) {
  .blog_description p {
    -webkit-line-clamp: 3;
  }
}

.share_wrapper {
  position: absolute;
  top: 12px;
  left: 12px;
  /* 👈 image ke top-left (change if needed) */
  z-index: 9;
}

/* MAIN SHARE BUTTON */
.share_btn {
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* SHARE LIST */
.share_list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 42px;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;

  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  transition: all 0.25s ease;
}

/* SHOW ON HOVER */
.share_wrapper:hover .share_list {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* ICON STYLE */
.share_list li a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* COLORS */
.whatsapp a {
  background: #25D366;
}

.facebook a {
  background: #1877F2;
}

.twitter a {
  background: #03a9f4;
}

.telegram a {
  background: #0088cc;
}

/* HOVER EFFECT */
.share_list li a:hover {
  transform: scale(1.1);
}

.share_wrapper.active .share_list {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.bottom_btn .btn {
  background: linear-gradient(135deg, #f26522, #d94a2c);
  border: none;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* subtle shine animation */
.bottom_btn .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.35),
      transparent);
  transition: all 0.5s ease;
}

.bottom_btn .btn:hover::before {
  left: 100%;
}

.bottom_btn .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* icon animation */
.bottom_btn .btn i {
  transition: transform 0.3s ease;
}

.bottom_btn .btn:hover i {
  transform: translateX(4px);
}


/*--------------------------------------------------------------
# fifth_section
--------------------------------------------------------------*/

.fifth_section {
  position: relative;
  z-index: 1;
  padding: 50px 0 50px;
  overflow: hidden;
}

.second_section:after,
.fifth_section:after,
.second_section:before,
.fifth_section:before {
  background: #fff0ce;
  border-radius: 50%;
  content: "";
  -webkit-filter: blur(75px);
  filter: blur(75px);
  height: 550px;
  left: 30px;
  opacity: .2;
  position: absolute;
  top: 60px;
  width: 550px;
  z-index: -3;
}

.center_set {
  text-align: center;
}

.center_headdesign {
  position: relative;
}

.center_headdesign span {
  display: inline-block;
  color: #dc4d2a;
}

.center_set h4 {
  color: #db4d2c;
}

.center_icon {
  min-width: 60px;
  position: relative;
}

.center_icon:before {
  content: "";
  height: 2px;
  width: 40px;
  background: #00418f;
  position: absolute;
  top: 0px;
  left: 10px;
}

.center_icon:after {
  content: "";
  height: 2px;
  width: 50px;
  background: #00418f;
  position: absolute;
  bottom: 3px;
  left: 5px;
}

.cm-img {
  padding-left: 100px;
}

.for_sushashan {
  position: relative;
  background: #dc4d2a;
  padding: 2px 2px 2px;
}

.newsview_content {
  position: relative;
  padding: 30px;
  height: 100%;
  background: #fff;
}

.newsview_content h4 {
  font-size: 21px;
  font-weight: 600;
  line-height: 30px;
  color: #d94d29;
}

.newsview_content h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
}

.newsview_content p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: justify;
  font-family: "Noto Sans Devanagari", sans-serif;
}

.share_flexing {
  display: flex;
  margin-bottom: 30px;
  padding: 10px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.share_flexbtn {
  position: relative;
}

.share_flexbtn {
  background: linear-gradient(90deg, rgb(243 132 25) 0%, #f0b400 56%);
  color: #fff;
  font-weight: 500;
  padding: 5px 10px;
}

.share_flexbtn:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 18px;
  border-color: transparent transparent transparent #f0b400;
  position: absolute;
  right: -12px;
  top: 4px;
}

.share_flexlist {
  display: flex;
  gap: 6px;
  list-style: none;
  padding-left: 22px;
  margin: 0;
}

.share_flexlist li a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

/* Brand colors */
.whatsapp a {
  background: #25d366;
}

.facebook a {
  background: #1877f2;
}

.twitter a {
  background: #000;
}

.telegram a {
  background: #0088cc;
}

.share_flexlist li a:hover {
  transform: translateY(-3px);
  opacity: 0.85;
}

.social-icon img {
  position: relative !important;
  width: 18px !important;
  height: auto !important;
}

.share_flexlist>li>a.official_fb {
  background: #3b5998;
  color: #fff;
  font-size: 15px;
  padding: 3px 5px;
}

.share_flexlist>li>a.official_tx {
  background: #1da1f2;
  color: #fff;
  font-size: 15px;
  padding: 3px 5px;
}

ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

@media (min-width: 1600px) {
  .for_governance .team_profile .team_profile_img img {
    max-height: 100%;
  }
}

.for_governance .team_profile .team_profile_img img {
  max-height: 100%;
  object-fit: cover;
  width: 100%;
}

/* Clamp only when class added */
.newsview_content p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Large screen me 10 lines */
@media (min-width: 1600px) {
  .newsview_content p {
    -webkit-line-clamp: 8;
  }
}

/* Normal desktop */
@media (min-width: 992px) and (max-width: 1599px) {
  .newsview_content p {
    -webkit-line-clamp: 5;
  }

  .blogtitle {
    font-size: 15px;
  }

  .blog_description p {
    font-size: 12px;
  }
}

/* Mobile */
@media (max-width: 991px) {
  .blog_description p {
    -webkit-line-clamp: 3;
  }
}

@media (min-width: 1600px) {
  .newsview_content p {
    -webkit-line-clamp: 10;
  }
}

@media (max-width: 768px) {
  .newsview_content p {
    -webkit-line-clamp: 10;
  }

  .newsview_content h4 {
    font-size: 18px;
  }

  .newsview_content {
    padding: 20px;
  }

  .newsview_content h6 {
    font-size: 14px;
  }
}

.newsview_img {
  position: relative;
}

.single_slide_governance .owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  /* background safe */
}


.single_slide_governance .owl-nav button {
  pointer-events: all;
  background: rgba(0, 0, 0, 0.6) !important;
  color: #fff !important;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single_slide_governance .owl-nav .owl-prev {
  position: absolute;
  left: 15px;
  /* 👈 LEFT SIDE */
}

.single_slide_governance .owl-nav .owl-next {
  position: absolute;
  right: 15px;
  /* 👉 RIGHT SIDE */
}

.single_slide_governance .owl-nav button span {
  font-size: 48px;
  /* 🔥 icon size */
  line-height: 1;
  font-weight: 400;
}

.btn-read {
  background: linear-gradient(135deg, #f26522, #d94a2c);
  color: #fff;
  padding: 6px 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  font-size: 16px;
}

.owl-dots {
  margin-top: 10px;
}

/*--------------------------------------------------------------
# Social_media Section
--------------------------------------------------------------*/

.social_media {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}


.social_media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}


.social_media::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: #EDF0FE; */
  opacity: 0.8;
  z-index: 2;
}


.social_media .container {
  position: relative;
  z-index: 3;
}

/* SOCIAL BUTTONS */
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.social-btn.facebook {
  background: #1877f2;
}

.social-btn.twitter {
  background: #000;
}

.social-btn.youtube {
  background: #ff0000;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
}

/* CARD */
.social-media-card {
  border-radius: 14px;
  border: none;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  height: 100%;
}

/* HEADER */
.social-media-card .card-header {
  /* background: #f8f9fa; */
  padding: 14px 18px;
}

.social-media-card h4 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* FACEBOOK iframe */
.iframe-box iframe {
  width: 100%;
  height: 420px;
  border: none;
}

/* TWITTER scroll */
.twitter-scroll {
  max-height: 490px;
  overflow-y: auto;
}

/* YOUTUBE */
.youtube-box iframe {
  width: 100%;
  height: 220px;
  margin-bottom: 10px;
  border-radius: 8px;
}

#Twitter {
  background: #212529 !important;
}

.twitter-icon {
  padding: 10px 9px !important;
}

/* MOBILE */
@media (max-width: 768px) {

  .iframe-box iframe,
  .twitter-scroll {
    max-height: 360px;
  }

}

.card-header h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #fff !important;
}

.card-header .bi-facebook {
  color: #1877f2;
}

.card-header .bi-twitter-x {
  color: #000;
}

.card-header .bi-youtube {
  color: #ff0000;
}

.iframe-box {
  overflow-y: auto;

}

.iframe-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}


/*--------------------------------------------------------------
# Footer Section
--------------------------------------------------------------*/

.top_footer {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  font-family: "Noto Sans Devanagari", sans-serif;
}

.top_footer img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}


.top_footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #041633;
  z-index: 2;
  opacity: .8;
}


.top_footer .container {
  position: relative;
  z-index: 3;
}


.top_footer h6,
.top_footer a {
  color: #ffffff;
}

.top_footer a:hover {
  text-decoration: underline;
}

.copywrite_div {
  padding: 15px 0 10px;
}

.copywrite_div {
  position: relative;
  border-top: 1px solid #fff;
  background: linear-gradient(90deg, #2a82ff, #0047ab);
}

.copywrite_div p,
a {
  color: #fff;
}

.text_right {
  text-align: right;
}

.text_center {
  text-align: center;
}

.top_footer h6 {
  display: inline-block;
  color: #ffd8cf;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
}

.top_footer ul li a {
  margin-bottom: 5px;
  display: block;
  text-decoration: none !important;
  font-size: 17px;
}

.top_footer ul li a:hover:before {
  margin-right: 10px;
}

.top_footer ul li a:hover {
  color: #ffd8cf
}

.top_footer ul li a:before {
  display: inline-block;
  content: "\f285";
  font-family: 'bootstrap-icons';
  margin-right: 0px;
  font-size: 13px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media (max-width: 1199.98px) {
  .top_footer .row .col {
    flex: 0 0 auto;
    width: 50%;
  }

  .border-right {
    border-right: none;
  }
}

@media (max-width: 768px) {
  .top_footer .row .col {
    flex: 0 0 auto;
    width: 50%;
  }

  .text_right,
  .text_left {
    text-align: center;
  }


  .leftside_img {
    padding-top: 0px;
  }
}

/*--------------------------------------------------------------
# Social_section
--------------------------------------------------------------*/

#mySidenav {
  position: fixed;
  right: 0;
  top: 58%;
  z-index: 999;
}

/* DESKTOP */
#mySidenav a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 6px 3px;
  width: 155px;
  transform: translateX(120px);
  transition: transform 0.3s ease;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  border-radius: 10px 0px 0px 10px;
}

#mySidenav a:hover {
  transform: translateX(0);
}

#mySidenav a i {
  font-size: 20px;
  width: 30px;
  text-align: center;
}

/* COLORS */
#WhatsApp {
  background: #12af0a;
}

#Telegram {
  background: #2481cc;
}

#Facebook {
  background: #1865c5;
}

#Twitter {
  background: #03a9f4;
}

#Instagram {
  background: radial-gradient(circle farthest-corner at 28% 100%,
      #fcdf8f 0%, #fbd377 10%, #fa8e37 22%, #f73344 35%, transparent 65%),
    linear-gradient(145deg, #3051f1 10%, #E1306C 70%);
}

#Youtube {
  background: #ff0000;
}

#Subscribe {
  background: #f39c12;
}

.facebook-bg {
  background: #1877f2;
}

.twitter-bg {
  background: #212529;
}

.youtube-bg {
  background: #ff0000;
}

.card-header .bi-facebook {
  color: #1877f2;
  padding: 5px;
  background: #fff;
}

.card-header .bi-twitter {
  color: #179cf0;
  padding: 5px;
  background: #fff;
}

.card-header .bi-youtube {
  color: #ff0000;
  padding: 5px;
  background: #fff;
}

/* Common circle icon */
.social-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  /* ⭐ circle */
  font-size: 18px;
  margin-right: 8px;
  background: #fff;
}

/* Platform colors */
.social-icon.facebook {
  color: #1877f2;
}

.social-icon.twitter {
  color: #179cf0;
}

.social-icon.youtube {
  color: #ff0000;
}

/* ========================= */
/* ✅ MOBILE FIX (KEY PART) */
/* ========================= */
@media (max-width: 768px) {

  #mySidenav {
    top: auto;
    bottom: 90px;
  }

  #mySidenav a {
    width: 44px;
    height: 44px;
    transform: none;
    padding: 9px 13px;
    /* justify-content: center;
  }

  #mySidenav a span {
    display: none;
    /* text hide */
  }

  #mySidenav a i {
    font-size: 22px;
    width: auto;
  }
}

@media (max-width: 1399.98px) {
  .profile-list .value {
    font-size: 14px;
  }

  .carousel-container p {
    font-size: 14px;
  }

  .home_introbox h3 {
    font-size: 22px;
  }

  .profile-list .label {
    font-size: 15px;
  }

  .department-box p {
    font-size: 14px;
  }

  .department-box h5 {
    font-size: 18px;
  }

  .nm-front h4 {
    font-size: 22px;
  }

  .cm-img {
    padding-left: 50px;
  }

  .image-box {
    height: 370px;
  }
    .logo_text a h2 {
    font-size: 26px;
  }

  .logo_text a h5 {
    font-size: 12px;
  }

  .top-actions a {
    font-size: 14px;
  }

  .mega-menu h6 {
    font-size: 16px;
  }

  .mega-menu ul li a {
    font-size: 15px;
  }

  .top_footer h6 {
    font-size: 16px;
  }

  .top_footer ul li a {
    font-size: 15px;
  }

  .copywrite_div p, a{
    font-size: 14px;
  }
}

@media (max-width: 991.98px) {
  .cm-img {
    padding-left: 10px;
  }
}

@media (max-width: 768px) {
  .cm-img {
    padding-left: 10px;
  }
}

@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1240px;
  }
}


@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 92%;
  }
}