* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #fff;
    font-family: "Exo 2", sans-serif;
    font-size: 15px;
    color: #555;
}

.container {
    max-width: 1250px;
}

/* ===== HEADER ===== */
.topmenu {
    background: #ffffff;
    padding: 4px;
    text-align: center;
    color: #fff;
}

.myheader {
    background: #05368c;
    top: 0;
    padding: 0px 0px;
    transition: box-shadow 0.3s ease;
}

.myheader.secon-color {
    background-color: #0051c3;
    padding: 6px 0px 6px;
}

.nav__data {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.main-logo img {
    max-width: 68px;
    padding: 4px;
    border-radius: 10px;
}

.nav__menu {
    position: relative;
}

ul.menu-list {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 13px;
    list-style: none;
}

li.menu-link {
    position: relative;
    padding: 3px 9px;
    z-index: 1;
    margin-left: 10px;
    list-style: none;
}

li.menu-link a {
    color: #fff;
    font-weight: 400;
    font-size: 17px;
    position: relative;
    text-decoration: none;
}

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%;
}

.sunmenu li.sb-links a {
    position: relative;
}

.sunmenu li.sb-links 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;
    background-color: #fff;
}

.sunmenu li.sb-links a:hover:before {
    width: 100%;
    color: #000;
}

.sunmenu li.sb-links a:hover {
    color: #000 !important;
    transition: all 0.5s ease-in-out;
}

.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 {
    transform: rotate(90deg);
    opacity: 1;
    visibility: visible;
    position: absolute;
    left: -103px;
    z-index: 999 !important;
}

.show-icon .pizza {
    opacity: 1;
    transform: rotate(360deg);
}

.nav__menu ul.menu-list li.menu-link>ul.sunmenu {
    position: absolute;
    top: 100%;
    left: inherit;
    width: 250px;
    padding: 15px 0px 0px;
    background-color: #05368c;
    border-radius: 0px;
    opacity: 0;
    visibility: hidden;
    transform: rotateX(-90deg);
    transform-origin: top;
    transition: all 0.3s ease-in-out;
    box-shadow: -3px 3px 4px 0px #fff;
    z-index: 100;
    margin-left: -70px;
    margin-top: 8px;
    list-style: none;
    border-bottom: 1px solid #05368c;
}

.nav__menu ul.menu-list li.menu-link:hover ul.sunmenu {
    opacity: 1;
    visibility: visible;
    transform: rotateX(0deg);
}

.nav__menu ul.menu-list li.menu-link>ul>li>a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding-left: 20px;
    display: block;
    padding: 5px 20px;
    border-bottom: 1px solid #fff;
}


.v3-game {
    display: flex;
    margin: auto;
    gap: 7px;
}

.v3-game.mob-show {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
}

/* ---HERO----SECTION----- */

.hero {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;

}

/* GRID BACKGROUND */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(#e4eaf3 1px, transparent 1px),
        linear-gradient(90deg, #e4eaf3 1px, transparent 1px);
    background-size: 70px 70px;
    opacity: .7;
    z-index: 0;

}

/* LOGIN CARD */

.login-card {
    position: relative;
    z-index: 2;
    width: 27%;
    background: #fff;
    padding: 19px 34px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: .3s;
}

.login-card:hover {

    transform: translateY(-4px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .12);

}

/* LOGO */

.logo {

    width: 85px;
    height: 85px;

    margin: auto;
    margin-bottom: 12px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .12);

}

.logo img {

    width: 65%;

}

/* TITLE */

.title {

    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #333;

}

/* INPUT GROUP */

.input-group {

    position: relative;
    margin-bottom: 18px;

}

.input-group input {

    width: 100%;

    padding: 6px 42px;

    border-radius: 8px;

    border: 1px solid #dbe2ea;

    font-size: 14px;

    outline: none;

    transition: .2s;

    background: #fafbfc;
}

.input-group input:focus {

    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, .1);

}

/* ICON */

.icons {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #7a8594;
}

