@font-face {
  font-family: "SatoshiB";
  src: url("Satoshi-Bold.otf");
}

@font-face {
  font-family: "SatoshiR";
  src: url("Satoshi-Regular.otf");
}

body.path-node.page-node-type-redesign.has-glyphicons {
    max-width: 100%;
}


html, body {
    font: 18px / 30px var(--interL);
    color: #333;
}

/* ----------------------------------------- */
/* BANNER 5 - STATS */
/* ----------------------------------------- */

/* .path-frontpage #site-b04 {
    background: url("../images/stats-bg-solid.png") no-repeat center center/cover;
    padding: 71.5px 120px;
} */

#views_slideshow_cycle_teaser_section_enforcement_stats-block_1,
#views_slideshow_cycle_div_enforcement_stats-block_1_0,
#views_slideshow_cycle_div_enforcement_stats-block_1_1,
#views_slideshow_cycle_div_enforcement_stats-block_1_2,
#views_slideshow_cycle_div_enforcement_stats-block_1_3 {
    width: 100% !important;
}

section#block-statscounterredesign {
    margin-top: 11em;
}

.stats-wrap {
    display: flex;
}

.stat-box {
    height: 242px;
    width: 338px;
    max-width: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 40px 32px;
    border-radius: 20px;
    transition: var(--transition-05);
    margin: 0 auto;
}

.slider-stats .stat-box {
    width: 100% !important;
    /* Let slick control width */
    padding: 10px;
}


.stat-box:hover {
    background-color: #EEF3FB;
}

.stat-label-wrap {
    display: flex;
    align-items: center;
        justify-content: center;
    margin-bottom: 0;
    column-gap: 8px;
}

.stat-lable {
    font: 17px var(--albertSB);
    color: #6F6C8F;
}

.stat-count {
    font: 48px var(--albertSB);
    color: var(--color-primary);
    margin-bottom: 12px;
}

.stat-disc {
    font: 20px var(--albertR);
    color: #353535;
}


/* ========================================End Stats Section ========================================= */

/* =============================New Static Stats Section======================== */

/* =====================================================
   STATS COUNTER REDESIGN (CUSTOM BLOCK)
   Matches OLD View Design – CSS ONLY
   ===================================================== */

.page-node-type-redesign #block-statscounterredesign {
  margin-top: 5em;
}

/* WRAPPER */
.page-node-type-redesign #block-statscounterredesign .counter-wrap {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARD */
.page-node-type-redesign #block-statscounterredesign .counter-item {
  height: 242px;
  width: 338px;
  max-width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition-04);
}

/* HOVER */
.page-node-type-redesign #block-statscounterredesign .counter-item:hover {
  background-color: #EEF3FB;
}

/* NUMBER */
.page-node-type-redesign #block-statscounterredesign .counter {
  font-family: 'OutfitSB', sans-serif;
  font-size: 48px;
  color: var(--color-primary);
  margin-bottom: 12px;
  line-height: 1;
}

/* TITLE */
.page-node-type-redesign #block-statscounterredesign .counter-title {
  font-family: 'OutfitR', sans-serif;
  font-size: 20px;
  color: #353535;
  line-height: 1.4;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1200px) {
  .page-node-type-redesign #block-statscounterredesign .counter-wrap {
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .page-node-type-redesign #block-statscounterredesign .counter-item {
    width: 48%;
  }
}

@media (max-width: 576px) {
  .page-node-type-redesign #block-statscounterredesign .counter-item {
    width: 100%;
    height: auto;
  }

  .page-node-type-redesign #block-statscounterredesign .counter {
    font-size: 40px;
  }

  .page-node-type-redesign #block-statscounterredesign .counter-title {
    font-size: 18px;
  }
}


/* ==========================End Stat Section====================== */

/* ===========================================Start Reistration Gateway ================================= */

