@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
    --primary: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;

    --secondary: #0ea5e9;
    --secondary-dark: #0284c7;
    --secondary-light: #38bdf8;

    --accent: #06b6d4;
    --accent-dark: #0891b2;
    --accent-light: #22d3ee;

    --success: #10b981;
    --success-dark: #059669;
    --success-light: #34d399;

    --warning: #f59e0b;
    --warning-dark: #d97706;
    --warning-light: #fbbf24;

    --black: #0f172a;
    --dark: #1e293b;
    --light: #64748b;

    --white: #ffffff;
    --white-dark: #f1f5f9;
    --white-light: #f8fafc;
}

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

p {
    margin: 0;
}

a,
button,
input,
textarea {
    outline: 0;
    transition: all 0.5s ease;
}

a {
    text-decoration: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
        sans-serif;
    font-weight: 400;
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI',
        Roboto, sans-serif;
    font-weight: 600;
}

header,
.banner,
.section,
.h2,
.para,
.flexbox,
footer {
    width: 100%;
    float: left;
}

.logo {
    color: var(--primary-light);
    font-family: 'Poppins', sans-serif;
}

.logo img {
    width: 200px;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    font-size: 30px;
    font-weight: 800;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

nav {
    position: absolute !important;
    top: 0 !important;
    width: 100%;
    float: left;
    left: 0;
    z-index: +5;
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--secondary) 100%
    );
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 5px;
    margin: 0 !important;
    transition: all 0.5s;
}

.navbar-toggler {
    border: none !important;
    background: transparent;
    padding: 8px 10px;
    cursor: pointer;
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 40px;
    height: 40px;
    z-index: 1001;
}

.navbar-toggler span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.navbar-toggler.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.navbar-toggler.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-container {
    max-width: 1300px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none !important;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    text-transform: uppercase;
    background-color: transparent;
    transition: 0.5s;
    font-size: 13px;
}

.nav-link:hover {
    transform: scale(1.03);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.navbar-nav {
    justify-content: end;
    width: 100%;
    align-items: center;
}

.nav-item {
    margin: 1px 5px;
}

.nav-icon img {
    width: 23px;
}


.navbar-brand {
    height: auto !important;
    color: #fff !important;
    font-size: 32px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.1) rotate(5deg);
}

.container {
    width: 100%;
    max-width: 1300px;
    padding: 0 15px;
}

.banner {
    background: 
        url("../images/game-fishermans-bg-1920x1080.png") center;
    background-size: cover;
    padding: 40px 0;
    margin-top: 50px;
    color: #ffffff;
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(30, 64, 175, 0.8) 0%,
        rgba(14, 165, 233, 0.7) 50%,
        rgba(6, 182, 212, 0.6) 100%
    );
    z-index: 1;
}

.banner .container {
    min-height: 300px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    animation: fadeInUp 1s ease-out;
}

.banner-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.banner-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.banner-subtitle {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    max-width: 700px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.h-low .container {
    min-height: 200px;
    align-items: center;
}

h1 {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 10px;
    float: left;
    width: 100%;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

h1:last-child {
    margin: 0 !important;
}

h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
}

.section2 h2,
footer h4 {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.banner p {
    font-size: 15px;
    line-height: 24px;
}

.section {
    padding: 60px 0;
    position: relative;
}

.section .container {
    position: relative;
    z-index: 2;
}

.section-features {
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
}

.section-header {
    margin-bottom: 50px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--primary) 0%,
        var(--secondary) 50%,
        var(--accent) 100%
    );
    margin: 20px auto;
    border-radius: 2px;
}

.section-divider-white {
    width: 80px;
    height: 4px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 1) 50%,
        rgba(255, 255, 255, 0.8) 100%
    );
    margin: 20px auto;
    border-radius: 2px;
}
.div {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}
.h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.para {
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 20px;
    color: var(--light);
}

.para:last-child {
    margin: 0;
}

.section2 .para,
footer .para {
    color: rgba(255, 255, 255, 0.95);
}

.flexbox {
    display: flex;
    align-items: center;
    margin: 0 0 20px;
}

.flexbox:last-child {
    margin: 0;
}

.flexbox > p,
.flexbody {
    flex: 1;
}

.flexbox > p:first-child,
.flexbody:first-child {
    margin: 0 30px 0 0;
}

.flexbox > p:last-child,
.flexbody:last-child {
    margin: 0 0 0 30px;
}

.flexbox > img {
    width: 100%;
    max-width: 30%;
    border-radius: 20px;
}

