/* --- ALAP BEÁLLÍTÁSOK & SZÍNEK --- */
        :root {
            --bg-dark: #020b14;
            --bg-dark-gradient: linear-gradient(135deg, #020b14 0%, #061d33 100%);
            --cyan: #00E5FF;
            --cyan-hover: #00B2CC;
            --text-dark: #1A202C;
            --text-muted-dark: #4A5568;
            --bg-card-dark: #0B0F19;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Arial, sans-serif;
            scroll-behavior: smooth;
        }

        body {
            background-color: #f7fafc;
            color: var(--text-dark);
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1100px;
            margin: 0 auto;
        }

        /* --- MENÜ (HEADER) --- */
header {
    background-color: #011427;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}


header > div {
    max-width: 1200px; /* Vagy amilyen szélesre szeretnéd a weboldalad tartalmát */
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between; /* Elosztja a helyet: logó balra, menü középre/jobbra, gomb jobbra */
    align-items: center; /* Függőlegesen középre igazítja a logót és a menüt */
}

header img {
    height: 50px; /* Így nem nyújtja el a képet és nem lóg ki */
    display: block;
}

/* A menüpontok listája */
header ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; /* Ez kényszeríti egy sorba a listaelemeket */
    gap: 20px; /* Távolság a menüpontok között */
}

/* A listaelemek (ne legyen bennük sortörés) */
header ul li {
    white-space: nowrap;
}

/* A menüpontok linkjeinek formázása */
header ul li a {
    text-decoration: none;
    color: #ffffff; /* Betűszín */
    font-weight: 500;
    transition: color 0.3s ease;
}

header ul li a:hover {
    color: #00bcd4; /* Csúszka (hover) szín, pl. világoskék */
}

/* A jobb szélső különálló Kapcsolat gomb stílusa (a HTML-ed végén lévő <a href="#kapcsolat">) */
header > div > a {
    text-decoration: none;
    /*background-color: #00bcd4; /* Gomb színe */*/
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    white-space: nowrap;
    transition: background-color 0.3s;
}





nav {
    display: flex;
    justify-content: space-between; /* Ez kényszeríti a 3 elemet egy vonalba */
    align-items: center;            /* Ez teszi őket függőlegesen középre */
    padding: 10px 0;
}


/* Logó konténer */
.logo-img-wrapper {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* A logó kép méretezése */
.logo-image {
    height: 45px;       
    width: auto;        
    display: block;
    object-fit: contain;
}

.logo-img-wrapper {
    display: flex;
    align-items: center;
    text-decoration: none;
    /*padding: 5px 0;*/
}



/* Kis kijelzőn (pl. telefonon) érdemes picit kisebbre venni, hogy minden elférjen */
@media (max-width: 480px) {
    .logo-image {
        height: 38px;
    }
}

/* Menüpontok listája */
.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center; /* Biztosítja, hogy a szövegek is középen legyenek */
	
}

.nav-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
	font-weight: bold;
}


        .btn-cta {
            background-color: var(--cyan);
            color: #020b14;
            padding: 10px 20px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: bold;
            font-size: 14px;
            transition: background-color 0.3s;
        }

        .btn-cta:hover {
            background-color: var(--cyan-hover);
        }

        /* --- SÖTÉTKÉK FELSŐ SZEKCIÓ (HERO) VALÓDI HÁLÓZATI HÁTTÉRREL --- */
        .hero-section {
            background: var(--bg-dark-gradient);
            position: relative;
            padding: 180px 0 160px 0;
            text-align: center;
            color: #fff;
            overflow: hidden;
        }

        /* Az absztrakt összekötött hálózati vonalak kódja */
        .network-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.15; /* Finom, háttérbe simuló intenzitás */
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-section h1 {
            font-size: 44px;
            font-weight: 800;
            letter-spacing: 1px;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .hero-section p {
            color: #a0aec0;
            font-size: 17px;
            max-width: 650px;
            margin: 0 auto 35px auto;
        }

        .btn-more {
            background-color: var(--cyan);
            color: #020b14;
            padding: 12px 35px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            display: inline-block;
            transition: transform 0.2s, background-color 0.3s;
        }

        .btn-more:hover {
            background-color: var(--cyan-hover);
            transform: translateY(-2px);
        }

        /* --- FEHÉR KÁRTYÁK SZEKCIÓ --- */
        .services-section {
            padding-bottom: 80px;
            position: relative;
            z-index: 3;
			background: url("img/concrete-wall.png") repeat-x;
			scroll-margin-top: 95px;
        }

        .cards-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: -80px; 
        }

        .card {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .card:hover {
            transform: translateY(-5px);
        }

        .card-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 20px;
            color: #061d33;
        }

        .card h3 {
            font-size: 20px;
            color: var(--text-dark);
            margin-bottom: 15px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .card p {
            color: var(--text-muted-dark);
            font-size: 14px;
            margin-bottom: 25px;
            flex-grow: 1;
        }

        .btn-card {
            border: 1px solid #061d33;
            color: #061d33;
            background: transparent;
            padding: 8px 25px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: bold;
            font-size: 14px;
            transition: all 0.3s;
        }

        .btn-card:hover {
            background-color: #061d33;
            color: #fff;
        }

        /* --- RÓLAM SZEKCIÓ --- */
        .about-section {
            padding: 80px 0;
            background-color: var(--bg-card-dark);
            color: #fff;
			scroll-margin-top: 95px;
        }

        .about-wrapper {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
        }

        .about-text .tag {
            color: var(--cyan);
            font-weight: bold;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 1px;
            margin-bottom: 10px;
            display: block;
        }

        .about-text h2 {
            font-size: 32px;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .about-text p {
            color: #a0aec0;
            margin-bottom: 20px;
            font-size: 16px;
        }

        .about-img {
            flex: 1;
            text-align: center;
        }

        .profile-placeholder {
            width: 280px;
            height: 340px;
            background: linear-gradient(135deg, #061d33, var(--cyan));
            margin: 0 auto;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #020b14;
            font-weight: bold;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }

        /* --- REFERENCIÁK --- */
        .testimonials {
            padding: 80px 0;
            background-color: var(--bg-dark);
            color: #fff;
            text-align: center;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .testimonials h2 {
            font-size: 28px;
            margin-bottom: 40px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .testimonials h2 span {
            color: var(--cyan);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background-color: rgba(255,255,255,0.03);
            padding: 30px;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.05);
            text-align: left;
        }

        .testimonial-card p {
            color: #cbd5e0;
            font-style: italic;
            margin-bottom: 15px;
            font-size: 15px;
        }

        .testimonial-card h4 {
            color: var(--cyan);
            font-size: 16px;
        }

        /* --- KAPCSOLAT --- */
        .contact-section {
            padding: 80px 0;
            background-color: #f7fafc;
			scroll-margin-top: 95px;
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .contact-info h3 {
            font-size: 26px;
            margin-bottom: 20px;
            color: #042b54;
        }

        .contact-info p {
            color: var(--text-muted-dark);
            margin-bottom: 20px;
        }

        .contact-details {
            list-style: none;
            margin-top: 30px;
        }

        .contact-details li {
            margin-bottom: 15px;
            font-size: 16px;
        }


        .contact-details strong {
            color: #061d33;
        }

        form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            background: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        input, textarea, select {
            background-color: #f7fafc;
            border: 1px solid #e2e8f0;
            padding: 12px;
            color: var(--text-dark);
            border-radius: 5px;
            font-size: 15px;
            width: 100%;
        }

        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--cyan);
        }

        form button {
            background-color: var(--cyan);
            border: none;
            padding: 14px;
            color: #020b14;
            font-weight: bold;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            transition: background-color 0.3s;
        }

        form button:hover {
            background-color: var(--cyan-hover);
        }

        /* --- LÁBLEC --- */
        footer {
            background-color: var(--bg-dark);
            text-align: center;
            padding: 30px 0;
            color: #718096;
            font-size: 14px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* --- MOBILREOPZÍV JAVÍTÁSOK --- */
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .hero-section h1 { font-size: 28px; }
            .cards-wrapper { margin-top: -40px; padding: 0 10px; }
            .about-wrapper, .contact-wrapper { grid-template-columns: 1fr; flex-direction: column; }
            .about-img { order: -1; }
        }


#contact_box{

width: 450px;
height: 450px;

background: #FFFFFF;
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}