@font-face {
  font-family: "alata";
  src: url("Alata-Regular.ttf");
}
@font-face {
  font-family: "satoshiL";
  src: url("Satoshi-Light.otf");
}
@font-face {
  font-family: "satoshi";
  src: url("Satoshi-Regular.otf");
}

@font-face {
  font-family: "satoshiM";
  src: url("Satoshi-Medium.otf");
}
@font-face {
  font-family: "satoshiB";
  src: url("Satoshi-Bold.otf");
}
@font-face {
  font-family: "satoshiBlack";
  src: url("Satoshi-Black.otf");
}
@font-face {
  font-family: "roboto";
  src:
    url("Roboto-Regular.woff2") format("woff2"),
    url("Roboto-Regular.woff") format("woff"),
    url("Roboto-Regular.ttf") format("truetype"); /* fallback */
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "EncodeSans";
  src:
    url("EncodeSansSemiExpanded-Regular.woff2") format("woff2"),
    url("EncodeSansSemiExpanded-Regular.woff") format("woff"),
    url("EncodeSansSemiExpanded-Regular.ttf") format("truetype"); /* fallback */
  font-weight: normal;
  font-style: normal;
}
:root {
  /* OLDER WEBSITE CONTENT ARCHIVE */
  --color-primary: #c81f4d;
  --color-blue: #153259;
  --color-white: #fff;
  --text-color: #333;
  --color-secondary: #2aa7ff;

  /* fonts */

  --alata: "alata", sans-serif;
  --roboto: "roboto", sans-serif;
  --encodeSans: "EncodeSans", sans-serif;
  --satoshi: "satoshi", sans-serif;
  --satoshiL: "satoshiL", sans-serif;
  --satoshiM: "satoshiM", sans-serif;
  --satoshiB: "satoshiB", sans-serif;
  --satoshiBlack: "satoshiBlack", sans-serif;

  /* spacing */
  --section-spacing: 64px 100px;
  --section-spacing-lt-rt: 0 100px;

  /* transitions */
  --transition-04: all 0.4s ease;

  /* Brand foundation */
  --theme: #173964;
  --theme-2: #0b1f3a;
  --theme-hi: #3f6fb5;

  --accent: #c81f4d;

  --text: #0e1a2b;
  --muted: #4a5568;

  --line: rgba(11, 18, 32, 0.12);
  --shadow: 0 12px 36px rgba(11, 18, 32, 0.12);
  --radius: 18px;
  /* --container: 1200px; */

  --grad-hero:
    radial-gradient(
      1200px 420px at 15% 0%,
      rgba(255, 255, 255, 0.14) 0%,
      rgba(255, 255, 255, 0) 55%
    ),
    radial-gradient(
      1000px 420px at 90% 10%,
      rgba(200, 31, 77, 0.14) 0%,
      rgba(200, 31, 77, 0) 60%
    ),
    linear-gradient(
      180deg,
      var(--theme-hi) 0%,
      var(--theme) 55%,
      var(--theme-2) 100%
    );

  --grad-top:
    radial-gradient(
      1200px 140px at 20% 0%,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(255, 255, 255, 0) 60%
    ),
    radial-gradient(
      900px 160px at 85% 10%,
      rgba(255, 199, 44, 0.18) 0%,
      rgba(255, 199, 44, 0) 55%
    ),
    linear-gradient(
      90deg,
      var(--theme-2) 0%,
      var(--theme) 50%,
      var(--theme-2) 100%
    );

  --grad-soft:
    radial-gradient(
      900px 240px at 20% 0%,
      rgba(23, 57, 100, 0.1) 0%,
      rgba(23, 57, 100, 0) 62%
    ),
    radial-gradient(
      700px 220px at 85% 20%,
      rgba(255, 199, 44, 0.14) 0%,
      rgba(255, 199, 44, 0) 58%
    ),
    linear-gradient(
      180deg,
      rgba(23, 57, 100, 0.06) 0%,
      rgba(23, 57, 100, 0.02) 100%
    );

  --ff-body:
    "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --ff-head:
    "Sora", "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;

  --menu-size: 12px;
  --menu-track: 0.14em;
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--text);
  background: #fff;
  line-height: 1.4;
}
@media screen and (min-width: 1920px) {
  body {
    max-width: 1920px;
    margin: 0 auto;
  }
}
a {
  color: inherit;
  text-decoration: none;
}
/* .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
} */

h1,
h2,
h3,
h4,
.brand-name b,
.section-title h2,
.whatwedo-title,
.mg-left h2,
.partners-head h2,
.presence-head h2,
.glance-left h2 {
  font-family: var(--ff-head);
}
/*******************************
        What We Do
***********************************/

/* Level 5: What We Do */
.whatwedo {
  padding: 34px 0;
  background: var(--grad-soft);
  border-top: 1px solid rgba(2, 41, 105, 0.14);
  border-bottom: 1px solid rgba(2, 41, 105, 0.14);
}
.whatwedo-head {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}
.whatwedo-title {
  margin: 0;
  font-size: 22px;
}
.whatwedo-desc {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}
.whatwedo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.wcard {
  border: 1px solid rgba(2, 41, 105, 0.16);
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(11, 18, 32, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 412px;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.wcard:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(11, 18, 32, 0.12);
}
.wthumb {
  height: 180px;
  background-size: cover;
  background-position: center;
}
.wbody {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.wtag {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(2, 41, 105, 0.1);
  border: 1px solid rgba(2, 41, 105, 0.18);
  color: var(--theme);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--ff-head);
}
.wbody h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  min-height: 45px;
}
.wlist {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  display: grid;
  gap: 6px;
}
.wcta {
  margin-top: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.wbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 900;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background:
    radial-gradient(
      18px 18px at 30% 25%,
      rgba(255, 255, 255, 0.14) 0%,
      rgba(255, 255, 255, 0) 60%
    ),
    linear-gradient(180deg, var(--theme) 0%, var(--theme-2) 100%);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(11, 18, 32, 0.1);
  transition:
    transform 0.15s ease,
    filter 0.15s ease;
}
.wbtn.secondary {
  background: #fff;
  color: var(--theme);
  border: 2px solid var(--theme);
  box-shadow: 0 10px 22px rgba(11, 18, 32, 0.06);
}
.wbtn:hover {
  filter: brightness(0.98);
  transform: translateY(-1px);
  text-decoration: none !important;
}