.video {
    width: 700px;
    max-width: 100%;
    height: 400px;
    float: left;
    margin: 0 0 20px;
    position: relative;
}
.section1 {
    background-color: #fff;
}
iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    float: left;
    top: 0;
    left: 0;
}
.section2 {
    background: url("../images/game-fishermans.png") center;
    background-size: cover;
    background-attachment: fixed;
    padding: 80px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.92) 0%,
        rgba(30, 64, 175, 0.88) 50%,
        rgba(14, 165, 233, 0.85) 100%
    );
    z-index: 1;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.about-image {
    flex: 1;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.about-content {
    flex: 1;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}
.btn-cu {
    position: relative;
    display: inline-block;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
    transition: filter 250ms;
    user-select: none;
    touch-action: manipulation;
    text-decoration: none !important;
    line-height: 1;
}

.shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: hsl(0deg 0% 0% / 0.3);
    will-change: transform;
    transform: translateY(2px);
    transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--secondary) 100%
    );
}

.front {
    display: inline-block;
    position: relative;
    padding: 16px 40px;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--secondary) 50%,
        var(--accent) 100%
    );
    width: fit-content;
    will-change: transform;
    transform: translateY(-4px);
    transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.4);
    letter-spacing: 0.5px;
    line-height: 1.2;
    white-space: nowrap;
}

.btn-cu:hover {
    filter: brightness(115%);
}

.btn-cu:hover .front {
    transform: translateY(-8px);
    transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
    box-shadow: 0 12px 30px rgba(30, 64, 175, 0.5);
}

.btn-cu:active .front {
    transform: translateY(-2px);
    transition: transform 34ms;
}

.btn-cu:hover .shadow {
    transform: translateY(4px);
    transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.btn-cu:active .shadow {
    transform: translateY(1px);
    transition: transform 34ms;
}

button:focus:not(:focus-visible) {
    outline: none;
}
.center {
    width: 100%;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    margin: 0 0 20px;
}

.center:last-child {
    margin: 0 !important;
}

.container > img {
    width: 100%;
    float: left;
    margin: 0 0 20px;
}

.flexgroup > img {
    width: 33%;
    margin: 0 0 20px;
}

.flexgroup {
    width: 100%;
    float: left;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.flexgroupbox {
    width: 24%;
    padding: 15px;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    color: #000000;
    text-align: center;
    border: 2px solid #0c817c;
    border-radius: 10px;
}

.flexgroupbox > img {
    width: 100px;
    float: left;
    margin: 0 0 20px;
}
.flexgroupbox h4 {
    background-color: #0c817c;
    color: #fff;
    padding: 10px;
    width: 100%;
    font-size: 17px;
}
.flex-box {
    width: 20%;
    margin: 0 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    position: relative;
}
.flex-f {
    width: 100%;
}
.flex-f::after {
    width: 96%;
    height: 75%;
}
.icon-img {
    border: 15px solid var(--primary);
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 0 40px;
}
.icon-img:after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid var(--primary);
    top: -40px;
    left: -40px;
    border-radius: 50%;
    clip-path: polygon(0 39%, 100% 39%, 100% 100%, 0% 100%);
}
.icon-img::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--primary);
    top: 147px;
    left: 48px;
    border-radius: 50%;
    z-index: 2;
}
.icon-img img {
    width: 70px;
}
.num {
    background-color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 40px;
    color: #ffffff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: -38px;
    margin-left: -72px;
    font-family: 'Poppins', sans-serif;
    z-index: 3;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.left {
    width: 60%;
    color: #fff;
}

/* Section About Us Styles */
.section-about-us {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
}

.about-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-us-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.2);
}

.about-us-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.about-us-image:hover img {
    transform: scale(1.05);
}

.about-us-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(30, 64, 175, 0.1) 0%,
        rgba(14, 165, 233, 0.1) 100%
    );
    pointer-events: none;
}

.about-us-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-us-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary);
}

.about-us-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.2);
    border-left-color: var(--accent);
}

.about-us-item-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.about-us-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--secondary) 100%
    );
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.about-us-icon svg {
    color: #ffffff;
}

.about-us-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: var(--black);
}

.about-us-item .para {
    color: var(--light);
    margin: 0;
    line-height: 1.7;
}

