*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
/* Color Palette & Global Variables */
:root {
  --primary: #00AFAA;       /* Your signature brand color */
  --primary-hover: #008b88; /* Darker tone for elegant hover effects */
  --text: #334155;          /* Slate gray for clean text readability */
  --text-dark: #1e293b;
   --dark: #0f172a;
  --white: #ffffff;
  --bg-light: #f4fbfb;      /* Tinted light background using your brand hue */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
body{
	user-select: none;
	height: 100vh;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	width: 100%;
	-webkit-font-smoothing: antialiased;
}
html{
    scrollbar-gutter: stable;
    scroll-behavior: smooth;
}
/*body.active{
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
}
body.active-right{
    overflow: hidden;
    background: #fff;
}*/
button:disabled {
    cursor: not-allowed;
    pointer-events: none;
    filter: grayscale(0.2);
}
.non_click_back_blank {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent; 
    z-index: 99999999;
    display: none;
}

/*Button Inside Small Dot Loader*/
.small-dot-loader {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.small-dot-loader span {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    animation: smalldDotBlink 1.2s infinite ease-in-out both;
}
.small-dot-loader span:nth-child(2) {
    animation-delay: 0.2s;
}
.small-dot-loader span:nth-child(3) {
    animation-delay: 0.4s;
}
@keyframes smalldDotBlink {
    0%, 80%, 100% {
        transform: scale(0.6);
        opacity: 0.3;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}
/* --- Master Page Loader Layout --- */
.page-loader-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:transparent;
    display:flex;
    align-items:center;
/*    backdrop-filter: blur(1px);*/
    justify-content:center;
    z-index:99999999;
    opacity:0;
    visibility:hidden;
    transition:.25s;
}
.page-loader-overlay.active{
    opacity:1;
    visibility:visible;
}
.loader-content{
    width:100px;
    height:100px;
    background:#fff;
    border-radius:25px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}
.multi-dot-loader{
    position:relative;
    width:35px;
    height:35px;
    animation:rotateDots 1.2s linear infinite;
}
.multi-dot-loader span{
    position:absolute;
    width:12px;
    height:12px;
    border-radius:50%;
}
.multi-dot-loader span:nth-child(1){
    background:#ff4d4f;
    top:0;
    left:50%;
    transform:translateX(-50%);
}
.multi-dot-loader span:nth-child(2){
    background:#F58634;
    bottom:0;
    left:0;
}
.multi-dot-loader span:nth-child(3){
    background:#00AFAA;
    bottom:0;
    right:0;
}
@keyframes rotateDots{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}
/*Toats Showing Style*/
.toast {
    position: fixed;
    bottom: 50px; 
    left: 50%;
    transform: translateX(-50%) translateY(30px); 
    background: rgba(33, 33, 33, 0.95); 
    backdrop-filter: blur(4px); 
    -webkit-backdrop-filter: blur(4px);
    color: #ffffff;
    height: 30px; 
    padding: 0 15px;
    width: max-content; 
    max-width: 85%; 
    border-radius: 50px; 
    font-size: 12px;
    font-family: Roboto, -apple-system, sans-serif; 
    font-weight: 400;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s cubic-bezier(0, 0, 0.2, 1),
                visibility 0.25s cubic-bezier(0, 0, 0.2, 1),
                transform 0.25s cubic-bezier(0, 0, 0.2, 1);
    z-index: 99999999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.3px;
    gap: 8px;
    white-space: nowrap;
}
.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.toast.success {
    background: rgba(16, 185, 129, 0.98); 
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}
.toast.error {
    background: rgba(239, 68, 68, 0.98); 
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.3);
}
/* Index Page header design  */
header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(10px);
}
.container-header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.sidebar-index-header,
.menu-text-left,
.menu-text-right,
.version-side-bar,
.home-hide{
	display: none;
}
.nav-links > a  .menu-icon-content {
        display: none !important;
    }
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}
.logo a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1.2rem;
  text-decoration: none;
  letter-spacing: -0.3px;
  font-weight: 700;
  color: #504F50;
  transition: var(--transition);
}
.logo img {
  height: 30px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}
.nav-links > a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}
.nav-links > a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary);
  transition: var(--transition);
}
.nav-links > a:hover::after {
  width: 100%;
}
.nav-links > a:hover {
  color: var(--primary);
}
.nav-links > a.active {
    color: var(--primary) !important;
}
.nav-links > a.active::after {
    width: 100%;
}
.btn-primary-header {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  justify-content: center;
  text-align: center;
  background-color: var(--white);
  color: var(--primary) !important;
  height: 37px;
  width: 120px;
  line-height: 37px;
  border-radius: 25px;
  font-size: 0.85rem;
  border: 1px solid var(--primary);
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 175, 170, 0.25);
  transition: var(--transition);
}
.btn-primary-header:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 175, 170, 0.35);
  color: var(--white) !important
}
.btn-primary-header.active{
	background-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 175, 170, 0.35);
  color: var(--white) !important
}
.btn-primary-header i {
  font-size: 0.6rem;
  color: #504F50;
}
.btn-primary-header.active i {
  font-size: 0.6rem;
  color: #fff;
}
.animated-dot-pulse {
    position: relative;
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 5px; 
    background-color: #F80747; 
    border-radius: 50%;
    vertical-align: middle;
}
.animated-dot-pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #F80747;
    opacity: 0.8;
    animation: frequency-wave 1.5s infinite ease-out;
}
.animated-dot-pulse.active {
    background-color: var(--white); 
}
.animated-dot-pulse.active::after {
    background-color: var(--white);
}
@keyframes frequency-wave {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(3.5); 
        opacity: 0;           
    }
}
.btn-primary-header:hover .animated-dot-pulse {
  background-color: var(--white); 
}
.btn-primary-header:hover .animated-dot-pulse::after {
  background-color: var(--white);
}
.btn-primary-header:hover  i {
  color: var(--white); 
}
.dropdown-header {
  position: relative;
}
.dropdown-menu-header {
  position: absolute;
  top: calc(100% + 20px);
  right: 0; 
  min-width: 180px;
  background: var(--white);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 1010;
}
.dropdown-menu-header::before {
  content: '';
  position: absolute;
  top: -6px;           
  right: 24px;          
  width: 12px;
  height: 12px;
  background: var(--white);
  transform: rotate(45deg);
  border-left: 1px solid rgba(0, 0, 0, 0.04);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  z-index: -1;          
}
.dropdown-menu-header a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px;
  border-radius: 8px;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}
.dropdown-menu-header a i {
  color: var(--primary);
  font-size: 0.8rem;
  margin-top: 2px;
}
.dropdown-menu-header a:hover {
  background: var(--bg-light);
  color: var(--primary);
}
.dropdown-menu-header.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.animated-mob-pulse{
	display: none;
}
.menu-toggle {
  display: none;
 }

/* INDEX PAGE */
.container-web-page {
  max-width: 1280px;
  margin: 0 auto;
  background: #FBFBFB;
}
.hero-index-page {
  padding: 80px 24px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(0, 175, 170, 0.08) 100%);
}
.hero-grid-index {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}
.hero-badge-index {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #E0F7F6;
  color: #008B87;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-index-page h1 {
  font-size: 3rem;
  line-height: 1.2;
  color: #1e293b;
  margin-bottom: 18px;
  letter-spacing: -1px;
}
.hero-index-page h1 span:nth-of-type(1) {
  color: #049C98; 
}
.hero-index-page h1 span:nth-of-type(2) {
  color: #F58634; 
}
.hero-index-page h1 span:nth-of-type(3) {
  color: #10b981; 
}
.hero-index-page p {
  font-size: 1.15rem;
  color: #64748b;
  line-height: 27px;
  margin-bottom: 32px;
}
.primary-index-btn-box
{
	display: flex; 
	gap: 20px; 
	flex-wrap: wrap;
}
.btn-primary-index, .btn-outline-index {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 15px;
}
.btn-primary-index {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0, 175, 170, 0.3);
}
.btn-primary-index:hover {
  background: #008B87;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -10px rgba(0, 175, 170, 0.25);
}
.btn-outline-index {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-index:hover {
  background: #E0F7F6;
  transform: translateY(-2px);
}
.hero-stats-index {
  display: flex;
  gap: 32px;
  margin-top: 40px;
}
.stat-index {
  text-align: left;
}
.stat-number-index {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}
.hero-code-index {
  padding: 0px 10px;
  text-align: center;
  position: relative;
}
.hero-code-index h3 {
  font-size: 1.1rem;
  color: #1e293b;
  text-align: left;
  margin-bottom: 15px;
}
.hero-code-index h3 i  {
	color: var(--primary);
}
.card-example-code-index {
    background-color: #3F3F3E;
    color: #f8fafc;
    padding: 20px;
    height: 350px;
    margin: auto;
    border-radius: 10px;
    font-family: 'Consolas', 'Monaco', 'Fira Code', 'Cascadia Code', monospace;
    position: relative;
    transition: all 0.5s;
}
.card-example-code-index:hover {
  transform: translateY(-3px);
}
.code-header-index {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 3px;
    border-bottom: 1px solid #3c3c3c;
    flex-wrap: wrap;
    gap: 12px;
    line-height: 1.5;
}
.badge-typing-index {
    background: #282928;
    color: #b3e4ff;
    font-size: 0.70rem;
    padding: 4px 12px;
    border-radius: 40px;
    font-family: monospace;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.php-code-index {
    display: block;
    white-space: pre-wrap;
    word-break: break-word;
    font-family: inherit;
    font-size: 0.75rem;
    line-height: 1.60;
    text-align: left;
    background: transparent;
    position: relative;
}
.index-pre #phpCode .hljs-keyword,
.index-pre #phpCode .hljs-meta {
  color: #EF4A09; 
  font-weight: bold;
}
.index-pre #phpCode .hljs-variable {
  color: #50fa7b; 
}
.index-pre #phpCode .hljs-string {
  color: #f1fa8c; 
}
.index-pre #phpCode .hljs-attr,
.index-pre #phpCode .hljs-property {
  color: #8be9fd; 
}
.index-pre #phpCode .hljs-title.function_,
.index-pre #phpCode .hljs-keyword + .hljs-title,
.index-pre #phpCode .hljs-built_in {
  color: #ffb86c; 
}
.index-pre #phpCode .hljs-comment {
  color: #94a3b8; 
  font-style: italic;
}
.index-pre #phpCode .hljs-number,
.index-pre #phpCode .hljs-literal {
  color: #bd93f9; 
}
.wapp-float-badge-index {
  position: absolute;
  background: #ffffff;
  padding: 10px 16px;
  border-radius: 14px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
  font-size: 0.7rem;
  font-weight: 600;
  color: #1a1a2e;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #eef4f4;
  animation: wapp-float 3s ease-in-out infinite;
}
.wapp-float-badge-index i {
  color: #00AFAA;
  font-size: 1rem;
}
.wapp-float-badge-index.wapp-b1 {
  top: 30%;
  right: 10px;
  animation-delay: 0s;
}
.wapp-float-badge-index.wapp-b2 {
  bottom: 20%;
  left: -12%;
  animation-delay: 1.5s;
}
.services-index-section{
	padding: 80px 24px;
}
.section-title-index {
  font-size: 2.2rem;
  text-align: center;
  color: #464544;
  margin-bottom: 50px;
  letter-spacing: -0.3px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  position: relative;
  padding-bottom: 15px;
}
.section-title-index:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;                    
  transform: translateX(-50%);   
  height: 3px;                   
  width: 80px;                  
  background: linear-gradient(90deg, #00AFAA 0%, #F58634 100%); 
  border-radius: 50px;     
  overflow: hidden;      
}
.cards-grid-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card-index {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 12px;;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}
.service-card-index:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(0, 175, 170, 0.10);
  border-color: #E0F7F6;
}
.service-icon-index {
  width: 56px;
  height: 56px;
  background: #E0F7F6;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 24px;
  margin-bottom: 20px;
}
.service-card-index h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #4D4C4B;
}
.service-card-index p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 24px;
}
.services-index-section-suite {
  padding: 100px 24px;
  background: #ffffff;
}
.section-title-subtitle {
  font-size: 2.2rem;
  text-align: center;
  color: #464544;
  margin-bottom: 15px;
  letter-spacing: -0.3px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
.section-subtitle-index {
  text-align: center;
  color: #616060;
  font-size: 1.05rem;
  line-height: 26px;
  max-width: 800px;
  margin: 0 auto 50px;
}
.list-grid-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
  gap: 16px;
  margin-top: 30px;
}
.list-item-index {
  background: #ffffff;
  padding: 14px 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;                     
  border: 1px solid #e2e8f0;
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 500;
  color: #1e293b;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.list-item-index i {
  color: #00AFAA;                 
  background-color: rgba(0, 175, 170, 0.1); 
  width: 42px;                   
  height: 42px;
  border-radius: 10px;            
  display: inline-flex;           
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.25s ease;
  flex-shrink: 0;                
}
.list-item-index:hover {
  border-color: #00AFAA;
  background: #ffffff;            
  transform: translateY(-2px);    
  box-shadow: 0 10px 15px -3px rgba(0, 175, 170, 0.08);
}
.list-item-index:hover i {
  background-color: #00AFAA;
  color: #ffffff;
}
.cards-grid-index-r {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  text-align: center;
}
.service-card-index-r {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 12px;;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}
.service-card-index-r:hover {
  box-shadow: 0 20px 40px -10px rgba(0, 175, 170, 0.15);
  border-color: #E0F7F6;
}
.service-icon-index-r {
  width: 56px;
  height: 56px;
  background: #E0F7F6;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 14px;
  font-size: 24px;
  margin: auto;
  margin-bottom: 20px;
}
.service-card-index-r h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #4D4C4B;
}
.service-card-index-r p {
  color: #64748b;
  line-height: 22px;
  font-size: 0.95rem;
}
.section-bottomtitle-index {
  text-align: center;
  color: #616060;
  font-size: 1.1rem;
  padding-top: 30px;
  letter-spacing: -0.2px;
  line-height: 26px;
  max-width: 1000px;
  margin: 0 auto 50px;
}
.services-index-section-java{
	padding: 30px 24px;
}
.back-index-section-java
{
  display: flex;
  align-items: center;    
  gap: 50px;
  margin: 0 auto;
  background: rgba(0, 175, 170, 0.03);
  border: 1px solid rgba(0, 175, 170, 0.12);
  border-radius: 20px;
  padding: 20px 24px;
  flex-direction: row;
}
.left-android-icon-index {
  flex-shrink: 0;        
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;            
  max-width: 300px;
  height: 320px;
}
.left-android-icon-index img {
 height: 230px;     
}
.app-showcase-index {
  padding: 60px 40px;
  border-left: 1px solid rgba(0, 175, 170, 0.12);
  font-family: system-ui, -apple-system, sans-serif;
}
.app-showcase-index h2 {
  font-size: 2rem;
  color: #5B5C5C;
  margin: 0 0 16px 0;
  max-width: 800px;
  margin: auto;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.app-showcase-index > p:first-of-type {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 36px;
}
.app-showcase-index > div:first-of-type {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px 24px;
  margin: 0 auto 40px;
  text-align: left; 
}
.app-showcase-index > div:first-of-type div {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #334155;
  background: #ffffff;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.01);
}
.app-showcase-index > div:first-of-type div i {
  color: #00AFAA; 
  font-size: 1.1rem;
}
#buy-btn-index-java-box
{
	max-width: 800px;
	margin: auto;
}
.btn-android-java-index {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: auto;
  background-color: #00AFAA;
  color: #ffffff !important;
  padding: 14px 25px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 175, 170, 0.2);
  transition: all 0.25s ease-in-out;
  margin-bottom: 35px;
}
.btn-android-java-index:hover {
  background-color: #008b88;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 175, 170, 0.3);
}
.app-showcase-index > p:last-of-type {
  font-size: 0.85rem;
  font-weight: 500;
  color: #64748b;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap; 
}
.app-showcase-index > p:last-of-type i {
  color: #12C98C; 
  font-size: 0.85rem;
  margin-top: 2px;
}
.container-index-price-section{
	padding: 120px 24px;
}
.plan-tittle-price-index {
  font-size: 2.3rem;
  margin: auto;
  text-align: center;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  display: block; 
  color: #31302F;
}
.plan-subtitle-price-index {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.6;
  max-width: 700px;
  text-align: center;
  margin: auto;
  margin-bottom: 100px;
}
.pricing-cards-index {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  justify-content: center;
  margin-top: 40px;
}
.pricing-card-index {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 15px;
  border: 1.5px solid #e2e8f0;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}
.pricing-card-index:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
}
.pricing-card-index.featured {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 20px 40px -10px rgba(0, 175, 170, 0.25);
}
.pricing-card-index.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.pricing-card-index::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary);
  color: white;
  height: 150px;
  width: 150px;
  opacity: 0.02;
  border-radius: 50%;
  border: 20px solid #51504F;
}
.pricing-card-index h3 {
  font-size: 1.2rem;
  color: #46494F;
  letter-spacing: -0.2px;
  margin-bottom: 18px;
}
.pricing-card-index p {
  font-size: 0.85rem;
  color: #46494F;
}
.price-index-plan {
  font-size: 2.8rem;
  font-weight: 800;
  max-width: 190px;
  color: var(--primary);
  margin: 10px auto;
  position: relative;
  padding-left: 10px;
   border-bottom: 1px solid #EBEEF7;
   padding-bottom: 5px;
}
}
.price-index-plan label {
  font-size:1.2rem;
  color: #26D2CD;
  font-weight: 700;
  position: absolute;
  top: 12px;
  left: 0;
}
.price-index-plan span {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 400;
}
.pricing-card-index ul {
  list-style: none; 
  margin: 10px 0; 
  position: relative;
  z-index: 1;
  text-align: left;
}
.pricing-card-index li {
  padding: 8px 0;
  color: 64748b;
  font-size: 0.85rem;
}
.pricing-card-index li i {
  margin-right: 5px;
  color: var(--primary);
}
.service-link-index-price
{
	text-decoration: none;
	color: #1375C2;
	font-size: 0.8rem;
}
.service-link-index-price:hover{
	color: #0D60A3;
}
._ahsp_offer {
    background: #F5FBF7;
    padding: 10px 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: left;
}
._ahsp_offer_top {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 3px;
}
._ahsp_offer_dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 2s infinite ease-in-out;
}
._ahsp_offer_lbl {
    font-weight: 600;
    color: #1AB854;
    font-size: 0.7rem;
    letter-spacing: 0.2px;
}
._ahsp_offer_time {
    font-size: 0.6rem;
    color: #334155;
    font-weight: 400;
    padding-left: 14px;
}
.btn-plan-started, .btn-plan-started-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 100%;
  border-radius: 50px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
  font-size: 14px;
}
.btn-plan-started {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0, 175, 170, 0.3);
}
.btn-plan-started:hover {
  background: #008B87;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -10px rgba(0, 175, 170, 0.25);
}
.btn-plan-started-outline {
  background: transparent;
  color: #079B97;
  border-color: #A6F0EE;
}
.btn-plan-started-outline:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
}
.container-patra-play-index{
	padding: 100px 24px;
}
.playstore-wrapper-index {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 100%);
    border: 1px solid #dff7f6;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 80px 40px;
    position: relative;
    box-shadow:
        0 10px 30px rgba(0, 175, 170, 0.02),
        0 25px 60px rgba(15, 23, 42, 0.01);
}
.playstore-wrapper-index::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(0, 175, 170, 0.08);
    border-radius: 50%;
    top: -120px;
    right: -80px;
    filter: blur(20px);
}
.playstore-mobile-index {
    flex: 1;
    text-align: left;
    position: relative;
    z-index: 2;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.playstore-mobile-index img {
    height: 250px;
    filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.18));
    animation: floatPhone 4s ease-in-out infinite;
}
.playstore-content-index {
    flex: 2;
    position: relative;
    z-index: 2;
}
.playstore-badge-index {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e6fffb;
    color: #008b87;
    border: 1px solid #c9f7f5;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}
.playstore-content-index h2 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 18px;
    font-weight: 800;
    color: #505252;
}
.playstore-content-index p {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 20px;
}
.playstore-features-index {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 35px;
}
.playstore-features-index div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #334155;
    font-weight: 500;
}
.playstore-features-index i {
    color: #00AFAA;
    margin-top: 2px;
}
.playstore-btn-index {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #00AFAA 0%, #008b87 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
    box-shadow:
        0 10px 25px rgba(0, 175, 170, 0.28),
        0 4px 10px rgba(0, 0, 0, 0.03);
}
.playstore-btn-index:hover {
    transform: translateY(-4px);
    box-shadow:
        0 18px 35px rgba(0, 175, 170, 0.25),
        0 8px 18px rgba(0, 0, 0, 0.05);
}
.playstore-btn-index i {
    font-size: 18px;
}
@keyframes floatPhone {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}
.app-live-price-btn-index {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #E3E9F1 0%, #CDD2D7 100%);
    color: #000;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
    margin-left: 30px;
    box-shadow:
        0 10px 25px rgba(0, 175, 170, 0.28),
        0 4px 10px rgba(0, 0, 0, 0.03);
        border: 1px solid #00AFAA;
}
.app-live-price-btn-index:hover {
  background: linear-gradient(135deg, #00AFAA 0%, #008b87 100%);
    transform: translateY(-4px);
    box-shadow:
        0 18px 35px rgba(0, 175, 170, 0.25),
        0 8px 18px rgba(0, 0, 0, 0.05);
        color: #fff;
        border-color: #00AFAA;
}
.app-live-price-btn-index i {
    font-size: 18px;
}
.container-contact-index{
	padding: 0 24px;
	padding-bottom: 100px;
}
.contact-form-header-index{
    	  width: 100%;
        margin:  auto;
        overflow: hidden;
    }
    .contact-form-header-index h2 {
        font-size: 1.9rem;
        font-weight: 700;
        margin-bottom: 12px;
        color: #505252;
        letter-spacing: -0.2px;
        border-left: 5px solid #00AFAA;
        padding-left: 18px;
        position: relative;
    }
    .contact-form-header-index p {
        color: #475569;
        margin-bottom: 28px;
        line-height: 1.9;
        font-size: 0.95rem;
        padding-left: 23px;
    }
.contact-container-index {
        width: 100%;
        margin: 30px auto;
        border-radius: 30px;
        background: #F3F5F4;
        border: 1px solid #E7E8E9;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        background-image: url('icon/bg-4.jpg');
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: center;
    }
    .contact-grid-index {
        display: flex;
        flex-wrap: wrap;
        gap: 50px;
        align-items: stretch;
    }
    .contact-image-box-index {
        flex: 1.5;
        overflow: hidden;
    }
    .contact-form-box-index {
        flex: 1;
        background: #ffffff;
        border-top-right-radius: 30px;
        border-bottom-right-radius: 30px;
        padding: 40px 32px;
        border-left: 1px solid #E3E0E1;
    }
    .form-row-index {
        display: flex;
        gap: 20px;
        margin-bottom: 0;
        flex-wrap: wrap;
    }
    .input-group-index {
        flex: 1;
        margin-bottom: 20px;
    }
    .input-group-index label {
        display: block;
        font-weight: 400;
        font-size: 0.80rem;
        margin-bottom: 8px;
        color: #5A5B5A;
    }
    .input-group-index label i {
        color: #00AFAA;
        width: 10px;
        margin-right: 5px;
    }
    .input-group-index input,
    .input-group-index textarea {
        width: 100%;
        padding: 12px 10px;
        border: 1px solid #D6DBE1;
        border-radius: 14px;
        font-family: 'Inter', sans-serif;
        font-size: 0.8rem;
        transition: all 0.2s;
        color: #474445;
        background: #fefefe;
    }
    .input-group-index input:focus,
    .input-group-index textarea:focus {
        outline: none;
        border-color: #00AFAA;
        box-shadow: 0 0 0 6px rgba(0, 175, 170, 0.04);
    }
.input-group-index input::placeholder,
.input-group-index textarea::placeholder{
  color: #DFDEDE;
}
.custom-select-sales{
    position:relative;
    width:100%;
    font-family:inherit;
}
.dropdown-selected-sales{
    padding: 11px 10px;
    border: 1px solid #D6DBE1;
    border-radius:14px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:space-between;
    cursor:pointer;
    font-size: 0.8rem;
    color:#DFDEDE;
    transition:.25s;
}
.dropdown-selected-sales::after {
    content: "\f107"; 
    font-family: "Font Awesome 6 Free"; 
    font-weight: 900; 
    font-size: 12px;
    display: inline-block; 
    margin-left: 8px;      
    transition: 0.25s;
}
.custom-select-sales.active .dropdown-selected-sales{
    border-color: #00AFAA;
    box-shadow: 0 0 0 6px rgba(0, 175, 170, 0.04);
}
.custom-select-sales.active .dropdown-selected-sales::after{
    transform:rotate(180deg);
}
.dropdown-menu-sales{
    position:absolute;
    top:calc(100% + 8px);
    left:0;
    right:0;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:8px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    overflow:hidden;
    opacity:0;
    visibility:hidden;
    transform:translateY(-8px);
    transition:.25s;
    z-index:1000;
}
.custom-select-sales.active .dropdown-menu-sales{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}
.dropdown-menu-sales div{
    padding: 7px 15px;
    cursor:pointer;
    font-size:12px;
    font-weight:400;
    color:#1e293b;
    display: flex;
    gap: 7px;
    transition:.2s;
}
.dropdown-menu-sales div i  
{
	font-size: 11px;
	margin-top: 4px;
}
.dropdown-menu-sales div:hover{
    background:#f8fafc;
    color:#038D89;
}
.dropdown-menu-sales div:not(:last-child){
    border-bottom:1px solid #f1f5f9;
}
.input-group-index textarea {
width: 100%;
height: 125px; 
resize: none;
box-sizing: border-box;
font-family: 'Inter', sans-serif;
line-height: 1.5;
color: #1a1a1a;
background-color: #ffffff;
border-radius: 14px;
transition: all 0.2s ease-in-out;
}
.input-group-index textarea::-webkit-scrollbar {
width: 4px;
}
.input-group-index textarea::-webkit-scrollbar-track {
background: transparent;
}
.input-group-index textarea::-webkit-scrollbar-thumb {
background: #e5e7eb;
border-radius: 10px;
}
.input-group-index textarea::-webkit-scrollbar-thumb:hover {
background: #d1d5db;
}
 .btn-submit-index {
        background: linear-gradient(105deg, #00AFAA 0%, #008b86 100%);
        color: white;
        border: none;
        height: 50px;
        width: 100%;
        border-radius: 50px;
        font-weight: 400;
        font-size: 0.95rem;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        letter-spacing: -0.3px;
        justify-content: center;
        gap: 5px;
        width: 100%;
        transition: all 0.2s;
        margin-top: 8px;
        box-shadow: 0 4px 12px rgba(0, 175, 170, 0.3);
    }
     .btn-submit-index i 
     {
     	font-size: 0.8rem;
     	margin-top: 3px;
     }
    .btn-submit-index:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 22px rgba(0, 175, 170, 0.4);
    }
    .btn-submit-index.disable {
        background: #e2e8f0 !important; 
        color: #94a3b8 !important;     
        cursor: default !important; 
        box-shadow: none !important;
        border-color: #e2e8f0;
        border: 1px solid #e2e8f0;
        transform: translateY(0px);
    }
    .form-note-index {
        font-size: 0.75rem;
        text-align: center;
        margin-top: 18px;
        color: #C5C5C5;
    }
.popup-overlay-index-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.1); 
    display: flex;
    align-items: center;
    backdrop-filter: blur(2px);
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.popup-overlay-index-page.active {
    opacity: 1;
    visibility: visible;
}
.popup-box-index {
    background: #ffffff;
    padding: 30px;
    width: 90%;
    max-width: 420px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: scale(0.8); 
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}
.popup-overlay-index-page.active .popup-box-index {
    transform: scale(1);
    opacity: 1;
}
.popup-close-index {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 32px;
    height: 32px;
    line-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    border-radius: 50%;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
}
.popup-close-index:hover {
    background: #f1f5f9;
    color: #00AFAA;
}
.popup-icon-index {
    width: 60px;
    height: 60px;
    background: #00AFAA;
    color: white;
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    margin-top: 10px;
}
.popup-box-index h2 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #0f172a;
    font-family: system-ui, -apple-system, sans-serif;
}
.popup-box-index p {
    color: #64748b;
    margin-bottom: 20px;
    font-size: 14px;
    font-family: system-ui, -apple-system, sans-serif;
}
.ticket-box-index {
    background: #f1f5f9;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 15px;
    color: #0f172a;
    font-family: monospace; 
}

