/* RE-SET ASAS & VARIABEL WARNA */
:root {
    --bg-dark: #0a0a0c;
    --neon-green: #39ff14;
    --dark-green: #0f5207;
    --neon-purple: #9d4edd;
    --accent-red: #ff3333;
    --text-white: #ffffff;
    --text-gray: #b3b3b3;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 70px; /* Pastikan nilai ini untuk elak bahagian atas sekali lari */
}


.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* KESAN LATAR BELAKANG GERAK HALUS (AURORA GLOW MESH) */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    opacity: 0.35; /* Dikecilkan intensiti supaya teks mudah dibaca */
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    mix-blend-mode: screen;
}

.orb-1 {
    top: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(57,255,20,0.4) 0%, rgba(0,0,0,0) 70%);
    animation: floatingOrb1 25s infinite alternate ease-in-out;
}

.orb-2 {
    bottom: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(157,78,221,0.3) 0%, rgba(0,0,0,0) 70%);
    animation: floatingOrb2 30s infinite alternate ease-in-out;
}

@keyframes floatingOrb1 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-5%, 10%) scale(1.1); }
    100% { transform: translate(5%, -5%) scale(0.9); }
}

@keyframes floatingOrb2 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10%, -5%) scale(0.9); }
    100% { transform: translate(-5%, 5%) scale(1.1); }
}

/* ==========================================
   KESAN LATAR BELAKANG ZARAH CAHAYA DINAMIK
   ========================================== */

.dynamic-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: #050507; /* Warna latar belakang gelap premium */
    overflow: hidden;
}

/* Lapisan Cahaya Ambient (Nebula Lembut) */
.ambient-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(57, 255, 20, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(157, 78, 221, 0.06) 0%, transparent 50%);
    filter: blur(60px);
}

/* Lapisan Zarah Bergerak */
.particle-layer {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-repeat: repeat;
    background-position: center;
    will-change: transform;
}
/* Lapisan Zarah Bergerak (Dah diterangkan warnanya) */
.layer-1 {
    /* Sebelum ini: rgba(66, 177, 47, 0.15) -> Ditukar ke 0.6 (Lebih Terang) */
    background-image: radial-gradient(rgba(57, 255, 20, 0.6) 2.5px, transparent 2.5px);
    background-size: 80px 80px;
    animation: floatParticles1 40s linear infinite;
}


/* --- ANIMASI PERGERAKAN ZARAH (KEYFRAMES) --- */

@keyframes floatParticles1 {
    0% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    100% {
        transform: translate3d(-40px, 80px, 0) rotate(360deg);
    }
}

@keyframes floatParticles2 {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(50px, -50px, 0);
    }
}

@keyframes floatParticles3 {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(-20px, 40px, 0) scale(1.05);
    }
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
}

/* Pengoptimuman Khas untuk Telefon Pintar (Mobile) */
@media (max-width: 768px) {
    .layer-1, .layer-2, .layer-3 {
        /* Memperlahankan animasi pada telefon supaya pergerakan nampak tenang dan tidak serabut */
        animation-duration: 80s; 
    }
    .ambient-glow {
        opacity: 0.7; /* Mengurangkan beban pencahayaan skrin kecil */
    }
}

/* 1. Bekas luar: Tukar background-color ke kuning */
.news-ticker-container {
    width: 100%;
    overflow: hidden; 
    background-color: #FFD700; /* Warna kuning (Gold/Yellow) */
    padding: 10px 0;
}

/* 2. Pembungkus ticker */
.ticker-wrap {
    width: 100%;
    display: flex;
}

/* 3. Teks ticker */
.ticker-text {
    display: inline-block;
    white-space: nowrap; 
    padding-left: 100%; 
    animation: pergerakanBerita 50s linear infinite; 
}

/* Tukar warna tulisan di dalam span menjadi hitam */
.ticker-text span {
    color: #000000; /* Warna hitam */
    font-size: 21px;
}

/* Kesan hover (berhenti apabila mouse lalu) - kekal jika mahu */
.news-ticker-container:hover .ticker-text {
    animation-play-state: paused;
}

/* 4. Animasi pergerakan */
@keyframes pergerakanBerita {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}


.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999; /* Nombor tinggi supaya ia sentiasa berada di lapisan paling atas */
    
    /* Tambahan: Pastikan ada background warna gelap/hitam 
       supaya kandungan web di belakang fail tidak bertindih nampak renek */
    background-color: #0b0b0b; /* Tukar kod warna mengikut tema hitam anda */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Memastikan logo mempunyai kesan interaktif apabila di-hover */
