/* ========================================= */
/* RESET */
/* ========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* ========================================= */
/* ROOT VARIABLES */
/* ========================================= */

:root{

    --bg:#050505;
    --white:#F5F5F5;
    --text:#A0A0A0;

    --card:#0D0D0D;
    --card-light:#151515;

    --glass:rgba(255,255,255,0.04);

    --border:rgba(255,255,255,0.08);

}

/* ========================================= */
/* GLOBAL */
/* ========================================= */

html{
    scroll-behavior:smooth;
}

body{

    background:var(--bg);

    color:var(--white);

    font-family:'Inter',sans-serif;

    overflow-x:hidden;

}

/* ========================================= */
/* SCROLLBAR */
/* ========================================= */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-thumb{

    background:#4D4D4D;

    border-radius:10px;

}

/* ========================================= */
/* BACKGROUND EFFECTS */
/* ========================================= */

.background-glow{

    position:fixed;

    inset:0;

    z-index:-2;

    overflow:hidden;

}

.glow{

    position:absolute;

    border-radius:50%;

    filter:blur(140px);

    opacity:.12;

}

.glow-1{

    width:500px;
    height:500px;

    background:#404040;

    top:-120px;
    left:-120px;

}

.glow-2{

    width:450px;
    height:450px;

    background:#777777;

    right:-100px;
    bottom:-100px;

    opacity:.03;

}

.grid-overlay{

    position:fixed;

    inset:0;

    z-index:-1;

    background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);

    background-size:80px 80px;

    pointer-events:none;

}

/* ========================================= */
/* NAVBAR */
/* ========================================= */

nav{

    position:fixed;

    top:20px;
    left:50%;

    transform:translateX(-50%);

    width:92%;
    max-width:1450px;

    height:82px;

    z-index:100;

    padding:0 28px;

    background:rgba(10,10,10,.75);

    border:1px solid var(--border);

    backdrop-filter:blur(14px);

    border-radius:30px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    transition:.35s;

}

nav.scrolled{

    background:rgba(0,0,0,.88);

    box-shadow:0 10px 40px rgba(0,0,0,.45);

}

/* ========================================= */
/* LOGO */
/* ========================================= */

/* ========================================= */
/* LOGO */
/* ========================================= */

.logo,
.menu-logo{

    display:flex;
    align-items:center;

    gap:16px;

    text-decoration:none;

}

.logo img,
.menu-logo img{

    width:150px;
    height:150px;

    object-fit:contain;

    filter:
    drop-shadow(0 0 12px rgba(255,255,255,0.08));

}

.logo-text{

    font-family:'Sora',sans-serif;

    font-size:24px;

    font-weight:600;

    letter-spacing:1px;

    color:#FFFFFF;

    line-height:1;

}

.logo-text span{
    color:#D0D0D0;
}

.menu-logo .logo-text{

    font-size:28px;

}

/* ...existing code... */

/* ========================================= */
/* NAV ACTIONS */
/* ========================================= */

.nav-actions{

    display:flex;
    align-items:center;

    gap:18px;

}

/* ========================================= */
/* BUTTONS */
/* ========================================= */

.btn{

    padding:16px 28px;

    border-radius:18px;

    border:1px solid var(--border);

    text-decoration:none;

    color:var(--white);

    transition:.35s;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    gap:10px;

    font-size:15px;

    cursor:pointer;

}

.btn-primary{

    background:
    linear-gradient(
    135deg,
    #555555,
    #232323
    );

}

.btn-primary:hover{

    transform:translateY(-3px);

    background:
    linear-gradient(
    135deg,
    #666666,
    #2B2B2B
    );

}

.btn-secondary{

    background:rgba(255,255,255,0.03);

}

.btn-secondary:hover{

    background:rgba(255,255,255,0.08);

}

/* ========================================= */
/* MENU BUTTON */
/* ========================================= */

