/* Reset básico e estilos globais */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap"); /* Importando Poppins */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Rolagem suave global */
}

body {
    font-family: "Poppins", sans-serif; /* Fonte mais moderna */
    background-color: #0a0a0a; /* Fundo quase preto, mais suave que #000 */
    color: #e0e0e0; /* Cinza claro para texto principal, melhor contraste */
    line-height: 1.7;
    font-weight: 300; /* Fonte mais leve por padrão */
    overflow-x: hidden; /* Prevenir scroll horizontal */
}

a {
    color: #00ff9d; /* Verde neon mantido como destaque */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #80ffce; /* Verde neon mais claro no hover */
    text-decoration: none;
}

h1, h2, h3, h4 {
    margin-bottom: 1.5rem;
    font-weight: 600; /* Peso um pouco maior para títulos */
    color: #ffffff; /* Branco puro para títulos */
}

h1 {
    font-size: 3.2em;
    line-height: 1.2;
}

h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.6em;
    font-weight: 600;
}

section {
    padding: 80px 40px; /* Mais padding vertical e horizontal */
    position: relative; /* Para animações */
    overflow: hidden; /* Para conter animações */
}

.container {
    max-width: 1200px; /* Container um pouco maior */
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

/* Header - ADJUSTED FOR DESKTOP LAYOUT (Logo Center, Nav Right) */
header {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    padding: 1rem 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #222;
    width: 100%;
    /* Default: Mobile - Logo centered, nav hidden */
    justify-content: center;
}

/* Placeholder div for spacing on desktop */
.header-placeholder {
    display: none; /* Hidden by default */
}

header .logo {
    flex-shrink: 0;
    /* Default: Centered on mobile */
}

header .logo img {
    height: 55px;
    display: block;
}

header nav {
    /* Default: Mobile - Hidden */
    display: none;
}

header nav ul {
    list-style: none;
    display: flex;
    padding: 0; /* Reset padding */
    margin: 0; /* Reset margin */
}

header nav ul li {
    margin-left: 30px;
}

header nav ul li:first-child {
    margin-left: 0; /* Remove margin from first item */
}

header nav ul li a {
    color: #e0e0e0;
    font-weight: 400;
    font-size: 0.95em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #00ff9d;
}

/* Mobile Menu Button (Hamburger) - REMOVED */
.menu-toggle {
    display: none !important; /* Completely hide hamburger */
}

/* Botão Genérico e Animação */
.button {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1em;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    transition: transform 0.2s ease-out, background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.button:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: none;
}

.button-primary {
    background-color: #00ff9d;
    color: #0a0a0a;
}

.button-primary:hover {
    background-color: #80ffce;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 255, 157, 0.3);
}

.button-secondary {
    background-color: transparent;
    color: #00ff9d;
    border: 2px solid #00ff9d;
}

.button-secondary:hover {
    background-color: rgba(0, 255, 157, 0.1);
    color: #80ffce;
    border-color: #80ffce;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 255, 157, 0.2);
}

/* Hero Section - ADJUSTED HEIGHT & PADDING */
.hero {
    background: linear-gradient(to bottom, #0a0a0a 60%, #00331a 100%);
    text-align: center;
    padding: 80px 40px 0; /* Reduced top padding */
    min-height: 100vh; /* Reduced min-height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('img/dark_denim_texture.png');
    background-repeat: repeat;
    opacity: 0.05; /* Very subtle opacity */
    z-index: 0; /* Behind the content */
}

.hero h1 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 2.2em;
    text-align: center;
}

.hero h2.promo-text {
    color: #00ff9d;
    font-size: 3.0em;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(0, 255, 157, 0.7);
    text-align: center;
    opacity: 1;
    line-height: 1.2;
}

.hero p.sub-promo-text {
    font-size: 1.0em;
    margin-bottom: 1.5rem; /* Reduced margin */
    color: #b0b0b0;
    max-width: none !important;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-align: center !important;
    opacity: 1 !important;
}

/* WhatsApp Button Style */
.whatsapp-button {
    background-color: #00ff9d;
    color: #0a0a0a;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 255, 157, 0.4);
    transition: transform 0.2s ease-out, background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    opacity: 1;
}

.whatsapp-button:hover {
    background-color: #80ffce;
    color: #0a0a0a;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 255, 157, 0.5);
}

.whatsapp-button .whatsapp-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\\' viewBox=\'0 0 448 512\\' fill=\'%230a0a0a\'><path d=\'M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 .1c100.4 0 182.3 81.9 182.3 182.3 0 49.9-19.9 95.8-53.8 130.1l-37.6 37.6-27.1 64.3 65.8-17.3 38.7-38.7c34.2-34.2 53.1-79.9 53.1-128.1 0-100.4-81.9-182.3-182.3-182.3zm-45.8 307.1c-8.4-4.1-49.9-24.6-57.7-27.5s-13.5-4.1-19.3 4.1c-5.8 8.4-21.9 27.5-26.8 33.1s-9.8 5.8-18.3 1.9c-8.4-3.9-35.6-13.1-67.8-41.9s-52.7-61.5-55.6-68.2c-2.9-6.8-.3-10.5 3.6-14.4s8.4-10.5 12.6-14.4c4.2-3.9 8.4-6.8 12.6-11.6s4.2-8.4 1.9-15.3c-2.3-6.8-13.5-32.5-16.8-44.4s-6.6-10.2-9.8-10.5c-3.2-.3-6.8-.3-10.5-.3s-9.8 1.5-15.3 7.4c-5.4 6-20.8 20.3-20.8 49.4s21.3 57.4 24.2 61.5c2.9 4.1 41.9 63.9 101.6 89.4 14.8 6.2 28 9.9 37.6 12.6 14.8 4.1 28.3 3.5 39.1 2.1 11.8-1.4 35.6-14.5 40.6-28.6 5-14.1 5-26.1 3.5-28.6s-5.4-4.1-11.2-6.8z\'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Hero Image - ADJUSTED POSITION (CLOSER TO BUTTON) */
.hero-banner-image {
    max-width: 90%;
    max-height: 70vh;
    height: auto;
    margin-top: 0.1rem; /* Reduced margin drastically */
    object-fit: contain;
}

/* Animações de Entrada */
.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
}