/* SHOW PASSWORD */

.show {

    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    color: #6b7280;
    cursor: pointer;

}

/* FORGOT PASSWORD */
.forgot {
    text-align: right;
    font-size: 13px;
    margin-bottom: 20px;

}

.forgot a {
    text-decoration: none;
    color: #64748b;
}

/* LOGIN BUTTON */
.login-btn {
    width: 100%;
    padding: 6px 12px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #0051c3, #003366);
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(37, 99, 235, .35);

}

/* DIVIDER */
.divider {
    margin: 8px 0;
    font-size: 14px;
    color: #9aa4b2;

}

/* EMAIL LINK BUTTON */

.email-login {
    width: 100%;
    padding: 7px 11px;
    border-radius: 8px;
    border: 1px solid #dbe2ea;
    background: #f8fafc;
    font-size: 14px;
    cursor: pointer;
    transition: .2s;
}

.email-login:hover {

    background: #eef2f7;

}

/* -----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;
}

.sticky header.myheader {
    background-color: #3f3f3f !important;
    color: #fff;
}

.sticky .myheaders {
    background-color: #f8f5fb;
    color: #000;

}

/* header.sticky {
    background-color: #ffffff !important;
    box-shadow: 0px 0px 22px #85858569 !important;
} */

.faq-section {
    padding: 50px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

.faq-column {
    display: flex;
    flex-direction: column;
}

/* FAQ BOX */
.faq {
    background-color: #f0f4fa;
    border-radius: 10px;
    margin-bottom: 17px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq:hover {
    background-color: #05368c;
}

.faq:hover h3 {
    color: #fff;
}

.faq-header {
    padding: 15px 20px;
    color: #000;
    cursor: pointer;
    position: relative;
    font-weight: 600;
}

.faq-header h3 {
    font-size: 20px;
}

.faq-header::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 22px;
    font-size: 22px;
    transition: 0.3s;
}

.faq.active .faq-header::after {
    transform: rotate(45deg);
    /* rotate icon */
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    color: #000;
    padding: 0 20px;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq.active .faq-content {
    max-height: 300px;
    padding: 15px 20px 20px;
}


.footerbar {
    background-color: #130041;
    padding: 2px;
    text-align: center;
    color: #000;
}

.trust-item span::first-letter {
    font-size: 32px;
    margin-right: 8px;
    vertical-align: middle;
}

#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 10%;
    background: #54d3f1;
    color: #000;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

#backToTop.show {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

#backToTop:hover {
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
    transform: scale(1.1);
}

.arrow {
    position: absolute;
    font-size: 22px;
    font-weight: bold;
    color: #111;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
}

.progress-ring__circle {
    stroke: #05368c;
    stroke-opacity: 0.25;
    transition: stroke-dashoffset 0.25s linear, stroke-opacity 0.25s linear;
}

.progress-ring__circle.active {
    stroke-opacity: 1;
    filter: drop-shadow(0 0 6px #fed385);
}

@media (max-width: 768px) {
    #backToTop {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

/* pda-header */
.pda-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pda-header-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #0d47a1, #1565c0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pda-header h1 {
    font-size: 28px;
    color: #0d47a1;
}

.subtext {
    margin-left: 70px;
    color: #6b7a99;
}

/* Layout */
.grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
}

/* Left Card */
.card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #003a7b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.badge {
    display: inline-block;
    background: #e8f0fe;
    color: #0d47a1;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.card h2 {
    margin-bottom: 20px;
}