/* -------------------------------------------------------- */
/* SECTION WRAPPER */
/* -------------------------------------------------------- */

.registration-gateway-section {
    width: 90%;
    margin: 70px auto;
}

.registration-gateway-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}


/* -------------------------------------------------------- */
/* LEFT SIDE */
/* -------------------------------------------------------- */

.registration-gateway-left {
    width: 45%;
}

/* Body text */
.registration-gateway-body {
    font: 18px/30px var(--interL);
    color: var(--color-black);
    margin: 15px 0 30px;
}

/* View All Button */
.registration-gateway-btn {
    margin-top: 10px;
    cursor: pointer;
    background: var(--color-primary) !important;
}
.registration-gateway-btn:hover {
    background: var(--color-secondary) !important;
}


/* -------------------------------------------------------- */
/* RIGHT SIDE */
/* -------------------------------------------------------- */

.registration-gateway-right {
    width: 50%;
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* BOX BASE STYLE */
.registration-gateway-box {
    width: 48%;
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    position: relative;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
    min-height: 330px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: rgba(44, 85, 147, 0.08) 0px 8px 20px;
}

.counter-card:last-child {
    z-index: 9;
}





/* Hover Background Image */
.registration-gateway-box:hover {
    background: url("/system/files/Background%2BShadow.png") center/cover no-repeat;
    transform: translateY(-5px);
}

/* Icon */
.registration-gateway-icon img {
    width: 71px;
    height: 71px;
    transition: all 0.4s ease;
}

/* HIDE ICON ON HOVER */
.registration-gateway-box:hover .registration-gateway-icon img {
    opacity: 0;
    transform: translateY(-10px);
}

/* Title */
.registration-gateway-box-title {
    font: 24px var(--interSB);
    color: var(--color-primary);
    margin: 0;
    transition: var(--transition-04);
}

/* Text */
.registration-gateway-box-text {
    font: 18px/28px var(--interL);
    color: #343434;
    transition: var(--transition-04);
}

/* Click Here */
.registration-gateway-click {
    margin-top: auto;
    font: 16px var(--interM);
    color: white;
    display: flex;
    gap: 6px;
    align-items: center;
    transition: var(--transition-04);
    opacity: 0; 
}

.registration-gateway-click img {
    width: 18px;
    height: 18px;
}

/* HIDE "Click Here" on hover */
.registration-gateway-box:hover .registration-gateway-click {
    opacity: 1;
    /* transform: translateY(10px); */
}

/* Change text colors on hover */
.registration-gateway-box:hover .registration-gateway-box-title,
.registration-gateway-box:hover .registration-gateway-box-text {
    color: #fff !important;
}


/* -------------------------------------------------------- */
/* MOBILE RESPONSIVE */
/* -------------------------------------------------------- */

@media (max-width: 991px) {
    .registration-gateway-left,
    .registration-gateway-right {
        width: 100%;
    }

    #block-videotitle .ppra-section-title{
margin: 0 auto;
    margin-top: 1em;
    margin-bottom: 1em;
}

#block-statscounterredesign .current-stats-title span{
  margin-top: 0.5em;
}

p.current-stats-body,
.registration-gateway-body {
    font: 15px / 25px var(--inter);
}

    .registration-gateway-box {
        width: 100%;
        min-height: 280px;
    }
}

@media (max-width: 600px) {
    .registration-gateway-section {
        margin: 40px auto;
    }

    .registration-gateway-box-title {
        font-size: 20px;
    }

    .registration-gateway-box-text {
        font-size: 15px;
        line-height: 24px;
    }

    .registration-gateway-click {
        font-size: 14px;
    }

    section#block-registrationgateway{
      margin-top: 0;
    }

}


.page-node-type-redesign .right-green {
    POSITION: ABSOLUTE;
    TOP: 35%;
    RIGHT: 0;
    display: unset;
    z-index: -1;
}

.page-node-type-redesign .right-green {
    TOP: 76%;
        z-index: 1;
}


