/*main header menu item start*/

.main-navigation a:hover,
.main-navigation a:focus {
    background-color: #454545;
    border-radius: 15px;
}

.main-navigation .current-menu-item>a {
    font-weight: bold;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
}

.main-navigation ul.sub-menu {
    display: none;
    padding-left: 15px;
}

.main-navigation ul.sub-menu.depth-0 {
    padding-left: 0;
}

.menu-toggle {
    display: none;
}

/*menu Mobile version styles */

@media (max-width: 991px) {
    .menu-toggle {
        display: block;
        position: absolute;
        right: 0;
        top: 4px;
        width: 40px;
        height: 40px;
        background: #000;
        border: none;
        cursor: pointer;
        padding: 0;
        font-size: 18px;
        line-height: 24px;
        text-align: center;
        z-index: 1;
        color: #fff;
    }
    .main-navigation li.has-children>a {
        padding-right: 40px;
    }
    .main-navigation ul.sub-menu {
        display: none;
        padding-left: 15px;
        background-color: #f9f9f9;
    }
    .main-navigation ul.sub-menu .sub-menu {
        padding-left: 15px;
    }
    .main-navigation ul.sub-menu li a {
        padding-left: 25px;
    }
    .main-navigation ul.sub-menu li.has-children>a {
        padding-right: 40px;
    }
    .main-navigation ul.sub-menu.active {
        display: block;
    }
}

/* menu Desktop screen styles */

@media (min-width: 992px) {
    .main-navigation>ul>li {
        display: inline-block;
    }
    .main-navigation ul.sub-menu {
        position: absolute;
        min-width: 200px;
        background: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 100;
        padding-left: 0;
    }
    .main-navigation ul.sub-menu .sub-menu {
        left: 100%;
        top: 0;
    }
    .main-navigation li.has-children>a {
        padding-right: 30px;
    }
    .main-navigation li.has-children:hover>ul.sub-menu {
        display: block;
    }
}

/* Navbar nav styles */

.navbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: inline-block;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap;
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        justify-content: flex-end;
    }
    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
    }
}

button.navbar-toggler {
    background: var(--primary);
    color: #fff
}

/*Menu End*/

/* Sticky Navbar */

#masthead {
    background: linear-gradient(rgb(13, 14, 19), rgb(29, 24, 80));
    transition: .5s ease top;
    top: -105px;
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, .2);
    &.sticky {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
    }
    .header {
        justify-content: center;
        h1 {
            color: white;
        }
    }
    z-index: 999;
}

.services-three__single {
    position: relative;
    display: block;
    text-align: center;
    border-radius: var(--bixola-bdr-radius);
    border-top: 2px solid transparent;
    background-color: var(--bixola-white);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 39px 30px 34px;
    margin-bottom: 0px;
    z-index: 1;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-three__single:hover {
    border-top: 2px solid var(--bixola-base);
}

.services-three__single::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--bixola-bdr-radius);
    background-color: var(--bixola-white);
    box-shadow: 0px 20px 30px 0px rgba(16, 24, 40, 0.08);
    background-position: bottom left;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
    -webkit-transition: -webkit-transform 500ms ease;
    transition: -webkit-transform 500ms ease;
    transition: transform 500ms ease;
    transition: transform 500ms ease, -webkit-transform 500ms ease;
    z-index: -1;
}

.services-three__single:hover::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.services-three__title {
    font-size: 22px;
    font-weight: 600;
    line-height: 32px;
}

.services-three__title a {
    color: var(--primary);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-three__title a:hover {
    color: var(--bixola-base);
}

.services-three__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary);
    margin: 15px auto 15px;
    z-index: 1;
}

