/* RESET */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}
.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/*global ANIMATION*/

.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

/* 🔥 IMPORTANT fallback */
.no-js .reveal {
  opacity: 1;
  transform: none;
}



/*different position ANIMATION*/
/*.reveal-left {*/
/*  transform: translateX(-50px);*/
/*}*/
/*.reveal-right {*/
/*  transform: translateX(50px);*/
/*}*/
/*.reveal-zoom {*/
/*  transform: scale(0.8);*/
/*}*/

/*.reveal.active {*/
/*  transform: translate(0) scale(1);*/
/*  opacity: 1;*/
/*}*/
/*<div class="reveal reveal-left">*/
/*<div class="reveal reveal-right">*/


/*global ANIMATION*/

.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

/* 🔥 IMPORTANT fallback */
.no-js .reveal {
  opacity: 1;
  transform: none;
}



/* ================= NAVBAR ================= */

/* Default Navbar (visible from start) */
/* Navbar */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;

  padding: 1px 0;
  transition: all 0.4s ease;

  background: #fff;
}

/* Scroll */
#navbar.scrolled {
  background: #fff;
  padding: 1px 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.navbar-toggler {
  border: 1px solid #000;
}

.navbar-toggler-icon {
  filter: invert(0); /* dark icon */
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='black' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Logo */


/* Nav Links */
.nav-link {
  color: #000 !important;
  margin: 0 12px;
  font-size:15px;
  font-weight: 530;
  position: relative;
}

.hero,
.carousel-item {
  margin-top: 80px; /* navbar height ke according adjust kar */
}



/* Hover underline */
.nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 0;
  background: #d4af37; 
  transition: 0.2s;
}

.nav-link:hover::after {
  width: 100%;
}

/* Button */
.volunteer-btn {
 background: #000;              /* Black background */
  color: #d4af37;               /* Golden text */
  border-radius: 25px;
  padding: 8px 18px;
  border: 1px solid #d4af37;    /* Golden border */
  transition: 0.3s;
}

.volunteer-btn:hover {
  background: #d4af37;          /* Golden bg */
  color: #000;                  /* Black text */
  transform: scale(1.05);
}

.navbar-brand img {
  height: 70px;
}

/*language*/
.lang-switch .lang-btn {
  background-color: transparent;
  color: #000;
  border: 1px solid #000;
  font-size: 14px;
  padding: 5px 12px;
  transition: 0.3s;
}

/* Hover Effect */
.lang-switch .lang-btn:hover {
  background-color: black;
  color: #d4af37; /* golden */
  border-color: black;
}

/* Active Button */
.lang-switch .lang-btn.active {
  background-color: black;
  color: #d4af37;
  border-color: black;
}

@media (max-width: 768px) {

  .lang-switch {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }

  .lang-switch .lang-btn {
    flex: 1;
    font-size: 13px;
    padding: 6px 10px;
  }

}

@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;  /* black se white kar */
    padding: 5px;
    border-radius: 10px;
  }

  .nav-link {
    color: black !important;
  }
  .navbar-brand img {
    height: 55px;   /* yaha size control kar sakta hai */
  }
  .hero,
.carousel-item {
  margin-top: 10px; /* navbar height ke according adjust kar */
}
}




/*** 

====================================================================
	emp section
====================================================================

***/

/* SECTION */
.message-section {
  padding: 60px 0;
  background: #f8f9fa;
  margin-top: 30px;
}

/* CARD DESIGN */
.employee-card {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.employee-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.image-wrapper {
  height: 100%;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT */
.content-box {
  padding: 25px;
  height: 100%;
  display: flex;
  align-items: center;
}

.content-box p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

/* HEADING */
.sec-title h2 {
  font-weight: 700;
  margin-bottom: 10px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

  .employee-card {
    flex-direction: column;
  }

  .image-wrapper {
    height: 400px;
  }

  .content-box {
    padding: 20px;
  }

  .content-box p {
    font-size: 14px;
  }
}