.page-node-type-redesign .left-blue {
    position: absolute;
        top: 125%;
    left: 1px;
    z-index: -1;
    display: unset;
}

.page-node-type-redesign .left-blue img {
    width: 90%;
    opacity: 0.7;
}

.page-node-type-redesign .left-green{
      position: absolute;
    top: 26%;
    left: 1px;
    z-index: -1;
    display: unset;
}

.left-green img {
}

.path-frontpage .left-blue,
.path-frontpage .right-green{
  display: none;
}



/* ===============================End Registration Gateway Section========================== */

/* =================================Start Current Stats Section ====================================== */

/* ========================================================= */
/* CURRENT STATS SECTION */
/* ========================================================= */

#block-views-block-current-statistics-block-2 {  
    background: url("/system/files/stats-bg.svg") center/cover no-repeat;
    
}

.view-current-statistics.view-id-current_statistics.view-display-id-block_2{
    width: 90%;
    margin: 80px auto;
    margin-top: 0;
    padding: 60px 30px;
    border-radius: 20px;
        padding-bottom: 0;
    margin-bottom: 0;
}

/* Header */
.current-stats-container {
    text-align: center;
    max-width: 100%;
}

.current-stats-title span {
    color: #404040;
        font-family: InterM;
    FONT-SIZE: 36PX;
}

.current-stats-body {
    font: 18px/30px var(--interL);
    color: var(--color-black);
    width: 60%;
    margin: 15px auto 50px;
}

/* ========================================================= */
/* STATS GRID */
/* ========================================================= */

.stats-wrap {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
        margin-top: 3em;
}

/* BOX */
.stat-box {
    width: 233px;
    height: 221px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: rgba(44, 85, 147, 0.15) 0px 10px 30px;
    text-align: center;
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition-04);
    animation: currentStatsFadeUp 0.8s ease forwards;
    opacity: 0;
}

/* stagger animation */
.stat-box:nth-child(1) { animation-delay: 0.1s; }
.stat-box:nth-child(2) { animation-delay: 0.25s; }
.stat-box:nth-child(3) { animation-delay: 0.4s; }
.stat-box:nth-child(4) { animation-delay: 0.55s; }

/* Hover */
.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: rgba(44, 85, 147, 0.25) 0px 18px 40px;
}

/* Icon */
.stat-icon img {
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
}

/* Number */
.stat-count {
    font: 30px "SatoshiB";
    color: #1B3C74;
    margin-bottom: 6px;
}

/* Text */
.stat-disc {
    font: 18px "SatoshiR";
    color: #1B3C74;
}

#block-views-block-current-statistics-block-2 .ppra-section-subtitle{
margin: 0 auto;
}

/* ========================================================= */
/* MOBILE */
/* ========================================================= */

@media (max-width: 991px) {
    .current-stats-body {
        width: 90%;
    }
}

@media (max-width: 600px) {
    .stats-wrap {
        flex-direction: column;
        align-items: center;
    }

    .stat-box {
        width: 100%;
        max-width: 320px;
    }
    
}

/* ========================================================= */
/* ANIMATION */
/* ========================================================= */

@keyframes currentStatsFadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ====================================End============================== */

/* =============================Start Video Section====================== */

#block-videotitle .ppra-section-subtitle{
        margin: 0 auto;
}

#block-videotitle .ppra-section-title{
    text-align: center;
}

/* ================================
   QUICKTABS – SUPPLIERS / AGENCIES
   ================================ */

#block-quicktabsvideosfront {
  display: flex;
  justify-content: center;
  margin-bottom: 3em;
}

/* UL wrapper */
#block-quicktabsvideosfront .quicktabs-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 60%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  MARGIN-BOTTOM: 3EM;
}

/* Each TAB (LI) */
#block-quicktabsvideosfront .quicktabs-tabs li {
  width: 247px;
  height: 61px;
  border-radius: 12px;
  transition: var(--transition-04);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Anchor base */