/* All page footer design */
footer {
  background-color: #f3f5f7;
  color: #475569;
  padding: 80px 0 30px 0;   
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}
.container-footer-web {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 3fr repeat(3, 2fr); 
  gap: 48px;
}
.footer-grid p {
  font-size: 0.95rem;
  max-width: 340px; 
  margin-top: 10px;
  color: #475569;
}
.footer-grid p i {
  color: var(--primary); 
  margin-right: 8px;
  width: 16px;
  text-align: center;
}
footer h3, 
footer h4 {
  color: #0f172a !important; 
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 7px 0;
  letter-spacing: 0.3px;
}footer h3{
  border-left: 3px solid #00AFAA;
  padding-left: 10px;
}footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 5px;
}
footer ul li {
  margin-bottom: 7px;
}
footer ul li a {
  color: #475569 !important; 
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.25s ease-in-out;
  display: inline-block;
}
footer ul li a:hover {
  color: var(--primary) !important;
  transform: translateX(4px); 
}
footer hr {
  border: 0;
  border-top: 1px solid #e2e8f0;
  margin: 48px 0 24px 0;
}
.footer-grid > div:first-child {
    text-align: left;
}
.footer-grid > div:nth-child(2),
.footer-grid > div:nth-child(3) {
    text-align: left;    
    width: max-content;
}

.footer-grid > div:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-end; 
    text-align: left;     
}
.footer-grid > div:last-child ul {
    width: max-content;
}
.footer-grid > div:last-child ul li a:hover {
    transform: translateX(4px) !important; 
}
.footer-grid > div:last-child ul li a:hover {
    transform: translateX(-4px) !important; 
}
.container-footer-web > div:last-child {
  text-align: center;
  font-size: 0.85rem;
  color: #94a3b8; 
  letter-spacing: -0.1px;
}



/*Verfication page design*/
.outer-header-verify{
	background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
}
.container-header-verify {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.navbar-verify {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 55px;
}
.logo-verify a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1.2rem;
  text-decoration: none;
  letter-spacing: -0.3px;
  font-weight: 700;
  color: #504F50;
  transition: var(--transition);
}
.logo-verify img {
  height: 30px;
  width: auto;
  object-fit: contain;
}
.nav-links-verify {
  display: flex;
  align-items: center;
  gap: 25px;
}
.btn-primary-header-verify {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  justify-content: center;
  text-align: center;
  background-color: var(--white);
  color: var(--primary) !important;
  height: 37px;
  width: 140px;
  line-height: 37px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.85rem;
  border: 1px solid var(--primary);
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 175, 170, 0.25);
  transition: var(--transition);
}
.btn-primary-header-verify:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 175, 170, 0.35);
}
.premium-download-btn-v {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 6px 18px;
    border-radius: 30px; 
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 37px; 
    box-sizing: border-box;
    cursor: pointer;
}
.premium-download-btn-v .btn-icon-v i {
    font-size: 1.10rem;
    background: linear-gradient(45deg, #3bccff, #a3ff7d, #ffdd3c, #ff5353);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}
.premium-download-btn-v .btn-text-v {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
    font-family: sans-serif;
}
.premium-download-btn-v .btn-subtitle-v {
    font-size: 0.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #94a3b8;
}
.premium-download-btn-v .btn-title-v {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: -0.2px;
    color: #ffffff;
}
.premium-download-btn-v .btn-shimmer-v {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: shimmer-loop 4s infinite ease-in-out;
}
.premium-download-btn-v:hover {
    transform: translateY(-2px);
    border-color: #00AFAA; 
    box-shadow: 0 6px 20px rgba(0, 175, 170, 0.25);
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
}
.premium-download-btn-v:hover .btn-icon-v i {
    transform: scale(1.1);
}
.premium-download-btn-v:active {
    transform: translateY(0);
}
@keyframes shimmer-loop {
    0% { left: -100%; }
    25% { left: 150%; }
    100% { left: 150%; }
}
.main-wrapper-verify
{
	min-height: 100vh;
	position: relative;
	max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0;
	background: linear-gradient(to right, #00AFAA 50%, #F9F8F1 50%);
}
.main-wrapper-verify::before
{
	content: '';
	position: absolute;
	bottom: -10%;
	right: 0;
	height: 300px;
	width: 200px;
	background-image: url(icon/left_bt.png);
	background-size: 100%;
	opacity: 0.2;
	background-repeat: no-repeat;
	transform: rotate(180deg);
}
.main-wrapper-verify::after{
  content: '';
  position: absolute;
  top: -10%;
  right: 0;
  height: 300px;
  width: 110px;
  background-image: url(icon/shape.png);
  background-size: 100%;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  opacity: 0.1;
  pointer-events: none;
}
.inner-wrapper-verify {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch; 
    gap: 0;
    width: 100%;
    box-sizing: border-box;
}
.align-wrapper-verify {
    flex: 1;
    width: 50%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    position: relative;
}
.right-wrapper-box,
.left-wrapper-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    height: 100%;
    position: relative;
    padding: 50px 0;
}
.inner-wrapper-verify::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 400px;
	width: 250px;
	opacity: 0.5;
	transform: rotate(180deg);
	background-image: url(icon/top_left.png);
	background-size: 100%;
	background-repeat: no-repeat;
}
.inner-wrapper-verify::after
{
	content: '';
	position: absolute;
	bottom: -50px;
	left: -50px;
	height: 100px; 
	width: 100px;
	border: 20px solid gray;
	border-radius: 50%;
	opacity: 0.2;
}
.not-otp-animate-box
{
	height: auto;
	width: 80%;
	margin: auto;
	margin-bottom: 20px;
}
.not-otp-animate-box h1 i {
	color: #00AFAA;
	font-size: 40px;
}
.animated-text{
    position: relative;
    display: inline-block;
    color: #EB0A64;
    z-index: 1;
    overflow: visible;
    font-size: 15px;
    text-transform: capitalize;
    text-shadow:
        0 0 5px #fff,
        0 0 10px #E4FCFB,
        0 0 20px #E4FCFB;
}
.animated-text::before{
    content: '';
    position: absolute;
    inset: -8px;
    background: linear-gradient(
        90deg,
        #A6A4A5,
        #ffffff,
        #E4FCFB,
        #A6A4A5
    );
    background-size: 300% 100%;
    filter: blur(15px);
    z-index: -2;
    animation: glow-bg 3s linear infinite;
}
.animated-text::after{
    content: '';
    position: absolute;
    inset: -30px;
    z-index: -1;
    background:
        radial-gradient(circle, rgba(255,255,255,.9) 0 2px, transparent 3px) 10% 90%/40px 40px,
        radial-gradient(circle, rgba(15,186,181,.8) 0 3px, transparent 4px) 40% 100%/60px 60px,
        radial-gradient(circle, rgba(255,255,255,.8) 0 2px, transparent 3px) 70% 95%/50px 50px,
        radial-gradient(circle, rgba(15,186,181,.9) 0 4px, transparent 5px) 90% 100%/70px 70px;
    animation: bubbles 6s linear infinite;
}
@keyframes glow-bg{
    from{
        background-position: 0% 50%;
    }
    to{
        background-position: 300% 50%;
    }
}
@keyframes bubbles{
    0%{
        transform: translateY(20px);
        opacity: 0;
    }
    20%{
        opacity: 1;
    }
    100%{
        transform: translateY(-35px);
        opacity: 0;
    }
}
.box-input {
  height: auto;
  border: 1px solid #fff;
  background: #fff;
  width: 400px;
  margin: auto;
  box-sizing: border-box;
  border-radius: 20px;
  box-shadow: 0 20px 40px -10px rgba(0, 175, 170, 0.25);
  border: 1px solid rgba(79, 70, 229, 0.1); 
  position: relative;
}
.box-input::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 300px;
  width: 110px;
  background-image: url(icon/shape.png);
  background-size: 100%;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  opacity: 0.08;
  pointer-events: none;
}
.box-input h2
{
	font-family: sans-serif;
	font-size: 20px;
	padding-top: 30px;
	padding-left: 30px;
	color: #382C2F;
	padding-bottom: 10px;
	margin-bottom: 8px;
	border-bottom: 1px solid #EBEBEC;
}
.box-input h2 i{
	color: #00AFAA;
}
.box-input table{
	padding: 50px;
	border:1px solid transparent;
	border-collapse: collapse;
	font-size: 14px;
	width: 100%;
}
.box-input table td 
{
	padding: 5px 30px;
	border:1px solid transparent;
  position: relative;
}
.box-input label
{
	color: #382C2F;
	display: block;
	font-size: 13px;
	font-weight: 400;
}
.box-input input 
{
	height: 45px;
	width:100%;
	border: 1px solid #D3D3D3;
	font-family: 'Inter', sans-serif;
	transition: all 0.2s;
	padding: 0 10px;
	background: #fff;
	color: #382C2F;
	font-size: 14px;
	border-radius: 8px;
	letter-spacing: 0.2px;
	overflow: hidden;
	margin-top: 5px;
	font-family: sans-serif;
	outline: none;
}
.box-input input:focus
{
outline: none;
border-color: #00AFAA;
box-shadow: 0 0 10px 4px rgba(0, 175, 170, 0.1);
}
.box-input input::placeholder{
	color: #E9E9E9;
}
.box-input table td::before{
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 49px;          
    left: 40px;
    transform: translateY(-50%);
    font-size: 12px;
    color: #00AFAA;
    z-index: 2;
    pointer-events: none;
}
.box-input table tr:nth-child(1) td::before{
    content: "\f007";  
}
.box-input table tr:nth-child(2) td::before{
    content: "\f3cd";   
  }
.box-input table tr:nth-child(3) td::before{
    content: "\f2c2";   
}
.box-input table input{
    padding-left: 28px;
}
#create-order-btn,
#epic-create-order-btn {
    height: 50px;
    width: calc(100% - 66px); 
    border: 1px solid #00AFAA;
    padding: 0 8px;
    color: #fff;
    font-size: 14px;
    border-radius: 25px;
    margin-left: 30px;
    margin-right: 30px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 40px;
    letter-spacing: 0.2px;
    background: #00AFAA;
    cursor: pointer;
    font-family: sans-serif;
    transition: all 0.2s ease;
    outline: none;
    border-left: 6px solid #F58634;
    box-sizing: border-box; 
}
#create-order-btn:hover,
#epic-create-order-btn:hover {
    background-color: #008B87; 
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -10px rgba(0, 175, 170, 0.25);
}
#create-order-btn.disable,
#epic-create-order-btn.disable {
			background: #C1CBD9 !important; 
			color: #696D71 !important;     
			cursor: default !important; 
			box-shadow: none !important;
			 transform: translateY(0px);
			border: 1px solid #C1CBD9;
		}
.btn-back-verify {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    text-align: center;
    height: 30px;
    position: absolute;
    right: 30px;
    width: 70px;
    top: 0;
    z-index: 1;
    background-color: #E7EDEC;
    color: #382C2F; 
    font-family: sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #EBEBEC;
    border-radius: 20px; 
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    cursor: pointer;
    margin-top: 50px;
}
.arrow-left-verify {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-left: 2px solid #382C2F;
    border-bottom: 2px solid #382C2F;
    transform: rotate(45deg);
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.btn-back-verify:hover {
    background-color: #fff; 
    color: #00AFAA;
    border-color: #fff;
    box-shadow: 0 4px 14px rgba(0, 175, 170, 0.1);
}
.btn-back-verify:hover .arrow-left-verify {
    border-color: #00AFAA;
    transform: rotate(45deg) translate(2px, -2px);
}
.wrraper-ads-api-service
{
	height: auto;
	width: 100%;
	padding: 0 24px;
}
.wrraper-ads-api-service h3
{
	color: #fff;
	font-family: sans-serif;
	font-size: 15px;
  letter-spacing: 0.3px;
	padding-bottom: 5px;
}
.wrraper-ads-api-service p 
{
	color: #E0F7F6;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0.3px;
	padding-bottom: 10px;
}
.wrraper-ads-api-service a {
	text-decoration: none;
	font-weight: 500;
	color: #eee;
	position: relative;
	display: inline-block; 
	padding: 8px 13px;
	font-size: 12px;
	border-radius: 8px;
	overflow: hidden; 
	background: #0f172a; 
	z-index: 1;
	transition: color 0.2s ease, background-color 0.2s ease;
}
.wrraper-ads-api-service a:hover {
	color: #069490;
	background-color: #fff; 
}
.wrraper-ads-api-service a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 8px;
	padding: 2px; 
		background: linear-gradient(90deg, #ff007f, #00f0ff, #7f00ff, #ff007f);
	background-size: 200% auto; 
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
		animation: border-glow 3s linear infinite;
	pointer-events: none; 
}
@keyframes border-glow {
	0% {
		background-position: 0% center;
	}
	100% {
		background-position: -200% center; 
	}
}
.google-ads-verfiy-page
{
	min-height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	width: 100%;
	margin: 30px auto;
	background: #F9F8F1;
}
.referral-program-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(0, 130, 126, 0.15);
    color: #ffffff; 
    padding: 30px 24px;
    width: 100%;
    margin: 30px auto;
    font-family: 'Arial', sans-serif;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}
