/* ==========================================
   VOLTPRO ELECTRICIANS - COMPLETE CSS
   ========================================== */

/* --- CSS Variables & Reset --- */
:root {
    --primary-color: #0056b3;      /* Deep Electric Blue */
    --primary-hover: #004494;      /* Darker Blue for hover */
    --secondary-color: #f39c12;    /* Electric Yellow/Orange */
    --accent-color: #00c4cc;       /* Cyan accent for modern look */
    --dark-color: #1a1a2e;         /* Dark Navy */
    --light-color: #f8f9fa;        /* Very light gray */
    --text-color: #333333;         /* Dark gray text */
    --text-light: #666666;         /* Light gray text */
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 12px;
}

/* --- Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* =========================
   NEW TOP BAR - ELECTRICIANS STYLE
========================= */
.top-bar {
    background: linear-gradient(90deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
    color: #fff;
    font-size: 0.85rem;
    padding: 12px 0;
    position: relative;
    overflow: hidden;
}

/* Electrical lightning pattern overlay */
.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.02) 10px,
        rgba(255, 255, 255, 0.02) 20px
    );
    pointer-events: none;
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.top-left {
    display: flex;
    gap: 30px;
    align-items: center;
}

.top-item {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.95;
    transition: var(--transition);
}

.top-item:hover {
    opacity: 1;
}

.top-item i {
    color: var(--secondary-color);
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.top-item span {
    font-weight: 400;
}

.top-badge {
    background: linear-gradient(135deg, var(--secondary-color), #e67e22);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.top-badge i {
    color: #fff !important;
    animation: none;
}

.top-right {
    display: flex;
    align-items: center;
}

.phone-btn {
    background: linear-gradient(135deg, var(--secondary-color), #e67e22);
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.phone-btn:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.5);
}

.phone-btn i {
    color: #fff !important;
    animation: none;
}


/* =========================
   NEW NAVBAR - ELECTRICIANS STYLE
========================= */
.navbar {
    background: #ffffff;
    
    position: relative;
    width: 100%;
    z-index: 999;
    height: 80px;
    display: flex;
    align-items: center;
    transition: 0.3s ease;
    border-bottom: 3px solid var(--secondary-color);
}

.navbar.scrolled {
    height: 70px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.12);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo span {
    color: var(--secondary-color);
    position: relative;
}

/* Lightning bolt icon */
.logo span::before {
    content: '\f0e7';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark-color);
    padding: 10px 0;
    position: relative;
    transition: var(--transition);
}

/* Underline hover effect */
.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), #e67e22);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-links li a:hover {
    color: var(--secondary-color);
}

/* Contact button in nav */
.btn-nav {
    background: linear-gradient(135deg, var(--secondary-color), #e67e22);
    color: var(--dark-color) !important;
    padding: 12px 25px !important;
    border-radius: 30px;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.btn-nav::after {
    display: none !important;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.5);
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: var(--white) !important;
}


/* =========================
   NEW HAMBURGER MENU
========================= */
.hamburger {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--dark-color);
    padding: 10px;
    transition: var(--transition);
    position: relative;
    z-index: 1000;
}

.hamburger:hover {
    color: var(--secondary-color);
}

.hamburger:focus {
    outline: none;
}

.hamburger i {
    transition: var(--transition);
}

/* Animated hamburger icon */
.hamburger.is-active i {
    transform: rotate(90deg);
}

.hamburger.is-active .fa-bars::before {
    content: '\f00d'; /* X icon */
}