/* Info Row */
.info {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.icon-box {
    width: 45px;
    height: 45px;
    background: #eef3ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info h4 {
    margin-bottom: 5px;
}

.info p {
    color: #5f6f8f;
    line-height: 1.6;
}

/* Right Panel */
.side {
    /* background: linear-gradient(135deg, #0d47a1, #1565c0); */
    background: linear-gradient(135deg, #0051c3, #003366);
    ;
    border-radius: 16px;
    padding: 20px;
    color: #fff;
}

.side-box {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.side-box:last-child {
    margin-bottom: 0;
}

.side-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side h3 {
    color: #fff;
    font-size: 19px;
    font-weight: 600;
}

.side span {
    font-size: 13px;
    opacity: 0.8;
}

/* hero-second */
.hero-second {
    padding: 60px 0 20px;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #e8f4fd 100%);
    overflow: hidden;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 14px;
    color: #153b66;
    font-weight: bold;
}

.features {
    width: 71%;
    padding: 0px 0 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.feature-card {
    position: relative;
    display: flex;
    gap: 16px;
    border: 1px solid #003a7b;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: #fff;
    transition: all .35s ease;
}

/* BOTTOM BORDER */

.feature-card::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(135deg, #0051c3, #003366);
    transition: .45s;
}

/* LEFT BORDER */

.feature-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 3px;
    height: 0%;
    background: linear-gradient(135deg, #0051c3, #003366);
    transition: .45s;
}

.feature-card:hover::before {
    width: 100%;
}

.feature-card:hover::after {
    height: 100%;
}

/* RIGHT BORDER */

.feature-card span {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 3px;
    height: 0%;
    background: linear-gradient(135deg, #0051c3, #003366);
    transition: .45s;
}

.feature-card:hover span {
    height: 100%;
}

/* TOP BORDER */

.feature-card i {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(135deg, #0051c3, #003366);
    transition: .45s;
}

.feature-card:hover i {
    width: 100%;
}

/* HOVER CARD */

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* ICON */

.icon-box {
    min-width: 64px;
    height: 64px;
    border-radius: 14px;
    background: #e9f1ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: linear-gradient(135deg, #0051c3, #003366);
    transition: .35s;
}

/* ICON HOVER */

.feature-card:hover .icon-box {
    background: #153b66;
    color: #fff;
    transform: rotate(10deg) scale(1.1);
}

/* TEXT */

.feature-content h3 {
    margin: 0;
    font-size: 18px;
    color: #153b66;
    transition: .3s;
    font-weight: 600;
}

.feature-card:hover h3 {
    color: linear-gradient(135deg, #0051c3, #003366);
}

.feature-content p {
    margin-top: 6px;
    font-size: 15px;
    color: #6a7b92;
    line-height: 1.6;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 35px;
}

.section-title .icon {
    width: 46px;
    height: 46px;
    background: #05368c;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: .3s;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.member-card {
    background: #fff;
    padding: 26px;
    border-radius: 16px;
    position: relative;
    transition: .35s;
    border: 1px solid #003a7b;
    overflow: hidden;
    min-height: 170px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1)
}

h3 {
    margin: 8px 0 8px;
    font-size: 18px;
    color: #0b3b6f;
    transition: .3s;
    font-weight: 600;
}

.role {
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0051c3, #003366) !important;
    display: inline-block;
    color: #fff !important;
    margin-bottom: 8px;
}

.chairman {
    background: linear-gradient(135deg, #0051c3, #003366);
    color: #b97a00;
}

.secretary {
    background: #e4efff;
    color: #1a5bd7;
}

.member {
    background: #eee;
    color: #555;
}

.expert {
    background: #e3f5ee;
    color: #0d8f6a;
}

/* BORDER ANIMATION */

.member-card::before,
.member-card::after {
    content: "";
    position: absolute;
    background: #05368c;
    transition: .35s;
}

.member-card::before {
    height: 2px;
    width: 0;
    top: 0;
    left: 0;
}

.member-card::after {
    width: 2px;
    height: 0;
    top: 0;
    right: 0;
}

.member-card span::before,
.member-card span::after {
    content: "";
    position: absolute;
    background: #05368c;
    transition: .35s;
}

.member-card span::before {
    height: 2px;
    width: 0;
    bottom: 0;
    right: 0;
}

.member-card span::after {
    width: 2px;
    height: 0;
    bottom: 0;
    left: 0;
}

/* hover */

.member-card:hover::before {
    width: 100%;
}

.member-card:hover::after {
    height: 100%;
}

.member-card:hover span::before {
    width: 100%;
}

.member-card:hover span::after {
    height: 100%;
}

.member-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.member-card:hover h3 {
    color: #05368c;
}

.member-card::before {
    box-shadow: 0 0 10px #05368c;
}

.member-section {
    padding: 30px 0px;
}

.member-section .container {
    position: relative;
    background: linear-gradient(-135deg, #f8fafc 0%, #ffffff 50%, #e8f4fd 100%);
    overflow: hidden;
    border-radius: 10px;
    padding: 20px;
}

/* GRID */
.function-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 25px;
    padding: 0px 19px 20px;
}

/* CARD */
.function-card {
    position: relative;
    background: #f8fafc;
    padding: 24px 24px 10px;
    border-radius: 14px;
    border: 1px solid rgba(0, 81, 195, 0.06);
    transition: .35s;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 16px;
}

/* BORDER ANIMATION */

.function-card::before,
.function-card::after {
    content: "";
    position: absolute;
    background: #0b4ea2;
    transition: .4s;
}

.function-card::before {
    height: 3px;
    width: 0;
    top: 0;
    left: 0;
}

.function-card::after {
    width: 3px;
    height: 0;
    top: 0;
    left: 0;
}

.function-card:hover::before {
    width: 100%;
}

.function-card:hover::after {
    height: 100%;
}

.border-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: #0b4ea2;
    transition: .4s;
}

.border-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: #0b4ea2;
    transition: .4s;
}

.function-card:hover .border-right {
    height: 100%;
}

.function-card:hover .border-bottom {
    width: 100%;
}

/* NUMBER */
.number {
    min-width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #0051c3, #003366);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* CONTENT */
.function-content h3 {
    margin: 0;
    font-size: 17px;
    color: #123a6f;
}

.function-content p {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.6;
    color: #65758c;
}

/* HOVER */
.function-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.fuctiion-title {
    background: linear-gradient(135deg, rgba(0, 81, 195, 0.08), rgba(0, 51, 102, 0.04));
    margin-bottom: 0px;
    padding-left: 25px;
    padding-top: 20px;
    padding-bottom: 10px;
    border-radius: 15px 15px 0px 0px;
}

section.function-section .container {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0px;
}

/* PROCESS ROW */
.process-row {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    flex-wrap: wrap;
}

/* CARD */
.word-pda-card {
    position: relative;
    width: 275px;
    background: #f8fafc;
    padding: 28px 16px;
    border-radius: 14px;
    border: 1px solid rgba(0, 81, 195, 0.06);
    transition: .35s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* BORDER ANIMATION */

.word-pda-card::before,
.word-pda-card::after {
    content: "";
    position: absolute;
    background: #0b4ea2;
    transition: .4s;
}

.word-pda-card::before {
    height: 3px;
    width: 0;
    top: 0;
    left: 0;
}

.word-pda-card::after {
    width: 3px;
    height: 0;
    top: 0;
    left: 0;
}

.word-pda-card:hover::before {
    width: 100%;
}

.word-pda-card:hover::after {
    height: 100%;
}

/* STEP NUMBER */

.step-number {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 42px;
    height: 42px;
    background: #0b4ea2;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* ICON */

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #e6edf8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #0b4ea2;
    margin-bottom: 18px;
    transition: .35s;
}

/* ICON HOVER CHANGE */

.word-pda-card:hover .icon-box {
    background: #0b4ea2;
    color: #fff;
}

/* TEXT */

.word-pda-card h3 {
    font-size: 16px;
    color: #0b4ea2;
    margin-bottom: 10px;
    font-weight: 600;
}

.word-pda-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

.word-pda-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* ARROW */

.arrows {
    font-size: 28px;
    color: #0b4ea2;
    font-weight: 600;
}

.section-title-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 50px;
    justify-content: center;
}

.title-icon {
    width: 42px;
    height: 42px;
    background: #0b4ea2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(11, 78, 162, 0.25);
}

.footer {
    background: #05368c;
    color: #ffffff;
    padding: 35px 0 25px;
    font-size: 14px;
}

.footer-container {
    max-width: 1250px;
    margin: auto;
    padding: 0 20px;
}

/* Disclaimer */
.footer-disclaimer {
    text-align: center;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.9;
    font-size: 17px;
}

/* Bottom layout */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #fff;
    padding: 20px 0px 10px 0px;
}

/* Quick Links */
.footer-links {
    display: flex;
    gap: 60px;
    width: 30%;
    /* Ã°Å¸â€Â¥ kam width */
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
}

.footer-links a:hover {
    color: #ffa500;
}

/* Rating Center */
.footer-rating {
    width: 20%;
    /* Ã°Å¸â€Â¥ center tight */
    text-align: center;
}

.footer-rating .stars {
    color: gold;
    font-size: 32px;
    margin-bottom: 5px;
}

.footer-rating span {
    font-size: 17px;
}

/* Badges Right */
.footer-badges {
    width: 40%;
    /* Ã°Å¸â€Â¥ sabse zyada width */
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.footer-badges img {
    height: 47px;
}

.footer-img img {
    max-width: 68px;
}

.footer-services {
    background: #f3f3f3;
    padding: 6px 40px 0px;
    display: flex;
    justify-content: center;
    gap: 120px;
    border-radius: 7px;
}

.footer-services h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.footer-services ul {
    list-style: none;
    padding: 0;
}

.footer-services li {
    margin-top: 6px;
}

.footer-services a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.footer-services .icon {
    margin-right: 6px;
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

h2 {
    color: #153b66;
    font-weight: bold;
}

.about-page {
    background: #f4f7fb;
    padding-bottom: 60px;
}

/* hero title */


.about-hero {
    width: 100%;
    background: #e5ecf6;
    padding: 10px 20px;
    text-align: center;
    color: white;
}

.about-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.about-hero p {
    opacity: 0.9;
}

/* cards */

.about-card {
    background: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #0051c3;
}

/* gradient card */

.gradient-card {
    background: linear-gradient(135deg,
            rgba(0, 81, 195, 0.08),
            rgba(0, 51, 102, 0.04));
}

/* headings */

.about-card h2 {
    color: #0a2c70;
    margin-bottom: 15px;
}

/* text */

.about-card p {
    line-height: 1.7;
    margin-bottom: 12px;
    color: #333;
}

.about-card ul {
    padding-left: 20px;
}

.about-card li {
    margin-bottom: 8px;
}

/* note box */

.note-box {
    background: #fff;
    padding: 25px;
    border-left: 6px solid #0051c3;
    border-radius: 10px;
    font-size: 15px;
}

.about-card.new-card {
    border-radius: 0px;
    border: none;
}


.login-daman-game {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.btn-login {
    background: #1f66b1;
    color: #fff;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.5s ease-in-out;
}

.btn-login:hover {
    color: #fff;
    transform: translateY(-5px);
}

.btn-register {
    background: #ffffff;
    color: #0d4c8f;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.5s ease-in-out;
}

.btn-register:hover {
    transform: translateY(-5px);
}

/* Divider Line */
.nav-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.5);
}

.author-img {
    text-align: center;
    background-color: #05368c;
    margin-top: 45px;
    border-radius: 10px 10px 0px 0px;
    padding: 20px 0px;
}


.author-img img {
    max-width: 200px;
    border-radius: 16px;
    padding: 11px;
    border: 3px solid #fff;
}

.center-cnct h1 {
    text-align: center;
    font-weight: bold;
    color: #fff;
    padding-top: 14px;
    margin: 0px;
}

.service-box {
    text-align: center;
}

.service-box h4 {
    font-size: 16px;
}

.service-box ul {
    list-style: none;
}

.service-box ul a {
    color: yellowgreen;
    text-decoration: none;
}