/* ===================================================
   KAIZENFORGE
   Premium Corporate CSS
   Part 1A
===================================================*/

/*==============================
FONTS
==============================*/

@font-face {
    font-family: "Kaizen";
    src: url("/static/kaizenfont.woff2") format("woff2");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face{
    font-family:"Corbert";
    src:url("/static/corbert.woff2") format("woff2");
    font-weight:400;
}

/* Google Font
font-family:'Inter',sans-serif;
*/

/*==============================
ROOT
==============================*/

:root{

    --white:#ffffff;
    --black:#111111;

    --bg:#ffffff;
    --surface:#fafafa;

    --border:#e7e7e7;

    --text:#111111;
    --paragraph:#5b5b5b;

    --radius:20px;

    --transition:.35s cubic-bezier(.2,.8,.2,1);

    --shadow:
    0 10px 30px rgba(0,0,0,.05);

}

/*==============================
RESET
==============================*/

*{

    margin:0;
    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--bg);

    color:var(--text);

    font-family:'Inter',sans-serif;

    line-height:1.75;

    overflow-x:hidden;

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

button{

    border:none;

    background:none;

    cursor:pointer;

}

/*==============================
SCROLLBAR
==============================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f4f4f4;

}

::-webkit-scrollbar-thumb{

    background:#111;

    border-radius:50px;

}

/*==============================
SELECTION
==============================*/

::selection{

    background:#111;

    color:#fff;

}

/*==============================
CONTAINER
==============================*/

.container{

    width:min(92%,1320px);

    margin:auto;

}

/*==============================
TYPOGRAPHY
==============================*/

h1,
h2,
h3,
.logo{

    font-family:"Kaizen";

    color:#111;

}

h1{

    font-size:5rem;

    line-height:1.05;

    letter-spacing:-2px;

}

h2{

    font-size:3.5rem;

    line-height:1.1;

}

h3{

    font-size:1.5rem;

}

p{

    color:var(--paragraph);

    font-size:1.06rem;

}

section{

    padding:120px 0;

}

/*==============================
LABELS
==============================*/
.hero-tag{
 
    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    border-radius:999px;

    border:1px solid var(--border);

    background:#fff;

    font-family:"Corbert";

    font-size:.88rem;

    margin-bottom:30px;

  

}

.section-label{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    border-radius:999px;

    border:1px solid var(--border);

    background:#fff;

    font-family:"Corbert";

    font-size:.88rem;

    margin-bottom:30px;

}

.section-label::before{

    content:"";

    width:8px;

    height:8px;

    border-radius:50%;

    background:#111;

}
/*==================================================
NAVBAR
==================================================*/
header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(18px);

    border-bottom:1px solid #ECECEC;

    z-index:1000;

    transition:.35s;

}

.navbar{

    width:min(1250px,92%);
    margin:0 auto;

    height:86px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo{

    display:flex;

    align-items:center;

    gap:14px;

    font-size:1.7rem;

}

.logo img{

    width:46px;
    height:46px;

    object-fit:contain;

}

.nav-links{

    display:flex;

    align-items:center;

    gap:42px;

    list-style:none;

}

.nav-right{

    display:flex;
    align-items:center;

}

.nav-links a{

    position:relative;

    font-size:.98rem;

    font-weight:500;

    color:#444;

    transition:.3s;

}

.nav-links a:hover{

    color:#111;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#111;

    transition:.35s;

}

.nav-links a:hover::after{

    width:100%;

}
/*==================================================
BUTTONS
==================================================*/

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 30px;

    border-radius:14px;

    background:#111;

    color:#fff;

    font-weight:600;

    transition:var(--transition);

    box-shadow:var(--shadow);

}

.btn-primary:hover{

    transform:translateY(-4px);

    background:#222;

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 30px;

    border-radius:14px;

    border:1px solid var(--border);

    background:#fff;

    color:#111;

    font-weight:600;

    transition:var(--transition);

}

.btn-secondary:hover{

    transform:translateY(-4px);

    border-color:#111;

}

/*==================================================
HERO
==================================================*/

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

}