#block-quicktabsvideosfront .quicktabs-tabs li a {
  width: 250px;
  height: 100%;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Alberta Sans", var(--interSB);
  font-size: 18px;
  text-decoration: none;
  transition: var(--transition-04);
}

/* ================================
   NORMAL (INACTIVE) STATE
   ================================ */

#block-quicktabsvideosfront
.quicktabs-tabs li[aria-selected="false"] a {
  background: var(--color-white);
  color: #1B3249;
  border: 1px solid rgba(44, 85, 147, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Hover on inactive */
#block-quicktabsvideosfront
.quicktabs-tabs li[aria-selected="false"]:hover a {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 8px 20px rgba(44, 85, 147, 0.25);
  border-color: transparent;
}

/* ================================
   ACTIVE STATE
   ================================ */

#block-quicktabsvideosfront
.quicktabs-tabs li[aria-selected="true"] a {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 8px 22px rgba(44, 85, 147, 0.35);
  border: 1px solid transparent;
}

/* ================================
   RESPONSIVE
   ================================ */

/* Tablets */
@media (max-width: 1024px) {
  #block-quicktabsvideosfront .quicktabs-tabs {
    width: 60%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  #block-quicktabsvideosfront .quicktabs-tabs {
    width: 100%;
    flex-direction: column;
    gap: 16px;
  }

  #block-quicktabsvideosfront .quicktabs-tabs li {
    width: 100%;
    max-width: 280px;
  }

  #block-quicktabsvideosfront{
        width: 85%;
    margin: 0 auto;
            padding-bottom: 4em;
  }

}

/* Very large screens */
@media (min-width: 1600px) {
  #block-quicktabsvideosfront .quicktabs-tabs {
    width: 35%;
  }
}

section#block-registrationgateway{
    margin-top: 2em;
}

/* =====================================================
   DRUPAL 9 VIEWS – FOOTER SAFE FIX
   DOES NOT BREAK STRUCTURE
   ===================================================== */

/* Force footer to stay BELOW view-content */
.view-e-procurement-training-helping-material .view-footer,
.view-e-procurement-training-helping-material .view-footer {
  clear: both;
  width: 100%;
  margin-top: 40px;
      justify-content: center;
    display: flex;
    padding-top: 1.5em;
}

/* Center the "View All" button ONLY */
.view-e-procurement-training-helping-material .view-footer .view-all-wrapper,
.view-e-procurement-training-helping-material .view-footer .view-all-wrapper {
  text-align: center;
      justify-content: center;
    display: flex;
}



/* =============================End Video Section===================== */

/* ============================New Video Section========================== */

/* =========================================================
   QUICK TABS VIDEOS – DESIGN OVERRIDE
   Scoped for Drupal 9 View
   ========================================================= */

#block-quicktabsvideosfront .view-content {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
  margin-bottom: 6em;
}

  #block-quicktabsvideosfront .view-content {
    max-width: 1400px;
    margin: 0 auto;
  }

/* ---------------------------------------------------------
   Views Row Base
--------------------------------------------------------- */
#block-quicktabsvideosfront .views-row {
  display: flex;
  flex-direction: column;
  background: transparent;
  border-radius: 25px;
  /* box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08); */
  overflow: hidden;
      padding: 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover interaction */
#block-quicktabsvideosfront .views-row:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(44, 85, 147, 0.18);
}



/* ---------------------------------------------------------
   LEFT – FIRST VIDEO (BIG CARD)
--------------------------------------------------------- */
#block-quicktabsvideosfront .views-row:first-child {
  flex: 0 0 calc(50% - 16px);
  max-width: calc(50% - 16px);
  /* min-height: 477px; */
}

/* Video container */
#block-quicktabsvideosfront
  .views-row:first-child
  .views-field-field-video {
  flex: 1;
}

