/* ===== GLOBAL ===== */

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Quicksand:wght@300..700&display=swap');

:root {
    --primary: #ea603e;
    --text: #222a39;
    --muted: #666;
    --bg: #fff;
    --border: #eee;
}

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

body {
    font-family: 'Quicksand';
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
}

p,
a {
    font-family: 'Quicksand';
    margin: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Nunito';
    margin: 0px;
}

body.menu-open {
    overflow: hidden;
}

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

img {
    width: 100%;
    max-width: 100%;
}

.container {
    max-width: 1280px;
    margin: auto;
    padding: 0 15px;
    overflow-x: hidden;
}

/* ===== HEADER ===== */

.notice-bar {
    width: 100%;
    background: #ff0033;
    color: #fff;
    text-align: center;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #ffeeba;
    position: relative;
    z-index: 9;
}

/* Optional: match your container spacing */
.notice-bar {
  font-family: inherit;
}

.header {
    position: sticky;
    top: 0;
    z-index: 98;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    width: 100%;
    max-width: 100%;
}

.header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px;
}

/* ===== LOGO ===== */
.header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 20px;
    color: var(--text);
}

.header .logo img {
    width: 190px;
}


/* ===== NAV ===== */
.header .nav {
    display: flex;
    gap: 6px;
}

/* Desktop Nav (inside header) */
.header .nav-desktop {
    display: flex;
    gap: 6px;
}

nav.nav-desktop ul {
    display: flex;
    gap: 4px;
}

.header .nav-desktop a,
.header .nav a {
    padding: 8px 12px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    transition: 0.2s;
    display: inline-block;
}

.header .nav-desktop a:hover,
.header .nav a:hover {
    background: #f4f0eb;
    color: var(--text);
}

.header .nav-desktop .current_page_item a,
.header .nav .current_page_item .active {
    background: rgb(234 96 62 / 10%);
    color: var(--primary);
}

nav#navMenu {
    display: none;
}

/* ===== BUTTON ===== */
.header .actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.header .actions img {
    max-width: 18px;

}

.header .btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: var(--primary);
    color: white;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.2s;
    font-size: 15px;
    line-height: 20px;
}

.header .btn:hover {
    transform: translateY(-1px);
}

/* ===== MOBILE ===== */
.header .menu-btn {
    display: none;
    font-size: 24px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0px;
}


.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 99;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-btn {
    display: none;
    font-size: 24px;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--text);
    z-index: 101;
    transition: 0.3s;
}

.menu-btn.hide {
    opacity: 0;
    visibility: hidden;
}

/***footer css***/

.footer {
    background: #0f172a;
    color: rgba(255, 255, 255, 0.8);
    padding: 48px 0px 0px;
}

/* Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 190px;
    border-radius: 5px;
    padding: 8px;
    background-color: #fff;
}

/* Text */
.footer-col p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Headings */
.footer-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: #fff;
}

/* Links */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col.contest-col {
    padding: 0px 40px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li:last-child {
    margin-bottom: 0px;
}

.footer-col ul li a {
    text-decoration: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
}

/* Bottom */
.footer-bottom {
    margin-top: 50px;
    padding: 25px 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    color: #fff;
}

/**hero css**/
/* ===== SECTION ===== */
.hero-section {
    padding: 60px 0px;
    overflow: hidden;
    background-color: #fff;
}

/* ===== GRID ===== */
.hero-section .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}


/* ===== CONTENT ===== */
.hero-section .hero-content h1 {
    font-size: 60px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-section .hero-content p {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 30px;
    max-width: 500px;
}

/* ===== BADGE ===== */
.hero-section .badge {
    display: inline-block;
    background: rgba(234, 96, 62, 0.1);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* ===== BUTTONS ===== */
.hero-section .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-bottom: 25px;
}

.hero-section .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.2s ease;
    font-size: 14px;
}

.hero-section .primary-btn {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.hero-section .btn img {
    max-width: 20px;
}

.hero-section .primary-btn:hover {
    transform: translateY(-2px);
}

.hero-section .secondary-btn {
    background: #fff;
    border: 1px solid var(--border);
    color: var(--text);
}

.hero-section .secondary-btn:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* ===== IMAGE ===== */
.hero-section .hero-image {
    display: flex;
    justify-content: center;
}

.hero-section .image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid #ea603e;
}

.hero-section .image-card img {
    width: 100%;
    display: block;
}

/**why choose sec***/

/* ===== SECTION ===== */
.why-section {
    padding: 70px 0px;
    background: #fafafa;
}

/* ===== HEADER ===== */
.why-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-section .section-header h2 {
    font-size: 40px;
    font-weight: 800;
}

