/* =========================================
   RESET & VARIABLES
   ========================================= */
html {
    scroll-behavior: smooth;
}

:root {
    /* Colors */
    --PrimaryColor: #275D38;
    --BlackColor: #000;
    --WhiteColor: #FFFFFF;
    --SecondaryColor: #E27617;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}






body {
 font-family: "Inter", sans-serif;
   font-weight: 400;
    color: var(--BlackColor);
    line-height: 1.5;
    background-color: var(--WhiteColor);
    overflow-x: hidden;
}


a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1, h2,h3,h4{ font-family: "Rajdhani", sans-serif;}


.same-section {
    padding: clamp(4rem, 7vw, 4rem) 0;
}

.same-heading {
    margin-bottom: 4rem;
}

.same-heading h2 {
font-size: clamp(2.3rem, 3vw, 4rem);
font-weight: 700;
color: var(--PrimaryColor);
line-height: 1;
text-transform: uppercase;
margin-bottom: 0.8rem;

}

.same-heading h2 .light-text{font-weight: 300;}

.same-heading h3 {

    color: var(--PrimaryColor);
    font-size: clamp(1.6rem, 2.2vw, 2rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 0.6rem;
}

.same-heading p {
  font-size: 1rem;
    color: #505050;
    line-height: 1.7;
}


.bg-gray {
    background: #F1F1F1;
}

.max-wid-50 {
    width: 100%;
    max-width: 50%;
}

.max-wid-80 {
    width: 100%;
    max-width: 80%;
}

.same-heading.text-center .max-wid-50 {
    margin: 0 auto;
}

.same-heading.white-text :is(h2) {
  color: var(--WhiteColor)

}

.same-heading.white-text :is( p) {
   color: #D0D0D0; 

}
.same-section .section-bottom-btn {
    margin-top: 1.5rem;
}

.section-bottom-btn {
    display: flex;
    gap: 1rem;
    align-items: center;flex-wrap: wrap;
    margin-top: 2rem;
}

.section-bottom-btn.text-center {
    justify-content: center;
}


/* =========================================
   UTILITIES
   ========================================= */
.tag {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 13%;
 color: var(--SecondaryColor);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.accent-text {
  color: var(--SecondaryColor);
  font-weight: 400;
}

.white-text .accent-text {
  color: #D7E2AC;
}

.white-text .hero-kicker {
  color: var(--WhiteColor);
}

.white-text .hero-kicker-line {
  background: var(--WhiteColor);
}

.white-text .hero-link-download {
  color: var(--WhiteColor);
}

.white-text .hero-link-download:hover {
  color: #D7E2AC;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    border-radius: 10px;
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
    border: 1px solid transparent;
   text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn svg {
    width: 1.2rem;
    height: 1.2rem;
}

.btn-primary {
    background: var(--PrimaryColor);
    color: var(--WhiteColor);
    border-color: var(--PrimaryColor);
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background: var(--SecondaryColor) !important;
    color: var(--WhiteColor) !important;
    border-color: var(--SecondaryColor) !important;
}

.btn-primary .fluid-canvas,
.btn-secondary .fluid-canvas,
.btn-outline-primary .fluid-canvas,
.btn-white .fluid-canvas,
.btn-light .fluid-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
    z-index: 1;
}

.btn-primary .btn-text,
.btn-secondary .btn-text,
.btn-outline-primary .btn-text,
.btn-white .btn-text,
.btn-light .btn-text {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-outline-primary {
    background: transparent;
    color: var(--PrimaryColor);
    border-color: var(--PrimaryColor);
}

.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
    background: var(--PrimaryColor) !important;
    color: var(--WhiteColor) !important;
    border-color: var(--PrimaryColor) !important;
}

.btn-secondary {
    background: var(--SecondaryColor);
    border: solid 1px var(--SecondaryColor);
    color: var(--WhiteColor);
}

.btn-secondary:hover,.btn-secondary:focus,.btn-secondary:active {
 background: var(--PrimaryColor) !important;
border-color:var(--PrimaryColor) !important;
color: var(--WhiteColor) !important;
}



.btn-white {
    background: var(--WhiteColor);
    border: solid 1px var(--WhiteColor);
    color: var(--SecondaryColor);
}

.btn-white:hover,.btn-white:focus,.btn-white:active {
 background: var(--PrimaryColor) !important;
border-color:var(--PrimaryColor) !important;
color: var(--WhiteColor) !important;
}


.btn-outline-white {
    background: transparent;
    border: solid 1px var(--WhiteColor);
    color: var(--WhiteColor);
}

.btn-outline-white:hover, .btn-outline-white:focus, .btn-outline-white:active {
    background: var(--WhiteColor) !important;
    color: var(--PrimaryColor) !important;
}



/* =========================================
   1. NAVBAR
   ========================================= */

.header {
    background: #fff;
  
    transition: all 0.3s ease;
    z-index: 1001;
    border-bottom: solid 1px transparent;
}

.header .top-header{background: #F4F4F4; padding: 0.6rem 0;}
.header .top-header p{color: #858585; font-size: 0.8rem; margin-bottom: 0; text-align: center;}
.header.headerfix {
    background: var(--WhiteColor);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    top: 0;
    z-index: 1001;
    position: fixed;
    left: 0; right: 0;
   
    /* border-bottom-color: #E6E6E6; */
    animation: slideDown 0.4s ease forwards;
}
.header.headerfix .top-header{display: none;}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header .nav-content {
    display: flex;
    align-items: center;
    padding: 1rem 0;

}
.header .nav-content .logo img{max-height: 4rem;}
.header .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 1;
}
.header .nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
    gap: 1.5rem;
    flex: 1;
}
.header .nav-actions{margin-left: 3rem;}


.header .nav-links a:not(.btn) {

  font-size: 1rem;
  color: var(--BlackColor);
  font-weight: 600;
font-family: "Rajdhani", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.2rem 0;
  position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.3s ease;
}

.header .search-icon svg{  color: var(--BlackColor);    width: 1.2rem; }

.header .nav-menu a svg {
    width: 0.85rem;
    height: 0.85rem;
    /* opacity: 0.7; */
}
.header .nav-links a:not(.btn,.search-icon)::before{ position: absolute;
    content: '';
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--PrimaryColor);
    transform: translateX(-50%);
    transition: width 0.3s ease;}

.header .nav-links a:hover:before{    width: 100%;}
.header .sign-btn{display: flex; align-items: center; gap: 0.8rem; margin-left: 1.5rem;}
.header .sign-btn a:not(.btn){font-weight: 500; color: #333;}


.header .nav-links a:hover:not(.btn) {
    color: var(--PrimaryColor);
}


.header.headerfix .btn-white{background: var(--SecondaryColor); color: var(--WhiteColor);}

.header .mobile-toggle {
font-size: 1.5rem;
width: 2.6rem;
height: 2.6rem;
background: var(--PrimaryColor);
color: var(--WhiteColor);
border: solid 1px var(--PrimaryColor);
border-radius: 50%;
cursor: pointer;
display: inline-flex; align-items: center;
justify-content: center;
}
.header .mobile-toggle svg{width: 1.3rem;}
.header  .btn-sidebar-close{font-size: 1.5rem;
width: 2.6rem;
height: 2.6rem;
background: var(--PrimaryColor);
color: var(--WhiteColor);
border: solid 1px var(--PrimaryColor);
border-radius: 50%;
cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.header  .btn-sidebar-close svg{width: 1.3rem;}

/* ════════════════════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════════════════════ */

.hero-section {
    position: relative;
    padding: 8rem 0 ;
    overflow: hidden;
    isolation: isolate;
    background: url(../images/banner-bg.jpg)no-repeat center top/cover;

}
.hero-section .hero-kicker {
    color: var(--WhiteColor);
    font-size: 1.8rem;
    font-weight: 600;
   font-family: "Rajdhani", sans-serif;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.hero-section .hero-title {
    font-size: 3.7rem;
    font-weight: 700;
    line-height: 1;
    color: var(--WhiteColor);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-section .hero-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: #fff;
    max-width: 80%;
    font-weight: 400;
    margin-bottom: 0;
}

.hero-section .hero-status-card {
    background: var(--WhiteColor);
    border-radius: 24px;
    padding: 1.3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.hero-section .hero-status-title {
    font-family: "Rajdhani", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--PrimaryColor);
    padding-bottom: 0.6rem;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid #C2C2C2;
}

.hero-section .hero-status-list {
    display: flex;
    flex-direction: column;
    /* gap: 0.9rem; */
}

.hero-section .hero-status-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.4rem 0;

}

.hero-section .hero-status-list li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.hero-section .hero-status-list span {
    font-size: 1rem;
    font-weight: 400;
  font-family: "Rajdhani", sans-serif;
    text-transform: uppercase;
    color: var(--BlackColor);
}

.hero-section .hero-status-list strong {
    font-size: 1rem;
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;

    text-transform: uppercase;
    color: var(--BlackColor);
    text-align: right;
}

.hero-section .hero-status-list strong.is-warning {
    color: var(--SecondaryColor);
}

/* ════════════════════════════════════════════════════════
   DISCLAIMER SECTION
════════════════════════════════════════════════════════ */

.disclaimer-section .disclaimer-card {
    background: #F2F6F1;
    height: 100%;
    padding: 2rem;
}

.disclaimer-section .disclaimer-card p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: #505050;
    margin-bottom: 0;
}

.disclaimer-section .disclaimer-list {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

.disclaimer-section .disclaimer-item h4 {
    font-family: "Rajdhani", sans-serif;
    font-size: 1.3rem; 

    font-weight: 700;
    text-transform: uppercase;
    color: var(--PrimaryColor);

}

.disclaimer-section .disclaimer-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #505050;
    max-width: 80%;
    margin-bottom: 0;
}

/* ════════════════════════════════════════════════════════
   PROPOSALS SECTION
════════════════════════════════════════════════════════ */

.proposals-section {
    position: relative;
    background: #F2F6F1;
    overflow: hidden;
}


.proposals-section .proposal-card {
    background: var(--WhiteColor);
    height: 100%;
    padding: 2rem; position: relative; z-index: 1;
}
.proposals-section .proposals-shape::before{ position: absolute;
    left: -7rem;
    top:-3rem;
    background:url(../images/half-circle-line.svg)no-repeat;
   content: ''; width: 200px;
    height: 100%;}

.proposals-section .proposals-ring::before{   position: absolute;
    right: -1.6rem;
    bottom: -0.6rem;
    width: 3.6rem;
    height: 3.6rem;content: ''; 
    border-radius: 50%;
    border: 7px solid var(--PrimaryColor);}



.proposals-section .proposal-eyebrow {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
      font-family: "Rajdhani", sans-serif;
    letter-spacing: 18%;
    text-transform: uppercase;
    color: #6A6A6A;
    margin-bottom: 0.8rem;
}

.proposals-section .proposal-title {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--PrimaryColor);
  max-width: 60%;   
    margin-bottom: 0.8rem;
}

.proposals-section .proposal-desc {
font-size: 1rem;
    color: #505050;
    line-height: 1.7;
    margin-bottom: 1.8rem;min-height: 150px;
}

.proposals-section .proposal-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #0000001A;
}

.proposals-section .proposal-stat {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.proposals-section .proposal-stat-num {
    font-family: "Rajdhani", sans-serif;
    font-size: 1.4rem;
    line-height: normal;
    font-weight: 700;
    color: var(--PrimaryColor);
}

.proposals-section .proposal-stat-label {
    font-size: 0.8rem;
    color: #8A8A8A;
}

/* ════════════════════════════════════════════════════════
   RINGS SECTION
════════════════════════════════════════════════════════ */

.rings-section .ring-card {
    background: var(--WhiteColor);
    border: 1px solid #0000001A;
    height: 100%;
    padding: 1.8rem;
}

.rings-section .ring-title {
    font-family: "Rajdhani", sans-serif;
      font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--PrimaryColor);
    margin-bottom: 0.8rem;
}

.rings-section .ring-desc {
    font-size: 1rem;
    color: #505050;
    line-height: 1.7;
    margin-bottom: 1.5rem;
min-height: 140px;
}

.rings-section .ring-months {

    font-family: "Rajdhani", sans-serif;
    font-size: 1rem;
    font-weight: 700;
  
    text-transform: uppercase;
    color: var(--PrimaryColor);
}

/* ════════════════════════════════════════════════════════
   LAW SECTION
════════════════════════════════════════════════════════ */

.law-section {
    position: relative;
    background: #F2F6F1;
    overflow: hidden;
}

.law-section .law-shape {
    position: absolute;
    right: -5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 12rem;
    height: 16rem;
    border-radius: 50%;
    background-image: repeating-linear-gradient(45deg, var(--PrimaryColor) 0, var(--PrimaryColor) 2px, transparent 2px, transparent 10px);
    opacity: 0.5;
    z-index: 0;
}

.law-section .container {
    position: relative;
    z-index: 1;
}

.law-section .law-table {
    background: var(--WhiteColor);
    position: relative;
    z-index: 3;

}
.law-section .law-table:before{
position: absolute;
right: -12%;
 top:50%;
 transform: translateY(-50%);
background: url(../images/half-circle-right-line.svg)no-repeat center center; content: '';
width: 320px;
height: 270px;
background-size: 70%;
z-index: 0;

}

.law-section .law-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 1rem;
    border-bottom: 1px solid #0000001A;
}

