/* ── Font-size scale ────────────────────────────────────────────────────── */
:root {
  --text-xs:      0.875rem;  /* 14px  – small labels */
  --text-sm:      1rem;      /* 16px  – secondary text */
  --text-base:    1.125rem;  /* 18px  – body default */
  --text-lg:      1.375rem;  /* 22px  – premium body baseline (IMAGE MATCH) */
  --text-xl:      1.5rem;    /* 24px  – alerts, h5/h6 */
  --text-2xl:     1.75rem;   /* 28px  – h4 headings */
  --text-3xl:     2rem;      /* 32px  – h3 headings */
  --text-4xl:     2.4rem;    /* 38px  – h2 headings */
  --text-5xl:     3.2rem;    /* 51px  – h1 headings */
  --text-display: 4rem;      /* 64px  – display / hero text */
}

html { font-size: 100%; }

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,
form,fieldset,input,textarea,p,blockquote,th,td {
    padding: 0;
    margin: 0;
}
a{
	text-decoration:none;
}
table {
    border-spacing: 0;
}
fieldset,img {
    border: 0;
}
address,caption,cite,code,dfn,em,strong,th,var {
    font-weight: normal;
    font-style: normal;
}
strong{
	font-weight: bold;
}

caption,th {
    text-align: left;

}
h1,h2,h3,h4,h5,h6 {
    font-weight: normal;
    font-size: 100%;
    margin:0;
    padding:0;
    color:#444;
}
q:before,q:after {
    content:'';
}
abbr,acronym { border: 0;
}

/* Custom CSS
 * --------------------------------------- */

 body{
	font-family: "Roboto", sans-serif;
	font-size: var(--text-base);
	color: rgba(0,0,0,0.5);
}

.icon-follow {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s linear;
  will-change: transform;
  z-index: 50;
}

.smooth {
  transition: transform 0.1s ease-out;
}

.upanimation {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease-in-out;
}

.showanimation {
    opacity: 1 !important;
    transform: translateZ(0) !important;
}

@keyframes tada {
  0% { transform: scale(1); }
  10%, 20% { transform: scale(0.9) rotate(-3deg); }
  30%, 50%, 70%, 90% { transform: scale(1.1) rotate(3deg); }
  40%, 60%, 80% { transform: scale(1.1) rotate(-3deg); }
  100% { transform: scale(1) rotate(0); }
}

