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

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bg-light { background-color: #f8f9fa; }
.bg-white { background-color: #ffffff; }

/* Headings */
.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.badge {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1f5fff;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-heading h3 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #111;
    text-transform: uppercase;
}

/* ==========================================
   SPONSOR CARDS & GRIDS
========================================== */
/* ==========================================
   SPONSOR SECTION
========================================== */

.sponsor-section{
    padding:52px 5%;
    background:#f5f6f8;
}

.section-heading{
    text-align:center;
    margin-bottom:32px;
}

.section-heading .badge{
    display:inline-block;
    font-size:.9rem;
    
    letter-spacing:3px;
    text-transform:uppercase;
    color:#000;
    background:none;
    border:none;
    margin-bottom:20px;
     font-family:'Orbitron',sans-serif;
    font-weight:600;
    letter-spacing:5px;
}

.section-heading h2{
    font-family:'Orbitron',sans-serif;
    font-size:42px;
    font-weight:600;
    color:#0a1650;
    margin:0;
    line-height:1.1;
}

/* GRID */

.sponsor-grid{
    display:flex;
    justify-content:space-evenly;
    align-items:center;
    flex-wrap:nowrap;
    gap:20px;
}

/* ==========================================
   PARTNER GRID (Community / Publication / Media / Insights)
========================================== */
.partner-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    align-items:start;
}

.partner-block{
    text-align:center;
}

.partner-block h4{
    font-family:'Orbitron',sans-serif;
    font-size:14px;
    font-weight:700;
    color:#0a1650;
    text-transform:uppercase;
    letter-spacing:0.04em;
    margin-bottom:16px;
}

.partner-block .sponsor-card{
    width:100%;
    margin:0 auto;
}

@media(max-width:991px){
    .partner-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:600px){
    .partner-grid{
        grid-template-columns:1fr;
    }
}

/* CARD */

.sponsor-card{
    width:100%;
    max-width:320px;
    height:140px;

    background:#fff;

    border:2px solid #0A1650;
    border-radius:28px;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;

    transition:.35s ease;
}

.sponsor-card:hover{
    border:1px solid #0a1650;
   
    border-color:#0a1650;
      transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(10,22,80,.15);
}
.sponsor-card:hover img{
    transform:scale(1.08);
}

/* LOGO */

.sponsor-card img{
    width:100%;
    height:100px;
    object-fit:contain;
    transition:.4s ease;
}


/* LOGO SHAKE */

@keyframes logoFloat{
    0%{
        transform:translateX(0);
    }
    25%{
        transform:translateX(-8px);
    }
    50%{
        transform:translateX(8px);
    }
    75%{
        transform:translateX(-5px);
    }
    100%{
        transform:translateX(0);
    }
}

.sponsor-logo.animate{
    animation:logoMove .55s ease;
}

.sponsor-card:hover .sponsor-logo{
    animation:logoFloat .8s ease-in-out infinite;
    transform-origin:center;
}
/* MOBILE */

@media(max-width:768px){

    .sponsor-card{
        width:220px;
        height:120px;
    }

    .sponsor-logo{
        max-width:140px;
        max-height:55px;
    }

    .section-heading h2{
        font-size:2.5rem;
    }
}
/* ==========================================
   GOLD SPONSORS (SWIPER)
========================================== */
/* ==========================================
   GOLD SPONSORS
========================================== */

.gold-partners-section{
    background:linear-gradient(
        135deg,
        #071242 0%,
        #0a1650 50%,
        #122f8a 100%
    );
    padding:50px 0;
    overflow:hidden;
}

.gold-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

/* LEFT SIDE */

.gold-left{
    flex:0 0 25%;
}

.gold-left h2{
    font-family:'Orbitron',sans-serif;
    font-size:42px;
    font-weight:600;
    color:#fff;
    line-height:1.1;
    margin:0;
    text-transform:uppercase;
}

/* RIGHT SIDE */

.gold-right{
    flex:0 0 75%;
    overflow:visible;
}

/* ══════════════════════════════════════════
   GOLD SPONSORS — pure CSS marquee
   No JS dependency, no opacity-0-until-init trap.
══════════════════════════════════════════ */

.gold-right{
    flex:0 0 75%;
    position:relative;
    overflow:hidden;
}

.gold-track-wrap{
    width:100%;
    overflow:hidden;
    position:relative;
}

.gold-track{
    display:flex;
    align-items:center;
    gap:24px;
    width:max-content;
    padding:12px 0;
}

.gold-track.gold-left-scroll{
    animation:goldScrollLeft 22s linear infinite;
}

.gold-track.gold-right-scroll{
    animation:goldScrollRight 22s linear infinite;
}

.gold-track:hover{
    animation-play-state:paused;
}

@keyframes goldScrollLeft{
    0%   { transform:translateX(0); }
    100% { transform:translateX(-50%); }
}

@keyframes goldScrollRight{
    0%   { transform:translateX(-50%); }
    100% { transform:translateX(0); }
}

/* Edge fade masks so logos fade in/out at panel edges */
.gold-right::before,
.gold-right::after{
    content:'';
    position:absolute;
    top:0;
    width:70px;
    height:100%;
    z-index:5;
    pointer-events:none;
}

.gold-right::before{
    left:0;
    background:linear-gradient(to right, #0a1650, transparent);
}

.gold-right::after{
    right:0;
    background:linear-gradient(to left, #122f8a, transparent);
}

/* LOGO BOX */

.gold-logo-box{
    width:240px;
    height:110px;
    flex-shrink:0;

    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:20px;
    backdrop-filter:blur(10px);

    display:flex;
    align-items:center;
    justify-content:center;

    transition:all .35s ease;
}

/* LOGO */

.gold-logo-box img{
    max-width:170px;
    max-height:65px;
    width:auto;
    height:auto;
    object-fit:contain;
    transition:.35s ease;
}

/* HOVER EFFECT */

.gold-logo-box:hover{
    border-color:#f8c84a;
    transform:scale(1.04);
    box-shadow:0 10px 30px rgba(248,200,74,.20);
}

.gold-logo-box:hover img{
    transform:scale(1.06);
}

/* MOBILE */

@media(max-width:991px){

    .gold-container{
        flex-direction:column;
        gap:30px;
    }

    .gold-left{
        flex:auto;
        text-align:center;
    }

    .gold-left h2{
        font-size:36px;
    }

    .gold-right{
        width:100%;
    }

    .gold-logo-box{
        width:180px;
        height:85px;
    }

    .gold-logo-box img{
        max-width:130px;
        max-height:50px;
    }
}

/* ==========================================
   SUPPORTING ASSOCIATIONS
========================================== */

.associations-section{
    padding:52px 0 48px;
    background:#fff;
    overflow:hidden;
    position:relative;
    border-top:1px solid #edf2f7;
}

/* Heading */

.associations-section .section-heading{
    text-align:center;
    margin-bottom:28px;
}

.associations-section .section-heading h2{
    font-size:42px;
    font-weight:600;
    color:#0f172a;
    margin:0;
}

/* ==========================================
   TRACK WRAPPER
========================================== */

.associations-track-wrap{
    position:relative;
    overflow:hidden;
    width:100%;
    margin-bottom:24px;
}

.associations-track-wrap:last-child{
    margin-bottom:0;
}

/* Fade Edges */

.associations-track-wrap::before,
.associations-track-wrap::after{
    content:"";
    position:absolute;
    top:0;
    width:120px;
    height:100%;
    z-index:2;
    pointer-events:none;
}

.associations-track-wrap::before{
    left:0;
    background:linear-gradient(
        to right,
        #fff,
        transparent
    );
}

.associations-track-wrap::after{
    right:0;
    background:linear-gradient(
        to left,
        #fff,
        transparent
    );
}

/* ==========================================
   MOVING TRACK
========================================== */

.associations-track{
    display:flex;
    align-items:center;
    gap:30px;
    width:max-content;
}

.assoc-left{
    animation:scrollAssocLeft 28s linear infinite;
}

.assoc-right{
    animation:scrollAssocRight 28s linear infinite;
}

/* STOP SCROLLING ON HOVER */

.associations-track-wrap:hover .associations-track{
    animation-play-state:paused;
}

/* ==========================================
   LOGO CARD
========================================== */

.assoc-item{
    width:210px;
    height:105px;

    background:#fff;
    border:2px solid #e5e7eb;
    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;

    box-shadow:0 5px 20px rgba(0,0,0,.06);

    transition:.35s ease;
}

.assoc-item img{
    max-width:160px;
    max-height:75px;
    width:auto;
    height:auto;
    object-fit:contain;

    transition: transform .4s ease;
}
.assoc-item:hover img{
    transform: scale(1.18);
}

/* Hover Effect */

.assoc-item:hover{
    border-color:#2563eb;

    box-shadow:
        0 0 0 4px rgba(37,99,235,0.08),
        0 12px 30px rgba(37,99,235,0.18);
}

.assoc-item:hover img{
    transform:scale(1.08);
}

/* ==========================================
   ANIMATIONS
========================================== */

@keyframes scrollAssocLeft{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

@keyframes scrollAssocRight{
    from{
        transform:translateX(-50%);
    }
    to{
        transform:translateX(0);
    }
}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

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

    .assoc-item{
        width:150px;
        height:95px;
    }

    .assoc-item img{
        max-width:110px;
        max-height:50px;
    }

    .associations-track{
        gap:20px;
    }
}
/* ==========================================
   GLOBAL & UTILITIES
========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bg-light { background-color: #f8f9fa; }
.bg-white { background-color: #ffffff; }

/* Headings */
.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.badge {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1f5fff;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-heading h3 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #111;
    text-transform: uppercase;
}

/* ==========================================
   SPONSOR CARDS & GRIDS
========================================== */
/* ==========================================
   SPONSOR SECTION
========================================== */

.sponsor-section{
    padding:52px 5%;
    background:#f5f6f8;
}

.section-heading{
    text-align:center;
    margin-bottom:32px;
}

.section-heading .badge{
    display:inline-block;
    font-size:.9rem;
    
    letter-spacing:3px;
    text-transform:uppercase;
    color:#000;
    background:none;
    border:none;
    margin-bottom:20px;
     font-family:'Orbitron',sans-serif;
    font-weight:600;
    letter-spacing:5px;
}

.section-heading h2{
    font-family:'Orbitron',sans-serif;
    font-size:42px;
    font-weight:600;
    color:#0a1650;
    margin:0;
    line-height:1.1;
}

/* GRID */

.sponsor-grid{
    display:flex;
    justify-content:space-evenly;
    align-items:center;
    flex-wrap:nowrap;
    gap:20px;
}

/* ==========================================
   PARTNER GRID (Community / Publication / Media / Insights)
========================================== */
.partner-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    align-items:start;
}

.partner-block{
    text-align:center;
}

.partner-block h4{
    font-family:'Orbitron',sans-serif;
    font-size:14px;
    font-weight:700;
    color:#0a1650;
    text-transform:uppercase;
    letter-spacing:0.04em;
    margin-bottom:16px;
}

.partner-block .sponsor-card{
    width:100%;
    margin:0 auto;
}

@media(max-width:991px){
    .partner-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:600px){
    .partner-grid{
        grid-template-columns:1fr;
    }
}

/* CARD */

.sponsor-card{
    width:100%;
    max-width:320px;
    height:140px;

    background:#fff;

    border:2px solid #0A1650;
    border-radius:28px;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;

    transition:.35s ease;
}

.sponsor-card:hover{
    border:1px solid #0a1650;
   
    border-color:#0a1650;
      transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(10,22,80,.15);
}
.sponsor-card:hover img{
    transform:scale(1.08);
}

/* LOGO */

.sponsor-card img{
    width:100%;
    height:100px;
    object-fit:contain;
    transition:.4s ease;
}


/* LOGO SHAKE */

@keyframes logoFloat{
    0%{
        transform:translateX(0);
    }
    25%{
        transform:translateX(-8px);
    }
    50%{
        transform:translateX(8px);
    }
    75%{
        transform:translateX(-5px);
    }
    100%{
        transform:translateX(0);
    }
}

.sponsor-logo.animate{
    animation:logoMove .55s ease;
}

.sponsor-card:hover .sponsor-logo{
    animation:logoFloat .8s ease-in-out infinite;
    transform-origin:center;
}
/* MOBILE */

@media(max-width:768px){

    .sponsor-card{
        width:220px;
        height:120px;
    }

    .sponsor-logo{
        max-width:140px;
        max-height:55px;
    }

    .section-heading h2{
        font-size:2.5rem;
    }
}
/* ==========================================
   GOLD SPONSORS (SWIPER)
========================================== */
/* ==========================================
   GOLD SPONSORS
========================================== */

.gold-partners-section{
    background:linear-gradient(
        135deg,
        #071242 0%,
        #0a1650 50%,
        #122f8a 100%
    );
    padding:50px 0;
    overflow:hidden;
}

.gold-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

/* LEFT SIDE */

.gold-left{
    flex:0 0 25%;
}

.gold-left h2{
    font-family:'Orbitron',sans-serif;
    font-size:42px;
    font-weight:600;
    color:#fff;
    line-height:1.1;
    margin:0;
    text-transform:uppercase;
}

/* RIGHT SIDE */

.gold-right{
    flex:0 0 75%;
    overflow:visible;
}

/* ══════════════════════════════════════════
   GOLD SPONSORS — pure CSS marquee
   No JS dependency, no opacity-0-until-init trap.
══════════════════════════════════════════ */

.gold-right{
    flex:0 0 75%;
    position:relative;
    overflow:hidden;
}

.gold-track-wrap{
    width:100%;
    overflow:hidden;
    position:relative;
}

.gold-track{
    display:flex;
    align-items:center;
    gap:24px;
    width:max-content;
    padding:12px 0;
}

.gold-track.gold-left-scroll{
    animation:goldScrollLeft 22s linear infinite;
}

.gold-track.gold-right-scroll{
    animation:goldScrollRight 22s linear infinite;
}

.gold-track:hover{
    animation-play-state:paused;
}

@keyframes goldScrollLeft{
    0%   { transform:translateX(0); }
    100% { transform:translateX(-50%); }
}

@keyframes goldScrollRight{
    0%   { transform:translateX(-50%); }
    100% { transform:translateX(0); }
}

/* Edge fade masks so logos fade in/out at panel edges */
.gold-right::before,
.gold-right::after{
    content:'';
    position:absolute;
    top:0;
    width:70px;
    height:100%;
    z-index:5;
    pointer-events:none;
}

.gold-right::before{
    left:0;
    background:linear-gradient(to right, #0a1650, transparent);
}

.gold-right::after{
    right:0;
    background:linear-gradient(to left, #122f8a, transparent);
}

/* LOGO BOX */

.gold-logo-box{
    width:240px;
    height:110px;
    flex-shrink:0;

    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:20px;
    backdrop-filter:blur(10px);

    display:flex;
    align-items:center;
    justify-content:center;

    transition:all .35s ease;
}

/* LOGO */

.gold-logo-box img{
    max-width:170px;
    max-height:65px;
    width:auto;
    height:auto;
    object-fit:contain;
    transition:.35s ease;
}

/* HOVER EFFECT */

.gold-logo-box:hover{
    border-color:#f8c84a;
    transform:scale(1.04);
    box-shadow:0 10px 30px rgba(248,200,74,.20);
}

.gold-logo-box:hover img{
    transform:scale(1.06);
}

/* MOBILE */

@media(max-width:991px){

    .gold-container{
        flex-direction:column;
        gap:30px;
    }

    .gold-left{
        flex:auto;
        text-align:center;
    }

    .gold-left h2{
        font-size:36px;
    }

    .gold-right{
        width:100%;
    }

    .gold-logo-box{
        width:180px;
        height:85px;
    }

    .gold-logo-box img{
        max-width:130px;
        max-height:50px;
    }
}

/* ==========================================
   SUPPORTING ASSOCIATIONS
========================================== */

.associations-section{
    padding:52px 0 48px;
    background:#fff;
    overflow:hidden;
    position:relative;
    border-top:1px solid #edf2f7;
}

/* Heading */

.associations-section .section-heading{
    text-align:center;
    margin-bottom:28px;
}

.associations-section .section-heading h2{
    font-size:42px;
    font-weight:600;
    color:#0f172a;
    margin:0;
}

/* ==========================================
   TRACK WRAPPER
========================================== */

.associations-track-wrap{
    position:relative;
    overflow:hidden;
    width:100%;
    margin-bottom:24px;
}

.associations-track-wrap:last-child{
    margin-bottom:0;
}

/* Fade Edges */

.associations-track-wrap::before,
.associations-track-wrap::after{
    content:"";
    position:absolute;
    top:0;
    width:120px;
    height:100%;
    z-index:2;
    pointer-events:none;
}

.associations-track-wrap::before{
    left:0;
    background:linear-gradient(
        to right,
        #fff,
        transparent
    );
}

.associations-track-wrap::after{
    right:0;
    background:linear-gradient(
        to left,
        #fff,
        transparent
    );
}

/* ==========================================
   MOVING TRACK
========================================== */

.associations-track{
    display:flex;
    align-items:center;
    gap:30px;
    width:max-content;
}

.assoc-left{
    animation:scrollAssocLeft 28s linear infinite;
}

.assoc-right{
    animation:scrollAssocRight 28s linear infinite;
}

/* STOP SCROLLING ON HOVER */

.associations-track-wrap:hover .associations-track{
    animation-play-state:paused;
}

/* ==========================================
   LOGO CARD
========================================== */

.assoc-item{
    width:210px;
    height:105px;

    background:#fff;
    border:2px solid #e5e7eb;
    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;

    box-shadow:0 5px 20px rgba(0,0,0,.06);

    transition:.35s ease;
}

.assoc-item img{
    max-width:160px;
    max-height:75px;
    width:auto;
    height:auto;
    object-fit:contain;

    transition: transform .4s ease;
}
.assoc-item:hover img{
    transform: scale(1.18);
}

/* Hover Effect */

.assoc-item:hover{
    border-color:#2563eb;

    box-shadow:
        0 0 0 4px rgba(37,99,235,0.08),
        0 12px 30px rgba(37,99,235,0.18);
}

.assoc-item:hover img{
    transform:scale(1.08);
}

/* ==========================================
   ANIMATIONS
========================================== */

@keyframes scrollAssocLeft{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

@keyframes scrollAssocRight{
    from{
        transform:translateX(-50%);
    }
    to{
        transform:translateX(0);
    }
}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

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

    .assoc-item{
        width:150px;
        height:95px;
    }

    .assoc-item img{
        max-width:110px;
        max-height:50px;
    }

    .associations-track{
        gap:20px;
    }
}
/* ==========================================
   MAIN FOOTER
========================================== */
.footer {
    background: linear-gradient(to right, #0a1c3e, #1a428a, #0a1c3e);
    color: #ffffff;
    padding-top: 64px;
    font-size: 0.95rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.4fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 50px;
}

.footer-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #E63B2E);
    border-radius: 2px;
}

.info-block p {
    line-height: 1.85;
    color: rgba(255,255,255,0.75);
    text-align: left;
    transition: color 0.3s ease;
}

.info-block p:hover {
    color: #FFD700;
}

/* Links */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.footer-nav a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-nav a i {
    color: #FFD700;
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.footer-nav a:hover {
    color: #FFD700;
    padding-left: 5px;
}

.footer-nav a:hover i {
    transform: translateX(2px);
}

/* Contact */
.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    margin-bottom: 8px;
}

.contact-list li,
.contact-list a {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list li span,
.contact-list a span {
    flex: 1;
    min-width: 0;
    line-height: 1.6;
}

.contact-list i {
    color: #FFD700;
    font-size: 1.05rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}

.contact-list a:hover {
    color: #FFD700;
}

/* Socials */
.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 26px;
}

.btn-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-social:hover {
    background: #FFD700;
    border-color: #FFD700;
    transform: translateY(-3px);
    color: #0a1c3e;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.25);
    padding: 22px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #FFD700;
}

/* ==========================================
   RESPONSIVE (TABLET & MOBILE)
========================================== */
@media (max-width: 992px) {
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gold-partners-section {
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 20px;
        gap: 40px;
    }
    
    .gold-left {
        padding-left: 0;
        flex: auto;
    }
    
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .sponsor-grid, .partner-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-heading h2 {
        font-size: 2rem;
    }
}