.law-section .law-row:last-child {
    border-bottom: none;
}

.law-section .law-row-title {
    flex: 0 0 35%;
    max-width: 35%;
    font-family: "Rajdhani", sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--PrimaryColor);
}

.law-section .law-row-desc {
    flex: 1;
      font-size: 1rem;
    color: #505050;
    line-height: 1.7;
}

.law-section .law-footnote {
    font-size: 0.8rem;
    line-height: 1.6;
    color: #505050B2;
    margin-top: 1.8rem;
    margin-bottom: 0;
}

/* ════════════════════════════════════════════════════════
   MONEY SECTION
════════════════════════════════════════════════════════ */

.money-section .money-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #0000001A;
    margin-bottom: 2rem;
}

.money-section .money-panel:last-child {
    margin-bottom: 0;
}

.money-section .money-caption {
    display: block;
    font-family: "Rajdhani", sans-serif;
    font-size: 0.9rem;
    font-weight: 400;

    text-transform: uppercase;
    color: #8B8B8B;
    padding: 1rem ;
}

.money-section .money-rows {
    display: flex;
    flex-direction: column;
}

.money-section .money-row {
    display: grid;
    grid-template-columns: 1fr 1.6fr 0.6fr;
    gap: 1.5rem;
    padding:1rem;    font-weight: 500;
    color: #5E5E5E;
    border-bottom: 1px solid #0000001A;    font-family: "Rajdhani", sans-serif;
}


.money-section .money-row span:last-child {
    text-align: right;
    font-weight: 600;

}

.money-section .money-row-head {

    font-size: 1rem;
    font-weight: 700;

    text-transform: uppercase;
    color: #8A8A8A;
    border-bottom: 1px solid #E2EADF;
    border-top: 1px solid #E2EADF;
}

.money-section .money-row-head span {
    font-weight: 700 !important;
    color: var(--PrimaryColor) !important;
}

.money-section .money-row-highlight {
    background: #F2F6F1; 
    font-weight: 700; color: var(--PrimaryColor);
}

.money-section .money-row-total {
    display: grid;
    grid-template-columns: 1fr 1.6fr 0.6fr;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    margin-top: auto;
    background: var(--PrimaryColor);
}

.money-section .money-row-total span:first-child,
.money-section .money-row-total span:last-child {
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;

    color: var(--WhiteColor);
}

.money-section .money-row-total span:last-child {
    text-align: right;
}

/* ════════════════════════════════════════════════════════
   BOUNDARIES SECTION
════════════════════════════════════════════════════════ */
.boundaries-section{background: #F2F6F1;}
.boundaries-section .boundaries-desc {

    color: #505050;
    margin-bottom: 1.2rem;
}

.boundaries-section .boundaries-desc strong {
    font-weight: 600;
    color: #505050;
}



.boundaries-section .boundaries-list li {
    position: relative;
    padding:0.5rem  0.5rem 0.5rem 1.2rem;
    font-size: 1rem;
    line-height: 1.7; font-family: "Rajdhani", sans-serif;
    font-weight: 600;
    color: var(--PrimaryColor);
}

.boundaries-section .boundaries-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--PrimaryColor);
}

/* ════════════════════════════════════════════════════════
   ALUMNI SECTION
════════════════════════════════════════════════════════ */

.alumni-section .alumni-card {
    background: var(--WhiteColor);
    border: 1px solid #0000001A;
    height: 100%;
    padding: 1.8rem;
}

.alumni-section .alumni-title {
     font-family: "Rajdhani", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--PrimaryColor);
    margin-bottom: 0.8rem;
}