.menu-btn,
.close-menu{

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;

    transition:.35s;

    background:rgba(255,255,255,0.04);

    border:1px solid var(--border);

}

.menu-btn{

    width:56px;
    height:56px;

    border-radius:18px;

    font-size:24px;

}

.menu-btn:hover{

    background:rgba(255,255,255,0.08);

}

.close-menu{

    width:60px;
    height:60px;

    border-radius:18px;

    font-size:28px;

}

.close-menu:hover{

    transform:rotate(90deg);

}
/* ========================================= */
/* INFRASTRUCTURE SECTION */
/* ========================================= */

.infrastructure-section{

    position:relative;

    padding:140px 7%;

}

.infrastructure-container{

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:90px;

}

.infrastructure-left{
    width:50%;
}

.infrastructure-right{
    width:50%;
}

.infrastructure-image-wrapper{
    position:relative;
}

/* ========================================= */
/* MAIN IMAGE */
/* ========================================= */

.infrastructure-main-image{

    width:100%;
    height:760px;

    object-fit:cover;

    border-radius:42px;

    border:1px solid rgba(255,255,255,0.08);

    box-shadow:
    0 40px 120px rgba(0,0,0,.45);

}

/* ========================================= */
/* FLOATING CARD */
/* ========================================= */
/* ========================================= */
/* INFRASTRUCTURE FLOATING CARD */
/* ========================================= */

.infrastructure-floating-card{

    position:absolute;

    left:35px;
    bottom:35px;

    width:340px;

    overflow:hidden;

    border-radius:30px;

    background:rgba(10,10,10,.96);

    border:1px solid rgba(255,255,255,.06);

    backdrop-filter:blur(18px);

    box-shadow:0 20px 50px rgba(0,0,0,.45);

    z-index:5;

}

.floating-image{

    width:100%;
    height:210px;

    overflow:hidden;

}

.floating-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

}

.floating-content{

    padding:24px;

}

.floating-content h3{

    font-size:28px;

    line-height:1.08;

    margin-bottom:14px;

    font-family:'Sora',sans-serif;

    font-weight:700;

    color:#FFFFFF;

}

.floating-content p{

    font-size:16px;

    line-height:1.7;

    color:#AFAFAF;

}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media(max-width:768px){

    .infrastructure-floating-card{

        width:82%;

        left:50%;

        transform:translateX(-50%);

        bottom:20px;

    }

    .floating-image{

        height:180px;

    }

    .floating-content{

        padding:20px;

    }

    .floating-content h3{

        font-size:24px;

    }

    .floating-content p{

        font-size:15px;

    }

}
/* ========================================= */
/* CONTENT */
/* ========================================= */

.infrastructure-right h2{

    font-family:'Sora',sans-serif;

    font-size:clamp(38px,4vw,62px);

    line-height:1.1;

    margin-bottom:30px;

}

.infrastructure-description{

    color:var(--text);

    line-height:1.9;

    font-size:17px;

    margin-bottom:45px;

}

/* ========================================= */
/* FEATURES */
/* ========================================= */

.infrastructure-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;

    margin-bottom:45px;

}

.infra-box{

    display:flex;
    align-items:center;

    gap:18px;

    padding:24px 26px;

    border-radius:24px;

    background:#0D0D0D;

    border:1px solid rgba(255,255,255,0.08);

    transition:.35s;

}

.infra-box:hover{

    transform:translateY(-5px);

    border-color:rgba(59,130,246,.45);

    background:#121212;

    box-shadow:
    0 10px 30px rgba(59,130,246,.08);

}

.infra-box i{

    width:60px;
    height:60px;

    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#111827;

    color:#60A5FA;

    font-size:26px;

}

.infra-box span{

    color:#FFFFFF;

    font-size:17px;

    font-weight:500;

    line-height:1.5;

}
/* ========================================= */
/* INFRA HERO */
/* ========================================= */

