/*==========================================================
  iQm Solutions
  style.css
  Version 2.0
==========================================================*/


/*==========================================================
  RESET
==========================================================*/

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:"Poppins",sans-serif;

    font-size:16px;

    line-height:1.75;

    color:#475569;

    background:#F5F7FA;

    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;

}

img{

    display:block;

    max-width:100%;

    height:auto;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}


/*==========================================================
  VARIABLEN
==========================================================*/

:root{

    --primary:#0F4C81;

    --primary-light:#2F80ED;

    --accent:#56B3FF;

    --dark:#081626;

    --text:#475569;

    --text-light:#64748B;

    --white:#FFFFFF;

    --background:#F5F7FA;

    --border:#E6EDF5;

    --radius:20px;

    --shadow:0 20px 50px rgba(0,0,0,.08);

    --transition:.35s ease;

}


/*==========================================================
  LAYOUT
==========================================================*/

.container{

    width:min(1280px,92%);

    margin:0 auto;

}

.section{

    padding:120px 0;

}

.light{

    background:#FFFFFF;

}


/*==========================================================
  TYPOGRAPHIE
==========================================================*/

h1,
h2,
h3,
h4{

    color:var(--dark);

    font-weight:600;

    line-height:1.2;

}

p{

    color:var(--text);

}

.headline{

    max-width:900px;

    margin:0 auto 70px;

    text-align:center;

}

.headline span{

    display:inline-block;

    margin-bottom:18px;

    color:var(--primary);

    font-size:.9rem;

    font-weight:600;

    letter-spacing:2px;

}

.headline h2{

    font-size:clamp(2.3rem,4vw,3.4rem);

    margin-bottom:22px;

}

.headline p{

    max-width:760px;

    margin:0 auto;

    font-size:1.1rem;

    color:var(--text-light);

}


/*==========================================================
  SKIP LINK
==========================================================*/

.skip-link{

    position:absolute;

    left:-9999px;

}

.skip-link:focus{

    left:20px;

    top:20px;

    background:#ffffff;

    color:#000;

    padding:12px 22px;

    border-radius:10px;

    z-index:9999;

}


/*==========================================================
  HEADER
==========================================================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    transition:var(--transition);

    background:rgba(8,22,38,.45);

    backdrop-filter:blur(16px);

}

.header.scrolled{

    background:#ffffff;

    box-shadow:0 10px 35px rgba(0,0,0,.10);

}

.header .container{

    display:flex;

    justify-content:flex-end;

    align-items:center;

    height:78px;

    gap:45px;

}


/*==========================================================
  NAVIGATION
==========================================================*/

.navigation{

    display:flex;

    gap:38px;

    align-items:center;

}

.navigation a{

    position:relative;

    color:#ffffff;

    font-weight:600;

    text-shadow:0 2px 6px rgba(0,0,0,.35);

    transition:var(--transition);

}

.header.scrolled .navigation a{

    color:var(--dark);

    text-shadow:none;

}

.navigation a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--accent);

    transition:.3s;

}

.navigation a:hover::after{

    width:100%;

}

.navigation a:hover{

    color:#DDEEFF;

}

.header.scrolled .navigation a:hover{

    color:var(--primary);

}

.navigation a.active{

    color:var(--accent);

}

.navigation a.active::after{

    width:100%;

}


/*==========================================================
  BUTTONS
==========================================================*/

.button-nav,
.button-primary{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:15px 34px;

    border-radius:50px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );

    color:#ffffff;

    font-weight:600;

    transition:var(--transition);

    box-shadow:0 15px 35px rgba(15,76,129,.25);

}

.button-nav:hover,
.button-primary:hover{

    transform:translateY(-3px);

    box-shadow:0 20px 40px rgba(15,76,129,.35);

}


/*==========================================================
  HERO
==========================================================*/

.hero{

    position:relative;

    padding-top:78px;

    overflow:hidden;

}

.hero-image{

    width:100%;

    display:block;

}

.hero-button{

    position:absolute;

    left:4.3%;

    bottom:5.8%;

    width:15.5%;

    min-width:190px;

    max-width:270px;

    aspect-ratio:3.8/1;

    z-index:50;

    cursor:pointer;

}
/*==========================================================
  ÜBER MICH
==========================================================*/

.about-container{

    max-width:920px;

    margin:0 auto;

}

.about-content{

    max-width:700px;

    margin:0 auto;

}

.about-content p{

    text-align:center;

    line-height:1.9;

    margin-bottom:32px;

}