.hero-left{

    max-width:680px;

}

.hero-left h1{

    margin-bottom:28px;

}

.hero-left p{

    font-size:1.15rem;

    max-width:620px;

    margin-bottom:42px;

    color:#555;

}

.hero-buttons{

    display:flex;

    gap:18px;

    margin-bottom:70px;

}

.hero-stats{

    display:flex;

    gap:55px;

}

.hero-stats .stat h3{

    font-size:1.3rem;

    margin-bottom:10px;

}

.hero-stats .stat p{

    font-size:.95rem;

    color:#777;

}

/*==================================================
HERO IMAGE
==================================================*/

.hero-right img{

    width:100%;

    max-width:650px;

    border-radius:24px;

    transition:.5s;

    animation:float 6s ease-in-out infinite;

}

.hero-right img:hover{

    transform:scale(1.02);

}
.hero-grid{
    display:grid;
    grid-template-columns:1.2fr 0.8fr;
    align-items:center;
    gap:70px;
}


.hero-right{
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-right img{
    width:100%;
    max-width:535px;
    border-radius:20px;
}

/*==================================================
FLOAT
==================================================*/

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-14px);

    }

    100%{

        transform:translateY(0);

    }

}

/*==================================================
SECTION HEADING
==================================================*/

.section-heading{

    text-align:center;

    margin-bottom:70px;

}

.section-heading span{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 18px;

    border:1px solid var(--border);

    border-radius:999px;

    font-family:"Corbert";

    font-size:.9rem;

    color:#444;

    margin-bottom:22px;

    background:#fff;

}

.section-heading h2{

    max-width:760px;

    margin:auto;

    margin-bottom:20px;

}

.section-heading p{

    max-width:700px;

    margin:auto;

    color:#666;

}

/*==================================================
TRUST SECTION
==================================================*/

.trust-section{

    background:#FAFAFA;

}

.trust-section .container{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.trust-card{

    background:#fff;

    padding:42px;

    border:1px solid var(--border);

    border-radius:22px;

    transition:var(--transition);

}

.trust-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 45px rgba(0,0,0,.08);

}

.trust-card h3{

    margin-bottom:16px;

}

.trust-card p{

    color:#666;

}

/*==================================================
COMPANY
==================================================*/

.company-preview{

    background:#fff;

}

.company-grid{

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:70px;

    align-items:center;

}

.company-text p{

    margin-bottom:26px;

}

.company-box{

    background:#FAFAFA;

    border:1px solid var(--border);

    border-radius:24px;

    padding:45px;

    transition:.35s;

}

.company-box:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.company-box h3{

    margin-bottom:20px;

}

.text-link{

    display:inline-flex;

    margin-top:10px;

    font-weight:600;

    color:#111;

    transition:.3s;

}

.text-link:hover{

    transform:translateX(10px);

}
/*==================================================
SERVICES
==================================================*/

.services{

    background:#F7F7F7;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

/*==================================================
SERVICE CARD
==================================================*/

.service-card{

    position:relative;

    background:#FFFFFF;

    border:1px solid var(--border);

    border-radius:22px;

    padding:48px;

    overflow:hidden;

    transition:var(--transition);

}

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:4px;

    height:0;

    background:#111;

    transition:.4s;

}

.service-card:hover::before{

    height:100%;

}

.service-card:hover{

    transform:translateY(-10px);

    border-color:#CFCFCF;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

}

.service-card h3{

    font-size:1.55rem;

    margin-bottom:18px;

    transition:.3s;

}

.service-card:hover h3{

    transform:translateX(10px);

}

.service-card p{

    color:#666;

    margin-bottom:35px;

    max-width:90%;

}

/*==================================================
SERVICE LINK
==================================================*/

.service-card a{

    display:inline-flex;

    align-items:center;

    gap:12px;

    font-weight:600;

    color:#111;

    transition:.3s;

}

.service-card a::after{

    content:"→";

    transition:.3s;

}

.service-card:hover a{

    transform:translateX(10px);

}

.service-card:hover a::after{

    transform:translateX(6px);

}