/* customization */
#projects-wrapper {
  margin: 0 auto;
  /* float: none; */
  background: var(--grad-soft);
  border-top: 1px solid rgba(2, 41, 105, 0.14);
  border-bottom: 1px solid rgba(2, 41, 105, 0.14);
  padding: 30px 30px;
}
.wthumb > img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center center;
}
#projects-wrapper > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 0;
  padding: 0;
  width: 100%;

  /* max-width: 1200px; */
  margin: 0 auto;
}
#projects-wrapper > div > section:first-child {
  width: calc(100%);
}
#projects-wrapper > div > section {
  width: calc(33.333% - 14px);
}
.wsummary {
  /* min-height: 85px; */
}
@media screen and (max-width: 992px) {
  #projects-wrapper > div {
    justify-content: center;
  }
  #projects-wrapper > div > section {
    padding: 0;
    width: calc(50% - 14px);
  }
}
@media screen and (max-width: 768px) {
  .whatwedo-head {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 641px) {
  #block-views-block-the-latest-from-p4a-block-1
    .slick-initialized
    .slick-slide {
    margin: 0;
  }
}
@media screen and (max-width: 640px) {
  #projects-wrapper {
    padding: 30px 15px;
  }
  #projects-wrapper > div {
    column-gap: 0;
  }
  #projects-wrapper > div > section {
    width: calc(100%);
  }
}
/*******************************
        LATEST FROM P4A
***********************************/
/* code from static page */
/* Level 4: Latest */
section {
  padding: 26px 0;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.section-title h2 {
  margin: 0;
  margin: 0;
  font-size: 22px;
  color: var(--theme);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.controls {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ctrl {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 2px solid var(--theme);
  background:
    radial-gradient(
      18px 18px at 30% 25%,
      rgba(255, 255, 255, 0.14) 0%,
      rgba(255, 255, 255, 0) 60%
    ),
    linear-gradient(180deg, var(--theme) 0%, var(--theme-2) 100%);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(2, 41, 105, 0.22);
}

.ctrl:hover {
  filter: brightness(1.06);
}

.latest-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.latest-track {
  display: flex;
  gap: 14px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.card {
  min-width: calc((100% - 28px) / 3);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(11, 18, 32, 0.06);
  flex: 0 0 auto;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(11, 18, 32, 0.1);
}

.thumb {
  height: 160px;
  background-size: cover;
  background-position: center;
}

.body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tag {
  font-size: 12px;
  font-weight: 900;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--ff-head);
}

.card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.22;
  min-height: 60px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.link {
  margin-top: 4px;
  color: var(--accent);
  font-weight: 900;
  display: inline-flex;
  width: fit-content;
}

.link:hover {
  text-decoration: underline;
}

/* end of code from static page */

#block-views-block-the-latest-from-p4a-block-1 {
  position: relative;
  padding: 30px 30px;
  /* max-width: 1200px; */
  margin: 0 auto;
}
.thumb-wrap {
  display: block;
  width: 100%;
  height: 160px;
  overflow: hidden;
}
.thumb-wrap > img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center center;
}
.body > div {
  display: block;
  width: 100%;
  overflow: hidden;
}
.card .link {
  display: block;
  width: 100%;
  overflow: hidden;
}
#block-views-block-the-latest-from-p4a-block-1 .slick-initialized .slick-slide {
  margin: 0 0 0 14px;
}
.ts-text {
  min-height: 42px;
}
/* navigation */
#block-views-block-the-latest-from-p4a-block-1 .slick-arrow {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 2px solid var(--theme);
  background:
    radial-gradient(
      18px 18px at 30% 25%,
      rgba(255, 255, 255, 0.14) 0%,
      rgba(255, 255, 255, 0) 60%
    ),
    linear-gradient(180deg, var(--theme) 0%, var(--theme-2) 100%);
  color: #fff;
  cursor: pointer;
  place-items: center;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(2, 41, 105, 0.22);
  margin: 0 8px;
}

#block-views-block-the-latest-from-p4a-block-1 .slick-arrow::before {
  color: #fff;
  font-size: 20px;
  line-height: 0;
}
#block-views-block-the-latest-from-p4a-block-1 .slick-arrow.slick-prev::before {
  content: "‹";
}
#block-views-block-the-latest-from-p4a-block-1 .slick-arrow.slick-next::before {
  content: "›";
}
#block-views-block-the-latest-from-p4a-block-1 .slick__arrow {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}
#block-views-block-the-latest-from-p4a-block-1 .view-header {
  min-height: 70px;
}
#block-views-block-the-latest-from-p4a-block-1 .card {
  max-width: 385px;
  margin: 0 auto;
}
#slick-views-the-latest-from-p4a-block-1-1-slider {
  padding: 0 64px;
}
#slick-views-the-latest-from-p4a-block-1-1-slider .slide__caption {
  padding: 0;
}
@media screen and (max-width: 768px) {
  .navbar-header {
    width: 100%;
  }
}