.infra-hero{

    position:relative;

    height:100vh;

    overflow:hidden;

    display:flex;
    align-items:center;
    justify-content:center;

}

.infra-hero img{

    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

}

.infra-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    to bottom,
    rgba(0,0,0,.55),
    rgba(0,0,0,.75)
    );

}

.infra-hero-content{

    position:relative;

    z-index:5;

    text-align:center;

    max-width:950px;

    padding:0 20px;

}

.infra-hero-content h1{

    font-family:'Sora',sans-serif;

    font-size:clamp(60px,8vw,120px);

    line-height:1;

    margin-bottom:30px;

}

.infra-hero-content p{

    font-size:20px;

    color:#D0D0D0;

    line-height:1.9;

}

/* ...existing code... */

/* ========================================= */
/* STATS */
/* ========================================= */

.infra-stats{

    padding:120px 7%;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.infra-stat-card{

    padding:50px 30px;

    border-radius:32px;

    background:#0D0D0D;

    border:1px solid rgba(255,255,255,0.08);

    text-align:center;

}

.infra-stat-card h2{

    font-size:62px;

    margin-bottom:15px;

    font-family:'Sora',sans-serif;

    color:#60A5FA;

}

.infra-stat-card p{

    color:#BDBDBD;

    font-size:17px;

}

/* ...existing code... */

/* ========================================= */
/* SHOWCASE */
/* ========================================= */

.infra-showcase{

    padding:50px 7% 140px;

}

.showcase-grid{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:80px;

    align-items:center;

}

.showcase-images{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.showcase-large img{

    width:100%;
    height:520px;

    object-fit:cover;

    border-radius:36px;

}

.showcase-small-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:24px;

}

.small-image img{

    width:100%;
    height:240px;

    object-fit:cover;

    border-radius:28px;

}

.showcase-content h2{

    font-size:clamp(40px,4vw,62px);

    margin-bottom:28px;

    line-height:1.1;

    font-family:'Sora',sans-serif;

}

.showcase-content p{

    color:#BDBDBD;

    line-height:1.9;

    margin-bottom:40px;

    font-size:17px;

}

.showcase-points{

    display:flex;
    flex-direction:column;

    gap:20px;

}

.showcase-point{

    display:flex;
    align-items:center;

    gap:16px;

    padding:22px 24px;

    background:#0F0F0F;

    border-radius:22px;

    border:1px solid rgba(255,255,255,0.08);

}

.showcase-point i{

    color:#60A5FA;

    font-size:24px;

}

/* ...existing code... */

/* ========================================= */
/* PARALLAX */
/* ========================================= */

/* ========================================= */
/* PARALLAX */
/* ========================================= */

.infra-parallax{

    position:relative;

    height:85vh;

    overflow:hidden;

    display:flex;
    align-items:center;
    justify-content:center;

    isolation:isolate;

    margin-top:40px;

    border-radius:40px;

}

.infra-parallax img{

    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    

    z-index:-3;

}

.parallax-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    to bottom,
    rgba(0,0,0,.75),
    rgba(0,0,0,.82)
    );

    z-index:-2;

}

/* EXTRA DARK LAYER */

.infra-parallax::after{

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(
    circle at center,
    rgba(255,255,255,0.02),
    transparent 60%
    );

    z-index:-1;

}

.parallax-content{

    position:relative;

    z-index:5;

    text-align:center;

    padding:0 20px;

    max-width:1000px;

}

.parallax-content h2{

    font-size:clamp(50px,6vw,100px);

    margin-bottom:25px;

    font-family:'Sora',sans-serif;

    line-height:1;

}

.parallax-content p{

    font-size:20px;

    color:#D0D0D0;

    line-height:1.8;

}

/* ...existing code... */


/* ========================================= */
/* GALLERY */
/* ========================================= */

.infra-gallery{

    padding:140px 7%;

}

.gallery-title{

    text-align:center;

    margin-bottom:80px;

}