/*==================================================
SERVICE ICON
==================================================*/

.service-icon{

    width:68px;

    height:68px;

    border-radius:18px;

    background:#111;

    color:#FFF;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.4rem;

    margin-bottom:28px;

    transition:.35s;

}

.service-card:hover .service-icon{

    transform:rotate(-8deg) scale(1.06);

}

/*==================================================
SERVICE NUMBER
==================================================*/

.service-number{

    position:absolute;

    right:35px;

    top:30px;

    font-size:4rem;

    font-family:"Kaizen";

    color:#EFEFEF;

    user-select:none;

    transition:.35s;

}

.service-card:hover .service-number{

    transform:translateY(-8px);

    color:#E5E5E5;

}

/*==================================================
SECTION DIVIDER
==================================================*/

.services::after{

    content:"";

    display:block;

    width:90%;

    height:1px;

    margin:120px auto 0;

    background:#E8E8E8;

}
/*==================================================
WHY US
==================================================*/

.why-us{

    background:#FFFFFF;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

.why-card{

    position:relative;

    background:#FAFAFA;

    border:1px solid var(--border);

    border-radius:22px;

    padding:42px;

    overflow:hidden;

    transition:var(--transition);

}

.why-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:3px;

    background:#111;

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;

}

.why-card:hover::before{

    transform:scaleX(1);

}

.why-card:hover{

    transform:translateY(-8px);

    background:#fff;

    box-shadow:0 18px 40px rgba(0,0,0,.08);

}

.why-card h3{

    margin-bottom:18px;

    font-size:1.45rem;

}

.why-card p{

    color:#666;

}

/*==================================================
INDUSTRIES
==================================================*/

.industries{

    background:#F8F8F8;

}

.industry-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.industry-box{
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:24px;
    padding:35px;
    text-align:center;
    transition:.35s ease;
}

.industry-box h3{
    margin-top:18px;
    font-size:1.1rem;
    font-weight:600;
}

.industry-box:hover{

    background:#111;

    color:#fff;

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}


.industry-box:hover::before{

    background:#FFFFFF;

}

.industry-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;

    border-radius:50%;
    overflow:hidden;

    border:3px solid #fff;
    box-shadow:0 8px 25px rgba(0,0,0,.08);

    background:#f5f5f5;

    display:flex;
    align-items:center;
    justify-content:center;
}

.industry-icon img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.industry-box:hover .industry-icon img{
    transform:scale(1.08);
}
/*==================================================
SECTION DIVIDER
==================================================*/

.why-us::after,
.industries::after{

    content:"";

    display:block;

    width:90%;

    height:1px;

    margin:120px auto 0;

    background:#ECECEC;

}
/*==================================================
PROCESS
==================================================*/

.process{

    background:#FFFFFF;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.process-card{

    position:relative;

    background:#FFFFFF;

    border:1px solid var(--border);

    border-radius:22px;

    padding:42px;

    overflow:hidden;

    transition:var(--transition);

}

.process-card:hover{

    transform:translateY(-10px);

    box-shadow:0 22px 50px rgba(0,0,0,.08);

    border-color:#CFCFCF;

}

.process-card .step{

    width:58px;

    height:58px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#111;

    color:#fff;

    font-family:"Kaizen";

    font-size:1.1rem;

    margin-bottom:26px;

}

.process-card h3{

    margin-bottom:18px;

    font-size:1.45rem;

}

.process-card p{

    color:#666;

}

.process-card::after{

    content:"";

    position:absolute;

    bottom:0;

    left:0;

    width:0;

    height:4px;

    background:#111;

    transition:.4s;

}

.process-card:hover::after{

    width:100%;

}

/*==================================================
TECH STACK
==================================================*/

.tech-stack{

    background:#F8F8F8;

}

.tech-grid{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:18px;

}

.tech-grid span{

    padding:14px 24px;

    border:1px solid var(--border);

    border-radius:999px;

    background:#FFFFFF;

    color:#111;

    font-weight:500;

    transition:var(--transition);

}