.referral-body-ads h3 {
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-size: 16px;
}
.referral-body-ads p {
    color: #E0F7F6; 
    font-size: 13px;
}
.referral-header-ads
{
	margin-bottom: 20px;
}
.badge-referral-ads {
    background: rgba(255, 255, 255, 0.2); 
    color: #ffffff;
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: 40px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.referral-action-ads
{
	margin-top: 20px;
}
.btn-referral-ads {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffff; 
    color: #00AFAA; 
    text-decoration: none;
    padding: 12px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.btn-referral-ads:hover {
    background-color: #E4FCFB; 
    color: #059C98;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 175, 170, 0.2);
}
.btn-referral-ads i {
	margin-top: 3px;
}
.know-verify-box
{
	height: auto;
	width: 100%;
	padding: 0 24px;
	margin: auto;
	position: relative;
}
.know-verify-box h2
{
	font-family: sans-serif;
	font-size: 16px;
	font-family: 'Arial',sans-serif;
	color: #fff;
  letter-spacing: 0.2px;
}
.know-verify-box p
{
	font-family: 'Inter',sans-serif;
	font-size: 12px;
	padding-top: 7px;
	line-height: 19px;
	letter-spacing: 0.3px;
	color: #fff;
  font-weight: 400;
}
.fotter-verify {
    width: 100%;
    padding: 40px 0;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    gap: 50px;
    box-sizing: border-box;
}
.fotter-verify .footer-badge,
.fotter-verify .footer-text {
    flex: 1; 
    display: flex;
    flex-direction: column;
    align-items: center;    
    justify-content: center; 
    text-align: center;      
    padding-top: 40px;
}
.fotter-verify .footer-badge {
    border-top: 1px solid #22C9C4;
}
.fotter-verify .footer-text {
    border-top: 1px solid #e2e8f0;
}
.fotter-verify img {
    max-height: 35px;
    display: block; 
}
.footer-text p
{
	font-family: 'Inter',sans-serif;
	font-size: 12px;
	padding-top: 7px;
	line-height: 19px;
	letter-spacing: 0.3px;
	color: #757575;
}
.footer-text p b  {
	display: flex;
	align-items: center;
	font-size: 13px;
	text-align: center;
	color: #484648;
	padding-top: 5px;
	justify-content: center;
	gap: 5px;
}
.main-container-fail {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(1px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-container-fail.active {
  opacity: 1;
  visibility: visible;
}
.wrapper-fail.popup-card {
  background: #ffffff;
  width: 100%;
  max-width: 420px;
  border-radius: 24px;
  box-shadow: 
    0 30px 60px -12px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(0, 175, 170, 0.1);
  position: relative;
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.main-container-fail.active .wrapper-fail.popup-card {
  transform: scale(1) translateY(0);
}
.close-popup-failed {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f1f5f9;
  color: #64748b;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  z-index: 10;
}
.close-popup-failed:hover {
  background: #00AFAA;
  color: white;
  transform: rotate(90deg);
}
.fail-status-container {
  padding: 48px 32px 24px;
  text-align: center;
}
.fail-ring {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: pulse-ring 2s 1 forwards;
}
.fail-ring::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid #ef4444;
  animation: ring-expand 1.5s ease-out 1 forwards;
}
.fail-ring i {
  font-size: 42px;
  color: #ef4444;
  animation: shake 0.5s ease-in-out 0.3s;
}
@keyframes pulse-ring {
 0%, 100% { transform: scale(1); }
 50% { transform: scale(1.05); }
}
@keyframes ring-expand {
 0% { transform: scale(0.8); opacity: 1; }
 100% { transform: scale(1.3); opacity: 0; }
}
@keyframes shake {
 0%, 100% { transform: translateX(0); }
 25% { transform: translateX(-5px); }
 75% { transform: translateX(5px); }
}
.fail-status-container h1 {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  font-family: 'Segoe UI', -apple-system, sans-serif;
}
.fail-status-container p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}
.payment-note-failed {
  background: #f0fdfa;
  border-top: 1px solid #ccfbf1;
  padding: 20px 28px;
  margin-top: 8px;
}
.payment-note-failed p {
  font-size: 13px;
  color: #0f766e;
  line-height: 1.5;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.payment-note-failed p::before {
  content: "ℹ";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #00AFAA;
  color: white;
  border-radius: 50%;
  font-size: 11px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}
body.activeV{
	overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

/* ====== Success Page - Premium Design ====== */
.main-container-success {
	background: #F7F7F7;
	width: 100%;
	height: 100vh;
	display: block;
	position: relative;
	overflow: hidden;
	font-family: 'Segoe UI', Arial, sans-serif;
}
.header-succes {
	background: #00AFAA;
	position: relative;
	overflow: hidden;
	height: 150px;
  transition:height .35s ease;
}
.header-succes::before {
	content: "\f3ed";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
	position: absolute;
	bottom: 15px;
	right: 1%;
	width: 100px;
	height: 100px;
	background: #01B8B3;
  border: 10px solid #05AAA5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #05AAA5;
  font-size: 45px;
}
.header-succes::after {
	content: "";
	position: absolute;
	top: -20px;
	left: 1%;
	width: 100px;
	height: 100px;
	background: linear-gradient(to left, #05AAA5, #097D7A);
	border-radius: 50%;
	opacity: 0.7;
}
.back-home-btn {
   position: absolute;
   top: 50px;
   left: 30px;
    display: inline-flex;
    align-items: center;
    gap: 5px; 
    padding: 8px 15px;
    background-color: #02BFBA;
    color: #F7F6F6; 
    font-size: 13px;
    font-weight: 600;
    text-decoration: none; 
    border-radius: 30px; 
    transition: all 0.25s ease;
    z-index: 111;
}
.back-home-btn:hover {
    background-color: #04CCC6; 
    color: #fff;
    transform: translateY(-2px); 
}
.back-home-btn:active {
    transform: translateY(0);
}
.back-home-btn i {
    margin-top: 2.5px;
}
.back-home-btn:hover i {
    transform: translateX(-3px);
    transition: transform 0.2s ease;
}
.header-succes h1 {
	color: #fff;
	font-size: 25px;
	text-align: center;
	padding: 20px 20px 5px;
	font-weight: 700;
	position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	z-index: 1;
  letter-spacing: 0.1px;
}
.header-succes h2 {
	color: #fff;
	font-size: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	text-align: center;
	font-weight: 600;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}
.header-succes p {
	color: rgba(255,255,255,0.9);
	font-size: 13px;
	text-align: center;
	padding: 10px 20px 20px;
	letter-spacing: 0.3px;
	position: relative;
  font-family: sans-serif;
	z-index: 1;
}
.status-badge-s-v {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #e0f7f6;
	color: #00AFAA;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
}
.status-badge-s-v::before {
	content: "●";
	font-size: 8px;
}
.logo-verify-sucsess{
  height: 40px;
  width: 100px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  top: -100px;
  background: transparent;
  z-index: 111;
  transition: all 0.25s ease;
  right: 33px;
}
.logo-verify-sucsess img  
{
  height: 25px;
  width: auto;
}
.logo-verify-sucsess a  {
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  color: #474445;
  gap: 2px;
  letter-spacing: -0.2px;
  display: inline-flex;
}
.wrapper-success {
	background: transparent;
	text-align: left;
	height: calc(100% - 170px);
	overflow: hidden;
	overflow-y: scroll;
	scrollbar-width: thin;
	scrollbar-color: #00AFAA #f1f5f9;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
/*  transition:padding-top .1s ease;*/
}
.header-succes.header-fixed{
  position:fixed;
    top:0;
    left:0;
    width:100%;
    height: 60px;
    background: #fff;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0,0,0,.05);
}
.header-succes.header-fixed .back-home-btn{
  top: 10px;
  background: #eee;
  color: #7B797A;
}
.header-succes.header-fixed::before {
    background: #fff;
    border-color: #fff;
    color: #fff;
}
.header-succes.header-fixed::after {
    background: #fff;
}
.header-succes.header-fixed .logo-verify-sucsess{
   top: 9px;
}
.header-fixed .status-badge-s-v{
  background: #fff;
  color: #fff;
}
.wrapper-success.wrapper-fixed{
  padding-top:150px;
  height: calc(100% - 0px) !important;
}
.wrapper-success::-webkit-scrollbar {
	width: 6px;
}
.wrapper-success::-webkit-scrollbar-track {
	background: #f1f5f9; 
	border-radius: 10px;
}
.wrapper-success::-webkit-scrollbar-thumb {
	background: #cbd5e1; 
	border-radius: 10px;
	transition: background 0.3s ease;
}
.wrapper-success::-webkit-scrollbar-thumb:hover {
	background: #00AFAA; 
}
.page-h1-succes-heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: #353432;
  letter-spacing: -0.3px;
  margin-top: 1.2rem;
}
.page-h1-succes-heading i  {
	color: #00AFAA;
}
.note-top-sucs-v {
  margin: 0;
  padding: 8px 0;
  font-size: 12px;
  color: #D9381E;
  background: #FFF5F2;
  border-bottom: 1px solid #FAD2C8;
  font-family: 'Segoe UI', Arial, sans-serif;
  overflow: hidden;         
  white-space: nowrap;      
  display: flex;
}
.marquee-content {
  display: inline-flex;
  gap: 80px;                 
  animation: smooth-scroll 15s linear infinite;
  padding-left: 0;  
  cursor: pointer;         
}
.marquee-content:hover {
  animation-play-state: paused;
}
.note-top-sucs-v span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.note-top-sucs-v i {
  color: #00AFAA;
  font-size: 14px;
}
@keyframes smooth-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0); 
  }
}
.wrapper-success-outer {
    height: auto;
    width: 100%;
    background: #fff;
    box-sizing: border-box;
    margin: 30px auto; 
    margin-bottom: 90px;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(0, 175, 170, 0.1);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid #00AFAA;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}
.wrapper-success-outer:hover {
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
	transform: translateY(-4px);
	border-color: rgba(0, 175, 170, 0.2);
}
.wrapper-success-inner{
	  display: flex;
    align-items: stretch;
    justify-content: center;
    height: auto;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}
.wrapper-success-inner:before
{
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	height: 200px;
	width: 200px;
	border-radius: 50%;
	opacity: 0.5;
	border: 20px solid #FAFAFA;
}
.table {
    max-width: 480px;
    min-width: 480px;
    background: #fff;
    border-right: #A2A4A4;
    overflow: hidden;
    border-right: 1px solid #F5F5F5;
    padding: 60px 0;
    border-top-left-radius: 25px;
}
.table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.table table th {
    width: 40%;
    color: #7A7A7A;
    font-weight: 500;
    text-align: left !important;
    padding: 14px 34px;
    letter-spacing: 0.3px;
}
.table table td {
    color: #1F2937;
    font-weight: 600;
    text-align: left !important;
    padding: 14px 34px;
}
.table table .amount_v_success{
    font-size:22px;
    font-weight:700;
    color: #089995;
    letter-spacing:0.3px;
}
.table tr:hover {
    background: linear-gradient(90deg, rgba(0, 175, 170, 0.01) 0%, rgba(0, 175, 170, 0.03) 100%);
}
.pan-data {
    position: relative;
    text-align: left;
    max-width: calc(100% - 480px);
    min-width: calc(100% - 480px);
    background-image: url("icon/map.png");
    overflow: hidden;
    padding: 40px 50px;
    border-top-right-radius: 20px;
}
.pan-data-v-outer
{
  border-radius: 10px;
  border: 1px solid #E8E9E9;
  background: #fff;
  padding: 10px 0;
  width: 400px;
  margin: auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}
.pan-data table {
	  width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin: auto;
    background: #fff;
    border-radius: 20px;
}
.pan-data table th {
	color: #64748b;
	font-weight: 500;
	text-align: right !important;
	padding: 14px 30px;
	font-size: 14px;
	border: none;
	letter-spacing: 0.2px;
	vertical-align: middle;
}
.pan-data table td {
	color: #0f172a;
	font-weight: 400;
	border: none;
	text-align: left !important;
	padding: 14px 30px;
	vertical-align: middle;
}
.table table tr:first-child {
  border-top: 1px solid #f1f5f9;
}
.table table tr,
.pan-data table tr {
	border-bottom: 1px solid #f1f5f9;
}
.pan-data tr:hover {
    background: linear-gradient(90deg, rgba(0, 175, 170, 0.01) 0%, rgba(0, 175, 170, 0.03) 100%);
}
.premium-btn-download {
	background: linear-gradient(135deg, #00AFAA 0%, #008f8a 100%);
	border-radius: 10px;
	outline: none;
	width: 85%;
	height: 45px;
	font-size: 13px;
	border: none;
	cursor: pointer;
  margin: auto;
  margin-top: 20px;
	color: #fff;
	font-weight: 500;
	letter-spacing: 0.3px;
	box-shadow: 0 8px 20px -5px rgba(0, 175, 170, 0.35);
	display: block;
	margin-bottom: 25px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.premium-btn-download:hover {
  transform: translateX(4px);
	box-shadow: 0 12px 25px -5px rgba(0, 175, 170, 0.45);
	background: linear-gradient(135deg, #008f8a 0%, #00AFAA 100%);
}
.premium-btn-download.disable {
    background: #e2e8f0 !important; 
    color: #94a3b8 !important;     
    cursor: default !important; 
    box-shadow: none !important;
    border: none;
}
.troubleshoot-box {
    width: 100%;
    padding: 20px 24px;
    background: rgba(224, 247, 246, 0.4);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    border-top: 1px solid rgba(0, 175, 170, 0.2);
}
.troubleshoot-content p {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
    border-left: 4px solid #EE230F;
    padding-left: 14px; 
    padding-right: 14px;
    text-align: left;
}
.sync-link {
    display: inline-flex; 
    align-items: center;
    color: #2677C0;
    font-weight: 600;
    outline: none;
    font-size: 14px;
    background: none;
    border: none;
    padding: 0 4px; 
    margin: 0;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    vertical-align: baseline;
}
.sync-link:hover {
    color: #008f8a;
    text-decoration: underline; 
}
.sync-link:disabled {
    color: #94a3b8;
    cursor: default;
    text-decoration: none;
}
.disclaimer-container {
    padding: 30px 30px;
    background-color: #fff; 
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    margin-bottom: 80px;
    border-left: 7px solid #F58634;
}
.disclaimer-item {
    margin-bottom: 30px;
}
.disclaimer-item:last-child {
    margin-bottom: 0;
}
.disclaimer-label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #4F5051; 
    text-transform: capitalize;
    margin-bottom: 5px;
    letter-spacing: 0.1px;
}
.disclaimer-label i {
    color: #00AFAA;
}
.disclaimer-item p {
  font-size: 1rem;
  line-height: 1.65;
  color: #696868;
  margin-bottom: 1.5rem;
  background: #f9fbfe;
  padding: 1rem 0.8rem;
  font-weight: 400;
  border-radius: 24px;
  border: 1px solid #eef2f8;
  transition: background 0.2s;
}
.disclaimer-item strong {
    color: #00AFAA;
    font-weight: 400;
}
.referral-wrapper{
    width:100%;
    margin: auto;
    background:#fff;
    padding:70px 40px;
    margin-bottom: 90px;
    border-radius: 20px;
    position: relative;
    font-family:'Inter',system-ui,-apple-system,'Segoe UI',sans-serif;
}
.referral-wrapper > *{
    position: relative;
    z-index: 1;
}
.referral-wrapper:before{
    content: '';
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg,#00afaa,#00d4cf);
    border-radius: 50%;
    opacity: 0.06;
    pointer-events: none;
}
.referral-wrapper:after{
    content: '';
    position: absolute;
    right: 50px;
    bottom: 40px;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg,#00afaa,#00d4cf);
    border-radius: 50%;
    opacity: 0.10;
    pointer-events: none;
}
.referral-icon{
    width:70px;
    height:70px;
    margin:0 auto 15px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#f5f7fa;
    color:#00afaa;
    font-size:32px;
}
.referral-wrapper h3{
    text-align:center;
    font-size:25px;
    font-weight:700;
    color:#5E5D5D;
    margin:0 0 12px;
}
.offer-badge{
    display:table;
    margin:0 auto 15px;
    padding:8px 15px;
    background:#fff3cd;
    color:#856404;
    border:1px solid #ffe69c;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}
.referral-sub{
    text-align:left;
    color:#555;
    line-height:1.8;
    font-size:15px;
    margin-bottom:18px;
}
.referral-sub strong{
    color:#00afaa;
    font-weight: 400;
}
.referral-benefits{
    list-style:none;
    padding:0;
    margin:0;
    text-align: center;
    width: 100%;
}
.referral-benefits li{
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:8px 14px;
    margin:10px 10px;
    background:#fff;
    border:1px solid #dbe3ea;
    border-radius:50px;
    font-size:13px;
    color:#444;
    box-shadow:0 2px 6px rgba(0,0,0,.04);
}
.referral-benefits li i{
    color:#16a34a;
    font-size:17px;
}
.referral-action{
    text-align:center;
    margin-top:30px;
}
.join-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:12px 24px;
    background:#00afaa;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    transition:0.3s ease;
    box-shadow:0 4px 12px rgba(0,175,170,.20);
}
.join-btn:hover{
    background:#009690;
    transform:translateY(-2px);
}
.join-btn i{
    font-size:14px;
}
.trust-container {
  width: 100%;
  margin: 50px auto;
}
.trust-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 3rem 2rem 3rem 2rem;
  display: flex;
  gap: 1.8rem;
  align-items: flex-start;
  transform: translateY(-4px);
}
.trust-icon {
  background: linear-gradient(135deg, #00AFAA 0%, #00938e 100%);
  width: 70px;
  height: 70px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 12px 18px -8px rgba(0, 175, 170, 0.4);
  transition: all 0.2s;
}
.trust-icon i {
  font-size: 2.3rem;
  color: white;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
}
.trust-content {
  flex: 1;
}
.trust-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #5E5D5D;
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
  line-height: 1.3;
  border-left: 4px solid #00AFAA;
  padding-left: 1rem;
}
.trust-description {
  font-size: 1rem;
  line-height: 1.65;
  color: #696868;
  margin-bottom: 1.5rem;
  background: #f9fbfe;
  padding: 1rem 1.2rem;
  font-weight: 400;
  border-radius: 24px;
  border: 1px solid #eef2f8;
  transition: background 0.2s;
}
.trust-description i {
  font-size: 1rem;
  vertical-align: middle;
}
.alignment-badge
{
	  display: flex; 
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px; 
    width: 100%;
    padding: 10px;
}
.verification-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #eefaf9;
  padding: 8px 18px 8px 14px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.85rem;
  color: #006d69;
  letter-spacing: 0.3px;
  border: 1px solid rgba(0, 175, 170, 0.35);
  backdrop-filter: blur(20px);
  margin:0 10px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.verification-badge:nth-child(1){
  width: 315px;
}
.verification-badge:nth-child(2){
  width: 265px;
}
.verification-badge:nth-child(3){
  width: 280px;
}
.verification-badge i {
  font-size: 1.1rem;
  color: #00AFAA;
}
.verification-badge span {
  font-weight: 700;
  text-transform: uppercase;
}
.trust-description:hover {
  background: #ffffff;
}
.verification-badge:hover
{
  transform: translateX(4px);
}
#section-pan-data
{
	display: block;
}
.skeleton-container {
	padding: 30px;
	display: none;
  border-radius: 10px;
  border: 1px solid #E8E9E9;
  background: #fff;
  width: 400px;
  margin: auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}
.skeleton-label, .skeleton-value, .skeleton-button, .skeleton-note {
	background: #eee;
	background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
	border-radius: 4px;
	background-size: 200% 100%;
	animation: shimmer 0.8s linear infinite;
}
@keyframes shimmer {
	to { background-position-x: -200%; }
}
.skeleton-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
	border-bottom: 1px solid #f1f5f9;
	padding-bottom: 10px;
}
.skeleton-label { width: 100px; height: 15px; }
.skeleton-value { width: 140px; height: 15px; }
.skeleton-button {
	width: 100%;
	height: 45px;
	border-radius: 10px;
	margin-top: 10px;
  margin-bottom: 10px;
}
.error-box-pan {   
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    text-align: center;
    animation: shakeError 0.4s ease-in-out;
}
.error-box-icon {
    width: 60px;
    height: 60px;
    background: #fff5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #E20D49; 
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(229, 62, 62, 0.1);
}
.error-box-content {
    max-width: 100%; 
}
.error-box-content h6 {
    margin: 0 0 8px 0;
    color: #E20D49; 
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.2px;
}
.error-box-content p {
    margin: 0;
    color: #7c2d12; 
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
}
@keyframes shakeError {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}
.error-box-pan a {
    background: linear-gradient(135deg, #00AFAA 0%, #008f8a 50%, #00AFAA 100%);
    background-size: 200% auto; 
    border-radius: 25px;
    width: 150px;
    height: 45px;
    line-height: 45px;
    font-size: 13px;
    border: none;
    color: #fff;
    text-align: center;
    text-decoration: none;
    margin: 30px auto 10px auto; 
    font-weight: 500;            
    letter-spacing: 0.3px;
    display: block;
    transition: background-position 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
    transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
    box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.error-box-pan a:hover {
    background-position: right center; 
    transform: translateY(-2px); 
    box-shadow: 0 8px 20px rgba(0, 175, 170, 0.3); 
}
.error-box-pan a:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0, 175, 170, 0.2);
}
#footer-success {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	height: 50px;
  border-top: 2px dashed #E0DFDF;
	width: 235px;
	margin: 50px auto;
}
#footer-success img {
	height: 100%;
	width: 100%;
}
.main-container-re-verify {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(0.5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999999;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-container-re-verify.active {
  opacity: 1;
  visibility: visible;
}
.wrapper-re-verify.popup-re-card {
  background: #ffffff;
  width: 100%;
  max-width: 400px;
  border-radius: 24px;
  box-shadow: 
    0 30px 60px -12px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(0, 175, 170, 0.1);
  position: relative;
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.main-container-re-verify.active .wrapper-re-verify.popup-re-card {
  transform: scale(1) translateY(0);
}
.close-popup-re {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f1f5f9;
  color: #64748b;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}
.close-popup-re:hover {
  background: #00AFAA;
  color: white;
  transform: rotate(90deg);
}
.re-pop-status-container {
  padding: 48px 32px 24px;
  text-align: center;
}
.re-pop-status-container h1 i{
  color: #079894;
}
.re-pop-status-container h1 {
  font-size: 18px;
  font-weight: 700;
  color: #565355;
  text-align: left;
  margin-bottom: 12px;
  font-family: 'Segoe UI', -apple-system, sans-serif;
}
.re-pop-status-container input {
    width: 100%;
    max-width: 400px; 
    height: 50px;
    padding: 0 10px;
    background-color: #ffffff;
    border: 1.5px solid #e2e8f0; 
    border-radius: 10px;        
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 14px;
    color: #334155;
    box-sizing: border-box;     
    outline: none;
    display: block;
    margin-bottom: 10px;
    margin-top: 15px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.re-pop-status-container input::placeholder {
    color: #94a3b8;
    opacity: 1; 
}
.re-pop-status-container input:focus {
    border-color: #00AFAA; 
    box-shadow: 0 0 0 4px rgba(0, 175, 170, 0.12); 
}
.premium-btn-req {
  background: linear-gradient(135deg, #00AFAA 0%, #008f8a 100%);
  border-radius: 10px;
  outline: none;
  width: 100%;
  height: 43px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  color: #fff;
  margin: auto;
  font-weight: 500;
  letter-spacing: 0.1px;
  box-shadow: 0 8px 20px -5px rgba(0, 175, 170, 0.35);
  display: block;
  margin-bottom: 15px;
}
.premium-btn-req:hover {
  box-shadow: 0 12px 25px -5px rgba(0, 175, 170, 0.45);
  background: linear-gradient(135deg, #008f8a 0%, #00AFAA 100%);
}
.re-pop-status-container p {
  font-size: 13px;
  color: #A3A2A2;
  text-align: left;
  margin-bottom: 20px;
}



/* ====== For Referral Dashboard ====== */
.btn-loader-ref{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
}
.btn-loader-ref span{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#fff;
    animation:dotBounceRef 1.2s infinite ease-in-out;
}
.btn-loader-ref span:nth-child(2){
    animation-delay:0.2s;
}
.btn-loader-ref span:nth-child(3){
    animation-delay:0.4s;
}
.btn-loader-ref span:nth-child(4){
    animation-delay:0.6s;
}
@keyframes dotBounceRef{
    0%,80%,100%{
        transform:scale(0.5);
        opacity:0.4;
    }
    40%{
        transform:scale(1.2);
        opacity:1;
    }
}
#ref-page-loader{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background:transparent;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:999999;
    opacity: 0;
    visibility: hidden;
}
#ref-page-loader.active{
  opacity: 1;
  visibility: visible;
}
.ref-loader-circle{
    position:relative;
    width:35px;
    height:35px;
    animation:rotateLoaderref 1.2s linear infinite;
}
.ref-loader-circle span{
    position:absolute;
    width:10px;
    height:10px;
    border-radius:50%;
    background:#00afaa;
}
.ref-loader-circle span:nth-child(1){
    top:0;
    left:50%;
    transform:translateX(-50%);
    background:red;
}
.ref-loader-circle span:nth-child(2){
    top:50%;
    right:0;
    transform:translateY(-50%);
    background:#17F709;
}
.ref-loader-circle span:nth-child(3){
    bottom:0;
    left:50%;
    transform:translateX(-50%);
    background:#F58634;
}
.ref-loader-circle span:nth-child(4){
    top:50%;
    left:0;
    transform:translateY(-50%);
}
@keyframes rotateLoaderref{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}
.dashboard-home{
	background: #f4f9fc;
  display: flex;
  min-height: 100vh;
  width: 100%;
}
.pageLoad {
  flex: 1;       
  min-width: 0;
}
.dashboard-reffer
{
	background: #f4f9fc;
  display: flex;
  min-height: 100vh;
  width: 100%;
}
.sidebar-reffer {
      width: 250px;
      background: #fff;
      border-right: 1px solid #E3E5E8;
      color: white;
      padding: 0px;
      padding-top: 20px;
      transition: all 0.2s;
      position: sticky;
      top: 0;
      height: 100vh;
      overflow: hidden;
      display: flex;
     flex-direction: column;
     justify-content: space-between;
    scrollbar-width:none;
    -ms-overflow-style:none;
}
  .logo-area-reffer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  border-bottom: 1px solid #DDE1E5;
  padding-bottom: 10px;
}
.logo-area-reffer a {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}
.logo-area-reffer img {
  height: 30px;
  width: auto;
  object-fit: contain;
}
.logo-area-reffer h1 {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: #555452; 
}
.info-account-ref {
  display: flex;
  flex-direction: column; 
  align-items: stretch;   
  gap: 1px;               
  background: #00AFAA;
  border-bottom: 1.5px solid #F58634; 
  margin-bottom: 10px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(51, 65, 85, 0.02);
  font-family: 'Inter', sans-serif;
  box-sizing: border-box; 
  border-right: 3px solid #ED135B;
  background-image: url(icon/map.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
.info-account-ref .login-meta {
  display: flex;
  align-items: center;
}
.info-account-ref p {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 500;
  color: #eee; 
  padding: 5px 20px; 
  display: flex;
  align-items: center;
  gap: 4px;
}
.info-account-ref p i {
  color: #fff;
  font-size: 0.6rem;
}
.info-account-ref .wallet-balance-box {
  display: flex;
  padding: 5px 20px; 
  justify-content: space-between; 
  align-items: center;
  border-top: 1px dashed #0BDFD9; 
}
.info-account-ref h3 {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: #eee;
  text-transform: uppercase;
  letter-spacing: -0.3px;
}
.info-account-ref h2 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: #069A96; 
  background: #fff; 
  padding: 6px 12px;
  border-radius: 10px;
  border: 1px solid #fff;
}
.nav-menu-reffer {
  display: flex;
  flex-direction: column;
  gap: 10px; 
  flex-grow: 1; 
  overflow-y: auto;
  scrollbar-width:none;
    -ms-overflow-style:none;
}
.nav-menu-reffer::-webkit-scrollbar{
    display:none;
    width:0;
    height:0;
}
.nav-menu-reffer .menu-btn {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: inherit;
  color: #6A6969; 
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  padding: 12px 16px;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid #EEF1F3;
}
.nav-menu-reffer .menu-btn i {
  width: 20px;
  font-size: 1.15rem;
  text-align: center;
  color: #94a3b8; 
  transition: color 0.2s;
}
.nav-menu-reffer .menu-btn:hover {
  background-color: #f8fafc;
  color: #00AFAA;
}
.nav-menu-reffer .menu-btn:hover i {
  color: #00AFAA;
}
.nav-menu-reffer .menu-btn.active {
  background: #e0f7f5; 
  color: #00726e; 
  font-weight: 600;
}
.nav-menu-reffer .menu-btn.active i {
  color: #00AFAA; 
}
.live-badge-wrapper {
  margin-left: auto;
  display: none;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.live-badge-wrapper.active{
	display: flex;
}
.live-badge {
  position: relative;
  background: linear-gradient(145deg, #ff4a1c, #d42e00);
  color: #fff3c9;
  font-size: 0.60rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  padding: 3px 7px;
  text-align: center;
  border-radius: 30px;
  display: inline-block;
  text-shadow: 0 0 4px #ff9f4a;
  box-shadow: 0 0 8px rgba(255, 70, 0, 0.6);
  animation: fireBreathing 1.4s infinite ease-in-out;
}
.live-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  border: 2px solid #ff7e2e;
  box-sizing: border-box;
  pointer-events: none;
  animation: fireRingPulse 1.4s infinite ease-out;
}
@keyframes fireBreathing {
  0%, 100% {
    transform: scale(1);
    background: linear-gradient(145deg, #ff4a1c, #c02700);
    box-shadow: 0 0 5px #ff6a2e;
  }
  50% {
    transform: scale(1.06);
    background: linear-gradient(145deg, #ff6b2e, #e33c00);
    box-shadow: 0 0 18px #ff9a4a, 0 0 6px #ff4400;
  }
}
@keyframes fireRingPulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
    border-color: #ff8c3a;
  }
  40% {
    transform: scale(1.5);
    opacity: 0;
    border-color: #ffb45e;
  }
  41%, 100% {
    transform: scale(1);
    opacity: 0;
  }
}
.logout-btn-reffer {
  margin-top: auto;
  border-top: 1px solid #f1f3f5;
  padding-top: 24px;
  padding-bottom: 30px;
  background: #FDFDFD;
}
#btn-logout-ref {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  color: #ef4444; 
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}
#btn-logout-ref i {
  width: 20px;
  font-size: 1.15rem;
  text-align: center;
}
#btn-logout-ref:hover {
  background: #fef2f2; 
  color: #dc2626;
}
    .main-content-reffer {
      flex: 1;
      padding: 32px 30px;
      overflow: hidden;
    }
    .top-bar-reffer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 32px;
      padding-bottom: 15px;
      border-bottom: 1px solid #E6E9EC;
    }
    .greeting-reffer h1 {
      font-size: 1.7rem;
      font-weight: 800;
      color: #0b2b3b;
    }
    .greeting-reffer p {
      color: #5b6f82;
      margin-top: 3px;
      font-size: 0.9rem;
    }
    .user-badge-reffer {
      background: white;
      border-radius: 60px;
      padding: 10px 15px;
      display: flex;
      align-items: center;
      gap: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.02);
      border: 1px solid #dee9ed;
      border-left: 5px solid #F90762;
    }
.reffer-user-profile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}
.reffer-avatar-ref {
  width: 30px; 
  height: 30px;
  border-radius: 50%; 
  overflow: hidden; 
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
}
.reffer-avatar-ref.ref-avatar-default {
  background-color: #f8fafc; 
  border: 1px solid #e2e8f0;  
}
.ref-initials-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px; 
  font-size: 1rem;
  font-weight: 900; 
  text-transform: uppercase;
  letter-spacing: -0.3px;
  line-height: 1;
  user-select: none; 
}
.ref-initials-wrapper .first-initial {
  color: #00AFAA;
}
.ref-initials-wrapper .ref-last-initial {
  color: #F58634;
}
.reffer-avatar-ref img {
  max-width: 80%;
  max-height: 80%;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: auto;
  display: block;
}
    .user-badge-reffer span {
      font-weight: 600;
      color: #454343;
    }