.services-three__icon:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    border-radius: 50%;
    background-color: var(--bixola-base);
    transform: scale(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.services-three__single:hover .services-three__icon:before {
    transform: scaleX(1);
}

.services-three__icon span {
    position: relative;
    display: inline-block;
    font-size: 40px;
    color: var(--bixola-base);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.services-three__single:hover .services-three__icon span {
    transform: scale(0.9);
    color: var(--bixola-white);
}

.services-three__text {
    font-size: 16px;
    line-height: 28px;
}

.services-three__btn {
    position: relative;
    display: inline-block;
    margin-top: 8px;
}

.services-three__btn a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--primary);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-three__btn a:hover {
    color: var(--primary);
}

.services-three__btn a span {
    position: relative;
    font-weight: 900;
    margin-left: 5px;
    font-size: 14px;
}

.services-three__bottom-text {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: var(--primary);
    margin-top: 24px;
}

.services-three__bottom-text .all-services {
    color: var(--primary);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-three__bottom-text a:hover {
    color: var(--primary);
}

.services-three__bottom-text a span {
    position: relative;
    margin-left: 5px;
    top: 2px;
    font-size: 15px;
    font-weight: 900;
}

.services-three__bottom-text a {
    color: var(--primary);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-three__bottom-text a:hover {
    color: var(--primary);
}

/* End Default CSS*/

section {
    float: left;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
}

.header-top {
    position: relative;
    padding: 7px 0px;
    background-color: var(--secondary);
    float: left;
    width: 100%;
}

.header-top .top-left {
    position: relative;
    float: left;
    padding-left: 15px;
}

.header-top .info-list {
    position: relative;
}

.header-top .info-list li {
    position: relative;
    color: #ffffff;
    margin-right: 15px;
    display: inline-block;
    list-style: none;
}

.header-top .info-list li a {
    text-decoration: none;
    font-size: 14px;
    position: relative;
    color: #ffffff;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.header-top .top-right {
    position: relative;
    float: right;
}

.menu_header {
    float: left;
    width: 100%;
    box-shadow: 0px 0px 1px 1px #e5e5e5;
    position: relative;
    background: #fff;
}

.header-top .info-list li .icon {
    font-size: 12px;
    width: 22px;
    height: 22px;
    border-radius: 4px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    margin-right: 10px;
    float: left;
}

.logo img {
    width: 100%;
    height: auto;
}

.logo {
    width: 227px;
    height: auto;
}

/* hero section start */

.case-study-hero {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 0 0 8px 8px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #304ffe 0%, #1c1a7e 100%);
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    color: var(--white);
    transform: translateY(50px);
}

.case-study-herobanner {
    background: linear-gradient(135deg, #304ffe 0%, #1c1a7e 100%);
}

.case-study-herobanner {
    text-align: center;
    background: linear-gradient(135deg, #304ffe 0%, #1a237e 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
}

.hero-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
}

.meta-grid h2,
.meta-grid p {
    text-align: center;
}

/* Meta Grid - Keep as is */

.meta-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); */
    gap: 20px;
    /* background-color: rgb(0 0 0 / 43%); */
    /* backdrop-filter: blur(10px); */
    padding: 25px;
    /* border-radius: 8px; */
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    justify-content: center;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.meta-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(227, 140, 67, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-2);
    font-size: 20px;
}

.meta-label {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 4px;
}

.meta-value {
    font-weight: 600;
    font-size: 16px;
}

.result-badge {
    background-color: rgb(11 54 52 / 65%);
    padding: 10px 15px;
    border-radius: 8px;
    margin-left: -10px;
}

.result-badge .meta-icon {
    background-color: rgba(76, 175, 80, 0.3);
    color: #4CAF50;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.section-title {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--theme-2) 0%, var(--accent-light) 100%);
    border-radius: 2px;
}

:root {
    --primary-color: #1d1850;
    --secondary-color: #000;
    --white: #fff;
    --accent-color: #ffd700;
    --light-primary: rgba(11, 54, 52, 0.1);
    --medium-primary: rgba(11, 54, 52, 0.8);
    --gold-color: #ffb300;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --accent-color: #ff6b35;
    --light-color: #f8f9fa;
    --success-color: #198754;
    --rating-color: #ffb703;
}

body {
    color: #000;
}

/* button css start */

.theme-btn {
    position: relative;
    z-index: 2;
    overflow: hidden;
    vertical-align: middle;
    display: inline-block;
    border: none;
    text-transform: capitalize;
    text-align: center;
    border-radius: 30px;
    background: #fff;
    font-family: "Poppins", sans-serif;
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    padding: 6px 6px 6px 32px;
    letter-spacing: -0.18px;
}

.theme-btn::before {
    content: "";
    position: absolute;
    height: 100%;
    bottom: 0;
    left: 0;
    width: 0;
    background-color: #09380a;
    z-index: -1;
    transition: all 0.4s ease-out;
    border-radius: inherit;
}

.theme-btn i {
    margin-left: 10px;
    transition: all 0.4s ease-in-out;
    width: 44px;
    height: 44px;
    line-height: 44px;
    border-radius: 50%;
    background-color: #09380a;
    color: #fff;
}

.theme-btn:hover::before {
    width: 100%;
}

.theme-btn:hover {
    color: #fff;
    box-shadow: none;
}

.theme-btn:hover i {
    background-color: #ffffff;
    color: #000000;
}

a.theme-btn {
    text-decoration: none;
}

@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1200px;
    }
}

.about-img img {
    width: 100%;
    height: auto;
}

.ab-pad {
    margin-bottom: 5px;
}

/* table css start */

.table-container {
    background: linear-gradient(rgb(13, 14, 19), rgb(29, 24, 80));
    backdrop-filter: blur(10px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.table-header {
    background: linear-gradient(rgb(13, 14, 19), rgb(29, 24, 80));
    padding: 24px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.table-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
}

.app-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.app-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ffd700, #ff9500);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000;
    box-shadow: 0 4px 12px rgba(255, 213, 0, 0.3);
}

.app-title {
    font-size: 32px;
    font-weight: 800;
    color: white;
    text-shadow: 1px 1px 2px #000;
    letter-spacing: -0.5px;
}

.app-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    font-weight: 500;
    margin-top: 4px;
}

.table-content {
    padding: 8px 0;
}

.detail-table {
    width: 100%;
    border-collapse: collapse;
}