/*******************************
        MAIN BANNER
***********************************/
#block-views-block-main-banner-block-1 {
  height: 460px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
  padding: 0;
}
#block-views-block-main-banner-block-1 #mainbanner-wrap > img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

#block-views-block-main-banner-block-1 .hero-content {
  position: absolute;
  left: 30px;
  bottom: 22px;
  /* right: 24px; */
  max-width: 820px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 5;
  padding: 14px 16px;
  border-radius: 16px;
  background:
    radial-gradient(
      600px 220px at 15% 10%,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0) 60%
    ),
    rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
#block-views-block-main-banner-block-1 .hero-title {
  margin: 0;
  font-size: 40px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-family: var(--ff-head);
}
#block-views-block-main-banner-block-1 .hero-desc {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}
#block-views-block-main-banner-block-1 .hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}
#block-views-block-main-banner-block-1 .hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 14px;
  font-weight: 900;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0)),
    var(--accent);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.15s ease,
    filter 0.15s ease;
}
#block-views-block-main-banner-block-1 .hero-btn:hover {
  filter: brightness(0.97);
  transform: translateY(-1px);
}
/* navigation */
#views_slideshow_controls_text_pause_main_banner-block_1 {
  display: none;
}

#views_slideshow_controls_text_previous_main_banner-block_1,
#views_slideshow_controls_text_next_main_banner-block_1 {
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 32px;
  height: 32px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  background:
    radial-gradient(
      18px 18px at 30% 25%,
      rgba(255, 255, 255, 0.16) 0%,
      rgba(255, 255, 255, 0) 60%
    ),
    linear-gradient(180deg, var(--theme) 0%, var(--theme-2) 100%);
  color: #fff;
}

#views_slideshow_controls_text_previous_main_banner-block_1:hover,
#views_slideshow_controls_text_next_main_banner-block_1:hover,
#views_slideshow_controls_text_previous_main_banner-block_1:focus,
#views_slideshow_controls_text_next_main_banner-block_1:focus {
  text-decoration: none;
}
#views_slideshow_controls_text_previous_main_banner-block_1 a::-moz-selection,
#views_slideshow_controls_text_previous_main_banner-block_1 a::selection,
#views_slideshow_controls_text_next_main_banner-block_1 a::-moz-selection,
#views_slideshow_controls_text_next_main_banner-block_1 a::selection {
  color: transparent;
  background: transparent;
}

#views_slideshow_controls_text_previous_main_banner-block_1 a,
#views_slideshow_controls_text_next_main_banner-block_1 a {
  color: transparent;
  display: block;
}

#views_slideshow_controls_text_previous_main_banner-block_1 a::-moz-selection,
#views_slideshow_controls_text_next_main_banner-block_1 a::selection {
  background: transparent;
  color: transparent;
}

#views_slideshow_controls_text_next_main_banner-block_1 {
  content: "";
  right: 30px;
  /* background: url(../images/right_arrow.png) no-repeat center center/cover; */
}

#views_slideshow_controls_text_previous_main_banner-block_1 {
  left: 30px;
  /* background: url(../images/left_arrow.png) no-repeat center center/cover; */
}
#views_slideshow_controls_text_previous_main_banner-block_1 a::after,
#views_slideshow_controls_text_next_main_banner-block_1 a::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff !important;
}
#views_slideshow_controls_text_previous_main_banner-block_1 a::after {
  content: "‹";
}
#views_slideshow_controls_text_next_main_banner-block_1 a::after {
  content: "›";
}

@media screen and (max-width: 840px) {
  #block-views-block-main-banner-block-1 .hero-title {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  #views_slideshow_controls_text_previous_main_banner-block_1,
  #views_slideshow_controls_text_next_main_banner-block_1 {
    width: 32px;
    height: 32px;
  }
}
@media screen and (max-width: 680px) {
  #views_slideshow_controls_text_previous_main_banner-block_1,
  #views_slideshow_controls_text_next_main_banner-block_1 {
    top: 30%;
  }
  #block-views-block-main-banner-block-1 #mainbanner-wrap > img {
    min-height: 460px;
  }
  #block-views-block-main-banner-block-1 .hero-title {
    font-size: 28px;
  }
  #block-views-block-main-banner-block-1 .hero-content {
    width: 95%;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 480px) {
  #views_slideshow_controls_text_previous_main_banner-block_1,
  #views_slideshow_controls_text_next_main_banner-block_1 {
    top: 15%;
  }
}
/*******************************
        MAIN NAVIGATION
***********************************/

/* static code */
/* Work With Us */
.work {
  position: relative;
}

.work > button {
  position: relative;
  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(
      900px 120px at 20% 0%,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(255, 255, 255, 0) 55%
    ),
    radial-gradient(
      18px 18px at 30% 25%,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(255, 255, 255, 0) 60%
    ),
    linear-gradient(
      90deg,
      var(--theme) 0%,
      var(--theme-hi) 50%,
      var(--theme) 100%
    );
  color: #fff;

  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 900;
  cursor: pointer;

  display: flex;
  align-items: center;
  gap: 10px;

  box-shadow:
    0 14px 34px rgba(11, 18, 32, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);

  transform: translateZ(0);
  transition:
    transform 0.18s ease,
    filter 0.18s ease,
    box-shadow 0.18s ease;
}

