/* ---------- RESET & GLOBAL ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* සිනිඳු scroll එක */
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: #0a0c0f;
    color: #eef2f6;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}
/* ---------- GUIDELINES SECTION ---------- */
#guidelines {
    scroll-margin-top: 100px;
    width: 100%;
    margin: 40px 0;
}

.guidelines-panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);  /* Default 2 columns */
    gap: 20px;
    width: 100%;
}

.guide-item {
    background: #151a24;
    border: 1px solid #b22234;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.guide-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(178, 34, 52, 0.3);
    border-color: #ffd966;
}

.guide-icon {
    background: #b22234;
    min-width: 50px;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.guide-content {
    flex: 1;
}

.guide-content h4 {
    color: #ffd966;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.guide-content p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* ===== MOBILE VERSION (768px ට අඩු) ===== */
@media screen and (max-width: 768px) {
    .guidelines-panel {
        grid-template-columns: repeat(2, 1fr);  /* 2 columns */
        gap: 12px;
        justify-items: center;  /* Center items horizontally */
    }

    .guide-item {
        flex-direction: column;     /* Stack vertically */
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px 12px;
        width: 100%;
        max-width: 180px;           /* Limit width for better appearance */
        margin: 0 auto;              /* Center the card */
        gap: 10px;
    }

    .guide-icon {
        min-width: 45px;
        width: 45px;
        height: 45px;
        font-size: 1.6rem;
        margin: 0 auto;
    }

    .guide-content {
        width: 100%;
    }

    .guide-content h4 {
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .guide-content p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
}

/* ===== SMALL MOBILE (480px ට අඩු) ===== */
@media screen and (max-width: 480px) {
    .guidelines-panel {
        gap: 10px;
    }

    .guide-item {
        padding: 15px 8px;
        max-width: 160px;
    }

    .guide-icon {
        min-width: 40px;
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }

    .guide-content h4 {
        font-size: 0.9rem;
    }

    .guide-content p {
        font-size: 0.7rem;
    }
}

/* ===== VERY SMALL MOBILE (360px ට අඩු) ===== */
@media screen and (max-width: 360px) {
    .guide-item {
        max-width: 140px;
        padding: 12px 6px;
    }

    .guide-icon {
        min-width: 35px;
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .guide-content h4 {
        font-size: 0.8rem;
    }

    .guide-content p {
        font-size: 0.65rem;
    }
}

/* ===== CURSOR EFFECT 1: GLOW TRAIL ===== */
.cursor-glow {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(178, 34, 52, 0.5);
    filter: blur(8px);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: screen;
}

.cursor-glow.trail {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.3);
    filter: blur(12px);
}


a:hover ~ .cursor-glow,
button:hover ~ .cursor-glow,
.nav-links a:hover ~ .cursor-glow,
.btn-submit:hover ~ .cursor-glow {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.4);
    mix-blend-mode: overlay;
}

/* Scroll Progress Bar (transmission effect එක වගේ) */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #b22234, #ffd966, #b22234);
    z-index: 10001;
    box-shadow: 0 0 20px #b22234;
    transition: width 0.1s ease;
}

/* Section Transitions */
section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- LOADING ANIMATION ---------- */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0f1215;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), visibility 0.8s;
    backdrop-filter: blur(10px);
}

.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.loader-svg {
    width: 120px;
    height: 120px;
    animation: rotate 2s linear infinite;
}

.loader-svg circle {
    fill: none;
    stroke: #b22234;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 280;
    stroke-dashoffset: 100;
    animation: dash 1.8s ease-in-out infinite;
    filter: drop-shadow(0 0 10px #b22234);
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 280;
    }

    50% {
        stroke-dashoffset: 60;
    }

    100% {
        stroke-dashoffset: 280;
    }
}

.loader-text {
    font-weight: 400;
    letter-spacing: 6px;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #fff0d0, #b22234);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.skeleton-blocks {
    display: flex;
    gap: 8px;
}