.detail-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.detail-table tr:last-child {
    border-bottom: none;
}

.detail-table tr:hover {
    background: linear-gradient(rgb(13, 14, 19), rgb(29, 24, 80));
}

.detail-table td {
    padding: 22px 32px;
    font-size: 16px;
}

.attribute {
    color: #fff;
    font-weight: 600;
    width: 40%;
    position: relative;
    padding-left: 12px;
}

.attribute::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 16px;
    background: linear-gradient(to bottom, #6a11cb, #2575fc);
    border-radius: 2px;
}

.detail {
    color: #ffffff;
    font-weight: 500;
}

.highlight {
    color: #fff;
    font-weight: 700;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(90deg, #2575fc, #6a11cb);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-right: 8px;
    box-shadow: 0 4px 8px rgba(37, 117, 252, 0.2);
}

.badge.green {
    background: linear-gradient(90deg, #00b09b, #96c93d);
    box-shadow: 0 4px 8px rgba(0, 176, 155, 0.2);
}

.badge.orange {
    background: linear-gradient(90deg, #ff9500, #ff5e3a);
    box-shadow: 0 4px 8px rgba(255, 149, 0, 0.2);
}

.publisher {
    display: flex;
    align-items: center;
    gap: 12px;
}

.publisher-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #2575fc, #6a11cb);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
}

.version-update {
    display: flex;
    align-items: center;
    gap: 20px;
}

.version {
    display: flex;
    align-items: center;
    gap: 8px;
}

.version-icon {
    color: #6a11cb;
    font-size: 18px;
}

.update-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
}

.date-icon {
    font-size: 16px;
}

.size-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.size-icon {
    color: #2575fc;
    font-size: 18px;
}

.bonus-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bonus-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700, #ff9500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #000;
}

.referral-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.referral-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00b09b, #96c93d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
}

/* Responsive Design */

@media (max-width: 768px) {
    .table-container {
        border-radius: 16px;
    }
    .table-header {
        padding: 15px;
    }
    .app-title {
        font-size: 26px;
    }
    .detail-table td {
        padding: 18px 20px;
        font-size: 15px;
    }
    .attribute {
        width: 35%;
    }
    .version-update {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .detail-table {
        display: block;
    }
    .detail-table tr {
        display: flex;
        flex-direction: column;
        padding: 16px 0;
    }
    .detail-table td {
        padding: 8px 20px;
    }
    .attribute {
        width: 100%;
        padding-left: 0;
    }
    .attribute::before {
        display: none;
    }
    .app-title {
        font-size: 22px;
    }
    .badge {
        margin-top: 4px;
    }
}

/* download steps */

.download-section {
    background: linear-gradient(135deg, rgba(11, 54, 52, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.download-container {
    background-color: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    border: 1px solid rgba(11, 54, 52, 0.1);
}

.download-header {
    background: linear-gradient(rgb(13, 14, 19), rgb(29, 24, 80));
    padding: 30px 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.download-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
}

.header-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.header-text h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--white);
}

.header-text p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
}

.download-badge {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease;
}

.download-badge:hover {
    transform: translateY(-3px);
}

.download-badge i {
    font-size: 20px;
}

.download-content {
    padding: 40px;
}

.intro-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--secondary-color);
    background-color: var(--light-primary);
    padding: 25px;
    border-radius: 16px;
    border-left: 5px solid var(--primary-color);
}

.intro-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.steps-container {
    margin-top: 40px;
}