/* shine sweep */
.work > button::before {
  content: "";
  position: absolute;
  inset: -40% -30%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 35%,
    rgba(255, 255, 255, 0.28) 50%,
    rgba(255, 255, 255, 0) 65%
  );
  transform: translateX(-60%) rotate(8deg);
  opacity: 0.75;
  pointer-events: none;
}

.work > button:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow:
    0 18px 44px rgba(11, 18, 32, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.work > button:hover::before {
  animation: workShine 0.9s ease forwards;
}

@keyframes workShine {
  from {
    transform: translateX(-60%) rotate(8deg);
  }
  to {
    transform: translateX(60%) rotate(8deg);
  }
}

/* keep highlighted when open */
.work.open > button {
  box-shadow:
    0 18px 44px rgba(11, 18, 32, 0.24),
    0 0 0 3px rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}
/* Dropdown (same functionality, nicer entrance) */
.work .dropdown {
  position: absolute;
  top: 54px;
  right: 0;
  width: min(640px, calc(100vw - 24px));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 16px;
  z-index: 60;
  transform: translateY(6px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
  z-index: 101;
  visibility: 0.18s ease;
  display: none;
  visibility: hidden;
  opacity: 0;
}
.work .dropdown.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
/* .work.open .dropdown {

} */

.dd-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 12px;
}
.dd-intro {
  border: 1px solid rgba(2, 41, 105, 0.18);
  background:
    radial-gradient(
      400px 180px at 20% 10%,
      rgba(200, 31, 77, 0.08) 0%,
      rgba(200, 31, 77, 0) 60%
    ),
    linear-gradient(180deg, rgba(2, 41, 105, 0.1), rgba(2, 41, 105, 0.02));
  border-radius: 18px;
  padding: 14px;
}
.dd-intro h4 {
  margin: 0 0 8px;
  font-size: 16px;
}
.dd-intro p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)),
    var(--theme);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 12px 26px rgba(11, 18, 32, 0.12);
}

.dd-col {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px;
}
.dd-col .title {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 900;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--ff-head);
}
.dd-col a {
  display: block;
  padding: 10px 10px;
  border-radius: 12px;
  font-weight: 700;
}
.dd-col a:hover {
  background: rgba(11, 18, 32, 0.05);
}

@media (prefers-reduced-motion: reduce) {
  .work > button,
  .work .dropdown {
    transition: none !important;
  }
  .work > button:hover::before {
    animation: none !important;
  }
}

.search-wrap {
  position: relative;
}
.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(11, 18, 32, 0.06);
  transition:
    transform 0.15s ease,
    background 0.15s ease;
}
.icon-btn:hover {
  background: rgba(11, 18, 32, 0.03);
  transform: translateY(-1px);
}
.search-panel {
  position: absolute;
  right: 0;
  top: 54px;
  width: min(460px, calc(100vw - 24px));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 14px;
  display: none;
  z-index: 60;
}
.search-wrap.open .search-panel {
  display: block;
}
.search-form {
  display: flex;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 12px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96),
    rgba(255, 255, 255, 0.88)
  );
}
.search-form input {
  border: 0;
  outline: 0;
  width: 100%;
  font: inherit;
  background: transparent;
}
.go {
  border: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)),
    var(--theme);
  color: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(11, 18, 32, 0.12);
}
.go:hover {
  filter: brightness(0.96);
}

/* end of static code */
#block-mainnavrightcontent {
  padding: 0;
  display: block;
  width: 210px;
  float: right;
}
#navbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.navbar.container {
  max-width: 100%;
}
.navbar-default .navbar-nav > li > a {
  padding: 10px 12px;
  border-radius: 12px;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: var(--menu-size);
  letter-spacing: var(--menu-track);
  text-transform: uppercase;
  color: var(--text);
  flex: 0 0 auto;
  transition:
    all 0.15s ease,
    transform 0.15s ease;
}
.navbar-header {
  width: 225px;
}
#navbar-collapse {
  width: calc(100% - 225px);
  padding: 0 30px 0 0;
}
#mainNavRight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.dropdown-menu > li > a {
  font-size: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  color: var(--text);
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  background:
    radial-gradient(
      900px 120px at 20% 0%,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(255, 255, 255, 0) 55%
    ),
    radial-gradient(
      18px 18px at 30% 25%,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(255, 255, 255, 0) 60%
    ),
    linear-gradient(
      90deg,
      var(--theme) 0%,
      var(--theme-hi) 50%,
      var(--theme) 100%
    );
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  background:
    radial-gradient(
      18px 18px at 30% 25%,
      rgba(255, 255, 255, 0.14) 0%,
      rgba(255, 255, 255, 0) 60%
    ),
    linear-gradient(180deg, var(--theme) 0%, var(--theme-2) 100%);
  color: #fff;
}
@media screen and (min-width: 1920px) {
  .navbar.container {
    margin: 0 auto !important;
    max-width: 1920px;
  }
}
@media screen and (min-width: 768px) {
  .region.region-navigation-collapsible {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  #block-bootstrap-subtheme-main-menu {
    width: calc(100% - 210px);
  }
  .navbar-nav {
    margin: 0 auto;
    float: none;
    width: fit-content;
  }
  .navbar-header {
    padding-left: 30px;
  }
}