/* ---------------------------------------------------------
   RIGHT – SECOND VIDEO
--------------------------------------------------------- */
#block-quicktabsvideosfront .views-row:nth-child(2) {
  flex: 0 0 calc(50% - 16px);
  max-width: calc(50% - 16px);
  min-height: 231px;
}

/* ---------------------------------------------------------
   VIDEO WRAPPER
--------------------------------------------------------- */
#block-quicktabsvideosfront .eproc-vid {
  position: relative;
  width: 100%;
  height: 100%;
}

#block-quicktabsvideosfront .eproc-vid iframe {
  width: 602px;
    height: 22em;
  min-height: 100%;
  border: none;
  border-radius: 25px 25px 0 0;
}

/* ---------------------------------------------------------
   TITLE AREA
--------------------------------------------------------- */
#block-quicktabsvideosfront .eproc-vid-title-wrap {
  padding: 16px 20px 20px;
      padding-bottom: 0.5em;
      padding-left: 0;
  background: transparent;
  
}



#block-quicktabsvideosfront .eproc-vid-title {
  font-family: var(--interM);
  font-size: 22px;
  line-height: 30px;
  color: var(--color-primary);
      text-align: left;
    margin-left: 0.5em;
}



/* ---------------------------------------------------------
   CLICKABLE CARD BEHAVIOR
--------------------------------------------------------- */
#block-quicktabsvideosfront .views-row {
  cursor: pointer;
}

/* ---------------------------------------------------------
   RESPONSIVE – TABLET
--------------------------------------------------------- */
@media (max-width: 1024px) {
  #block-quicktabsvideosfront .view-content {
    gap: 24px;
  }

  #block-quicktabsvideosfront .views-row:first-child,
  #block-quicktabsvideosfront .views-row:nth-child(2) {
    flex: 0 0 100%;
    max-width: 100%;
    min-height: auto;
  }

  #block-quicktabsvideosfront .eproc-vid iframe {
    min-height: 320px;
  }
}

/* ---------------------------------------------------------
   RESPONSIVE – MOBILE
--------------------------------------------------------- */
@media (max-width: 576px) {
  #block-quicktabsvideosfront .view-content {
    flex-direction: column;
    gap: 20px;
  }

  #block-quicktabsvideosfront .eproc-vid iframe{
    width: 100%;
    height: auto;
}

  #block-quicktabsvideosfront .views-row {
    border-radius: 20px;
  }

  #block-quicktabsvideosfront .eproc-vid iframe {
    min-height: 220px;
    border-radius: 20px 20px 0 0;
  }

  #block-quicktabsvideosfront .eproc-vid-title {
    font-size: 18px;
    line-height: 26px;
  }
}

/* ---------------------------------------------------------
   LARGE SCREENS (4K SAFETY)
--------------------------------------------------------- */
@media (min-width: 1600px) {
  #block-quicktabsvideosfront .view-content {
    max-width: 1400px;
    margin: 0 auto;
  }
}


#quicktabs-tab-videos_front-1 .eproc-vid-title-wrap{
        margin-bottom: 0 !important;
}

.page-node-type-redesign .eproc-vid-title-wrap{
    margin-bottom: 0;
}


/* ==============================End Video Front========================= */
/* ===========================Start Video Internal======================= */




/* eProc Videos */

#block-views-block-e-procurement-training-helping-material-block-1 {
  padding: 0 3em 3em;
}

#block-views-block-e-procurement-training-helping-material-block-1 .block-title {
  font: 30px poppins-bold;
  color: #2C5593;
  text-align: center;
  margin: 0.25em 0;
}

#block-views-block-e-procurement-training-helping-material-block-1 .view-header,
#block-views-block-e-procurement-training-helping-material-block-1 .view-content,
#block-views-block-e-procurement-training-helping-material-block-1 .view-footer {
  width: 100%;
  display: block;
  float: left;
}