/* =========================
   RESPONSIVE STYLES
========================= */
@media (max-width: 991px) {

    .top-bar {
        display: none; /* Hide top bar on mobile */
    }

    .navbar {
        top: 0;
        height: 70px;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    }

    .logo {
        font-size: 1.6rem;
    }

    /* Mobile Navigation */
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
        flex-direction: column;
        padding: 100px 30px 40px;
        gap: 0;
       
        transition: 0.4s ease;
        z-index: 999;
        overflow-y: auto;
    }

    /* Show nav when active */
    .nav-links.active {
        left: 0;
    }

    /* Add overlay when menu is open */
    .nav-links::before {
        content: 'Menu';
        position: absolute;
        top: 30px;
        left: 30px;
        font-size: 1.2rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.5);
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links li a {
        color: #fff;
        font-size: 1.1rem;
        padding: 18px 0;
        display: block;
        transition: var(--transition);
    }

    .nav-links li a::after {
        display: none;
    }

    .nav-links li a:hover {
        color: var(--secondary-color);
        padding-left: 10px;
    }

    /* Mobile contact button */
    .nav-links .btn-nav {
        margin-top: 20px;
        text-align: center;
        display: inline-block;
        width: 100%;
    }

    /* Hamburger position */
    .hamburger {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .hamburger.is-active {
        position: fixed;
        right: 30px;
        z-index: 1001;
        color: #fff;
    }

    /* Overlay background */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 998;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Extra small devices */
@media (max-width: 576px) {
    .logo {
        font-size: 1.4rem;
    }
    
    .nav-links {
        width: 100%;
        max-width: 100%;
    }
}


/* =========================
   HERO SECTION
========================= */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(0, 86, 179, 0.7) 100%),
                url('images/hero-bg.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
    padding: 20px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-content h1 .highlight {
    color: var(--secondary-color);
    position: relative;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--dark-color);
    box-shadow: 0 5px 20px rgba(243, 156, 18, 0.4);
}

.btn-primary:hover {
    background: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-color);
    transform: translateY(-3px);
}


/* =========================
   RESPONSIVE HERO
========================= */
@media (max-width: 991px) {
    .hero {
        margin-top: 70px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}


/* ==========================================
   WHY CHOOSE US SECTION
   ========================================== */
/* Modern Why Choose Us Cards Section */
.why-choose-modern-cards {
    padding: 100px 0;
    background: #ffffff;
}

.why-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.why-image {
    flex: 1;
}

.why-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.why-image img:hover {
    transform: scale(1.03);
}

.why-content {
    flex: 1;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.why-content h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--dark-color);
}

/* Cards Grid */
.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.why-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f9fbff;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    cursor: default;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 40px rgba(0,0,0,0.12);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.why-card span {
    font-weight: 500;
    color: var(--dark-color);
}

/* Button */
.why-btn {
    display: inline-block;
    padding: 14px 28px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s ease;
}

.why-btn:hover {
    background: var(--accent-color);
}

/* Responsive */
@media (max-width: 992px) {
    .why-wrapper {
        flex-direction: column-reverse;
        gap: 40px;
    }
    .why-content {
        text-align: center;
    }
    .why-cards-grid {
        justify-items: center;
    }
}

/* ==========================================
   ABOUT US SECTION
   ========================================== */
/* About Us - Modern Split Layout */
.about-modern-layout {
    padding: 100px 0;
    background: #ffffff;
}

.about-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.about-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
}

/* Split Blocks */
.about-split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.about-block {
    background: #f9fbff;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.about-block:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.about-block h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.about-block p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Full Width Block */
.about-full {
    max-width: 800px;
    margin: 0 auto 40px;
    background: #f9fbff;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.about-full h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.about-full p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* CTA */
.about-cta {
    text-align: center;
}

.btn-about {
    display: inline-block;
    padding: 14px 28px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-about:hover {
    background: var(--accent-color);
}

/* Responsive */
@media (max-width: 768px) {
    .about-split {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.services .section-header h2 {
    color: var(--white);
}

.services .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-img {
    height: 220px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.service-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.read-more:hover {
    gap: 15px;
    color: var(--primary-hover);
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats {
    padding: 60px 0;
    background: var(--secondary-color);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ==========================================
   CONTACT US SECTION
   ========================================== */
/* Contact Modern Section */
.contact-modern {
    padding: 100px 0;
    background: #ffffff;
    text-align: center;
}

.contact-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.contact-header .lead-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact Cards Grid */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    background: #f9fbff;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.contact-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Button */
.contact-cta {
    text-align: center;
}

.btn-contact {
    display: inline-block;
    padding: 14px 28px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-contact:hover {
    background: var(--accent-color);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn {
    background: var(--white);
    color: var(--primary-color);
    padding: 18px 45px;
    font-size: 1.1rem;
}

.cta .btn:hover {
    background: var(--dark-color);
    color: var(--white);
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
.footer {
    background: #0f0f1a;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col h3 span {
    color: var(--primary-color);
}

.footer-col p {
    margin-bottom: 25px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }
}
