

.hero{
    position:relative;
    height:100vh;
    background-image:url("../images/hero.jpg");
    background-size:cover;
    background-position:center;
    overflow: hidden;
}

.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

    background:linear-gradient(
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.50)
    );
}

.hero .content{
    position:relative;
    z-index:2;
    color:#fff;
    top:50%;
    transform:translateY(-50%);
}

.hero h1{
    font-size:3.5rem;
    font-weight:700;
    letter-spacing:1px;
}


.hero p{
    margin-top:15px;
    font-size:1.2rem;
}

.services-section{
    background:#0d0d0d;
    color:#fff;
    padding:100px 0;
}

.service-box{
    background:#1a1a1a;
    padding:30px;
    height:100%;
    transition:0.3s;
    border:1px solid rgba(255,255,255,0.05);
}

.service-box:hover{
    transform:translateY(-10px);
    border-color:#ffb400;
}

.service-box h5{
    font-size:1.2rem;
    margin-bottom:15px;
    font-weight:600;
}

.service-box p{
    font-size:0.95rem;
    color:#ccc;
}

.section-title{
    margin-bottom:50px;
    text-align:center;
    font-weight:600;
    letter-spacing:1px;
}

.section-title::after{
    content:"";
    width:50px;
    height:2px;
    background:#ffb400;
    display:block;
    margin:12px auto 0;
}

.navbar-nav .nav-link {
    position: relative;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #ffb400 !important;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #ffb400;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.service-box img {
    border-radius: 8px;
    height: 160px;
    width: 100%;
    object-fit: cover;
}

.service-box img {
    border-radius: 8px;
    height: 160px;
    width: 100%;
    object-fit: cover;
}

.img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
}

.img-wrap img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: 0.4s ease;
}

.img-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.25);
    transition: 0.4s ease;
}

.service-box:hover .img-wrap img {
    transform: scale(1.08);
}

.service-box:hover .img-wrap::after {
    background: rgba(0,0,0,0.45);
}

.service-box {
    cursor: pointer;
}

.dark-section img {
    border-radius: 10px;
}

.dark-section .col-md-5 {
    padding-right: 40px;
}

.hero h1{
    font-size:3.5rem;
    font-weight:700;
    letter-spacing:1px;
    line-height:1.2;
}

.hero .btn{
    padding:12px 30px;
    font-weight:600;
}

.hero-company{
    margin-top:15px;
    font-size:1.1rem;
    letter-spacing:2px;
    color:#ffb400;
    font-weight:600;
}



.navbar{
    padding:20px 0;
}

/* default – wszystkie strony */
.navbar-brand img {
    height: 45px;
    width: auto;
    display: block;
    transition: 0.3s ease;
}


.navbar-brand:hover img{
    transform:scale(1.05);
    filter: drop-shadow(0 0 6px rgba(255,180,0,0.6));
}



.btn-brand{
    background:#ffb400;
    color:#000;
    font-weight:600;
    padding:12px 30px;
    border:none;
    transition:0.3s ease;
}

.btn-brand:hover{
    background:#e0a200;
    color:#000;
    transform:translateY(-2px);
}

.btn-outline-brand{
    border:1px solid #ffb400;
    color:#ffb400;
    background:transparent;
    padding:12px 30px;
    font-weight:600;
    transition:0.3s ease;
}

.btn-outline-brand:hover{
    background:#ffb400;
    color:#000;
}

.btn-brand:hover{
    box-shadow:0 5px 20px rgba(255,180,0,0.3);
}

.footer{
    background:#0d0d0d;
    color:#ccc;
    padding:60px 0 20px;
    border-top:1px solid rgba(255,255,255,0.05);
}

.footer h5{
    color:#fff;
    margin-bottom:15px;
}

.footer p{
    font-size:0.95rem;
    line-height:1.6;
}

.footer-logo{
    height: 45px;
    width: auto;
    display: block;
    opacity: 0.9;
}

.footer-logo:hover{
    opacity: 1;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:10px;
}

.footer-links a{
    color:#ccc;
    text-decoration:none;
    transition:0.3s;
}

.footer-links a:hover{
    color:#ffb400;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.05);
    padding-top:15px;
    font-size:0.85rem;
}

.dark-section img {
    width:100%;
    max-width:300px;
    height:auto;
    object-fit:cover;
}

/* ===== ABOUT ONLY ===== */

.about-section .service-box{
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s;
}

.about-section .service-box:hover{
    transform:translateY(-8px);
}

.img-wrap {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
}

.img-wrap img {
    width: 100%;
    transition: transform 0.4s ease;
}

.about-section .service-box:hover img {
    transform: scale(1.05);
}


.hero-small{
    position:relative;
    height:280px;
    background:url("images/hero.jpg") center/cover no-repeat;
}