.gallery-title h2{

    font-size:clamp(40px,5vw,70px);

    line-height:1.1;

    margin-top:25px;

    font-family:'Sora',sans-serif;

}

/* ========================================= */
/* MASONRY */
/* ========================================= */

.masonry-gallery{

    columns:4 320px;

    column-gap:24px;

}

.gallery-item{

    break-inside:avoid;

    margin-bottom:24px;

    overflow:hidden;

    border-radius:30px;

    position:relative;

}

.gallery-item img{

    width:100%;

    display:block;

    border-radius:30px;

    transition:1s;

    filter:grayscale(.2);

}

.gallery-item:hover img{

    transform:scale(1.08);

    filter:grayscale(0);

}

/* ========================================= */
/* CTA */
/* ========================================= */

.infra-cta{

    padding:140px 7%;

    text-align:center;

}

.infra-cta h2{

    font-size:clamp(42px,5vw,80px);

    line-height:1.1;

    margin-bottom:30px;

    font-family:'Sora',sans-serif;

}

.infra-cta p{

    max-width:800px;

    margin:auto auto 45px;

    color:#BDBDBD;

    line-height:1.9;

    font-size:18px;

}

/* ========================================= */
/* FULLSCREEN MENU */
/* ========================================= */

.fullscreen-menu{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.96);

    backdrop-filter:blur(18px);

    z-index:500;

    padding:40px 7%;

    
    visibility:hidden;

    transition:.45s;

    overflow-y:auto;

}

.fullscreen-menu.active{

    opacity:1;
    visibility:visible;

}

/* ========================================= */
/* MENU CONTENT */
/* ========================================= */

.menu-top{

    display:flex;
    align-items:center;
    justify-content:space-between;

    margin-bottom:80px;

}

.menu-content{

    display:flex;
    justify-content:space-between;

    gap:80px;

    min-height:70vh;

}

.menu-left{

    display:flex;
    flex-direction:column;

    gap:28px;

    padding-top:20px;

}

/* ========================================= */
/* MENU LINKS */
/* ========================================= */

.menu-link{

    position:relative;

    font-family:'Sora',sans-serif;

    font-size:clamp(52px,6vw,110px);

    text-decoration:none;

    color:#707070;

    line-height:1;

    transition:.35s;

    width:fit-content;

    font-weight:500;

    letter-spacing:-2px;

    opacity:1 !important;

}

.menu-link:hover{

    color:#FFFFFF;

    transform:translateX(12px);

    text-shadow:
    0 0 18px rgba(255,255,255,.18);

}
.menu-link{

    cursor:pointer;

}

/* ========================================= */
/* MENU RIGHT */
/* ========================================= */

.menu-right{

    width:420px;

    display:flex;
    flex-direction:column;
    justify-content:space-between;

}

.menu-box{

    padding:35px;

    border-radius:30px;

    background:#0F0F0F;

    border:1px solid rgba(255,255,255,0.06);

}

.logo-box{

    display:flex;
    align-items:center;
    justify-content:center;

    min-height:420px;

    overflow:hidden;

}

.logo-box img{

    width:100%;
    max-width:320px;

    object-fit:contain;

}

/* ========================================= */
/* CONTACT */
/* ========================================= */

.menu-contact{

    display:flex;
    flex-direction:column;

    gap:25px;

}

.contact-item span{

    display:block;

    margin-bottom:10px;

    color:var(--text);

    font-size:14px;

}

.contact-item a{

    color:var(--white);

    text-decoration:none;

    font-size:24px;

    transition:.3s;

}

.contact-item a:hover{
    color:#D0D0D0;
}

/* ========================================= */
/* HERO SECTION */
/* ========================================= */

.hero{

    min-height:100vh;

    padding:170px 7% 100px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:70px;

    position:relative;

}

.hero-left{

    width:58%;

    position:relative;

    z-index:5;

}

