*{
	box-sizing: border-box;
}
:root {
  --primary: #115278;
}
html {
	box-sizing: border-box;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	-webkit-tap-highlight-color: transparent;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
body {
	background: #fff;
	color: #333;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	font-weight: 500;
	margin: 0;
}
a {
	text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}
p {
	margin: 0; line-height: 1.7;
}
ul {
	margin: 0;
	padding: 0;
}
.container {
	width: 80%; 
	margin: 0 auto;
}
.container::after {
	content: "";
	width: 100%;
	display: table;
	clear: both;
}
header {
	background: #fff;
	padding-bottom:2px;
	border-bottom: 1px solid #ddd;
}
.container-full {
	margin: 0 10%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.href-btn-s{ cursor: pointer;}
.h-md-2 {	
	max-width:150px;
}
.h-md-2 img {
	max-width:120px;
}
.h-md-6 {
	width:45%;
}
.h-md-4 {
	width: 30%;
	position: relative;
}
.mobile-icon-search {
	display: none;
}
.mobile-icon-menu {
	display: none;
}
@media screen and (max-width:1025px) {
	.container-full {
		margin: 0 3%;
	}
	.container {
		width: 90%;
	}
	.h-md-6 {
		display: none;
	}
	.h-md-2 {
		width: 150px;
	}
	.h-md-4 {
		width: calc(90% - 200px);
		margin-right: 60px;
	}
	.mobile-icon-menu {
		display: block;
		position: absolute;
		top: 32px;
		right: 3%;
		font-size: 33px;
		width: 30px;
	}
}

@media screen and (max-width:600px) {
	.h-md-2 {
		width:100px;
	}
	.h-md-4 {
		display: none;
	}
	.mobile-icon-menu {
		top: 25px;
	}
	.mobile-icon-search {
		display: block;
		position: absolute;
		top: 19px;
		right: 3%;
		font-size: 20px;
		background: var(--primary);
		color: #fff;
		text-align: center;
		line-height: 45px;
		width: 45px;
		height: 45px;
		margin-right: 50px;
		border-radius: 100%;
	}
}
.nav-bar {
	text-align: center;
	display: flex;
	justify-content:center;
	align-items: center; gap:35px;
}
.nav-bar li {
	display: inline-block;
}
.nav-bar li a {
	line-height: 30px;
	display: block;
	padding: 0;
	color: var(--primary);
	font-weight:500;
	text-transform: capitalize;
	font-size: 17px;
	cursor: pointer;
	border-bottom: 2px solid rgba(255,255,255, 0.0);
	position: relative;
}
.nav-bar li a:hover {
	border-bottom: 2px solid #2e4057;
	color: #2e4057;
}
.nav-bar li a.nav-active {
	border-bottom: 2px solid #2e4057;
	color: #2e4057;
}
form.searchform2 {
	width: 100%;
	border-radius: 30px;
	position: relative;
	border: 1px solid #ddd;
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center; padding: 2px 4px 2px 2px;
}
form.searchform2 input[type=text] {
	padding:0 0 0 5px;
	font-size: 18px;
	border: 0 solid grey;
	height: 46px;
	width: calc(98% - 50px);
	outline: none;
	background-color: none;
	border-radius: 25px;
	
}
form.searchform2 input[type=text]::placeholder {
 color: rgba(127, 124, 125, 0.5);
 font-size:15px;
 font-weight:500;
}
form.searchform2 button {
	height: 40px;
	width: 40px;
	padding: 0;
	border-radius: 100%;
	background: var(--primary);
	text-transform: uppercase;
	font-weight: 700;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
	border: 0;
	
}
.mobile-menu {
	display: none;
}
@media screen and (max-width:1025px) {
    .mobile-menu {
        display:block;
        width:270px; padding-left:20px;
        height:100vh;
        position:absolute;
        background:var(--primary);
        z-index:4001;
        top:100px; 
        right:0;
        box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.1);
        
    }
    .nav-bar{ flex-wrap:wrap; padding-top:10px; gap: 0px;}
    .nav-bar li{ width:100%; text-align:left; margin-top:15px; }
    .nav-bar li a{ color:#fff;}
}
@media screen and (max-width:600px) {
    .h-md-4{
        display:none; 
        width:100%;
        position:absolute;
        background:var(--primary);
        z-index:4000;
        top:100px; 
        left:0;
        padding:20px 2%;
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    }
    form.searchform2{ width: 100%; background:#fff; padding: 2px 2px 2px 2px;}
    form.searchform2 button {
        height: 50px;
        width:50px;
        padding: 0;
        border-radius: 100%;
        background: var(--primary);
        text-transform: uppercase;
        font-weight: 700;
        color: #fff;
        font-size: 17px;
        cursor: pointer;
        border: 0;
        
    }
    form.searchform2 input[type=text] {
        padding: 0 0 0 0;
        font-size: 17px;
        border: 0 solid grey;
        height: 50px;
        width: calc(98% - 40px);
        outline: none;
        background-color: none;
        border-radius: 25px;
        
    }
}


body {
	background: #f1f1f1;
}
.page-tabs {
    display: flex;
    align-items: center;
    gap: 10px;
    padding:0px;
    white-space: nowrap;
    margin-top:20px;
}
.page-tab {
    background: #f4f4f6;
    color: #444;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor:pointer;
}
.coupon-section-title {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    color: #222;
}
@media screen and (max-width:1025px) {
  .page-tabs {flex-wrap:wrap;}
  .coupon-section-title { width:100%;}
}
@media screen and (max-width:600px) {
  .page-tab { padding: 6px 6px;}
}
@media screen and (max-width:420px) { .page-tab { padding: 6px 2px;} .page-tabs {white-space: normal;}}
.page-tab-active {
    background: #115278;
    color: #fff;
}
.header-bottom-store {background:var(--primary); padding:20px 10% 20px 32%;}
@media screen and (max-width:1300px) {
	.header-bottom-store {background:var(--primary); padding:20px 10% 20px 29%;}
}
.big-heading {
	color: #fff;
	font-weight: 700;
	font-size: 28px;
	line-height: 34px;
	margin-bottom: 10px;
	margin-top: 0px;
}
.small-h2 {
	font-size: 18px;
	font-weight: 400;
	line-height: 24px;
	color: #fff;
	margin-bottom: 0px;
}

.col-d-8{
	width: 72%;
	float: right;
	position: relative;
	margin-top: 0px;
}
.col-d-4 {
	width: 25%;
	float: left;
	margin-top: -90px;
}
.coupon-section-title{ color:#000; font-size:20px; font-weight:800;}
@media screen and (max-width:800px) {
	.header-bottom-store {    padding:20px 5% 20px 5%;}
	.col-d-8{width:100%;}
	.col-d-4 {width:100%; margin-top: 10px;}
}
@media screen and (max-width:600px){ 
	.big-heading { font-size: 26px;} .small-h2 {font-size: 20px;} 
	.coupon-section-title {font-size: 18px;} 
}
.fxc-card {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    margin-bottom: 24px; margin-top:20px;
    overflow: hidden;
    transition: .25s ease;
    padding-bottom:10px;
    align-items:center;
}

.fxc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

/* ===== Left ===== */
.fxc-left {
    flex: 0 0 18%;
    color:#115278;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.fxc-percent {
    text-align: center;
    font-size: 34px;
    font-weight: 800;
}
.fxc-percent.fxc-small {
        font-size: 20px;
    }
.fxc-percent span {
    display: block;
    font-size: 14px;
    opacity: .9;
}

.fxc-code-badge {
    margin: 6px auto 0;
    background: #222;
    color: #fff;
    border-radius: 4px;
    width: 70px;
    line-height: 24px;
    font-size: 13px;
}

/* ===== Center ===== */
.fxc-center {
    flex: 0 0 55%;
    padding: 20px 0px;
}

.fxc-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px;
    color: #222;
}

.fxc-verified {
    font-size: 14px;
    color: #1ebeb6;
    margin-bottom: 10px;
    position: relative;
}

.fxc-meta {
    display: flex;
    justify-content:space-between; align-items:center;
    font-size: 13px;
    color: #666;
    width:75%;
    margin:1px 5% 10px 18%;

}
.fxc-expiry .fa{color: #115278;}
.fxc-toggle {
    cursor: pointer; width:100%;
    font-weight: 600;
    color: #115278;
    border-radius:20px; padding:8px 20px; border:1px solid #ccc; text-align:center; margin:1px 10px 0px 10px;
}
.visitors-used{ margin-bottom:20px;}
.visitors-used img{ max-width:100%; cursor:pointer;}
/* ===== Right ===== */
.fxc-right {
    flex: 0 0 27%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.fxc-btn {
    background: #115278;
    color: #fff;
    padding: 10px 0px;
    border-radius: 40px;
    font-weight: 500;
    cursor: pointer;
    transition: .25s ease;
    width: 100%; max-width:150px;
    text-align: center;
    font-size: 14px;
}

.fxc-btn:hover {
    background: #1ebeb6;
    transform: scale(1.05);
}

/* ===== Details ===== */
.fxc-details {
    width: 100%; 
    
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: max-height .45s ease, padding .35s ease;
}

.fxc-details.is-open {
    max-height: 1500px;
    padding: 30px 24px 30px;
    border: 1px solid #ccc;
    margin: 10px 10px 0px 10px;
    border-radius: 15px;
}

.fxc-details p {
    color: #444;
    line-height: 1.6;
    margin-bottom:10px;
}

/* ===== Summary Grid ===== */
.fxc-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.fxc-item {
    background: #ffeafc;
    border-radius: 10px;
    padding: 14px;
}

.fxc-item-title {
    font-size: 12px;
    font-weight: 700;
    color: #777;
    text-transform: uppercase;
}

.fxc-item-val {
    font-size: 14px;
    font-weight: 600;
    color: #222;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .fxc-meta {    width:90%;     margin: 1px 5% 10px 5%;}
}
@media (max-width: 600px) {
    .fxc-left{
        flex: 0 0 20%;
        text-align: center;
        padding:0px 5%;
    }
    .fxc-percent.fxc-small {
        font-size: 16px;
    }
    .fxc-center{
        flex: 0 0 65%;
        padding: 10px 0px;
    }
    .fxc-right {
        flex: 0 0 100%;
        text-align: center;
        padding:0 0 10px 0;
        
    }

    .fxc-meta {
        gap: 10px;
        width:90%;
        margin: 2px 5% 10px 5%;
        line-height: 22px;
        align-items: flex-start;
        flex-wrap:wrap;
    }

    .fxc-summary {
        grid-template-columns: repeat(2, 1fr);
    }
    .fxc-toggle { padding: 8px 0px; font-size: 13px;}
}

@media (max-width: 500px) {
    .fxc-summary {
        grid-template-columns: 1fr;
    }
}
.section {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}
.table-codes {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    border-radius: 14px;
    padding: 0 20px;
    margin-bottom: 30px;
}
/* Image Popup Overlay */
.img-preview-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease;
}

/* Active state */
.img-preview-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Image */
.img-preview-overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    cursor: zoom-out;
    animation: zoomIn .25s ease;
}

/* Zoom animation */
@keyframes zoomIn {
    from { transform: scale(.85); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}
.fxc-summary-2 {

    padding: 0;
    margin: 0;
    list-style: none;

}

.fxc-summary-2 li {
    padding: 8px 0px 8px 20px;
    font-size: 14px;
    position: relative;
}

.fxc-summary-2 li strong {
    font-weight: 700;
    color: #115278;
}


.fxc-summary-2 li.is-checked::before,
.fxc-summary-2 li.is-unchecked::before {
    font-family: "FontAwesome";
    font-weight: 900;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
}

.fxc-summary-2 li.is-checked::before {
    content:"\f101"; 
    color: #115278;
}

.fxc-summary-2 li.is-unchecked::before {
    content:"\f00d";
    color: #999;
}

#customers3 {
	border-collapse: collapse;
	width: 100%;
	margin-bottom: 10px;
	margin-top: 0px;
	color: #444;
	font-weight: 500;
	font-size: 14px;
}
.caption-h2 {
    border-top: 0px solid #eee;
    border-left: 0px solid #eee;
    border-right: 0px solid #eee;
    font-size: 20px;
    color: #000;
    font-weight: 700;
    padding: 15px 0px 15px 0px;
    text-align: left;
}
#customers3 td, #customers3 th {
    border-top: 1px solid #ddd;
    padding: 10px 10px;
    text-align: left;
}
.a-start-coupons {
    max-width: 1200px;
    margin: 30px auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Card */
.a-startcard {
    width: calc(50% - 10px);
    background: #ffffff;
    border-radius: 16px;
    padding: 18px;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.a-startcard:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

/* Logo */
.a-b-logo {
    width: 100px;
}

.a-b-logo img {
    width: 100%;
    height: auto;
    border-radius: 15px; border:1px solid #ddd;
}

/* Summary text */
.a-b-sval {
    width: calc(100% - 100px);
    padding-left: 15px;
    font-size: 20px;
    color: #333; font-weight: 700;
}
.a-b-sval a {
    display: block;
    margin-top: 4px; margin-bottom: 4px; font-size: 14px;
    font-weight: 600;
    color: #555;
    text-decoration: none;
}

.a-b-sval a:hover {
    text-decoration: underline;
}

/* Detail section */
.a-b-sdetail {
    width: 100%;
    margin-top: 15px;
}

.a-b-sdetail h3 {
    font-size: 16px;
    line-height: 1.4;
    color: #222;
    margin-bottom: 20px;
}

/* Bottom row */
.a-b-sdetail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

/* Code */
.a-b-scode {
    width: 45%;
    background:
        linear-gradient(135deg, #f4f6f8, #e9ecef),
        repeating-linear-gradient(
            135deg,
            rgba(255,255,255,.25),
            rgba(255,255,255,.25) 4px,
            rgba(0,0,0,.04) 4px,
            rgba(0,0,0,.04) 8px
        );
    background-blend-mode: overlay;
    border: 1px dashed #bbb;
    padding: 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 10px;
    color: #333;
    text-align: center;
}

/* Button */
.a-btn-code {
    width: 50%;
    max-width: 150px;
    margin-left: auto;
    background: #115278;
    color: #fff;
    padding: 10px 0px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.a-btn-code:hover {
    transform: scale(1.05);
    background: #1ebeb6;
}

/* Responsive */
@media (max-width: 768px) {
 

    .a-b-scode,
    .a-btn-code {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }

    .a-btn-code {
        margin-top: 10px;
    }
}
.a-start-coupons {
    max-width: 1200px;
    margin: 30px auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Card */
.a-startcard {
    width: calc(50% - 10px);
    background: #ffffff;
    border-radius: 16px;
    padding: 18px;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.a-startcard:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}
@media (max-width: 600px) {
    .a-startcard {
        width: 100%;
    }
}
/* Logo */
.a-b-logo {
    width: 100px;
}

.a-b-logo img {
    width: 100%;
    height: auto;
    border-radius: 15px; border:1px solid #ddd;
}

/* Summary text */
.a-b-sval {
    width: calc(100% - 100px);
    padding-left: 15px;
    font-size: 20px;
    color: #333; font-weight: 700;
}
.a-b-sval a {
    display: block;
    margin-top: 4px; margin-bottom: 4px; font-size: 14px;
    font-weight: 600;
    color: #555;
    text-decoration: none;
}

.a-b-sval a:hover {
    text-decoration: underline;
}

/* Detail section */
.a-b-sdetail {
    width: 100%;
    margin-top: 15px;
}

.a-b-sdetail h3 {
    font-size: 16px;
    line-height: 1.4;
    color: #222;
    margin-bottom: 20px;
}

/* Bottom row */
.a-b-sdetail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

/* Code */
.a-b-scode {
    width: 45%;
    background:
        linear-gradient(135deg, #f4f6f8, #e9ecef),
        repeating-linear-gradient(
            135deg,
            rgba(255,255,255,.25),
            rgba(255,255,255,.25) 4px,
            rgba(0,0,0,.04) 4px,
            rgba(0,0,0,.04) 8px
        );
    background-blend-mode: overlay;
    border: 1px dashed #bbb;
    padding: 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 10px;
    color: #333;
    text-align: center;
}

/* Button */
.a-btn-code {
    width: 50%;
    max-width: 150px;
    margin-left: auto;
    background: #115278;
    color: #fff;
    padding: 10px 0px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.a-btn-code:hover {
    transform: scale(1.05);
    background: #1ebeb6;
}

/* Responsive */
@media (max-width: 768px) {
    .a-startcard {
        width: 100%;
    }

    .a-b-scode,
    .a-btn-code {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }

    .a-btn-code {
        margin-top: 10px;
    }
}
.faq-wrapper {
    margin: 30px auto;
}

.faq-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color:#222;
    padding-left: 42px;
    position: relative;
}
/* FAQ ICON */
.faq-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 30px;
    transform: translateY(-50%);
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%231ebeb6' d='M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0zm0 384c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm44.7-154.6-12.5 12.3c-12.4 12.2-20.2 22.3-20.2 46.9h-48v-12c0-17.6 7.8-33.8 20.2-46.1l17.8-17.5c8.1-7.9 13.1-19.1 13.1-31.5 0-23.8-19.2-43-43-43s-43 19.2-43 43h-48c0-50.3 40.7-91 91-91s91 40.7 91 91c0 23.7-9.6 45.6-25.5 61.9z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow .3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,.06);
}

.faq-question {
    padding: 16px 50px 16px 20px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid #e5e7eb;
}

/* PLUS / MINUS ICON */
.faq-question::before,
.faq-question::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 14px;
    height: 2px;
    background: #115278;
    transition: transform .3s ease, opacity .3s ease;
}

.faq-question::after {
    transform: translateY(-50%) rotate(90deg);
}

.faq-question::before {
    transform: translateY(-50%);
}

/* ACTIVE (minus) */
.faq-item.active .faq-question::after {
    opacity: 0;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0px 20px 0 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    transition: max-height .4s ease, padding .3s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 20px 20px 16px;
}
.chart-container{
    margin: 20px auto;
    background: #fff;
    border-radius: 14px;
    padding: 30px 22px 50px 22px;
    color: #333;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.chart-container h3{ margin-bottom:5px;}
.chart-container .uptopercentage{ margin-bottom:50px; font-size:15px; color:#666;}
.chart-container .uptopercentage i{ color:var(--primary);}
.chart-card {
    
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.chart-header h3 {
    font-size: 18px;
    font-weight: 600;
}

.legend {
    font-size: 13px;
    color: #bdbdbd;
    display: flex;
    align-items: center;
    gap: 6px;
}

.legend i {
    width: 10px;
    height: 10px;
    background: #3ee6c8;
    border-radius: 50%;
}

.chart {
    display: flex;
    height: 300px;
    position: relative;
}

.y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
    padding-right: 10px;
}

.bars {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(13, 1fr);
    align-items: flex-end;
    gap: 10px;
    position: relative;
}

.bar {
    background: #bbb;
    border-radius: 6px 6px 0 0;
    position: relative;
    height: 0;
    animation: grow 1.2s ease forwards;
}

.bar.highlight {
    background: linear-gradient(180deg, #1ebeb6, #1ebeb6);
}

.bar span {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.bar label {
    position: absolute;
    bottom: -26px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #666;
}

@keyframes grow {
    from { height: 0; }
    to { height: var(--h); }
}
/* Average dotted line */
.avg-line {
    position: absolute;
    left: 0;
    right: 0;
    border-top: 2px dotted rgba(0, 0, 0, 0.2);
    opacity: 0.8;
    pointer-events: none;
    z-index:1;
}

.avg-label {
    position: absolute;
    left: 8px;
    top: -14px;
    background: #ffffff;
    color: #111;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    display:none;
}

/* Tooltip */
.tooltip {
    position: absolute;
    background: #fff;
    color: #333;
    font-size: 14px;
    padding: 6px 10px;
    border-radius: 6px;
    pointer-events: none;
    white-space: nowrap;
    opacity: 0;
    transform: translate(-50%, -10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,.5);
    z-index: 10;
    text-align:center;
}

.tooltip strong {
    color: #115278; display:block; font-size: 18px;
}
.chart-title{ margin-top:30px;}
.chart-title h2{
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
}
.chart-title p{font-size: 14px;
    color: #444;
    margin-bottom: 20px;}
    
    
    
.readmoretext {
    position: relative;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-right: 70px; /* space for Read more */
}

.readmoretext.expanded {
    -webkit-line-clamp: unset;
    padding-right: 0;
}

/* Button default (collapsed = overlay) */
.readmore-btn {
    position: absolute;
    right: 0;
    bottom: 0;
    padding-left: 6px;
    color: #115278;
    cursor: pointer;
    white-space: nowrap;
}

/* Expanded state = inline */
.readmoretext.expanded .readmore-btn {
    position: static;
    display: inline;
    background: none;
    padding-left: 4px;
}
.writerowner{
    margin: 20px auto 20px auto;
    padding: 24px;
    background: linear-gradient(180deg, #fafafa, #ffffff);
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.writerowner h2{
  font-size: 20px;
    font-weight: 700;
    color: #1f2937;
        border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}
.writerceo{
  display: flex;
	gap: 25px;
	align-items: center; margin:20px 0;
}
.profile-img{ width:80px; height:80px; }
.profile-img img{ max-width:100%; border-radius: 50%;
			object-fit: cover;
			border: 5px solid #f3f4f6;
			box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);}
.person-name{font-size: 20px;
			font-weight: 800;}
.writerowner p{font-size: 14px;
    line-height: 1.7;
    color: #444;}    
 .writerowner a{ color:#115278;}
 .promo-guide {
    margin: 0px auto 20px auto;
    padding: 24px;
    background: linear-gradient(180deg, #fafafa, #ffffff);
    border-radius: 16px;
    border: 1px solid #e5e7eb;
     box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.promo-guide-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-left: 42px;
    position: relative;
}

/* Guide main icon */
.promo-guide-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;

    height: 28px;
    transform: translateY(-50%);
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%231ebeb6' d='M96 96c0-35.3 28.7-64 64-64h256c35.3 0 64 28.7 64 64v320c0 35.3-28.7 64-64 64H160c-35.3 0-64-28.7-64-64V96zm96 64h128v32H192v-32zm0 64h192v32H192v-32zm0 64h160v32H192v-32z'/%3E%3C/svg%3E") no-repeat center / contain;
}

.promo-step {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px dashed #e5e7eb;
       
}

.promo-step:first-of-type {
    border-top: none;
}

.promo-step p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #444;
}

/* Step icon */
.promo-step-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1ebeb6;
    position: relative;
}

.promo-step-icon::before {
    content: "";
    position: absolute;
    inset: 6px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23ffffff' d='M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.2 0z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.contact-info {
	margin: 10px auto;
}
.contact-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 0px;
}
.contact-subtitle {
	font-size: 14px;
	color: #444;
	margin-bottom: 20px;
}
.store-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}
/* Width control */
.store-val-1 {
	grid-column: span 2;
}
.store-val-2 {
	grid-column: span 1;
}
.store-val {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px;
	border-radius: 14px;
	border: 1px solid #e5e7eb;
	background: #fff;
	transition: box-shadow .25s ease, transform .2s ease;
}
.store-val:hover {
	box-shadow: 0 10px 28px rgba(0,0,0,.08);
	transform: translateY(-2px);
}
.store-val-add strong {
	display: block;
	font-size: 14px;
	margin-bottom: 2px;
}
.store-val-add p {
	margin: 0;
	font-size: 13px;
	color: #555;
}
/* ICON BASE */
.store-val-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 22px;
	flex-shrink: 0;
}
.icon-line-location {
	color: #115278;
}
.store-val-icon .fa{
  color: #115278; font-size:44px;
}

/* Responsive */
@media (max-width: 768px) {
.store-grid {
	grid-template-columns: 1fr;
}
.store-val-1, .store-val-2 {
	grid-column: span 1;
}
}
.payment-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.payment-social-icons svg {
    width: 15px;
    height: 15px;
    fill: #16a34a;     /* green */
    margin-right: 6px;
    vertical-align: middle;
}

.payment-social-icons {
    color: #333; /* text color */
    font-size: 13px;
    font-weight: 600;
}
 .aboutcontent-brand{
        margin: 20px auto 20px auto;
        padding: 24px;
        background: linear-gradient(180deg, #fafafa, #ffffff);
        border-radius: 16px;
        border: 1px solid #e5e7eb;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        font-size:14px; color:#444;
    }
    .aboutcontent-brand h2{
      font-size: 20px;
        font-weight: 700;
        color: #1f2937;
            border-bottom: 1px solid #ddd;
        padding-bottom: 20px; margin-bottom:20px;
    }
    .aboutcontent-steps ul {
        list-style: none; /* Remove default bullets */
        padding-left: 0;
        margin: 20px 0 0 0; font-size:14px; color:#444;
    }

    .aboutcontent-steps ul li {
        position: relative;
        padding-left: 40px; /* Space for the icon */
        margin-bottom: 15px;
        font-size: 14px;
        color:#444;
        line-height: 1.6;
    }

    .aboutcontent-steps ul li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%231ebeb6' d='M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.2 0z'/%3E%3C/svg%3E") no-repeat center / contain;
    }
	.textwidget h2{font-size: 26px; line-height:32px;
          color: #000;
          font-weight: 800; margin:15px 0;}
          .textwidget h3{color: #000; font-size: 20px; line-height:26px;}
          .textwidget{font-size: 14px;
    line-height: 1.7;
    color: #444;}
         .textwidget img{ max-width:100%; border:1px solid #eee; padding:5px}
         .textwidget ul{ margin-left:20px;}
         .textwidget ol{ margin-left:20px; padding:0;}
         .textwidget b{ color:#000;}
  .read-toggle {
    color: #115278;
    font-weight: 600;
    margin-left: 6px;
    cursor: pointer;
    text-decoration: none;
  }
  .read-toggle:hover {
    text-decoration: underline;
  }  

    .side-box{
	background: none;
	padding-top: 0;
	border: 0;
}
.side-title {
    font-size: 18px;
    color: #000;
    font-weight: 800;
    margin-bottom: 5px;
	border-bottom: 1px solid #ddd;;
}
.store-logo-link {
	background: #fff;
	border-radius: 100%;
	width: 150px;
	height: 150px;
	margin: 0 auto 20px auto;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	border: 2px solid #ccc;
}
.store-logo-link:hover {
	border: 2px solid #115278;
}

.store-domain-name {
	text-align: center;
	display: block;
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 10px;
	color: #000;
}
.star-icons {
	font-size: 28px;
	margin-bottom: 3px;
	text-align: center;
}
.yellow {
	color: #ffc800;
}
.ratted {
	text-align: center;
	color: #777;
	margin-top: 10px;
}
.ratted a {
	color: #777;
}
.add-ratting {
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	width: 200px;
	text-align: center;
	margin: 20px auto 0 auto;
	border-radius: 25px;
	padding: 10px 0;
	background: #06AF2E;
	cursor: pointer;
}
.add-ratting:hover {
	background: #06AF2E;
	color: #fff;
}
.store-tabs {
	margin-left: 0px;
	margin-top: 20px;
}
.related-stores {}
.related-stores a {
	color: #666;
	padding: 10px 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	border-bottom: 1px solid #eee;
	display: block;
	position: relative; font-size:15px;
}
.related-stores a::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #115278;
	transition: width 0.3s ease;
}
.related-stores a:hover::after {
	width: 100%;
}
footer{ border-top:1px solid #eee; background:#fff; color:#000;}
.footer-container{width: 80%; margin: 0 auto; display:flex; justify-content:space-between; align-items:stretch; flex-wrap:wrap;}
.footer-single{ width:18%; padding-top: 50px;}
.footer-double{ width:40%; padding:50px 0;}
.footer-double img{ max-width:100%;}
.footer-double h2{ color:#000; font-weight:600; font-size:18px; margin-bottom: 10px;}
.footer-single h2{ color:#000; font-weight:600; font-size:18px; margin-bottom: 10px;}
.footer-single ul li{ display: block; margin-top: 10px;}
.footer-single ul li a{     font-size: 14px;
    color: #444;
    line-height: 1.6;}
.footer-single ul li a:hover{ color:var(--primary);}
.footer-txt{ font-size: 14px;
    color: #444;
    line-height: 1.8;}
.footer-site-logo{ width: 100px;;}
.footer-site-logo img{max-width: 100%;;}
.social-links{ margin-top:20px;}
.social-links a{ display:inline-block; height:40px; width:40px; line-height:40px; margin-right:20px; text-align:center; font-size:22px; border:1px solid #000; border-radius:100%; color:#000;}
.social-links a:hover{ background:var(--primary);}
.copyrt{ background:var(--primary); padding:15px 0; text-align:center; color:#fff;}
.disclosure{ color:#666; line-height:28px; margin:10px 10% 50px 10%;}
@media screen and (max-width:1100px) {
  .footer-container{width:90%;}
}
@media screen and (max-width:1025px) {
  .footer-single{ width:33%;}
  .footer-double{ width:100%; padding:50px 0;}
  .footer-single h2 span{ font-size:20px;}
  .disclosure{ color:#666; line-height:28px; margin:10px 3% 50px 3%;}
}
@media screen and (max-width:600px) {
  .footer-single{ width:48%;}
  .footer-single-2{ display:none;}
  .img-height{height: 150px;}
}