* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* background: #fff; */
    background-color: #fff;
    font-family: "Exo 2", sans-serif;
    color: #fff;
}

.container {
    max-width: 1250px;
}

/* ===== HEADER ===== */
.myheaders {
    background-color: hsl(40.65deg 95.38% 74.51%);
    padding: 4px;
    text-align: center;
    color: #000;
}

header.myheader {
    background-color: #080e48;
    top: 0;
    padding: 8px 0px;
    transition: box-shadow 0.3s ease;
}


.nav__data {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.main-logo img {
    padding-top: 8px;
    max-width: 61px;
}

/* ===== MENU ===== */
.nav__menu {
    position: fixed;
    top: 0;
    left: -300px;
    /* start offscreen left */
    width: 280px;
    height: 100vh;
    background: linear-gradient(90deg, #003f03 0%, #0c3d0e 90%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    padding-top: 70px;
    z-index: 999;
}

.show-menu {
    left: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

ul.menu-list {
    display: flex;
    flex-direction: column;
}

li.menu-link {
    list-style: none;
    padding: 12px 20px;
}

li.menu-link a {
    color: #fff;
    font-size: 17px;
}

/* ===== DROPDOWN ===== */
.nav__menu ul.menu-list li.menu-link>ul.sunmenu {
    background: linear-gradient(90deg, #003f03 0%, #0c3d0e 90%);
    border-radius: 0 0 10px 10px;
    opacity: 0;
    visibility: hidden;
    transform: rotateX(-90deg);
    transform-origin: top;
    transition: all 0.3s ease-in-out;
}

.nav__menu ul.menu-list li.menu-link:hover ul.sunmenu {
    opacity: 1;
    visibility: visible;
    transform: rotateX(0deg);
}

.sunmenu li a {
    color: #fff;
    display: block;
    padding: 8px 20px;
}

/* ===== TOGGLE ===== */
.nav__toggle {
    width: 36px;
    height: 36px;
    border: 1px solid #fff;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    display: none;
}

.nav__toggle .pizza,
.nav__toggle .close {
    position: absolute;
    font-size: 28px;
    color: #fff;
    transition: all 0.5s ease-in-out;
}

.close {
    opacity: 0;
    visibility: hidden;
}

.show-icon .close {
    opacity: 1;
    visibility: visible;
    transform: rotate(90deg);
}

.show-icon .pizza {
    opacity: 0;
    transform: rotate(360deg);
}

a.daman-download.btn-1 {
    background-color: red !important;
}

a.daman-login.btn-1,
a.daman-download.btn-1 {
    position: relative;
    display: inline-block;
    /* VERY IMPORTANT */
    overflow: hidden;
    border: 2px solid yellow;
    padding: 7px 22px;
    border-radius: 6px;
    font-size: 17px;
    color: #fff;
    background-color: #28a745;
    text-decoration: none;
    transition: color 0.3s ease;
    z-index: 1;
}

a.daman-download.btn-1:hover {
    box-shadow: 0 0 15px yellow;
}

a.daman-login.btn-1:hover {
    box-shadow: 0 0 15px yellow;
}

/* LEFT + RIGHT layers */
a.daman-login.btn-1::before,
a.daman-login.btn-1::after,
a.daman-download.btn-1::before,
a.daman-download.btn-1::after {
    content: "";
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: #080e48;
    transition: 0.4s ease;
    z-index: 0;
}

/* left side */
a.daman-login.btn-1::before,
a.daman-download.btn-1::before {
    left: -50%;
}

/* right side */
a.daman-login.btn-1::after,
a.daman-download.btn-1::after {
    right: -50%;
}

/* hover animation */
a.daman-login.btn-1:hover::before,
a.daman-download.btn-1:hover::before {
    left: 0;
}

a.daman-login.btn-1:hover::after,
a.daman-download.btn-1:hover::after {
    right: 0;
}

/* text always on top */
a.daman-login.btn-1 span,
a.daman-download.btn-1 span {
    position: relative;
    z-index: 2;
}

.daman-game.mob-show {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
}

.nav-search {
    display: flex;
    align-items: center;
    background: rgb(49 95 192);
    border: 1px solid rgb(212 190 190);
    border-radius: 30px;
    padding: 4px 8px;
    backdrop-filter: blur(6px);
    max-width: 260px;

    position: relative;
    overflow: hidden;
}

/* default background */
.nav-search::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(49 95 192);
    z-index: 0;
}

/* hover background (right → left) */
.nav-search::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2f80ff, #1a4fd8);
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 1;
}

.nav-search:hover::before {
    transform: translateX(0);
}

/* content always on top */
.nav-search input,
.nav-search button {
    position: relative;
    z-index: 2;
}

/* input */
.nav-search input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    padding: 6px 10px;
    width: 190px;
    font-size: 14px;
}

.nav-search input::placeholder {
    color: #e0e0e0;
}

/* button */
.nav-search button {
    background: linear-gradient(135deg, #1aff1a, #00b300);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-search button i {
    color: #003300;
    font-size: 16px;
}

/* mobile */
@media (max-width: 768px) {
    .nav-search {
        width: 100%;
        margin: 10px 0;
    }

    .nav-search input {
        width: 100%;
    }
}

/* 
        /* ================= HERO DESKTOP ================= */
.hero {
    min-height: 76vh;
    height: 410px;
    background:
        linear-gradient(rgba(5, 11, 44, 0.6), rgba(5, 11, 44, 0.6)),
        url("/assets/images/tiranga game banner image.webp");
    background-size: cover;
    background-position: center;
    align-items: center;
    padding: 0 8%;
}

.hero-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
}

/* TEXT */
.hero-content h1 {
    font-size: 45px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 18px;
    text-shadow: 0 2px 1px rgb(255 252 252 / 85%);
}

.hero-content h1 span {
    color: #ffcc00;
}

.hero-content p {
    margin: 0px 0px 5px;
    font-size: 17px;
    color: #f0f0f0;
    max-width: 540px;
    text-shadow: 0 2px 1px rgba(0, 0, 0, 0.6);
}

/* FEATURES */
.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px 40px;
}