.about-divider{

    width:120px;

    height:3px;

    margin:60px auto;

    border-radius:20px;

    background:linear-gradient(
        90deg,
        var(--primary),
        var(--accent)
    );

}

.about-facts{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:24px;

    margin-top:50px;

}

.about-facts div{

    background:#ffffff;

    border:1px solid var(--border);

    border-radius:20px;

    padding:30px 24px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.about-facts div:hover{

    transform:translateY(-6px);

}

.about-facts strong{

    display:block;

    margin-bottom:10px;

    color:var(--primary);

    font-size:1.45rem;

    font-weight:700;

}

.about-facts span{

    color:var(--text-light);

    font-size:.95rem;

    line-height:1.5;

}


/*==========================================================
  LEISTUNGSKARTEN
==========================================================*/

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:32px;

}

.card{

    background:#ffffff;

    border:1px solid var(--border);

    border-radius:22px;

    padding:40px;

    box-shadow:var(--shadow);

    transition:var(--transition);

    position:relative;

    overflow:hidden;

}

.card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:linear-gradient(
        90deg,
        var(--primary),
        var(--accent)
    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:0 28px 60px rgba(0,0,0,.12);

}

.card:hover::before{

    transform:scaleX(1);

}

.card i{

    width:72px;

    height:72px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:24px;

    border-radius:18px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );

    color:#ffffff;

    font-size:30px;

}

.card h3{

    margin-bottom:16px;

    font-size:1.4rem;

}

.card p{

    color:var(--text-light);

    line-height:1.8;

}


/*==========================================================
  KOMPETENZEN
==========================================================*/

.badges{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:18px;

}