.hero-right{

    width:45%;

    position:relative;

}



/* ========================================= */
/* HERO CONTENT */
/* ========================================= */

.hero h1{

    font-family:'Sora',sans-serif;

    font-size:clamp(70px,8vw,130px);

    line-height:1.02;

    font-weight:600;

    margin-bottom:30px;

}

.hero h1 span{
    color:#D6D6D6;
}

.hero p{

    font-size:18px;

    line-height:1.9;

    color:var(--text);

    max-width:680px;

    margin-bottom:45px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

/* ========================================= */
/* HERO IMAGE */
/* ========================================= */

.hero-image{

    width:100%;
    height:720px;

    border-radius:42px;

    overflow:hidden;

    position:relative;

    border:1px solid rgba(255,255,255,0.08);

    background:#111111;

    box-shadow:
    0 40px 120px rgba(0,0,0,.45);

}

.hero-image img{

    width:100%;
    height:100%;

    object-fit:cover;

}

.hero-image::after{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    to top,
    rgba(0,0,0,.7),
    transparent 40%
    );

}

/* ========================================= */
/* FLOATING CARD */
/* ========================================= */

.floating-card{

    position:absolute;

    z-index:30;

    padding:22px;

    border-radius:28px;

    background:#101010;

    border:1px solid rgba(255,255,255,0.08);

    box-shadow:
    0 20px 50px rgba(0,0,0,.45);

}

.premium-card{

    right:-30px;
    top:80px;

    width:340px;

}

.floating-card h3{

    font-size:30px;

    margin-bottom:12px;

    font-family:'Sora',sans-serif;

    color:#FFFFFF;

    line-height:1.2;

}

.floating-card p{

    color:#BFBFBF;

    font-size:18px;

    line-height:1.8;

}

/* ========================================= */
/* ABOUT SECTION */
/* ========================================= */

.about-section{

    position:relative;

    padding:140px 7%;

}

.about-container{

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:90px;

}

.about-left{
    width:48%;
}

.about-right{
    width:52%;
}

.about-image-wrapper{
    position:relative;
}

.about-image{

    width:100%;
    height:700px;

    object-fit:cover;

    border-radius:42px;

    border:1px solid rgba(255,255,255,0.08);

    box-shadow:
    0 40px 120px rgba(0,0,0,.45);

}

/* ========================================= */
/* ABOUT FLOATING CARD */
/* ========================================= */

.about-floating-card{

    position:absolute;

    right:-40px;
    bottom:40px;

    width:320px;

    padding:30px;

    border-radius:28px;

    background:#111111;

    border:1px solid rgba(255,255,255,0.08);

    box-shadow:
    0 20px 50px rgba(0,0,0,.45);

    z-index:20;

}

.about-floating-card h3{

    font-size:28px;

    margin-bottom:12px;

    font-family:'Sora',sans-serif;

}

.about-floating-card p{

    color:#C0C0C0;

    line-height:1.9;

    font-size:16px;

}

/* ========================================= */
/* ABOUT CONTENT */
/* ========================================= */

.section-label{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    border-radius:40px;

    background:rgba(255,255,255,0.04);

    border:1px solid var(--border);

    color:#D0D0D0;

    margin-bottom:28px;

    font-size:14px;

    letter-spacing:1px;

}

.about-right h2{

    font-family:'Sora',sans-serif;

    font-size:clamp(36px,4vw,62px);

    line-height:1.1;

    margin-bottom:30px;

}

.about-description{

    color:var(--text);

    line-height:1.9;

    font-size:17px;

    margin-bottom:45px;

}

/* ========================================= */
/* FEATURES */
/* ========================================= */

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;

    margin-bottom:45px;

}

.feature-box{

    position:relative;

    display:flex;

    align-items:flex-start;

    gap:18px;

    padding:24px;

    border-radius:28px;

    background:#0D0D0D;

    border:1px solid rgba(255,255,255,0.08);

    transition:.35s;

    overflow:hidden;

}