.logo-link {
    display: inline-block;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.logo-link:hover {
    transform: scale(1.05); /* Logo akan membesar sedikit secara lembut apabila di-hover */
}

.site-logo {
    height: 45px;
    object-fit: contain;
}

.nav-menu a {
    color: var(--text-gray);
    text-decoration: none;
    margin-right: 25px;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 14px;
}

.nav-menu a:hover {
    color: var(--neon-green);
}

/* BUTTONS */
.btn-cta-nav {
    background: transparent;
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.2);
}

.btn-cta-nav:hover {
    background: var(--neon-green);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.6);
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--dark-green) 100%);
    color: var(--text-white);
    text-decoration: none;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(57, 255, 20, 0.3);
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(57, 255, 20, 0.5);
}

.btn-giant {
    display: inline-block;
    background: var(--accent-red);
    color: white;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 0 30px rgba(255, 51, 51, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: pulse 2s infinite;
}

.btn-giant:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 51, 51, 0.8);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* SEKSYEN STRUKTUR / GRID */
.section-container {
    padding: 80px 0;
}

.hero-section {
    padding: 60px 0 100px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-img, .solusi-img {
    width: 100%;
    display: block;
    transition: transform 0.5s;
}

.hero-image-wrapper:hover .hero-img {
    transform: scale(1.03);
}

.badge {
    color: var(--neon-green);
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.main-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-p {
    color: var(--text-gray);
    font-size: 18px;
    margin-bottom: 35px;
}

.highlight-red {
    color: var(--accent-red);
    text-shadow: 0 0 10px rgba(255, 51, 51, 0.3);
}

.highlight-green {
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}

/* SEKSYEN SENI HEADER */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 16px;
}

/* SHOWCASE PRODUK */
.product-showcase {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.8);
}

.full-width-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* FLAVOR CARDS */
.flavor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.flavor-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
}

.flavor-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 15px;
}

.flavor-card p {
    color: var(--text-gray);
    font-size: 14px;
}

.flavor-card.highlighted {
    border-color: var(--neon-green);
    background: rgba(57, 255, 20, 0.03);
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.1);
}

.flavor-card:hover {
    transform: translateY(-5px);
}

/* BENEFIT TEXT TAG */
.benefit-tag {
    display: inline-block;
    background: rgba(255,255,255,0.05);
    border-left: 4px solid var(--neon-green);
    padding: 15px 25px;
    border-radius: 0 8px 8px 0;
    font-weight: 600;
    font-size: 16px;
}

/* TESTIMONI CARDS */
.testimoni-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.testimoni-card {
    background: rgba(15, 15, 20, 0.6);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.testimoni-img-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.testimoni-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.testimoni-card:hover .testimoni-img-container img {
    transform: scale(1.05);
}

.testimoni-body {
    padding: 25px;
}

.testimoni-body h4 {
    font-family: var(--font-heading);
    color: var(--neon-green);
    margin-bottom: 10px;
    font-size: 16px;
}

.testimoni-body p {
    color: #e0e0e0;
    font-style: italic;
    font-size: 14px;
}

/* CTA BANNER HAMPIR KE FOOTER */
.cta-banner {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)), radial-gradient(circle at center, var(--dark-green) 0%, rgba(0,0,0,0) 70%);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    margin: 40px 0 80px 0;
}

.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-banner p {
    color: var(--text-gray);
    margin-bottom: 35px;
    font-size: 18px;
}

/* FOOTER */
.main-footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 40px 0;
    text-align: center;
    color: rgba(255,255,255,0.3);
    font-size: 13px;
}

/* SUSUNAN STRUKTUR BAGI RESPONSIVE SKRIN DI TELEFON PINTAR */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .image-left {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .flavor-grid, .testimoni-grid {
        grid-template-columns: 1fr;
    }
    
    .main-title {
        font-size: 32px;
    }
    
    .nav-menu {
        display: none; /* Sembunyikan menu ringkas pada peranti kecil */
    }
}



/* ==========================================
   TAMBAHAN UNTUK ANIMASI JAVASCRIPT (REVEAL)
   ========================================== */

/* Keadaan asal sebelum skrol: Elemen halimunan dan ditolak sedikit ke bawah */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform, opacity;
}

/* Keadaan selepas diaktifkan oleh JavaScript semasa skrol */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Memastikan kad yang mempunyai kesan 3D tilt mempunyai transition yang lancar */
.tilt-element {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}

