

:root {
    --body: #ffffff;
    --color: #002FB0;
    --bg: #002FB0;
    --bg2: #0F1933;
    --bg-body: #f9f9f9;
    --bg-white: #deeafd;
    --bg-dark: rgba(15, 25, 51, 0.50);
    --heading: #ffffff;
    --text-muted: #a8b0b5;
    --border: #dbdbdb;
}

/* 1.1 Basic Reset */

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden !important;
    color: var(--body);
    background-color: #000616;
}

/* 1.2 Custom Reset */

a {
    color: var(--heading);
    text-decoration: none;
    transition: color .3s ease-in-out;
    -moz-transition: color .3s ease-in-out;
    -ms-transition: color .3s ease-in-out;
    -o-transition: color .3s ease-in-out;
    -webkit-transition: color .3s ease-in-out;
}

a:hover,
a:focus {
    color: var(--color);
    text-decoration: none;
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.375;
    font-weight: 500;
    color: var(--heading);
}

h1 {
    font-size: 3.25rem;
    font-weight: 600;
    line-height: 1.25;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.875rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted) !important;
}

.btn {
    background-color: var(--color);
    font-weight: 500;
    padding: 12px 26px;
    border: none;
    color: white;
    border-radius: 25px;
    transition: all .15s linear;
    -webkit-transition: all .15s linear;
    -moz-transition: all .15s linear;
    -ms-transition: all .15s linear;
    -o-transition: all .15s linear;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.btn.btn-primary {
    background-color: var(--color);
}

.btn.btn-secondary {
    background-color: #6c757d;
}

.btn.btn-success {
    background-color: #4caf4f;
}

.btn.btn-danger {
    background-color: #e73f3b;
}

.btn.btn-warning {
    background-color: #fc930a;
}

.btn.btn-info {
    background-color: #d9dee4;
}

.btn.btn-dark {
    background-color: #28282a;
}

.btn.btn-light {
    background-color: #e6e6e6;
    color: var(--body);
}

.btn.btn-outline-primary {
    border: 1px solid var(--color);
    background-color: transparent;
    color: var(--body);
}

.btn.btn-outline-secondary {
    border: 1px solid #6c757d;
    background-color: transparent;
    color: var(--body);
}

.btn.btn-outline-success {
    border: 1px solid #4caf4f;
    background-color: transparent;
    color: var(--body);
}

.btn.btn-outline-danger {
    border: 1px solid #e73f3b;
    background-color: transparent;
    color: var(--body);
}

.btn.btn-outline-warning {
    border: 1px solid #fc930a;
    background-color: transparent;
    color: var(--body);
}

.btn.btn-outline-info {
    border: 1px solid #d9dee4;
    background-color: transparent;
    color: var(--body);
}

.btn.btn-outline-light {
    border: 1px solid #e6e6e6;
    background-color: transparent;
    color: var(--body);
}

.btn.btn-outline-dark {
    border: 1px solid #28282a;
    background-color: transparent;
    color: var(--body);
}

.btn.btn-outline-primary:hover {
    background-color: var(--color);
}

.btn.btn-outline-secondary:hover {
    background-color: #6c757d;
}

.btn.btn-outline-success:hover {
    background-color: #4caf4f;
}

.btn.btn-outline-danger:hover {
    background-color: #e73f3b;
}

.btn.btn-outline-warning:hover {
    background-color: #fc930a;
}

.btn.btn-outline-info:hover {
    background-color: #d9dee4;
}

.btn.btn-outline-dark:hover {
    background-color: #28282a;
}

.btn.btn-outline-light:hover {
    background-color: #e6e6e6;
}

.btn.btn-sm {
    padding: 8px 14px;
    font-size: 12px;
}

.btn.btn-lg {
    padding: 10px 26px;
}

.btn:hover,
.btn:focus {
    background-color: var(--bg2);
    color: white;
    box-shadow: 10px 10px 0 0 inherit;
}

img {
    height: auto;
    width: 100%;
}

ul {
    padding: 0;
    margin: 0;
}

ul>li {
    list-style: none;
    line-height: 1.6;
}

.bg-white {
    background-color: var(--bg-white);
}

.bg-dark {
    background-color: var(--bg-dark) !important;
}

.bg-color {
    background-color: var(--bg) !important;
}

.home-wrapper {
    padding: 120px 0;
    position: relative;
}

.home-wrapper-full {
    height: 100%;
    background-size: cover;
    background-position: center center;
    position: relative;
}

.bg-overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bg-image {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.home-center {
    position: relative;
    display: table;
    width: 100%;
    height: 100%;
}

.home-center-desc {
    display: table-cell;
    vertical-align: middle;
}

.opa {
    position: relative;
    z-index: 1;
}

.justify-vertical {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.no-gutter>.col,
.no-gutter>[class*="col-"] {
    padding-right: 0;
    padding-left: 0;
    margin-left: 0;
    margin-right: 0;
}

.color {
    color: var(--color);
}

.full-vh-75 {
    height: 75vh;
}

@media only screen and (max-width: 767.98px) {
    .section-title p {
        width: 100%;
    }
}

@media only screen and (min-width: 997.98px) {
    .section-title p {
        width: 50%;
    }
}

/* Some Margin - Padding Custom */

/*  margin Top */

.mt-60 {
    margin-top: 60px !important;
}

.mt-80 {
    margin-top: 80px !important;
}

.mt-100 {
    margin-top: 100px !important;
}

.mt-110 {
    margin-top: 110px !important;
}

.mt-120 {
    margin-top: 120px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.mb-110 {
    margin-bottom: 110px !important;
}

.mb-120 {
    margin-bottom: 120px !important;
}

/*  padding  */

.pt-60 {
    padding-top: 60px !important;
}

.pt-80 {
    padding-top: 80px !important;
}

.pt-100 {
    padding-top: 100px !important;
}

.pt-110 {
    padding-top: 110px !important;
}

.pt-120 {
    padding-top: 120px !important;
}

.pb-60 {
    padding-bottom: 60px !important;
}

.pb-80 {
    padding-bottom: 80px !important;
}

.pb-100 {
    padding-bottom: 100px !important;
}

.pb-110 {
    padding-bottom: 110px !important;
}

.pb-120 {
    padding-bottom: 120px !important;
}

/* 1.0 Reset end */

/* 2.0 Header */

/* 2.1 Navbar */
.navbar {
    background-color: #000616;
}
.navbar .navbar-brand {
    font-size: 42px;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
}
.navbar-logo {
    width: 50px; /* Adjust as needed */
    height: auto;
    margin-right: 10px;
}
.navbar .nav-item .nav-link {
    color: white;
    margin-left: 5px;
    font-weight: 400;
}
.navbar .nav-link.active, 
.navbar .nav-item .nav-link:hover, 
.navbar .nav-item .nav-link:focus {
    color: #002FB0 !important;
}
.sticky {
    margin-top: 0;
    padding: 0 10px;
    background-color: #000616;
    transition: all .5s ease-in-out;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}
.sticky .navbar-brand {
    color: white;
}
@media only screen and (max-width: 997.98px) {
    .navbar {
        background-color: #000616;
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
        padding: 0 10px;
    }
    .navbar .nav-link.active, 
    .navbar .nav-item .nav-link:hover, 
    .navbar .nav-item .nav-link:focus {
        color: #fff !important;
        opacity: .5;
    }
}

/* 2.2 Home */

.hero {
    background-image: url("/other_assets/front.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-wrapper-full .bg-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.home-wrapper-full .carousel-item {
    padding: 120px 0;
    background-position: center center;
    background-size: cover;
    position: relative;
}

.carousel-control-next,
.carousel-control-prev {
    width: 5%;
    opacity: 1;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    margin-bottom: 2.5rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

/* 3 Section 1 */

.sec-1 .section-item1 {
    margin-bottom: 30px;
}

.sec-1 i {
    font-size: 42px;
    margin-bottom: 20px;
}

/* 4 About */

/* 5 Game */

.game .filtering {
    margin: 20px 0 40px;
}

.game .filtering span {
    padding: 10px 20px;
    margin: 10px;
    color: #ffffff;
    background-color: var(--bg);
    cursor: pointer;
    display: inline-block;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}

.game .filtering span:hover {
    background-color: var(--bg2);
    color: white;
    cursor: pointer;
}

.game .filtering span.active {
    background-color: var(--bg2);
    color: white;
    cursor: pointer;
}

.game .grid {
    position: relative;
    padding: 0;
    margin: 0;
}

.game .grid img {
    min-height: 300px;
    height: auto;
}

.game .grid .overlay {
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}

.game .grid .overlay:hover {
    opacity: 1;
}

.game .grid .overlay-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    text-align: center;
}

.game .grid .overlay-item i {
    font-size: 32px;
    margin-bottom: 20px;
}

/* 6 call */

.call-counter h2 {
    font-size: 72px;
}

@media only screen and (max-width: 767.98px) {
    .call-counter h2 {
        font-size: calc(100% + 8vw);
    }
}

/* 7 Faq */

.faq .accordion-item {
    margin-bottom: 20px;
}

.faq .accordion-button:not(.collapsed) {
    color: var(--bg);
}

.faq .accordion-item:hover {
    box-shadow: none;
}


/* 10 Winner Table */

.winner-item table {
    border-spacing: 10px 0;
}

.winner-item table thead .title {
    background-color: transparent;
    background: #002fb0;
}

.table>:not(caption)>*>* {
    padding: 1rem;
    background-color: rgba(15, 25, 51, 0.50);
    color: #ffffff;
    border: none;
}

.table tbody tr {
    margin-bottom: 20px;
}

.table-hover>tbody>tr {
    margin-bottom: 20px;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}

.table-hover>tbody>tr:hover>* {
    --bs-table-accent-bg: #000616;
    color: #ffffff;
    cursor: pointer;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}


/* Center the download button */
.download-btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px; /* Adjust as needed */
}

/* Stylish Download Button */
.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b); /* Attractive gradient */
    color: white;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Hover Effect */
.download-btn:hover {
    background: linear-gradient(135deg, #ff512f, #dd2476);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .download-btn {
        font-size: 16px;
        padding: 10px 20px;
    }
}