.dashboard-widthraw-notify {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 12px;
  border: 1px solid #e2edf2;
  padding: 0;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  position: relative;
  transition: all 0.25s ease;
  min-height: 72px;
}
.dashboard-widthraw-notify::before {
  content: '';
  position: absolute;
  left: -100px;
  top: -100px;
  width: 200px;
  height: 200px;
  background: linear-gradient(180deg, #22c55e, #16a34a);
  border-radius: 12px 0 0 12px;
  transform: rotate(35deg);
  z-index: 0;
}
.dashboard-widthraw-notify.success::before {
  background: linear-gradient(180deg, #00AFAA, #06DBD5);
}
.dashboard-widthraw-notify.pending::before {
  background: linear-gradient(180deg, #f59e0b, #F9A76A);
}
.dashboard-widthraw-notify > span {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 8px 0 8px 8px;
  position: relative;
  z-index: 1;  
}
.dashboard-widthraw-notify > span i {
  font-size: 1.6rem;
  color: white;
  transition: all 0.3s ease;
}
.dashboard-widthraw-notify > span::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 15%;
  bottom: 15%;
  width: 1.5px;
  background: #e2edf2;
  transition: all 0.3s ease;
  z-index: 2;
  transform: rotate(35deg);
}
.dashboard-widthraw-notify p {
  flex: 1;
  margin: 0;
  padding: 18px 20px 18px 55px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #3d5159;
  z-index: 1;
  position: relative;
}
.dashboard-widthraw-notify p strong {
  color: #0a1a1f;
  font-weight: 700;
  background: rgba(0, 175, 170, 0.10);
  padding: 2px 10px;
  border-radius: 6px;
}
.dashboard-impressioncard {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2edf2;
  padding: 24px 28px;
  transition: all 0.25s ease;
  max-width: 100%;          
  background-image: url(icon/map.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
.dashboard-metric-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f4f8;
}
.dashboard-metric-header h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0a1a1f;
  margin: 0;
  letter-spacing: -0.02em;
}
.dashboard-metric-icon {
  font-size: 1.4rem;
  color: #00AFAA;
  background-color: #e0f7f5;
  padding: 10px 12px;
  border-radius: 12px;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.metric-align-inline{
  display: flex;
  align-items: center;
  text-align: center;
  gap: 100px;
  justify-content: center;
}
.dashboard-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  padding: 15px 20px;
  text-align: center;
  border-radius: 50%;
  margin: 20px auto;
  background: rgba(0, 0, 0, 0.03);
  border-bottom: 2px solid red;
}
.dashboard-metric-tittle {
  font-size: 0.8rem;
  font-weight: 600;
  color: #4a5b6e;
  letter-spacing: -0.1px;
}
.dashboard-metric-tittle h5 {
  margin: auto;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.dashboard-metric-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1e2a30;
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-top: 2px;
  justify-content: center;
}
.dashboard-metric-unit {
  font-size: 0.7rem;
  font-weight: 400;
  color: #a0b3be;
}
.stats-grid-reffer {
  display: grid;
  grid-template-columns: repeat(auto-fill, 250px); 
  gap: 44px;
  margin-bottom: 48px;
  margin-top: 30px;
  background: #fff;
  padding: 20px 30px;
  justify-content: start;  
  border: 1px solid #fff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.02);
  overflow: hidden;
}
.stat-card-reffer {
  background: white;
  box-shadow: 0 8px 20px rgba(0,0,0,0.02);
  border: 1px solid #e2edf2;
  transition: 0.2s;
  display: flex;
  align-items: stretch;    
  gap: 0;                  
  overflow: hidden;    
}
.stat-left-con-ref {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 70px;            
  background-color: #e0f7f5;
  border-right: 1px solid #96D5D0;
}
.stat-left-con-ref i {
  font-size: 2rem;
  color: #00AFAA;
  transition: all 0.25s ease;
}
.stat-right-ref-box {
  flex: 1;                 
  display: flex;
  flex-direction: column;
  justify-content: center; 
  padding: 20px 24px;      
  gap: 2px;
  min-width: 0;
}
.stat-title-ref {
  font-size: 0.8rem;
  font-weight: 600;
  color: #6C6D6E;
  letter-spacing: -0.1px;
}
.stat-value-ref {
  font-size: 1.5rem;
  font-weight: 700;
  color: #4C4D4C;
  line-height: 1.2;
}
.stat-value-ref-unit {
  font-size: 0.7rem;
  font-weight: 400;
  color: #a0b3be;
  text-transform: capitalize;
  letter-spacing: 0.2px;
}
    .graph-section-reffer {
      background: white;
      border-radius: 20px;
      padding: 40px 28px;
      margin-bottom: 48px;
      border: 1px solid #e2edf2;
      box-shadow: 0 8px 18px rgba(0,0,0,0.02);
    }
    .section-header-reffer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }
    .section-header-reffer h3 {
      font-size: 1.2rem;
      font-weight: 700;
      color: #595B59;
     display: flex;
     align-items: center;
    }
    .section-header-reffer h3 i{
    color: #00AFAA; 
  background: #e0f7f5;
  padding: 8px;
  border-radius: 10px;
  font-size: 0.8rem;
  border-bottom: 2px solid red;
}
    .badge-date-reffer {
      background: #eef7f5;
      padding: 6px 14px;
      border-radius: 40px;
      font-size: 0.7rem;
      color: #5D5D5D;
      border-left: 2px solid red;
    }
#earningsChart {
  display: block;
  width: 100% !important;
  min-height: 200px !important; 
  max-height: 200px !important;   
  border: 1px solid #eef3f5;
}
 .badge-date-reffer-bottom {
      background: #eef7f5;
      padding: 6px 14px;
      margin-top: 30px;
      border-radius: 40px;
      font-size: 0.7rem;
      text-align: center;
      letter-spacing: 0.2px;
      color: #5D5D5D;
      border-left: 2px solid red;
       border-right: 2px solid red;
    }
