/*
Theme Name: Drukcom
Version: 1.0
*/

:root{
    --red:#C8102E;
    --dark:#111827;
    --text:#222;
    --light:#F5F6F8;
    --white:#ffffff;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    color:var(--text);
    background:#fff;
    line-height:1.6;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

a{
    text-decoration:none;
}


.eyebrow{
    color:var(--red);
    font-weight:700;
    text-transform:uppercase;
    font-size:13px;
    letter-spacing:1px;
    margin-bottom:10px;
}

.section-heading{
    max-width:1300px;
    margin:0 auto 60px;
}

.section-heading h2{
    font-size:48px;
    line-height:1.1;
}

/* ==========================
HEADER
========================== */

.site-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 40px;
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    z-index:999;
}

.brand{
    display:flex;
    align-items:center;
}

.brand-logo{
    height:70px;
    width:auto;
}

.site-nav{
    display:flex;
    gap:30px;
    align-items:center;
}

.site-nav a{
    color:#222;
    font-weight:600;
    transition:.3s;
}

.site-nav a:hover{
    color:var(--red);
}

/* ==========================
HERO
========================== */


/* HERO AREA */
.hero{
    position:relative;
    min-height:560px;
    background:url('assets/images/hero.jpg') center center/cover no-repeat;
    display:flex;
    align-items:center;
	overflow:hidden;
}

.hero-copy,
.hero-panel{
    position:relative;
    z-index:2;
}
}
.hero::before{
    content:'';
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(5,10,20,.55) 0%,
        rgba(5,10,20,.30) 45%,
        rgba(5,10,20,.10) 100%
    );
}
.hero-inner{
    position:relative;
    z-index:2;

    max-width:1600px;
    width:100%;

    margin:0 auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:40px 80px;

    gap:120px;
}


/* LEFT SIDE */
.hero-copy{
    max-width:520px;
    flex:1;
}

.hero-title{
    color:#ffffff;
    font-size:48px;
    line-height:1.05;
    font-weight:800;
}

.hero-title .red{
    color:#C8102E;
}


.hero-text{
    font-size:17px;
    line-height:1.7;
    max-width:500px;
}



.metric{
    display:flex;
    align-items:center;
    gap:18px;

    background:rgba(0,15,45,.18);

    backdrop-filter:blur(6px);
    -webkit-backdrop-filter:blur(6px);

    border:1px solid rgba(255,255,255,.10);

    border-radius:18px;

    padding:20px;
    margin-bottom:16px;
}

.metric-icon{
    width:58px;
    height:58px;

    border-radius:50%;

    background:rgba(200,16,46,.10);
    border:2px solid rgba(200,16,46,.75);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:24px;
}

.metric-content strong{
    display:block;
    color:#fff;
    font-size:20px;
    margin-bottom:5px;
}

.metric-content span{
    color:#ddd;
    font-size:16px;
}
.hero-tag{
    color:#ff2d3d;
    font-size:18px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:20px;

    text-shadow:
        0 0 10px rgba(255,45,61,.4),
        0 0 20px rgba(255,45,61,.2);
}

.hero-actions{
    margin-top:30px;
}

.btn{
    display:inline-block;
    padding:14px 28px;
    border-radius:8px;
    font-weight:600;
    text-decoration:none;
}

.btn.primary{
    background:#C8102E;
    color:#fff;
}

.btn.secondary{
    border:1px solid #fff;
    color:#fff;
    margin-left:12px;
}
/* ==========================
STATS
========================== */

.stats-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stat-card{
    text-align:center;
    background:#fff;
    padding:30px;
}

.stat-card h3{
    color:var(--red);
    font-size:42px;
    margin-bottom:10px;
}

/* ==========================
COMPANIES
========================== */

