/*======================================
KHA CONSULTANT
Premium Corporate Website
=======================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;
    line-height:1.7;
    overflow-x:hidden;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
    display:block;
}

/*================ HEADER =================*/

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    padding:8px 0;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    z-index:999;
}

.header-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    width:100px;
    height:auto;
    display:block;
}
.navbar{
    display:flex;
    gap:32px;
    align-items:center;
}

.navbar a{
    color:#111;
    font-size:15px;
    font-weight:600;
    position:relative;
    transition:.3s;
}

.navbar a:hover{
    color:#E31E24;
}

.navbar a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-7px;
    width:0;
    height:2px;
    background:#E31E24;
    transition:.3s;
}

.navbar a:hover::after{
    width:100%;
}

.header-btn{
    background:#E31E24;
    color:#fff;
    padding:13px 30px;
    border-radius:50px;
    font-weight:600;
    transition:.35s;
}

.header-btn:hover{
    background:#111;
    transform:translateY(-3px);
}

.nav-cta-mobile{
    display:none;
}

.menu-toggle{
    display:none;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:6px;
    width:44px;
    height:44px;
    padding:0;
    background:none;
    border:none;
    cursor:pointer;
    z-index:1001;
}

.menu-toggle .bar{
    display:block;
    width:26px;
    height:3px;
    background:#111;
    border-radius:2px;
    transition:transform .3s ease, opacity .3s ease;
}

.nav-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.5);
    z-index:998;
    opacity:0;
    visibility:hidden;
    transition:opacity .3s ease, visibility .3s ease;
}

.nav-overlay.active{
    opacity:1;
    visibility:visible;
}

.menu-toggle.active .bar:nth-child(1){
    transform:translateY(9px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2){
    opacity:0;
}

.menu-toggle.active .bar:nth-child(3){
    transform:translateY(-9px) rotate(-45deg);
}

/*================ HERO =================*/

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    background:
    linear-gradient(90deg,rgba(0,0,0,.82),rgba(0,0,0,.45)),
    url("images/hero-bg.jpg") center center/cover no-repeat;
    padding-top:95px;
}

.overlay{
    display:none;
}

.hero-content{
    position:relative;
    z-index:2;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}

.left{
    width:58%;
}

.left h5{
    color:#E31E24;
    font-size:15px;
    letter-spacing:2px;
    margin-bottom:15px;
}

.left h1{
    font-size:64px;
    font-weight:800;
    line-height:1.15;
    color:#fff;
    margin-bottom:25px;
}

.left h1 span{
    color:#E31E24;
}

.left p{
    color:#ddd;
    font-size:17px;
    max-width:720px;
    margin-bottom:35px;
}

.buttons{
    display:flex;
    gap:20px;
}

.btn{
    display:inline-block;
    padding:15px 34px;
    background:#E31E24;
    border-radius:50px;
    font-weight:600;
    color:#fff;
    transition:.35s;
}

.btn:hover{
    transform:translateY(-5px);
    background:#c5181e;
}

.btn-outline{
    display:inline-block;
    padding:15px 34px;
    border:2px solid #fff;
    border-radius:50px;
    color:#fff;
    font-weight:600;
    transition:.35s;
}

.btn-outline:hover{
    background:#fff;
    color:#111;
}

.right{
    width:38%;
    display:flex;
    flex-direction:column;
    gap:22px;
    align-items:center;
}

.floating-card{
    background:rgba(255,255,255,.16);
    backdrop-filter:blur(18px);
    padding:30px;
    border-radius:22px;
    width:310px;
    border:1px solid rgba(255,255,255,.25);
    box-shadow:0 30px 60px rgba(0,0,0,.35);
    animation:float 4s ease-in-out infinite;
}

.floating-card h2{
    color:#fff;
    font-size:34px;
    margin-bottom:8px;
}

.floating-card p{
    color:#ddd;
    font-size:15px;
}