.alumni-section .alumni-desc {
    font-size: 1rem;
    color: #505050;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ════════════════════════════════════════════════════════
   APP SECTION
════════════════════════════════════════════════════════ */
.app-section{background: #F2F6F1;}
.app-section .app-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.app-section .app-card {
    background: var(--WhiteColor);
    padding: 1.5rem;
}

.app-section .app-title {
     font-family: "Rajdhani", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--PrimaryColor);
    margin-bottom: 0.8rem;
}

.app-section .app-desc {
font-size: 1rem;
    color: #505050;
    line-height: 1.7;
    margin-bottom: 0;
}

.app-section .app-media {
    text-align: center;
}

.app-section .app-img {
    max-width: 100%;
    height: auto;
}

/* ════════════════════════════════════════════════════════
   VERIFY SECTION
════════════════════════════════════════════════════════ */

.verify-section .verify-table {
    display: flex;
    flex-direction: column;
}

.verify-section .verify-row {
    display: flex;
    align-items: center;
    justify-content: space-between;    font-family: "Rajdhani", sans-serif;
    gap: 1.5rem;
    padding: 1rem 0;   font-size: 1rem; font-weight: 600;
    border-bottom: 1px solid #0000001A;
}

.verify-section .verify-row:last-child {
    border-bottom: none;
}

.verify-section .verify-doc {
    color: var(--PrimaryColor);
}

.verify-section .verify-status {

    color: #9F5310;
    white-space: nowrap;
}

.verify-section .verify-footnote {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #818181;
    margin-top: 2rem;
    max-width: 80%;
    margin-bottom: 0;
}

/* ════════════════════════════════════════════════════════
   CONFLICT SECTION
════════════════════════════════════════════════════════ */
.conflict-section{background: #F2F6F1;}
.conflict-section .conflict-card {
    position: relative;
    background: var(--WhiteColor);
    height: 100%;
    padding: 2rem;
  
}

.conflict-section .conflict-card p {
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #505050;
    margin-bottom: 1.5rem;
}

.conflict-section .conflict-card p:last-child {
    margin-bottom: 0;
}

.conflict-section .conflict-shape {
    position: absolute;
      left: -7rem;
    bottom: -2rem;
    width: 230px;
    height: 230px;
    background: url(../images/half-circle-line.svg) no-repeat center center;
    background-size: 70%;
    z-index: 0;
}

.conflict-section .conflict-list {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

.conflict-section .conflict-item h4 {
  font-family: Rajdhani, sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--PrimaryColor);
}

.conflict-section .conflict-item p {
     font-size: 0.95rem;
    line-height: 1.7;
    color: #505050;
    max-width: 80%;
    margin-bottom: 0;
}



/* ════════════════════════════════════════════════════════
   NEXT SECTION
════════════════════════════════════════════════════════ */

.next-section .next-list {
    display: flex;
    flex-direction: column;
    margin-top: 3rem;
}

.next-section .next-row {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.3rem 0;
    border-bottom: 1px solid #0000001A;
}

.next-section .next-row:last-child {
    border-bottom: none;
}

.next-section .next-num {
    font-family: "Rajdhani", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #C7C7C7;
    line-height: 1.3;
}

.next-section .next-body h4 {
    font-family: "Rajdhani", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--PrimaryColor);
    margin-bottom: 0.3rem;
}

.next-section .next-body p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #505050;
    margin-bottom: 0;
}

/* ════════════════════════════════════════════════════════
   COLOPHON SECTION
════════════════════════════════════════════════════════ */

.colophon-section {
    background: #F2F6F1;
}

.colophon-section .colophon-logo {
    height: 3rem;
    margin-bottom: 1.5rem;
}

.colophon-section .colophon-intro {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #558163;
    /* max-width: 40rem; */
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #0000001A;
}

.colophon-section .colophon-legal {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.colophon-section .colophon-legal p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #558163;
    margin-bottom: 0;
}

.colophon-section .colophon-legal p strong {
    color: var(--PrimaryColor);
}

.colophon-section .colophon-docs {
    background: var(--WhiteColor);
    padding: 1.5rem; border: solid 1px #E2EADF;
}

.colophon-section .colophon-docs-title {
    font-family: "Rajdhani", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--PrimaryColor);
    margin-bottom: 1.2rem;
}

.colophon-section .colophon-docs-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.colophon-section .colophon-docs-list li a{
    font-size: 0.9rem;
    color: #727272;
}




.Downloads{    background: #f6f6f6;}
.Downloads__hero {
	background: var(--PrimaryColor);
	padding: 6.25rem 0;
	color: #fff;
	position: relative;
	overflow: hidden
}

.Downloads__hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, .3);
	z-index: 1
}

.Downloads__hero__content {
	position: relative;
	z-index: 2
}

.Downloads__hero__title {
	font-size: 3rem;
	font-weight: 600;
	margin-bottom: 1.25rem;
	line-height: 1.2;    color: #fff;
}

.Downloads__hero__subtitle {
	font-size: 1rem;
	opacity: .9;
	line-height: 1.5;    color: #fff;
}

.Downloads__content {
	padding: 5rem 0
}

.Downloads__section {
	margin-bottom: 5rem
}

.Downloads__section:last-child {
	margin-bottom: 0
}

.Downloads__section__header {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 3rem;
	gap: 1rem
}

.Downloads__section__icon {
	width: 2rem;
	height: 2rem;
	object-fit: contain
}

.Downloads__section__title {
	font-size: 2rem;
	font-weight: 600;
	color: var(--BlackColor);
	margin: 0
}

.Downloads__section__subtitle {
	font-size: 1.6rem;
	font-weight: 300;
	text-align: left;
	margin: 2rem 0;
	color: var(--BlackColor);
	position: relative;
	padding: .5rem 0 .5em 2.5rem
}

.Downloads__section__subtitle::before {
	content: "";
	position: absolute;
	top: 47%;
	left: 0;
	height: 1px;
	width: 2.2rem;
	background: #000;
	z-index: 1
}

.Downloads__section__subtitle::after {
	content: attr(data-text);
	position: relative;
	background: #f6f6f6;
	z-index: 2;
	display: inline-block
}

.Downloads__subsection {
	margin-bottom: 4rem
}

.Downloads__subsection:last-child {
	margin-bottom: 0
}

.Downloads__subsection__title {
	font-size: 1.75rem;
	font-weight: 600;
	text-align: center;
	margin-bottom: 2rem;
	color: var(--BlackColor);
	position: relative;
	padding: 1rem 0
}

.Downloads__subsection__title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 2.5rem;
	height: .125rem;
	background: var(--PrimaryColor);
	border-radius: .0625rem
}

.Downloads__separator {
	text-align: center;
	margin: 3rem 0;
	padding: 0 1rem
}

.Downloads__separator__text {
	font-size: 1rem;
	font-weight: 600;
	color: var(--PrimaryColor);
	text-transform: uppercase;
	letter-spacing: .025rem;
	white-space: nowrap
}

.Downloads__app-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center
}

.Downloads__app-card__content-wrapper {
	background: #fff;
	border-radius: .75rem;
	padding: 1.5rem;
	box-shadow: 0 .125rem .5rem rgba(0, 0, 0, .1);
	transition: all .3s ease;
	border: .0625rem solid #e5e7eb;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100%;
	height: 100%
}

.Downloads__app-card__content-wrapper:hover {
	transform: translateY(-0.25rem);
	box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .15)
}

.Downloads__app-card__content-wrapper--unavailable:hover {
	transform: none;
	box-shadow: 0 .125rem .5rem rgba(0, 0, 0, .1)
}

.Downloads__app-card__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 1.5rem;
	flex: 1
}

.Downloads__app-card__icon {
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	flex-shrink: 0
}

.Downloads__app-card__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain
}

.Downloads__app-card__icon img[src*=apple-icon],
.Downloads__app-card__icon img[src*=clear-app-store],
.Downloads__app-card__icon img[src*=play-store-icon] {
	filter: brightness(0.7) contrast(1.2)
}

.Downloads__app-card__icon--placeholder {
	background: #e5e7eb;
	border: 1px solid #d1d5db
}

.Downloads__app-card__info {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%
}

.Downloads__app-card__name {
	font-size: 1.125rem;
	font-weight: 500;
	color: var(--BlackColor);
	margin-bottom: .5rem;
	line-height: 1.3
}

.Downloads__app-card__description {
	font-size: .875rem;
	color: #6b7280;
	line-height: 1.4;
	margin: 0 0 1rem 0
}

.Downloads__app-card__action {
	text-align: center;
	width: 100%
}

.Downloads__app-card__availability {
	font-size: .875rem;
	color: var(--PrimaryColor);
	margin-bottom: .5rem;
	font-weight: 600
}

.Downloads .download-with-login-btn {
	display: flex;
	align-items: center;
	gap: .5rem
}

.Downloads__download-btn {
	background: #fff;
	color: var(--PrimaryColor);
	border: 1px solid var(--PrimaryColor);
	padding: .5rem 1rem;
	border-radius: .25rem;
	font-size: .875rem;
	font-weight: 500;
	cursor: pointer;
	transition: all .3s ease;
	width: 100%;
	text-decoration: none;
	display: inline-block;
	text-align: center
}

.Downloads__download-btn:hover {
	background: var(--PrimaryColor);
	color: #fff
}

.Downloads__download-btn:active {
	transform: translateY(0)
}

.Downloads__download-btn:focus {
	outline: none;
	box-shadow: 0 0 0 .1875rem var(--PrimaryColorTransparent)
}

.Downloads__download-btn--disabled {
	background: #d6d6d6;
	color: #555;
	border: 1px solid #d6d6d6;
	cursor: not-allowed;
	pointer-events: none
}

.Downloads__download-btn--disabled:hover {
	background: #fff;
	color: var(--PrimaryColor);
	transform: none;
	box-shadow: none
}

.Downloads__download-btn--disabled:focus {
	box-shadow: none
}