.about-us-item .para a {
    color: var(--primary);
    text-decoration: underline !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.about-us-item .para a:hover {
    color: var(--accent);
}
.formsection {
    background: #fff;
    background-size: cover;
    color: #000;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
}

.formsection .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.formsection .para {
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
}

.formbox {
    width: 100%;
    float: left;
    max-width: 800px;
    background: #fff;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.formfield {
    width: 100%;
    height: 50px;
    margin: 0 0 10px;
    padding: 0 10px;
    border: none;
    background: #f3f3f3;
    border: solid 1px #333;
    color: #000;
    font-size: 15px;
}

.textarea-cu {
    width: 100%;
    height: 100px;
    margin: 0 0 10px;
    padding: 10px;
    border: none;
    background: #f3f3f3;
    border: solid 1px #333;
    color: #000;
    font-size: 15px;
}

.formfield::placeholder,
.textarea-cu::placeholder {
    color: #333;
}

.formbutton {
    width: 49%;
    float: left;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: none;
    background: var(--primary);
    color: #fff;
    cursor: pointer;
    outline: 0 !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.h-low {
    background: linear-gradient(
        135deg,
        var(--secondary) 0%,
        var(--accent) 100%
    );
    color: #fff;
    text-align: center;
}
footer {
    background: url("../images/game-fishermans.png") center;
    background-size: cover;
    background-attachment: fixed;
    padding: 60px 0 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.95) 0%,
        rgba(30, 64, 175, 0.92) 50%,
        rgba(14, 165, 233, 0.88) 100%
    );
    z-index: 1;
}

footer .container {
    position: relative;
    z-index: 2;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.footer-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.footer-logo h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.footer-disclaimer {
    margin-bottom: 40px;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.footer-disclaimer .para {
    text-align: center !important;
    margin: 0 auto;
    max-width: 100%;
}

footer .footer-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    float: left;
}

.footerlinks {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 0 0 20px;
}

.footerlinks img {
    height: 70px;
}
footer .para a {
    text-decoration: underline !important;
    color: #fff;
}
.ssl-img img {
    width: 90px;
}

.footerlinks a {
    font-size: 15px;
    color: #ffffff;
    margin: 0 6px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.footerlinks a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.copyrights {
    font-size: 14px;
    color: #fff;
}

.text-white {
    font-size: 14px;
}

.cookiesection {
    width: 100%;
    float: left;
    min-height: calc(100vh - 126px);
    padding: 40px 0;
    margin-top: 72px;
}

.cookiesection h2 {
    font-size: 22px;
    font-weight: 600;
}

.cookiesection p {
    font-size: 14px;
    line-height: 20px;
}

.cookiesection p strong {
    font-weight: 600;
}

.cookiesection p .bolder {
    display: block;
    margin: 30px 0 10px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
}

.backbutton {
    float: left;
    display: inline-flex;
    align-items: center;
    margin: 30px 0 20px;
    padding: 6px 8px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue-dark) !important;
    border: solid 1px var(--blue-dark);
}

.backbutton img {
    width: 15px;
    margin: 0 5px 0 0;
    transition: all 0.3s ease;
}

.backbutton:hover {
    background: var(--blue-dark);
    color: #fff !important;
}

.backbutton:hover img {
    filter: saturate(0) brightness(10);
}

.alert {
    background: rgba(0, 0, 0, 0.7) !important;
    color: #ffffff !important;
    position: fixed !important;
    bottom: 10px;
    margin-bottom: 0 !important;
    left: 26px;
    max-width: 100%;
    text-align: center;
    width: 300px;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px;
    align-items: center;
    border-radius: 20px;
}

.alert-dismissible {
    z-index: +3;
}

.alert-close {
    border: 1px solid transparent;
    border-radius: 4px;
    background: #862041;
    color: white;
    padding: 0px !important;
    width: 3rem;
    height: 2rem;
    font-size: 14px;
}

.hide {
    display: none;
}

span {
    font-weight: bold;
}

.alert p {
    font-size: 14px;
    margin: 0 0 20px !important;
    width: 100%;
    float: left;
}

.hide {
    display: none;
}

.alert-close {
    padding: 0px 9px !important;
    border: 1px solid transparent;
    border-radius: 4px;
    background: #862041;
    color: white;
    margin: 0 !important;
    font-size: 14px;
}

.show-mbl {
    display: none;
}
.testimonial {
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--secondary) 50%,
        var(--accent) 100%
    );
    padding: 40px 30px;
    margin: 0 15px 30px 15px;
    overflow: hidden;
    position: relative;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    color: #fff;
    min-height: 320px;
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(30, 64, 175, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.testimonial:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(30, 64, 175, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.testimonial-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.testimonial:hover .testimonial-icon {
    transform: scale(1.1) rotate(10deg);
    background: rgba(255, 255, 255, 0.3);
}

.testimonial-icon svg {
    color: #ffffff;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.testimonial h5 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.description {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 15px;
    line-height: 1.6;
}

.testimonial:before {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.testimonial:after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}
.testimonial .pic img {
    width: 100%;
    height: auto;
}
.testimonial .description {
    font-size: 15px;
    letter-spacing: 1px;
    color: #ffffff;
    line-height: 25px;
    margin-bottom: 15px;
    text-align: center;
}
.testimonial .title {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #4a1e03;
    margin: 0;
}
.testimonial .post {
    display: inline-block;
    font-size: 17px;
    color: #ffffff;
    font-style: italic;
}
.owl-theme .owl-controls .owl-page span {
    background-color: var(--primary) !important;
    width: 32px !important;
    height: 5px !important;
}
.agebtn {
    width: auto;
    height: 56px;
    border-radius: 8px;
    padding: 0 65px 0 20px;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    background: var(--success);
    color: #fff !important;
    position: relative;
    font: 600 18px 'Inter', sans-serif;
    text-transform: uppercase;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
}
.agebtn:before {
    content: '';
    width: 45px;
    height: 100%;
    background: var(--success-light);
    position: absolute;
    right: 0;
    top: 0;
}
.agebtn:after {
    content: '';
    top: 30px;
    right: 4px;
    border: solid transparent;
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-left-color: #fff;
    border-width: 12px;
    margin-top: -15px;
}

.agebtn:hover {
    background: var(--success-dark);
    transform: translateY(-2px);
}
.modal-open .modal {
    background: #000;
}
.modal-custom {
    padding: 80px;
    max-width: 780px !important;
}
.modal-content h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
.age-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}
.age-text {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}
.age-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.age-btn {
    border: none;
    border-radius: 12px;
    cursor: pointer;
    flex: 1 1;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem;
    transition: all 0.3s ease;
}
.yes-btn {
    background: #fff;
    color: #1a1a1a;
}
.no-btn {
    background: #ffffff1a;
    border: 1px solid #ffd70033;
    color: #fff;
}
.age-disclaimer {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.5;
}
.modal-content {
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--secondary) 100%
    );
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 20px 30px 40px;
    color: #fff;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.modal-content h2 {
    font: 600 22px 'Poppins', sans-serif;
}
.modal-content h2 span {
    font-size: 18px;
    font-weight: 400;
    display: block;
    margin: 10px 0 0;
}
.yes-btn:hover {
    border: 2px solid #fff;
    background-color: transparent;
    color: #fff;
}
.no-btn:hover {
    background: #fff3;
}