.steps-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.steps-title i {
    background-color: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.step-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(11, 54, 52, 0.08);
    border: 1px solid rgba(11, 54, 52, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(11, 54, 52, 0.12);
}

.step-number {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(rgb(13, 14, 19), rgb(29, 24, 80));
    color: var(--white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    border-bottom-left-radius: 16px;
}

.step-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 28px;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.step-description {
    font-size: 16px;
    line-height: 1.5;
    color: var(--secondary-color);
}

.features-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px dashed rgba(11, 54, 52, 0.2);
}

.features-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: var(--light-primary);
    border-radius: 12px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-text {
    font-weight: 600;
    color: var(--secondary-color);
}

.verification-note {
    background: linear-gradient(rgb(13, 14, 19), rgb(29, 24, 80));
    color: var(--white);
    padding: 25px;
    border-radius: 16px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.verification-icon {
    width: 60px;
    height: 60px;
    background-color: #2575fc;
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.verification-text {
    font-size: 17px;
    line-height: 1.5;
}

.verification-text strong {
    color: var(--accent-color);
}

/* Responsive Design */

@media (max-width: 768px) {
    .download-header {
        padding: 25px 30px;
    }
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .header-text h2 {
        font-size: 28px;
    }
    .header-text p {
        font-size: 16px;
    }
    .download-content {
        padding: 30px 25px;
    }
    .intro-text {
        font-size: 16px;
        padding: 20px;
    }
    .steps-title {
        font-size: 24px;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .step-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .download-header {
        padding: 20px;
    }
    .header-text h2 {
        font-size: 24px;
    }
    .download-content {
        padding: 20px;
    }
    .verification-note {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Animation for step cards */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-card {
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}

.step-card:nth-child(1) {
    animation-delay: 0.1s;
}

.step-card:nth-child(2) {
    animation-delay: 0.2s;
}

.step-card:nth-child(3) {
    animation-delay: 0.3s;
}

.step-card:nth-child(4) {
    animation-delay: 0.4s;
}

.step-card:nth-child(5) {
    animation-delay: 0.5s;
}

/* faqs start css */

.bt-faq-wrapper-3 .faq-content .accordion-item .accordion-header .accordion-button {
    font-weight: 500;
    color: var(--white);
    border: 0;
    border-radius: 12px 12px 0px 0px;
    box-shadow: none;
    padding: 16px 15px 16px 25px;
    text-transform: capitalize;
    font-size: 20px;
    background: linear-gradient(rgb(13, 14, 19), rgb(29, 24, 80));
    border: none;
}

.bt-faq-wrapper-3 .faq-content .accordion-item .accordion-header .accordion-button.collapsed {
    border-radius: 10px;
    border: none;
    background: transparent;
    padding: 16px 15px 16px 25px;
    color: var(--secondary-color);
    background-color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.bt-faq-wrapper-3 .faq-content .accordion-item {
    border: 0;
    background-color: transparent;
    margin-bottom: 24px;
    margin-top: 25px;
}

.bt-faq-wrapper-3 .faq-content .accordion-item .accordion-collapse .accordion-body {
    padding-left: 30px;
    padding-top: 15px;
    color: var(--secondary-color);
    background-color: var(--white);
    border: none;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.bt-faq-wrapper-3 .faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    content: "\f068";
    background: transparent;
    font-family: "Font Awesome 6 Pro";
    font-weight: 500;
    transform: rotate(0);
    color: var(--primary-color);
    width: 39px;
    height: 39px;
    line-height: 39px;
    text-align: center;
    background-color: var(--white);
    border-radius: 50%;
}

.bt-faq-wrapper-3 .faq-content .accordion-item .accordion-header .accordion-button::after {
    content: "\f067";
    background: transparent;
    font-family: "Font Awesome 6 Pro";
    font-weight: 500;
    transition: all 0.3s ease-in-out !important;
    color: var(--white);
    width: 39px;
    height: 39px;
    line-height: 39px;
    text-align: center;
    background: linear-gradient(rgb(13, 14, 19), rgb(29, 24, 80));
    border-radius: 50%;
}

.severel-h2 {
    font-size: 35px;
    font-weight: 600;
    color: #1d1850;
    margin-bottom: 30px;
}

/* review satrt css */

.reviews-section {
    background-color: #f3f3f3;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    color: var(--primary-color);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #b71c1c;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    color: var(--secondary-color);
    font-size: 18px;
    margin-top: 20px;
    opacity: 0.8;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.review-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.review-stars {
    color: var(--gold-color);
    font-size: 18px;
    margin-bottom: 15px;
}

.review-text {
    color: var(--secondary-color);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px dashed var(--border-color);
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(rgb(13, 14, 19), rgb(29, 24, 80));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
}

.reviewer-details h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 3px;
}

.reviewer-details p {
    color: #000;
    font-size: 16px;
}

/* Responsive Design */

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .review-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 30px 15px;
    }
    .section-title {
        font-size: 24px;
    }
    .section-subtitle {
        font-size: 16px;
    }
}

/* reference links */

.text-two li {
    list-style: none;
}

.text-two {
    border-right: 5px solid var(--primary-color);
}

.text-two li a {
    color: var(--secondary-color);
}

/* how to sign up */

.tenpatisignup {
    box-shadow: rgb(29, 24, 80) 0px 3px 8px;
    padding: 15px;
    border-radius: 15px;
}

/* autor start */

.author-header {
    background: linear-gradient(rgb(13, 14, 19), rgb(29, 24, 80));
    padding: 30px 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    text-align: center;
}

.author-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.author-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.author-subtitle {
    font-size: 16px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.author-content {
    padding: 40px;
    box-shadow: rgb(29, 24, 80) 0px 3px 8px;
    border-radius: 0 0 15px 15px;
}

.author-profile {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.author-image-container {
    flex-shrink: 0;
}

.author-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--light-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-basic-info {
    flex: 1;
    min-width: 250px;
}

.author-name {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.author-tagline {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.author-stats {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 14px;
    color: #000;
}

.author-bio {
    margin-top: 30px;
}

.bio-section {
    margin-bottom: 25px;
}

.bio-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bio-title i {
    color: #000;
}

.bio-text {
    color: var(--secondary-color);
    line-height: 1.6;
    font-size: 16px;
}

.author-footer {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px dashed rgba(11, 54, 52, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.author-quote {
    font-style: italic;
    color: var(--medium-primary);
    max-width: 500px;
    font-size: 15px;
}

.author-verified {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(11, 54, 52, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.author-verified i {
    color: #4CAF50;
}

/* Responsive Design */

@media (max-width: 768px) {
    .author-content {
        padding: 30px;
    }
    .author-profile {
        gap: 20px;
    }
    .author-image {
        width: 120px;
        height: 120px;
    }
    .author-name {
        font-size: 28px;
    }
    .author-tagline {
        font-size: 16px;
    }
    .author-header {
        padding: 25px 30px;
    }
}

@media (max-width: 576px) {
    .author-content {
        padding: 20px;
    }
    .author-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .author-stats {
        justify-content: center;
    }
    .author-footer {
        flex-direction: column;
        text-align: center;
    }
    .author-header {
        padding: 20px;
    }
    .author-title {
        font-size: 24px;
    }
}

/* earn program */

/* conclusion start css */

.conclusion-section {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
}

.highlight-red {
    color: #b32020;
}

h3.earn-h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.conclusion-icon {
    font-size: 40px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    color: var(--accent-color);
}

.conclusion-content {
    padding: 40px;
    box-shadow: rgb(29, 24, 80) 0px 3px 8px;
    border-radius: 15px;
}

.main-conclusion {
    background-color: rgba(11, 54, 52, 0.05);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    border-left: 4px solid #b71c1c;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.conclusion-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.emoji {
    font-size: 20px;
    margin: 0 5px;
}

.policy-section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: var(--primary-color);
}

.policy-box {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.policy-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-title {
    font-weight: 600;
    color: #b71c1c;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.policy-text {
    color: var(--secondary-color);
    line-height: 1.5;
    font-size: 15px;
}

.refund-policy {
    border-left: 4px solid #b71c1c;
}

.disclaimer-policy {
    border-left: 4px solid #b71c1c;
}

.restricted-states {
    margin-top: 30px;
    background-color: rgba(255, 107, 53, 0.05);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.restricted-title {
    font-weight: 600;
    color: #b71c1c;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.states-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.state-tag {
    background-color: rgba(255, 107, 53, 0.1);
    color: #b71c1c;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Responsive Design */

@media (max-width: 768px) {
    .conclusion-content {
        padding: 30px;
    }
    .conclusion-header {
        padding: 25px 30px;
    }
    .conclusion-title {
        font-size: 28px;
    }
    .conclusion-text {
        font-size: 16px;
    }
    .states-list {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .conclusion-content {
        padding: 20px;
    }
    .conclusion-header {
        padding: 20px;
    }
    .conclusion-title {
        font-size: 24px;
    }
    .main-conclusion {
        padding: 20px;
    }
    .policy-box {
        padding: 15px;
    }
}

/* footer start */

.footer-section {
    background-color: var(--primary-color);
    border-radius: 60px 60px 0 0;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(11, 54, 52, 0.1);
}

.footer-container {
    display: flex;
    flex-direction: column;
}

.footer-links {
    background: linear-gradient(rgb(13, 14, 19), rgb(29, 24, 80));
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.footer-links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 15px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.footer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 80%;
}

.link-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 20px;
    position: relative;
    z-index: 2;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.copyright-text {
    color: var(--white);
    font-size: 16px;
    line-height: 1.5;
}

.brand-name {
    color: var(--white);
    font-weight: 700;
}

.company-name {
    color: var(--white);
    font-weight: 600;
}

.footer-note {
    color: #fff;
    font-size: 16px;
    padding: 15px;
    background-color: #000;
    border-radius: 35px;
}

/* Responsive Design */

@media (max-width: 768px) {
    .footer-links {
        padding: 25px 15px;
        gap: 20px;
    }
    .footer-link {
        font-size: 15px;
        padding: 8px 12px;
    }
    .link-separator {
        display: none;
    }
    .footer-copyright {
        padding: 20px 15px;
    }
    .copyright-text {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    .footer-link {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Animation for links */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-link:nth-child(1) {
    animation: fadeIn 0.5s ease 0.1s both;
}

.footer-link:nth-child(3) {
    animation: fadeIn 0.5s ease 0.2s both;
}

.footer-link:nth-child(5) {
    animation: fadeIn 0.5s ease 0.3s both;
}

/* contact us start */

.contact-top {
    position: relative;
    z-index: 1;
    padding-bottom: 100px;
}

a {
    text-decoration: none;
}

.contact-top__item {
    border-radius: 20px;
    border: 1px solid #DDDDDD;
    padding: 30px 25px 20px;
    position: relative;
    background-color: #fff;
    z-index: 1;
    overflow: hidden;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.contact-top__item__top {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 14px;
    margin-bottom: 10px;
}

.contact-top__item__icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    font-size: 24px;
    overflow: hidden;
    color: #fff;
    transition: all 0.5s ease-in-out;
}

.contact-top__item__text {
    margin: 0;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease-in-out;
}

.contact-top__item__text::after {
    content: "";
    height: 2px;
    width: 100px;
    position: absolute;
    bottom: -14px;
    left: 0;
    background-color: transparent;
    border-top: 2px dashed var(--primary-color);
    transition: all 0.5s ease-in-out;
}

.contact-top__item__content__item {
    display: block;
}

.contact-top__item__content a {
    color: #555;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 162.5%;
    margin: 0;
    display: inline-flex;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
    transition: all 500ms ease;
}

.contact-top__item__content a {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 162.5%;
    margin: 0;
    display: inline-flex;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
    transition: all 500ms ease;
}

.contact-top__item__shape::before {
    content: "";
    width: 53px;
    height: 53px;
    border-radius: 50%;
    position: absolute;
    bottom: -5px;
    right: -5px;
    border: 2px dashed #fff;
    background-color: transparent;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    animation: rotate360 3s ease-in-out infinite;
}

.contact-top__item__shape::after {
    content: "";
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    bottom: -17px;
    right: -18px;
    border: 6px solid #fff;
    background-color: transparent;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    animation: rotate360 3s ease-in-out infinite;
}

.contact-top__item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--primary-color);
    z-index: -1;
    transform: translateY(-100%);
    transition: all 0.5s ease-in-out;
}

.contact-top__item:hover::after {
    transform: translateY(0%);
}

.contact-top__item:hover .contact-top__item__shape::after,
.contact-top__item:hover .contact-top__item__shape::before {
    visibility: visible;
    opacity: 1;
}

.contact-top__item:hover .contact-top__item__icon {
    background-color: #fff;
    color: var(--primary-color);
}

.contact-top__item:hover .contact-top__item__text,
.contact-top__item:hover .contact-top__item__content a,
.contact-top__item:hover .time {
    color: #fff;
}

.contact-top__item:hover .contact-top__item__text::after {
    background-color: #fff;
}

.contact-top__item:hover .contact-top__item__text,
.contact-top__item:hover .contact-top__item__content a,
.contact-top__item:hover .time {
    color: #fff;
}

@keyframes rotate360 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.rotate-animation {
    animation: rotate360 2s linear infinite;
}

img.md\:h-20.h-14 {
    max-width: 126px;
}

@media (max-width:992px) {
    .ma-bot {
        margin-bottom: 20px;
    }
    .severel-h2 {
        font-size: 30px;
        margin-bottom: 25px;
    }
    .contact-top {
        position: relative;
        z-index: 1;
        padding-bottom: 30px;
    }
}

@media (max-width:767px) {
    .severel-h2 {
        font-size: 25px;
    }
    .footer-section {
        border-radius: 30px 30px 0 0;
    }
}

/* about us page */

.ab-page-sec-img {
    position: relative;
    z-index: 9;
}

.ab-page-sec-img img {
    width: 100%;
    height: 100%;
    border: 15px solid rgba(0, 79, 68, 0.1);
    border-radius: 14%;
}

/* whyus start */

/* Custom CSS for Gaming Hub - Why Choose Us Section */

/* Why Choose Us Section */

.why-choose-us {
    position: relative;
}

/* Feature Cards */

.feature-card {
    background: #070714;
    border-radius: 15px;
    padding: 30px 25px;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0800f0, #9da2b0);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow);
    border-color: rgba(106, 17, 203, 0.5);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(rgb(13, 14, 19), rgb(29, 24, 80));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: white;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.feature-description {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-badge {
    display: inline-block;
    background: rgba(255, 78, 80, 0.2);
    color: var(--accent-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 78, 80, 0.3);
}

/* Responsive Design */

@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }
    .stat-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    .feature-card {
        padding: 25px 20px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.6rem;
    }
    .section-subtitle {
        font-size: 1rem;
    }
}

/* Breadcrumb Section */

.breadcrumb-section {
    background: #14122d;
    padding: 60px 20px;
    text-align: center;
}

/* Container */

.breadcrumb-container {
    max-width: 1200px;
    margin: auto;
}

/* Breadcrumb Links */

.breadcrumb {
    margin-bottom: 15px;
    font-size: 14px;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
}

.breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

.breadcrumb span {
    color: #ffffff;
    margin: 0 6px;
}

.breadcrumb .active {
    color: #ffffff;
    font-weight: 600;
    opacity: 1;
}

/* Title */

.breadcrumb-title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

/* privacy policy */

.privacy-content {
    background-color: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

h4.privacy-h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.privacy-content strong {
    color: #b32020;
}

/* articals start */

/* Modern Card Design */

.game-card-modern {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 25px 25px 25px 70px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    border: 2px solid transparent;
    margin-bottom: 30px;
}

/* Hover Animation with 3D effect */

.game-card-modern:hover {
    transform: translateY(-12px) perspective(1000px) rotateX(2deg);
    box-shadow: 0 25px 50px rgba(11, 54, 52, 0.15);
    border-color: rgba(11, 54, 52, 0.1);
}

/* Animated Rank Badge */

.rank-badge-modern {
    position: absolute;
    left: 20px;
    top: 25px;
    background: linear-gradient(rgb(13, 14, 19), rgb(29, 24, 80));
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    z-index: 2;
    box-shadow: 0 6px 15px rgba(11, 54, 52, 0.3);
    transition: all 0.4s ease;
}

.game-card-modern:hover .rank-badge-modern {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 10px 20px rgba(11, 54, 52, 0.4);
}

/* Crown for top rank */

.rank-badge-modern:before {
    content: '👑';
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 14px;
    transform: rotate(20deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.rank-badge-modern.top-rank:before {
    opacity: 1;
}

/* Game Image with floating effect */

.game-image-modern {
    position: relative;
    margin-right: 20px;
}

.game-image-modern img {
    width: 100px;
    height: 100px;
    border-radius: 18px;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    transform-style: preserve-3d;
}

.game-card-modern:hover .game-image-modern img {
    transform: rotateY(15deg) scale(1.08);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Glow effect on image */

.game-image-modern:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 106, 0, 0.1));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.game-card-modern:hover .game-image-modern:after {
    opacity: 1;
}

/* Game Info */

.game-info-modern h4 {
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.game-info-modern h4:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    bottom: -4px;
    left: 0;
    border-radius: 2px;
    transition: width 0.5s ease;
}

.game-card-modern:hover .game-info-modern h4:after {
    width: 100%;
}

.meta-modern {
    margin-bottom: 10px;
}

.meta-modern span {
    font-size: 16px;
    margin-right: 62px;
    color: #002e65;
}

.meta-modern .bonus-modern {
    color: var(--accent-color);
    font-weight: 700;
    background: rgba(255, 106, 0, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
}

/* Extra Info */

.extra-modern {
    margin: 10px 0;
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.withdraw-modern {
    background: rgba(11, 54, 52, 0.08);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.withdraw-modern i {
    margin-right: 5px;
    color: var(--success-color);
}

.rating-modern {
    color: var(--rating-color);
    font-weight: 600;
    display: flex;
    align-items: center;
}

/* Description */

.desc-modern {
    font-size: 14px;
    color: #000;
    margin-bottom: 0;
    max-width: 600px;
}

/* Download Button */

.download-btn-modern {
    margin-left: auto;
}

.download-btn-modern .btn-modern {
    background: linear-gradient(rgb(13, 14, 19), rgb(29, 24, 80));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(11, 54, 52, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* .download-btn-modern .btn-modern:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #128c7e, var(--primary-color));
            transition: all 0.5s ease;
            z-index: -1;
        } */

.download-btn-modern .btn-modern:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 30px rgba(11, 54, 52, 0.4);
}

.download-btn-modern .btn-modern:hover:before {
    left: 0;
}

/* Animated Background Shapes */

.shape-modern {
    position: absolute;
    border-radius: 50%;
    background: rgba(11, 54, 52, 0.05);
    z-index: 0;
    transition: all 0.8s ease;
}

.shape-1 {
    width: 120px;
    height: 120px;
    right: -40px;
    bottom: -40px;
}

.shape-2 {
    width: 80px;
    height: 80px;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 106, 0, 0.05);
}

.game-card-modern:hover .shape-1 {
    transform: scale(1.2) rotate(45deg);
}

.game-card-modern:hover .shape-2 {
    transform: translateY(-50%) scale(1.3);
}

/* Floating Particles */

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 106, 0, 0.3);
    border-radius: 50%;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.game-card-modern:hover .particle {
    opacity: 1;
}

/* Mobile Responsive */

@media (max-width: 768px) {
    .game-card-modern {
        padding: 20px 20px 20px 60px;
    }
    .game-image-modern img {
        width: 80px;
        height: 80px;
    }
    .game-info-modern h4 {
        font-size: 1.3rem;
    }
    .download-btn-modern {
        width: 100%;
        margin-top: 20px;
        margin-left: 0;
    }
    .download-btn-modern .btn-modern {
        width: 100%;
    }
    .shape-1,
    .shape-2 {
        display: none;
    }
    .meta-modern span {
        display: block;
        margin-bottom: 5px;
    }
}

/* For very small screens */

@media (max-width: 576px) {
    .game-card-modern {
        padding: 20px;
    }
    .rank-badge-modern {
        position: relative;
        left: 0;
        top: 0;
        margin-bottom: 15px;
    }
    .game-image-modern {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .game-image-modern img {
        width: 70px;
        height: 70px;
    }
}

/* Animation for new cards */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.game-card-modern {
    animation: fadeInUp 0.6s ease forwards;
}

/* detail page- download apk */

.app-hero {
    position: relative;
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 20px;
    margin: 40px auto;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    overflow: hidden;
}

/* App Icon */

.app-icon-d img {
    width: 140px;
    height: 140px;
    border-radius: 28px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    animation: float 4s ease-in-out infinite;
}

/* Floating Animation */

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Rating */

.rating {
    color: #ffb703;
    font-size: 22px;
}

/* Title */

.app-title {
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Description */

.app-desc {
    font-size: 16px;
    color: #555;
    max-width: 650px;
    margin: auto;
}

/* Info */

.info-lines {
    margin-top: 25px;
    font-size: 15px;
}

.info-lines a {
    color: #e60000;
    font-weight: 600;
    text-decoration: none;
}

.downloads {
    color: #d40000;
    font-weight: 600;
}

.secure {
    color: #0a9b3f;
    font-weight: 600;
}

/* Back Link */

.back-link {
    margin: 25px 0;
    font-weight: 600;
    color: #0066ff;
    cursor: pointer;
}

.back-link:hover {
    text-decoration: underline;
}

/* Download Button */

.download-btn .btn {
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.35s ease;
}

.download-btn .btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 128, 0, 0.35);
}

/* Shapes */

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
}

.shape-11 {
    width: 220px;
    height: 220px;
    background: var(--primary-color);
    top: -80px;
    left: -80px;
}

.shape-22 {
    width: 180px;
    height: 180px;
    background: #0a9b3f;
    bottom: -60px;
    right: -60px;
}

.de-page-download {
    padding: 30px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.de-page-download h2 {
    text-align: left;
    color: var(--primary-color);
    border-bottom: 4px double #17403e;
    font-size: 25px;
    border-radius: 0 0 15px 15px;
    padding: 15px;
}

button.btn-modern a {
    color: #fff;
}

.com-dex {
    display: block;
}

.app-mobile {
    display: none;
}

/* Mobile Responsive */

@media (max-width: 768px) {
    .app-title {
        font-size: 24px;
    }
    .app-icon img {
        width: 110px;
        height: 110px;
    }
    .app-desc {
        font-size: 15px;
    }
    .de-page-download h2 {
        font-size: 20px;
        padding: 10px;
    }
    .com-dex {
        display: none;
    }
    .app-mobile {
        display: block;
    }
    .about-img img {
        margin-bottom: 20px;
    }
}

/* Mobile Responsive */

@media (max-width: 768px) {
    .breadcrumb-title {
        font-size: 30px;
    }
    .privacy-content {
        padding: 15px;
    }
}

.mar-bot {
    margin-bottom: 20px;
}

@media (max-width: 576px) {
    .privacy-content {
        padding: 15px;
    }
    .breadcrumb-section {
        padding: 40px 20px;
    }
    h4.privacy-h4 {
        font-size: 18px;
    }
    .breadcrumb-title {
        font-size: 25px;
    }
    .footer-link {
        font-size: 16px;
        padding: 4px 12px;
    }
    .footer-copyright {
        padding: 5px 20px 15px;
    }
    .bt-faq-wrapper-3 .faq-content .accordion-item .accordion-header .accordion-button {
        font-size: 17px;
    }
    .meta-grid h2 {
        font-size: 18px;
    }
    .meta-grid {
        padding: 15px;
    }
    .hero-content {
        padding: 20px;
    }
    .hero-title {
        font-size: 1.5rem;
    }
    .de-page-download h2 {
        font-size: 18px;
    }
    .de-page-download {
        padding: 15px;
    }
    .hero-image-container {
        height: 397px;
    }
    .apk-sticky {
        padding: 7px 11px;
    }
}

/* ===========================
   Sticky APK Download Button
=========================== */

.apk-sticky {
    position: fixed;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    z-index: 9999;
    background: linear-gradient(45deg, #ff0080, #7928ca, #00f2fe);
    background-size: 300% 300%;
    padding: 14px 12px;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    animation: gradientMove 4s ease infinite, pulseGlow 1.5s infinite;
    transition: all 0.4s ease;
}

/* Icon circle */

.apk-sticky span {
    background: rgb(0 0 0 / 64%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* Vertical text */

.apk-sticky strong {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    letter-spacing: 1px;
}

/* Hover effect */

.apk-sticky:hover {
    background: linear-gradient(135deg, #0b3634, #00c853);
    background-size: 300% 300%;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
    transform: translateY(-50%) scale(1.1);
    animation-play-state: paused;
}

/* ===========================
   Animations
=========================== */

/* Gradient movement */

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Pulse + glow (desktop) */

@keyframes pulseGlow {
    0% {
        transform: translateY(-50%) scale(1);
        box-shadow: 0 0 20px rgba(255, 0, 128, 0.6);
    }
    50% {
        transform: translateY(-50%) scale(1.08);
        box-shadow: 0 0 35px rgba(0, 242, 254, 0.9);
    }
    100% {
        transform: translateY(-50%) scale(1);
        box-shadow: 0 0 20px rgba(255, 0, 128, 0.6);
    }
}

/* ===========================
   Mobile Responsive
=========================== */

@media (max-width: 768px) {
    .apk-sticky {
        top: auto;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        padding: 14px 26px;
        border-radius: 60px;
        gap: 12px;
        animation: gradientMove 4s ease infinite, pulseGlowMobile 1.5s infinite;
    }
    .apk-sticky strong {
        writing-mode: initial;
        transform: none;
        letter-spacing: normal;
    }
    .apk-sticky:hover {
        transform: translateX(-50%) scale(1.05);
    }
}

/* Mobile pulse */

@keyframes pulseGlowMobile {
    0% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.06);
    }
    100% {
        transform: translateX(-50%) scale(1);
    }
}