.Downloads__login-btn {
	background: #fff;
	color: var(--PrimaryColor);
	border: 1px solid var(--PrimaryColor);
	padding: .5rem 1rem;
	border-radius: .25rem;
	font-size: .875rem;
	font-weight: 500;
	cursor: pointer;
	transition: all .3s ease;
	width: 100%;
	text-decoration: none;
	display: inline-block;
	text-align: center
}

.Downloads__login-btn:hover {
	background: var(--PrimaryColor);
	color: #fff
}

.Downloads__login-btn:active {
	transform: translateY(0)
}

.Downloads__login-btn:focus {
	outline: none;
	box-shadow: 0 0 0 .1875rem var(--PrimaryColorTransparent)
}

.Downloads__login-btn--disabled {
	background: #d6d6d6;
	color: #555;
	border: 1px solid #d6d6d6;
	cursor: not-allowed;
	pointer-events: none
}

.Downloads__login-btn--disabled:hover {
	background: #fff;
	color: var(--PrimaryColor);
	transform: none;
	box-shadow: none
}

.Downloads__login-btn--disabled:focus {
	box-shadow: none
}

.Downloads__status {
	display: inline-block;
	font-size: .9rem;
	font-weight: 600;
	padding: .12rem .8rem;
	border-radius: 50px;
	margin-top: 6px
}

.Downloads__status--in-review {
	background-color: #e0e0e0;
	color: #555
}

.Downloads__status--live {
	background-color: #28a745;
	color: #fff
}

.Downloads__featured {
	padding: 5rem 0;
	background: #fff
}

.Downloads__featured .Downloads__featured__title {
	font-size: 2rem;
	font-weight: 600;
	color: var(--BlackColor);
	margin: 0 0 3rem;
	text-align: center
}

.Downloads__featured .download-platform-card {
	background: #fff;
	border-radius: .75rem;
	padding: 1.5rem;
	box-shadow: 0 .125rem .5rem rgba(0, 0, 0, .1);
	transition: all .3s ease;
	border: .0625rem solid #e5e7eb;
	text-align: center;
	height: 100%
}

.Downloads__featured .iconbx {
	width: 4rem;
	height: 4rem;
	margin: 0 auto 1rem;
	border-radius: 50%;
	background: #f6f6f6;
	display: flex;
	align-items: center;
	justify-content: center
}

.Downloads__featured .iconbx img {
	width: 100%;
	max-width: 39%
}

.Downloads__featured h3 {
	font-size: 1.125rem;
	font-weight: 500;
	color: var(--BlackColor);
	margin-bottom: 1rem;
	line-height: 1.3
}

.Downloads__featured .btn-disable {
	background: #d6d6d6;
	color: #555;
	border: 1px solid #d6d6d6;
	cursor: not-allowed;
	pointer-events: none;
	font-size: .9rem;
	padding: .5rem .9375rem;
	border-radius: 10px;
	font-weight: 400
}