.recent-table-ref {
  background: #ffffff;
  border-radius: 24px; 
  padding: 28px 0 12px 0; 
  border: 1px solid #e6eaee;
  overflow-x: auto;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(15, 43, 61, 0.02);
}
.recent-table-ref h3 {
  padding: 0 24px 6px 24px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f2b3d; 
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.recent-table-ref h3 i {
  color: #00AFAA; 
  background: #e0f7f5;
  padding: 8px;
  border-radius: 10px;
  font-size: 1.05rem;
}
#letest-ref-5-tran {
  padding: 0 24px 24px 24px; 
  font-size: 0.88rem; 
  color: #64748b; 
}
.recent-table-ref table {
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
}
.recent-table-ref th {
  background-color: #f8fafc; 
  color: #4a5b6e;
  font-weight: 500;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 24px;
  border-top: 1px solid #f1f3f5;
  border-bottom: 1px solid #e6eaee;
  text-align: left;
}
.recent-table-ref td {
  padding: 16px 24px;
  border-bottom: 1px solid #f1f3f5;
  color: #334155;
  font-size: 0.85rem;
  font-weight: 400;
}
.recent-table-ref tbody tr:hover {
  background-color: #fdfefe;
}
.recent-table-ref tbody tr:last-child td {
  border-bottom: none;
}
.recent-table-ref td .amt-negative {
  color: #ef4444 !important; 
}
.status-badge-ref {
  padding: 6px 12px;
  border-radius: 32px;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.status-badge-ref.credited,
.status-badge-ref:not([class*="status-"]) { 
  background: #ecfdf5;
  color: #065f46;
}
.status-badge-ref.processed {
  background: #eff6ff;
  color: #1e40af; 
}
.status-badge-ref.pending {
  background: #fffbeb;
  color: #92400e; 
}
.status-badge-ref.failed {
  background: #FFEBEE;
  color: #F50F4B; 
}
  .referral-links-ref{
    display:flex;
    flex-direction:column;
    gap:15px;
    margin-top:50px;
    margin-bottom: 50px;
    background:#fff;
    padding: 40px 30px;
    border-radius:20px;
    box-shadow:0 4px 15px rgba(0,0,0,.05);
   }
.referral-card-ref{
    border-bottom:1px solid #e8eef3;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-bottom: 15px;
}
.referral-card-ref:last-child{
	border-bottom: none;
	padding-bottom: 0;
}
.referral-info-ref h4{
    margin:0 0 6px;
    font-size:15px;
    color:#5C625B;
}
.referral-info-ref h4 i{
    color:#00afaa;
    margin-right:6px;
}
.referral-info-ref p{
    margin:0;
    font-size:13px;
    color:#6b7280;
    word-break:break-all;
}
.copy-link-ref{
    border:1px solid #d1d5db;
    background:#f8fafc;
    color:#6C6C6A;
    height: 35px;
    width: 95px;
    border-radius:10px;
    cursor:pointer;
    font-size:12px;
    font-weight:600;
    white-space:nowrap;
    transition:all .25s ease;
    box-shadow:0 2px 6px rgba(0,0,0,.06);
}
.copy-link-ref:hover{
    background:#eef2f7;
    border-color:#9ca3af;
    transform:translateY(-1px);
}
.copy-link-ref i{
    margin-right:4px;
    color:#0f766e;
}

.ads-setup-card-setu-dash {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #EAEAEA;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.01);
    margin-bottom: 80px;
}
.ads-setup-card-setu-dash h2 {
    margin: 0 0 20px 0;
    color: #382C2F;
    font-size: 18px;
    border-bottom: 1px solid #F0F0F0; 
    padding-bottom: 15px;
}
.ads-content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.left-ads-dash-ref-icon-box {
    flex-shrink: 0;
    font-size: 28px;
    color: #00AFAA;
    background: rgba(0, 175, 170, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}
.right-ads-dash-ref-text-box p {
    margin: 0 0 10px 0;
    line-height: 1.6;
    color: #666;
    font-size: 14px;
}
.right-ads-dash-ref-text-box a {
    color: #00AFAA;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}
.right-ads-dash-ref-text-box a:hover {
    color: #2467D5;
}
.modal-reffer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(000, 000, 000, 0.1); 
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, backdrop-filter 0.3s ease;
}
.modal-content-reffer {
  background: white;
  border-radius: 32px; 
  max-width: 460px;
  width: 90%;
  padding: 32px 28px;
  position: relative;
    transform: translateY(24px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); 
}
.modal-reffer.active {
  opacity: 1;
  visibility: visible;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}
.modal-reffer.active .modal-content-reffer {
  transform: translateY(0) scale(1);
}
.current-price-pop-ref {
  background: #fff;
  border-radius: 5px;
  border: 1px solid #e6eaee;
  max-width: 480px; 
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(15, 43, 61, 0.03);
}
.last-update-prs
{
	background: #EDFDFD;
	display: flex;
	width: 160px;
	align-items: center;
	justify-content: center;
	border:1px solid #ECEAEA;
	color: #7D7B7B;
	font-size: 10px;
	letter-spacing: 0.03px;
	margin-bottom: 10px;
	padding: 5px 0;
	border-radius: 25px;
}
.current-price-pop-ref table {
  width: 100%;
  border-collapse: separate; 
  border-spacing: 0;
  border: none; 
}
.current-price-pop-ref th {
  font-size: 0.85rem;
  font-weight: 400;
  color: #4a5b6e;
  text-align: left;
  border: none;
  padding: 10px 14px;
}
.current-price-pop-ref td {
  font-size: 0.90rem;
  font-weight: 500;
  color: #00726e; 
  text-align: right;
  padding: 10px 14px;
  border: none;
  white-space: nowrap; 
}
.current-price-pop-ref tr:hover {
  background-color: #f8fafc;
}.current-price-pop-ref tr:first-child th {
  border-bottom: 1px solid #e6eaee;
 border-right: none;
}.current-price-pop-ref tr:first-child td {
  border-bottom: 1px solid #e6eaee;
  border-left: none;
}.current-price-pop-ref tr:last-child th {
 border: none;
}.current-price-pop-ref tr:last-child td {
  border: none;
}
    .close-modal-reffer {
      position: absolute;
      right: 24px;
      top: 22px;
      font-size: 28px;
      cursor: pointer;
      color: #7c8b9c;
    }
    .close-modal-reffer:hover 
    { color: #00AFAA; }
    .modal-content-reffer h3 {
      font-size: 1.4rem;
      margin-bottom: 10px;
      color: #00AFAA;
      padding-bottom: 10px;
      border-bottom: 1px solid #e6eaee;
    }
    #set-align-outer-ref
    {
    	display: flex;
    	gap: 50px;
    }
    .form-group-st-prce {
      margin-bottom: 15px;
    }
    .form-group-st-prce label {
      display: block;
      font-weight: 600;
      font-size: 13px;
      margin-bottom: 8px;
    }
    .form-group-st-prce input {
      width: 100%;
      padding: 10px 15px;
      border-radius: 10px;
      border: 1px solid #cfdfe6;
      font-size: 1rem;
      transition: all 0.2s ease;
      background: #fff;
      color: #1a2c3e;
    }
    .form-group-st-prce input:focus {
      outline: none;
      border-color: #00AFAA;
      box-shadow: 0 0 0 3px rgba(0, 175, 170, 0.2);
    }
    .form-group-st-prce input::placeholder {
      color: #9aabb8;
      font-weight: 400;
      opacity: 1;
    }
    .modal-btn-ref-price {
      width: 100%;
      background: #00AFAA;
      border: none;
      height: 50px;
      width: 100%;
      font-size: 14px;
      border-radius: 40px;
      margin-top: 15px;
      color: white;
      font-weight: bold;
      cursor: pointer;
      margin-bottom: 10px;
    }
.modal-reffer-withdraw {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(000, 000, 000, 0.1); 
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000000;
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: opacity 0.3s ease, visibility 0.3s ease, backdrop-filter 0.3s ease;
}
.modal-withdraw-reffer {
  background: white;
  border-radius: 32px; 
  max-width: 400px;
  width: 90%;
  padding: 32px 28px;
  position: relative;
    transform: translateY(24px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); 
}
.modal-reffer-withdraw.active {
  opacity: 1;
  visibility: visible;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}
.modal-reffer-withdraw.active .modal-withdraw-reffer {
  transform: translateY(0) scale(1);
}
#close-withdraw-ref {
      position: absolute;
      right: 24px;
      top: 22px;
      font-size: 28px;
      cursor: pointer;
      color: #7c8b9c;
    }
    #close-withdraw-ref:hover 
    { color: #00AFAA; }
    .modal-withdraw-reffer h3 {
      font-size: 1.3rem;
      margin-bottom: 20px;
      color: #00AFAA;
      padding-bottom: 10px;
      border-bottom: 1px solid #e6eaee;
    }
    .form-group-withdraw {
      margin-bottom: 10px;
    }
    .form-group-withdraw label {
      display: block;
      font-weight: 600;
      font-size: 14px;
      margin-bottom: 8px;
      color: #5F5C5C;
    }
    .form-group-withdraw input {
      width: 100%;
      padding: 14px 15px;
      border-radius: 10px;
      border: 1px solid #cfdfe6;
      font-size: 0.9rem;
      transition: all 0.2s ease;
      background: #fff;
      color: #1a2c3e;
    }
    .form-group-withdraw input:focus {
      outline: none;
      border-color: #00AFAA;
      box-shadow: 0 0 0 3px rgba(0, 175, 170, 0.2);
    }
    .form-group-withdraw input::placeholder {
      color: #DEDDDD;
    }
.payment-methods-ref{
    display:flex;
    gap:15px;
    margin:5px 0;
}
.radio-option-ref{
    display:flex;
    align-items:center;
    gap:5px;
    margin:10px 0;
    cursor:pointer;
    font-size:12px;
    font-weight:600;
    color:#585555;
}
.radio-option-ref input{
    display:none;
}
.radio-check-ref{
    width:15px;
    height:15px;
    border:2px solid #cfcfcf;
    border-radius:50%;
    position:relative;
    transition:0.3s;
}
.radio-option-ref input:checked + .radio-check-ref{
    border-color:#00AFAA;
}
.radio-option-ref input:checked + .radio-check-ref::after{
    content:'';
    width:6px;
    height:6px;
    background:#00AFAA;
    border-radius:50%;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}
.btn-ref-withdraw {
      width: 100%;
      background: #00AFAA;
      border: none;
      height: 50px;
      width: 100%;
      font-size: 14px;
      border-radius: 40px;
      margin-top: 15px;
      color: white;
      font-weight: bold;
      cursor: pointer;
      margin-bottom: 10px;
    }
.modal-ref-bank-link {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(000, 000, 000, 0.1); 
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, backdrop-filter 0.3s ease;
}
.modal-link-reffer {
  background: white;
  border-radius: 32px; 
  max-width: 400px;
  width: 90%;
  padding: 32px 28px;
  position: relative;
    transform: translateY(24px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); 
}
.modal-ref-bank-link.active {
  opacity: 1;
  visibility: visible;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}
.modal-ref-bank-link.active .modal-link-reffer {
  transform: translateY(0) scale(1);
}
#close-link-ref {
      position: absolute;
      right: 24px;
      top: 22px;
      font-size: 28px;
      cursor: pointer;
      color: #7c8b9c;
    }
    #close-link-ref:hover 
    { color: #00AFAA; }
    .modal-link-reffer h3 {
      font-size: 1.2rem;
      margin-bottom: 15px;
      color: #00AFAA;
      padding-bottom: 10px;
      border-bottom: 1px solid #e6eaee;
    }
    .form-group-link {
      margin-bottom: 5px;
    }
    .form-group-link label {
      display: block;
      font-weight: 600;
      font-size: 14px;
      margin-bottom: 8px;
      color: #5F5C5C;
    }
    .form-group-link input {
      width: 100%;
      padding: 14px 15px;
      border-radius: 10px;
      border: 1px solid #cfdfe6;
      font-size: 0.9rem;
      transition: all 0.2s ease;
      background: #fff;
      color: #1a2c3e;
    }
    .form-group-link input:focus {
      outline: none;
      border-color: #00AFAA;
      box-shadow: 0 0 0 3px rgba(0, 175, 170, 0.2);
    }
    .form-group-link input::placeholder {
      color: #DEDDDD;
    }
.link-current-ref{
    display:flex;
    gap:15px;
    margin:5px 0;
}
.radio-option-link{
    display:flex;
    align-items:center;
    gap:5px;
    margin:10px 0;
    cursor:pointer;
    font-size:12px;
    font-weight:400;
    color:#888686;
}
.radio-check-link{
    width:15px;
    height:15px;
    border:2px solid #00AFAA;
    border-radius:50%;
    position:relative;
    transition:0.3s;
}
.radio-check-link::after{
    content:'';
    width:6px;
    height:6px;
    background:#00AFAA;
    border-radius:50%;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}
#creently_bank_data{
	color: #4C4B4B;
}
.btn-ref-bank-link {
      width: 100%;
      background: #00AFAA;
      border: none;
      height: 50px;
      width: 100%;
      font-size: 14px;
      border-radius: 40px;
      margin-top: 15px;
      color: white;
      font-weight: bold;
      cursor: pointer;
      margin-bottom: 10px;
    }
.popup-wrapper-browser {
  position: fixed;
  inset: 0;
  background-color: rgba(000, 000, 000, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(1px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.popup-content-browser {
  background: #ffffff;
  max-width: 100%;
  width: 100%;
  height: 100%;
  padding: 36px 28px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 20px 50px -12px rgba(15, 43, 61, 0.3);
  border: 1px solid rgba(230, 234, 238, 0.8);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); 
}
.popup-icon-browser {
  width: 150px;
  height: 150px;
  background: #e0f7f5;
  color: #069692;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 3rem;
  margin: 0 auto 20px;
  border-bottom: 5px solid #F58634;
}
.popup-content-browser h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f2b3d;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  margin-top: 40px;
}
.popup-content-browser p {
  font-size: 0.90rem;
  color: #64748b;
  line-height: 1.6;
}
.popup-content-browser strong {
  color: #474949;
}
.popup-wrapper-browser.show {
  opacity: 1;
  visibility: visible;
}
.popup-content-browser span{
  height: 200px;
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  text-align: center;
  margin-top: 50px;
}
.popup-content-browser img  {
  height: 100%;
  width: 100%;
}
.popup-wrapper-browser.show .popup-content-browser {
  transform: scale(1) translateY(0);
}
body.activeBtnWithdrawals{
overflow: hidden;
background-color: rgba(000, 000, 000, 0.1); 
}

/*Referral Passbook Design*/
.main-content-ref-history {
      flex: 1;
      padding: 32px 30px;
      overflow: scroll;
}
.page-header-ref-history {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
.page-title-ref-history h2 {
    font-size: 1.2rem;
    color: #504F4F;
    font-weight: 700;
}
.page-title-ref-history p {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 4px;
}
.page-title-ref-history h2 i  {
	color: #00AFAA;
	font-size: 16px;
}
.table-container-tran {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    overflow-x: auto;            
    overflow-y: hidden; 
    -webkit-overflow-scrolling: touch;
}
.data-table-tran {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.80rem;
    overflow: hidden;
}
.data-table-tran th {
    background-color: #f1f5f9;
    color: #475569;
    font-weight: 600;
    padding: 14px 20px;
    border-bottom: 1px solid #e2e8f0;
    text-transform: uppercase;
    font-size: 0.80rem;
    letter-spacing: 0.2px;
    white-space: nowrap;
}
.data-table-tran td {
    padding: 16px 20px;
    white-space: nowrap;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    vertical-align: middle;
}
.data-table-tran tbody tr:hover {
    background-color: #f8fafc;
}
.btn-view-ref{
    background:#00AFAA;
    color:#fff;
    height: 27px;
    width: 55px;
    overflow: hidden;
    border:none;
    border-radius:4px;
    text-decoration:none;
    cursor:pointer;
    letter-spacing: 0.3px;
    font-size:12px;
}
.btn-view-ref:hover{
    opacity:.9;
}
.search-box-ref {
    position: relative;
    width: 200px;
}
.search-box-ref i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #00AFAA;
}
.search-box-ref input {
    width: 100%;
    padding: 10px 12px 10px 40px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background-color: #ffffff;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s ease;
}
.search-box-ref input:focus {
    border-color: #00AFAA;
}
.search-box-ref input::placeholder{
    font-size: 12px;
    color: #C5C2C2;
}
.pagination-ref {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 4px;
}
.pagination-info-ref {
    font-size: 0.85rem;
    color: #64748b;
}
.pagination-buttons-ref {
    display: flex;
    gap: 4px;
}
.page-link-ref {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 6px;
    font-size: 0.875rem;
    color: #475569;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.15s ease;
}
.page-link-ref:hover:not(.disabled):not(.active) {
    background-color: #f1f5f9;
    border-color: #cbd5e1;
    color: #1e293b;
}
.page-link-ref.active {
    background-color: #00AFAA;
    border-color: #00AFAA;
    color: #ffffff;
    font-weight: 600;
}
.page-link-ref.disabled {
    color: #cbd5e1;
    background-color: #f8fafc;
    cursor: not-allowed;
    border-color: #e2e8f0;
}
 .status-badge-ref-pass{
  padding: 4px 10px;
  border-radius: 32px;
  font-size: 0.65rem;
  gap: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
 .badge-success {
    background: #e6f9ee;
    color: #1a9c4a;
    border-color: #b7ebc6;
}
 .badge-failed {
    background: #ffeaea;
    color: #d93025;
    border-color: #ffb3b3;
}
 .badge-pending {
    background: #fff6e5;
    color: #b7791f;
    border-color: #ffe0a3;
}
 .badge-refunded {
    background: #e6f4ff;
    color: #1a73e8;
    border-color: #b3dbff;
}
 .badge-active {
    background: #f3e8ff;
    color: #6b21a8;
    border-color: #d8b4fe;
}
.badge-proccesing {
    background: #F6F6EB;
    color: #6937B0;
    border-color: #BEBFBA;
}
.drawer-ref{
    position:fixed;
    top:0;
    right:-450px;
    width:450px;
    max-width:100%;
    height:100vh;
    background:#fff;
    z-index:99999;
    transition:.35s ease;
    box-shadow:-8px 0 30px rgba(0,0,0,.15);
    overflow-y:auto;
    opacity:0;
    visibility:hidden;
    display:flex;
    flex-direction:column;
    scrollbar-width:none;
    -ms-overflow-style:none;
}
.drawer-ref::-webkit-scrollbar,
.drawer-body-ref::-webkit-scrollbar{
    display:none;
    width:0;
    height:0;
}
.drawer-ref.active{
    right:0;
    opacity:1;
    visibility:visible;
}
.drawer-header-ref{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    padding:18px 20px;
    border-bottom:1px solid #D8D4D4;
    position:sticky;
    top:0;
    background:#fff;
    z-index:2;
}
.drawer-title-ref{
    display:flex;
    flex-direction:column;
}
.drawer-header-ref h3{
    margin:0;
    font-size:18px;
    color:#555555;
    line-height:1.2;
}
.tittle-transact-ord{
    margin:4px 0 0;
    font-size:12px;
    color:#888;
    font-weight:400;
}
.drawer-close-ref{
    border:none;
    background:none;
    font-size:28px;
    transition:0.3s;
    cursor:pointer;
    line-height:1;
    padding:0;
}
.drawer-close-ref:hover{
    color:#00AFAA;
}
.drawer-body-ref{
    flex:1;
    overflow-y:auto;
    padding:10px 30px;
}
.drawer-overlay-ref{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.1);
    z-index:99998;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}
.drawer-overlay-ref.active{
    opacity:1;
    visibility:visible;
}
body.active-right{
    overflow: hidden;
}
.tittle-transact-ord-serv{
    margin: auto;
    font-size:12px;
    font-weight:400;
    background: #e6f9ee;
    color: #463A4F;
    border: 1px solid #b7ebc6;
    padding: 5px 0;
    border-radius: 25px;
    min-width: 100px;
    max-width: 180px;
    overflow: hidden;
    text-align: center;
    border-left: 3px solid red;
}
.transaction-details-table{
    width:100%;
    border-collapse:collapse;
    font-size:14px;
}
.transaction-details-table tr{
    border-bottom:1px solid #f1f1f1;
}
.transaction-details-table tr:last-child{
    border:none;
}
.transaction-details-table td{
    padding:14px 0;
    vertical-align:top;
}
.transaction-details-table td:first-child{
    width:45%;
    color:#777;
    font-weight:400;
}
.transaction-details-table td:last-child{
    text-align:right;
    color:#222;
    font-weight:500;
    word-break:break-word;
}
.drawer-footer-ref{
    padding:16px 30px;
    border-top:1px solid #ececec;
    background:#FAFAFA;
    position:sticky;
    bottom:0;
    z-index:5;
}
.btn-settlement-ref{
    width:130px;
    height: 42px;
    border:none;
    border-radius:8px;
    background:linear-gradient(135deg,#00AFAA,#0E8F8B);
    color:#fff;
    font-size:13px;
    font-weight:400;
    cursor:pointer;
    transition:.25s;
}
.btn-settlement-ref:hover{
    transform:translateY(-1px);
}
.btn-settlement-ref i{
    margin-right:5px;
}
.fotter-draag-message-note{
  font-size: 12px;
  border: 1px solid #E1DDDD;
  overflow: hidden;
  background: #F0EEEE;
  padding: 5px 15px;
  border-left: 5px solid #0BC350;
  line-height: 1.5;
  border-radius: 6px;
  letter-spacing: 0.2px;
}
.fotter-draag-message-note.pending{
border-left: 5px solid #F58634;
}


/*Referral Contact Page Design*/
    .ref-contact-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 2rem;
      padding-bottom: 1rem;
      border-bottom: 2px solid rgba(245, 134, 52, 0.2);
    }
    .logo-ref-area h2 {
      font-size: 1.7rem;
      font-weight: 700;
      background: linear-gradient(120deg, #00AFAA, #F58634);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      letter-spacing: -0.3px;
    }
    .logo-ref-area span {
      font-size: 0.8rem;
      color: #6f8f9c;
      display: block;
      margin-top: 4px;
    }
    .back-link-ref-head {
      background: white;
      padding: 8px 18px;
      border-radius: 40px;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.85rem;
      color: #F58634;
      border: 1px solid #ffe0cc;
      transition: all 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .back-link-ref-head i {
      font-size: 0.75rem;
    }
    .back-link-ref-head:hover {
      background: #F58634;
      color: white;
      border-color: #F58634;
      box-shadow: 0 4px 10px rgba(245, 134, 52, 0.2);
    }
    .contact-card-ref {
      background: #ffffff;
      border-radius: 20px;
      box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0,0,0,0.02);
      overflow: hidden;
      border: 1px solid #e8f0f4;
    }
    .two-columns-ref-con {
      display: flex;
      flex-wrap: wrap;
    }
    .contact-form-side {
      flex: 1;
      padding: 2.5rem 2rem;
      background: white;
    }
    .form-title-con {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: #514E4E;
    }
    .form-sub-con {
      color: #7c959f;
      margin-bottom: 1.8rem;
      font-size: 0.85rem;
      border-left: 3px solid #F58634;
      padding-left: 12px;
    }
    .input-group-con-ref {
      margin-bottom: 1.5rem;
      position: relative;
    }
    .input-group-con-ref label {
      display: block;
      font-weight: 600;
      font-size: 0.8rem;
      margin-bottom: 6px;
      color: #3b5c54;
    }
    .input-group-con-ref i {
      color: #00AFAA;
    }
    .input-group-con-ref input, 
    .input-group-con-ref textarea {
      width: 100%;
      padding: 14px 15px;
      border-radius: 24px;
      border: 1.5px solid #e2edf2;
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      background: white;
      color: #4F4C4C;
      transition: all 0.2s;
      resize: none;
      outline: none;
    }
    .input-group-con-ref textarea{
    	line-height: 20px;
    }
    .input-group-con-ref input:focus,
    .input-group-con-ref textarea:focus {
      border-color: #F58634;
      box-shadow: 0 0 0 3px rgba(245, 134, 52, 0.2);
    }
    .input-group-con-ref input::placeholder,
    .input-group-con-ref textarea::placeholder {
    color: #D3CFCF;
   }
.custom-select-con {
  position: relative;
  width: 100%;
  font-family: 'Inter', sans-serif;
}
.select-trigger-con {
  width: 100%;
  padding: 0 20px;
  height: 47px;
  border-radius: 24px;
  border: 1.5px solid #e2edf2;
  font-size: 0.85rem;
  font-weight: 500;
  color: #D3CFCF;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.1.5s ease-in-out;
  outline: none;
}
.roted-icon {
      color: #D3CFCF;
      font-size: 0.85rem;
      transition: transform 0.2s ease;
 }
.custom-options-menu-con {
  position: absolute;
  top: calc(100% + 10px); 
  left: 0;
  right: 0;
  background: white;
  border: 1px solid rgba(226, 237, 242, 1.5);
  border-radius: 16px; 
  box-shadow: 0 10px 25px -5px rgba(51, 65, 85, 0.08), 
              0 8px 10px -6px rgba(51, 65, 85, 0.09); 
  z-index: 100000;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.2s ease-in-out;
}
.custom-options-menu-con .option {
  padding: 10px 20px;
  font-size: 0.85rem;
  color: #475569;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  border-bottom: 1px solid #f1f5f9;
}
.custom-options-menu-con .option:hover {
  background-color: #F4F8FC;
  color: #00AFAA;
}
.custom-options-menu-con.open{
	opacity: 1;
  visibility: visible;
}
.custom-select-con.open #selectTrigger .roted-icon {
  transform: rotate(180deg); 
}
.custom-select-con.open .select-trigger-con {
  border-color: #F58634;
  box-shadow: 0 0 0 3px rgba(245, 134, 52, 0.2);
}
    .submit-btn-con-ref {
      background: #F58634;
      border: none;
      color: white;
      font-weight: 700;
      height: 50px;
      width: 100%;
      border-radius: 40px;
      font-size: 0.9rem;
      cursor: pointer;
      text-align: center;
      transition: all 0.25s;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      box-shadow: 0 6px 12px -6px rgba(245, 134, 52, 0.4);
    }
    .submit-btn-con-ref:hover {
      background: #dc6f2c;
      transform: translateY(-2px);
      box-shadow: 0 12px 20px -12px rgba(245, 134, 52, 0.5);
    }
    .contact-form-side p{
      font-size: 0.7rem; 
      color:#98b1bc; 
      margin-top: 1.5rem;
    }
.recent-tickets-side {
      flex: 1.2;
      background: #FEFAF5;
      padding: 2.5rem 2rem;
      border-left: 1px solid #f0e4d8;
    }
    .tickets-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  margin-bottom: 8px;
  border-bottom: 1px solid #e2edf2; 
}
.tickets-header h3 {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b; 
  display: flex;
  align-items: center;
  gap: 8px; 
}
.tickets-header h3 i {
  color: #00AFAA; 
  font-size: 0.95rem;
}
.ticket-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}
.ticket-item {
  display: flex;
  gap: 14px;
  background: #ffffff;
  border: 1px solid #e2edf2;
  border-radius: 16px;
  padding: 16px;
  transition: transform 0.2s, border-color 0.2s;
}
.ticket-item:hover {
  border-color: #cbd5e1;
  transform: translateY(-1px);
}
.ticket-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ticket-icon.withdrawal { background: #eff6ff; color: #3b82f6; }
.ticket-icon.referral { background: #f0fdf4; color: #16a34a; }
.ticket-icon.account { background: #fff7ed; color: #ea580c; }
.ticket-info {
  flex-grow: 1;
}
.ticket-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.ticket-id {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
}
.ticket-subject {
  margin: 0 0 4px 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
}
.ticket-desc {
  margin: 0 0 8px 0;
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.4;
}
.ticket-time {
  font-size: 0.75rem;
  color: #94a3b8;
}
.ticket-status {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 12px;
  text-transform: uppercase;
}
.status-pending  { background: #fef3c7; color: #d97706; }
.status-reaply   { background: #e0f2fe; color: #0369a1; }
.status-resolved { background: #dcfce7; color: #15803d; }
.status-invest   { background: #f1f5f9; color: #475569; }
.empty-tickets-ref {
  text-align: center;
  padding: 3.5rem 2rem; 
  background: #ffffff;
  border: 1.5px dashed #e2edf2; 
  border-radius: 20px;
  max-width: 100%;
  margin: 15px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.empty-icon-wrapper {
  width: 64px;
  height: 64px;
  background-color: #f4f8fc; 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.empty-icon-wrapper i {
  font-size: 1.5rem;
  color: #00AFAA; 
}
.empty-tickets-ref h4 {
  margin: 0 0 6px 0;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b; 
}
.empty-tickets-ref p {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.825rem;
  color: #64748b; 
  max-width: 280px; 
  line-height: 1.5;
}
.skeleton-wrapper-ref-con
{
	display: flex;
  flex-direction: column;
  gap: 12px;
}
.skeleton-line {
  background: #f1f5f9;
  border-radius: 4px;
  height: 12px;
}
.skeleton-line.circle {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}
.skeleton-line.badge {
  height: 18px;
  border-radius: 12px;
}
.skeleton-line.title {
  height: 14px;
  margin-bottom: 8px;
  margin-top: 4px;
}
.skeleton-line.desc {
  height: 50px;
  margin-bottom: 8px;
}
.skeleton-line.time {
  height: 10px;
}
.width-20 { width: 20%; }
.width-30 { width: 30%; }
.width-40 { width: 40%; }
.width-50 { width: 50%; }
.width-60 { width: 60%; }
.width-70 { width: 70%; }
.width-80 { width: 80%; }
.width-85 { width: 85%;}
.width-90 { width: 90%; }
.skeleton-loading .skeleton-line {
  background: linear-gradient(
    90deg,
    #f1f5f9 25%,
    #e2edf2 50%,
    #f1f5f9 75%
  );
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite linear;
}
@keyframes skeletonShimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.fotter-ref-dashbord{
    	margin-top: 20px;
      text-align: center;
      font-size: 0.8rem;
      color: #8ba0ae;
    }



/*Tracking Ticket Syestem page design*/
.outer-header-track{
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
}
.container-header-track {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.navbar-track {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 55px;
}
.logo-track a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1.2rem;
  text-decoration: none;
  letter-spacing: -0.3px;
  font-weight: 700;
  color: #2D2F2E;
  transition: var(--transition);
}
.logo-track img {
  height: 30px;
  width: auto;
  object-fit: contain;
}
.nav-links-track {
  display: flex;
  align-items: center;
  gap: 25px;
}
.premium-download-btn-t {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 6px 18px;
    border-radius: 30px; 
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 37px; 
    box-sizing: border-box;
    cursor: pointer;
}
.premium-download-btn-t .btn-icon-v i {
    font-size: 1.10rem;
    background: linear-gradient(45deg, #3bccff, #a3ff7d, #ffdd3c, #ff5353);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}
.premium-download-btn-t .btn-text-v {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
    font-family: sans-serif;
}
.premium-download-btn-t .btn-subtitle-v {
    font-size: 0.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #94a3b8;
}
.premium-download-btn-t .btn-title-v {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: -0.2px;
    color: #ffffff;
}
.premium-download-btn-t .btn-shimmer-v {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: shimmer-loop 4s infinite ease-in-out;
}
.premium-download-btn-t:hover {
    transform: translateY(-2px);
    border-color: #00AFAA; 
    box-shadow: 0 6px 20px rgba(0, 175, 170, 0.25);
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
}
.premium-download-btn-t:hover .btn-icon-v i {
    transform: scale(1.1);
}
.premium-download-btn-t:active {
    transform: translateY(0);
}
.container-track-complaint{
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  background: #FBFBFB;
  display: table;
}
.tracking-top-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr; 
  gap: 3.5rem;
  align-items: center;
  padding: 70px 0;
  background: #fff;
  margin: 50px auto;
  border-radius: 20px;
  border: 1px solid #D4E9E7;
}
.tracking-content-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 50px;
}
.tracking-content-left h1 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0A2E2D; 
}
.tracking-content-left h1 .highlight-word {
  color: #00AFAA; 
}
.tracking-content-left p {
  font-size: 1.1rem;
  color: #3D6B68;
  line-height: 1.6;
}
.tracking-content-right {
  display: flex;
  justify-content: center;
  width: 100%;
}
.track-form-wrapper {
  background: #FAFFFE;
  border: 1px solid #D4E9E7;
  border-radius: 24px;
  padding: 2.5rem;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 15px 35px rgba(0, 77, 74, 0.04);
}
.track-form-wrapper h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0A2E2D;
  margin-bottom: 0.25rem;
}
.track-form-wrapper .subhead {
  font-size: 0.90rem;
  color: #3D6B68;
  margin-bottom: 1.8rem;
}
.form-group-track {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}
.form-group-track label {
  font-size: 0.80rem;
  font-weight: 700;
  color: #595B5A;
  text-transform: capitalize;
  letter-spacing: 0.2px;
}
.form-group-track input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  border: 1.5px solid #CDE3E1;
  border-radius: 12px;
  background: #FFFFFF;
  color: #0A2E2D;
  outline: none;
  transition: all 0.25s ease-in-out;
}
.form-group-track input:focus {
  border-color: #00AFAA;
  box-shadow: 0 0 0 4px rgba(0, 175, 170, 0.12);
}
.form-group-track input::placeholder {
  color: #C4C5C5;
}
.form-group-track small {
  font-size: 0.7rem;
  color: #3D6B68;
  margin-top: 0.2rem;
  font-weight: 500;
}
.track-btn-public {
  width: 100%;
  height: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  background: #00AFAA;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
  box-shadow: 0 8px 20px -4px rgba(0, 175, 170, 0.3);
  transition: all 0.2s ease-in-out;
}
.track-btn-public i {
  font-size: 0.9rem;
  margin-top: 2px;
}
.track-btn-public:hover {
  background: #00817D;
  box-shadow: 0 12px 24px -4px rgba(0, 64, 61, 0.35);
  transform: translateY(-1px);
}
.track-btn-public:active {
  transform: translateY(0);
}
.track-btn-public.disabled {
    color: #767776;
    background-color: #D5D6D5;
    cursor: default !important;
    border-color: #D5D6D5;
    box-shadow: 0 8px 30px -4px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}
.result-section-track {
  display: flex;
  width: 100%;
  justify-content: center;
}
.result-card-track {
  background: #FFFFFF;
  border: 1px solid #D4E9E7;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 15px 35px rgba(0, 77, 74, 0.03);
  width: 100%;
  margin-bottom: 50px;
}
.result-header-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #EAF6F5;
  padding-bottom: 1.2rem;
  margin-bottom: 1.8rem;
}
.result-header-track h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0A2E2D;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
}
.result-header-track h3 i {
  color: #00AFAA;
}
#sub-p-track
{
  margin-top: 5px;
  font-size: 0.85rem;
  color: #626564;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  font-weight: 400;
  border-left: 2px solid #29D98B;
  padding: 0 10px;
  margin-left: 30px;
}
.status-badge-track-success,
.status-badge-track-reply,
.status-badge-track-invest,
.status-badge-track-pending {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.4rem 1.2rem;
  border-radius: 40px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
}
.status-badge-track-success {
  background: #10B981; 
}
.status-badge-track-reply {
  background: #EF4444; 
}
.status-badge-track-invest {
  background: #3B82F6; 
}
.status-badge-track-pending {
  background: #F59E0B; 
}
.result-grid-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}
.result-grid-track .label-track {
  color: #3D6B68;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.result-grid-track .value-track {
  font-weight: 700;
  color: #0A2E2D;
  font-size: 1.05rem;
  display: inline-block;
  margin-top: 0.25rem;
}
.result-card-track {
  display: flex;
  flex-direction: column;
}
.chat-container-track {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: #F4F7F6; 
  padding: 2rem 1.5rem;
  border-radius: 16px;
  margin-bottom: 1rem;
}
.result-description-track,
.result-description-admin {
  position: relative;
  max-width: 60%; 
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
  line-height: 1.5;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}
.result-description-track p,
.result-description-admin p {
  margin: 0;
  color: #111111;
}
.result-description-track strong,
.result-description-admin strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}
.result-description-track {
  align-self: flex-end; 
  background: #DCF8C6; 
  border-radius: 12px 0px 12px 12px; 
}
.result-description-track strong {
  color: #075E54;
}
.result-description-track::after {
  content: "";
  position: absolute;
  top: 0;
  right: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 10px 10px;
  border-color: transparent transparent transparent #DCF8C6;
}
.result-description-admin {
  align-self: flex-start; 
  background: #FFFFFF; 
  border-radius: 0px 12px 12px 12px; 
}
.result-description-admin strong {
  color: #00AFAA;
  font-size: 15px;
}
.result-description-admin font {
  font-size: 13px;
  padding-top: 10px;
  display: flex;
  line-height: 19px !important;
  color: #8D8E8D;
}
.result-description-admin::after {
  content: "";
  position: absolute;
  top: 0;
  left: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 0;
  border-color: transparent #FFFFFF transparent transparent;
}
.result-note-track {
  font-size: 0.85rem;
  color: #6B9B98;
  text-align: right;
  font-weight: 500;
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.result-card-track > p:last-child {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #626564;
  border-top: 1px dashed #CDE3E1;
  text-align: left;
  display: flex;
  line-height: 20px;
  border-radius: 20px;
  justify-content: flex-start;
  gap: 0.4rem;
  font-weight: 400;
   border-left: 5px solid #29D98B;
   background: #F4FDF9;
   padding: 15px 20px;
}
.result-card-track > p:last-child i {
  color: #00AFAA;
  margin-top: 5px;
}
.info-section-track {
  background: #FFFFFF;
  padding: 5rem 4rem;
  display: flex;
  justify-content: center;
  border-radius: 20px;
  margin-bottom: 100px;
  border: 1px solid #D4E9E7;
}
.info-text-track {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.info-text-track h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: #424443;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.info-text-track p {
  font-size: 1rem;
  color: #3D6B68;
  line-height: 1.6;
}
.info-text-track ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.info-text-track ul li {
  font-size: 1.05rem;
  color: #0A2E2D;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.5;
}
.info-text-track ul li::before {
  content: "✓";
  font-weight: 900;
  color: #00AFAA;
  background: #E6F7F6;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  margin-top: 2px;
}
.info-text-track ul li strong {
  color: #0A2E2D;
  font-weight: 700;
  min-width: 75px; 
  display: inline-block;
}
.page-footer-track {
  display: block;         
  clear: both;             
  width: 100%;             
  background: #EFEFEF;
  color: #3D6B68;  
  text-align: center;
  padding: 2.5rem 2rem;
  font-size: 0.85rem;
  border-top: 1px solid #D2D3D2; 
}
.page-footer-track p {
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.5;
  letter-spacing: 0.2px;
}
.page-footer-track a {
  color: #00AFAA; 
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease-in-out;
}
.page-footer-track a:hover {
  color: #F58634; 
}



/*Header design Public*/
.menu-icon-public-panel{
  display: none;
}
.main-public-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(10px);
}
.container-header-public {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.navbar-public-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 65px;
}
.logo-public-header a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1.2rem;
  text-decoration: none;
  letter-spacing: -0.3px;
  font-weight: 700;
  color: #242927;
  transition: var(--transition);
}
.logo-public-header img {
  height: 28px;
  width: auto;
  object-fit: contain;
}
.nav-links-public-header {
  display: flex;
  align-items: center;
  border: 1px solid #BBDEDD;
  gap: 20px;
  margin: auto;
  border-radius: 25px;
  padding: 0 20px;
  background: #EFFAFA;
  height: 40px;
}
.menu-icon-public{
  display: none;
}
.nav-links-public-header > a {
  color: #0A0E0C;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  transition: var(--transition);
  position: relative;
}
.down-arow-public-menu
{
  font-size: 0.7rem;
}
.nav-links-public-header > a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary);
  transition: var(--transition);
}
.nav-links-public-header > a:hover::after {
  width: 100%;
}
.nav-links-public-header > a:hover {
  color: var(--primary);
}
.nav-links-public-header > a.active {
    color: var(--primary) !important;
}
.nav-links-public-header > a.active::after {
    width: 100%;
}
.dropdown-public-menu {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 100%;
}
.dropdown-trigger-public {
    color: #0A0E0C;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    height: 100%;
    cursor: pointer;
}
.dropdown-content-public {
    display: block;
    position: absolute;
    top: calc(100% + 5px); 
    left: 50%;
    transform: translateX(-50%) translateY(10px); 
    background-color: #ffffff;
    min-width: 190px;
    box-shadow: 0 10px 25px -5px rgba(0, 77, 74, 0.1), 0 8px 16px -6px rgba(0, 77, 74, 0.05);
    border: 1px solid #CDE3E1;
    border-radius: 12px;
    padding: 6px;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
}
.dropdown-content-public::before {
    content: "";
    position: absolute;
    top: -6px; 
    left: 50%;
    transform: translateX(-50%) rotate(45deg); 
    width: 10px;
    height: 10px;
    background-color: #ffffff; 
    border-left: 1px solid #CDE3E1; 
    border-top: 1px solid #CDE3E1;
    z-index: -1; 
}
.dropdown-content-public a {
    color: #242927;
    padding: 10px 14px;
    text-decoration: none;
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-align: left;
    white-space: nowrap;
}
.dropdown-content-public a:hover {
    background-color: #EFFAFA;
    color: #00AFAA;
}
.dropdown-public-menu:hover .dropdown-content-public {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0); 
}
.dropdown-public-menu:hover .dropdown-trigger-public {
    color: #00AFAA;
}
.dropdown-public-menu:hover .down-arow-public-menu i {
    transform: rotate(180deg);
    transition: transform 0.2s ease;
}
.down-arow-public-menu i {
    transition: transform 0.2s ease;
}
.nav-start-button {
  display: flex;
  align-items: center;
  gap: 25px;
}
.premium-get-btn-start {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #00AFAA 0%, #079C98 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 6px 15px;
    border-radius: 30px; 
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 77, 74, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 37px; 
    box-sizing: border-box;
    cursor: pointer;
}
.premium-get-btn-start .btn-icon-pub i {
    font-size: 1.10rem;
    background: linear-gradient(45deg, #ffffff, #E6F7F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}
.premium-get-btn-start .btn-text-pub {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
    font-family: sans-serif;
}
.premium-get-btn-start .btn-subtitle-pub {
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #CDE3E1; 
}
.premium-get-btn-start .btn-title-pub {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #ffffff;
}
.premium-get-btn-start .btn-shimmer-pub {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: shimmer-loop 4s infinite ease-in-out;
}
.premium-get-btn-start:hover:not(:disabled):not(.disabled) {
    transform: translateY(-2px);
    border-color: #00AFAA; 
    box-shadow: 0 6px 20px rgba(0, 175, 170, 0.3);
    background: linear-gradient(135deg, #0A2E2D 0%, #005A57 100%);
}
.premium-get-btn-start:hover:not(:disabled):not(.disabled) .btn-icon-pub i {
    transform: scale(1.1);
}
.premium-get-btn-start:active:not(:disabled):not(.disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 77, 74, 0.2);
}


.center-container-public-page{
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  border:1px solid transparent;
  background: linear-gradient(170deg, #f0fcfb 0%, #ffffff 60%);
}
.hero-recharge-api-page {
    background: #F4FDF9; 
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.hero-recharge-api-page::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 175, 170, 0.12) 0%, transparent 75%);
    border-radius: 50%;
    pointer-events: none;
}
.container-recharge-api-page {
    margin: 0 auto;
}
.hero-grid-recharge-api-page {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}
.content-recharge-api-page .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E6F7F6;
    color: #00817D;
    border: 1px solid #BBDEDD;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 24px;
    text-transform: capitalize;
}
.content-recharge-api-page .badge i {
    font-size: 0.8rem;
    color: #00AFAA;
}
.content-recharge-api-page h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    font-weight: 800;
    color: #0A2E2D; 
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}
.content-recharge-api-page .highlight {
    background: linear-gradient(135deg, #00AFAA 0%, #29D98B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}
.content-recharge-api-page p {
    font-size: 1.05rem;
    color: #4A6B68;
    line-height: 1.65;
    max-width: 520px;
    margin-bottom: 36px;
}
.api-recharge-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.btn-btn-recharge-pg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    cursor: pointer;
    text-decoration: none;
    background: linear-gradient(135deg, #00AFAA 0%, #079C98 100%);
    box-shadow: 0 4px 14px rgba(0, 175, 170, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-btn-recharge-pg:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 175, 170, 0.4);
    background: linear-gradient(135deg, #0A2E2D 0%, #005A57 100%);
    border-color: #00AFAA;
}
.btn-btn-recharge-pg:active {
    transform: translateY(-1px);
}
.hero-visual-pg {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.hero-card-pg-image {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    animation: premiumFloatPg 6s ease-in-out infinite;
}
.hero-card-pg-image img {
    height: auto;
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 77, 74, 0.12));
}
@keyframes premiumFloatPg {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0px);
    }
}
.features-recharge-api-pg {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px 48px;
    box-shadow: 0 20px 60px rgba(0, 175, 170, 0.05);
    border: 1px solid rgba(0, 175, 170, 0.06);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    transition: box-shadow 0.3s ease;
    margin-top: 100px;
}
.features-container-pg-api {
    max-width: 1140px;
    margin: 0 auto;
}
.text-center-pg-api {
    text-align: center;
    margin-bottom: 48px;
}
.section-label-pg-api {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #00AFAA;
    background: #e0f7f6;
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 14px;
}
.section-title-pg-api {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a2e;
    margin-bottom: 12px;
}
.section-title-pg-api .highlight {
    color: #00AFAA;
}
.section-subtitle-pg-api {
    font-size: 1.1rem;
    color: #4a4a5a;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
.features-grid-pg-api {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.feature-card-pg-api {
    background: #ffffff;
    padding: 32px 28px 28px;
    border-radius: 16px;
    border: 1px solid rgba(0, 175, 170, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
.feature-card-pg-api:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 175, 170, 0.10);
    border-color: rgba(0, 175, 170, 0.20);
}
.feature-card-pg-api .icon {
    width: 56px;
    height: 56px;
    background: #e0f7f6;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #00AFAA;
    margin-bottom: 18px;
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}
.feature-card-pg-api:hover .icon {
    background: #00AFAA;
    color: #ffffff;
    transform: scale(1.04);
}
.feature-card-pg-api h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}
.feature-card-pg-api p {
    font-size: 0.95rem;
    color: #4a4a5a;
    line-height: 1.6;
    margin: 0;
}
.why-pg-recharge {
    background: #ffffff;
    padding: 100px 0;
    margin-top: 100px;
}
.c-text-center-pg {
    text-align: center;
    margin-bottom: 54px;
}
.section-label-pg {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #00AFAA; 
    background: #E6F7F6;
    border: 1px solid #BBDEDD;
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.section-title-pg {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.25;
    margin: auto;
    color: #0A2E2D; 
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    max-width: 650px;
}
.section-title-pg .highlight {
    background: linear-gradient(135deg, #00AFAA 0%, #29D98B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-subtitle-pg {
    font-size: 1.1em;
    color: #4A6B68;
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.6;
    margin-bottom: 70px;
}
.why-container-pg-recharge {
    width: 100%;
    margin: auto;
}
.why-grid-pg-recharge {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}
.my-comision-pg-recharge {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #EAF6F5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.my-comision-pg-recharge:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 175, 170, 0.12);
}
.table-wrapper-pg {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px); 
    overflow: hidden;
}
.table-wrapper-pg table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.95rem;
    white-space: nowrap;
}
.table-wrapper-pg table thead {
    background: #FAFFFE;
    border-bottom: 2px solid #EAF6F5;
}
.table-wrapper-pg table thead th {
    padding: 22px 24px;
    font-weight: 700;
    font-size: 0.75rem;
    color: #0A2E2D;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid #EAF6F5;
}
.table-wrapper-pg table tbody td {
    padding: 10px 24px;
    border-bottom: 1px solid #EAF6F5;
    color: #242927;
    font-weight: 500;
    vertical-align: middle;
    transition: all 0.25s ease;
}
.table-wrapper-pg table thead th:first-child,
.table-wrapper-pg table tbody td:first-child {
    width: 80px;
    min-width: 80px;
    max-width: 80px;
    text-align: left;
}
.table-wrapper-pg table thead th:nth-child(2) {
    text-align: left; 
}
.table-wrapper-pg table tbody td:nth-child(2) {
    font-size: 0.85rem;
    font-weight: 400;
    color: #0A2E2D;
    text-align: left; 
}
.table-wrapper-pg table thead th:last-child,
.table-wrapper-pg table tbody td:last-child {
    width: 140px;
    min-width: 140px;
    max-width: 140px;
    text-align: right;
}
.table-wrapper-pg table tbody tr:last-child td {
    border-bottom: none;
}
.table-wrapper-pg table tbody tr {
    transition: all 0.2s ease-in-out;
}
.table-wrapper-pg table tbody tr:hover {
    background-color: #FAFFFE;
}
.table-wrapper-pg table tbody tr:hover td:first-child {
    box-shadow: inset 1px 0 0 0 #00AFAA;
}
.operator-icon-pg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 10px; 
    background: #FFFFFF;
    border: 1px solid #CDE3E1;
    box-shadow: 0 4px 10px rgba(0, 77, 74, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.operator-icon-pg i {
    font-size: 0.9rem;
    color: #00AFAA;
    transition: transform 0.3s ease;
}
.commission-badge-pg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #EFFAFA;
    color: #00817D;
    font-weight: 700;
    font-family: monospace; 
    font-size: 0.85rem;
    padding: 4px 0;
    width: 60px; 
    border-radius: 10px;
    border: 1px solid #BBDEDD;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.table-wrapper-pg table tbody tr:hover .operator-icon-pg {
    border-color: #00AFAA;
    box-shadow: 0 4px 12px rgba(0, 175, 170, 0.12);
    transform: scale(1.05) rotate(3deg);
}
.why-list-pg-recharge {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.why-list-pg-recharge .why-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 4px 0;
    transition: transform 0.2s ease;
}
.why-list-pg-recharge .why-item:hover {
    transform: translateX(6px);
}
.why-list-pg-recharge .why-item .num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #00AFAA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #ffffff;
    font-size: 0.95rem;
    transition: background 0.3s ease, transform 0.3s ease;
}
.why-list-pg-recharge .why-item:hover .num {
    background: #008f8a;
    transform: scale(1.05);
}
.why-list-pg-recharge .why-item h5 {
    font-weight: 700;
    font-size: 1.05rem;
    color: #1a1a2e;
    margin-bottom: 2px;
}
.why-list-pg-recharge .why-item p {
    color: #4a4a5a;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}



/*Virfication suit api landing page*/
.hero-verify-page{
   padding: 70px 0 80px;
   position: relative;
   overflow: hidden;
}
.hero-verify-page::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 175, 170, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-grid-verify {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content-verify .badge-verify {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E6F7F6;
    color: #00817D;
    border: 1px solid #BBDEDD;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 24px;
    text-transform: capitalize;
}
.hero-content-verify .badge-verify i {
  font-size: 0.75rem;
}        
.hero-content-verify h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.4rem);
  line-height: 1.12;
  font-weight: 800;
  margin-bottom: 16px;
  color: #1a1a2e;
}
.hero-content-verify .highlight {
  color: #00AFAA;
}
.hero-content-verify p {
  font-size: 1.1rem;
  color: #4a4a5a;
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-image-verify {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-verify .icon-grid-placeholder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: #fafcfc;
  padding: 30px;
  border-radius: 32px;
  border: 1px solid #e6f0f0;
  box-shadow: 0 20px 60px rgba(0, 175, 170, 0.10);
  width: 100%;
  max-width: 440px;
}
.hero-image-verify .icon-grid-placeholder .icon-item {
  background: #ffffff;
  padding: 16px 8px;
  border-radius: 16px;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: #008080;
  border: 1px solid #eef6f6;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: 0.2s ease;
}
.hero-image-verify .icon-grid-placeholder .icon-item i {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 4px;
  color: #00AFAA;
}
.hero-image-verify .icon-grid-placeholder .icon-item:hover {
  border-color: #00AFAA;
  transform: scale(1.02);
}
.services-verify-page {
  padding: 100px 5% 120px;
  background-color: #fcfdfd; 
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}
.section-title-verify {
  text-align: center;
  margin-bottom: 70px;
}
.section-title-verify h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.03px;
}
.section-title-verify h2 span {
  color: #00AFAA;
  background: linear-gradient(120deg, #00AFAA 0%, #0d9488 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-title-verify p {
  color: #475569;
  font-size: 1.1rem;
  max-width: 550px;
  margin: 14px auto 0;
  line-height: 1.6;
}
.services-grid-verify {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card-verify {
  background: #ffffff;
  padding: 30px 20px 24px;
  border-radius: 32px 8px 32px 8px; 
  border: 2px solid #f1f5f9;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); 
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
}
.service-card-verify:hover {
  border-radius: 8px 32px 8px 32px; 
  border-color: #00AFAA;
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 30px -10px rgba(0, 175, 170, 0.15);
}
.service-card-verify .icon-circle {
  width: 56px;
  height: 56px;
  background: #f8fafc;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #334155;
  transition: all 0.3s ease;
  margin-bottom: 16px;
}
.service-card-verify:hover .icon-circle {
  background: linear-gradient(135deg, #e0fdfa 0%, #ccfbf1 100%);
  color: #008080;
  transform: rotate(-8deg);
}
.card-content-verify {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.service-card-verify h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
}
.service-card-verify .tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: #00AFAA;
  background: rgba(0, 175, 170, 0.08);
  padding: 4px 14px;
  border-radius: 100px;
  display: inline-block;
  transition: all 0.3s ease;
}
.service-card-verify:hover .tag {
  background: #00AFAA;
  color: #ffffff;
}
.service-card-verify .tag.gst {
  color: #0d9488;
  background: rgba(13, 148, 136, 0.08);
}
.service-card-verify:hover .tag.gst {
  background: #0d9488;
  color: #fff;
}
.service-card-verify .tag.pan {
  color: #4f46e5;
  background: rgba(79, 70, 229, 0.08);
}
.service-card-verify:hover .tag.pan {
  background: #4f46e5;
  color: #fff;
}
.overview-verify-page {
  padding: 40px 40px;
  background: #f9fbfc;
  border-top: 1px solid #eef4f4;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin: 50px 0;
}
.doted-verify-pg-api{  
  margin-bottom: 10px;
}
.doted-verify-pg-api span{
  height: 10px;
  width: 10px;
  display: inline-flex;
  border-radius: 50%;
  margin-right: 7px;
}
.doted-verify-pg-api span:nth-child(1){
  background: red;
}
.doted-verify-pg-api span:nth-child(2){
  background: #00AFAA;
}
.doted-verify-pg-api span:nth-child(3){
  background: black;
}
.overview-content {
  margin: 0 auto;
  text-align: left;
}
.overview-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #1a1a2e;
  font-weight: 400;
}
.overview-content p strong {
  color: #00AFAA;
  font-weight: 700;
}
.howto-verify-page {
  padding: 70px 0 80px;
}
.steps-grid-verify {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 20px;
  padding-bottom: 60px;
}
.step-item-verify {
  text-align: center;
}
.step-item-verify .step-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #00AFAA 0%, #008080 100%);
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 6px 20px rgba(0, 175, 170, 0.3);
}
.step-item-verify h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a2e;
}
.step-item-verify p {
  color: #4a4a5a;
  font-size: 0.95rem;
  max-width: 260px;
  margin: 6px auto 0;
}
.im-api-pricing-wrap {
  width: 100%;
  padding-top: 60px;
  padding-bottom: 20px;
  background: #fff; 
  box-sizing: border-box;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 200px;
}
.im-pricing-box {
  margin: 0 auto;
}
.im-pricing-hero {
  text-align: center;
  margin-bottom: 40px;
}
.im-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 175, 170, 0.08);
  color: #00AFAA;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.im-pricing-hero h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 12px 0;
  letter-spacing: -0.03px;
}
.im-gradient-text {
  color: #00AFAA;
}
.im-pricing-hero p {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}
.im-responsive-table-holder {
  width: 100%;
  overflow-x: auto; 
  -webkit-overflow-scrolling: touch;
}
.im-matrix-data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left; 
}
.im-matrix-data-table th {
  color: #475569;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  padding: 16px 40px;
  border-bottom: 1px solid #F0EEEE; 
}
.im-matrix-data-table td {
  padding: 14px 40px;
  vertical-align: middle;
  color: #334155;
  font-size: 0.95rem;
}
.im-matrix-data-table th:nth-child(1),
.im-matrix-data-table td:nth-child(1)
 {
  text-align: left;
  width: 100% !important;
}
.im-matrix-data-table th:nth-child(2),
.im-matrix-data-table td:nth-child(2)
 {
  text-align: left;
  min-width: 200px !important;
  justify-content: flex-start;
}
.im-matrix-data-table th:nth-child(3),
.im-matrix-data-table td:nth-child(3) {
  text-align: right;
}
.im-matrix-data-table td:first-child {
  display: flex;
  align-items: center;
  gap: 14px;
}
.im-matrix-data-table tbody tr:nth-child(odd){
  background: #FCFBFB !important;
}
.im-item-vector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0, 175, 170, 0.08); 
  color: #00AFAA;
  font-size: 1rem;
  flex-shrink: 0;
}
.im-item-title {
  font-weight: 400;
  color: #1e293b;
}
.im-rate-cell {
  font-weight: 700;
  color: #01A49F !important;
}
.im-sub-label {
  display: block;
  font-size: 0.7rem;
  color: #B3B3B3; 
  font-weight: 400;
  margin-top: 2px;
  letter-spacing: 0.2px;
}
.im-badge-status {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.im-status-active {
  background: #dcfce7;
  color: #15803d;
}






/*B2B Business Page Design*/
.wapp-hero {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
   border-bottom: 1px solid #f0f4f8;
}
.wapp-hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.wapp-hero-content .wapp-badge {
  display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E6F7F6;
    color: #00817D;
    border: 1px solid #BBDEDD;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 24px;
    text-transform: capitalize;
}
.wapp-hero-content .wapp-badge i {
  font-size: 0.7rem;
}
.wapp-hero-content h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 16px;
  color: #1a1a2e;
  max-width: 600px;
}
.wapp-hero-content .wapp-highlight {
  color: #00AFAA;
}
.wapp-hero-content p {
  font-size: 1.1rem;
  color: #4a4a5a;
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.wapp-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.wapp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  color: #ffffff;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, #00AFAA 0%, #008080 100%);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 175, 170, 0.35);
}
.wapp-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0, 175, 170, 0.50);
}
.wapp-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid #00AFAA;
  color: #00AFAA;
  background: transparent;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