@media screen and (min-width: 1365px) {
  .navbar-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .navbar-nav > li::after {
    content: "|";
    position: absolute;
    right: -12px;
    transform: translateY(-50%);
    top: 50%;
  }
  .navbar-nav > li:last-child::after {
    content: unset;
  }
}
@media screen and (min-width: 1536px) {
  .navbar-nav > li::after {
    right: -50%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 992px) {
  .dd-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 768px) {
  #navbar-collapse {
    width: calc(100%);
    padding: 0 30px;
  }
  .navbar-header {
    width: 100% !important;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: black;
    font-size: 12px;
  }
  .navbar-default .navbar-nav > li > a {
    border-radius: 0;
  }
  #block-mainnavrightcontent {
    float: none;
    margin: 0 0 1em;
  }
  .work .dropdown {
    left: 0;
  }
  .dd-grid {
    grid-template-columns: 1fr;
  }
  .navbar-default .navbar-toggle {
    background: var(--theme-2);
    border-color: #fff;
    position: absolute;
    right: 30px;
    top: 24px;
    margin: 0;
  }
  .navbar-default .navbar-toggle:hover,
  .navbar-default .navbar-toggle:focus {
    background: var(--theme-hi);
  }
  .navbar-default .navbar-toggle .icon-bar {
    background: #fff;
  }
}
/* *******************************
    SEARCH MODULE
******************************* */
#block-bootstrap-subtheme-search {
  position: absolute;
  right: 30px;
  bottom: 0;
  /* transform: translateY(100%); */
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  transform: translateY(0);
  transition: transform 0.4s ease;
}
#block-bootstrap-subtheme-search.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(100%);
}
#search-block-form {
  padding: 14px;
  background: #ffff;
  width: min(460px, calc(100vw - 24px));
  border: 1px solid var(--line);
  border-radius: 18px;
  z-index: 60;
  box-shadow: var(--shadow);
}
/* #search-block-form > div {
    margin: 0;
} */
#search-block-form > div:first-child {
  margin: 0;
  border: 1px solid var(--line);
  padding: 10px 12px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96),
    rgba(255, 255, 255, 0.88)
  );
  border-radius: 999px;
}
#search-block-form input[type="search"] {
  box-shadow: unset;
  -webkit-box-shadow: unset;
  border-radius: 0;
  border: 1px solid transparent;
  background: transparent;
  height: 100%;
}
#search-block-form input[type="search"]:hover,
#search-block-form input[type="search"]:focus {
  border: none;
  outline: none;
  box-shadow: unset;
  -webkit-box-shadow: unset;
}
#search-block-form button[type="submit"] {
}
#search-block-form button[type="submit"] span.icon {
  display: none;
}
#search-block-form button[type="submit"] span.sr-only {
  width: auto;
  height: auto;
  position: unset;
  display: block;
  clip: unset;
  border: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)),
    var(--theme);
  color: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(11, 18, 32, 0.12);
}
#search-block-form button[type="submit"] {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
}

#search-block-form button[type="submit"]:hover,
#search-block-form button[type="submit"]:focus {
  outline: none;
}

/* search icon feature */
/* Parent button ko relative kar dein */
#searchWrap .icon-btn {
  position: relative;
}

/* Dono SVG same position par */
#searchWrap svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

/* Close icon initially hidden */
#searchWrap .iconclose {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8) rotate(-90deg);
}

/* Active state */
#searchWrap.active .searchicon {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8) rotate(90deg);
}

#searchWrap.active .iconclose {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotate(0deg);
}
/*********************************
top header
**********************************/

.newsbar {
  color: #fff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.28);
  background:
    radial-gradient(
      1200px 140px at 20% 0%,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(255, 255, 255, 0) 60%
    ),
    radial-gradient(
      900px 160px at 85% 10%,
      rgba(255, 199, 44, 0.18) 0%,
      rgba(255, 199, 44, 0) 55%
    ),
    linear-gradient(
      90deg,
      rgba(11, 31, 58, 0.92) 0%,
      rgba(23, 57, 100, 0.92) 50%,
      rgba(11, 31, 58, 0.92) 100%
    );
}

.newsbar .container {
  max-width: none;
  padding-left: 18px;
  padding-right: 18px;
}

.newsbar .row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  width: 100%;
}

.news-label {
  width: fit-content;
  font-weight: 900;
  letter-spacing: 0.14em;
  font-size: 12px;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0)),
    var(--accent);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
  text-transform: uppercase;
}

.ticker {
  position: relative;
  flex: 1;
  overflow: hidden;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
  height: 36px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  min-width: 180px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(3px);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 22px;
  white-space: nowrap;
  will-change: transform;
  animation: scroll 22s linear infinite;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.news-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.sep {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.18);
}

.badge-new {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 4px 8px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0)),
    var(--accent);
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  text-transform: uppercase;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  white-space: nowrap;
}

.top-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(3px);
}

.top-pill a {
  color: #fff;
}

.icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  flex: 0 0 auto;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.28));
}

.socials {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 10px;
  border-left: 2px solid rgba(255, 255, 255, 0.34);
  margin-left: 2px;
}

.soc-btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.15s ease,
    background 0.15s ease;
  backdrop-filter: blur(3px);
}

.soc-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}
/* endo of static code */

/************************
    NOTIFICATIONS
 *************************/
#block-topbarrightsection {
  padding: 0;
  width: fit-content;
  max-width: 560px;
}
.region-secondary-bar {
  padding: 0 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.28);
  background:
    radial-gradient(
      1200px 140px at 20% 0%,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(255, 255, 255, 0) 60%
    ),
    radial-gradient(
      900px 160px at 85% 10%,
      rgba(255, 199, 44, 0.18) 0%,
      rgba(255, 199, 44, 0) 55%
    ),
    linear-gradient(
      90deg,
      rgba(11, 31, 58, 0.92) 0%,
      rgba(23, 57, 100, 0.92) 50%,
      rgba(11, 31, 58, 0.92) 100%
    );
}
#block-views-block-notifications-block-1 .view-notifications {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}
#block-views-block-notifications-block-1 .view-header {
  width: fit-content;
}
#block-views-block-notifications-block-1 {
  padding: 0 0;
  width: calc(100% - 600px);
}
#block-views-block-notifications-block-1 .view-content {
  border: 2px solid rgba(255, 255, 255, 0.42);
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 0 12px;
  min-width: 180px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(3px);

  margin: 0;
  /* box-shadow: 0px 11px 10px rgba(81, 81, 81, 0.08); */
  width: calc(100% - 70px);
  /* background: rgba(255, 255, 255, 0.55); */
  /* blur the area behind this element */
  /* backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); */
}