@keyframes float{
    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0);
    }
}

/*================ TRUST BAR =================*/

.trust{
    padding:70px 0;
    background:#fff;
    text-align:center;
}

.trust p{
    font-size:22px;
    font-weight:600;
    margin-bottom:35px;
    color:#222;
}

.logos{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}

.logos span{
    background:#f5f5f5;
    padding:22px;
    border-radius:12px;
    text-align:center;
    font-weight:700;
    transition:.3s;
}

.logos span:hover{
    background:#E31E24;
    color:#fff;
    transform:translateY(-6px);
}

/*================ SECTION TITLE =================*/

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    display:inline-block;
    color:#E31E24;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:15px;
}

.section-title h2{
    font-size:46px;
    font-weight:700;
    color:#111;
    margin-bottom:18px;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
    font-size:17px;
}

/*================ ABOUT =================*/

.about{
    padding:120px 0;
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-grid img{
    width:100%;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
    transition:.4s ease;
}

.about-grid img:hover{
    transform:scale(1.04);
}

.about h5{
    color:#E31E24;
    font-size:16px;
    letter-spacing:2px;
    margin-bottom:15px;
}

.about h2{
    font-size:46px;
    line-height:1.2;
    margin-bottom:25px;
    color:#111;
}

.about p{
    font-size:17px;
    color:#666;
    margin-bottom:30px;
}

.about ul{
    list-style:none;
    margin-bottom:30px;
}

.about ul li{
    margin-bottom:14px;
    font-size:17px;
    font-weight:500;
    color:#444;
}

/*================ WHY CHOOSE =================*/

.why-choose{
    padding:120px 0;
    background:#fafafa;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.why-card{
    background:#fff;
    padding:45px 30px;
    border-radius:20px;
    text-align:center;
    transition:.35s;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.why-card:hover{
    transform:translateY(-12px);
    background:#E31E24;
    color:#fff;
    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

.why-card .icon{
    font-size:50px;
    margin-bottom:20px;
}

.why-card h3{
    font-size:23px;
    margin-bottom:15px;
}

.why-card p{
    font-size:15px;
    line-height:28px;
}

/*================ SERVICES =================*/

.services{
    padding:120px 0;
    background:#fff;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.service-card{
    padding:45px;
    border-radius:20px;
    background:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
    border:1px solid #eee;
}

.service-card:hover{
    transform:translateY(-10px);
    background:#111;
    color:#fff;
    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

.service-card h3{
    font-size:25px;
    margin-bottom:18px;
}

.service-card p{
    color:#777;
    line-height:28px;
    margin-bottom:20px;
}

.service-card:hover p{
    color:#ddd;
}

.service-card a{
    color:#E31E24;
    font-weight:600;
}

/*================ STATS =================*/

.stats{
    padding:100px 0;
    background:#E31E24;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stat-box{
    text-align:center;
    color:#fff;
}

.stat-box h2{
    font-size:56px;
    margin-bottom:8px;
}

.stat-box p{
    font-size:18px;
}

/*================ INDUSTRIES =================*/

.industries{
    padding:120px 0;
    background:#fff;
}

.industry-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.industry-card{
    padding:40px;
    background:#fafafa;
    border-radius:20px;
    transition:.35s;
}

.industry-card:hover{
    background:#111;
    color:#fff;
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

.industry-card h3{
    font-size:24px;
    margin-bottom:15px;
}

.industry-card p{
    color:#666;
    line-height:28px;
}

.industry-card:hover p{
    color:#ddd;
}

/*================ PROCESS =================*/

.process{
    padding:120px 0;
    background:#f7f7f7;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.step{
    background:#fff;
    padding:40px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.step:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

.step-number{
    width:70px;
    height:70px;
    margin:auto;
    margin-bottom:25px;
    background:#E31E24;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:700;
}

.step h3{
    font-size:24px;
    margin-bottom:15px;
}

.step p{
    color:#666;
    line-height:28px;
}

/*================ CTA =================*/

.cta{
    padding:120px 0;
    background:linear-gradient(135deg,#111,#E31E24);
    text-align:center;
    color:#fff;
}

.cta h2{
    font-size:50px;
    margin-bottom:20px;
}

.cta p{
    font-size:18px;
    max-width:700px;
    margin:auto;
    margin-bottom:40px;
    line-height:32px;
}

/*================ CLIENTS =================*/

.clients{
    padding:120px 0;
    background:#fff;
}

.client-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:25px;
}

.client-card{
    background:#fafafa;
    padding:35px;
    border-radius:18px;
    display:flex;
    justify-content:center;
    align-items:center;
    height:130px;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.client-card:hover{
    transform:translateY(-10px);
    background:#E31E24;
    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

.client-card img{
    max-width:100%;
    max-height:60px;
    filter:grayscale(100%);
    transition:.3s;
}

.client-card:hover img{
    filter:grayscale(0%);
}

/*================ TESTIMONIAL =================*/

.testimonial{
    padding:120px 0;
    background:#f8f8f8;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.testimonial-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

.stars{
    color:#FFC107;
    font-size:22px;
    margin-bottom:20px;
}

.testimonial-card p{
    color:#666;
    line-height:30px;
    margin-bottom:20px;
}

.testimonial-card h4{
    font-size:20px;
    color:#111;
}

/*================ FOUNDER =================*/

.founder{
    padding:120px 0;
    background:#111;
    color:#fff;
}

.founder .section-title h2{
    color:#fff;
}

.founder-box{
    max-width:850px;
    margin:auto;
    background:rgba(255,255,255,.08);
    padding:50px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 20px 50px rgba(0,0,0,.25);
    border:1px solid rgba(255,255,255,.12);
}

.founder-box h3{
    font-size:32px;
    margin-bottom:10px;
}

.founder-role{
    color:#E31E24;
    font-weight:600;
    margin-bottom:20px;
}

.founder-box p{
    color:#ddd;
    line-height:30px;
}

/*================ JOBS =================*/

.jobs{
    padding:120px 0;
    background:#fafafa;
}

.jobs-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.job-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
}

.job-card:hover{
    transform:translateY(-10px);
    background:#111;
    color:#fff;
    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

.job-card h3{
    font-size:25px;
    margin-bottom:15px;
}

.job-card p{
    color:#666;
    line-height:28px;
    margin-bottom:20px;
}

.job-card:hover p{
    color:#ddd;
}

.job-card a{
    color:#E31E24;
    font-weight:600;
}

/*================ CONTACT =================*/

.contact{
    padding:120px 0;
    background:#fff;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.contact-info span{
    color:#E31E24;
    font-weight:700;
    letter-spacing:2px;
}

.contact-info h2{
    font-size:46px;
    margin:20px 0;
}

.contact-info p{
    color:#666;
    line-height:30px;
}

.contact-item{
    margin-top:20px;
    font-size:17px;
    display:flex;
    align-items:flex-start;
    gap:15px;
}

.contact-item i{
    color:#E31E24;
    font-size:20px;
    margin-top:5px;
}

.contact-form{
    background:#fafafa;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:18px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:10px;
    font-family:Poppins,sans-serif;
    font-size:16px;
}

.contact-form textarea{
    height:170px;
    resize:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline:none;
    border-color:#E31E24;
    box-shadow:0 0 12px rgba(227,30,36,.25);
}

.contact-form button{
    border:none;
    cursor:pointer;
    width:100%;
}

.btn-red{
    display:inline-block;
    padding:16px 36px;
    background:#E31E24;
    border-radius:50px;
    font-weight:600;
    color:#fff;
    transition:.35s;
}

.btn-red:hover{
    transform:translateY(-4px);
    background:#c5181e;
}

.btn-red:disabled{
    opacity:.7;
    cursor:not-allowed;
    transform:none;
}

.form-status{
    margin-top:16px;
    font-size:15px;
    font-weight:500;
    text-align:center;
    min-height:22px;
}

.form-status.success{
    color:#1f8a4c;
}

.form-status.error{
    color:#E31E24;
}

/*================ FOOTER =================*/

footer{
    background:#111;
    color:#fff;
    padding:90px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
}

.footer-grid h2,
.footer-grid h3{
    margin-bottom:20px;
}

.footer-grid span{
    color:#E31E24;
}

.footer-grid p{
    color:#ccc;
}

.footer-grid a{
    display:block;
    margin-bottom:12px;
    color:#ccc;
    transition:.3s;
}

.footer-grid a:hover{
    color:#E31E24;
}

.social{
    display:flex;
    gap:15px;
}

.social i{
    width:45px;
    height:45px;
    background:#222;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    transition:.3s;
    cursor:pointer;
}

.social i:hover{
    background:#E31E24;
}

.copyright{
    text-align:center;
    margin-top:50px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.1);
    color:#aaa;
}

/*================ SCROLLBAR =================*/

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#f5f5f5;
}

::-webkit-scrollbar-thumb{
    background:#E31E24;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#b9151a;
}

/*================ SELECTION =================*/

::selection{
    background:#E31E24;
    color:#fff;
}

/*================ RESPONSIVE =================*/

@media(max-width:991px){

    .header-container{
        flex-wrap:nowrap;
        gap:12px;
    }

    .menu-toggle{
        display:flex;
        margin-left:auto;
    }

    .header-btn-desktop{
        display:none;
    }

    .navbar{
        position:fixed;
        top:0;
        right:-100%;
        width:min(320px,85vw);
        height:100vh;
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        gap:0;
        padding:100px 28px 40px;
        background:#fff;
        box-shadow:-8px 0 30px rgba(0,0,0,.12);
        transition:right .35s ease;
        z-index:1000;
        overflow-y:auto;
    }

    .navbar.active{
        right:0;
    }

    .navbar a{
        width:100%;
        padding:16px 0;
        font-size:17px;
        border-bottom:1px solid #f0f0f0;
    }

    .navbar a::after{
        display:none;
    }

    .navbar a.active{
        color:#E31E24;
    }

    .nav-cta-mobile{
        display:inline-block;
        width:100%;
        margin-top:24px;
        text-align:center;
        border-bottom:none;
    }

    .logo img{
        width:130px;
    }

    .hero{
        padding:140px 0 80px;
        min-height:auto;
    }

    .hero-content{
        flex-direction:column;
        text-align:center;
    }

    .left,
    .right{
        width:100%;
    }

    .left h1{
        font-size:42px;
        line-height:1.25;
    }

    .buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

    .floating-card{
        width:100%;
        max-width:340px;
    }

    .about-grid,
    .contact-grid{
        grid-template-columns:1fr;
    }

    .why-grid,
    .services-grid,
    .industry-grid,
    .process-grid,
    .testimonial-grid,
    .jobs-grid,
    .stats-grid{
        grid-template-columns:1fr;
    }

    .logos{
        grid-template-columns:1fr;
    }

    .client-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .social{
        justify-content:center;
    }

    .section-title h2,
    .about h2,
    .cta h2,
    .contact-info h2{
        font-size:34px;
    }
}

@media(max-width:576px){

    .left h1{
        font-size:34px;
    }

    .section-title h2{
        font-size:30px;
    }

    .client-grid{
        grid-template-columns:1fr;
    }

    .founder-box{
        padding:30px 20px;
    }

    .contact-form{
        padding:25px;
    }
}
.about-section{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 80px 8%;
}

.about-image{
    flex: 1;
}

.about-image img{
    width: 100%;
    max-width: 520px;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.about-content{
    flex: 1;
}