.investor-data-section{background: #f6f6f6;}
.dr-accordion .accordion-item {
border: 1px solid #CCCCCC;
border-radius: 0;
overflow: hidden;
background: #fff;
margin-bottom: 0.9rem;
}

.dr-accordion .accordion-button {
font-size: 1.1rem;
padding: 1rem 1.1rem; font-weight: 600;
color: var(--BlackColor); border-radius: 0;
}

.dr-accordion   .accordion-button:not(.collapsed){background: none; box-shadow: none;}
.dr-accordion   .dr-doc-card{ background: #fff;
border: 0.06rem solid #efefef;
border-radius: 0.35rem;
padding: 1.5rem;
height: 100%;
position: relative;
}

.dr-accordion   .dr-doc-card .dr-doc-thumb{color: var(--PrimaryColor);}
.dr-accordion   .dr-doc-card .dr-doc-source{    color: #757575;
font-size: 0.8rem;
line-height: 1.1;
margin: 0.6rem 0 0.5rem;}
.dr-accordion  .dr-doc-card .dr-doc-lock  {display: none;}
.dr-accordion  .lock-card-row .dr-doc-card .dr-doc-lock  {display: block;}

.dr-accordion   .dr-doc-card .dr-doc-title{color: #343131; font-size: 1rem; font-weight: 500;line-height: 1.5;}
.dr-accordion   .dr-doc-card .dr-doc-download{color:var(--BlackColor); font-size: 1rem; font-weight: 500;line-height: 1.1; }
.dr-accordion   .dr-doc-card .download-view-icon{ display: flex; align-items: center; justify-content: end; gap: 1rem;}
.dr-accordion   .dr-doc-card .download-view-icon svg{width: 1.2rem;}
.dr-accordion   .lock-card-row .dr-doc-card  .dr-doc-lock {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
display: flex;
align-items: center;
justify-content: center;
background: #ffffff96; cursor: pointer;
}

.dr-accordion  .lock-card-row .dr-doc-card  {  filter: grayscale(100%); opacity: 0.7;}


.dr-accordion  .accordion-collapse{border-top: 1px solid #CCCCCC; padding: 1rem;}


:is(.layer-bg, .inner-banner) {position: relative;     padding: clamp(5rem, 7vw, 5rem) 0;  background: #F2F6F1;}



.inner-banner {
    padding: clamp(5rem, 7vw, 5rem) 0;
} 


.search-banner {  background: #F2F6F1;    position: relative; }
/* .search-banner::before {content: ""; position: absolute; inset: 0;background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAZSURBVHgBxcghAQAAAIMw+pf+C+CZHLilebfsBfsvTewEAAAAAElFTkSuQmCC');
    background-repeat: repeat; opacity: .04; pointer-events: none;} */

.search-banner .input-group { border: solid 1px #DBDBDB; border-radius: 0.625rem; /* was 1rem */ padding: 0.2rem; width: 100%; max-width: 50rem; /* was 80rem */ margin: 2.5rem auto 0; background-color: var(--WhiteColor); }
.search-banner .input-group .form-select { border: 0; height: 3rem; /* was 3rem */ font-size: 0.9rem; /* was 1rem */ color: var(--BlackColor); font-weight: 600; text-transform: uppercase; width: 100%; max-width: 12.5rem; /* was 20rem */ margin-right: 0.625rem; /* was 1rem */ background-color: var(--WhiteColor); padding: 0.625rem 0.625rem 0.625rem 0.75rem; /* was 1rem 1rem 1rem 1.2rem */ }
.search-banner .input-group input.form-control { background: #fff; border: 0; color: var(--BlackColor); font-size: 1rem; /* was 1.3rem */ font-weight: 500; padding: 0.3125rem 0.3125rem 0.3125rem 1.25rem; /* was 0.5rem 0.5rem 0.5rem 2rem */ height: 3rem; /* was 3rem */ border-left: solid 0.0625rem #DCDCDC; /* was 0.1rem */ } 
.search-banner .input-group input.form-control::placeholder { color: #999999; } 
.search-banner .input-group .btn-search { color: var(--WhiteColor); background: var(--PrimaryColor); padding: 0; width: 2.75rem; height: 2.75rem; min-width: 2.75rem; border-radius: 50% !important; font-size: 1.0625rem; /* was 1.7rem */ border: 0; display: inline-flex; align-items: center; justify-content: center; margin: 0 0.15rem; }
.search-banner .input-group .btn-search:hover { transform: translateY(0); background: var(--SecondaryColor); }
.search-banner .input-group .btn-search:focus { outline: none !important; box-shadow: none !important; }
.search-banner select:focus,
.search-banner input:focus { outline: none !important; box-shadow: none !important; }
.searchListWrapper { padding-top: 0; min-height: 50vh; }

.searchListWrapper .searchtopBx { padding: 1.25rem 0; } /* was 2rem */
.searchListWrapper .searchtopBx .resultsBx { font-size: 0.9rem; font-weight: 600; color: var(--BlackColor); } /* was 1.3rem */
.searchListWrapper .searchtopBx :is(.filterDatebx, .filter-GridList) { display: flex; align-items: center; gap: 0.625rem; } /* was 1rem */
.searchListWrapper .searchtopBx .filterDatebx { justify-content: end; max-width: max-content; width: 100%; margin: 0 0.625rem; } /* was 0 1rem */
.searchListWrapper .searchtopBx .filterDatebx h4 { font-size: 0.9rem; /* was 1.3rem */ color: #7D7D7D; font-weight: 500; margin-bottom: 0; white-space: pre; }
.searchListWrapper .searchtopBx .filterDatebx .form-select { width: 100%; max-width: 14.4375rem; /* was 23.1rem */ border: solid 0.0625rem #DBDBDB; /* was 0.1rem */ height: 2.8125rem; /* was 4.5rem */ border-radius: 0.25rem; /* was 0.4rem */ font-size: 0.9rem; /* was 1.3rem */ font-weight: 500; color: #000; margin-left: 0.3125rem; /* was 0.5rem */ } 
.searchListWrapper .searchtopBx .filter-GridList :is(.list-view-button, .grid-view-button) { font-size: 1.0625rem; /* was 1.7rem */ border: solid 1px #DBDBDB; width: 2.875rem; /* was 4.6rem */ height: 2.875rem; /* was 4.6rem */ border-radius: 50%; color: #7D7D7D; padding: 0; cursor: pointer; line-height: normal; display: inline-flex; align-items: center; justify-content: center; }
.searchListWrapper .searchtopBx .filter-GridList :is(.list-view-button, .grid-view-button) svg { width: 1.25rem; } /* was 2rem */
.searchListWrapper .searchtopBx .filter-GridList :is(.list-view-button, .grid-view-button):hover { color: var(--WhiteColor); background: var(--PrimaryColor); border-color: var(--PrimaryColor); }
.searchListWrapper .searchtopBx .sortListBx { text-align: end; display: flex; align-items: center; justify-content: end; flex-wrap: wrap; }
.searchListWrapper .card { border: solid 0.0625rem #0000001A; border-radius: 0; padding: 0 0.625rem; /* was 0 1rem */ margin-bottom: 1.875rem; /* was 3rem */ background: var(--WhiteColor); transition: border-color 0.3s ease; }
.searchListWrapper .card:hover { border-color: var(--PrimaryColor); }
.searchListWrapper .card .cardTitleWithImg { display: flex; align-items: center; padding: 0.625rem 0; /* was 1rem 0 */ border-bottom: solid 0.0625rem #0000001A; }
.searchListWrapper .card .cardTitleWithImg .imgBx { border: 0.0625rem solid #0000001A; border-radius: 0.5rem; /* was 0.8rem */ width: 100%; max-width: 3.75rem; /* was 6rem */ height: 3.75rem; /* was 6rem */ text-align: center; background: var(--WhiteColor); padding: 0.25rem; /* was 0.4rem */ } .searchListWrapper .card .cardTitleWithImg .imgBx img { width: 100%; height: 100%; object-fit: contain; } .searchListWrapper .card .cardTitleWithImg .titleBx { font-family: "Rajdhani", sans-serif; font-size: 1.0625rem; color: var(--PrimaryColor); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; width: calc(100% - 3.75rem); /* was calc(100% - 6rem) */ padding-left: 0.625rem; /* was 1rem */ }
.searchListWrapper .card :is(.cardbottomContent, .cardMiddleContent) { padding: 0.625rem 0; } /* was 1rem 0 */
.searchListWrapper .card .cardbottomContent { border-top: solid 0.0625rem #0000001A; }
.searchListWrapper .card .listBx .titleBx { font-size: 0.875rem; /* was 1.4rem */ line-height: 1.6; ; font-weight: 400; } 
.searchListWrapper .card .cardbottomContent .listBx .titleBx { color: #4c4f50; }
.searchListWrapper .card .reputationscorebx .titleBx { font-family: "Rajdhani", sans-serif; font-size: 0.85rem; line-height: 1.6; color: var(--PrimaryColor); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; flex-basis: 0; flex-grow: 1; max-width: 100%; }
.searchListWrapper .card .cardMiddleContent .listBx li { padding: 0.3125rem 0; }
.searchListWrapper .card .listBx .detailBx { font-size: 0.9375rem; /* was 1.5rem */ line-height: 1.6; color: #52525b; font-weight: 600; line-height: normal; }
.searchListWrapper .card .listBx .detailBx a { color: var(--BlackColor); } 
.searchListWrapper .card .listBx .detailBx a:hover { color: var(--PrimaryColor); } /* .searchListWrapper .card .cardbottomContent { border-top: 0.1rem solid #cccccc; } */ 
.searchListWrapper .card .assetsNolist {display: flex; flex-wrap: wrap; margin: 0 -0.5rem; }
.searchListWrapper .card .assetsNolist li { width: 33.33%; padding: 0 0.3125rem; } /* was 0 0.5rem */
.searchListWrapper .card .assetsNolist .assetsBx { background: var(--WhiteColor);
    border: solid 0.0625rem #0000001A;
    padding: 0.9rem 0.2rem;
    width: 100%;
    border-radius: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center; }

.searchListWrapper .card .assetsNolist .titleBx { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em; color: #8A8A8A; }
.searchListWrapper .card .assetsNolist .detailBx { font-family: "Rajdhani", sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--PrimaryColor); } /* was 1.9rem */
.searchListWrapper .reputationscorebx { margin-top: 1rem; }

.searchListWrapper .slider-container {
  --label: 2.75rem;
  --width: 100%;
  --thumb: clamp(3rem, calc(2.28rem + 3.18vw), 3.88rem);
  inline-size: var(--width);
  aspect-ratio: 10.665 / 1;
  position: relative;
  margin: 0.5rem 0;
}
.searchListWrapper .slider-container .number--label {
  position: relative;
  bottom: 0;
  left: 0;
  font-size: 1rem; /* 16px - 3px */
  color: #000000;
  font-weight: 600;
  text-align: left;
  margin-top: 1rem;
  width: 100%;
}
.searchListWrapper .slider-container .input-slider {
  place-self: center;
  border-radius: 100vh;
  width: 100%;
  height: 0.5rem;
  background: linear-gradient(to right, #BD281B, #DEA038, #959136, #275301);
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}
.searchListWrapper .slider-container .input-slider::-webkit-slider-thumb {
  background: var(--PrimaryColor);
  border: solid 0.2rem var(--whiteColor);
  border-radius: 50%;
  width: 1.2rem; height: 1.2rem;
  -webkit-appearance: none;
  appearance: none;
}
.searchListWrapper .slider-container .input-slider::-moz-range-thumb {
  background: var(--PrimaryColor);
  border: solid 0.2rem var(--whiteColor);
  border-radius: 50%;
  width: 1.2rem; height: 1.2rem;
  -webkit-appearance: none;
  appearance: none;
}

.searchListWrapper .listview-visibleContent { display: none; }
.searchListWrapper .filterlistContent.list-view-filter div[class*="col-"] { flex: 0 0 100%; width: 100%; max-width: 100%; }
.searchListWrapper .filterlistContent.list-view-filter .card { flex-direction: row; padding: 10px; } 
.searchListWrapper .filterlistContent.list-view-filter .listview-visibleContent { display: block; }
.searchListWrapper .filterlistContent.list-view-filter .listview-visibleContent .assetsNolist { margin-top: 20px; border-bottom: 0; }
.searchListWrapper .filterlistContent.list-view-filter :is(.listViewBox, .cardbottomContent) { flex: 0 0 auto; width: 25%; border: 0; }
.searchListWrapper .filterlistContent.list-view-filter :is(.cardMiddleContent) { flex: 0 0 auto; width: 50%; padding: 10px 30px; }
.searchListWrapper .filterlistContent.list-view-filter .listBx:not(.assetsNolist) { display: flex; flex-wrap: wrap; } 
.searchListWrapper .filterlistContent.list-view-filter .listBx:not(.assetsNolist) li { width: 50%; margin-bottom: 20px; }
.searchListWrapper .filterlistContent.list-view-filter .cardbottomContent .assetsNolist { display: none; }
.searchListWrapper .filterlistContent.list-view-filter .card .cardTitleWithImg { border: 0; }
.searchListWrapper .filterlistContent.list-view-filter .cardbottomContent { border-left: 1px solid #0000001A; padding-left: 20px; }
.searchListWrapper { position: relative; overflow: hidden; }
.searchListWrapper .individualCard .cardTitleWithImg { align-items: flex-start; }
.searchListWrapper .individualCard .cardTitleWithImg .imgBx { max-width: 66.25px; /* was 106px */ height: 87.5px; /* was 140px */ padding: 0; border: 0; border-radius: 3.125px; /* was 5px */ overflow: hidden; } 
.searchListWrapper .individualCard .cardTitleWithImg .imgBx img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.searchListWrapper .individualCard .cardTitleWithImg .imgBx .blur-profile { filter: blur(2px); object-position: top; }
.searchListWrapper .individualCard .cardTitleWithImg .personNameInfo { width: calc(100% - 66.25px); padding-left: 6.25px; /* was 10px */ }
.searchListWrapper .individualCard .cardTitleWithImg .titleBx { width: 100%; padding-left: 0; }
.searchListWrapper .individualCard .full-details { display: flex; align-items: center; margin-top: 12.5px; /* was 20px */ } 
.searchListWrapper .individualCard .full-details .barcode { width: 100%; max-width: 31.875px; /* was 51px */ height: 31.25px; /* was 50px */ border-radius: 1.875px; /* was 3px */ position: relative; overflow: hidden; }
.searchListWrapper .individualCard .full-details .barcode img { object-fit: cover; width: 100%; height: 100%; opacity: 0.3; }
.searchListWrapper .individualCard .full-details .barcode .lockIcon { display: inline-block; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); color: #000; } 
.searchListWrapper .individualCard .full-details .barcode .lockIcon svg{width: 1rem; } 
.searchListWrapper .individualCard .full-details .contentBx { width: calc(100% - 31.875px); padding-left: 6.25px; /* was 10px */ }
.searchListWrapper .individualCard .full-details .contentBx p { font-size: 0.875rem; /* was 14px */ line-height: normal; color: var(--BlackColor); font-weight: 400; margin-bottom: 3.125px; /* was 5px */ }
.searchListWrapper .individualCard .full-details .contentBx .click-here { color: var(--PrimaryColor); font-weight: 600; text-decoration: underline; font-size: 0.875rem; /* was 14px */ }
.searchListWrapper .assetscard .cardTitleWithImg { border-bottom: 0; }
.searchListWrapper .assetscard .cardTitleWithImg .imgBx { max-width: 100%; height: 131.25px; /* was 210px */ padding: 0; background: #fff; overflow: hidden; }
.searchListWrapper .assetscard .cardTitleWithImg .imgBx img { width: 100%; height: 100%; object-fit: contain; } 
.searchListWrapper .assetscard .reputationscorebx .scoreValueBx { font-size: 0.75rem; /* was 12px */ color: var(--WhiteColor); font-weight: 700; text-align: center; background: var(--SecondaryColor); border-radius: 3.125px; /* was 5px */ padding: 3.125px 9.375px; /* was 5px 15px */ width: 100%; max-width: max-content; margin: auto; }
.searchListWrapper .assetscard .reputationscorebx .scoreValueatitle { font-size: 0.75rem; /* was 12px */ font-weight: 600; text-align: center; padding-top: 1.25px; /* was 2px */ color: var(--SecondaryColor); }
.searchListWrapper .assetscard .middlereputations-with-List { display: flex; align-items: center; } 
.searchListWrapper .assetscard .middlereputations-with-List .listBx { flex: 0 0 auto; width: 57%; }
.searchListWrapper .assetscard .middlereputations-with-List .reputationscorebx { flex: 0 0 auto; width: 43%; }
.searchListWrapper .assetscard .reputationscorebx { text-align: center; margin-top: 0; flex-direction: column; } 
.searchListWrapper .assetscard .reputationscorebx .iconBx { margin-bottom: 3.125px; /* was 5px */ }
.searchListWrapper .card .assetsNolist .assetsBx .iconBx { margin-bottom: 3.125px; /* was 5px */ }
.searchListWrapper .assetscard .reputationscorebx.good .scoreValueBx { background: var(--PrimaryColor); }
.searchListWrapper .assetscard .reputationscorebx.good .scoreValueatitle { color: var(--PrimaryColor); }
.searchListWrapper .assetscard .cardbottomContent .assetsBx .iconBx img { width: 1.5rem; height: 1.5rem; object-fit: contain; margin: 0 auto; }
.searchListWrapper .assetscard .averageScore .titleBx { font-size: 0.625rem; /* was 10px */ }
.searchListWrapper .assetscard .listBx.assetsNolist { border-bottom: 0; }
.searchListWrapper .assetscard .reputationscorebx.poor .scoreValueBx { background: #D02500; }
.searchListWrapper .assetscard .reputationscorebx.poor .scoreValueatitle { color: #D02500; }
.searchListWrapper .assetscard .homeAssetsRowList { display: flex; align-items: center; flex-wrap: wrap; }
.searchListWrapper .homeassetscard .homeAssetsRowList { margin-top: 6.25px; /* was 10px */ }
.searchListWrapper .homeassetscard .homeAssetsRowList li { width: 33.33%; }
.searchListWrapper .homeassetscard .cardTitleWithImg .imgBx { border: solid 1px transparent; } 
.searchListWrapper .homeassetscard .cardTitleWithImg .imgBx img { object-fit: cover; } 
.searchListWrapper.loader-overlay-search:after { position: absolute; left: 0; right: 0; top: 0; bottom: 0; content: ''; background: #0000002b url(../images/loader-img.svg) no-repeat center center; background-size: 56.25px; /* was 90px */ } 
.searchListWrapper .searchtopBx .sortListBx.sortsGridNone .filter-GridList { display: none !important; }
.searchListWrapper .searchtopBx .sortListBx.sortsGridNone .filterDatebx { margin-right: 0; }


.assets-detail-list .left-img-box { text-align: center; }
.assets-detail-list .left-img-box .img-box-asset { text-align: center; margin-bottom: 1.25rem; }
.assets-detail-list .left-img-box .titlebx {
  font-size: 1rem;
  font-weight: 600;
  color: var(--BlackColor);
}
.assets-detail-list .left-img-box .qty-bx { margin-top: 1.25rem; }
.assets-detail-list .left-img-box .qty-bx h4 {
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--BlackColor);
  margin-bottom: 0.25rem;
}
.assets-detail-list .left-img-box .detailbox {
  font-weight: 600;
  font-size: 1rem;
  color: var(--BlackColor);
}
.assets-detail-list > .row {
  background: var(--WhiteColor);
  border: 1px solid #0000001A;
  border-radius: 0;
  margin: 0;
  padding: 1.25rem;
  align-items: center;
}
.assets-detail-list .detail-content {
  background: #F2F6F1;
  border-radius: 0;
  padding: 1.25rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}
.assets-detail-list .detail-content :is(.titlebx, .detailbox) {
  font-weight: 400;
  font-size: 1rem;
  color: var(--BlackColor);
}
.assets-detail-list .detail-content :is(.titlebx) {
  max-width: 75%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}
.assets-detail-list .top-title { margin-bottom: 0.9375rem; }




/* .company-summary-wrap .summary-back-btn{margin-bottom:30px;} */
.company-summary-wrap .summary-back-btn a{font-size: 1rem; color: var(--BlackColor); font-weight: 500; display: inline-block;}
.company-summary-wrap .summary-back-btn a:hover{color: var(--PrimaryColor);}

.company-summary-wrap .summary-back-btn svg{margin-right: 5px;}
.company-summary-wrap .summary-back-btn:hover{color: var(--PrimaryColor);}
.company-summary-wrap .top-title {margin: 2rem 0;}
.company-summary-wrap .top-title .company-title{font-size: 3rem;color: var(--PrimaryColor); margin-bottom:5px; line-height: normal;}
.company-summary-wrap .top-title .summery-title{font-weight: 600; font-size: 2rem;color: var(--BlackColor);}

.company-summary-wrap .top-title h4 a{color: var(--PrimaryColor);}

/* .company-summary-wrap .top-title h3{font-weight: 600; font-size: 2.4rem;color: var(---BlackColor); margin-top: 20px;} */
.company-summary-wrap .btn-icon {display: inline-block;}
.company-summary-wrap .company-detail-wrap{background: #F2F6F1; border-radius: 0; padding: 1.5rem;margin-bottom: 1.5rem;}
.company-summary-wrap .detail-list .detail-content{display: flex; padding: 10px; align-items: center;}
.company-summary-wrap .detail-list .titlebx{font-weight: 400; font-size: 1rem; color: #5E5E5E; width: 42%;}
.company-summary-wrap .detail-list .detailbox{font-weight: 600; font-size: 1rem; color: var(--BlackColor);width: 58%; word-break: break-all;}
.company-summary-wrap .detail-list .detailbox a{color: var(--PrimaryColor);}
.company-summary-wrap .detail-list .view-all{color: var(--PrimaryColor); font-weight: 400; font-size:1rem}
.company-summary-wrap .detail-list p{font-size: 16px; font-weight: 400; line-height: 26px; color:var(--BlackColor)}
.company-summary-wrap .additional-information{background: var(--WhiteColor); border: 1px solid #0000001A; border-radius: 0; padding: 1.5rem;}

.company-summary-wrap  h3{    font-weight: 700;
    font-family: "Rajdhani", sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--PrimaryColor);
    margin-top: 1.25rem;}

.company-summary-wrap .additional-information ul li{font-weight: 400; font-size: 1rem;color: var(--BlackColor); padding: 7px 0;}
.company-summary-wrap .additional-information .view-all-btn{color: var(--PrimaryColor); font-weight: 500; font-size: 2rem; margin-top: 25px;}
.company-summary-wrap .gray-border-top{  border-top: 1px solid #0000001A; margin-top: 15px; padding-top: 20px !important;}
.company-summary-wrap .org-summary-title { display: flex; align-items: center; }
.company-summary-wrap .org-summary-title .company-logobx {border: 1px solid #0000001A; border-radius: 8px; width:100%; max-width: 70px; min-width:70px; height: 70px; text-align: center; background: #fff; padding: 6px; }
.company-summary-wrap .org-summary-title .text-bx {margin-left: 15px;}
.company-summary-wrap .org-summary-title .company-logobx img { width: 100%; height: 100%; object-fit: contain; border-radius: 8px; }
/* .company-summary-wrap .org-summary-title .same-heading {padding-left: 20px;} */
/* .company-summary-wrap .org-summary-title .text-bx :is( h3, p) {margin-bottom: 0;} */




.email-note{font-size: 14px; color: var(--BlackColor); font-weight: 500; display: inline-block; margin-top: 13px;}
.reputation-score-content {background: var(--WhiteColor);
    border: 1px solid #0000001A;
    border-radius: 0;
    padding: 1.25rem;
    margin-top: 1.25rem; }
.reputation-score-content p {    font-weight: 500;
    font-size: 1rem;
    color: #403F3F;}
.reputation-score-content .progress {background-color: #D9D9D9; border-radius: 100px; margin: 15px 0 25px; }
.reputation-score-content .progress-bar { background: var(--PrimaryColor); border-radius: 100px; }
.reputation-score-content .reputation-list {     display: flex;
    flex-wrap: wrap;
    margin: 0 -0.125rem;}
.reputation-score-content .reputation-list li {
    width: 32.40%;
    border: 0.0625rem solid #AFAFAF;
    border-radius: 0.3125rem;
    font-weight: 500;
    font-size: 1rem;
    color: var(--BlackColor);
    padding: 0.875rem 2.625rem 0.875rem 1.125rem;
    margin: 0.3125rem;

}
.reputation-score-content .reputation-list li svg{color: #000; width: 1rem;    margin-right: 0.4rem;}

.reputation-score-content  .reputation-list li.selected{color: var(--PrimaryColor);}
.reputation-score-content  .reputation-list li.selected svg{color: var(--PrimaryColor);}





.score-graph-outer {width: 100%; max-width: 383px; margin: 8rem auto 0;}
.score-graph-outer h4 { font-size: 0.5vw; color: var(--BlackColor); font-weight: 400; line-height: 1.6; }
.score-graph-outer .no-bx { font-weight: 600; font-size: 0.8vw; color: var(--BlackColor); }
.score-graph-outer .cell-title { font-weight: 500; font-size: 0.6vw; color: var(--WhiteColor); padding: 0 0.3vw; }
.score-graph-outer .score-graph-inner { display: flex;position: relative;   align-items: center; background: linear-gradient(90deg, #c00 -0.08%, #e9a100 31.31%, #608923 61.13%, var(--PrimaryColor) 89.39%); border-radius: 5px; padding: 7px 6px; width: 100%;  min-height: 31px;}
.score-graph-outer .score-graph-inner .graph-cell { width: 20%; text-align: center; position: relative; }
.score-graph-outer .score-graph-inner .graph-cell .graphcell-innertext { font-weight: 500; font-size: 10px; color: var(--BlackColor); position: absolute; left: 50%; transform: translateX(-50%); bottom: -33px; }
.score-graph-outer .score-graph-inner .graph-cell .graphcell-innertext:before { width: 1px; background: #716f6f; height: 8px; position: absolute; left: 50%; transform: translateX(-50%); top: -6px; content: ""; }
.score-graph-outer .score-graph-inner .graph-hover-text { border-radius: 3px; padding: 5px; position: absolute; left: 7%; top: -71px; min-width: 68px; filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.2)); background: var(--WhiteColor);  min-height: 50px;}
.score-graph-outer .score-graph-inner .graph-hover-text:before { width: 20px; background: #fff; height: 16px; clip-path: polygon(0 0, 0% 100%, 100% 0); position: absolute; left: 33%; transform: translateX(-50%); bottom: -14px; content: ""; clip-path: polygon(11% 0, 0 100%, 100% 0); box-shadow: 0px 0px 0px #000; }
.score-graph-outer .score-graph-inner .graph-hover-text:after { position: absolute; left: 5px; bottom: -23px; content: ""; width: 10px; height: 10px; border-radius: 50%; border: solid 1px #fff; background: #4e8e58; }
.score-graph-outer .score-static-bx { position: relative; text-align: center; width: 180px; left:50%; }
.score-graph-outer .score-static-bx:nth-child(1) { margin-left: -137px;}
.score-graph-outer .score-static-bx:nth-child(2) {     margin-left: -43px;}
.score-graph-outer .score-static-bx .no-bx { font-size: 12px; } 
.score-graph-outer .score-static-bx .dash-border-top { border: dashed 1px #716f6f; width: 1px; height: 50px; margin: 0 auto; }
.score-graph-outer .score-static-bx hr { border: 1px solid #716f6f; width: 100%; margin: 0 auto 1rem; max-width: 40%; }
.additional-information .reputation-text { margin-top: 2rem; border-top: 1px solid #0000001A; padding-top: 1rem; }
.additional-information .reputation-text  h3{  margin-bottom: 0px;} 
.additional-information .reputation-text .reputation-score{ font-size: 3rem; font-weight: 600; color: var(--BlackColor); margin-bottom: 0;  display: flex; align-items: center;}
.additional-information .reputation-text .reputation-score .badge {     font-weight: 500;
    font-size: 0.875rem;
    padding: 0.3125rem 0.5rem;
    border-radius: 0.3125rem;
    margin-left: 0.3125rem;;}
:is(.no-result, .no-record) { font-size: 18px; color: #8A8A8A; font-weight: 400; font-style: italic;}



.digital-poll-list { background: var(--WhiteColor); border: 1px solid #0000001A; padding: 1.25rem; margin-bottom: 0.75rem; }
.digital-poll-list p { font-size: 1rem; color: var(--BlackColor); margin-bottom: 0; }
.digital-poll-list .expiring-date { font-size: 0.8rem; color: #8A8A8A; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.25rem; }
.digital-poll-list .date-box { font-family: "Rajdhani", sans-serif; font-weight: 700; color: var(--PrimaryColor); font-size: 1.1rem; }

.digital-documents-tabs .nav { margin: 0 1.6875rem; }
.digital-documents-tabs .nav .nav-item .nav-link {
  padding: 0.625rem 0.9375rem;
  font-weight: 400;
  font-size: 1rem;
  color: #494949;
  background: #F2F6F1;
  border-radius: 0.625rem 0.625rem 0 0;
  position: relative;
  min-height: 3.75rem;
  border: 0;
}
.digital-documents-tabs .nav .nav-item:not(:last-child) .nav-link:after {
  position: absolute;
  right: 0;
  top: 50%;
  content: '';
  height: 1.5625rem;
  width: 0.0625rem;
  background: #AEAEAE;
  transform: translateY(-50%);
}
.digital-documents-tabs .nav .nav-item .nav-link.active {
  background: var(--WhiteColor);
  color: var(--BlackColor);
}
.digital-documents-tabs .nav .nav-item .nav-link.active:after { background: var(--WhiteColor); }
.digital-documents-tabs .tab-content {
  background: var(--WhiteColor);
  border: 1px solid #0000001A;
  border-top: 0;
  border-radius: 0;
  padding: 0.9375rem;
}
.digital-documents-tabs .no-file-upload {
  padding: 0.9375rem;
  min-height: 15.625rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.digital-documents-tabs .no-file-upload p {
  font-size: 1.25rem;
  color: #ABABAB;
  margin-top: 0.9375rem;
}
.digital-documents-tabs ul li a {
  font-size: 1.125rem;
  color: var(--BlackColor);
  font-weight: 500;
}


.article-card-wrap .article-card {
  background: var(--WhiteColor);
  border: 1px solid #0000001A;
  border-radius: 0;
  height: 100%;
  padding: 1.8rem;
  margin-bottom: 1.875rem;
}
.article-card-wrap .article-card h3 {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 1.3rem; /* 20.8px */
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--PrimaryColor);
  margin-bottom: 0.6rem; /* ~10px */
}
.article-card-wrap .article-card p {
  font-weight: 400;
  font-size: 1rem; /* 16px */
  color: var(--BlackColor);
  line-height: 1.7;
}
.article-card-wrap .article-card .read-more-btn {
  display: inline-flex;
  align-items: center;
  color: var(--PrimaryColor);
  font-weight: 600;
  font-size: 1rem; /* 16px */
  margin-top: 1.125rem; /* 18px */
}
.article-card-wrap .article-card .read-more-btn:hover {
  color: var(--SecondaryColor);
}
.article-card-wrap .article-card .read-more-btn i {
  margin-left: 0.4375rem; /* 7px */
  font-size: 0.875rem; /* 14px */
}




.profile-detail-wrapper .profile-detail-left{display: flex;flex-wrap: wrap;}
.profile-detail-wrapper .profile-detail-left .profile-img{border: solid 1px #DEDEDE; border-radius: 10px; padding: 1.0417vw; width: 100%; max-width: 250px ; height:100%; min-height:260px; display: flex; align-items: center;  justify-content: center;}
.profile-detail-wrapper .profile-detail-left .profile-img .img-box{width: 147px; height: 147px; border-radius: 50%; overflow: hidden;} 
.profile-detail-wrapper .profile-detail-left .blur-profile .img-box{filter:blur(3px)} 
.profile-detail-wrapper .profile-detail-left .profile-content{width: calc(100% - 250px); padding: 0 3rem; }
.profile-detail-wrapper .profile-detail-left .profile-content .text-box{margin-bottom: 2vw;}
.profile-detail-wrapper .profile-detail-left .profile-content h4{font-size: 1.2rem; color: #282828; font-weight: 600;line-height: normal; }
.profile-detail-wrapper .profile-detail-left .profile-content p{font-size:1rem; color: #282828; font-weight: 500; line-height: normal;     word-break: break-all; } 


.profile-detail-wrapper .right-profilebarcode {width:100%; max-width: 160px; margin:0 auto; text-align: center;}
.profile-detail-wrapper .right-profilebarcode .barcode-img{width:100%; max-width: 160px; height: 160px; border-radius: 10px; overflow: hidden; position: relative;    margin: 0 auto 1rem;}

.profile-detail-wrapper .right-profilebarcode .barcode-img.blur-barcode:before{position: absolute; left: 0; right: 0; top: 0; bottom: 0; content: ''; background: rgba(255, 255, 255, 0.7); }
.profile-detail-wrapper .right-profilebarcode .barcode-img .lock-icon{position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); font-size: 5rem; color: #000; }
.profile-detail-wrapper .right-profilebarcode .barcode-img .lock-icon svg{width: 2rem; height: 2rem;}

.profile-detail-wrapper .right-profilebarcode p{font-size: 14px; color: #000; font-weight: 300; font-style: italic; line-height: normal; margin-bottom: 5px;}
.profile-detail-wrapper .right-profilebarcode a{font-size: 16px; color: var(--PrimaryColor); font-weight: 500; font-style: italic; text-decoration: underline;}

.profile-tab-wrapper .nav .nav-item {padding: 0 0.7813vw;}
.profile-tab-wrapper .nav .nav-item:first-child {padding-left:0;}
.profile-tab-wrapper .nav .nav-item .nav-link { border: 0; background: transparent; font-size: 0.9rem; color: #6B6B6B; font-weight: 600;    line-height: normal;  border-bottom: solid 3px transparent; text-transform: uppercase; padding:0.7813vw;background:var(--WhiteColor); }
.profile-tab-wrapper .nav .nav-item .nav-link.active {border-bottom-color:var(--PrimaryColor); color: var(--PrimaryColor); }
.profile-tab-wrapper .tab-content{background: #F5F5F7; padding: 4rem 0;}
/* .profile-tab-wrapper :is(.organizations-title-box,.certificate-title-box){margin-bottom: 3.1250vw;} */
/* .profile-tab-wrapper :is(.certificate-title-box, .organizations-title-box) h3{font-size: 3rem; color: #282828; font-weight: 600; line-height: normal; margin-bottom: 0;} */
.profile-tab-wrapper :is(.certificate-title-box, .organizations-title-box) .view-certificate-request{display: flex; align-items: center; justify-content: end;}
.profile-tab-wrapper :is(.certificate-title-box, .organizations-title-box) .view-certificate-request p{font-size: 14px !important; color: #282828; font-weight: 500; line-height: normal; margin: 0 15px; }
.profile-tab-wrapper :is(.certificate-title-box, .organizations-title-box) .view-certificate-request .btn-primaryx{font-size: 14px; border-radius: 50px; padding: 5px 16px;}
.profile-tab-wrapper .certificate-card{border: solid 1px #CAC9C9; background: var(--WhiteColor); padding: 0.5208vw 1.0417vw; border-radius: 10px; position: relative; text-align: center; height: 100%;}
.profile-tab-wrapper .certificate-card .btn-primary{    border-radius: 50px;
    font-size: 0.7rem;
    padding: 0.4rem 1rem;}
.profile-tab-wrapper .view-certificate-request .btn-primary{  border-radius: 50px;
    font-size: 0.7rem;
    padding: 0.4rem 1rem;}

.profile-tab-wrapper .certificate-card .certificate-lock {text-align: right; color: var(--BlackColor);margin: 0 0 0.5rem;}
.profile-tab-wrapper .certificate-card .certificate-lock svg{width: 1.3rem; height: 1.3rem;}
.profile-tab-wrapper :is(.certificate-card, .tabcard-box ) p{font-size: 0.9rem; color: #747474; text-transform: uppercase; font-weight: 600; line-height: normal; }
.profile-tab-wrapper .certificate-card .pdf-iconbx{ color: var(--PrimaryColor);
    margin: 2rem auto; display: flex; align-items: center; justify-content: center; cursor: pointer;} 
.profile-tab-wrapper .certificate-card .pdf-iconbx svg{    width: 3rem;
    height: 3rem;} 
.profile-tab-wrapper .certificate-tab-content .col-lg-3{margin-bottom: 15px;}
.profile-tab-wrapper :is(.certificate-card, .tabcard-box) .btn-primaryx{font-size: 12px; padding: 8px 13px;border-radius: 50px;}






    .app-gallery-section {
    background: #E7ECE1;
    padding: 3rem 0;
}

.app-gallery-title {
    font-family: "Rajdhani", sans-serif;
        font-size: clamp(2.3rem, 3vw, 4rem);
    font-weight: 700;

    text-transform: uppercase;
    color: var(--PrimaryColor);
    margin-bottom: 1.5rem;
}

.app-gallery-grid {
    display: grid;
    align-items: start;
    gap: 14px;
}

.app-gallery-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
}

.app-gallery-col img {
    display: block;
    width: 100%;
    height: auto;
}

/* Only one grid variant is shown at a time, each already balanced
    for its column count so no row is ever left half empty. */
.gallery-tablet,
.gallery-mobile { display: none; }

.gallery-desktop { grid-template-columns: repeat(5, 1fr); }
.gallery-desktop .app-gallery-col:nth-child(1) { margin-top: 0; }
.gallery-desktop .app-gallery-col:nth-child(2) { margin-top: 70px; }
.gallery-desktop .app-gallery-col:nth-child(3) { margin-top: 20px; }
.gallery-desktop .app-gallery-col:nth-child(4) { margin-top: 100px; }
.gallery-desktop .app-gallery-col:nth-child(5) { margin-top: 45px; }

.gallery-tablet { grid-template-columns: repeat(3, 1fr); }
.gallery-tablet .app-gallery-col:nth-child(1) { margin-top: 0; }
.gallery-tablet .app-gallery-col:nth-child(2) { margin-top: 50px; }
.gallery-tablet .app-gallery-col:nth-child(3) { margin-top: 20px; }

.gallery-mobile { grid-template-columns: repeat(2, 1fr); }
.gallery-mobile .app-gallery-col:nth-child(1) { margin-top: 0; }
.gallery-mobile .app-gallery-col:nth-child(2) { margin-top: 36px; }



/* SweetAlert2 Popup */
.swal2-popup {
  width: 100%;
  max-width: 27rem; /* 432px */
  padding: 2.25rem 1rem 0;
  border-radius: 1.25rem;
  box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

/* Header */
.swal2-popup .swal2-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 0 0 1.75rem;
}

/* QR / Image */
.swal2-popup .swal2-image {
  width: 12.5rem !important;
  height: 12.5rem !important;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  background: var(--WhiteColor);
  border: 1px solid #ececec;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
  object-fit: contain;
}

/* Title */
.swal2-popup .swal2-title {
  margin: 1rem auto;
  padding: 0;
  max-width: 21rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--BlackColor);
}

/* Content */
.swal2-popup .swal2-html-container {
  margin: 0;
}

/* Actions */
.swal2-popup .swal2-actions {
  margin: 0;
}

/* Timer */
.swal2-popup .swal2-timer-progress-bar-container {
  position: static;
  height: 0.25rem;
  background: rgba(0, 0, 0, 0.08);
}

.swal2-popup .swal2-timer-progress-bar {
  background: var(--PrimaryColor);
}

/* Close Button */
.swal2-popup .swal2-close {
  top: 0.75rem;
  right: 0.75rem;
  color: #000;
  transition: color 0.2s ease;
}

.swal2-popup .swal2-close:hover {
  color: var(--PrimaryColor);
  background: transparent;
}

.swal2-popup .swal2-close:focus {
  box-shadow: none;
}

/* Loader */
.swal2-popup .swal2-loader {
  margin: 1rem auto;
  border-color: var(--PrimaryColor) transparent var(--PrimaryColor) transparent;
}

/* App Link */
.swal2-popup .app_opener_link {
  margin-top: 0.5rem;
}


/* Mobile */
@media (max-width: 576px) {
  .swal2-popup {
    max-width: calc(100% - 2rem);
    padding: 1.75rem 1rem 0;
    border-radius: 1rem;
  }

  .swal2-popup .swal2-header {
    gap: 1.125rem;
    padding-bottom: 1.25rem;
  }

  .swal2-popup .swal2-image {
    width: 10.625rem !important;
    height: 10.625rem !important;
  }

  .swal2-popup .swal2-title {
    font-size: 1rem;
    max-width: 100%;
  }
}

@media (max-width: 360px) {
  .swal2-popup .swal2-image {
    width: 9rem !important;
    height: 9rem !important;
  }
}





/* ============ Responsive ============ */

@media (max-width: 991px) {
    .app-gallery-section { padding: 2.5rem 0; }
    .gallery-desktop { display: none; }
    .gallery-tablet { display: grid; }
}

@media (max-width: 767px) {
    .app-gallery-section { padding: 2rem 0; }
    /* .app-gallery-title { margin-bottom: 1rem; } */
    .gallery-tablet { display: none; }
    .gallery-mobile { display: grid; gap: 10px; }
    .gallery-mobile .app-gallery-col { gap: 10px; }
}

@media (max-width: 480px) {
    .app-gallery-section { padding: 1.5rem 0; }
    .gallery-mobile { gap: 8px; }
    .gallery-mobile .app-gallery-col { gap: 8px; }
}






