.container {
    width: 100%;
    max-width: 1200px !important;
}

header.myheader {
    background: linear-gradient(90deg, #3c2d98 0%, #a44dd7 100%);
    box-shadow: 0 -3px 7px 0 #0000001a;
    position: relative;
    /* border-bottom: 1px solid #eeeeee; */
    padding-bottom: 9px;
}

h2,
h3 {
    font-weight: bold;
}

.nav__data {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.first-section {
    padding: 40px 0px 40px;
}

a {
    text-decoration: none !important;
}

.gd-head {
    font-weight: 700;
    color: #111;
    font-size: 1.8rem;
}

.nav__menu {
    position: relative;
}

ul.menu-list {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 13px;
    list-style: none;
}


li.menu-link:hover::before .actives {
    opacity: 0 !important;
}

li.menu-link {
    padding: 7px 10px;
    margin-left: 10px;
}

li.menu-link a {
    color: #fff;
    font-weight: 400;
    font-size: 17px;
    position: relative;
}

li.menu-link a:before {
    position: absolute;
    content: ' ';
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 100%;
    border-bottom: 1px solid #000;
    transition: all 0.5s ease-in-out;
    padding-top: 2px;
    z-index: -1;
}

li.menu-link a:hover:before {
    width: 100%;
}

.nav__toggle {
    position: relative;
    width: 34px;
    height: 34px;
    border: 1px solid #fff;
    display: none;
}

.nav__toggle .pizza,
.close {
    position: absolute;
    max-width: max-content;
    max-height: max-content;
    inset: 0;
    margin: auto;
    font-size: 30px;
    color: #fff;
    transition: all 0.5s ease-in-out;
}

.close {
    opacity: 0;
    visibility: hidden;
}

.show-menu {
    transform: translateX(0%) !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 999 !important;
}

.show-icon .close {
    transition: all 0.5s ease-in-out;
    transform: rotate(90deg);
    opacity: 1;
    visibility: visible;
    position: absolute;
    left: -103px;
    z-index: 999 !important;
}

.show-icon .pizza {
    opacity: 1;
    transform: rotate(360deg);
    transition: all 0.5s ease-in-out;
}

.main-logo img {
    padding-top: 5px;
    max-width: 74px;
}

.has-submenu {
    position: relative;
}

.has-submenu .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1a1a1a;
    min-width: 180px;
    display: none;
    flex-direction: column;
    border-radius: 6px;
    list-style: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.has-submenu .submenu li a {
    padding: 10px 16px;
    display: block;
    color: #fff;
    font-size: 15px;
    border-bottom: 1px solid #ff464a;
    transition: background 0.3s;
    margin: 6px;
}

.has-submenu .submenu li a:hover {
    background-color: #0bc4d9;
}

.submenu-arrow {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

a.get-bouns-btn {
    background-color: #ff0000;
    padding: 9px 18px;
    border-radius: 5px;
}

section.about-section {
    padding: 25px 0px 0px;
    text-align: center;
}

section.top-section {
    padding: 0px 0px 0px;
}

.content-box {
    padding-top: 45px;
}

.change-clr {
    color: #ff0000;
}

/* -----Start-----Footer----- */

.site-footer {
    background-color: #000;
    color: #ffffff;
    padding: 20px;
    margin-top: 40px;
    text-align: center;
}

ul.footerlist {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 27px;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 10px;
    list-style: none;
}

.footer-link a {
    color: #ffff;
    font-size: 17px;
}

.top-header {
    background-color: #d6b46b;
    padding: 14px 0px;
}

.bdg-game {
    float: right;
}

.bdg-game a {
    padding: 0.5rem 2rem;
    background: #0a7e27;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.bdg-games a {
    padding: 0.5rem 2rem;
    background: #60daaa;
    color: #333;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    border: 2px solid #000;
    transition: background 0.3s;
}

/* --------Style----Here----Section----- */
.hero {
    background: #fff;
    padding: 4rem 1rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #333;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btns {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 2rem;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: bold;
    transition: transform 0.3s, background 0.3s;
    border: none;
}



.btns:hover {
    transform: translateY(-2px);
}

.btns.register {
    background-color: #0a7e27;
}

.btns.login {
    background-color: #1e7a9b;
}

.btns.download {
    background-color: #b04b41;
}

a.bharat-login.btn-1 {
    background-color: #1e7a9b;
    color: #fff;
}

.gift-code {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin: 2rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.code {
    font-family: monospace;
    font-size: 1.2rem;
    background: linear-gradient(90deg, #5842df 0%, #a44dd7 100%);
    padding: 1rem;
    border-radius: 5px;
    color: #fff;
    margin: 1rem 0;
    word-break: break-all;
}

.info-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.info-table td {
    padding: 1rem;
    border: 1px solid #a44dd7;
}

.info-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.step-card {
    padding: 2rem !important;
    background: hsl(0, 0%, 100%);
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 3px 4px rgba(100, 77, 215, 0.5);
}

.step-card img,
.content-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 318px;
    height: auto;
    border-radius: 8px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.faq-section {
    margin: 4rem 0;
}

details {
    background: #f8f9fa;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid #9c4ad2;
}

summary {
    padding: 1.5rem;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    list-style: none;
    display: flex;
    align-items: center;
}

summary::-webkit-details-marker {
    display: none;
}

summary::before {
    content: "►";
    font-size: 1.3rem;
    margin-right: 1rem;
    transition: transform 0.2s ease-in-out;
}

details[open]>summary {
    font-weight: bold;
}

details[open]>summary::before {
    transform: rotate(90deg);
}

.faq-answer {
    padding: 0.5rem 1.5rem 1.5rem 3rem;
    /* Indent the answer to align with text */
    line-height: 1.8;
    color: #555;
}

.footer {
    background: linear-gradient(90deg, #3c2d98 0%, #a44dd7 100%);
    color: white;
    padding: 4rem 1rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 23px;
    text-decoration: underline;
}

.footer-section ul {
    list-style: none;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.step-card h3 {
    font-size: 1.4rem;
    color: #412e9b;
}


.footer-section ul li a {
    color: #fff;
    position: relative;
    line-height: 34px;
}

.footer-section ul li a::before {
    position: absolute;
    content: ' ';
    border-bottom: 1px solid #ff0000;
    width: 0%;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 0.5s ease-in-out;
    color: #fff;
}

.footer-section ul li a:hover::before {
    width: 100%;
    transition: all 0.5s ease-in-out;
    color: red;
}

summary.color-1 {
    background-color: #d6b46b;
    color: #fff;
}

/* Table of Contents */
details.toc-container {
    margin: 2rem 0;
    background: linear-gradient(90deg, #3c2d98 0%, #a44dd7 100%);
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    padding: 0;
    border-radius: 10px;
    max-width: 50%;
}

summary.toc-title {
    font-size: 1.2rem;
    font-weight: bold;
    padding: 1rem 1.5rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    color: #fff;
    align-items: center;
}

summary.toc-title::-webkit-details-marker {
    display: none;
}

summary.toc-title::before {
    content: "►";
    font-size: 0.8em;
    margin-right: 1rem;
    transition: transform 0.2s ease-in-out;
}

ul.toc-list {
    list-style: decimal;
    color: #fff;
    font-size: 17px;
}

ul.toc-list li a {
    color: #fff;
    font-size: 17px;
}

details[open]>summary.toc-title::before {
    transform: rotate(90deg);
}

/* -----Sticky----Style----Code-------- */
.sticky {
    position: sticky !important;
    top: 0;
    width: 100%;
    z-index: 9999 !important;
    transition: all 0.6s ease-in-out;
    animation: smothScroll 1s forwards;
}

@keyframes smothScroll {
    0% {
        transform: translateY(-40px);
    }

    100% {
        transform: translateY(0px);
    }
}

.sticky+.site-content {
    padding-top: 102px;
}

.for-gap {
    padding: 0px 0px 10px;
}

.container.step-card.for-bg-clr {
    background: linear-gradient(90deg, #3c2d98 0%, #a44dd7 100%);
    color: #fff;
}

.container.step-card h1,
h2 {
    padding: 2px 0px 20px !important;
}

.container {
    padding: 0px;
}

.go-toboth-img-box {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.footer-section ul {
    list-style: none;
    padding: 0px;
}

.container.step-card.for-bg-clr-ction {
    background: linear-gradient(90deg, #3c2d98 0%, #a44dd7 100%);
    border-radius: 30px;
    color: #fff;
}

.step-card:hover img {
    transition: all 0.5s ease-in-out;
    transform: translateY(-10px);
}