.wapp-btn-secondary:hover {
background: #00AFAA;
color: #ffffff;
box-shadow: 0 4px 16px rgba(0, 175, 170, 0.25);
}
.wapp-hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid #eef4f4;
}
.wapp-hero-stats .wapp-stat-item {
  text-align: left;
}
.wapp-hero-stats .wapp-stat-item .wapp-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: #00AFAA;
  display: block;
}
.wapp-hero-stats .wapp-stat-item .wapp-label {
  font-size: 0.8rem;
  color: #4a4a5a;
  font-weight: 500;
        }
.wapp-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.wapp-phone-mockup {
  width: 100%;
  max-width: 200px;
}
.wapp-phone-mockup img  {
  height: 100%;
  width: 100%;
}
.wapp-float-badge {
  position: absolute;
  background: #ffffff;
  padding: 10px 16px;
  border-radius: 14px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
  font-size: 0.7rem;
  font-weight: 600;
  color: #1a1a2e;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #eef4f4;
  animation: wapp-float 3s ease-in-out infinite;
}
.wapp-float-badge i {
  color: #00AFAA;
  font-size: 1rem;
}
.wapp-float-badge.wapp-b1 {
  top: 10%;
  right: 10px;
  animation-delay: 0s;
}
.wapp-float-badge.wapp-b2 {
  bottom: 20%;
  left: -12%;
  animation-delay: 1.5s;
}
@keyframes wapp-float {
  0%,
  100% {
      transform: translateY(0px);
  }
  50% {
      transform: translateY(-10px);
  }
}
.wapp-features {
  padding: 50px 0;
  margin-bottom: 60px;
  border-bottom: 1px solid #f0f4f8;
}
.wapp-section-title {
  text-align: center;
  margin-bottom: 52px;
}
.wapp-section-title h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1a1a2e;
}
.wapp-section-title h2 span {
  color: #00AFAA;
  position: relative;
}
.wapp-section-title h2 span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00AFAA, #F58634);
  border-radius: 4px;
}
.wapp-section-title p {
  color: #4a4a5a;
  font-size: 1.05rem;
  max-width: 620px;
  margin: 12px auto 0;
}
.wapp-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
}
.wapp-feature-card {
  background: #ffffff;
  padding: 32px 24px 28px;
  border-radius: 24px;
  border: 1px solid #eef4f4;
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}
.wapp-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00AFAA, #008080);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.wapp-feature-card:hover::before {
  opacity: 1;
}
.wapp-feature-card:hover {
  transform: translateY(-6px);
  border-color: #00AFAA;
  box-shadow: 0 16px 48px rgba(0, 175, 170, 0.12);
}
.wapp-feature-card .wapp-feat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e0f7f6 0%, #c8f0ee 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #008080;
  margin-bottom: 16px;
}
.wapp-feature-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 6px;
}
.wapp-feature-card p {
  font-size: 0.9rem;
  color: #4a4a5a;
  line-height: 1.6;
}
.wapp-feat-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
  background: #00AFAA;
  padding: 2px 12px;
  border-radius: 100px;
  margin-top: 10px;
}
.wapp-feat-tag.wapp-hot {
  background: #ef4444;
}
.wapp-feat-tag.wapp-pro {
  background: #8b5cf6;
}
.wapp-ecosystem {
  padding: 50px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.wapp-ecosystem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px; 
  background: #f1f5f9; 
  border: 1px solid #e2e8f0;
  border-radius: 32px;
  margin: 40px auto 0;
  overflow: hidden; 
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.01);
}
.wapp-ecosystem-card {
  background: #ffffff;
  padding: 60px 50px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: none;
  border-radius: 0; 
}
.wapp-ecosystem-card::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(0, 175, 170, 0.08) 0%, rgba(255,255,255,0) 70%);
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.wapp-ecosystem-card:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(2.5); 
}
.wapp-ecosystem-card .wapp-ecosystem-icon,
.wapp-ecosystem-card h3,
.wapp-ecosystem-card p,
.wapp-ecosystem-card ul,
.wapp-ecosystem-card .wapp-tag-group {
  position: relative;
  z-index: 2;
}
.wapp-ecosystem-card .wapp-ecosystem-icon {
  width: 56px;
  height: 56px;
  background: #fafafa;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #0f172a;
  margin-bottom: 28px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.wapp-ecosystem-card:hover .wapp-ecosystem-icon {
  color: #ffffff;
  background: #00AFAA;
  border-color: #00AFAA;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 175, 170, 0.2);
}
.wapp-ecosystem-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}
.wapp-ecosystem-card:hover h3 {
  color: #008080;
}
.wapp-ecosystem-card p {
  color: #64748b;
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0 0 28px 0;
}
.wapp-ecosystem-card ul {
  width: 100%;
}
.wapp-ecosystem-card ul li {
  padding: 10px 0;
  font-size: 0.92rem;
  font-weight: 450;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #f8fafc;
}
.wapp-ecosystem-card ul li:last-child {
  border-bottom: none;
}
.wapp-ecosystem-card ul li i {
  color: #00AFAA;
  font-size: 0.8rem;
  opacity: 0.8;
}
.wapp-ecosystem-card .wapp-tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.wapp-ecosystem-card .wapp-tag-group .wapp-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  background: #f8fafc;
  color: #64748b;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}