.hero-small .overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
}

.hero-small .content{
    position:relative;
    z-index:2;
    top:50%;
    transform:translateY(-50%);
    color:#fff;
}


  /* ===== SERVICES ONLY ===== */

.services-section .service-card{
    background: rgba(255,255,255,0.03);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s;
    height: 100%;
    backdrop-filter: blur(6px);
}

.services-section .service-card:hover{
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    border-color: #ffb400;
}

/* TEXT */
.services-section .service-card h5{
    color: #ffb400;
    font-size: 1.3rem;
    margin-top: 15px;
}

.services-section .service-card p{
    color: #ccc;
}

/* IMAGE */
.services-section .service-card .img-wrap img{
    height: 180px;
    object-fit: cover;
}

/* =========================
   PROJECTS PAGE STYLE
========================= */

/* NAVBAR */
.custom-navbar {
    background: rgba(15, 23, 32, 0.95);
    backdrop-filter: blur(8px);
    padding: 12px 0;
}

.custom-navbar .nav-link {
    color: #fff;
    font-weight: 500;
    margin-left: 20px;
    transition: 0.3s;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
    color: #ffb400;
}

.custom-btn {
    background: #ffb400;
    border: none;
    color: #000;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s;
}

.custom-btn:hover {
    background: #e0a200;
    color: #000;
}

/* PAGE HEADER */
.page-header {
    position: relative;
}

.page-header h1 {
    letter-spacing: 1px;
}

  .page-header::after {
    background: linear-gradient(
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.4)
    );
}

.small-heading {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    opacity: 0.8;
}

/* SECTION TITLE */
.section-title {
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background:#ffb400;
    margin: 12px auto 0;
}

/* PROJECT CARDS */




/* FEATURE BOX */
.feature-box {
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-4px);
    background: #f8f9fa;
}

/* CTA SECTION */
section[style*="#0f1720"] {
    background: linear-gradient(135deg, #0f1720, #1a2530);
}

/* FOOTER */
.site-footer {
    background: #0f1720;
    color: #ccc;
}

.site-footer h6 {
    color: #fff;
    margin-bottom: 15px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffb400;
}

.footer-bottom-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-bottom-links a:hover {
    color: #ffb400;
}

/* MOBILE FIX */
@media (max-width: 768px) {

    .page-header {
        min-height: 400px !important;
        padding: 80px 0;
    }

   

    .custom-navbar .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }

}

.page-header h1 {
    text-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

.page-header p {
    opacity: 0.9;
}


.navbar {
    padding: 18px 0;
}

.projects-page .hero{
    background-image: url("../images/projects-header.jpg");
}


@keyframes fadeUp{
    to{
        opacity:1;
        transform: translateY(0);
    }
}


/* PROJECT CARDS - FINAL */

.project-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    transition:all 0.35s ease;
    box-shadow:0 6px 20px rgba(0,0,0,0.06);
}

.project-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
    transition:transform 0.5s ease;
}

.project-card .p-4{
    background:#fff;
    padding:24px !important;
}

.project-card h4{
    font-weight:700;
    margin-bottom:10px;
    color:#1c1c1c;
    transition:0.3s ease;
}

.project-card p{
    color:#555;
    font-size:0.95rem;
    line-height:1.6;
}

.project-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.project-card:hover img{
    transform:scale(1.05);
}

.project-card:hover h4{
    color:#ffb400;
}

.feature-box i{
    font-size:24px;
    color:#ffb400;
}

.approach-img{
    border-radius:16px;
    box-shadow:
        0 20px 50px rgba(0,0,0,0.15),
        0 0 0 1px rgba(255,180,0,0.15);
    transition:0.35s ease;
}

.approach-img:hover{
    transform:translateY(-4px);
    box-shadow:
        0 25px 60px rgba(0,0,0,0.20),
        0 0 20px rgba(255,180,0,0.25);
}

.navbar .container{
    display:flex;
    align-items:center;
}

.navbar-collapse{
    align-items:center;
}

/* COOKIE BANNER */

.cookie-banner{
    position:fixed;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    width:90%;
    max-width:900px;
    z-index:999999;
    background:#111827;
    color:#fff;
    padding:18px 24px;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

.cookie-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.cookie-content p{
    margin:0;
    font-size:0.95rem;
    color:#d1d5db;
    line-height:1.6;
}

.cookie-content a{
    color:#ffb400;
    text-decoration:none;
}

.cookie-content a:hover{
    text-decoration:underline;
}

@media(max-width:768px){

    .cookie-content{
        flex-direction:column;
        align-items:flex-start;
    }

    .cookie-banner{
        width:calc(100% - 30px);
        bottom:15px;
    }

}