.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Aplicar animações a elementos específicos */
section h2 {
    opacity: 0; /* Mantido para animação do título, se JS funcionar */
}

/* Removido #sobre p e #diferenciais li daqui para garantir visibilidade */
.gallery-item,
.plano,
.depoimento,
.faq-item {
    opacity: 0; /* Mantido para animação, se JS funcionar */
}

/* Portfolio Section */
.portfolio {
    background-color: #111;
}

.portfolio h2 {
    color: #ffffff;
    margin-bottom: 3rem;
}

/* --- Portfolio Grid Gallery Styles --- */
.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Adjusted minmax */
    gap: 25px;
    margin-top: 3rem;
}

.gallery-item {
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease-out, transform 0.6s ease-out;
    aspect-ratio: 1 / 1; /* Make items square */
    opacity: 1; /* Garante visibilidade, animação via JS (se houver) */
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 255, 157, 0.2);
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the square area */
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Sobre Nós Section */
#sobre {
    background: linear-gradient(to bottom, #0a0a0a 0%, #111111 100%);
    text-align: center;
}

#sobre .sobre-logo {
    max-width: 150px;
    margin-bottom: 2rem;
}

#sobre p {
    max-width: 800px;
    margin: 0 auto 1rem auto;
    color: #b0b0b0;
    font-size: 1.1em;
    /* transition: opacity 0.6s ease-out, transform 0.6s ease-out; */ /* Removido transition se não houver animação */
    text-align: justify;
    line-height: 1.7;
    opacity: 1; /* Garante visibilidade */
}

/* Ajuste para telas menores - corrige espaçamento excessivo */
@media (max-width: 768px) {
    #sobre p {
        text-align: left;
        word-spacing: normal;
        letter-spacing: normal;
    }
}

.highlight-text {
    color: #00ff9d;
    font-weight: 600;
}

/* Planos Section */
#planos {
    background-color: #111;
}

#planos h2 {
    color: #ffffff;
}

.planos-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.plano {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 40px;
    border-radius: 10px;
    width: clamp(300px, 30%, 350px);
    text-align: left;
    border-top: 5px solid;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease-out, transform 0.6s ease-out;
}