/* fallback for browsers without backdrop-filter */
@supports not (
  (-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))
) {
  #block-views-block-notifications-block-1 .view-content {
    /* increase opacity a bit since there will be no blur */
    background: rgba(255, 255, 255, 0.78);
    /* optional: slightly blur a pseudo-element instead */
  }
}
.notification-item-wrap {
  padding: 4px 0;
  display: flex;
  column-gap: 10px;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  font-weight: 600;
}
.notification-item-wrap a {
  display: block;
  color: var(--color-white);
  font: 18px var(--alata);
  transition: var(--transition-04);
}
.notification-item-wrap a:hover,
.notification-item-wrap a:focus {
  text-decoration: none;
  color: var(--color-blue);
  /* color: var(--color-white); */
}
.view-notifications .view-content {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.view-notifications .marquee-track {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 80s linear infinite;
}

.view-notifications .notification-item {
  display: inline-block;
  padding: 0 2rem;
  position: relative;
}
/* .view-notifications .notification-item::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--accent);
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
} */
/* Pause on hover */
.view-notifications .view-content:hover .marquee-track {
  animation-play-state: paused;
}

/* Keyframes */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive speed */
@media (max-width: 768px) {
  .view-notifications .marquee-track {
    animation-duration: 70s; /* slower on small screens */
  }
}

@media (min-width: 1200px) {
  .view-notifications .marquee-track {
    animation-duration: 80s; /* faster on wide screens */
  }
}
/* RESPONSIVENESS */
@media screen and (max-width: 768px) {
  .region-secondary-bar {
    justify-content: center;
    flex-direction: row-reverse;
    padding-bottom: 8px;
  }
  .region-secondary-bar #block-views-block-notifications-block-1,
  .region-secondary-bar #block-topbarrightsection {
    width: 100% !important;
    padding: 8px 0;
  }
}

@media screen and (max-width: 640px) {
  .top-right {
    flex-wrap: wrap;
    justify-content: center;
  }
  #block-topbarrightsection {
    display: none;
  }
}
/************************
    INTERNAL PAGES
 *************************/
/*
      internal pages
*/
.inner-page {
  padding: 0 64px;
}
/* messages view */
/*********************************************
 messages page
 **********************************************/
.pdma-message-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  column-gap: 30px;
}
.pdma-message-block .msg-prof-pic {
  width: calc(40% - 15px);
}
.pdma-message-block .msg-text-wrap {
  width: calc(60% - 15px);
}
.inner-page .view-messages.view-display-id-page_1 .view-content {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
}

.inner-page .msg-prof-pic {
  /* border-radius: 50%; */
  /* width: 200px;
  height: 200px; */
  /* margin: 0 auto 0.5em; */
  margin: 0 auto;
  overflow: hidden;
  /* border: 4px solid var(--accent); */
}

.inner-page .msg-prof-pic > img {
  width: 78%;
  height: auto;
  border-radius: 50%;
  margin: 0 auto;
}