.feature-box:hover{

    transform:translateY(-6px);

    border-color:rgba(255,255,255,0.14);

    background:#121212;

}

.feature-icon{

    min-width:64px;
    height:64px;

    border-radius:20px;

    background:#1B1B1B;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#EAEAEA;

    font-size:28px;

}

.feature-box h4{

    color:#FFFFFF;

    font-size:18px;

    margin-bottom:10px;

    line-height:1.4;

}

.feature-box p{

    color:#B5B5B5;

    font-size:15px;

    line-height:1.8;

}

.about-btn{
    width:fit-content;
}

/* ========================================= */
/* WHATSAPP */
/* ========================================= */

.whatsapp{

    position:fixed;

    right:30px;
    bottom:30px;

    width:70px;
    height:70px;

    border-radius:50%;

    background:#1B1B1B;

    border:1px solid rgba(255,255,255,0.08);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:34px;

    text-decoration:none;

    z-index:100;

    box-shadow:0 15px 40px rgba(0,0,0,.45);

    transition:.35s;

}

.whatsapp:hover{

    transform:translateY(-6px);

    background:#252525;

}
/* ========================================= */
/* FINAL UI SMOOTHNESS */
/* ========================================= */

img{

    transition:
    transform .8s ease,
    filter .8s ease;

}

.btn,
.feature-box,
.showcase-point,
.infra-stat-card,
.gallery-item,
.infra-box{

    transition:
    transform .45s ease,
    border-color .45s ease,
    background .45s ease;

}

.btn:hover,
.feature-box:hover,
.showcase-point:hover,
.infra-stat-card:hover,
.infra-box:hover{

    transform:translateY(-6px);

}

.infra-hero-content{

    animation:fadeUp 1.1s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

/* ...existing code... */
/* ========================================= */
/* FINAL OVERFLOW FIX */
/* ========================================= */

html,
body{

    overflow-x:hidden !important;

    width:100%;

}

/* FORCE ALL MAJOR CONTAINERS INSIDE VIEWPORT */

.infrastructure-section,
.infra-showcase,
.infra-parallax,
.infra-gallery,
.about-section,
.hero,
section{

    max-width:100vw;

    overflow:hidden;

}

/* FIX PARALLAX SECTION */

.infra-parallax{

    margin-left:7%;
    margin-right:7%;

    width:auto;

}

/* PREVENT TEXT BLEEDING */

.showcase-content,
.parallax-content,
.infrastructure-right,
.about-right{

    position:relative;

    z-index:2;

}

/* FIX GRID OVERFLOW */

.showcase-grid,
.infrastructure-container,
.about-container{

    overflow:hidden;

}

/* REMOVE STRAY RENDERING */

*{

    backface-visibility:hidden;

    -webkit-font-smoothing:antialiased;

}

/* ========================================= */
/* GLOBAL PAGE FIX */
/* ========================================= */

html,
body{

    width:100%;
    overflow-x:hidden;

}

body{

    min-height:100vh;

    display:flex;
    flex-direction:column;

}

/* ========================================= */
/* MAIN CONTENT */
/* ========================================= */

main{

    flex:1;

}

/* ========================================= */
/* FOOTER */
/* ========================================= */

.site-footer{

    width:100%;

    margin-top:80px;

    padding:24px 5%;

    border-top:1px solid rgba(255,255,255,.06);

    background:#050505;

}

.footer-container{

    display:flex;

    align-items:center;
    justify-content:space-between;

    flex-wrap:wrap;

    gap:12px;

}

.footer-container p{

    margin:0;

    color:#9A9A9A;

    font-size:15px;

    line-height:1.6;

}

.footer-container span{

    color:#FFFFFF;

    font-weight:600;

}

@media(max-width:768px){

    .footer-container{

        flex-direction:column;

        text-align:center;

    }

}
/* ...existing code... */