/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #fff;
    color: #333;
    font-size: 15px;
    line-height: 1.5;
}

/* ================= HEADINGS ================= */
h1 { font-size: 36px; font-weight: 600; }
h2 { font-size: 22px; font-weight: 500; }
h3 { font-size: 18px; font-weight: 500; }
p { font-size: 15px; line-height: 1.7; text-align: justify; }

/* ================= HEADER ================= */
header {
    background: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #003f66;
}

/* ================= NAV ================= */
nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: #003f66;
    font-weight: bold;
    padding: 10px 15px;
}

/* ================= HAMBURGER ================= */
.hamburger {
    display: none;
    flex-direction: column;
    width: 32px;
    cursor: pointer;
}

.hamburger span {
    height: 4px;
    background: #003f66;
    margin: 5px 0;
    border-radius: 5px;
    transition: 0.4s;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* ================= NEWS TICKER ================= */
.news-ticker { background: linear-gradient(90deg, #003f66, #005c99); overflow: hidden; }
.ticker {
    padding: 12px 0;
    white-space: nowrap;
    color: #fff;
    font-weight: bold;
    animation: scroll 18s linear infinite;
}

@keyframes scroll {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}

/* ================= HERO ================= */
.hero { display: flex; align-items: center; padding: 50px; gap: 40px; }
.hero-left { width: 70%; }
.hero-left h1 { color: #003f66; }
.hero-left p { margin: 20px 0; }
.btn { display: inline-block; background: #003f66; color: #fff; padding: 12px 50px; border-radius: 30px; text-decoration: none; }

.hero-right { display: flex; flex-direction: column; align-items: center; }
.hero-right video { width: 1000px; max-width: 100%; border-radius: 20px; }
.hero-logo {display: none; /* default hidden for desktop */}

/* ================= VIDEO STATS ================= */
.video-stats {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 700px;
    width: 100%;
    background: url('background1.png') center/cover no-repeat;
    padding: 20px;
    border-radius: 25px;
}

.video-stat {
    height: 140px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.video-stat * {
    position: relative;
    z-index: 2;
}

.video-stat h2,
.video-stat p {
    color: #003f66;
}

.video-stat h2 { font-size: 50px; font-weight: 600; }
.video-stat p  { font-size: 25px; font-weight: 500;  }

/* ================= STATS BACKGROUND ================= */
.bg-years,
.bg-countries {
    background: #ffffff;
}


/* ================= CARDS ================= */
.concave-section {
    position: relative;
    width: 100%;
    margin-top: 0;
    overflow: hidden;
}

.concave-section svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.concave-section svg path { fill: #003f66; }

.concave-section .cards {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 90px 40px 90px;
    background: none;
}

.card {
    background: rgba(255,255,255,0.95);
    border-radius: 22px;
    padding: 30px;
    transition: transform 0.3s;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    text-align: center;
}

.card:hover { transform: translateY(-8px); }

.card-img, .card-img1 {
    width: 100%;
    background-size: cover;
    background-position: center;
}

.aims-img {
    height: 180px;
    background-image: url('logo/aims.png');
}

.rules-img {
    height: 180px;
    background-image: url('logo/rules.png');
}

.join-img {
    height: 180px;
    background-image: url('logo/joinus.png');
}
.card-img1 { height: 300px; background-image: url('logo/europe.png'); background-size: contain; /* fit entire image */
    background-repeat: no-repeat;
    background-position: center; }

.card h2 { color: #003f66; margin-bottom: 10px; }
.card p, .sub {  line-height: 1.7; color: #333; }
.card-btn { display: inline-block; margin-top: 15px; padding: 10px 28px; background: #003f66; color: #fff; border-radius: 25px; text-decoration: none; }

.premium {
    background: rgba(255,255,255,0.9);
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.premium:hover { transform: translateY(-5px); }

/* ===== FAQ + CONTACT (BELOW CONCAVE) ===== */
.faq-contact-section {
    padding: 80px 40px;
    background: #ffffff;
}

.faq-contact-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* FAQ */
.faq-box {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.faq-box h2 {
    color: #003f66;
    margin-bottom: 20px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 500;
    color: #003f66;
}

.faq-question span {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    font-size: 14px;
    line-height: 1.5;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    margin-top: 10px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}


/* ================= CONTACT ================= */
.contact-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    text-align: center;
}

.contact-box h2 {color: #003f66; margin-bottom: 20px;}
.contact-box form { display: grid; gap: 15px;}
.contact-box input,
.contact-box textarea { padding: 12px;border-radius: 10px;border: 2px solid #003f66;}
.contact-box button {background: #003f66;color: #fff;padding: 12px;border-radius: 25px;border: none;cursor: pointer;}

/* ================= FOOTER ================= */
footer {
    background: linear-gradient(135deg, #002b46, #003f66);
    padding: 30px 25px;
    color: #e6f7ff;
    border-top: 4px solid #9fd8ff;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 25px;
    flex-wrap: nowrap; /* desktop fix */
}

.footer-section {
    flex: 1 1 220px;
    min-width: 220px;
}

.footer-section h3 {
    font-weight: bold;
    margin-bottom: 12px;
    border-bottom: 2px solid #9fd8ff;
    padding-bottom: 6px;
    color: #fff;
}

.support-links, .social-icons { display: flex; flex-direction: column; gap: 8px; }
.support-links a, .footer-section .contact-info a, .footer-email { text-decoration: none; color: #cfefff; transition: color 0.3s ease, transform 0.2s ease; }
.support-links a:hover, .footer-section .contact-info a:hover, .footer-email:hover { color: #9fd8ff; transform: translateX(3px); }

.social-icons { flex-direction: row; gap: 15px; align-items: center; }
.social-icons a { color: #fff; font-size: 26px; opacity: 0.85; transition: transform 0.3s ease, opacity 0.3s ease; }
.social-icons a:hover { transform: scale(1.2); opacity: 1; }

.whatsapp-footer {
    display: inline-flex;
    align-items: center;
    margin-top: 12px;
    background: #25D366;
    color: #fff;
    padding: 7px 14px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-footer img { width: 18px; margin-right: 6px; }
.whatsapp-footer:hover { transform: scale(1.05); box-shadow: 0 6px 18px rgba(0,0,0,0.3); }
.footer-phone {color: #cfefff;   }
/* Footer contact spacing */
.footer-section .footer-phone{margin-bottom: 10px;}
.footer-section .footer-email {
    display: inline-block;   /* instead of block */
    white-space: nowrap;     /* prevent line break */
    margin-bottom: 10px;
}



footer p:last-child { text-align: center; font-size: 13px; margin-top: 30px; color: #9fd8ff; }

/* ================= PRIVACY PAGE ================= */
.privacy-container {
    max-width: 1100px;
    margin: 40px auto 10px;  /* bottom sirf 10px */
    padding: 20px 20px;
}
.privacy-container h1 { text-align: center; color: #003f66; margin-bottom: 30px; }
.privacy-container h2 { margin-top: 30px; color: #003f66;; }
.privacy-container p, .privacy-container ul li { margin-top: 15px; line-height: 1.5; color: #333; }
.privacy-container ul { padding-left: 20px; }
.contact-link { color: #003f66;; font-weight: 500; text-decoration: none; }





/* ================= MEMBERSHIP FORM ================= */
*{box-sizing:border-box;font-family:Segoe UI,Arial}
body{
    background: #fff; /* white like your site */
    color: #333;
}
.container{
    max-width:1000px;
    background:#fff;
    margin:50px auto;
    border-radius:12px;
    padding:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.3)
}
h1{text-align:center;color:#203a43}
.section{
    background: linear-gradient(90deg, #003f66, #005c99); /* match site gradient */
    color: #ffffff; 
    padding: 10px;
    border-radius: 6px;
    margin: 25px 0 15px;
    font-weight: bold;
    font-size: 16px;
}

.row{display:flex;gap:15px;margin-bottom:15px}

.group{flex:1}

label{
    color: #003f66;
    font-weight:600;
    font-size:14px}
    
input,select{
    width:100%;
    padding:10px;
    border-radius:6px;
   border: 1px solid #003f66; 
}
canvas{
    width:100%;
    height:180px;
       border: 2px dashed #003f66;
    border-radius:8px
}
button{
    width:100%;
    padding:14px;
    font-size:16px;
     background: #003f66; /* main button color */
    color: #fff;
    border:none;
    border-radius:8px;
    cursor:pointer
}
button:hover {
    background: #005c99; /* hover button gradient / darker blue */
}

.clear {
    background: #777; /* optional, keep gray */
}

@media(max-width:768px){
    .row{flex-direction:column}
    canvas{height:150px}
}

.declaration-box{
    display:flex;
    align-items:flex-start;
    gap:12px;
    padding:15px;
    border: 1px solid #003f66;
    border-radius:8px;
    background: #f0f8ff; /* very light blue, like card bg */
    color: #003f66;
    font-size:14px;
    line-height:1.6;
    color:#203a43;
}

.declaration-box input[type="checkbox"]{
    width:18px;
    height:18px;
    margin-top:4px;
    cursor:pointer;
}

.declaration-box label{
    cursor:pointer;
}


/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .hero { flex-direction: column; text-align: center; }
    .hero-left { width: 100%; }
    nav ul { position: fixed; top: 0; left: -350px; width: 300px; height: 100%; background: #fff; flex-direction: column; padding-top: 80px; transition: 0.4s; box-shadow: 2px 0 12px rgba(0,0,0,0.2); z-index: 9999; }
    nav ul li { border-bottom: 1px solid #ccc; padding: 15px 20px; text-align: left; }
    nav.active ul { left: 0; }
    .hamburger { display: flex; }
    .split { flex-direction: column; }
    .contact { margin: 30px 15px; padding: 25px 20px; }
    .contact input, .contact textarea { padding: 14px; }
    .footer-container { flex-direction: column; }
    .concave-section .cards { grid-template-columns: 1fr;
        gap: 25px;
        padding: 140px 15px 140px;
        justify-items: center;
    }
    .cards { flex-direction: column; align-items: center; }
    .card {
        width: 100%;
        max-width: auto;
    }
    .card-icon { width: 60px; height: 60px; }
    .card-img1 {
        height: 300px; /* smaller on mobile */
    }
    .video-stat h2 { font-size: 30px; }  /* smaller on mobile */
.video-stat p  { font-size: 18px; }
.video-stats { grid-template-columns: 1fr; }  /* one column */

.video-stat {
        height: auto;
        padding: 15px 10px;
    }
    /* HERO FIX */
    .hero {padding: 30px; gap: 20px;}

    /* VIDEO FIX (MOST IMPORTANT) */
    .hero-right video {
        width: 100%;
        height: auto;
        border-radius: 15px;
    }


    /* BUTTON */
    .btn {
        padding: 12px 35px;
        font-size: 15px;
    }
    
    .faq-contact-container {
        grid-template-columns: 1fr;
    }
    
    .privacy-container {
        padding: 30px; gap: 20px;
    }

}