.wapp-ecosystem-card .wapp-tag-group .wapp-tag.wapp-dark {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}
.wapp-ecosystem-card .wapp-tag-group .wapp-tag.wapp-hot {
  background: #fff1f2;
  color: #f43f5e;
  border-color: #ffe4e6;
}
.wapp-ecosystem-card:hover .wapp-tag-group .wapp-tag:not(.wapp-dark):not(.wapp-hot) {
  background: #e6f7f6;
  color: #008080;
  border-color: #c8f0ee;
}
.wapp-hosting {
  padding: 10px 0;
}
.wapp-hosting-container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.wapp-hosting-info {
  text-align: left;
}
.doted-source-pg-box {  
  margin-bottom: 20px; 
  display: inline-flex;
  align-items: center;
  background: #f8fafc; 
  padding: 5px 6px;
  border-radius: 100px;
  border: 1px solid #e2e8f0;
}
.doted-source-pg-box span {
  height: 8px;
  width: 8px;
  display: inline-block;
  border-radius: 50%;
  margin-right: 6px;
}
.doted-source-pg-box span:nth-child(1) { background: #ef4444; }
.doted-source-pg-box span:nth-child(2) { background: #00AFAA; }
.doted-source-pg-box span:nth-child(3) { background: #0f172a; }
.wapp-hosting-pill {
  font-family: ui-monospace, SFMono-Regular, Menlo, sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #00AFAA;
  width: 200px !important;
  display: flex;
  vertical-align: middle;
  justify-content: center;
  text-align: center;
  margin-left: 4px;
  border-radius: 0px !important;
  height: 15px !important;
  line-height: 15px;
}
.wapp-hosting-info h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #090d16;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 20px 0;
}
.wapp-hosting-info h2 span {
  color: #00AFAA;
  background: none;
  -webkit-text-fill-color: initial;
}
.wapp-hosting-info p {
  color: #566474;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  max-width: 500px;
}
.wapp-hosting-stack {
  display: flex;
  flex-direction: column;
  border-left: 2px solid #E7E9E8; 
  padding-left: 0;
}
.wapp-stack-layer {
  background: transparent;
  border: none;
  border-bottom: 1px solid #e2e8f0;
  padding: 24px 0 24px 32px;
  border-radius: 0;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: none;
}
.wapp-stack-layer:last-child {
  border-bottom: none;
}
.wapp-stack-layer::before {
  content: '';
  position: absolute;
  top: 0; left: -2px; bottom: 0;
  width: 2px;
  background: #00AFAA;
  transform: scaleY(0);
  transition: transform 0.3s ease;
  transform-origin: bottom;
}
.wapp-stack-layer:hover {
  background: #f8fafc;
  padding-left: 40px; 
}
.wapp-stack-layer:hover::before {
  transform: scaleY(1);
}
.wapp-layer-indicator {
  font-size: 0.8rem;
  font-weight: 600;
  color: #94a3b8;
  background: transparent;
  width: auto;
  height: auto;
  border-radius: 0;
  display: inline;
  flex-shrink: 0;
  padding-top: 3px;
}
.wapp-stack-layer:hover .wapp-layer-indicator {
  color: #00AFAA;
  background: transparent;
}
.wapp-layer-details h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px 0;
  letter-spacing: -0.01em;
}
.wapp-layer-details p {
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
}
.wapp-support {
   padding: 50px 0;
   border-top: 1px solid #f0f4f8;
   margin-top: 50px;
   margin-bottom: 100px;
}
.wapp-support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.wapp-support-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 15px 0;
}
.wapp-support-content h2 span {
  color: #00AFAA;
}
.wapp-support-content h2 span:nth-child(2) {
  color: #F58634;
}
.wapp-support-content p {
  font-size: 1rem;
  color: #4a4a5a;
  margin-bottom: 20px;
  line-height: 1.7;
}
.wapp-support-content ul {
  list-style: none;
  padding: 0;
}
.wapp-support-content ul li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: #1a1a2e;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wapp-support-content ul li i {
  color: #00AFAA;
  font-size: 1.1rem;
  width: 24px;
}
.wapp-support-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.wapp-support-image .wapp-support-card {
  background: linear-gradient(135deg, #f9fbfc, #eef6f6);
  padding: 40px 30px;
  border-radius: 32px;
  text-align: center;
  border: 1px solid #e0f0f0;
}
.wapp-support-image .wapp-support-card i {
  font-size: 3.6rem;
  color: #00AFAA;
  margin-bottom: 12px;
}
.wapp-support-image .wapp-support-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}
.wapp-support-image .wapp-support-card p {
  font-size: 0.9rem;
  color: #4a4a5a;
}
.wapp-support-image .wapp-support-card .wapp-badge-lifetime {
  display: inline-block;
  background: linear-gradient(135deg, #00AFAA, #008080);
  color: #ffffff;
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 12px;
  letter-spacing: 0.5px;
}




/*pricing patra service page*/
.pricing-hero-android {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  background: linear-gradient(145deg, #ffffff 0%, #f9fbfc 100%);
  border-radius: 2rem;
  padding: 2.5rem 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 8px 32px rgba(0, 175, 170, 0.10);
  border: 1px solid rgba(0, 175, 170, 0.08);
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}
.pricing-hero-android::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 175, 170, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.pricing-hero-android::after {
    content: 'ANDROID';
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    font-size: 12vw;            
    font-weight: 900;    
    color: #3D4147;
    letter-spacing: -2px;  
    line-height: 1;
    z-index: 0;                
    pointer-events: none;       
    opacity: 0.03;             
    background: radial-gradient(circle, rgba(0, 175, 170, 0.15) 0%, transparent 70%);
    padding: 40px;
    font-style: italic;
    box-sizing: content-box;
}
.pricing-hero-left-android {
    flex: 1 1 55%;
    min-width: 280px;
    position: relative;
    z-index: 1;
}
.pricing-hero-left-android .badge-top-pat {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 175, 170, 0.10);
    color: #008b86;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}
.pricing-hero-left .badge-top-pat i {
    font-size: 0.7rem;
}
.pricing-hero-left-android h1 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.15;
    max-width: 580px;
    color: #0a1a1f;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}
.pricing-hero-left-android h1 .highlight-pat {
    color: #00AFAA;
    position: relative;
}
.pricing-hero-left-android h1 .highlight-pat::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(0, 175, 170, 0.20);
    border-radius: 4px;
}
.pricing-hero-left-android .hero-desc-pat {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #3d5159;
    max-width: 540px;
    margin-bottom: 1.5rem;
    font-weight: 400;
}
.pricing-hero-left-android .trust-row-pat {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}
.pricing-hero-left-android .trust-badge-pat {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #0a1a1f;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.55rem 1rem;
    border-radius: 100px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pricing-hero-left-android .trust-badge-pat i {
    color: #f5c542;
    font-size: 0.9rem;
}
.pricing-hero-left-android .trust-badge-pat:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 26, 31, 0.20);
}
.pricing-hero-left-android .trend-tag-pat {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #00AFAA;
    background: rgba(0, 175, 170, 0.08);
    padding: 0.4rem 1.2rem;
    border-radius: 100px;
}
.pricing-hero-left-android .trend-tag-pat i {
    color: #f97316;
    font-size: 0.7rem;
}
.pricing-hero-right-pat {
    flex: 0 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
}
.rupee-icon-wrapper-pat {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00AFAA 0%, #008b86 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 48px rgba(0, 175, 170, 0.30);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.rupee-icon-wrapper-pat::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(0, 175, 170, 0.15);
    animation: pulse-ring-pat 2.5s ease-in-out infinite;
}
@keyframes pulse-ring-pat {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.4;
    }
}
.rupee-icon-wrapper-pat i {
    font-size: 5.2rem;
    color: #fff;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.10));
    line-height: 1;
}
.rupee-icon-wrapper-pat .rupee-sub-pat {
    position: absolute;
    bottom: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(4px);
    font-size: 0.6rem;
    font-weight: 700;
    color: #fff;
    padding: 0.2rem 0.7rem;
    border-radius: 100px;
    letter-spacing: 0.04em;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.rupee-icon-wrapper-pat:hover {
    transform: scale(1.04) rotate(-2deg);
    box-shadow: 0 24px 64px rgba(0, 175, 170, 0.35);
}
.pricing-chart-section {
    background: #ffffff;
    border-radius: 2rem;
    padding: 2rem 2.5rem 2.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef3f5;
    transition: box-shadow 0.25s ease;
    margin-bottom: 150px;
}
.pricing-chart-section:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}
.chart-header-pat {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.75rem;
    gap: 1rem;
}
.chart-header-pat .chart-title-pat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.chart-header-pat .chart-title-pat h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0a1a1f;
    letter-spacing: -0.01em;
}
.chart-header-pat .chart-title-pat i {
    color: #00AFAA;
    font-size: 1.3rem;
}
.chart-header-pat .chart-meta-pat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: #5a737d;
    background: #f5f8f9;
    padding: 0.4rem 1.2rem;
    border-radius: 100px;
}
.chart-header-pat .chart-meta-pat i {
    color: #00AFAA;
    font-size: 0.75rem;
}
.table-responsive-patara {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 0.25rem;
}
.price-table-patara {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}
.price-table-patara thead th {
    text-align: left;
    padding: 0.9rem 1rem 0.9rem 0;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #3d5159;
    border-bottom: 2px solid #e8edef;
}
.price-table-patara thead th:last-child {
    text-align: right;
    padding-right: 0;
}
.price-table-patara tbody tr {
    border-bottom: 1px solid #f0f4f6;
    transition: background 0.15s ease;
}
.price-table-patara tbody tr:last-child {
    border-bottom: none;
}
.price-table-patara tbody tr:hover {
    background: #f8fbfc;
}
.price-table-patara tbody td {
    padding: 1rem 1rem 1rem 0;
    color: #1a2e36;
    font-weight: 500;
    vertical-align: middle;
}
.price-table-patara tbody td:first-child {
    font-weight: 600;
    color: #5a737d;
    width: 48px;
}
.price-table-patara tbody td:last-child {
    text-align: right;
    padding-right: 0;
    width: 180px;
}
.price-badge-pat {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: linear-gradient(135deg, rgba(0, 175, 170, 0.08), rgba(0, 175, 170, 0.02));
    padding: 0.35rem 0.7rem 0.35rem 0.7rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #008b86;
    border: 1px solid rgba(0, 175, 170, 0.12);
    white-space: nowrap;
}
.price-badge-pat .rupee-symbol-pat {
    font-size: 0.75rem;
    margin-right: 0.1rem;
}
.price-badge-pat .flat-label-pat {
    font-weight: 500;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #5a737d;
    background: rgba(0, 0, 0, 0.03);
    padding: 0.1rem 0.5rem;
    border-radius: 100px;
    margin-left: 0.2rem;
}
.price-footer-patara {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eef3f5;
}
.footer-note-patara {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: #5a737d;
}
.footer-note-patara i {
  color: #00AFAA;
  font-size: 0.75rem;
}
.footer-note-patara .sep {
  color: #d0dce1;
  font-weight: 300;
}
.cta-button-patara {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #0a1a1f;
  color: #fff;
  border: none;
  padding: 0.7rem 0.9rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(10, 26, 31, 0.15);
  text-decoration: none;
  white-space: nowrap;
}
.cta-button-patara i {
  font-size: 0.85rem;
}
.cta-button-patara:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(10, 26, 31, 0.20);
  background: #00AFAA;
}
.empty-state td {
  text-align: center !important;
  padding: 3rem 0 !important;
  color: #5a737d;
  font-weight: 500;
}