.modal-custom {
    padding: 50px !important;
}
@media (max-width: 991px) {
    .navbar-toggler {
        display: flex;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(
            135deg,
            var(--primary) 0%,
            var(--secondary) 100%
        );
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0;
    }

    .navbar-collapse.show {
        max-height: 500px;
        padding: 20px 0;
    }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
        gap: 0;
    }

    .nav-item {
        margin: 0;
        width: 100%;
    }

    .nav-link {
        padding: 15px 20px !important;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: block;
        width: 100%;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.15) !important;
        transform: none;
    }

    .justify-content-end {
        justify-content: flex-start !important;
    }

    .navbar-brand {
        height: auto !important;
        color: #fff !important;
        font-size: 24px;
        flex: 1;
    }

    nav {
        position: relative !important;
    }

    .nav-container {
        flex-wrap: wrap;
    }
}

@media (max-width: 991px) {
    .section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .testimonial {
        margin: 0 0 20px 0;
    }
}

@media (max-width: 800px) {
    .show-mbl {
        display: block;
    }
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    .banner .container {
        min-height: 200px;
        padding: 20px 15px;
    }
    .banner {
        margin-top: 0;
        height: auto;
        min-height: 400px;
        padding: 30px 0;
    }
    
    .banner-icon {
        width: 80px;
        height: 80px;
        padding: 15px;
    }
    
    .banner-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .h2 {
        font-size: 22px;
    }
    
    .front {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .para {
        font-size: 14px;
        line-height: 1.6;
    }

    .section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    h4 {
        font-size: 18px;
    }

    .flexbox {
        flex-direction: column;
    }
    .flexgroup {
        flex-direction: column;
    }
    .flex-box {
        width: 100%;
    }
    .flexbox > img {
        max-width: 100%;
        order: 1;
        margin: 0 0 15px;
    }

    .flexbody,
    .flexbox > .para {
        padding: 0 !important;
        order: 2;
    }

    footer .footer-text {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .flexgroupbox {
        width: 100%;
    }

    .formfield {
        width: 100%;
    }

    .formbutton {
        width: 100%;
    }

    .flexbody {
        margin: 0 !important;
        padding: 20px !important;
    }

    .footerlinks {
        justify-content: center;
        margin: 10px 0;
    }
    .footerlinks:first-child {
        width: 100%;
    }
    .owl-theme .owl-controls .owl-page span {
        width: 12px !important;
        height: 12px !important;
    }
    .testimonial {
        min-height: 350px;
    }
    
    .testimonial-icon {
        width: 70px;
        height: 70px;
    }
    
    .left {
        width: 100%;
    }
    .footerlinks {
        gap: 10px;
        flex-direction: column;
    }
    .alert {
        left: 0;
        width: 100%;
    }
    
    /* About Section Mobile */
    .about-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-image {
        animation: none;
    }
    
    .section2 {
        background-attachment: scroll;
        padding: 60px 0;
    }

    .about-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .about-image {
        width: 100%;
    }

    .about-content {
        width: 100%;
    }
    
    /* About Us Section Mobile */
    .about-us-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-us-item:hover {
        transform: translateX(5px);
    }
    
    /* Footer Mobile */
    footer {
        background-attachment: scroll;
    }
    
    .footer-logo img {
        width: 60px;
        height: 60px;
    }
    
    .footer-logo h3 {
        font-size: 24px;
    }
    
    .footer-disclaimer {
        padding: 20px;
    }
    
    .navbar-brand {
        font-size: 24px;
    }
    
    .navbar-logo {
        width: 40px;
        height: 40px;
    }
    
    /* Content Page Mobile */
    .content-page-wrapper {
        flex-direction: column;
    }
    
    .content-page-image {
        margin-bottom: 30px;
    }

    .content-item {
        padding: 20px;
    }

    .content-icon {
        width: 40px;
        height: 40px;
    }

    .content-item h4 {
        font-size: 18px;
    }

    .pop-up {
        width: 90%;
        max-width: 320px;
        padding: 25px 40px 15px;
        font-size: 20px;
    }

    .pop-up__title {
        margin-bottom: 20px;
        font-size: 20px;
    }

    .pop-up__buttons {
        gap: 15px;
    }

    .pop-up__si,
    .pop-up__no {
        padding: 8px 0;
        font-size: 16px;
    }

    #cookie-banner {
        padding: 15px;
        font-size: 14px;
        flex-direction: column;
        gap: 10px;
    }

    #cookie-banner button {
        margin: 0;
        width: 100%;
        padding: 10px;
    }

    .footer-disclaimer {
        padding: 20px 15px;
    }

    .footer-logo h3 {
        font-size: 22px;
    }

    .footer-logo img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 10px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    .h2 {
        font-size: 20px;
    }

    .banner {
        min-height: 350px;
        padding: 20px 0;
    }

    .banner-icon {
        width: 70px;
        height: 70px;
        padding: 12px;
    }

    .banner-subtitle {
        font-size: 13px;
    }

    .navbar-brand {
        font-size: 20px;
    }

    .navbar-logo {
        width: 35px;
        height: 35px;
    }

    .testimonial {
        padding: 30px 20px;
        min-height: auto;
    }

    .testimonial-icon {
        width: 60px;
        height: 60px;
    }

    .testimonial h5 {
        font-size: 16px;
    }

    .description {
        font-size: 14px;
    }

    .about-us-item,
    .content-item {
        padding: 20px 15px;
    }

    .about-us-icon,
    .content-icon {
        width: 40px;
        height: 40px;
    }

    .about-us-item h4,
    .content-item h4 {
        font-size: 16px;
    }

    .footerlinks {
        flex-direction: column;
        gap: 10px;
    }

    .footerlinks a {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    .logoss {
        gap: 10px;
    }

    .logoss img {
        max-height: 50px;
        width: 100px;
    }
}

/* Content Page Styles */
.section-content-page {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
}

.content-page-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: start;
}

.content-page-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.2);
}

.content-page-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.content-page-image:hover img {
    transform: scale(1.05);
}

.content-page-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.content-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary);
}

.content-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.2);
    border-left-color: var(--accent);
}

.content-item-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.content-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--secondary) 100%
    );
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.content-icon svg {
    color: #ffffff;
}

.content-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: var(--black);
}

.content-item .para {
    color: var(--light);
    margin: 0;
    line-height: 1.7;
}

@media (max-width: 800px) {
    .content-page-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .content-item:hover {
        transform: translateX(5px);
    }
}