.view.view-e-procurement-training-helping-material .view-content {
  width: 100%;
  display: block;
  float: left;
}

.eproc-view-title {
  width: 100%;
  display: block;
  text-align: center;
}

.eproc-view-title h3 {
  font: 27px poppins-bold;
  color: #84BB4D;
  margin: 0.25em 0;
}

.icon-wrapper-blue{
  position: relative;
}

.eproc-videos-wrap {
  width: 100%;
  display: block;
  margin: 0 0.5em;
}

.eproc-videos {
  width: 100%;
  display: block;
}

.eproc-vid-wrap {
  width: 100%;
  display: block;
  margin: 0 0.5em;
}

.eproc-vid {
  width: 100%;
  display: block;
}

.eproc-vid iframe {
  display: block;
  width: 365px;
  max-width: 100%;
  height: 176px;
  margin: 0 auto 0.25em;
}

.eproc-vid-title-wrap {
  width: 100%;
  display: block;
  margin: 0 0 1.5em;
}

.eproc-vid-title {
  font: 14px poppins-medium;
  text-align: center;
  min-height: 41.6px;
}

.eproc-vid-title a {
  text-decoration: none;
  font: 14px poppins-medium;
  text-align: center;
  height: 45px;
}

.eproc-view-btn {
  width: 100%;
  display: block;
  margin: 0 0 1em 0;
  text-align: center;
}

.btn-usermanual {
  background-color: #2C5593;
  border: 1px solid #2C5593 !important;
  border-radius: 0;
  padding: 10px 20px;
  font: 16px poppins-medium;
  color: #fff !important;
}

.btn-usermanual:hover,
.btn-usermanual:focus {
  background-color: transparent;
  color: #2C5593 !important;
}

.eproc-block-btns-wrap {
  width: 100%;
  display: block;
  float: left;
}

.eproc-block-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}

.eproc-block-btns .btn {
  margin: 0.5em;
}

/* */

/* ==============================End New Video Section===================== */

/* ===========================Slideshow Video=========================== */

.view.view-e-procurement-training-helping-material.view-display-id-block_5 .view-content{
      width: 100%;
    margin: 0 auto;
    /* display: block; */
    display: flex;
    justify-content: center;
    gap: 70px;
    margin-top: 8em;
}

/* =========================================
   COUNTER SECTION – REDESIGN
   ========================================= */

.counter-section-redesign {
  background: url("/system/files/stats-bg-soft.png") no-repeat center center / cover;
  padding: 80px 0;
}

.counter-wrap-redesign {
  width: 90%;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARD */
.counter-card {
  width: 260px;
  height: 240px;
  background: #ffffff;
  border-radius: 20px;
  text-align: center;
  padding: 32px 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.counter-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* ICON */
.counter-icon {
  margin-bottom: 18px;
}

.counter-icon img {
  width: 44px;
  height: auto;
}

/* NUMBER */
.counter-number {
  font: 30px "SatoshiB";
  color: #1B3C74;
  margin-bottom: 6px;
}

/* LABEL */
.counter-label {
      font: 18px "SatoshiR";
    color: #1B3C74;
}

section#block-statscounterredesign {
     background: url(/system/files/stat-bg_0.png) center / cover no-repeat;
}

#block-views-block-current-statistics-block-2 .ppra-section-subtitle {
    margin: 0 auto;
}

#block-statscounterredesign .ppra-section-subtitle {
    margin: 0 auto;
}

/* =========================================
   RESPONSIVE
   ========================================= */



@media (max-width: 576px) {
  .counter-wrap-redesign {
    gap: 16px;
  }

  .counter-card {
    width: 100%;
    height: auto;
  }

  .counter-number {
    font-size: 26px;
  }
}


/* =============================End Slideshow Video======================== */

/* ================================Start Popup Code============================== */