.badges span{

    padding:14px 22px;

    border-radius:50px;

    background:#ffffff;

    border:1px solid var(--border);

    color:var(--dark);

    font-weight:600;

    transition:var(--transition);

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.badges span:hover{

    background:var(--primary);

    color:#ffffff;

    transform:translateY(-3px);

}
/*==========================================================
  KONTAKT
==========================================================*/

.contact{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:32px;

    margin-top:60px;

}

.contact div{

    background:#ffffff;

    border:1px solid var(--border);

    border-radius:22px;

    padding:40px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.contact div:hover{

    transform:translateY(-8px);

}

.contact i{

    width:72px;

    height:72px;

    margin:0 auto 24px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:18px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );

    color:#ffffff;

    font-size:30px;

}

.contact h3{

    margin-bottom:14px;

}

.contact a{

    color:var(--primary);

    font-weight:600;

    transition:var(--transition);

}

.contact a:hover{

    color:var(--primary-light);

}

.cta{

    margin-top:70px;

    text-align:center;

}



/*==========================================================
  FOOTER
==========================================================*/

footer{

    margin-top:120px;

    background:var(--dark);

    color:#ffffff;

}

.footer{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:70px;

    padding:70px 0;

}

.footer-brand h3{

    color:#ffffff;

    margin-bottom:18px;

    font-size:1.8rem;

}

.footer-brand p{

    color:rgba(255,255,255,.70);

    line-height:1.9;

}

.footer-links h4{

    color:#ffffff;

    margin-bottom:20px;

}

.footer-links a{

    display:block;

    margin-bottom:14px;

    color:rgba(255,255,255,.70);

    transition:var(--transition);

}

.footer-links a:hover{

    color:#ffffff;

    padding-left:6px;

}



/*==========================================================
  IMPRESSUM / DATENSCHUTZ
==========================================================*/

body.subpage{

    background:#F6F8FB;

}

body.subpage .header{

    background:#ffffff;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

body.subpage .navigation a{

    color:var(--dark);

    text-shadow:none;

}

body.subpage .navigation a:hover{

    color:var(--primary);

}

/* Button auf Unterseiten */

body.subpage .button-nav{

    color:#ffffff;

}

body.subpage .button-nav:hover{

    color:#ffffff;

}

body.subpage .section{

    padding-top:170px;

}

body.subpage .headline{

    margin-bottom:60px;

}

body.subpage .content-box{

    max-width:900px;

    margin:0 auto;

    background:#ffffff;

    border-radius:22px;

    padding:60px;

    box-shadow:var(--shadow);

}

body.subpage h3{

    margin-top:40px;

    margin-bottom:15px;

}

body.subpage p{

    margin-bottom:20px;

    line-height:1.9;

}

body.subpage ul{

    margin:20px 0 30px 25px;

}

body.subpage li{

    margin-bottom:10px;

}

/* Nur Links innerhalb des Inhalts blau darstellen */

body.subpage .content-box a{

    color:var(--primary);

    font-weight:600;

}

body.subpage .content-box a:hover{

    color:var(--primary-light);

}



/*==========================================================
  ANIMATIONEN
==========================================================*/

.fade-up{

    opacity:0;

    transform:translateY(35px);

    transition:

        opacity .7s ease,

        transform .7s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}



/*==========================================================
  HEADER NACH SCROLLEN
==========================================================*/

.header.scrolled{

    background:#ffffff;

    box-shadow:0 10px 30px rgba(0,0,0,.10);

}

.header.scrolled .navigation a{

    color:var(--dark);

    text-shadow:none;

}

.header.scrolled .navigation a:hover{

    color:var(--primary);

}



/*==========================================================
  SCROLLBAR
==========================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#EDF2F7;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#0B5FA6;

}



/*==========================================================
  TEXTMARKIERUNG
==========================================================*/

::selection{

    background:var(--primary);

    color:#ffffff;

}
/*==========================================================
  RESPONSIVE
==========================================================*/


/*----------------------------------------------------------
  Große Monitore
----------------------------------------------------------*/

@media (min-width:1600px){

    .container{

        max-width:1400px;

    }

}


/*----------------------------------------------------------
  Notebook
----------------------------------------------------------*/

@media (max-width:1200px){

    .container{

        width:94%;

    }

    .cards{

        grid-template-columns:repeat(2,1fr);

    }

}


/*----------------------------------------------------------
  Tablet
----------------------------------------------------------*/

@media (max-width:992px){

    .section{

        padding:90px 0;

    }

    .headline{

        margin-bottom:55px;

    }

    .header{

        background:rgba(8,22,38,.95);

    }

    .header .container{

        justify-content:center;

        gap:25px;

        height:72px;

    }

    .navigation{

        gap:22px;

    }

    .button-nav{

        display:none;

    }

    .cards{

        grid-template-columns:1fr;

    }

    .about-facts{

        grid-template-columns:repeat(2,1fr);

    }

    .contact{

        grid-template-columns:1fr;

    }

    .footer{

        grid-template-columns:1fr;

        gap:45px;

        text-align:center;

    }

}


/*----------------------------------------------------------
  Smartphone
----------------------------------------------------------*/

@media (max-width:768px){

    .header{

        position:sticky;

    }

    .navigation{

        flex-wrap:wrap;

        justify-content:center;

        gap:16px;

    }

    .navigation a{

        font-size:.95rem;

    }

    .headline h2{

        font-size:2rem;

    }

    .headline p{

        font-size:1rem;

    }

    .card{

        padding:32px;

    }

    .card i{

        width:64px;

        height:64px;

        font-size:26px;

    }

    .button-primary{

        width:100%;

    }

}


/*----------------------------------------------------------
  Hero Smartphone
----------------------------------------------------------*/

@media (max-width:768px){

    .hero{

        padding-top:72px;

    }

    .hero-button{

        left:5%;

        bottom:8%;

        width:28%;

        min-width:150px;

        max-width:190px;

    }

}


/*----------------------------------------------------------
  Kleine Smartphones
----------------------------------------------------------*/

@media (max-width:576px){

    .section{

        padding:75px 0;

    }

    .headline{

        margin-bottom:40px;

    }

    .headline h2{

        font-size:1.75rem;

    }

    .about-facts{

        grid-template-columns:1fr;

    }

    .navigation{

        gap:10px;

    }

    .navigation a{

        font-size:.85rem;

    }

    .hero-button{

        min-width:120px;

        width:35%;

    }

    .badges{

        gap:12px;

    }

    .badges span{

        padding:10px 16px;

        font-size:.90rem;

    }

}


/*----------------------------------------------------------
  Druckansicht
----------------------------------------------------------*/

@media print{

    .header,
    .footer,
    .hero,
    .button-nav,
    .button-primary{

        display:none;

    }

    body{

        background:#ffffff;

        color:#000000;

    }

}


/*==========================================================
  BILDER
==========================================================*/

.hero-image{

    user-select:none;

    -webkit-user-drag:none;

}


/*==========================================================
  SANFTE ÜBERGÄNGE
==========================================================*/

section{

    position:relative;

}

section::after{

    content:"";

    display:block;

    clear:both;

}


/*==========================================================
  ENDE DER DATEI
==========================================================*/