/* ==========================================
   TAMBAHAN LAYOUT UTUK ELEMEN BARU
   ========================================== */

/* Susunan Galeri Syarikat */
.company-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}


/* ==========================================
   PREMIUM INTERACTIVE SLIDER (STYLE)
   ========================================== */

.premium-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.premium-slider {
    position: relative;
    width: 100%;
    height: 450px; /* Anda boleh laras ketinggian ini */
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
    transform: scale(1.03);
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Butang Kiri & Kanan */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: #39ff14;
    color: #000;
    box-shadow: 0 0 15px #39ff14;
    border-color: #39ff14;
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

/* Indikator Petak (Dots) */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px; /* Membuat bentuk petak kecil seperti contoh gambar */
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #39ff14; /* Warna hijau menyala apabila dipilih */
    box-shadow: 0 0 10px #39ff14;
    transform: scale(1.2);
}

/* Responsif Skrin Telefon */
@media (max-width: 768px) {
    .premium-slider {
        height: 300px;
    }
    .slider-btn {
        padding: 10px 15px;
        font-size: 18px;
    }
}

/* Reka Bentuk Banner CTA - Latar Transparent & Tulisan Putih */
.cta-banner {
    background: transparent; /* Kekal lut sinar */
    padding: 60px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.cta-banner h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff; /* Tulisan Putih Bersih */
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.cta-banner p {
    font-size: 1.1rem;
    color: #f3f4f6; /* Tulisan Putih Sikit Kelabu (Supaya Cantik & Selesa Dibaca) */
    margin-bottom: 35px;
    line-height: 1.6;
}

/* Reka Bentuk Butang Giant WhatsApp (Kekal Kekal Menonjol) */
.btn-giant {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25D366;
    color: #ffffff; /* Tulisan Dalam Butang Kekal Putih */
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.btn-giant:hover {
    background-color: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
}

.btn-giant:active {
    transform: translateY(-1px);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    }
}

@media (max-width: 480px) {
    .cta-banner {
        padding: 40px 15px;
    }
    .cta-banner h2 {
        font-size: 1.6rem;
    }
    .cta-banner p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    .btn-giant {
        font-size: 1rem;
        padding: 14px 25px;
        width: 100%;
    }
}

/* Reka Bentuk Utama Footer */
.main-footer {
    background: transparent;
    padding: 50px 20px 30px 20px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.container.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: table;
    width: 100%;
}

.footer-info {
    display: table-cell;
    width: 60%;
    vertical-align: top;
}

.footer-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.footer-info p {
    font-size: 0.95rem;
    color: #e5e7eb;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-contact a {
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: #20ba5a;
    text-decoration: underline;
}

.footer-socials {
    display: table-cell;
    width: 40%;
    vertical-align: top;
    text-align: right;
}

.footer-socials h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
    color: #ffffff;
    letter-spacing: 1px;
}

.social-icons {
    display: inline-flex;
    gap: 12px; /* Jarak antara ikon lebih sekata */
}

/* ===================================================
   REKA BENTUK IKON YANG LEBIH CANTIK & GLOWING EFFECT 
   =================================================== */
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08); /* Latar bulatan asal pudar yang elegan */
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Animasi bounce yang smooth */
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link svg {
    transition: transform 0.3s ease, fill 0.3s ease;
}

/* Kesan Umum Semasa Hover (Ikon membesar & ternaik) */
.social-link:hover {
    transform: translateY(-5px);
}

.social-link:hover svg {
    transform: scale(1.15); /* Ikon di dalam membesar sedikit */
}

/* 1. Facebook Hover Style */
.social-link.facebook:hover {
    background: #1877F2;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.6);
    border-color: #1877F2;
}

/* 2. Instagram Hover Style */
.social-link.instagram:hover {
    background: #ffffff; /* Latar belakang putih supaya warna gradient terserlah */
    box-shadow: 0 0 20px rgba(214, 36, 159, 0.5);
    border-color: #ffffff;
}

/* 3. TikTok Hover Style */
.social-link.tiktok:hover {
    background: #000000;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2), -3px 0 10px #fe2c55, 3px 0 10px #25f4ee; /* Kesan neon khas TikTok */
    border-color: #000000;
}

/* Responsif Mobile */
@media (max-width: 768px) {
    .footer-info, .footer-socials {
        display: block;
        width: 100%;
        text-align: left;
    }
    .footer-socials {
        margin-top: 35px;
    }
}