.features li {
    list-style: none;
    font-size: 15px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.features li::before {
    content: "✅";
    color: #00ff99;
    margin-right: 8px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 6px;
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 1;
}

/* Hover lift + shadow */
.btn:hover {
    box-shadow: 0 2px 2px yellow;
    /* box-shadow: 0 12px 30px rgba(0, 0, 0, 0.65); */
}

/* Keep your existing gradients */
.btn-login {
    background: linear-gradient(180deg, #ff5252, #c62828);
}

.btn-download {
    background: linear-gradient(180deg, #4caf50, #1b5e20);
}

/* LEFT-RIGHT hover overlay */
.btn::before,
.btn::after {
    content: "";
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: #080e48;
    /* hover background */
    transition: all 0.45s ease;
    z-index: 0;
}

/* Left side starts hidden */
.btn::before {
    left: -50%;
}

/* Right side starts hidden */
.btn::after {
    right: -50%;
}

/* Hover animation */
.btn:hover::before {
    left: 0;
}

.btn:hover::after {
    right: 0;
}

/* Text always on top */
.btn span {
    position: relative;
    z-index: 2;
}


/* RIGHT IMAGE DESKTOP */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-top: 0px;
}

.hero-image img {
    height: 85vh;
    max-height: 720px;
    width: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.7));
    z-index: 1;
}