/* ===== GRID (DESKTOP DEFAULT) ===== */
.why-section .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    max-width: 1000px;
    margin: auto;
}

/* ===== IMAGE ===== */
.why-image img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

/* ===== CONTENT ===== */
.why-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-content li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 18px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.why-content li span {
    color: #ea603e;
    font-weight: bold;
    margin-top: 4px;
}

/* ===== BUTTON ===== */
.why-section .cta-btn {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 25px;
    background: var(--primary);
    color: white;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.2s;
    font-size: 15px;
    line-height: 20px
}

.cta-btn img {
    max-width: 18px;
}

.why-section .cta-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/**steps sec css**/
/* ===== SECTION ===== */
.steps-section {
    padding: 70px 0px;
    background: #f7f0e6;
    /* same soft bg */
}

/* ===== HEADER ===== */
.steps-section .steps-header {
    text-align: center;
    margin-bottom: 60px;
}

.steps-section .steps-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #222a39;
    /* same text color */
}

/* ===== GRID (DESKTOP DEFAULT) ===== */
.steps-section .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===== CARD ===== */
.steps-section .step-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: 0.25s ease;
}

.steps-section .step-card:hover {
    transform: translateY(-5px);
}

/* ===== STEP NUMBER ===== */
.steps-section .step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ea603e, #c94b2d);
    /* match primary */
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== ICON ===== */
.steps-section .step-icon {
    font-size: 42px;
    margin: 20px 0 10px;
}

/* ===== TEXT ===== */
.steps-section .step-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222a39;
}

.steps-section .step-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* ===== CTA ===== */
.steps-section .steps-cta {
    text-align: center;
    margin-top: 50px;
}

.steps-section .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 25px;
    background: var(--primary);
    color: white;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.2s;
    font-size: 15px;
    line-height: 20px;
}

.steps-section .btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/**winner css**/

/* ===== SECTION ===== */
.winners-section {
    padding: 70px 0px;
    background: #fff;
}

/* ===== GRID (DESKTOP DEFAULT) ===== */
.winners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ===== IMAGE ===== */
.winners-section .image-card {
    border-radius: 24px;
    overflow: hidden;
}

.winners-section .image-card img {
    width: 100%;
    display: block;
}

/* ===== CONTENT ===== */
.winners-section .section-title {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 18px;
    color: #222a39;
}

.winners-section .section-desc {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* ===== FEATURES ===== */
.winners-section .features {
    margin-bottom: 35px;
}

.winners-section .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
}

/* ===== ICON ===== */
.winners-section .icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    fill: none;
}

.winners-section .icon.primary {
    stroke: #ea603e;
}

.winners-section .icon.secondary {
    stroke: #7c3aed;
}

/* ===== BUTTONS ===== */
.winners-section .winners-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.winners-section .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 25px;
    background: var(--primary);
    color: white;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.2s;
    font-size: 15px;
    line-height: 20px;
}

.winners-section .btn-secondary {
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #222a39;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 25px;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.2s;
    font-size: 15px;
    line-height: 20px;
}

.winners-section .winners-buttons a:hover {
    transform: translateY(-2px);
}

/**cta css**/

.cta-banner-sec {
    padding: 60px 0px;
    background: #fff;
}

.cta-banner {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #ea603e, #c94b2d);
    padding: 60px 20px;
}

/* ===== CONTENT ===== */
.cta-content {
    text-align: center;
    color: #fff;
    max-width: 700px;
    margin: auto;
}

/* ===== TEXT ===== */
.cta-subtitle {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.cta-content h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.1;
}

.cta-desc {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 25px;
}

/* ===== BUTTON ===== */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #ea603e;
    padding: 14px 30px;
    border-radius: 999px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.2s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
}

/**faq css**/

/* ===== SECTION ===== */
.faq-section {
    padding: 70px 0px;
    background: #f7f7f7;
}

/* ===== CONTAINER ===== */
.faq-container {
    max-width: 750px;
    margin: auto;
}

/* ===== HEADER ===== */
.faq-header {
    text-align: center;
    margin-bottom: 30px;
}

.faq-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #222a39;
}

/* ===== FAQ LIST ===== */
.faq-item {
    padding: 25px 0;
    border-bottom: 1px solid #e5e7eb;
}

/* ===== QUESTION ===== */
.faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #222a39;
}

/* ===== ANSWER ===== */
.faq-item p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0px;
}

/**terms**/

/* ===== SECTION ===== */
.legal-section {
    padding: 70px 20px;
    background: #f9fafb;
}

/* ===== CONTAINER ===== */
.legal-container {
    max-width: 900px;
    margin: auto;
}