.inner-page .pdma-msgs-container {
  /* background: #fafafa; */
  display: block;
  /* padding: 8px; */
  box-sizing: border-box;
  border-radius: 8px;
  /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
  border: none !important;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.inner-page .pdma-message-block .msg-prof-pic {
  /* float: left;
  margin: 0 12px 12px 0; */
}

.inner-page .messages-page-col {
  /* background: #f6f6f6; */
  padding: 12px;
  border-radius: 8px;
  margin: 0 0 2em 0;
  /* box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px; */
}

.inner-page .msg-name,
.inner-page .msg-designation {
  color: #031e17;
  font: 18px var(--satoshiM);
}
.inner-page .msg-name {
  color: var(--accent);
  font: 24px var(--satoshiBlack);
}
/* .inner-page .msg-name {} */

.inner-page .msg-designation {
  font-size: 18px;
  font-style: italic;
  margin: 0 0 24px;
}

.inner-page .msg-message {
  text-align: justify;
  color: #031e17;
  font: 17px / 27px var(--satoshiL);
}

.inner-page .msg-message span {
  color: var(--accent);
}

.inner-page .pdma-msgs-container:hover {
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  -webkit-box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  transform: translateY(-6px);
  border: none !important;
}

.inner-page .pdma-msgs-container:hover .msg-name,
.inner-page .pdma-msgs-container:hover .msg-designation,
.inner-page .pdma-msgs-container:hover .msg-message {
  color: #031e17 !important;
}
.inner-page {
  padding: 0 24px;
}
@media screen and (max-width: 768px) {
  .pdma-message-block {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .inner-page .pdma-message-block .msg-prof-pic {
    margin: 0 0 1em;
  }
  .pdma-message-block .msg-text-wrap {
    padding: 0;
    width: 100%;
  }
}
/* end of messages view */

.page-node-type-projects p {
  color: #333;
}
.page-node-type-projects p:hover {
  color: #333 !important;
}
.page-node-type-projects th,
.page-node-type-projects td {
  color: #333;
}
.page-node-type-projects th:hover,
.page-node-type-projects td:hover {
  color: #333;
}

.path-fund-management-rules .breadcrumb li:last-child,
.path-ppp-gazettes .breadcrumb li:last-child,
.path-ppp-rules .breadcrumb li:last-child,
.path-ppp-act .breadcrumb li:last-child,
.path-newsletters .breadcrumb li:last-child,
.path-ppp-call-circulars .breadcrumb li:last-child {
  display: none;
}
.view-empty::after {
  content: "Wil be Updated Soon";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 18px;
  color: #333;
  display: block;
  width: calc(100% - 18px);
  font: 18px var(--alata);
}
/* internalpage projects */
/* Homepage project slider  */
.hp-wrap {
}

.hp-wrap .slick--skin--boxed > .slick__slider > .slick-list {
  margin: 0;
}

.hp-wrap .slick-arrow::before {
  color: transparent;
  font-size: 100%;
}

.hp-wrap .slick-prev::before {
  content: url("../images/hp-arrow-left.png");
}

.hp-wrap .slick-next::before {
  content: url("../images/hp-arrow-right.png");
}

.hp-item {
  /* padding: 0 20px; */
  text-align: center;
  overflow: hidden;
}

.hp-item .hp-img {
  border-radius: 30px;
  width: 80%;
  max-width: 100%;
  height: 450px;
  overflow: hidden;
  margin: 0 auto;
}

.hp-item .hp-img img {
  width: 100%;
  height: 100%;
}

.hp-item .hp-title {
  font: 18px poppins-regular;
  color: #ffffff;
  width: 70%;
  margin: 1em auto 0;
}

/* Executed Projects Section */
.ep-section {
  padding: 1em 2em;
}

.ep-head {
}

.ep-wrap {
}

.ep-item {
  position: relative;
  padding: 0;
  overflow: hidden;
  height: 270px;
  cursor: pointer;
  margin: 10px 5px;
  box-shadow: 3px 3px 4px 0px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 3px 3px 4px 0px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 3px 3px 4px 0px rgba(0, 0, 0, 0.4);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.ep-item.bg-1 {
  background-image: url("../images/ep-img1.png");
}

.ep-item.bg-2 {
  background-image: url("../images/ep-img2.png");
}

.ep-item.bg-3 {
  background-image: url("../images/ep-img3.png");
}

.ep-item.bg-4 {
  background-image: url("../images/ep-img4.png");
}

.ep-item.bg-5 {
  background-image: url("../images/ep-img5.png");
}

.ep-item.bg-6 {
  background-image: url("../images/ep-img6.png");
}

.ep-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  /* z-index: -1; */
}

.ep-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  /* z-index: -1; */
  overflow: hidden;
}

.ep-item .overlay-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ep-item .overlay-img::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.ep-item .overlay-img img {
  width: 100%;
  height: 100%;
}

.ep-item .ep-content {
  position: absolute;
  bottom: 5%;
  padding: 1em;
  width: 100%;
}

.ep-item .ep-content .ep-title {
  color: #fff;
  font: 22px poppins-bold;
  line-height: 1.2;
  width: 80%;
}

.ep-item .ep-content .ep-readmore {
  color: #153258;
  font: 15px poppins-medium;
  text-align: right;
  text-decoration: underline;
}

.ep-item .ep-content-hvr {
  background-color: rgba(255, 255, 255, 1);
  text-align: center;
  position: relative;
  top: 100%;
  height: 100%;
  padding: 3em 1em;
  transition: all 0.6s ease-out;
}

.ep-item:hover > .ep-content-hvr {
  top: 50%;
}

.ep-item .ep-content-hvr .ep-title {
  font: 22px poppins-bold;
  line-height: 1.2;
  color: #000;
}

.ep-item .ep-content-hvr .ep-readmore {
  color: #5968ef;
  font: 14px poppins-regular;
}

/* Pipeline Projects */
.pp-section {
}

.pp-head {
}

.pp-wrap {
  display: flex;
  flex-wrap: wrap;
  background-color: #627676;
  padding: 3em 2em;
}

.pp-img {
  width: 80%;
  margin: 0 auto;
  overflow: hidden;
}

.pp-img img {
  width: 100%;
  height: auto;
}

.pp-content {
  width: 90%;
}

.pp-content .pp-title {
  /* font: 40px inter-bold; */
  font: 28px inter-bold;
  color: #fff;
  margin-top: 0;
}

.pp-content .pp-body {
  color: #fff;
  font: 16px poppins-regular;
  line-height: 2;
  text-align: justify;
}

.pp-content .pp-foot {
  margin-top: 1em;
}

/* Untapped Sectors */
.us-wrap {
}

.us-head {
}

.us-head .section-heading {
}

.us-wrap .view-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.us-wrap .view-content::after {
  content: "";
  clear: both;
  display: block;
}

.us-item {
  display: block;
  position: relative;
  width: 295px;
  height: 205px;
  text-decoration: none;
  margin: 5px;
}

.us-item .us-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.us-item .us-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 0.6s ease;
}

.us-item .us-img img {
  height: 100%;
  width: 100%;
  transition: all 0.6s ease;
}

.us-item:hover .us-img img {
  transform: scale(1.2);
}

.us-item .us-title {
  color: #fff;
  font: 22px poppins-semibold;
  position: absolute;
  bottom: 10px;
  left: 10px;
}

/* News & Updates */
.nu-section {
  padding: 3em 1em;
}

.nu-section .slick--skin--boxed > .slick__slider > .slick-list {
  margin: 0;
}