.tada-animation {
  animation-name: tada;
  animation-duration: 2s;
  animation-iteration-count: 1;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


.flaot { 
    z-index: 10;
    padding: 20px 50px 20px 10px;
    border-radius: 1000px;
    background-color: #59C1FF;
    right: -45px;
    position: fixed;
    top: 30%;
}


.flaot i:hover {
    color: black;
    transition-duration: 300ms;
}

.flaot-items {
    display: grid;
    gap: 10px;
}

.fab {
    color: white;
}

.btn.btn-primary{ background-color: #00167a; border-color: #fff; color: #fff; text-transform: uppercase; font-size: 16px; margin-top: 20px; }
.btn.btn-primary:hover{ background-color: #364aa5; border-color:#fff; color: #fff; }

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bootbox .modal-body{ padding-top: 25px; text-align: center; } 
.bootbox .modal-footer {
    justify-content: center !important;
    display: flex !important;
}

#mobile-menu{ z-index: 550;}
#mobile-menu .mm-panels .mm-panel_opened{ background-color: #e5eaff !important; }
#mobile-menu .mm-navbar{ background-color: #00167a; color: #fff; }
#mobile-menu .mm-navbar a::before{ border-color:#fff !important; }
#mobile-menu .mm-listview a.mm-btn_next:after{ border-color: #00167a !important; }
.mobile-nav-block{ display: none; position: absolute; top: 0px; left: 10px; z-index: 550; }
.mobile-nav-block a{ color: #fff; font-size: 20px; }

.top-head a.btn-link{ text-decoration: none; color: #ffffff; background-color: rgba(0, 22, 122, 0.7); border-radius:4px; font-size:14px; padding: 5px; }
.logo-block{ width:96%; position: relative !important; }
.logo-block .logo-img{ z-index: 10; }
.logo-block .logo-text{ margin-left: 20px; z-index: 10; }
.logo-block .logo-title{ font-family: "Poppins", sans-serif; color: #ffffff; font-size:27px; font-weight: 500; }
.logo-block .logo-subtitle{ font-family: "Poppins", sans-serif; color: #ffffff; font-size:18px; font-weight: 400; }
.logo-block .bg-block{ z-index: 9; position: absolute !important; height: 84px; width:500px; left: 100px; top:50; background: linear-gradient(to right, rgba(0, 22, 122, 0.2), rgba(0, 22, 122, 1), rgba(0, 22, 122, 0.1)); }

.section-header{ position: relative; top: 0; z-index: 501; }
.section-header .logo-menu-block{ padding-left: 50px; }

/* menu */

@keyframes swingdown {
		0% {
			opacity: .99999;
			transform: rotateX(90deg);
		}

		30% {			
			transform: rotateX(-20deg) rotateY(5deg);
			animation-timing-function: ease-in-out;
		}

		65% {
			transform: rotateX(20deg) rotateY(-3deg);
			animation-timing-function: ease-in-out;
		}

		100% {
			transform: rotateX(0);
			animation-timing-function: ease-in-out;
		}
	}


nav .navbar{
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  padding: 0 20px;
}

nav .navbar .nav-links{
  line-height: 70px;
  height: 100%;
}
nav .navbar .links{
  display: flex;
}
nav .navbar .links li{
  position: relative;
  display: flex;
  align-items: center;
  text-align: left;
  justify-content: left;
  list-style: none;
  padding: 0 14px;
  border-left: 1px solid rgba(0, 22, 122, 0);
  border-right: 1px solid rgba(0, 22, 122, 0);
  border-top: 1px solid rgba(0, 22, 122, 0);
}

nav .navbar .links li:hover{
  background-color: #1c3394;
  border-left: 1px solid rgba(255,255,255,0.3);
  border-right: 1px solid rgba(255,255,255,0.3);
  border-top: 1px solid rgba(255,255,255,0.3);
}

nav .navbar .links li.divider{ padding: 0 5px; color:#fff; border: 0; }

nav .navbar .links li.divider:hover{
  background-color: rgba(0, 22, 122, 0);
  border: 0;
}

nav .navbar .links li a{
  font-family: "Poppins", sans-serif;
  letter-spacing: 1px;
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 40px;
  text-transform: uppercase;
}

nav .navbar .links li:hover a{
  color:#fff;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  /*transform: rotate(180deg);*/
}

nav .navbar .links li .arrow{
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: #fff;
  display: none;
}
nav .navbar .links li .sub-menu{
  position: absolute;
  top: 40px;
  left: 0;
  line-height: 40px;
  border-left: 1px solid rgba(255,255,255,0.3);
  border-right: 1px solid rgba(255,255,255,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  border-top: 0;
  background-color: #1c3394;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
  transform-origin: 0% 0%;
}

nav .navbar .links li.last .sub-menu{
  right: 0;
  left:unset;
}

nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu{
  display: block;
  animation-name: swingdown;
  animation-duration: 1s;
  animation-timing-function: ease;
}
.navbar .links li .sub-menu li{
  padding: 0 22px;
  /*border:1px solid #00167a;*/
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.navbar .links li .sub-menu li:hover{
  background-color: #00167a;
}

.navbar .links li .sub-menu a{
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.navbar .links li .sub-menu .more-arrow{
  line-height: 40px;
}
.navbar .links li .htmlCss-more-sub-menu{
  /* line-height: 40px; */
}
.navbar .links li .sub-menu .more-sub-menu{
  position: absolute;
  top: 0;
  left: 75%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.navbar .links li.last .sub-menu .more-sub-menu{
  top: 5px;
  right: 75%;
  left: unset;
}
.links li .sub-menu .more:hover .more-sub-menu{
  display: block;
  animation-name: swingdown;
  animation-duration: 1s;
  animation-timing-function: ease;
}

#MenuBulge {
    position: fixed;
    inset: 0;
    z-index: 665;
    pointer-events: none;
    display: none;
}
#MenuBulge svg {
    position: absolute;
    right: 0;
    top: 0;
    will-change: transform;
}
#MenuBulge path {
    fill: rgba(0, 0, 0, 0.3);
}

.burgers {
    position: fixed;
    z-index: 666;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
}
.burgers .right {
    position: absolute;
}
.burgers .hitarea {
    position: absolute;
    width: 40px;
    height: 40px;
    cursor: pointer;
    pointer-events: all;
    background: rgba(255,255,255,0);
    z-index: 3;
    opacity: 0;
    visibility: hidden;
}

@media (min-width: 1025px) {
    #MenuBulge {
        display: block;
    }
}

.burgers .hitarea ul{ list-style: none; padding: 0; margin: 0; display: flex; align-items: center; justify-content: center; }
.burgers .hitarea ul li{ position: absolute; left: 0; width: 100%; display: none; }
.burgers .hitarea ul li img{ position: relative; z-index: 2; width: 40px; height: 40px; margin-top:25px; transition: transform 0.3s ease; }
.burgers .hitarea ul li a:hover img{ transform: scale(1.1); }
.social-block:hover .social-right-block,
.social-sidebar-tab:hover + .social-right-block {
  opacity: 1;
  transform: translateX(0);
}
.burgers .hitarea ul li.active {
  display: block;
}

.section-header nav{
  height: 40px;
  background-color: rgba(0, 22, 122, 0.7);
  z-index: 99;
}


#stickyHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 1000;
    transform: translateY(-100%);
    will-change: transform;
    background-color: rgba(0, 22, 122, 1);
    display: flex; justify-content: center;
}
#stickyHeader.show {
    transform: translateY(0);
    transition: transform 1s ease-out;
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 5px;
}

#stickyHeader nav .navbar{ padding: 0; }
#stickyHeader nav .navbar .links>li{ padding: 0 4px; }




/*** Hero Header ***/
.hero-header {
    position: relative;
    margin-top: -170px;
    padding-top: 120px;
    padding-bottom: 0px;
    background: url(../images/inner-top-banner.jpg) top center no-repeat;
    background-size: cover;
    overflow: hidden;
    color: #fff;
}

.hero-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: var(--hero-overlay, linear-gradient(135deg, rgba(8,22,60,0.90) 0%, rgba(20,55,100,0.68) 100%));
  z-index: 1;
}

.hero-header * {
  position: relative;
  z-index: 2;
}

.hero-header h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-header .breadcrumb li a {
	text-transform:none;
}

.hero-header .breadcrumb-item+.breadcrumb-item::before {
  display: none;
}

/* Breadcrumb pill — shared between .hero-header and .hazard-hero */
.hero-header nav[aria-label="breadcrumb"] {
  display: flex;
  justify-content: center;
}
.hero-header .breadcrumb {
  display: inline-flex;
  align-items: center;
  background: rgba(0,0,0,0.22);
  border-radius: 30px;
  padding: 6px 22px;
  gap: 4px;
  margin: 0;
}
.hero-header .breadcrumb-item { padding: 0; }
.hero-header .breadcrumb-item a {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color .2s;
  text-transform: none;
}
.hero-header .breadcrumb-item a:hover { color: #fff; }
.hero-header .breadcrumb-item.bc-active a { color: #fff; font-weight: 600; }
.hero-header .bc-sep { color: rgba(255,255,255,0.4); font-size: 11px; padding: 0 2px; }

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .hero-header,
  .hero-header h1,
  .hero-header .hazard-icon-wrap,
  .hero-header .breadcrumb-item a {
    animation: none !important;
    transition: none !important;
  }
}

.contact-page-header-banner{
  background: url(../images/contact-us-banner.jpg) top center no-repeat;
  background-size: cover;
}

.disasters-of-bihar-banner{
  background: url(../images/disasters-of-bihar-banner.jpg) top center no-repeat;
  background-size: cover;
}

/* --- Per-section hero backgrounds --- */
/* Solid dark gradient hero — no photo, no overlay */
.hero-bg-none         { background: linear-gradient(135deg, #08163c 0%, #143764 100%) !important; }
/* About Us group */
.hero-bg-about        { background: url(../images/sardar-patel-bhawan-patna.jpg) center center no-repeat; background-size: cover; }
/* Our Team */
.hero-bg-our-team     { background: url(../images/our-team-banner.jpg) top center no-repeat; background-size: cover; }
/* Infrastructure */
.hero-bg-infrastructure { background: url(../images/ifrastructure-1.jpg) center center no-repeat; background-size: cover; }
/* Internships / Career */
.hero-bg-internship   { background: url(../images/Internship.jpg) center center no-repeat; background-size: cover; }
/* Awards & Achievements */
.hero-bg-awards       { background: url(../images/awards.jpg) center center no-repeat; background-size: cover; }
/* Collaborations */
.hero-bg-collab-intl  { background: url(../images/collaborations-international.jpg) center center no-repeat; background-size: cover; }
.hero-bg-collab-natl  { background: url(../images/collaborations-national.jpg) center center no-repeat; background-size: cover; }
/* Weather Dashboard */
.hero-bg-dashboard    { background: url(../images/weather-dashboard-1.jpg) center center no-repeat; background-size: cover; }
/* Generic inner pages fallback */
.hero-bg-inner        { background: url(../images/inner-top-banner.jpg) top center no-repeat; background-size: cover; }

/* ========================================================
   WEATHER HAZARD PAGES – Redesign
   ======================================================== */

/* --- Hero enhancements --- */
.hazard-hero {
  min-height: 380px;
  display: flex;
  align-items: center;
  padding-bottom: 0 !important;
}

/* Overlay is provided by the inline <div> in page-hero.ejs.
   Suppress ::after on hazard-hero so no second overlay stacks, regardless of which CSS loads. */
.hazard-hero.hero-header::after {
  display: none !important;
}

/* Hazard icon circle in hero */
.hazard-icon-wrap {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 32px;
  color: #fff;
}
.hazard-floods   .hazard-icon-wrap { color: #90caf9; border-color: rgba(100,180,255,0.5); }
.hazard-heatwaves.hazard-icon-wrap,
.hazard-heatwaves .hazard-icon-wrap{ color: #ffb74d; border-color: rgba(255,160,60,0.5); }
.hazard-fog      .hazard-icon-wrap { color: #cfd8dc; border-color: rgba(180,210,230,0.5); }
.hazard-hailstorms.hazard-icon-wrap,
.hazard-hailstorms .hazard-icon-wrap{ color: #ce93d8; border-color: rgba(180,140,255,0.5); }
.hazard-droughts .hazard-icon-wrap { color: #fff176; border-color: rgba(240,200,60,0.5); }

/* Hero title & breadcrumb */
.hazard-hero h1 {
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  margin-bottom: 20px;
  line-height: 1.1;
  margin-top: 0;
}
.hazard-hero nav[aria-label="breadcrumb"] {
  display: flex;
  justify-content: center;
}
.hazard-hero .breadcrumb {
  display: inline-flex;
  align-items: center;
  background: rgba(0,0,0,0.22);
  border-radius: 30px;
  padding: 6px 22px;
  gap: 4px;
  margin: 0;
}
.hazard-hero .breadcrumb-item { padding: 0; }
.hazard-hero .breadcrumb-item a {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color .2s;
}
.hazard-hero .breadcrumb-item a:hover { color: #fff; }
.hazard-hero .breadcrumb-item.bc-active a { color: #fff; font-weight: 600; }
.hazard-hero .breadcrumb-item+.breadcrumb-item::before { display: none; }
.hazard-hero .bc-sep { color: rgba(255,255,255,0.4); font-size: 11px; padding: 0 2px; }

/* --- Hazard Sub-navigation --- */
.hazard-subnav {
  background: linear-gradient(180deg, #eef5ff 0%, #ffffff 60%);
  border-top: 3px solid #1a3a6e;
  border-bottom: 1px solid #d5e3f0;
  box-shadow: 0 4px 24px rgba(26,58,110,0.09);
  position: sticky;
  top: 0;
  z-index: 500;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #c8d6e5 transparent;
}
.hazard-subnav::-webkit-scrollbar { height: 3px; }
.hazard-subnav::-webkit-scrollbar-thumb { background: #c8d6e5; border-radius: 3px; }

.hazard-subnav-inner {
  display: flex;
  align-items: stretch;
  min-width: max-content;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.hazard-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 20px 10px;
  font-size: 11px;
  font-weight: 700;
  color: #7a8fa3;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color .25s ease, border-color .25s ease, background .25s ease;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  max-width: 165px;
  text-align: center;
  cursor: pointer;
}
.hazard-nav-item i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 20px;
  border-radius: 12px;
  background: rgba(118,139,165,0.1);
  color: #7a8fa3;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}
.hazard-nav-item:hover { color: #1a3a6e; background: transparent; }
.hazard-nav-item:hover i {
  transform: translateY(-3px) scale(1.06);
  background: rgba(26,58,110,0.12);
  color: #1a3a6e;
}

/* Active tab per hazard type — icon chip fills with hazard color */
.hn-active-overview {
  color: #1a3a6e !important;
  border-bottom-color: #1a3a6e;
  background: linear-gradient(180deg, rgba(26,58,110,0.06) 0%, transparent 100%);
}
.hn-active-overview i { background: #1a3a6e !important; color: #fff !important; box-shadow: 0 4px 14px rgba(26,58,110,0.30); }

.hn-active-floods {
  color: #1565c0 !important;
  border-bottom-color: #1565c0;
  background: linear-gradient(180deg, rgba(21,101,192,0.06) 0%, transparent 100%);
}
.hn-active-floods i { background: #1565c0 !important; color: #fff !important; box-shadow: 0 4px 14px rgba(21,101,192,0.30); }

.hn-active-heatwaves {
  color: #bf360c !important;
  border-bottom-color: #bf360c;
  background: linear-gradient(180deg, rgba(191,54,12,0.06) 0%, transparent 100%);
}
.hn-active-heatwaves i { background: #bf360c !important; color: #fff !important; box-shadow: 0 4px 14px rgba(191,54,12,0.30); }

.hn-active-fog {
  color: #37474f !important;
  border-bottom-color: #37474f;
  background: linear-gradient(180deg, rgba(55,71,79,0.06) 0%, transparent 100%);
}
.hn-active-fog i { background: #37474f !important; color: #fff !important; box-shadow: 0 4px 14px rgba(55,71,79,0.25); }

.hn-active-hailstorms {
  color: #4527a0 !important;
  border-bottom-color: #4527a0;
  background: linear-gradient(180deg, rgba(69,39,160,0.06) 0%, transparent 100%);
}
.hn-active-hailstorms i { background: #4527a0 !important; color: #fff !important; box-shadow: 0 4px 14px rgba(69,39,160,0.30); }

.hn-active-droughts {
  color: #e65100 !important;
  border-bottom-color: #e65100;
  background: linear-gradient(180deg, rgba(230,81,0,0.06) 0%, transparent 100%);
}
.hn-active-droughts i { background: #e65100 !important; color: #fff !important; box-shadow: 0 4px 14px rgba(230,81,0,0.30); }

.hn-active-thunderstorm {
  color: #6a1b9a !important;
  border-bottom-color: #6a1b9a;
  background: linear-gradient(180deg, rgba(106,27,154,0.06) 0%, transparent 100%);
}
.hn-active-thunderstorm i { background: #6a1b9a !important; color: #fff !important; box-shadow: 0 4px 14px rgba(106,27,154,0.30); }

.hn-active-strongwinds {
  color: #00695c !important;
  border-bottom-color: #00695c;
  background: linear-gradient(180deg, rgba(0,105,92,0.06) 0%, transparent 100%);
}
.hn-active-strongwinds i { background: #00695c !important; color: #fff !important; box-shadow: 0 4px 14px rgba(0,105,92,0.30); }

.hn-active-heavyrainfall {
  color: #01579b !important;
  border-bottom-color: #01579b;
  background: linear-gradient(180deg, rgba(1,87,155,0.06) 0%, transparent 100%);
}
.hn-active-heavyrainfall i { background: #01579b !important; color: #fff !important; box-shadow: 0 4px 14px rgba(1,87,155,0.30); }

.hn-active-coldwave {
  color: #0277bd !important;
  border-bottom-color: #0277bd;
  background: linear-gradient(180deg, rgba(2,119,189,0.06) 0%, transparent 100%);
}
.hn-active-coldwave i { background: #0277bd !important; color: #fff !important; box-shadow: 0 4px 14px rgba(2,119,189,0.30); }

/* --- Section pill nav (within-page anchor TOC) --- */
.hazard-section-nav {
  background: #f0f5fc;
  border-bottom: 1px solid #dce7f3;
  position: sticky;
  top: 68px;
  z-index: 490;
  overflow: hidden;
}

.hazard-section-nav-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 44px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.hazard-section-nav-inner::-webkit-scrollbar { display: none; }

.hsn-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  z-index: 2;
  color: #1a3a6e;
  font-size: 13px;
  transition: opacity .2s, color .2s;
}
.hsn-arrow-left  { left: 0;  background: linear-gradient(to right, #f0f5fc 55%, transparent); }
.hsn-arrow-right { right: 0; background: linear-gradient(to left,  #f0f5fc 55%, transparent); }
.hsn-arrow.hsn-hidden { opacity: 0; pointer-events: none; }
.hsn-arrow:hover { color: #1565c0; }

.hazard-section-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 15px 5px 6px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #607080;
  background: #fff;
  border: 1.5px solid #d0dbe8;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: color .2s, background .2s, border-color .2s, box-shadow .2s;
  letter-spacing: 0.3px;
}
.hazard-section-pill:hover {
  color: #1a3a6e;
  background: #e8f0fe;
  border-color: #1a3a6e;
  box-shadow: 0 2px 8px rgba(26,58,110,0.1);
}
.hazard-section-pill.hsp-active {
  color: #1565c0;
  background: #e8f0fe;
  border-color: #1565c0;
  box-shadow: 0 2px 10px rgba(21,101,192,0.15);
}
.hazard-section-pill .hsp-num {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: #90a8c8;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
}
.hazard-section-pill.hsp-active .hsp-num,
.hazard-section-pill:hover .hsp-num { background: #1565c0; }

@media (max-width: 767px) {
  .hazard-section-nav { top: 0; }
  .hazard-section-nav-inner { padding: 8px 40px; gap: 6px; }
  .hazard-section-pill { font-size: 11px; padding: 4px 12px 4px 5px; }
}

/* --- Content card wrapper --- */
.hazard-content-section { background: #f0f4f9; }

/* Typography inside hazard-content-inner (applies to non-zigzag pages like Vision) */
.hazard-content-inner h1 { font-size: 32px; font-weight: 700; color: #0d1f5c; margin-bottom: 1rem; line-height: 1.2; }
.hazard-content-inner h2 { font-size: 26px; font-weight: 700; color: #0d1f5c; margin-bottom: 0.85rem; line-height: 1.3; }
.hazard-content-inner h3,
.hazard-content-inner h4 { font-size: 23px; font-weight: 600; color: #1e3a5f; margin-bottom: 0.75rem; }
.hazard-content-inner h5,
.hazard-content-inner h6 { font-size: 19px; font-weight: 600; color: #1e3a5f; }
.hazard-content-inner p  { font-size: 17px; color: #475569; line-height: 1.75; margin-bottom: 1rem; }
.hazard-content-inner ol li,
.hazard-content-inner ul li { font-size: 16px; color: #475569; line-height: 1.7; }

/* Full-width container with 50px side margins */
.hazard-content-section > .container {
  max-width: 100%;
  width: 100%;
  padding-left: 50px;
  padding-right: 50px;
}
.hazard-content-section .row {
  --bs-gutter-x: 0;
  margin-left: 0;
  margin-right: 0;
}
.hazard-content-section .col-lg-12 {
  padding-left: 0;
  padding-right: 0;
}

.hazard-content-inner {
  background: #fff;
  border-radius: 14px;
  padding: 48px 52px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}

/* --- Zig-Zag layout (activated by JS adding .hz-transformed) --- */
.hazard-content-inner.hz-transformed {
  background: transparent;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}

.hazard-zigzag-section {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(0, 22, 122, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 36px;
  overflow: hidden;
}

.hazard-zigzag-section.hz-reverse {
  flex-direction: row-reverse;
}

.hazard-zigzag-img {
  flex: 0 0 42%;
  height: 320px;
  align-self: flex-start;
  padding: 20px;
  margin-top: 40px;
}

.hazard-zigzag-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hazard-zigzag-section:hover .hazard-zigzag-img img {
  transform: scale(1.03);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
}

/* Hide hr from API content — accent line already handles the divider */
.hazard-zigzag-text hr {
  display: none;
}

.hazard-zigzag-text {
  flex: 1;
  padding: 44px 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hz-section-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #3a7bd5;
  margin-bottom: 10px;
}

.hazard-content-section .hazard-zigzag-text h2 {
  font-size: 26px;
  font-weight: 700;
  color: #0d1f5c;
  margin-bottom: 12px;
  line-height: 1.3;
}

.hazard-content-section .hazard-zigzag-text h3,
.hazard-content-section .hazard-zigzag-text h4 {
  font-size: 23px;
  font-weight: 600;
  color: #1e3a5f;
  margin-top: 18px;
  margin-bottom: 8px;
}

.hazard-content-section .hazard-zigzag-text p {
  color: #475569;
  line-height: 1.5;
  font-size: 19px;
}

.hazard-content-section .hazard-zigzag-text ol li,
.hazard-content-section .hazard-zigzag-text ul li {
  font-size: 15px;
  color: #475569;
}

/* Responsive */
@media (max-width: 900px) {
  .hazard-zigzag-section,
  .hazard-zigzag-section.hz-reverse {
    flex-direction: column;
  }
  .hazard-zigzag-img {
    flex: 0 0 auto;
    width: 100%;
    height: 220px;
    align-self: auto;
  }
  .hazard-zigzag-text {
    padding: 30px 24px;
  }
  .hazard-content-section .hazard-zigzag-text h2 { font-size: 21px; }
  .hazard-content-section .hazard-zigzag-text p { font-size: 27px; }
  .hazard-content-section .hazard-zigzag-text ol li,
  .hazard-content-section .hazard-zigzag-text ul li { font-size: 15px; }
  .hazard-content-section > .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 768px) {
  .hazard-hero h1 { font-size: 30px; }
  .hazard-icon-wrap { width: 58px; height: 58px; font-size: 24px; margin-bottom: 12px; }
  .hazard-content-inner { padding: 24px 18px; }
  .hazard-nav-item { padding: 10px 14px 8px; font-size: 9.5px; letter-spacing: 0.5px; }
  .hazard-nav-item i { font-size: 16px; width: 38px; height: 38px; border-radius: 9px; }
}

.our-team-banner{
  background: url(../images/our-team-banner.jpg) top center no-repeat;
  background-size: cover;
}

.internal-page-section h2{ font-family: "Poppins", sans-serif; position: relative; font-size: 28px; font-weight: 500; color: #00167a; margin-bottom: 20px; line-height: 70px; }
.internal-page-section h2:before{ content: ""; position: absolute; display: inline-block; bottom: 0px; width: 50px; height: 2px; background: #00167a; left: 0%; margin-left: -0px; z-index: 1; }
.internal-page-section h2:after{ content: ""; position: absolute; display: inline-block; bottom: 0px; width: 150px; height: 1px; background: #dadada; left: 0%; margin-left: -0px; }
.internal-page-section h4{ font-size: 22px; font-weight: 500; color: #383838; padding-top: 24px; padding-bottom: 10px; }
.internal-page-section h5{ font-size: 14px; font-weight: 500; color: #383838; padding-top: 10px; padding-bottom: 10px; }
.internal-page-section p{ font-size: 24px; text-align: justify; color: #333; padding-bottom: 10px; line-height: 34px; }
.internal-page-section p a{ color: #333; text-decoration: none; }
.internal-page-section p a:hover{ color:#008fe2; text-decoration: none; }
.internal-page-section .navigation-sidebar ol, .internal-page-section .navigation-sidebar ul{ margin-bottom: 0px; padding-left: 0px; }
.internal-page-section ol, .internal-page-section ul{ margin-bottom: 10px; padding-left: 25px; }
.internal-page-section ol li, .internal-page-section ul li{ font-size: 24px; font-weight: 400; color: #333; padding-top: 16px; }
.internal-page-section ol li p, .internal-page-section ul li p{ font-size: 24px; line-height: 34px; font-weight: 400; color: #333; padding-top: 10px; padding-bottom: 5px; }
.internal-page-section ul li{ list-style-type: disc; list-style-position: outside; }
.internal-page-section .contact-title{ font-family: "Poppins", sans-serif; font-size: 24px; color: #383838; }
.internal-page-section table{ font-family: "Roboto", sans-serif; color:#333; font-size: 18px; }
.internal-page-section table a{ color:#333; }
.internal-page-section table a:hover{ color: #008fe2; }


.internal-page-section table.listtable tr th{ font-size:24px; font-weight:500; color: #333; }
.internal-page-section table.listtable tr td{ font-size:22px; font-weight:400; color: #333; }

.shadowhovereffect{ transition: border-color .2s ease-in-out, box-shadow .2s ease-in-out; border: 1px solid #fff;  background-clip: border-box; border-radius: 1rem; padding: 15px 15px; margin-bottom: 10px; }
.shadowhovereffect:hover{ border-color: #008fe2 !important; box-shadow: 1rem 1rem .625rem -0.125rem rgba(0,0,0,.09) !important; }

/*** Our Team ***/
.internal-our-team-list .section-title {
    font-family: "Poppins", sans-serif;
    position: relative;
    font-size: 3.2rem;
    color: #1c3394;
    font-weight: 700;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
    text-align: center;
}

.internal-our-team-list .section-title:before {
    content: "";
    position: absolute;
    bottom: -15px;
    width: 80px;
    height: 4px;
    background: #1c3394;
    left: 50%;
    margin-left: -40px;
    z-index: 2;
}

.internal-our-team-list .section-title:after {
    content: "";
    position: absolute;
    bottom: -15px;
    width: 200px;
    height: 1px;
    background: #e2e8f0;
    left: 50%;
    margin-left: -100px;
    z-index: 1;
}

.internal-page-section .team-item, .internal-our-team-list .team-item {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Sophisticated depth */
}

.internal-page-section .team-item:hover, .internal-our-team-list .team-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.internal-page-section .team-item img, .internal-our-team-list .team-item img {
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.internal-page-section .team-item:hover img, .internal-our-team-list .team-item:hover img {
    transform: scale(1.1) rotate(0.1deg); /* Added slight rotation for "organic" feel */
}

.internal-page-section .team-overlay, .internal-our-team-list .team-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 5;
}

.internal-page-section .team-overlay h4, .internal-our-team-list .team-overlay h4 {
    font-family: "Poppins", sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 20px 0;
    text-align: center;
    width: 100%;
    color: #ffffff;
    /* High-end Glassmorphism with Refined Opacity */
    background: linear-gradient(180deg, rgba(28, 51, 148, 0.8) 0%, rgba(28, 51, 148, 0.98) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}

.internal-page-section .team-item:hover .team-overlay h4, 
.internal-our-team-list .team-item:hover .team-overlay h4 {
    padding: 28px 0;
    background: linear-gradient(180deg, rgba(28, 51, 148, 0.9) 0%, rgba(28, 51, 148, 1) 100%);
}

.internal-page-section .awards-card h2{ font-size: 22px; }

.internal-page-section .navigation-sidebar .card-header{ font-size: 24px; background-color: #008fe2; color: #fff; }
.internal-page-section .navigation-sidebar .list-group .list-group-item{ padding-top: 0px; padding: 8px 15px; }
.internal-page-section .navigation-sidebar .list-group .list-group-item:hover, .internal-page-section .navigation-sidebar .list-group .list-group-item.active{ background-color: #f5f5f5; border:0; }
.internal-page-section .navigation-sidebar .list-group .list-group-item a{ display: block; width: 100%; height: 100%; text-decoration: none; padding: 4px 5px; font-size: 24px; color: #000; }
.internal-page-section .navigation-sidebar .list-group .list-group-item:hover a{ color: #000;; }

.internal-page-section form .btn{
  background-color: #58c0fd;
  color: #fff;
  text-transform: uppercase;
  font-size: 22px;
}

.internal-page-section form .btn:hover{
  background-color: #008fe2;
}

.internal-page-section form label.error{ color: #ff0000; padding-top: 5px; }

.internships-form{
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.internships-form .contact-wrap {
  background: #e8edf0;
}

.internships-form .disastertrainingattendance-form-wrap {
  background: #e8edf0;
  overflow: auto;
}

.internships-form .disastertrainingattendance-form-wrap table {
  width: 100%;
}

.internships-form .disastertrainingattendance-form-wrap table table tr td{
  padding: 8px 5px;
}

.internships-form .form-group {
  margin-bottom: 20px;
  box-sizing: border-box;
}

.internships-form .contactForm .label {
  color: #333;
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 4px;
}

.internships-form .contactForm .form-control {
  border: none;
  font-size: 16px;
}

.internships-form .contactForm .submitbtn{ background-color: #58c0fd; color: #fff; text-transform: uppercase; font-size: 16px; margin-top: 20px; }
.internships-form .contactForm .submitbtn:hover{background-color: #008fe2; }

.internships-form .contactForm h3{ 
  font-size: 18px;
  font-weight: 500;
  color: #333;
  text-transform: uppercase;
  margin-top: 10px;
 }

.internships-form .contactForm table{
  margin-bottom: 40px;
}

.internships-form .contactForm table tr th{
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-transform: uppercase;
}

.internships-form .contactForm table tr td{
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-transform: uppercase;
}

.faq-page .accordion-item .accordion-header .accordion-button{ font-family: "Poppins", sans-serif; font-size:18px; font-weight: 500; color:#333; }
.faq-page .accordion-item .accordion-body{ font-size:18px; color:#333; }

.section-associates .section-title{ font-family: "Poppins", sans-serif; position: relative; font-size: 32px; color: #008fe2; font-weight: 500; margin-bottom: 30px; line-height: 70px; }
.section-associates .section-title:before{ content: ""; position: absolute; display: inline-block; bottom: 0px; width: 50px; height: 2px; background: #008fe2; left: 50%; margin-left: -30px; z-index: 1; }
.section-associates .section-title:after{ content: ""; position: absolute; display: inline-block; bottom: 0px; width: 150px; height: 1px; background: #dadada; left: 50%; margin-left: -80px; }
.section-associates .section-description{ font-size: 18px; padding-bottom: 40px; line-height: 25px; color:#333; }
.section-associates .associates-carousel .title{ font-size:16px; padding-top: 15px; font-weight: 500; color: #666; }
.section-associates .associates-carousel .subtitle{ font-size:14px; padding-top: 5px; }

/* ============================================================
   INTERNAL OUR TEAM SECTION — Dark Blue Background + Green Grid Pattern
   ============================================================ */
.internal-our-team-section {
  background: linear-gradient(145deg, #dceefb 0%, #e8f4fd 50%, #d0e8f5 100%) !important;
  position: relative;
  overflow: hidden;
  padding: 60px 0 80px;
  min-height: 100vh;
}

/* Subtle technical grid overlay */
.internal-our-team-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image:
    linear-gradient(rgba(10, 100, 180, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 100, 180, 0.06) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
  pointer-events: none;
}

/* Decorative glassmorphism HEXAGON */
.internal-our-team-section::after {
  content: "";
  position: absolute;
  top: 8%;
  right: 4%;
  width: 240px;
  height: 240px;
  background: rgba(78, 202, 255, 0.08);
  border: 1px solid rgba(78, 202, 255, 0.35);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  box-shadow: 0 0 40px rgba(78, 202, 255, 0.15);
  backdrop-filter: blur(12px);
  z-index: 1;
  pointer-events: none;
  animation: floatHex 8s ease-in-out infinite;
}

@keyframes floatHex {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

/* Decorative glassmorphism CIRCLE */
.internal-our-team-section .container-fluid {
  position: relative;
  z-index: 2;
}

/* We inject circle via a pseudo wrapper class added to EJS */
.team-deco-circle {
  position: absolute;
  bottom: 6%;
  left: 3%;
  width: 180px;
  height: 180px;
  background: rgba(10, 100, 180, 0.04);
  border: 1.5px solid rgba(10, 100, 180, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(78, 202, 255, 0.12), inset 0 0 20px rgba(78, 202, 255, 0.06);
  backdrop-filter: blur(8px);
  z-index: 1;
  pointer-events: none;
  animation: floatCircle 9s ease-in-out infinite;
}

@keyframes floatCircle {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-15px) scale(1.03); }
}

/* Additional small accent circles for depth */
.team-deco-circle-sm {
  position: absolute;
  top: 15%;
  left: 5%;
  width: 90px;
  height: 90px;
  background: rgba(78, 202, 255, 0.05);
  border: 1px solid rgba(78, 202, 255, 0.28);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  animation: floatCircle 11s ease-in-out infinite reverse;
}

/* ==============================================
   FLOATING LUMINOUS BALLS (like reference image)
   ============================================== */
.team-float-ball {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.ball-1 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at 35% 35%, #cce8ff, #4ECAFF, #0a64b4);
  top: -60px;
  right: 18%;
  filter: blur(5px);
  opacity: 0.5;
  box-shadow: 0 0 60px rgba(78, 202, 255, 0.25);
  animation: ballOrbit1 8s ease-in-out infinite;
}
.ball-2 {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at 30% 30%, #e0f2fe, #7dd3fc, #0369a1);
  bottom: 10%;
  right: 8%;
  filter: blur(4px);
  opacity: 0.55;
  box-shadow: 0 0 50px rgba(10, 100, 180, 0.2);
  animation: ballOrbit2 10s ease-in-out infinite;
}
.ball-3 {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at 40% 30%, #e0f7ff, #4ECAFF, #0a64b4);
  bottom: 15%;
  left: 22%;
  filter: blur(3px);
  opacity: 0.45;
  box-shadow: 0 0 40px rgba(78, 202, 255, 0.18);
  animation: ballOrbit3 12s ease-in-out infinite;
}
.ball-4 {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at 35% 25%, #dbeafe, #93c5fd, #3b82f6);
  top: 25%;
  left: 8%;
  filter: blur(2px);
  opacity: 0.5;
  box-shadow: 0 0 35px rgba(59, 130, 246, 0.2);
  animation: ballOrbit4 14s ease-in-out infinite;
}

@keyframes ballOrbit1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -30px) scale(1.04); }
  66%       { transform: translate(-15px, 15px) scale(0.97); }
}
@keyframes ballOrbit2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(-20px, -20px) scale(1.05); }
  70%       { transform: translate(10px, 25px) scale(0.96); }
}
@keyframes ballOrbit3 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(15px, -25px); }
}
@keyframes ballOrbit4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  45%       { transform: translate(20px, 20px) scale(1.06); }
  80%       { transform: translate(-10px, -10px) scale(0.94); }
}

/* ==============================================
   SECTION HEADER — Title + Subtitle
   ============================================== */
.team-section-header {
  text-align: center;
  padding: 40px 20px 10px;
  position: relative;
  z-index: 3;
}
.team-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
  text-shadow: 0 0 30px rgba(0, 220, 180, 0.4), 0 2px 10px rgba(0,0,0,0.5);
  background: linear-gradient(90deg, #e2e8f0 0%, #00ddb4 50%, #4f6ef7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.team-section-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: rgba(148, 174, 220, 0.85);
  margin: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
}

.internal-our-team-section .course-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.internal-our-team-section .course-card {
    background: linear-gradient(135deg, #1e293b 0%, #00147a 100%);
    border-radius: 24px;
    padding: 50px 60px;
    width: 420px;
    box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.1), 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.internal-our-team-section .course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transition: left 0.6s;
}

.internal-our-team-section .course-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
    border-radius: 0 0 24px 24px;
}

.internal-our-team-section  .course-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.2), 0 30px 80px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.internal-our-team-section .avatar-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.internal-our-team-section .avatar {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 8px rgba(59, 130, 246, 0.1), 0 20px 40px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.internal-our-team-section .course-card-2 .avatar { background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%); box-shadow: 0 0 0 6px rgba(6, 182, 212, 0.1), 0 15px 35px rgba(6, 182, 212, 0.25); }
.internal-our-team-section .course-card-3 .avatar { background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%); box-shadow: 0 0 0 6px rgba(139, 92, 246, 0.1), 0 15px 35px rgba(139, 92, 246, 0.25); }
.internal-our-team-section .course-card-4 .avatar { background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.1), 0 15px 35px rgba(16, 185, 129, 0.25); }
.internal-our-team-section .course-card-5 .avatar { background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%); box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.1), 0 15px 35px rgba(245, 158, 11, 0.25); }
.internal-our-team-section .course-card-6 .avatar { background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%); box-shadow: 0 0 0 6px rgba(99, 102, 241, 0.1), 0 15px 35px rgba(99, 102, 241, 0.25); }
.internal-our-team-section .course-card-7 .avatar { background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%); box-shadow: 0 0 0 6px rgba(20, 184, 166, 0.1), 0 15px 35px rgba(20, 184, 166, 0.25); }
.internal-our-team-section .course-card-8 .avatar { background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%); box-shadow: 0 0 0 6px rgba(236, 72, 153, 0.1), 0 15px 35px rgba(236, 72, 153, 0.25); }
.internal-our-team-section .course-card-9 .avatar { background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%); box-shadow: 0 0 0 6px rgba(139, 92, 246, 0.1), 0 15px 35px rgba(139, 92, 246, 0.25); }



.internal-our-team-section .avatar i {
    fill: white;
    position: relative;
    z-index: 1;
    font-size: 60px;
    color: #fff;
}

.internal-our-team-section .avatar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

.internal-our-team-section .course-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: #f1f5f9;
  margin: 20px 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.internal-our-team-section  .course-card:hover h3 { color: #fff; }
.internal-our-team-section  .course-card:hover i { color: #fff; }

.internal-our-team-section .course-card:hover .avatar {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 0 0 12px rgba(59, 130, 246, 0.15), 0 25px 50px rgba(59, 130, 246, 0.4);
}

.disaster-training-attendance h1{ font-family: "Poppins", sans-serif; position: relative; font-size: 30px; font-weight: 600; color: #333; margin-bottom: 20px; }
.disaster-training-attendance h2{ font-family: "Poppins", sans-serif; position: relative; font-size: 28px; font-weight: 500; color: #00167a; margin-bottom: 20px; line-height: 70px; }
.disaster-training-attendance h2:before{ content: ""; position: absolute; display: inline-block; bottom: 0px; width: 50px; height: 2px; background: #00167a; left: 0%; margin-left: -0px; z-index: 1; }
.disaster-training-attendance h2:after{ content: ""; position: absolute; display: inline-block; bottom: 0px; width: 150px; height: 1px; background: #dadada; left: 0%; margin-left: -0px; }
.disaster-training-attendance form .btn { background-color: #00167a; border: 1px solid #00167a; color: #fff; text-transform: uppercase; font-size: 18px; }
.disaster-training-attendance form .btn:hover { background-color: #364aa5; border: 1px solid #364aa5; color: #fff; }
.disaster-training-attendance .btn.btn-primary{ margin-top: 0; }
.disaster-training-attendance .card{ border: 1px solid #00167a; }
.disaster-training-attendance .card-header{ background-color: #00167a; color: #fff; }
.disaster-training-attendance .advance-search-card{ border: none; }
.disaster-training-attendance .card-body{ color: #333; }
.disaster-training-attendance .advance-search-card>.card-header{ color: #333; }
.disaster-training-attendance .login-wrap .registerbtn{ background-color: unset; color: #00167a; font-size: 14px; border: 0; text-transform: unset; }
.disaster-training-attendance #recordByPrev #next-arrow{ top: 50%; transform: translateY(-50%); right:-6px; color: #00167a; font-weight: bold; font-size: 60px; }
.disaster-training-attendance #recordByNext #previous-arrow{ top: 50%; transform: translateY(-50%); left:-3px; color: #00167a; font-weight: bold; font-size: 60px; }
.disaster-training-attendance .DisasterRegister .alert-success a{ color: #0f5132; }
.disaster-training-attendance .DisasterRegister .alert-success a:hover{ color: #0f5132; text-decoration: underline; }
.disaster-training-attendance .choose-file-input .btn{ font-size: 14px; text-transform: unset; background-color: #e9ecef; color: #333; border: 1px solid #ced4da; border-radius: 2px 0 0 2px !important; }
.disaster-training-attendance .choose-file-input .fileName{ font-size: 14px; background-color: #fff; }

@keyframes accentSlide{
  0%  { background-position: 0% 0%; }
  100%{ background-position: 200% 0%; }
}

/* ========================================================
   FOOTER – Inner Pages (mirrors #section-footer in custom.css)
   ======================================================== */
.section-footer{
  background: linear-gradient(175deg, #071a34 0%, #0b2244 55%, #0d2a50 100%);
  position: relative;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  color: #b8cfe4;
  font-size: 15px;
}
/* Neutralise extra py-5 that inner pages add to the .container wrapper */
.section-footer > .container{
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
/* subtle logo watermark */
.section-footer::after{
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 320px; height: 320px;
  background: url('/images/logo.png') no-repeat center/contain;
  opacity: 0.03;
  pointer-events: none;
}
.section-footer .footer-accent-bar{
  height: 4px;
  background: linear-gradient(90deg, #1a9dff 0%, #00d4aa 50%, #1a9dff 100%);
  background-size: 200% 100%;
  animation: accentSlide 4s linear infinite;
}
.section-footer a{ color: #b8cfe4; text-decoration: none; transition: color .25s ease; }
.section-footer a:hover{ color: #4ecaff; }

/* Brand block */
.section-footer .footer-logo-wrap{ border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: 0.6rem; }
.section-footer .footer-logo-link{ display: inline-block; background: rgba(255,255,255,.06); border-radius: 50%; padding: 8px; transition: background .25s; }
.section-footer .footer-logo-link:hover{ background: rgba(255,255,255,.14); }
.section-footer .footer-org-name{ line-height: 1.25; }
.section-footer .org-line1{ display: block; font-size: 18px; font-weight: 500; color: #ffffff; letter-spacing: .4px; }
.section-footer .org-line2{ display: block; font-size: 18px; font-weight: 400; color: #4ecaff; }
.section-footer .footer-tagline{ font-size: 13.5px; line-height: 1.7; color: #8aafc8; font-style: italic; }

/* Contact list */
.section-footer .footer-contact-list li{ display: flex; align-items: flex-start; gap: 10px; margin-bottom: 8px; font-size: 14px; }
.section-footer .fc-icon{ display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; min-width: 34px; border-radius: 50%; background: rgba(78,202,255,.15); color: #4ecaff; font-size: 14px; margin-top: 2px; }
.section-footer .footer-contact-list a,
.section-footer .footer-contact-list address{ font-size: 14px; color: #b8cfe4; line-height: 1.6; }
.section-footer .footer-contact-list a:hover{ color: #4ecaff; }

/* Column headings */
.section-footer .footer-col-heading{ font-size: 14px; font-weight: 700; color: #ffffff; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 10px; margin-top: 0; display: flex; align-items: center; gap: 8px; padding-bottom: 8px; border-bottom: 2px solid rgba(78,202,255,.25); }
.section-footer .footer-col-heading .heading-icon{ color: #4ecaff; font-size: 14px; }

/* Nav link lists */
.section-footer .footer-nav-list li{ margin-bottom: 6px; }
.section-footer .footer-nav-list a{ font-size: 14px; color: #b8cfe4; display: flex; align-items: center; gap: 8px; transition: gap .2s ease, color .2s ease; }
.section-footer .footer-nav-list a i{ font-size: 10px; color: #4ecaff; opacity: .7; transition: opacity .2s, transform .2s; }
.section-footer .footer-nav-list a:hover{ color: #4ecaff; gap: 12px; }
.section-footer .footer-nav-list a:hover i{ opacity: 1; transform: translateX(3px); }

/* Social icons */
.section-footer .social-btn{ display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); overflow: hidden; transition: transform .25s ease, background .25s ease, border-color .25s ease; }
.section-footer .social-btn:hover{ transform: translateY(-4px); background: rgba(78,202,255,.2); border-color: #4ecaff; }
.section-footer .social-btn img{ width: 22px; height: 22px; object-fit: contain; }

/* Weather widget */
.section-footer .weather-widget-wrap{ position: relative; border-radius: 14px; overflow: hidden; border: 1px solid rgba(78,202,255,.2); box-shadow: 0 8px 32px rgba(0,0,0,.4); transition: box-shadow .3s, transform .3s; }
.section-footer .weather-widget-wrap:hover{ box-shadow: 0 12px 40px rgba(78,202,255,.25); transform: translateY(-4px); }
.section-footer .weather-post-img{ display: block; width: 100%; }
.section-footer .weather-widget-overlay{ position: absolute; bottom: 0; left: 0; right: 0; padding: 10px 14px; background: linear-gradient(0deg, rgba(7,26,52,.9) 0%, transparent 100%); font-size: 13px; color: #4ecaff; font-weight: 500; }

/* Footer bottom bar */
.section-footer .footer-bottom-bar{ border-top: 1px solid rgba(78,202,255,.15); background: rgba(0,0,0,.25); }
.section-footer .app-badge{ height: 40px; width: auto; border-radius: 8px; opacity: .9; transition: opacity .2s, transform .2s; }
.section-footer .app-badge:hover{ opacity: 1; transform: scale(1.05); }
.section-footer .footer-last-updated{ font-size: 13px; color: #6a8fa8; margin-bottom: 4px; }
.section-footer .footer-copyright{ font-size: 14px; color: #8aafc8; font-weight: 500; }

/* Hit counter */
.section-footer .hit-counter{ display: flex; align-items: center; gap: 8px; background: rgba(78,202,255,.1); border: 1px solid rgba(78,202,255,.2); border-radius: 30px; padding: 8px 20px; font-size: 14px; color: #b8cfe4; }
.section-footer .hit-counter i{ color: #4ecaff; font-size: 16px; }
.section-footer .hit-label{ margin-right: 4px; }
.section-footer .hit-count{ font-size: 18px; font-weight: 700; color: #4ecaff; }



@media (max-width: 576px) {
  .mobile-nav-block{ display: block; }
  .section-header .logo-menu-block{ padding-left: 10px; margin-top: 10px; }
  .section-header .logo-menu-block .logo-img img{ width: 80px; }
  .section-header .logo-menu-block .logo-title{ font-size: 21px; text-align: center; }
  .section-header .logo-menu-block .logo-subtitle{ font-size: 18px; text-align: center; }
  .logo-block .bg-block, .section-header .menu { display:none; }
  .hero-header{ margin-top: -216px; padding-bottom: 20px; }
  .hero-header h1{ font-size: 28px; }
  .internal-page-section p { font-size: 18px; }
  .internal-page-section ol li, .internal-page-section ul li { font-size: 18px; }
  .internal-page-section ol li p, .internal-page-section ul li p { font-size: 18px; }
  .internal-page-section table.listtable tr td { font-size: 18px; }
  .section-footer .footer-brand-col{ margin-bottom: 2rem; }
  .section-footer .footer-col-heading{ margin-top: 1.5rem; }
  .section-footer .footer-widget-col{ margin-top: 2rem; }
  .section-footer .weather-widget-wrap{ max-width: 320px; }
}

@media (max-width: 768px) {
    

}


@media (min-width: 992px) {
    
}

@media (min-width: 1200px) {
    
}

@media (min-width: 1400px) {

}

/* ── Career "New Jobs" badge ──────────────────────────────── */
.nav-new-badge {
    display: none; /* shown by JS when jobs exist */
}
.nav-new-badge.visible {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e53935;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.4px;
    line-height: 1;
    padding: 2px 5px;
    border-radius: 4px;
    margin-left: 5px;
    vertical-align: middle;
    text-transform: uppercase;
    animation: badge-pulse 2s ease-in-out infinite;
    position: relative;
    top: -1px;
}
@keyframes badge-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.75; transform: scale(1.08); }
}

/* ── Font Accessibility (A- / A / A+) ──────────────────────────────────────
   Scaling lever: changing html font-size shifts every rem value proportionally.
   The CSS custom properties (--text-xs … --text-display) are all in rem,
   so body, headings, and any rem-typed rule scale automatically.
   Only px-hardcoded content selectors need explicit rem overrides below.
   Class is applied to <html> via the inline script in header.ejs,
   persisted in localStorage as bmsk_font_level (-1 = sm, 0 = default, 1 = lg).
   ─────────────────────────────────────────────────────────────────────────── */
html.fsize-lg { font-size: 112.5% !important; }
html.fsize-sm { font-size:  87.5% !important; }

/* hazard-content-inner uses px — convert to rem so it scales */
html.fsize-lg .hazard-content-inner h1,
html.fsize-sm .hazard-content-inner h1 { font-size: 2rem; }

html.fsize-lg .hazard-content-inner h2,
html.fsize-sm .hazard-content-inner h2 { font-size: 1.625rem; }

html.fsize-lg .hazard-content-inner h4,
html.fsize-sm .hazard-content-inner h4 { font-size: 1.4375rem; }

html.fsize-lg .hazard-content-inner h6,
html.fsize-sm .hazard-content-inner h6 { font-size: 1.1875rem; }

html.fsize-lg .hazard-content-inner p,
html.fsize-sm .hazard-content-inner p { font-size: 1.0625rem; }

html.fsize-lg .hazard-content-inner li,
html.fsize-sm .hazard-content-inner li { font-size: 1rem; }

/* hazard zigzag text */
html.fsize-lg .hazard-content-section .hazard-zigzag-text h2,
html.fsize-sm .hazard-content-section .hazard-zigzag-text h2 { font-size: 1.625rem; }

html.fsize-lg .hazard-content-section .hazard-zigzag-text h3,
html.fsize-lg .hazard-content-section .hazard-zigzag-text h4,
html.fsize-sm .hazard-content-section .hazard-zigzag-text h3,
html.fsize-sm .hazard-content-section .hazard-zigzag-text h4 { font-size: 1.4375rem; }

html.fsize-lg .hazard-content-section .hazard-zigzag-text p,
html.fsize-sm .hazard-content-section .hazard-zigzag-text p { font-size: 1.1875rem; }

html.fsize-lg .hazard-content-section .hazard-zigzag-text li,
html.fsize-sm .hazard-content-section .hazard-zigzag-text li { font-size: 0.9375rem; }