.plano:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.plano.essencial { border-color: #00ff9d; }
.plano.exclusivo { border-color: #a060ff; }
.plano.premium { border-color: #ffbf00; }

.plano h3 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8em;
}

.plano .recomendado-tag {
    display: block;
    text-align: center;
    font-weight: 600;
    color: #a060ff;
    margin-bottom: 1.5rem;
    font-size: 0.9em;
    text-transform: uppercase;
}

.plano .price {
    text-align: center;
    font-size: 1.8em;
    margin-bottom: 1.5rem;
    font-weight: 600;
}
.plano.essencial .price { color: #00ff9d; }
.plano.exclusivo .price { color: #a060ff; }
.plano.premium .price { color: #ffbf00; }


.plano ul {
    list-style: none;
    margin-left: 0;
    margin-bottom: 2.5rem;
}

.plano ul li {
    margin-bottom: 1rem;
    line-height: 1.5;
    padding-left: 25px;
    position: relative;
}

.plano ul li::before {
    content: "\2714";
    color: #00ff9d;
    position: absolute;
    left: 0;
    top: 2px;
    font-weight: bold;
}

.plano button {
    display: block;
    width: 100%;
}

.plano.essencial button { background-color: #00ff9d; color: #0a0a0a; }
.plano.exclusivo button { background-color: #a060ff; color: #ffffff; }
.plano.premium button { background-color: #ffbf00; color: #0a0a0a; }

.plano.essencial button:hover { background-color: #80ffce; box-shadow: 0 4px 10px rgba(0, 255, 157, 0.3); }
.plano.exclusivo button:hover { background-color: #b380ff; box-shadow: 0 4px 10px rgba(160, 96, 255, 0.3); }
.plano.premium button:hover { background-color: #ffcf40; box-shadow: 0 4px 10px rgba(255, 191, 0, 0.3); }

/* Depoimentos Section */
#depoimentos {
    background-color: #0a0a0a;
}

.depoimentos-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.depoimento {
    background-color: #1a1a1a;
    padding: 35px;
    border-radius: 8px;
    width: clamp(300px, 30%, 380px);
    border-left: 4px solid #a060ff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.depoimento p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #b0b0b0;
    font-size: 1.05em;
    text-align: left;
}

.depoimento h4 {
    text-align: right;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95em;
}

/* Diferenciais Section */
#diferenciais {
    background-color: #111;
}

#diferenciais ul {
    list-style: none;
    max-width: 900px;
    margin: auto;
    padding-left: 0;
}

#diferenciais li {
    margin-bottom: 1.5rem;
    padding-left: 35px;
    position: relative;
    font-size: 1.1em;
    /* transition: opacity 0.6s ease-out, transform 0.6s ease-out; */ /* Removido transition se não houver animação */
    text-align: left;
    opacity: 1; /* Garante visibilidade */
}

#diferenciais li::before {
    content: "\2714";
    color: #00ff9d;
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 1.2em;
    font-weight: bold;
}

#diferenciais strong {
    color: #ffffff;
    font-weight: 600;
}

/* FAQ Section */
#faq {
    background-color: #0a0a0a;
    max-width: 850px;
    margin: auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid #222;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.2em;
    font-weight: 600;
    text-align: left;
    width: 100%;
    padding: 20px 0;
    cursor: pointer;
    position: relative;
    padding-right: 40px;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #00ff9d;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8em;
    color: #555;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: "\00d7";
    transform: translateY(-50%) rotate(45deg);
    color: #00ff9d;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 15px;
}

.faq-answer p {
    padding: 10px 0 25px 0;
    color: #b0b0b0;
    font-size: 1.05em;
    text-align: left;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 15px;
}

/* Footer */
footer {
    background-color: #050505;
    color: #888;
    padding: 60px 40px 30px 40px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 3rem;
    text-align: left;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.3em;
    font-weight: 600;
}

.footer-section p,
.footer-section ul li {
    margin-bottom: 0.8rem;
    font-size: 0.95em;
}

.footer-section ul {
    list-style: none;
    padding-left: 0;
}

.footer-section ul li a {
    color: #888;
}

.footer-section ul li a:hover {
    color: #00ff9d;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 1.5rem;
    font-size: 0.9em;
    color: #666;
}

/* Responsividade - Ajustes */

/* Desktop Styles (min-width: 769px) - CORRECTED HEADER (Logo Center, Nav Right) */
@media (min-width: 769px) {
    header {
        justify-content: space-between; /* Use space-between for main layout */
        position: relative; /* Keep relative for absolute logo */
    }

    /* Placeholder takes space on the left, equal to nav width */
    .header-placeholder {
        display: block; /* Show placeholder */
        /* flex: 1; Remove flex: 1 to size based on nav */
        order: 1; /* Position on the left */
        visibility: hidden; /* Make it invisible but take space */
        /* Match nav width (approximate or calculated if possible) */
        /* This might need adjustment based on final nav width */
        width: auto; /* Let it size based on content initially */
    }

    header .logo {
        position: absolute; /* Keep logo absolute */
        left: 50%;
        transform: translateX(-50%);
        flex-shrink: 0;
        order: 2; /* Center position */
    }

    header nav {
        display: block; /* Show nav on desktop */
        position: static; /* Remove absolute positioning */
        transform: none; /* Remove transform */
        order: 3; /* Position on the right */
        /* Calculate placeholder width based on this nav */
        /* This requires JS or careful manual sizing */
    }

    header .logo img {
        height: 45px; /* Reduce height for desktop */
    }

    /* Sync placeholder width with nav width (approximate) */
    /* This is a common CSS trick, might need refinement */
    .header-placeholder::before {
        content: "";
        display: block;
        width: 100%; /* Match placeholder width */
    }
    /* We might need JS to perfectly sync widths if nav items change */
}

@media (max-width: 992px) {
    h1 { font-size: 2.8em; }
    h2 { font-size: 2.2em; }
    section { padding: 60px 20px; }
    header { padding: 1rem 20px; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.4em; }
    h2 { font-size: 2em; }

    /* Hero Section - ADJUSTED HEIGHT & PADDING */
    .hero {
        padding: 40px 20px 0;
        min-height: 95vh; /* Reduced min-height further */
    }

    header {
        justify-content: center; /* Revert to center for mobile */
        position: sticky; /* Keep sticky */
    }

    header .logo {
        position: static; /* Revert logo position for mobile */
        transform: none;
        order: initial;
    }

    .header-placeholder {
        display: none; /* Hide placeholder on mobile */
    }

    header nav {
        display: none; /* Hide nav container on mobile */
    }

    /* Mobile adjustments for Hero Image - ADJUSTED POSITION & SIZE */
    .hero-banner-image {
        position: relative;
        max-width: 100%; /* Keep max-width */
        max-height: 85vh; /* Keep max-height */
        margin-top: 0.1rem; /* Keep close to button */
    }

    /* Adjustments for other sections if needed */
    .planos-container {
        flex-direction: column;
        align-items: center;
    }
    .plano {
        width: 90%;
        max-width: 450px;
    }

    .depoimentos-container {
        flex-direction: column;
        align-items: center;
    }
    .depoimento {
        width: 90%;
        max-width: 450px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-section {
        margin-bottom: 2rem;
    }

    #sobre p {
        margin-bottom: 0.5rem;
        line-height: 1.6;
    }

    .portfolio-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Adjust for mobile */
        gap: 15px;
    }
}

@media (max-width: 480px) {
    body { font-size: 15px; }
    h1 { font-size: 2em; }
    h2 { font-size: 1.8em; }

    /* Hero Section - ADJUSTED HEIGHT & PADDING */
    .hero { padding: 40px 20px 0; min-height: 90vh; } /* Reduced min-height */

    .hero h2.promo-text { font-size: 2.0em; }
    .hero p.sub-promo-text { font-size: 0.9em; margin-bottom: 1rem; }
    .button { padding: 10px 20px; font-size: 0.9em; }
    section { padding: 50px 15px; }
    header { padding: 1rem 15px; }
    header .logo img {
        height: 45px;
    }

    /* Mobile adjustments for Hero Image - ADJUSTED POSITION & SIZE */
    .hero-banner-image {
        max-width: 100%; /* Keep max-width */
        max-height: 80vh; /* Keep max-height */
        margin-top: 0.1rem; /* Keep close to button */
    }

    .plano { padding: 30px; }
    .depoimento { padding: 25px; }
    .faq-question { font-size: 1.1em; }
    .footer-section h3 { font-size: 1.2em; }

    #sobre p {
        margin-bottom: 0.3rem;
        line-height: 1.5;
    }

    .portfolio-gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Even smaller on small mobile */
        gap: 10px;
    }
}



/* Custom SimpleLightbox Close Button Fix */
.slbCloseBtn {
    position: fixed !important; /* Ensure it's fixed relative to viewport */
    top: 20px !important;      /* Position from top */
    right: 20px !important;     /* Position from right */
    z-index: 9999 !important;   /* High z-index to stay on top */
    color: #fff !important;     /* Ensure color is visible */
    opacity: 1 !important;      /* Ensure full opacity */
    font-size: 2.5em !important;  /* Adjust size if needed */
    width: auto !important;     /* Reset width if needed */
    height: auto !important;    /* Reset height if needed */
    line-height: 1 !important;  /* Adjust line-height */
    background: rgba(0, 0, 0, 0.4) !important; /* Optional: Add slight background for visibility */
    border-radius: 50%; /* Optional: Make it round */
    padding: 0px 10px 5px 10px !important; /* Optional: Adjust padding for centering 'x' */
    display: block !important; /* Ensure it's displayed */
    cursor: pointer !important;
}

.slbCloseBtn:hover {
    opacity: 0.8 !important; /* Keep hover effect reasonable */
    color: #fff !important;
    background: rgba(0, 0, 0, 0.6) !important;
}

/* Ensure the button content (X) is visible if it uses text */
/* If it uses ::before, that might need styling too, but let's try this first */



/* Fix for WhatsApp button clickability over hero texture */
.hero .container {
    position: relative; /* Ensure stacking context */
    z-index: 1; /* Place above the ::before pseudo-element */
}

/* Social Icons Styling */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    justify-content: flex-start;
}

.social-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.social-icon:hover {
    transform: translateY(-3px);
}

/* Responsive adjustments for social icons */
@media (max-width: 768px) {
    .social-icons {
        justify-content: center;
    }
    
    .social-icon img {
        width: 25px;
        height: 25px;
    }
}