/*patra-referral-Wb-ads-setup*/
.ras-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    background: #ffffff;
    padding: 48px 24px;
    border: 1px solid #fff;
}
.ras-hero {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 20px 0 40px 0;
    flex-wrap: wrap;
    border-bottom: 1px solid #f0f4f8;
    margin-bottom: 100px;
}
.ras-hero-text {
    flex: 1 1 50%;
    min-width: 280px;
}
.ras-hero-text .ras-badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 175, 170, 0.08);
    color: #00AFAA;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
    border: 1px solid rgba(0, 175, 170, 0.12);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.ras-hero-text .ras-badge-hero i {
    font-size: 0.6rem;
}
.ras-hero-text h2 {
    font-size: 2.6rem;
    font-weight: 900;
    color: #0a1a1f;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-bottom: 16px;
    max-width: 500px;
}
.ras-hero-text h2 span {
    color: #00AFAA;
    position: relative;
}
.ras-hero-text h2 font {
    color: #F58634;
    position: relative;
}
.ras-hero-text h2 font::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(0, 175, 170, 0.15);
    border-radius: 4px;
}
.ras-hero-text p {
    font-size: 1.15rem;
    color: #3d5159;
    max-width: 750px;
    margin-bottom: 24px;
    line-height: 1.8;
}
.ras-hero-text .ras-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.ras-hero-text .ras-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #00AFAA, #008080);
    color: #fff;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 175, 170, 0.3);
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.ras-hero-text .ras-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 175, 170, 0.4);
}
.ras-hero-visual {
    flex: 0 0 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ras-hero-visual .ras-icon-box {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.ras-hero-visual .ras-icon-box img {
    width: 100%;
    height: 100%;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    object-fit: contain;
}
.ras-section-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #384347;
    margin: 48px 0 10px 0;
    letter-spacing: -0.05px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ras-section-title .ras-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #00AFAA, #008080);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 50%;
    flex-shrink: 0;
    border-bottom: 2px solid red;
}
.ras-section-title .ras-step-num i {
    font-size: 0.65rem;
}
.ras-section-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a1a1f;
    margin: 24px 0 8px 0;
}
.ads-setup-ref-para {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3d5159;
    margin-bottom: 30px;
    max-width: 750px;
}
.ras-ad-formats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 16px 0 20px 0;
    border-bottom: 1px solid #f0f4f8;
    padding-bottom: 80px;
}
.ras-ad-format-card {
    background: #ffffff;
    border: 1px solid #eef3f5;
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
.ras-ad-format-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 175, 170, 0.08);
    border-color: #00AFAA;
}
.ras-ad-format-card .ras-ad-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 175, 170, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.8rem;
    color: #00AFAA;
    transition: all 0.3s ease;
}
.ras-ad-format-card:hover .ras-ad-icon {
    background: #00AFAA;
    color: #ffffff;
    transform: scale(1.05);
}
.ras-ad-format-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0a1a1f;
    margin-bottom: 4px;
}
.ras-ad-format-card p {
    font-size: 0.8rem;
    color: #5a737d;
    margin: 0;
    line-height: 1.4;
}
.ras-ad-format-card .ras-placeholder-tag {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #5a737d;
    background: #f1f5f9;
    padding: 2px 12px;
    border-radius: 100px;
}
.ras-step-box {
    display: flex;
    gap: 16px;
    margin: 12px 0 16px 0;
    padding: 16px 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #eef3f5;
    align-items: flex-start;
}
.ras-step-box .ras-num {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #00AFAA, #87F3F0);
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 7px;
}
.ras-step-box .ras-content {
    flex: 1;
}
.ras-step-box .ras-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0a1a1f;
    margin-top: 10px;
    margin-bottom: 3px;
}
.ras-step-box .ras-content p {
    font-size: 0.95rem;
    color: #3d5159;
    margin: 0;
    line-height: 1.8;
    margin-bottom: 20px;
}
.ras-step-box a {
    color: #1768CC;
    text-decoration: none;
}
.ras-code-block {
    background: #0a1a1f;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 16px 0 20px 0;
    overflow-x: auto;
    position: relative;
    border: 1px solid #1e2e35;
}
.ads-code-ref-para {
    font-size: 0.95rem;
    color: #3d5159;
    margin: 0;
    line-height: 1.8;
    margin-bottom: 25px;
}
.ras-code-block .ras-code-label {
    position: absolute;
    top: 10px;
    left: 16px;
    background: #0a1a1f;
    padding: 7px 10px;
    font-size: 0.6rem;
    display: flex;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    gap: 5px;
    letter-spacing: 0.06em;
    color: #5a737d;
    border: 1px solid #1e2e35;
    border-radius: 4px;
}
.copy-html-code{
  position: absolute;
    bottom: 20px;
    right: 20px;
    background: #0a1a1f;
    padding: 7px 10px;
    font-size: 0.8rem;
    display: flex;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    gap: 5px;
    letter-spacing: 0.06em;
    color: #7D959F;
    cursor: pointer;
    border: 1px solid #3B4A50;
    border-radius: 4px;
}
.ras-code-block code {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.85rem;
    color: #e2e8f0;
    line-height: 1.9;
    white-space: pre-wrap;
    word-break: break-word;
}
.ras-code-block code .comment {
    color: #5a737d;
}
.ras-code-block code .tag {
    color: #f472b6;
}
.ras-code-block code .attribute {
    color: #fbbf24;
}
.ras-code-block code .value {
    color: #34d399;
}
.ras-code-block code .variable {
    color: #60a5fa;
}
.ras-code-block code .string {
    color: #34d399;
}
.ras-ad-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 70px;
    margin: 16px 0 20px 0;
}
.ras-ad-type-card {
    background: #ffffff;
    border: 1px solid #D6DADC;
    border-radius: 5px;
    padding: 0 20px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
.ras-ad-type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 175, 170, 0.08);
    border-color: #00AFAA;
}.ras-type-header {
    margin-bottom: 12px;
}
.ras-type-badge {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 15px;
    background: rgba(0, 175, 170, 0.08);
    color: #00AFAA;
    border: 1px solid rgba(0, 175, 170, 0.12);
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    letter-spacing: 0.03em;
}
.ras-type-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ras-type-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #3d5159;
    margin: 30px 0;
    padding-bottom: 20px;
}
.ras-type-placement {
  position: absolute;
  bottom: 0;
  right: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.6rem;
    color: #5a737d;
    background: #f8fafc;
    padding: 5px 7px;
    border: 1px solid #eef3f5;
    align-self: flex-start;
    border-top-left-radius: 15px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}
.ras-type-placement i {
    color: #00AFAA;
    font-size: 0.7rem;
}
.ras-callout {
            padding: 16px 20px;
            border-radius: 10px;
            margin: 40px 0 20px 0;
            border-left: 4px solid #00AFAA;
        }
        .ras-callout.ras-info {
            background: #f0fdfa;
            border-left-color: #00AFAA;
        }
        .ras-callout p {
            margin: 0;
            font-size: 0.95rem;
        }
        .ras-callout p i {
            color: #00AFAA;
            margin-right: 6px;
        }
#ras-ad-ads-setup-contact {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #f0f4f8;
}
.ras-support-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 16px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    margin-bottom: 100px;
}
.ras-support-list li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: #f8fafc;
    border-radius: 100px;
    border: 1px solid #eef3f5;
    transition: all 0.3s ease;
    margin: 0;
}
.ras-support-list .ras-support-icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    background: rgba(0, 175, 170, 0.10);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00AFAA;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border-bottom: 2px solid #00AFAA;
}
.ras-support-list li:hover .ras-support-icon {
    background: #00AFAA;
    color: #ffffff;
    transform: scale(1.05);
    border-bottom-color: #F58634;
}
.ras-support-list li strong {
    font-weight: 700;
    color: #464D57;
    min-width: 50px;
    font-size: 0.9rem;
}
.ras-support-list li a {
    color: #1768CC;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}
.ras-support-list li a:hover {
    color: #008080;
}
.ras-support-list .ras-chat-text {
    color: #3d5159;
    font-weight: 500;
    font-size: 0.9rem;
}