.nu-item {
  display: flex;
  background: #ffffff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin: 0 10px 10px 10px;
  position: relative;
  height: 256px;
}

.nu-item .nu-content {
  width: 50%;
  padding: 1em;
  position: relative;
}

.nu-item .nu-content .nu-date {
  /* font: 20px inter-medium; */
  font: 18px inter-medium;
}

.nu-item .nu-content .nu-title {
  /* font: 25px inter-semibold; */
  font: 22px inter-semibold;
  color: #000;
}

.nu-item .nu-content .nu-foot {
  position: absolute;
  width: 100%;
  /* left: 0; */
  bottom: 10px;
}

.nu-item .nu-content .nu-foot .nu-lnk {
  display: block;
  width: 150px;
  /* height: 67px; */
  background-color: #007b2a;
  border-radius: 20px;
  font: 16px inter-regular;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: underline;
  color: #ffffff;
  padding: 0.75em 1.5em;
}

.nu-item .nu-img {
  width: 50%;
  overflow: hidden;
}

.nu-item .nu-img img {
  width: 100%;
  height: 100%;
}

/* Gallery & Event Section */
.ge-section {
  padding: 1em 2em;
}

.ge-head {
}

.ge-wrap {
}

.ge-item {
  position: relative;
  padding: 0;
  overflow: hidden;
  height: 270px;
  cursor: pointer;
  margin: 10px 5px;
  box-shadow: 3px 3px 4px 0px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 3px 3px 4px 0px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 3px 3px 4px 0px rgba(0, 0, 0, 0.4);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.ge-item.bg-1 {
  background-image: url("../images/ep-img4.png");
}

.ge-item.bg-2 {
  background-image: url("../images/documentary-image.jpg");
}

.ge-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  /* z-index: -1; */
}

.ge-item .ge-content {
  position: absolute;
  bottom: 5%;
  padding: 1em;
  width: 100%;
}

.ge-item .ge-content .ge-title {
  color: #fff;
  font: 22px poppins-bold;
  line-height: 1.2;
  width: 80%;
}

.ge-item .ge-content .ge-readmore {
  color: #153258;
  font: 15px poppins-medium;
  text-align: right;
  text-decoration: underline;
}

.ge-item .ge-content-hvr {
  background-color: rgba(255, 255, 255, 1);
  text-align: center;
  position: relative;
  top: 100%;
  height: 100%;
  padding: 3em 1em;
  transition: all 0.6s ease-out;
}

.ge-item:hover > .ge-content-hvr {
  top: 50%;
}

.ge-item .ge-content-hvr .ge-title {
  font: 22px poppins-bold;
  line-height: 1.2;
  color: #000;
}

.ge-item .ge-content-hvr .ge-readmore {
  color: #5968ef;
  font: 14px poppins-regular;
}

/* Contact Section */
.contact-section {
  padding: 1em 1em 3em;
}

.contact-head {
}

.contact-wrap {
}

.contact-wrap::after {
  content: "";
  clear: both;
  display: block;
}

.map-section {
}

.map-section .map-title {
  font-family: inter-regular;
  font-size: 30px;
  color: #000000;
}

.map-section .map-text {
  font-family: poppins-regular;
  font-size: 15px;
  text-align: justify;
  color: #000000;
  margin-bottom: 2em;
}

.map-section .map-wrap {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.map-section .map-wrap iframe {
  width: 100%;
  height: 193px;
}

.form-wrap {
}

.form-wrap .form-control {
  box-sizing: border-box;
  height: 60px;
  border: 1px solid #333333;
  border-radius: 6px;
}

.form-wrap .form-control::placeholder {
  font-family: poppins-regular;
  font-size: 16px;
  color: rgba(19, 39, 67, 0.5);
}

.form-wrap textarea.form-control {
  height: auto;
}

.form-wrap .btn-contact {
  box-sizing: border-box;
  width: 160px;
  height: 50px;
  background: #c81f4d;
  border: 1.5px solid #035356;
  box-shadow: 0px 4px 20px #399b43;
  border-radius: 6px;
}
/* WA Chat button */
/* Icon */
.whatsapp-chat svg {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.25));
}

/* Hover lift */
.whatsapp-chat:hover {
  transform: translateY(-3px);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.32),
    0 0 0 10px rgba(37, 211, 102, 0.18);
}

/* Tooltip */
.whatsapp-chat::before {
  content: "Chat with us";
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: rgba(11, 18, 32, 0.92);
  color: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

/* Tooltip arrow */
.whatsapp-chat::after {
  content: "";
  position: absolute;
  right: 62px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: rgba(11, 18, 32, 0.92);
  opacity: 0;
  transition: opacity 0.18s ease;
}

/* Show tooltip on hover */
.whatsapp-chat:hover::before,
.whatsapp-chat:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Subtle pulse animation (idle attention) */
@keyframes waPulse {
  0% {
    box-shadow:
      0 16px 40px rgba(0, 0, 0, 0.28),
      0 0 0 0 rgba(37, 211, 102, 0.35);
  }
  70% {
    box-shadow:
      0 16px 40px rgba(0, 0, 0, 0.28),
      0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow:
      0 16px 40px rgba(0, 0, 0, 0.28),
      0 0 0 0 rgba(37, 211, 102, 0);
  }
}
.whatsapp-chat {
  animation: waPulse 2.8s ease-out infinite;
}

/* Disable tooltip & pulse on touch devices */
@media (hover: none) {
  .whatsapp-chat::before,
  .whatsapp-chat::after {
    display: none;
  }
  .whatsapp-chat {
    animation: none;
  }
}