.company-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.company-card{
    background:#fff;
    padding:35px;
    border-radius:16px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.logo-slot{
    margin-bottom:20px;
}

.logo-slot strong{
    display:block;
    font-size:26px;
    color:var(--red);
}

.logo-slot small{
    color:#666;
}

.company-card h3{
    margin-bottom:15px;
}

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

.services-grid{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    padding:35px;
    border-radius:16px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
    text-align:center;
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-card h3{
    font-size:22px;
    margin-bottom:12px;
}

.service-card p{
    color:#666;
}

/* ==========================
PROJECTS
========================== */

.project-grid{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.project-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.project-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.project-content{
    padding:20px;
}

.project-content h3{
    margin-bottom:10px;
}

/* ==========================
COVERAGE
========================== */

.coverage-grid{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.coverage-map img{
    width:100%;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.1);
}

.coverage-copy h3{
    font-size:32px;
    margin-bottom:20px;
}

.coverage-copy ul{
    margin-top:20px;
    padding-left:20px;
}

.coverage-copy li{
    margin-bottom:10px;
}

/* ==========================
DIGITAL
========================== */

.digital-grid{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.digital-image img{
    width:100%;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.digital-content h2{
    font-size:48px;
    margin-bottom:20px;
}

.digital-content ul{
    margin-top:20px;
    padding-left:20px;
}

.digital-content li{
    margin-bottom:10px;
}

/* ==========================
CONTACT
========================== */

.contact-section{
    background:#111827;
    color:#fff;
}

.contact-section h2{
    color:#fff;
    font-size:48px;
}

.contact-card{
    margin-top:30px;
}

.contact-card a{
    display:block;
    color:#fff;
    margin-bottom:10px;
    font-size:22px;
    font-weight:700;
}

/* ==========================
FOOTER
========================== */

.site-footer{
    background:#07101f;
    color:#fff;
    margin-top:0;
}

.footer-container{
    max-width:1300px;
    margin:auto;

    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:60px;

    padding:70px 40px;
}

.footer-col img{
    height:60px;
    margin-bottom:20px;
}

.footer-col p{
    color:#c8d0da;
    line-height:1.8;
}

.footer-col h4{
    margin-bottom:20px;
    color:#fff;
}

.footer-col ul{
    list-style:none;
}

.footer-col li{
    margin-bottom:12px;
}

.footer-col a{
    color:#c8d0da;
    transition:.3s;
}

.footer-col a:hover{
    color:#C8102E;
}

.footer-bottom{
    text-align:center;
    padding:20px;

    border-top:1px solid rgba(255,255,255,.08);

    color:#9aa6b5;
}
/* ==========================
TABLET
========================== */

@media(max-width:991px){

    .hero-inner{
        display:block;
    }

    .hero-panel{
        width:100%;
        margin-top:40px;
    }

    .company-grid,
    .coverage-grid,
    .digital-grid{
        grid-template-columns:1fr;
    }

    .services-grid,
    .project-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

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

.site-nav{
    gap:15px;
    font-size:14px;
	}

    .hero{
        min-height:auto;
    }

    .hero-inner{
        padding:40px 20px;
    }

    .hero-copy h1{
        font-size:42px;
    }

    .hero-copy p{
        font-size:18px;
    }

    .services-grid,
    .project-grid,
    .stats-grid,
    .company-grid{
        grid-template-columns:1fr;
    }

    .section{
        padding:60px 20px;
    }

    .site-header{
        flex-direction:column;
        gap:20px;
        padding:15px 20px;
    }

    .site-nav{
        flex-wrap:wrap;
        justify-content:center;
    }

    .section-heading h2,
    .digital-content h2,
    .contact-section h2{
        font-size:34px;
    }
}
.service-icon{
    width:80px;
    height:80px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#fff2f4;
    display:flex;
    align-items:center;
    justify-content:center;
}

.service-icon i{
    font-size:34px;
    color:#C8102E;
}

/* ==========================
   CLIENTS & PARTNERS
========================== */

.partners-section{
    background:#ffffff;
    padding:90px 0;
    overflow:hidden;
    border-top:1px solid #eee;
    border-bottom:1px solid #eee;
}

.logo-track{
    display:flex;
    align-items:center;
    gap:90px;
    width:max-content;
    animation:scrollLogos 35s linear infinite;
}

.logo-track img{
    height:85px;
    width:auto;
    object-fit:contain;
    transition:all .3s ease;
}

.logo-track img:hover{
    transform:translateY(-3px) scale(1.05);
}
.logo-track img[src*="rgob"]{
    height:90px;
}

.logo-track img[src*="molex"]{
    height:65px;
}
@keyframes scrollLogos{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

#companies{
    padding-bottom:20px;
}

#services{
    padding-top:20px;
}
.webmail-card{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:16px;

    padding:35px;
    max-width:420px;
}

.webmail-card h3{
    color:#fff;
    margin-bottom:15px;
    font-size:28px;
}

.webmail-card p{
    color:#d7dbe3;
    margin-bottom:25px;
}

.webmail-card small{
    display:block;
    margin-top:15px;
    color:#aab4c5;
}