.quaid-day-popup-wrapper {
  /* position: fixed; */
 
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: quaid-day-popup-fadein 0.5s ease;
}

.quaid-day-popup-box {
  position: relative;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  max-width: 520px;
  width: 90%;
  animation: quaid-day-popup-scale 0.4s ease;
}

.quaid-day-popup-image {
  width: 100%;
  height: auto;
  border-radius: 14px;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* .quaid-day-popup-image:hover {
  transform: scale(1.05);
  opacity: 0.9;
} */

.spb-popup-main-wrapper{
      border: 2px solid TRANSPARENT;
    z-index: 999999;
    background-color: TRANSPARENT;
}

.spb_close{
  /* color: TRANSPARENT;
    background: TRANSPARENT; */
}


.quaid-day-popup-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 36px;
  height: 36px;
  background: #362B4C;
  color: #ffffff;
  font-size: 22px;
  font-weight: bold;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(0,0,0,0.3);
  transition: background 0.3s ease;
}


.quaid-day-popup-close{
      background: transparent;
    color: transparent;
        box-shadow: none;
}

/* .quaid-day-popup-close:hover {
  background: #000000;
} */

/* Animations */
@keyframes quaid-day-popup-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes quaid-day-popup-scale {
  from { transform: scale(0.8); }
  to   { transform: scale(1); }
}

/* 📱 Very small mobile optimization */
@media (max-width: 420px) {
  .quaid-day-popup-box {
    padding: 12px;
    border-radius: 12px;
  }

  .quaid-day-popup-close {
    width: 30px;
    height: 30px;
    font-size: 18px;
    line-height: 30px;
  }

  
}


/* ================================End Popup Coe================================ */

/* ...............................CSS Core Team STD Code............................. */

/* Our Team Pages */
.path-core-team{}
.path-core-team .view-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.path-core-team .view-content::after{
    content: '';
    clear: both;
    display: block;
    height: 0;
}
.path-core-team .views-row{}
.path-core-team .views-row:first-child{
    width: 100%;
}
.team-item{
  display: block;
  padding: 5px;
  text-align: center;
  /* border: 1px solid #ddd; */
  border-radius: 4px;
  min-height: 250px;
  max-width: 270px;
  margin: 0 auto 20px auto;
}
.team-item .img{
  width: 150px;
  height: 150px;
      border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
}
.team-item .img img{
  width: 100%;
  height: 100%;
  transform: scale(1);
    transition: all 0.6s ease;
    object-fit: cover;
}

.team-item:hover .img img{
   transform: scale(1.2);
}

.team-item .body{
  padding: 1em 0.75em;
}
.team-item .body .title{
  margin: 0;
  color: rgba(46, 22, 114, 0.7);
  font-size: 16px;
}
.team-item .body .designation{
  margin: 10px 0 0 0;
}

.inner-page .view-id-core_team .view-content {
    display: flex;
    flex-wrap: wrap;
    text-decoration: none;
    justify-content: left;
    border-bottom: unset !important;
}

a.team_hover:hover {
    text-decoration: none;
}


/*********************************end style core team standerd css ***********************************/

.path-messages .inner-page button.slick-prev.slick-arrow,
.path-messages .inner-page button.slick-next.slick-arrow{
    display: none !important;
}

.path-messages .inner-page {
    background: linear-gradient(180deg, rgba(234, 247, 255, 0.82) 0%, rgba(255, 255, 255, 0.82) 100%);
    /* padding: var(--section-spacing); */
}

@media (max-width: 992px) {
  .counter-card {
    width: 45%;
  }

  .inner-page .view-id-core_team .view-content{
    justify-content: center !important;
  }
}

/* ==============================End =============================| */

/* ========================Internal Styling======================== */

#navbar{
      background: var(--color-primary);
          padding-left: 2em;
}

.path-frontpage #navbar{
      background: transparent;
          padding-left: 4em;
}



/* =====================End Internal Styling===================== */