.tech-grid span:hover{

    background:#111;

    color:#fff;

    transform:translateY(-6px);

    border-color:#111;

}

/*==================================================
TECH DIVIDER
==================================================*/

.tech-stack::after{

    content:"";

    display:block;

    width:90%;

    height:1px;

    margin:120px auto 0;

    background:#EAEAEA;

}
/*==================================================
FOUNDER
==================================================*/

.founder-preview{

    background:#FFFFFF;

}

.founder-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

}

.founder-image{

    display:flex;

    justify-content:center;

}

.founder-image img{

    width:100%;

    max-width:520px;

    border-radius:24px;

    object-fit:cover;

    transition:.45s;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.founder-image img:hover{

    transform:translateY(-8px);

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

.founder-content h2{

    margin:18px 0 26px;

}

.founder-content p{

    margin-bottom:22px;

    max-width:620px;

}

.founder-content .btn-primary{

    margin-top:18px;

}

/*==================================================
INTERNSHIPS
==================================================*/

.internships-preview{

    background:#F8F8F8;

}

.internship-card{

    max-width:980px;

    margin:auto;

    text-align:center;

    background:#FFFFFF;

    border:1px solid var(--border);

    border-radius:28px;

    padding:70px;

    transition:var(--transition);

}

.internship-card:hover{

    transform:translateY(-8px);

    box-shadow:0 22px 50px rgba(0,0,0,.08);

}

.internship-card h2{

    margin-bottom:22px;

}

.internship-card p{

    max-width:720px;

    margin:auto auto 35px;

}

/*==================================================
FAQ
==================================================*/

.faq{

    background:#FFFFFF;

}

.faq-item{

    background:#FAFAFA;

    border:1px solid var(--border);

    border-radius:18px;

    padding:28px 34px;

    margin-bottom:18px;

    transition:var(--transition);

}

.faq-item:hover{

    background:#FFFFFF;

    transform:translateX(8px);

    box-shadow:0 16px 40px rgba(0,0,0,.06);

}

.faq-item h3{

    margin-bottom:14px;

}

.faq-item p{

    color:#666;

}
/*==================================================
CALL TO ACTION
==================================================*/

.cta{

    background:#111;

    color:#fff;

}

.cta .container{

    text-align:center;

    max-width:980px;

    padding:120px 20px;

}

.cta h2{

    color:#fff;

    margin-bottom:25px;

}

.cta p{

    color:#D6D6D6;

    max-width:700px;

    margin:0 auto 45px;

    font-size:1.1rem;

}

.cta .btn-primary{

    background:#fff;

    color:#111;

}

.cta .btn-primary:hover{

    background:#f2f2f2;

}

/*==================================================
FOOTER
==================================================*/

footer{

    background:#111;

    color:#fff;

    padding:90px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:60px;

    padding-bottom:60px;

}

.footer-logo{

    width:52px;

    margin-bottom:20px;

}

footer h4{

    margin-bottom:18px;

    font-family:"Kaizen";

}

footer p{

    color:#BBBBBB;

}

footer a{

    display:block;

    color:#BBBBBB;

    margin-bottom:12px;

    transition:.3s;

}

footer a:hover{

    color:#fff;

    transform:translateX(6px);

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.12);

    padding-top:30px;

    text-align:center;

    color:#8E8E8E;

}

/*==================================================
REVEAL ANIMATION
==================================================*/

.reveal{

    opacity:0;

    transform:translateY(50px);

    transition:1s;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}

/*==================================================
HEADER SCROLL
==================================================*/

header.scrolled{

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(18px);

    box-shadow:0 10px 35px rgba(0,0,0,.08);

}

/*==================================================
GLOBAL HOVER
==================================================*/

img{

    transition:.45s;

}

img:hover{

    transform:scale(1.02);

}

button,
a{

    transition:.3s;

}

/*==================================================
SECTION DIVIDER
==================================================*/

section{

    position:relative;

}

section:not(.hero):not(.cta)::after{

    content:"";

    position:absolute;

    bottom:0;

    left:50%;

    transform:translateX(-50%);

    width:92%;

    height:1px;

    background:#ECECEC;

}

/*==================================================
RESPONSIVE
==================================================*/

/*==================================================
SMOOTH FADE
==================================================*/

.fade{

animation:fade .8s ease forwards;

}

@keyframes fade{

from{

opacity:0;

}

to{

opacity:1;

}

}

/*==================================================
FLOAT
==================================================*/

.float{

animation:floating 5s ease-in-out infinite;

}

@keyframes floating{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-10px);

}