.skeleton-blocks span {
    width: 12px;
    height: 12px;
    background: #b22234;
    border-radius: 4px;
    animation: pulseBlock 1.4s infinite ease-in-out;
}

.skeleton-blocks span:nth-child(2) {
    animation-delay: 0.2s;
    background: #c0392b;
}

.skeleton-blocks span:nth-child(3) {
    animation-delay: 0.4s;
    background: #e67e22;
}

@keyframes pulseBlock {

    0%,
    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* ---------- MAIN LAYOUT ---------- */
.app {
    max-width: 1440px;
    margin: 0 auto;
    padding: 2rem 2rem 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.5s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- NAVBAR ---------- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(20, 22, 27, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(180, 40, 40, 0.25);
    border-radius: 80px;
    padding: 0.8rem 1.8rem;
    margin-bottom: 3rem;
    box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 20px;
    z-index: 999;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo-img {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    border: 2px solid #b22234;
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 15px #b22234;
    transition: transform 0.3s ease;
}

.nav-logo-imgs {
   height: 45px;
   width: 90px;
    border-radius: 0%;
    border: 0px solid #b22234;
  /* ප්‍රධාන වෙනස්කම් මෙතැන් සිට */
    background-size: contain;      /* image එක box එක ඇතුළේ සම්පූර්ණයෙන් පෙනෙන සේ සකසයි */
    background-repeat: no-repeat;  /* image එක නැවත නැවත දිස්වීම වළක්වයි */
    background-position: center;   /* image එක හරියටම මැදට ගනී */
    transition: transform 0.3s ease;
}

.nav-logo-img:hover {
    transform: scale(1.1);
    border-color: #ffd966;
    box-shadow: 0 0 25px #b22234;
}

.nav-logo-img.old-main {
    background-image: url('https://i.ibb.co/LDmypMJw/1b89605c-61fd-4405-988b-3f2072787b05.jpg');
}

.nav-logo-img.old-cs {
    background-image: url('https://i.ibb.co/Wv1bGqbs/images.jpg');
}

/* අලුත් BCCS Logo එක */
.nav-logo-imgs.bccs-logo {
    background-image: url('https://i.ibb.co/XkCBB0P4/image-removebg-preview.png');
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: #eee;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: 0.25s ease;
    cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active {
    border-bottom-color: #b22234;
    color: #fff;
    text-shadow: 0 0 8px #b22234;
}

/* ---------- HERO SECTION ---------- */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem 0 4rem;
    position: relative;
}

.hero-logos {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
    background: rgba(22, 24, 29, 0.5);
    backdrop-filter: blur(8px);
    padding: 30px 40px;
    border-radius: 100px;
    border: 1px solid rgba(180, 40, 40, 0.3);
}

.hero-logo-card {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 0px solid #b22234;
    box-shadow: 0 15px 25px -5px #220000, 0 0 0 2px rgba(255, 215, 0, 0.2) inset;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-logo-card:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: #ffd966;
    box-shadow: 0 0 30px #b22234;
}

.hero-logo-card.old-main {
    background-image: url('https://i.ibb.co/LDmypMJw/1b89605c-61fd-4405-988b-3f2072787b05.jpg');
}

.hero-logo-card.old-cs {
    background-image: url('https://i.ibb.co/Wv1bGqbs/images.jpg');
}

.hero-logo-card.new-main {
    background-image: url('https://i.ibb.co/9m92VVB8/Whats-App-Image-2026-02-23-at-11-41-23-AM.jpg');
}

.hero-logo-card.new-cs {
    background-image: url('https://i.ibb.co/Kxv3TJcm/Whats-App-Image-2026-02-23-at-11-41-24-AM.jpg');
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    letter-spacing: -1px;
    background: linear-gradient(to right, #f0e68c, #ffb6b6, #b22234);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px #b22234);
    margin-top: 20px;
}

.hero-sub {
    font-size: 1.4rem;
    color: #aaa;
    max-width: 700px;
    text-align: center;
    margin-top: 15px;
    border-top: 1px dashed #b22234;
    padding-top: 20px;
}

.hero-sub strong {
    color: #ffb5b5;
}

/* ===== PRIZE MONEY SECTION ===== */
.prize-grid {
    margin: 80px 0 60px;
    position: relative;
}

.section-badge {
    display: inline-block;
    background: rgba(178, 34, 52, 0.2);
    border: 1px solid #b22234;
    border-radius: 100px;
    padding: 8px 25px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ffb5b5;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.prize-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 50px;
    line-height: 1.2;
}

.prize-title .highlight {
    background: linear-gradient(135deg, #b22234, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.prize-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #b22234, #ffd966, transparent);
}

.prize-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.prize-card {
    background: rgba(20, 22, 27, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(178, 34, 52, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.5);
}

/* Individual card styles */
.prize-card.first {
    border-left: 4px solid #ffd700;
    border-right: 4px solid #b22234;
    background: linear-gradient(145deg, rgba(30, 20, 20, 0.9), rgba(20, 22, 27, 0.9));
}

.prize-card.second {
    border-left: 4px solid #c0c0c0;
    border-right: 4px solid #b22234;
}

.prize-card.third {
    border-left: 4px solid #cd7f32;
    border-right: 4px solid #b22234;
}

/* Hover effect */
.prize-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #b22234;
    box-shadow: 0 30px 40px -10px #b22234;
}

.prize-card.first:hover {
    box-shadow: 0 30px 40px -10px #ffd700;
}

.prize-card.second:hover {
    box-shadow: 0 30px 40px -10px #c0c0c0;
}

.prize-card.third:hover {
    box-shadow: 0 30px 40px -10px #cd7f32;
}

/* Glow effect */
.prize-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(178, 34, 52, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.05s;
    pointer-events: none;
}

.prize-card:hover .prize-glow {
    opacity: 1;
}

.prize-medal {
    font-size: 4rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
    transform: scale(1);
    transition: transform 0.3s;
}

.prize-card:hover .prize-medal {
    transform: scale(1.1) rotate(5deg);
}

.prize-place {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ccc;
    margin-bottom: 20px;
}

.prize-amount {
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #ffb5b5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    line-height: 1.2;
}

.prize-amount .prize-small {
    font-size: 1.8rem;
    font-weight: 400;
}

.prize-desc {
    color: #aaa;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border-top: 1px dashed rgba(178, 34, 52, 0.5);
    padding-top: 15px;
    margin-top: 15px;
}

.prize-footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(178, 34, 52, 0.1);
    border-radius: 100px;
    border: 1px dashed #b22234;
    color: #ffb5b5;
    font-size: 1.1rem;
    backdrop-filter: blur(5px);
}

/* Responsive */
@media (max-width: 800px) {
    .prize-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .prize-title {
        font-size: 2.2rem;
    }

    .prize-amount {
        font-size: 2.5rem;
    }

    .prize-card {
        padding: 30px 20px;
    }

    .prize-footer {
        border-radius: 30px;
        font-size: 0.95rem;
        padding: 15px;
    }
}

/* Section Transitions */
section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- GUIDELINES SECTION ---------- */
#guidelines {
    scroll-margin-top: 100px;
    /* navbar එකට යන්න ඉඩ දෙනවා */
}

.guidelines-panel {
    background: #151a24;
    border-radius: 50px;
    padding: 2.5rem;
    border: 1px solid #b22234;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 50px 0;
}

.guide-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.guide-icon {
    background: #b22234;
    width: 50px;
    height: 50px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* ---------- FORM SECTION ---------- */
#submission {
    scroll-margin-top: 100px;
}

.form-section {
    background: rgba(16, 18, 22, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid #2f2f3a;
    border-radius: 60px;
    padding: 3rem;
    margin: 4rem 0;
    box-shadow: 0 30px 50px -20px #000;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.section-title span {
    background: #b22234;
    padding: 0.3rem 1rem;
    border-radius: 100px;
    font-size: 1rem;
    color: white;
}

.input-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.input-full {
    grid-column: span 2;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input-group label {
    font-weight: 500;
    color: #ccc;
    letter-spacing: 0.3px;
    margin-left: 10px;
}

.input-group input,
.input-group select,
.input-group textarea {
    background: #1e2128;
    border: 1px solid #333842;
    border-radius: 40px;
    padding: 1rem 1.8rem;
    font-family: 'Space Grotesk', sans-serif;
    color: white;
    font-size: 1rem;
    transition: 0.2s;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: #b22234;
    outline: none;
    box-shadow: 0 0 0 4px rgba(178, 34, 52, 0.2);
    background: #252a35;
}

textarea {
    border-radius: 30px !important;
    resize: vertical;
}

.file-zone {
    border: 2px dashed #b22234;
    background: #1b1e26;
    border-radius: 50px;
    padding: 3rem;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.file-zone:hover {
    border-color: #f5b5b5;
    background: #262b36;
}

.file-zone i {
    font-size: 3rem;
    color: #b22234;
    margin-bottom: 15px;
}

.file-list {
    margin-top: 20px;
}

.file-item {
    background: #2b2f3a;
    border-radius: 40px;
    padding: 0.8rem 1.8rem;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    border-left: 5px solid #b22234;
}

.btn-submit {
    background: linear-gradient(135deg, #b22234, #6a1a1a, #b22234);
    background-size: 200% 200%;
    border: none;
    padding: 1.5rem 4rem;
    border-radius: 80px;
    font-weight: 700;
    font-size: 1.8rem;
    color: #ffecaa;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.5s;
    margin: 40px auto 0;
    display: block;
    box-shadow: 0 20px 30px -5px #200000, 0 0 30px #b22234;
    animation: gradientMove 4s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.btn-submit:hover {
    transform: scale(1.02);
    box-shadow: 0 0 50px #b22234;
    color: white;
}

/* ---------- STATS CARDS ---------- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 50px 0;
}

.stat-card {
    background: rgba(22, 24, 29, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid #2a2c35;
    border-radius: 40px;
    padding: 2rem 1.5rem;
    transition: 0.3s;
    box-shadow: 0 18px 30px -10px black;
    border-left: 4px solid #b22234;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(40, 30, 30, 0.8);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #b22234;
}

.stat-label {
    color: #bbb;
    font-weight: 300;
    letter-spacing: 1px;
}

/* ---------- FOOTER ---------- */
#contact {
    scroll-margin-top: 100px;
}

.footer {
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(15px);
    border-radius: 50px 50px 0 0;
    padding: 3rem 2rem;
    margin-top: 5rem;
    border-top: 2px solid #b22234;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* ---------- SUCCESS MODAL ---------- */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.success-modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: #1d212b;
    border-radius: 80px;
    padding: 4rem;
    border: 3px solid #b22234;
    box-shadow: 0 0 80px #b22234;
    text-align: center;
    max-width: 500px;
    transform: scale(0.7);
    transition: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.show .modal-card {
    transform: scale(1);
}

.modal-card i {
    font-size: 5rem;
    color: #b22234;
    margin-bottom: 20px;
}

.modal-card button {
    background: #b22234;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    margin-top: 30px;
    cursor: pointer;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 800px) {
    .input-grid {
        grid-template-columns: 1fr;
    }

    .input-full {
        grid-column: span 1;
    }

    .hero-title {
        font-size: 3rem;
    }

    .navbar {
        flex-direction: column;
        gap: 20px;
        border-radius: 40px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-logos {
        gap: 15px;
        padding: 20px;
        border-radius: 50px;
    }

    .hero-logo-card {
        width: 70px;
        height: 70px;
    }

    .nav-logo {
        gap: 10px;
    }

    .nav-logo-img {
        height: 35px;
        width: 35px;
    }

    .nav-logo-imgs {
        height: 35px;
        width: 160px;
    }
}