/* ===============================
   POPULAR GAMES SECTION
================================ */
.popular-games {
    background: linear-gradient(180deg, #e8ecff, #dfe6ff);
    padding: 40px 20px 30px;
    position: relative;
}

/* ===============================
   HEADING â€“ LEFT RIGHT LINE + ARROWS
================================ */
.section-title {
    font-size: 27px;
    font-weight: 700;
    color: #1b2b6b;
    margin-bottom: 30px;

    display: flex;
    align-items: center;
    justify-content: center;
    /* gap: 12px; */
}

/* left & right lines */
.section-title::before,
.section-title::after {
    content: "";
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, #1b2b6b);
}

.section-title::after {
    background: linear-gradient(to left, transparent, #1b2b6b);
}

/* arrows near heading text */
.section-title span {
    position: relative;
    padding: 0 0px;
    white-space: nowrap;
}

.section-title span::before {
    content: "▶";
    margin-right: 10px;
    color: #1b2b6b;
}

.section-title span::after {
    content: "◀";
    margin-left: 10px;
    color: #1b2b6b;
}

/* ===============================
   SWIPER FIX (IMPORTANT)
================================ */
.swiper {
    position: relative;
    padding-bottom: 60px;
    /* dots ke liye space */
}

/* ===============================
   GAME CARD
================================ */
.game-card {
    background: linear-gradient(180deg, #1e2b5c, #0c1638);
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    color: #fff;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ===============================
   IMAGE â€“ CLEAN & SHARP
================================ */
.game-card img {
    width: 100%;
    /* object-fit: contain; */
    margin-bottom: 6px;
}

/* ===============================
   TEXT
================================ */
.game-card span {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

/* ===============================
   SWIPER ARROWS
================================ */
.swiper-button-next,
.swiper-button-prev {
    color: #1b2b6b;
    font-weight: bold;
}

/* ===============================
   DOTS â€“ FIXED & VISIBLE
================================ */
.swiper-pagination {
    /* position: absolute !important; */
    /* bottom: -40px !important; */
    /* image ke niche */
    left: 0;
    right: 0;
    text-align: center;
    background: transparent;
}

.swiper-pagination-bullet {
    background: #0c1638;
    opacity: 0.4;
}

.swiper-pagination-bullet-active {
    background: #0c1638;
    opacity: 1;
}

/* -----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;
}

.about-section {
    background-color: #080e48;
    color: #ffffff;
    padding: 30px 30px;
    position: relative;
    overflow: hidden;
}

.about-section h2 {
    color: #fff;
}

.about-section .section-title::before {
    content: "";
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, #ffffff);
}

.about-section .section-title::after {
    background: linear-gradient(to left, transparent, #ffffff);
}

.about-section .section-title span::before {
    content: "▶";
    margin-right: 10px;
    color: #fff;
}

.about-section .section-title span::after {
    content: "◀";
    margin-left: 10px;
    color: #fff;
}

.my-swipper .swiper {
    width: 100%;
    height: 100%;
}

.my-swipper .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #080e48;
    padding: 17px 0px;
    border-radius: 25px;
}

.bolg-image {
    display: flex;
    justify-content: center;
    background-color: #080e48;
    padding: 20px 0px;
    border-radius: 20px;
    margin: 13px 0px;
    border: 1px solid #dad6f6;
}

.bolg-image img {
    max-width: 340px;
}

.bolg-image.for-dark-bg-clr {
    background-color: #dad6f6;
}

.my-swipper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screenshort-game {
    padding-top: 28px;
    background: linear-gradient(to bottom,
            #dad6f6 0%,
            #dad6f6 50%,
            #c6c7ec 50%,
            #c6c7ec 100%);
}

/* GRID */
.games-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* CARD */
.new-game-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* IMAGE */
.game-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* COMMON OVERLAY */
.new-game-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 95px;
    z-index: 1;
}

/* ===============================
   DIFFERENT GRADIENT PER CARD
================================ */
.new-game-card:nth-child(1)::after {
    background-color: rgba(128, 0, 180, 0.85);
}

.new-game-card:nth-child(2)::after {
    background-color: rgba(255, 80, 0, 0.85);
    opacity: 0.6;
}

.new-game-card:nth-child(3)::after {
    background-color: rgb(42 50 113 / 85%);
    opacity: 0.7;
}

.new-game-card:nth-child(4)::after {
    background-color: #080e48;
    opacity: 0.8;
}

.new-game-card:nth-child(5)::after {
    background-color: rgb(45 102 183);
    opacity: 0.8;
}

.new-game-card:nth-child(6)::after {
    background-color: rgba(230, 0, 35, 0.85);
    opacity: 0.7;
}

.for-top {
    margin-top: 10px;
}

/* TEXT OVER IMAGE */
.game-info {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    padding: 0 16px;
    color: #fff;
    z-index: 2;
}

.game-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.game-info p {
    font-size: 14px;
    line-height: 1.4;
}

.new-game-card h3,
.new-game-card p {
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
}

/* HOVER */
.new-game-card {
    transition: .35s ease;
}

.new-game-card:hover {
    transform: translateY(-6px);
}

/* RESPONSIVE */
@media(max-width:991px) {
    .games-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:520px) {
    .games-wrapper {
        grid-template-columns: 1fr;
    }

    .game-img img {
        height: 190px;
    }
}

.steps {
    display: flex;
    gap: 22px;
    padding: 0px;
}

.step-box {
    flex: 1;
    background: linear-gradient(135deg, #1f3c88, #2a4db7);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    gap: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease-out;
}

.step-box:hover {
    transform: translateY(-8px);
}

.step-box img {
    width: 75px;
    height: 75px;
    flex-shrink: 0;
}

.step-text .step-heading {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.step-text p {
    font-size: 13px;
    color: #fff;
    line-height: 1.5;
}

@media(max-width:900px) {
    .steps {
        flex-direction: column;
    }
}

/* ---------5SECTION------- */
.esy-steps-section {
    padding: 40px 0px;
    background: linear-gradient(to right,
            #c6c7ec 0%,
            #c6c7ec 50%,
            #dad6f6 50%,
            #dad6f6 100%);
}

.trust-bar {
    background: linear-gradient(180deg, #f1f4ff, #e1e7ff);
    border-radius: 18px;
    padding: 18px 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

.trust-row {
    display: flex;
    gap: 22px;
    justify-content: space-between;
    margin-bottom: 16px;
}

.trust-row:last-child {
    margin-bottom: 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
    background: #dad6f6;
    /* card background */
    padding: 12px 14px;
    /* card padding */
    border-radius: 12px;
    /* card radius */
    transition: all 0.35s ease;
}

.trust-item:hover {
    background-color: hsl(40.65deg 95.38% 74.51%);
}

.trust-item:hover {
    transform: translateY(-4px);
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .18);
}

.trust-item img {
    width: 34px;
    height: auto;
}

.trust-item span {
    font-size: 19px;
    font-weight: 600;
    color: #1f2a44;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-container {
    max-width: 1320px;
}

.about-us {
    padding: 0px;
}

.review-section {
    padding: 30px 0px;
    background: linear-gradient(to left,
            #c6c7ec 0%,
            #c6c7ec 50%,
            #dad6f6 50%,
            #dad6f6 100%);
}

.tirnga-review-card {
    background: linear-gradient(135deg, #1f3c88, #2a4db7);
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    padding: 25px 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
    gap: 10px;
}

.tirnga-review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.18);
}

.tirnga-review-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tirnga-review-avatar img {
    width: 100%;
    height: 58px;
    border-radius: 10px;
}

.tirnga-review-avatar {
    width: 74px;
    height: 58px;
    border-radius: 50%;
    flex-shrink: 0;
}

.tirnga-review-game {
    font-weight: bold;
    font-size: 1.2rem;
    color: #f9b812;
    text-shadow: 0px 0px #f51818;
}

.tirnga-review-comment {
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;
}

.name-heading {
    margin-top: 10px;
    color: #f9b812;
    font-weight: 600;
    font-size: 18px;
    text-shadow: 0px 0px #f51818;
}

.overall-comment {
    background: #fc3f34;
    color: #fff;
    border-radius: 15px;
    padding: 11px;
    margin-top: 40px;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.subtitle {
    text-align: center;
    opacity: .9;
    margin-top: -14px;
}

/* ===== d-buttons ===== */
.d-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 0px 0 22px;
    flex-wrap: wrap;
}

.d-btn {
    padding: 12px 26px;
    border-radius: 6px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.d-btn.red {
    background: #d62828;
}

.d-btn.green {
    background: #2fa84f;
}

/* ===== Main Box ===== */
.why-tiranga {
    padding: 30px 0px;
    background: #eeeeee
}

.box {
    /* max-width: 1200px; */
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 20px;
    background: linear-gradient(to right, #7d80ee, transparent);
    border-radius: 14px;
    padding: 18px;
    backdrop-filter: blur(10px);
}

/* ===== Table ===== */
.table-wrap {
    background: rgba(255, 255, 255, .15);
    border-radius: 12px;
    overflow: hidden;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

td.label {
    width: 42%;
    background: linear-gradient(180deg, rgba(40, 70, 180, .95), rgba(30, 55, 150, .95));
    padding: 11px 14px;
    font-weight: 600;
    color: #fff;
    position: relative;
}

td.label::before {
    content: "";
    position: absolute;
    left: 8px;
    color: #cfd8ff;
}

td.value {
    background: linear-gradient(180deg, rgba(255, 255, 255, .55), rgba(220, 230, 255, .45));
    padding: 11px 14px 11px 24px;
    color: #1a1f4d;
    font-weight: 600;
}

tr:not(:last-child) td {
    border-bottom: 1px solid rgba(255, 255, 255, .35);
}

/* ===== Right Side ===== */
.right {
    text-align: center;
}

.right img {
    width: 100%;
    margin-top: 100px;
}

.info {
    margin-top: 12px;
    background: rgba(255, 255, 255, .35);
    color: #1a1f4d;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    text-align: left;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    font-size: 16px;
}

.compare-table th {
    padding: 16px 10px;
    background: linear-gradient(180deg, #263fbf, #1a2e8f);
    color: #fff;
    font-weight: 700;
}

.compare-table td:first-child {
    text-align: center;
    padding-left: 18px;
    color: #000;
    background-color: #c6c7ec;
}

.compare-table td {
    padding: 14px 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .55), rgba(220, 230, 255, .45));
    color: #1a1f4d;
    font-weight: 600;
}

.compare-table td:first-child {
    text-align: center;
    padding-left: 18px;
    color: #000;
    background-color: #c6c7ec;
}

.compare-table tr:not(:last-child) td {
    border-bottom: 1px solid rgba(255, 255, 255, .35);
}

/* ===== Yes / No Styling ===== */
.yes {
    color: #1e8f3f;
    font-weight: 800;
}

.no {
    color: #c92a2a;
    font-weight: 800;
}

.payment-section .swiper-wrapper .swiper-slide img {
    border-radius: 10px;
}

.faq-section {
    padding: 15px 0px;
    background-color: #fff;
}

.faq {
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #1f3c88, #2a4db7);
    transition: all 0.3s ease;
    /* background: linear-gradient(135deg, rgba(40, 70, 160, 0.35), rgba(20, 30, 80, 0.35)); */
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

/* IMPORTANT */
.faq * {
    pointer-events: none;
    transition: all 0.5s ease-in-out;
}

.faq:hover {
    background-color: #080e48;
}

.faq-header {
    pointer-events: auto;
    color: #fff;
    padding: 15px 20px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    /* background: linear-gradient(135deg, #1f3c88, #2a4db7); */
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.faq-header:hover {
    background-color: #080e48;
}

.faq-header h3 {
    margin: 0;
    font-size: 1.05em;
    font-weight: 600;
    color: #fff;
}

.faq-header::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 22px;
    transition: transform 0.3s ease;
}

.faq.active .faq-header::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    color: #000;
    /* as you asked */
    line-height: 1.6;
    pointer-events: auto;
}

.faq.active .faq-content {
    max-height: 350px;
    padding: 15px 20px 20px;
}

.blogs-row {
    background-color: #c6c7ec;
    padding: 18px 18px 15px 18px;
    border-radius: 10px;
    transition: all 0.4s ease-in-out;
}

.blogs-row:hover {
    transform: translateY(-5px);
    box-shadow: 0px 0px 2px yellow;
    background-color: hsl(40.65deg 95.38% 74.51%);
}

.daman-game.mob-show.for-bg-clr.download a {
    background-color: #294cb4 !important;
}

.daman-game.mob-show.for-bg-clr {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
}

.blogs-row img {
    width: 100%;
    border-radius: 10px;
}

.blog-card {
    background: #ffffff;
    border: 2px solid #e2e6f0;
    padding: 18px 12px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    color: #1f3c88;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.blog-card:hover {
    background: linear-gradient(135deg, #1f3c88, #2a4db7);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Button */
.blogs-btn {
    text-align: center;
    margin-top: 40px;
}

.read-more-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: hsl(48deg 100% 50%);
    color: #000;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0px 2px 2px #fff;
}

.read-more-btn:hover {
    background: linear-gradient(135deg, #080e48, #1f3c88);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    color: #fff;
}

.footerbar {
    background-color: #fff;
    padding: 7px;
    text-align: center;
    color: #000;
}

.blog-section {
    background: linear-gradient(135deg, #1f3c88, #2a4db7);
    padding: 30px 0px;
}

.trust-item span::first-letter {
    font-size: 32px;
    /* ICON size */
    margin-right: 8px;
    vertical-align: middle;
}

p,
ul {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 16px;
}

ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
}

/* Section style for light bg */
.section-light {
    background-color: #dad6f6;
    color: #111;
    padding: 30px 20px;
}

/* Section style for dark bg */
.section-dark {
    background-color: #080e48;
    color: #e6e9ff;
    padding: 30px 20px;
}

a {
    color: yellow;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    color: #fff;
}

.magn-top {
    border-top: 1px solid #fff;
}

.section-ankit {
    background: linear-gradient(to left,
            #c6c7ec 0%,
            #c6c7ec 50%,
            #dad6f6 50%,
            #dad6f6 100%);
    padding: 30px;
    color: #000;
}

.for-center-author {
    text-align: center;
}

section.section-dark.for-center-author img {
    max-width: 184px;
    padding: 10px;
    border-radius: 10px;
    border: 7px solid #c6c7ec;
    margin: 12px 0px;
}

section.bigger-font {
    background-color: #315fc0;
    padding: 4px 0px !important;
}

section.bigger-font p {
    margin: 0px;
    font-size: 23px;
}

.blogs-row.new-blog {
    margin-bottom: 26px;
}

.result-found {
    background-color: #fff;
    height: 500px;
    padding: 20px;
    border-top: 7px solid #315fc0;
    border-left: 7px solid #315fc0;
}

/* Swiper Prev Next Yellow Buttons */
.swiper-button-next,
.swiper-button-prev {
    width: 32px;
    /* button size */
    height: 32px;
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    border-radius: 10%;
    box-shadow: 0 6px 15px rgba(255, 153, 0, 0.4);
    transition: all 0.3s ease;
}

/* Arrow color */
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

/* Hover effect */
.swiper-button-next:hover,
.swiper-button-prev:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #ff9900, #ffcc00);
}

/* Disabled state */
.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Mobile size */
@media (max-width: 768px) {

    .swiper-button-next,
    .swiper-button-prev {
        width: 38px;
        height: 38px;
    }
}

a.daman-download.btn-1.other-color.downloads-new {
    background-color: hsl(48deg 100% 50%) !important;
    color: #000;
}

a.daman-download.btn-1.other-color.downloads-new:hover {
    color: #fff !important;
}

.footer {
    background: #0b1440;
    color: #ffffff;
    padding: 35px 0 25px;
    font-size: 14px;
}

.footer-container {
    max-width: 1250px;
    margin: auto;
    padding: 0 20px;
}

/* Disclaimer */
.footer-disclaimer {
    text-align: justify;
    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;
    border-bottom: 1px solid #fff;
}

/* 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;
}

.hero-d-buttons {
    margin-top: -14px;
}

.footer-badges img {
    height: 47px;
}

.footer-hea-text {
    font-size: 25px;
    color: #080e48;
}

.hero-bg-alt {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

section.about-section.blog-section h1 {
    color: #fff;
}

.contact-container {
    max-width: 700px;
    margin: auto;
}


.contact-form {
    background: #eef;
    padding: 25px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.contact-form textarea {
    resize: none;
}

.file-label {
    display: inline-block;
    background: #fff;
    padding: 10px 14px;
    border: 1px dashed #aaa;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.file-label input {
    display: none;
}

.submit-btn {
    background: #1a1f71;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #0f1455;
}