100%{

transform:translateY(0);

}

}

/*==================================================
FOCUS
==================================================*/

:focus-visible{

outline:2px solid #111;

outline-offset:4px;

}

/*==================================================
PRINT
==================================================*/

@media print{

header,
footer,
.cta{

display:none;

}

body{

background:#fff;

color:#000;

}

}

/* ==========================================
   MOBILE RESPONSIVE
========================================== */

@media (max-width: 992px){

.contact-card{

padding:90px 20px;

}

.contact-box{

padding:50px 35px;

}

.contact-box h2{

font-size:2.4rem;

}

}


@media (max-width:768px){

.contact-card{

padding:70px 18px;

}

.contact-box{

padding:40px 25px;

border-radius:20px;

}

.contact-box h2{

font-size:2rem;

line-height:1.25;

}

.contact-box p{

font-size:1rem;

line-height:1.8;

margin-bottom:30px;

}

.contact-box .primary-btn{

display:block;

width:100%;

padding:16px;

}

.email-text{

font-size:1rem;

word-break:break-word;

}

}


@media (max-width:480px){

.contact-card{

padding:60px 15px;

}

.contact-box{

padding:35px 20px;

}

.contact-box h2{

font-size:1.7rem;

}

.contact-box p{

font-size:.95rem;

}

.hero-tag{

font-size:.8rem;

padding:8px 16px;

}

.primary-btn{

font-size:.95rem;

padding:14px 22px;

}

.email-text{

font-size:.92rem;

}

.contact-box small{

font-size:.8rem;

}

   .navbar{
    position: relative;
}

.nav-button{
    width:100%;
    max-width:260px;
    margin:0 auto;
}

.nav-links{
    align-items:center;
}
}
/* ==========================
MOBILE MENU
========================== */

.menu-toggle{

display:none;

font-size:30px;

cursor:pointer;

}


@media(max-width:900px){

.menu-toggle{

display:block;

}

.nav-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 28px;

    background:#111;
    color:#fff;

    border-radius:14px;

    font-weight:600;
    font-size:.95rem;

    transition:.35s ease;
}

.nav-button:hover{
    background:#2a2a2a;
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(0,0,0,.18);
}

.nav-links{

position:absolute;

top:80px;

left:0;

width:100%;

background:#fff;

flex-direction:column;

padding:30px 0;

gap:25px;

display:none;

box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.nav-links.active{

display:flex;

}

}

/* ==========================================
   GLOBAL MOBILE FIX
========================================== */

@media (max-width:900px){

.container{
    width:92%;
}

section{
    padding:70px 0;
}

/* All desktop grids */

.hero-container,
.hero-grid,
.company-grid,
.founder-grid,
.why-grid,
.process-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:40px;
}

.services-grid,
.industry-grid,
.footer-grid,
.trust-section .container{
    grid-template-columns:1fr;
}

/* Hero */

.hero{
    min-height:auto;
    padding-top:120px;
}

.hero-left{
    text-align:center;
    max-width:100%;
}

.hero-left h1{
    font-size:2.8rem;
    line-height:1.15;
}

.hero-left p{
    max-width:100%;
}

.hero-buttons{
    justify-content:center;
    flex-wrap:wrap;
}

.hero-stats{
    justify-content:center;
    flex-wrap:wrap;
}

/* Images */

.hero-right img,
.founder-image img{
    max-width:100%;
}

/* Cards */

.service-card,
.company-box,
.why-card,
.process-card,
.trust-card{
    padding:30px;
}

/* Footer */

.footer-grid{
    text-align:center;
}

footer a:hover{
    transform:none;
}

}