/* ===== HEADER ===== */
.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-header h1 {
    font-size: 42px;
    font-weight: 800;
    color: #222a39;
    margin-bottom: 10px;
}

.legal-header p {
    color: #6b7280;
    font-size: 16px;
}

/* ===== CONTENT ===== */
.legal-content {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* ===== BLOCK ===== */
.legal-block {
    margin-bottom: 30px;
}

.legal-block h2 {
    font-size: 20px;
    font-weight: 700;
    color: #ea603e;
    margin-bottom: 10px;
}

.legal-block p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
}

.legal-block ul {
    padding-left: 18px;
    list-style: disc;
}

.legal-block li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #444;
}

/* ===== UPDATE ===== */
.legal-update {
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
    color: #888;
}

/**how it work**/

/* ===== SECTION ===== */
.how-section {
    padding: 70px 0px;
    background: #f9fafb;
}

/* ===== CONTAINER ===== */
.how-container {
    max-width: 800px;
    margin: auto;
}

/* ===== HEADER ===== */
.how-header {
    text-align: center;
    margin-bottom: 50px;
}

.how-header h1 {
    font-size: 40px;
    font-weight: 800;
    color: #222a39;
}

.how-header p {
    color: #6b7280;
    margin-top: 8px;
}

/* ===== STEP WRAPPER ===== */
.steps-wrappers {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ===== CARD ===== */
.steps-wrappers .step-card {
    display: flex;
    gap: 16px;
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    align-items: flex-start;
    transition: 0.2s;
}

.steps-wrappers .step-card:hover {
    transform: translateY(-3px);
}

.steps-wrappers .step-card:last-child {
    margin-bottom: 20px;
}

/* ===== NUMBER ===== */
.steps-wrappers .step-number {
    min-width: 35px;
    height: 35px;
    border-radius: 5px;
    background: linear-gradient(135deg, #ea603e, #c94b2d);
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== CONTENT ===== */
.steps-wrappers .step-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #222a39;
}

.steps-wrappers .step-content p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

.steps-wrappers .btn-step {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.steps-wrappers .btn-step .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 25px;
    background: var(--primary);
    color: white;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.2s;
    font-size: 15px;
    line-height: 20px;
}

/**rules***/

/* ===== SECTION ===== */
.rules-section {
    padding: 70px 0px;
    background: #f9fafb;
}

/* ===== CONTAINER ===== */
.rules-container {
    max-width: 850px;
    margin: auto;
    overflow: hidden;
}

/* ===== HEADER ===== */
.rules-header {
    text-align: center;
    margin-bottom: 50px;
}

.rules-header h1 {
    font-size: 40px;
    font-weight: 800;
    color: #222a39;
    margin-bottom: 15px;
}

.rules-header p {
    color: #6b7280;
}

/* ===== WRAPPER ===== */
.rules-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ===== CARD ===== */
.rule-card {
    display: flex;
    gap: 16px;
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

/* ===== NUMBER ===== */
.rule-number {
    min-width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ea603e, #c94b2d);
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== CONTENT ===== */
.rule-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #222a39;
}

.rule-content p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* ===== CTA ===== */
.rules-cta {
    text-align: center;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.rules-cta .btn-primary {
    background: #ea603e;
    color: #fff;
    padding: 12px 50px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: bold;
}

/**about page css**/
.banner-sec-about {
    padding: 60px 0px;
}

/* ===== SECTION ===== */
.about-section {
    padding: 50px 0px;
    background: #f9fafb;
}

/* ===== CONTAINER ===== */
.about-container {
    max-width: 900px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ===== HERO ===== */


.about-hero {
    text-align: center;
}

.about-hero h1 {
    font-size: 44px;
    font-weight: 800;
    color: #222a39;
    line-height: 1em;
    margin-bottom: 15px;
}

.about-hero p {
    font-size: 18px;
    color: #6b7280;
    margin-top: 10px;
}

/* ===== CONTENT BLOCK ===== */

.about-block h2 {
    font-size: 26px;
    color: #ea603e;
    margin-bottom: 10px;
}

.about-block p {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* ===== DIVIDER STYLE ===== */
.about-divider {
    padding-top: 20px;
    border-top: 2px solid #f1f1f1;
}

/* ===== HIGHLIGHTS ===== */
.about-highlights {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #222a39;
}

.about-highlights div {
    flex: 1;
    min-width: 150px;
    text-align: center;
    border: 1px solid #ea603e;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

/* Show desktop nav, hide mobile sidebar links on desktop */
@media (min-width: 1025px) {
    .header .nav-desktop {
        display: flex;
    }

    .header .nav>a {
        display: none;
    }

    .header .nav-header {
        display: none !important;
    }
}

@media all and (max-width:1200px) {
    .hero-section .hero-content h1 {
        font-size: 45px;
    }
}

/* Slide menu */
@media (max-width: 1024px) {
    .header .nav-desktop {
        display: none !important;
    }

    .header .menu-btn {
        display: block;
    }

    .header .btn {
        display: none;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        max-width: 80vw;
        height: 100vh;
        height: 100dvh;
        background: #fff;
        flex-direction: column;
        padding: 0;
        transition: 0.3s ease-in-out;
        z-index: 100;
        overflow-y: auto;
        overflow-x: hidden;
        gap: 0px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);

        /* Hide scrollbar for Chrome/Safari */
        &::-webkit-scrollbar {
            width: 0;
            display: none;
        }

        /* Hide scrollbar for IE, Edge and Firefox */
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
    }

    .header .nav {
        gap: 0;
    }

    .nav.active {
        right: 0;
    }

    nav#navMenu {
        display: flex;
    }

    nav#navMenu a {
        display: block;
    }

    .nav .nav-header {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }

    .nav .nav-header span {
        font-weight: 700;
        font-size: 18px;
        color: var(--text);
    }

    .nav .close-btn {
        font-size: 22px;
        border: none;
        background: none;
        cursor: pointer;
        color: var(--text);
        transition: 0.2s;
        padding: 0px;
    }

    .nav .close-btn:hover {
        color: var(--primary);
        transform: rotate(90deg);
    }

    .header .nav a {
        padding: 12px 20px;
        border-bottom: 1px solid #f1f1f1;
        font-size: 16px;
        border-radius: 0px;
    }

    .header .header-inner {
        gap: 10px;
    }

    /***footer**/
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-col.contest-col {
        padding: 0px;
    }

    .footer-col h4 {
        margin-bottom: 12px;
    }

    .hero-section .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-section {
        padding: 60px 0px;
    }

    .why-section .section-header h2 {
        font-size: 32px;
    }

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

    .why-section .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .steps-header h2 {
        font-size: 32px;
    }

    .steps-section .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-banner {
        padding: 50px 20px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .winners-section .section-title {
        font-size: 30px;
    }

    .winners-section .winners-grid {
        gap: 40px;
    }

    .faq-header h2 {
        font-size: 30px;
    }

    .legal-header h1 {
        font-size: 34px;
    }
}

@media all and (max-width:767px) {
    .hero-content h1 {
        font-size: 50px;
    }



    .why-section .section-header {
        margin-bottom: 40px;
    }

    .why-section .section-header h2 {
        font-size: 26px;
    }

    .why-section .why-content li {
        font-size: 16px;
    }

    .why-section .cta-btn {
        width: 100%;
        text-align: center;
    }

    .steps-section {
        padding: 60px 0px;
    }

    .steps-header h2 {
        font-size: 26px;
    }

    .steps-section .steps-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        padding: 40px 15px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-desc {
        font-size: 13px;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .winners-section .winners-grid {
        grid-template-columns: 1fr;
    }

    .winners-section .section-title {
        font-size: 24px;
    }

    .winners-section .section-desc {
        font-size: 14px;
    }

    .winners-section .winners-buttons {
        flex-direction: column;
    }

    .winners-section .btn-primary,
    .winners-section .btn-secondary {
        text-align: center;
        justify-content: center;
    }

    .winners-section {
        padding: 60px 0px;
    }

    .faq-section {
        padding: 60px 0px;
        background: #f7f7f7;
    }

    .faq-header h2 {
        font-size: 24px;
    }

    .faq-item h3 {
        font-size: 16px;
    }

    .faq-item p {
        font-size: 14px;
    }

    .legal-header h1 {
        font-size: 26px;
    }

    .legal-content {
        padding: 25px;
    }

    .legal-block h2 {
        font-size: 18px;
    }

    .legal-block p,
    .legal-block li {
        font-size: 14px;
    }

    .how-section {
        padding: 50px 0px;
    }

    .banner-sec-about {
        padding: 35px 0px;
    }

    .about-hero h1 {
        font-size: 28px;
    }

    .about-hero p {
        font-size: 15px;
    }

    .about-block h2 {
        font-size: 20px;
    }

    .about-block p {
        font-size: 14px;
    }

      .notice-bar {
    font-size: 13px;
    padding: 8px 10px;
  }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-section .hero-content h1 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .hero-section .hero-content p {
        font-size: 16px;
        line-height: 1.5rem;
    }

    .hero-section .btn {
        font-size: 14px;
        padding: 11px 20px;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-section .hero-grid {
        gap: 10px;
    }

    .hero-section {
        padding: 50px 0px;
    }

    .why-section .why-grid {
        gap: 25px;
    }
}