
:root {
    --primary-color: #ea836d;
    --primary-dark: #000;
    --primary-light: #1A3894;
    --secondary-color: #FFB800;
    --secondary-dark: #E8A600;
    --secondary-light: #FFCC33;
    --dark-blue: #071342;
    --darker-blue: #050E2F;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --dark-gray: #333333;
    --text-dark: #222222;
    --text-light: #777777;
    --success: #28a745;
    --danger: #dc3545;
    --border-radius: 4px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Merienda", cursive;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.site-branding a{
    font-weight: 900;
    font-size: 22px;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

[class*="col-"] {
    padding: 0 15px;
}

.col-md-6 {
    width: 50%;
}

.col-md-11 {
    width: 91.66%;
}

.col-lg-2 {
    width: 16.66%;
}

.col-lg-4 {
    width: 33.33%;
}

.col-lg-5 {
    width: 41.66%;
}

.col-lg-6 {
    width: 50%;
}

.col-lg-7 {
    width: 58.33%;
}

.col-lg-8 {
    width: 66.66%;
}

.col-lg-9 {
    width: 75%;
}

.col-xl-6 {
    width: 50%;
}

.offset-lg-1 {
    margin-left: 8.33%;
}
.text-center {
    text-align: center;
}

.text-lg-start {
    text-align: left;
}

.text-lg-end {
    text-align: right;
}

.text-end {
    text-align: right;
}

.self-center {
    align-self: center;
}

.content-center {
    justify-content: center;
}

.items-center {
    align-items: center;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.pb-2 {
    padding-bottom: 0.75rem !important;
}

.ml-2 {
    margin-left: 0.5rem;
}

.section-padding-top {
    padding: 115px 0;
}

.section-padding {
    padding: 115px 0 120px;
}
.stat-icon span{
    font-size: 50px;
}
.section-padding-bottom-extra {
    padding-bottom: 200px;
}
.light-theme {
    color: var(--white);
}

.dark-theme-1 {
    background-color: #183B4E;
    color: var(--white);
}

.dark-theme-2 {
    background-color: var(--primary-dark);
    color: var(--white);
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

p {
    margin-bottom: 15px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}
.primary-button {
    margin-right: 15px;
    display: inline-block;
    background-color: #254D70;
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.primary-button:hover {
    background-color: #2a41b5;
    color: white;
}

.primary-button-outline {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.primary-button-outline:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}
.animate-fade-in-2 {
    animation: fadeIn 0.5s ease-in-out 0.2s forwards;
    opacity: 0;
}

.animate-fade-in-4 {
    animation: fadeIn 0.5s ease-in-out 0.4s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.header-section {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
}

.main-navigation {
    padding: 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.site-branding img {
    max-height: 50px;
}

.menu-items {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-items li {
    margin: 0 15px;
}

.menu-items li a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

.menu-items li a:hover {
    color: var(--secondary-color);
}

.menu-items li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.menu-items li a:hover::after {
    width: 100%;
}

.right-menu-area {
    display: flex;
    align-items: center;
}

.account-link {
    margin-right: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.account-link:hover {
    color: var(--secondary-color);
}

.burger-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.line-top, .line-bottom {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    position: absolute;
    transition: var(--transition);
}

.line-top {
    top: 0;
}

.line-bottom {
    bottom: 0;
}
.hero-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    padding: 50px 0;
    color: var(--white);
}

.hero-title {
    margin-bottom: 20px;
}

.button-wrapper {
    margin-top: 30px;
}

.feature-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.section-heading .heading-title {
    position: relative;
}

.stats-section {
    padding: 80px 0;
}

.stat-block {
    padding: 30px 20px;
    margin-bottom: 30px;
}

.stat-icon {
    margin-bottom: 20px;
}

.stat-icon img {
    height: 60px;
}

.stat-details h3 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.stat-details p {
    font-size: 16px;
    margin: 0;
    color: var(--white);
}

.about-blocks-section {
    padding: 80px 0;
}

.info-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    transition: var(--transition);
    padding: 30px;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.info-icon {
    text-align: center;
    margin-bottom: 20px;
}

.info-icon img {
    border-radius: 20px;
    height: 150px;
    width: auto;
}

.info-content {
    text-align: center;
}

.info-content h5 {
    margin-bottom: 15px;
}

.info-content h5 a {
    color: var(--text-dark);
    transition: var(--transition);
}

.info-content h5 a:hover {
    color: var(--primary-color);
}

.info-text {
    margin-bottom: 15px;
    color: var(--text-light);
}

.read-more-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
}

.read-more-link:hover {
    color: var(--secondary-color);
}
.cta-section {
    background: #000;
    padding: 0;
}

.cta-wrapper {
    padding: 60px;
}

.cta-wrapper .heading-title {
    color: var(--white);
    margin-bottom: 0;
}

.footer-section {
    padding: 80px 0 0;
}

.footer-logo {
    margin-bottom: 20px;
    max-height: 50px;
}

.widget-content {
    margin-bottom: 30px;
}

.legal-text {
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 15px;
}

.legal-text a {
    color: var(--secondary-color);
}

.legal-text a:hover {
    text-decoration: underline;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.partner-logos a {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    display: inline-block;
}

.partner-logos img {
    height: 40px;
}

.age-restriction {
    display: inline-block;
}

.age-icon {
    height: 40px;
}

.widget-title {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
}

.widget-title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.menu-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-widget ul li {
    margin-bottom: 15px;
}

.menu-widget ul li a {
    color: var(--medium-gray);
    transition: var(--transition);
}

.menu-widget ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    padding: 20px 0;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: var(--medium-gray);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.auth-modal {
    background-color: var(--white);
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    padding: 30px;
    position: relative;
}

#close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
}

#close-modal img {
    width: 16px;
    height: 16px;
}

.modal-tabs {
    display: flex;
    border-bottom: 1px solid var(--medium-gray);
    margin-bottom: 20px;
}

.modal-tab {
    flex: 1;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.modal-tab.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.auth-form input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-size: 16px;
}

.auth-form button {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.auth-form button:hover {
    background-color: var(--primary-light);
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
    width: 16px; 
    height: 16px; 
    margin-right: 8px; 
    vertical-align: middle;
}

.form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: var(--border-radius);
    text-align: center;
    font-size: 14px;
}

.form-message.error {
    background-color: rgba(220, 53, 69, 0.1);
    color: var(--danger);
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.form-message.success {
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--success);
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.icon-arrow-right {
    display: inline-block;
    width: 8px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}

@media screen and (max-width: 1199px) {
    .container {
        max-width: 992px;
    }
}

@media screen and (max-width: 991px) {
    .container {
        max-width: 768px;
    }
    
    h1 {
        font-size: 40px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    .col-lg-2, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9 {
        width: 100%;
    }
    
    .offset-lg-1 {
        margin-left: 0;
    }
    
    .text-lg-start {
        text-align: center;
    }
    
    .text-lg-end {
        text-align: center;
    }
    
    .cta-wrapper {
        padding: 40px;
    }
}

@media screen and (max-width: 767px) {
    .container {
        max-width: 100%;
    }
    
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .section-padding-top {
        padding-top: 80px;
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    .section-padding-bottom-extra {
        padding-bottom: 120px;
    }
    
    .col-md-6, .col-md-11 {
        width: 100%;
    }
    
    .nav-wrapper {
        height: 70px;
    }
    
    .site-branding img {
        max-height: 40px;
    }
    
    .menu-collapse {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 999;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .menu-collapse.active {
        max-height: 300px;
    }
    
    .menu-items {
        flex-direction: column;
        padding: 20px 0;
    }
    
    .menu-items li {
        margin: 0;
    }
    
    .menu-items li a {
        display: block;
        padding: 10px 20px;
    }
    
    .burger-button {
        display: block;
    }
    
    .right-menu-desktop {
        display: none;
    }
    
    .hero-section {
        padding: 80px 0;
    }
    
    .cta-section {
        margin-top: -70px;
    }
    
    .cta-wrapper {
        padding: 30px;
    }
    
    .partner-logos {
        justify-content: center;
    }
}
.section-heading{
    padding: 15px 0;
}
@media screen and (max-width: 575px) {
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .auth-modal {
        max-width: 90%;
    }
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 16px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-size: 15px;
    transition: var(--transition);
    background-color: var(--white);
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(13, 37, 100, 0.1);
}

.form-control::placeholder {
    color: #aaaaaa;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-form .checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-form .checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    margin-top: 3px;
    cursor: pointer;
    border: 1px solid var(--medium-gray);
    border-radius: 3px;
}

.contact-form .checkbox-group label {
    font-size: 14px;
    color: var(--text-light);
    cursor: pointer;
}

.contact-form .checkbox-group label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-form .checkbox-group label a:hover {
    color: var(--primary-light);
}

.contact-form .primary-button {
    width: auto;
    min-width: 180px;
    margin-right: 0;
    font-size: 16px;
    padding: 14px 30px;
    transition: all 0.3s ease;
}

.contact-form .primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.form-control.is-invalid {
    border-color: var(--danger);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23dc3545' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='8' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'%3E%3C/line%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 6px;
    font-size: 14px;
    color: var(--danger);
}

.form-control.is-invalid + .invalid-feedback {
    display: block;
}

.form-submitted {
    text-align: center;
    padding: 40px 20px;
}

.form-submitted .success-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: var(--success);
    border-radius: 50%;
    margin-bottom: 20px;
    position: relative;
}

.form-submitted .success-icon:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 15px;
    border-left: 3px solid white;
    border-bottom: 3px solid white;
    transform: rotate(-45deg);
    top: 20px;
    left: 14px;
}

.form-submitted h3 {
    color: var(--success);
    margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
    .form-control {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .contact-form .primary-button {
        width: 100%;
        min-width: 0;
    }
}

.info-card {
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-icon {
    margin-bottom: 20px;
}

.info-content h5 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.info-text {
    color: var(--text-light);
}