/*
Theme Name: Astra Child
Theme URI: https://jahidhasan.com.bd
Description: Custom Astra Child Theme
Author: Jahid Hasan
Author URI: https://jahidhasan.com.bd
Template: astra
Version: 1.0.0
Text Domain: astra-child
*/

/* ===================================
   GLOBAL WEBSITE FOUNDATION
=================================== */

:root{

    --primary:#e10600;
    --secondary:#e10600;

    --dark:#0f172a;
    --text:#475569;

    --white:#ffffff;
    --light:#f8fafc;

    --container:1200px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Inter,sans-serif;
    color:var(--dark);
    background:#fff;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}
ul{
    list-style:none;
}

.jh-container{
    width:100%;
    max-width:1000px;
    margin:0 auto;
    padding:0 24px;
}


    .jh-menu li a{
        
    position:relative;
    text-decoration:none;
    color:#111827;
    font-size:15px;
    font-weight:600;
    transition:.3s;
    padding:8px 0;
    }

.jh-menu li a::after{

    content:"";
    position:absolute;
    left:0;
    bottom:-4px;
    width:0;
    height:2px;
    background:#e10600;
    transition:.3s;
    }

    .jh-menu li a:hover{
    color:#e10600;
    }
    
    .jh-menu li a:hover::after,
    .current-menu-item a::after,
    .current_page_item a::after{
    width:100%;
    }

    .jh-mobile-nav{
    list-style:none;
    margin:0;
    padding:0;
    }

/* ===== HEADER ===== */

.jh-header{
    background:#fff;
    border-bottom:1px solid #e5e7eb;
}

.jh-header-container{
    max-width:1000px;
    margin:0 auto;
    padding:18px 30px;
    display:flex;
    grid-template-columns:250px 1fr 140px;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

/* Logo */

.jh-logo{
    text-decoration:none;
}

.jh-logo-title{
    font-size:24px;
    font-weight:800;
    line-height:1;
    color:#0f172a;
}

.jh-logo-title span{
    color:#e10600;
}

.jh-logo-tagline{
    font-size:13px;
    color:#64748b;
    margin-top:4px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

/* ===================================
         FOOTER
=================================== */

.jh-footer{
    background:#0f172a;
    color:#fff;
    padding:70px 0 30px;
    margin-top:10px;
}

.jh-footer-container{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;

}

.jh-footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;
}

.jh-footer h3 span{
    color:#e10600;
}

.jh-footer ul li{
    margin-bottom:12px;
}

.jh-footer a{
    color:#fff;
}

.jh-copyright{
    text-align:center;
    padding:25px;
    border-top:1px solid rgba(255,255,255,.1);
}

/* Menu */

.jh-nav-wrap{
    display:flex;
    justify-content:flex-end;
    flex:1;
}

    .jh-menu{

    display:flex !important;
    align-items:center;
    gap:18px;
    list-style:none;
    margin:0;
    padding:0;
    }

/* Active Menu */

.current-menu-item a,
.current_page_item a{
    color:#e10600;
}

.jh-menu .current-menu-item > a,
.jh-menu .current_page_item > a{

    color:#e10600 !important;

}

.jh-menu .current-menu-item > a::after,
.jh-menu .current_page_item > a::after{

    width:100% !important;

}



/* Button */

.jh-header-btn{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    height:48px;
    padding:0 24px;
    background:#e10600;
    color:#fff;
    border-radius:8px;
    text-decoration:none;
    font-weight:700;
}

/* Mobile */

.jh-mobile-toggle{
    display:none;
}

/* =========================
   Homepage HERO SECTION
========================= */

.jh-home-hero{
    position:relative;
    min-height:100vh;
    padding:160px 0 100px;
    background-size:cover !important;
    background-position:center center !important;
    background-repeat:no-repeat !important;
}

.jh-hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.jh-hero-content h1{
    font-size:52px;
    line-height:1.15;
    max-width:650px;
    margin-bottom:20px;
    color:#ffffff;
}

.jh-hero-content h1 span{
    color:#e10600;
}

.jh-hero-content p{
    font-size:18px;
    line-height:1.8;
    color:#64748b;
    margin-bottom:35px;
}

.jh-hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:50px;
}

.jh-btn-secondary{
    background:#e10600;
    border:2px solid #e10600;
    color:#e10600;
    padding:14px 28px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
}

.jh-hero-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}

.jh-stat-box{
    background:#fff;
    padding:25px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.jh-stat-box h3{
    color:#e10600;
    margin-bottom:5px;
}


.jh-experience-card{
    position:absolute;
    right:-20px;
    bottom:30px;

    background:#fff;
    padding:25px 30px;
    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.jh-experience-card h3{
    color:#e10600;
    font-size:36px;
}

/* ===================================
      HOMEPAGE REBUILD 2026
=================================== */

.jh-homepage section{
    padding:30px 0;
}

.jh-section-title{
    text-align:center;
    margin-bottom:50px;
}

.jh-section-title span{
    display:block;
    color:#e10600;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:10px;
    text-transform:uppercase;
}

.jh-section-title h2{
    font-size:42px;
    line-height:1.2;
    font-weight:800;
    color:#0f172a;
}
/* ===================================
PREMIUM TRUSTED PLATFORMS
=================================== */

.jh-trusted-platforms{
    padding:90px 0;
    background:#fff;
}

.jh-trusted-header{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
}

.jh-trusted-header span{
    color:#e10600;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
}

.jh-trusted-header h2{
    font-size:42px;
    margin:15px 0;
}

.jh-logo-wall{
    display:flex;
    justify-content:space-between;
    gap:20px;
}

.jh-logo-item{
    background:#fff;
    border:1px solid #eee;
    border-radius:20px;
    padding:20px;
    text-align:center;
    transition:.3s;
}

.jh-logo-item:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.jh-logo-item img{
    width:48px;
    height:48px;
    margin:0 auto 15px;
}

.jh-logo-item span{
    font-weight:600;
}

/* ===================================
        BENEFITS
=================================== */

.jh-growth-benefits{
    padding:50px 0;
    background:#f8fafc;
}

.jh-growth-benefits .jh-section-title{
    max-width:100%;
    margin:0 auto 40px;
}

.jh-growth-benefits .jh-section-title p{
    max-width:650px;
    margin:20px auto 0;
}

.jh-growth-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.jh-growth-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:28px;
    transition:all .35s ease;
}

.jh-growth-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.10);
    border-color:#e10600;
    background:none;
    color:#e10600;
    transform:scale(1.08);
}

.jh-growth-icon{
    width:55px;
    height:55px;
    font-size:18px;
    border-radius:50%;
    background:#e10600;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    margin-bottom:20px;
    transition:all .35s ease;
    transform:scale(1.08);
}

.jh-growth-card h3{
    margin-bottom:12px;
    font-size:22px;
     transition:.3s;
}

/* ===================================
      PREMIUM SERVICES
=================================== */

.jh-premium-services{
    padding:50px 0;
    margin-bottom:40px;
}

.jh-services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.jh-service-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:28px;
    transition:all .35s ease;
}

.jh-service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.10);
    border-color:#dc2626;
}

.jh-service-number{
    color:#dc2626;
    font-weight:700;
    margin-bottom:15px;
}

.jh-service-card:hover h3{
    color:#dc2626;
}


/* ===================================
       CASE STUDIES
=================================== */

.jh-results-showcase{
    padding:50px 0;
    background:#f8fafc;
}

.jh-results-showcase .jh-section-title{
    max-width:800px;
    margin:0 auto 60px;
}

.jh-results-showcase .jh-section-title p{
    max-width:650px;
    margin:20px auto 0;
}

.jh-results-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:20px;
}

.jh-result-card{
    background:#fff;
    border-radius:24px;
    padding:40px;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
    transition:all .35s ease;
}
.jh-result-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.jh-result-card.featured{
    background:#0f172a;
    color:#fff;
    border-radius:20px;
}

.jh-result-label{
    display:inline-block;
    background:#e10600;
    color:#fff;
    padding:8px 14px;
    border-radius:50px;
    font-size:12px;
    font-weight:700;
    margin-bottom:25px;
}

.jh-result-card h3{
    font-size:64px;
    line-height:1;
    margin-bottom:15px;
    color:#e10600;
}

.jh-result-card.featured h3{
    color:#fff;
}

.jh-result-card h4{
    font-size:24px;
    margin-bottom:15px;
}

.jh-result-card p{
    line-height:1.8;
}

/* ===================================
     WHY CHOOSE ME PREMIUM
=================================== */

.jh-why-premium{
    padding:50px 0;
    background:#fff;
}
.jh-why-content{
    max-width:600px;
}

.jh-why-layout{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:50px;
    align-items:center;
}

.jh-why-content span{
    color:#e10600;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
}

.jh-why-content h2{
    font-size:48px;
    line-height:1.2;
    margin:20px 0;
}

.jh-why-content p{
    color:#64748b;
    line-height:1.9;
}

.jh-why-points{
    margin:35px 0;
}

.jh-point{
    margin-bottom:20px;
}

.jh-point strong{
    display:block;
    margin-bottom:5px;
}

.jh-why-stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.jh-stat-card{
    background:#f8fafc;
    border-radius:24px;
    padding:40px 25px;
    text-align:center;
    transition:all .35s ease;
}

.jh-stat-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.10);
}

.jh-stat-card h3{
    font-size:42px;
    font-weight:800;
    color:#dc2626;
    margin-bottom:10px;
}



/* ===================================
      PROCESS PREMIUM
=================================== */

.jh-process-premium{
    padding:100px 0;
    background:#f8fafc;
}

.jh-process-timeline{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}

.jh-step{
    background:#fff;
    border-radius:24px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.jh-step-number{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#e10600;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    font-weight:700;
}

/* ===================================
      TESTIMONIALS PREMIUM
=================================== */

.jh-testimonials-premium{
    padding:100px 0;
    background:#fff;
}

.jh-testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.jh-testimonial-card{
    background:#fff;
    border:1px solid #eee;
    border-radius:24px;
    padding:35px;
}

.jh-testimonial-card.featured{
    background:#08142c;
    color:#fff;
}

.jh-stars{
    color:#f59e0b;
    margin-bottom:20px;
    font-size:20px;
}

.jh-testimonial-card p{
    line-height:1.9;
    margin-bottom:20px;
}

/* Responsive */

/* ===================================
          FAQ
=================================== */

.jh-home-faq{
    background:#f8fafc;
}

.jh-faq-list{
    max-width:900px;
    margin:auto;
}

.jh-faq-item{
    background:#fff;
    border-radius:16px;
    padding:25px;
    margin-bottom:15px;
}

.jh-faq-item h3{
    margin-bottom:10px;
}

/* ===================================
             CTA
=================================== */

.jh-home-cta{
    padding:60px 0 0;
    background:#ffffff;
}

.jh-cta-box{
    background:#f8fafc;
    border-radius:24px;
    padding:60px 40px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.jh-cta-box h2{
    font-size:42px;
    font-weight:800;
    margin-bottom:15px;
    color:#0f172a;
}

.jh-cta-box p{
    font-size:18px;
    color:#64748b;
    margin-bottom:30px;
}

.jh-cta-box .jh-btn-primary{
    display:inline-flex;
}

/* ===================================
       MOBILE MENU
=================================== */

.jh-mobile-menu{

    display:none;
}

/**
 * ABOUT PAGE
 */

/* =========================
   HERO SECTION
========================= */

.jh-about-hero .jh-container{
    display:grid;
    grid-template-columns:0.9fr 1.3fr;
    gap:80px;
    align-items:center;
}

.jh-about-hero-grid{
    display:flex;
    flex-direction:column;
    order:2;
}

.jh-badge{
    display:inline-block;
    background:none;
    color:#e10600;
    padding:10px 18px;
    border-radius:20px;
    font-size:14px;
    font-weight:600;
    margin-top:15px;

}

.jh-about-hero h1{
    font-size:48px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:20px;
    max-width:700px;
}

.jh-about-hero h1 span{
    color:#e10600;
}

.jh-about-hero p{
    font-size:20px;
    color:#555;
    margin-bottom:20px;
    max-width:650px;
}

.jh-hero-image{
    flex:1;
    text-align:right;
     order:1;
}

.jh-hero-image img{
    width:100%;
    max-width:700px;
    height:600px;
    object-fit:cover;
    border-radius:24px;
}

.jh-about-highlights{
    display:grid;
    gap:12px;
    margin:20px 0;
    font-weight:600;
    color:#111827;
}

.jh-about-buttons{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
    margin-top:20px;
}

.jh-accent-line{
    color:#e10600 !important;
    position:relative;
    display:inline-block;
    padding-bottom:6px;
}

.jh-accent-line::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:6px;
    background:rgba(225,6,0,.15);
    border-radius:20px;
}

/* =========================
   JOURNEY SECTION
========================= */

.jh-journey{
    padding:80px 0;
    background:#fff;
}

.jh-journey-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:70px;
    align-items:center;
}

.jh-services-badge{
    display:inline-block;
    background:#fff1f1;
    color:#e10600;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.jh-journey-content h2{
    font-size:42px;
    line-height:1.3;
    color:#111827;
    margin-bottom:30px;
}

.jh-journey-content h2 span{
    color:#e10600;
}

.jh-journey-content p{
    font-size:18px;
    line-height:1.9;
    color:#4b5563;
    margin-bottom:20px;
}

.jh-mission-box{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.jh-quote-icon{
    font-size:50px;
    color:#e10600;
    margin-bottom:15px;
}

.jh-mission-box p{
    font-size:20px;
    line-height:1.8;
    font-weight:600;
    color:#111827;
}

.jh-mission-box span{
    display:block;
    margin-top:20px;
    color:#e10600;
    font-weight:700;
}

/* ===================================
   TIMELINE SECTION
=================================== */

.jh-timeline{
    padding:40px 0;
    background:#ffffff;
}

.jh-timeline-wrapper{
    max-width:900px;
    margin:30px auto 0;
    position:relative;
}

.jh-timeline-wrapper:before{
    content:"";
    position:absolute;
    left:110px;
    top:0;
    width:3px;
    height:100%;
    background:#e10600;
}

.jh-timeline-item{
    display:flex;
    gap:30px;
    margin-bottom:20px;
    position:relative;
    align-items:center;
}

.jh-timeline-year{
    min-width:90px;
    font-size:22px;
    font-weight:800;
    color:#e10600;
}

.jh-timeline-content{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    flex:1;
}

.jh-timeline-content h3{
    font-size:24px;
    margin-bottom:12px;
    color:#111827;
}

.jh-timeline-content p{
    color:#4b5563;
    line-height:1.8;
}

@media(max-width:768px){

    .jh-timeline-wrapper:before{
        display:none;
    }

    .jh-timeline-item{
        flex-direction:column;
        gap:15px;
    }

    .jh-timeline-year{
        min-width:auto;
    }
}

/* ==================================================
   SERVICES SECTION
================================================== */

.jh-services{
    padding:40px 0;
    background:#f8fafc;
}

.jh-services-wrapper{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

.jh-services-header{
    text-align:center;
    max-width:800px;
    margin:0 auto 70px;
}

.jh-services-header h2{
    font-size:48px;
    font-weight:800;
    line-height:1.2;
    color:#111827;
    margin-bottom:20px;
}

.jh-services-header p{
    font-size:18px;
    line-height:1.8;
    color:#6b7280;
}

.jh-services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.jh-service-card{
    background:#ffffff;
    padding:35px 30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:all .3s ease;
}

.jh-service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.10);
}

.jh-service-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:25px;
}

.jh-service-icon.blue{
    background:#e8f0ff;
}

.jh-service-icon.red{
    background:#ffe8e8;
}

.jh-service-icon.green{
    background:#e8fff0;
}

.jh-service-icon.purple{
    background:#f1e8ff;
}

.jh-service-card h3{
    font-size:24px;
    font-weight:700;
    color:#111827;
    margin-bottom:25px;
}

.jh-service-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.jh-service-card ul li{
    position:relative;
    padding-left:28px;
    margin-bottom:14px;
    color:#4b5563;
    line-height:1.7;
}

.jh-service-card ul li:before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:#16a34a;
    font-weight:700;
}

/* =====================================
   SOCIAL PROOF SECTION
===================================== */

.jh-social-proof{
    padding:80px 0;
    background:#f8fafc;
}

.jh-section-header{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
}

.jh-section-header h2{
    font-size:42px;
    font-weight:800;
    color:#111827;
    margin-bottom:20px;
}

.jh-section-header h2 span{
    color:#e10600;
}

.jh-section-header p{
    font-size:18px;
    color:#6b7280;
    line-height:1.8;
}

.jh-social-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}

.jh-social-card{
    background:#ffffff;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    text-decoration:none;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:all .3s ease;
}

.jh-social-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.10);
}

.jh-social-card img{
    width:60px;
    height:60px;
    display:block;
    margin:0 auto 20px;
}

.jh-social-card h3{
    font-size:22px;
    font-weight:700;
    color:#111827;
    margin-bottom:10px;
}

.jh-social-card span{
    font-size:15px;
    color:#6b7280;
}

/* ===================================
   WHY HIRE ME SECTION
=================================== */

.jh-whyhire{
    padding:40px 0;
    background:#ffffff;
}

.jh-whyhire-grid{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;

    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:80px;
    align-items:center;
}

.jh-whyhire-left h2{
    font-size:48px;
    line-height:1.2;
    font-weight:800;
    margin-bottom:25px;
    color:#111827;
}

.jh-whyhire-left h2 span{
    color:#e10600;
}

.jh-why-text{
    font-size:18px;
    line-height:1.9;
    color:#4b5563;
    margin-bottom:35px;
}

.jh-why-list{
    list-style:none;
    padding:0;
    margin:0;
}

.jh-why-list li{
    position:relative;
    padding-left:35px;
    margin-bottom:18px;
    font-size:18px;
    color:#111827;
    font-weight:500;
}

.jh-why-list li:before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:#16a34a;
    font-size:20px;
    font-weight:700;
}

.jh-whyhire-right{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.jh-highlight-card{

    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:24px;
    padding:45px 30px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    transition:.3s;
}

.jh-highlight-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 50px rgba(0,0,0,.10);
}

.jh-highlight-number{
    display:block;
    font-size:42px;
    font-weight:800;
    color:#e10600;
    margin-bottom:12px;
}

.jh-highlight-title{
    display:block;
    font-size:18px;
    color:#111827;
    font-weight:600;
}

/* MOBILE */

@media(max-width:768px){

    .jh-whyhire{
        padding:60px 0;
    }

    .jh-whyhire-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .jh-whyhire-left{
        text-align:center;
    }

    .jh-whyhire-left h2{
        font-size:36px;
    }

    .jh-whyhire-right{
        grid-template-columns:1fr 1fr;
    }

}

/* ===================================
   FAQ SECTION
=================================== */

.jh-faq{
    padding:40px 0;
    background:#f8fafc;
}

.jh-faq-header{
    text-align:center;
    max-width:750px;
    margin:0 auto 60px;
}

.jh-faq-header h2{
    font-size:48px;
    font-weight:800;
    color:#111827;
    margin-bottom:20px;
}

.jh-faq-header h2 span{
    color:#e10600;
}

.jh-faq-header p{
    font-size:18px;
    color:#6b7280;
    line-height:1.8;
}

.jh-faq-wrapper{
    max-width:900px;
    margin:0 auto;
}

.jh-faq-item{

    background:#ffffff;
    margin-bottom:20px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    overflow:hidden;
    transition:.3s;
}

.jh-faq-item:hover{
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.jh-faq-item summary{

    list-style:none;
    cursor:pointer;
    padding:25px 30px;
    font-size:20px;
    font-weight:700;
    color:#111827;
    position:relative;
}

.jh-faq-item summary::-webkit-details-marker{
    display:none;
}

.jh-faq-item summary:after{

    content:"+";
    position:absolute;
    right:30px;
    top:50%;
    transform:translateY(-50%);
    font-size:30px;
    color:#e10600;
    font-weight:700;
}

.jh-faq-item[open] summary:after{
    content:"−";
}

.jh-faq-item p{

    padding:0 30px 30px;
    font-size:17px;
    line-height:1.9;
    color:#4b5563;
}

/* MOBILE */

@media(max-width:768px){

    .jh-faq{
        padding:60px 0;
    }

    .jh-faq-header h2{
        font-size:36px;
    }

    .jh-faq-item summary{
        font-size:18px;
        padding:22px;
    }

    .jh-faq-item p{
        padding:0 22px 22px;
    }
}

/* ===================================
           CTA SECTION
=================================== */

.jh-cta{
    background:linear-gradient(
        135deg,
        #f8fafc,
        #ffffff
    );
    padding:40px 0;
}

.jh-cta-box{
    background:#ffffff;
    border-radius:24px;
    padding:60px;
    text-align:center;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.jh-cta-box:before{

    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-120px;
    right:-120px;
}

.jh-cta-box:after{

    content:"";
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    bottom:-100px;
    left:-100px;
}

.jh-cta-content{
    position:relative;
    z-index:2;
}

.jh-cta-content h2{

    font-size:52px;
    line-height:1.2;
    font-weight:800;
    margin-bottom:25px;
    color:none;
}

.jh-cta-content h2 span{
    color:#e10600;
}

.jh-cta-content p{

    max-width:800px;
    margin:0 auto 40px;
    font-size:20px;
    line-height:1.9;
    color:none;
}

.jh-cta-buttons{

    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.jh-btn-primary{

    display:inline-block;
    padding:18px 36px;
    border-radius:12px;
    font-size:18px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.jh-btn-primary:hover{

    transform:translateY(-4px);
    box-shadow:0 15px 30px rgba(0,0,0,.15);
}

.jh-btn-secondary{

    display:inline-block;
    background:#e10600;
    border:1px solid rgba(255,255,255,.25);
    color:#ffffff;
    padding:18px 36px;
    border-radius:12px;
    font-size:18px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.jh-btn-secondary:hover{

    background:#ffffff;
    color:#e10600;
}

.jh-container-small{
    max-width:900px;
    margin:0 auto;
    padding:0 20px;
}

.jh-eeat-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.jh-eeat-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.jh-testimonial-card{
    background:#fff;
    padding:50px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.jh-testimonial-card p{
    font-size:22px;
    line-height:1.8;
    margin-bottom:20px;
}

/* ===================================
      Global Button Fix
=================================== */

.jh-btn-primary{
    display:flex;
    align-items:center;
    justify-content:center;
    padding:16px 32px;
    background: #e10600;
    border: 1px solid rgba(255, 255, 255, .25);
    color:#ffffff;
    border-radius:12px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.jh-btn-primary:hover{
    transform:translateY(-3px);
    background:#c90500;
}

body{
    font-family:'Inter',sans-serif;
    color:#0f172a;
}

h1,h2,h3,h4,h5,h6{
    font-weight:800;
    line-height:1.2;
}
/* ===================================
     Section Spacing Consistency
=================================== */

.jh-homepage section{
    padding:50px 0;
}

/*==================================================
        Page-SERVICES
==================================================*/

/*==================================================
            SERVICES INTRO
==================================================*/

.jh-services-intro{

    position:relative;

    overflow:hidden;

    padding:95px 0 80px;

    background:#fff;

}

.jh-services-intro::before{

    content:"";

    position:absolute;

    top:-350px;

    right:-220px;

    width:700px;

    height:700px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(225,6,0,.08),
    transparent 70%);

}

.jh-services-intro-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1.15fr .85fr;

    gap:70px;

    align-items:center;

}

/*=========================
LEFT
=========================*/

.jh-services-intro-label{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    border-radius:999px;

    background:#fff6f6;

    border:1px solid rgba(225,6,0,.10);

    color:#e10600;

    font-size:12px;

    font-weight:700;

    letter-spacing:1.5px;

    text-transform:uppercase;

}

.jh-services-intro-label::before{

    content:"";

    width:8px;

    height:8px;

    border-radius:50%;

    background:#e10600;

}

.jh-services-intro-left h1{

    margin:28px 0;

    font-size:64px;

    line-height:1.05;

    letter-spacing:-2px;

    font-weight:800;

    color:#111827;

}

.jh-services-intro-left h1 span{

    color:#e10600;

}

.jh-services-intro-left p{

    max-width:650px;

    font-size:19px;

    line-height:1.9;

    color:#667085;

}

.jh-services-intro-buttons{

    display:flex;

    gap:18px;

    margin-top:40px;

    flex-wrap:wrap;

}

.jh-btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 34px;

    border-radius:14px;

    border:1px solid #d8d8d8;

    background:#fff;

    color:#111827;

    font-weight:600;

    text-decoration:none;

    transition:.35s;

}

.jh-btn-outline:hover{

    border-color:#111827;

    transform:translateY(-3px);

}


/*==================================================
        Page-SERVICES WORKSPACE (Premium v2.0)
==================================================*/

.jh-services-workspace{
    padding:100px 0;
    background:#ffffff;
}

.jh-services-workspace .jh-container{
    max-width:1280px;
    margin:0 auto;
    padding:0 20px;
}

/* Navigation */

.jh-services-nav{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    margin-bottom:60px;
}

.jh-service-nav-item{
    display:flex;
    align-items:center;
    gap:14px;

    padding:18px 22px;

    background:#fff;
    border:1px solid #ececec;
    border-radius:14px;

    cursor:pointer;

    font-weight:600;
    font-size:15px;

    transition:.35s ease;
}

.jh-service-nav-item span{
    width:38px;
    height:38px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#111827;
    color:#fff;

    font-size:13px;
    font-weight:700;
}

.jh-service-nav-item:hover,
.jh-service-nav-item.active{

    background:#111827;
    color:#fff;

    transform:translateY(-3px);

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.jh-service-nav-item:hover span,
.jh-service-nav-item.active span{

    background:#e10600;

}

/* Service Panel */

.jh-service-panel{

    background:#fff;

    border:1px solid #efefef;

    border-radius:24px;

    padding:55px;

    margin-bottom:80px;

    box-shadow:0 15px 50px rgba(0,0,0,.04);

}

/* Number */

.jh-service-number{

    display:inline-flex;

    padding:8px 18px;

    background:#fff4f4;

    color:#e10600;

    border-radius:999px;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:18px;

}

/* Heading */

.jh-service-content h2{

    font-size:42px;

    line-height:1.2;

    font-weight:800;

    color:#111827;

    margin-bottom:22px;

}

/* Description */

.jh-service-description{

    font-size:18px;

    line-height:1.9;

    color:#6b7280;

    margin-bottom:45px;

    max-width:850px;

}

/* Two Column */

.jh-service-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

    margin-bottom:50px;

}

/* Card */

.jh-service-card{

    background:#fafafa;

    border:1px solid #ededed;

    border-radius:18px;

    padding:35px;

    transition:.35s;

}

.jh-service-card:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 45px rgba(0,0,0,.06);

}

.jh-service-card h3{

    font-size:24px;

    margin-bottom:25px;

    color:#111827;

}

.jh-service-card ul{

    padding-left:20px;

}

.jh-service-card li{

    margin-bottom:15px;

    color:#4b5563;

    line-height:1.8;

}

/* Process */

.jh-service-process{

    margin-bottom:45px;

}

.jh-service-process h3{

    font-size:28px;

    margin-bottom:22px;

    color:#111827;

}

.jh-service-process ol{

    padding-left:24px;

}

.jh-service-process li{

    margin-bottom:15px;

    line-height:1.9;

    color:#4b5563;

}

/* CTA */

.jh-service-cta{

    margin-top:20px;

}

/* Responsive */

@media(max-width:992px){

.jh-services-nav{

grid-template-columns:repeat(2,1fr);

}

.jh-service-grid{

grid-template-columns:1fr;

}

.jh-service-panel{

padding:40px;

}

.jh-service-content h2{

font-size:34px;

}

}

@media(max-width:767px){

.jh-services-nav{

grid-template-columns:1fr;

}

.jh-service-panel{

padding:28px;

margin-bottom:50px;

}

.jh-service-content h2{

font-size:28px;

}

.jh-service-description{

font-size:16px;

}

}

/*==================================================
        PREMIUM EFFECTS (Module 2)
==================================================*/

/* Smooth Scroll */

html{

scroll-behavior:smooth;

}

/*----------------------------------
        Service Panel
----------------------------------*/

.jh-service-panel{

position:relative;

overflow:hidden;

transition:.45s ease;

}

.jh-service-panel::before{

content:"";

position:absolute;

top:-180px;
right:-180px;

width:380px;
height:380px;

background:radial-gradient(circle,
rgba(225,6,0,.07),
transparent 70%);

pointer-events:none;

transition:.6s;

}

.jh-service-panel:hover::before{

transform:scale(1.15);

}

.jh-service-panel:hover{

transform:translateY(-8px);

box-shadow:
0 30px 70px rgba(0,0,0,.08);

}

/*----------------------------------
        Glass Card
----------------------------------*/

.jh-service-card{

position:relative;

overflow:hidden;

background:rgba(255,255,255,.72);

backdrop-filter:blur(18px);

-webkit-backdrop-filter:blur(18px);

}

.jh-service-card::after{

content:"";

position:absolute;

top:0;
left:-100%;

width:100%;
height:100%;

background:linear-gradient(
90deg,
transparent,
rgba(255,255,255,.45),
transparent
);

transition:.8s;

}

.jh-service-card:hover::after{

left:120%;

}

.jh-service-card:hover{

border-color:#e10600;

}

/*----------------------------------
        Heading Animation
----------------------------------*/

.jh-service-content h2{

position:relative;

display:inline-block;

}

.jh-service-content h2::after{

content:"";

position:absolute;

left:0;
bottom:-12px;

width:70px;
height:4px;

background:#e10600;

border-radius:10px;

transition:.35s;

}

.jh-service-panel:hover h2::after{

width:120px;

}

/*----------------------------------
        List Hover
----------------------------------*/

.jh-service-card li{

transition:.25s;

}

.jh-service-card li:hover{

padding-left:8px;

color:#111827;

}

/*----------------------------------
        Process
----------------------------------*/

.jh-service-process{

padding:35px;

border-radius:18px;

background:#fafafa;

border:1px solid #efefef;

}

.jh-service-process li{

transition:.25s;

}

.jh-service-process li:hover{

padding-left:10px;

}

/*----------------------------------
        CTA Button
----------------------------------*/

.jh-service-cta .jh-btn-primary{

position:relative;

overflow:hidden;

}

.jh-service-cta .jh-btn-primary::before{

content:"";

position:absolute;

top:0;
left:-120%;

width:60%;
height:100%;

background:linear-gradient(

90deg,

transparent,

rgba(255,255,255,.35),

transparent

);

transform:skewX(-20deg);

transition:.7s;

}

.jh-service-cta .jh-btn-primary:hover::before{

left:150%;

}

.jh-service-cta .jh-btn-primary:hover{

transform:translateY(-3px);

box-shadow:

0 18px 40px rgba(225,6,0,.25);

}

/*----------------------------------
        Navigation
----------------------------------*/

.jh-service-nav-item{

position:relative;

overflow:hidden;

}

.jh-service-nav-item::before{

content:"";

position:absolute;

bottom:0;
left:0;

width:0;
height:3px;

background:#e10600;

transition:.35s;

}

.jh-service-nav-item:hover::before,
.jh-service-nav-item.active::before{

width:100%;

}

/*----------------------------------
        Fade Animation
----------------------------------*/

.jh-service-panel{

animation:fadeUp .8s ease both;

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/*==================================================
        FINAL POLISH (Module 3)
==================================================*/

/* Premium Container */

.jh-services-page{

background:#ffffff;

overflow:hidden;

}

/* Better Section Spacing */

.jh-service-panel{

margin-bottom:100px;

}

/* Better Typography */

.jh-service-content h2{

letter-spacing:-1px;

}

.jh-service-card h3{

font-weight:700;

letter-spacing:-.3px;

}

.jh-service-description{

font-weight:400;

}

/* Card Icon Effect */

.jh-service-card h3{

display:flex;

align-items:center;

gap:12px;

}

.jh-service-card h3::before{

content:"";

width:10px;

height:10px;

border-radius:50%;

background:#e10600;

flex-shrink:0;

}

/* Better List */

.jh-service-card ul{

list-style:none;

padding:0;

margin:0;

}

.jh-service-card li{

position:relative;

padding-left:30px;

margin-bottom:16px;

}

.jh-service-card li::before{

content:"✓";

position:absolute;

left:0;
top:0;

font-weight:700;

color:#e10600;

}

/* Process */

.jh-service-process ol{

counter-reset:step;

list-style:none;

padding:0;

}

.jh-service-process li{

position:relative;

padding-left:60px;

margin-bottom:25px;

}

.jh-service-process li::before{

counter-increment:step;

content:counter(step);

position:absolute;

left:0;
top:0;

width:36px;
height:36px;

border-radius:50%;

background:#111827;

color:#fff;

display:flex;

align-items:center;

justify-content:center;

font-weight:700;

font-size:14px;

}

/* Divider */

.jh-service-panel:not(:last-child)::after{

content:"";

display:block;

margin-top:70px;

height:1px;

background:linear-gradient(

90deg,

transparent,

#ececec,

transparent

);

}

/* CTA */

.jh-service-cta{

margin-top:30px;

}

/* Better Selection */

::selection{

background:#e10600;

color:#fff;

}

/* Scrollbar */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#f3f4f6;

}

::-webkit-scrollbar-thumb{

background:#111827;

border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

background:#e10600;

}

/* Responsive */

@media(max-width:991px){

.jh-service-panel{

margin-bottom:70px;

}

.jh-service-process li{

padding-left:52px;

}

}

@media(max-width:767px){

.jh-services-workspace{

padding:70px 0;

}

.jh-service-panel{

padding:24px;

border-radius:18px;

}

.jh-service-card{

padding:24px;

}

.jh-service-card li{

font-size:15px;

}

.jh-service-process li{

font-size:15px;

line-height:1.8;

}

}

/*==================================================
        STICKY SERVICES NAVIGATION
==================================================*/

.jh-services-nav{

    position:sticky;

    top:90px;

    z-index:100;

    background:rgba(255,255,255,.90);

    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);

    border:1px solid rgba(0,0,0,.05);

    border-radius:18px;

    padding:18px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);

}

.jh-service-nav-item{

    border-radius:12px;

}

.jh-service-nav-item.active{

    background:#111827;

    color:#fff;

}

.jh-service-nav-item.active span{

    background:#e10600;

}

@media(max-width:991px){

    .jh-services-nav{

        position:relative;

        top:0;

    }

}

/*==================================================
        PREMIUM SERVICE HEADER
==================================================*/

.jh-service-content{

position:relative;

}

.jh-services-workspace .jh-workspace-number{

position:absolute;

top:-15px;

right:20px;

font-size:180px;

font-weight:900;

line-height:1;

color:#d1d5db;

opacity:.22;

z-index:0;

pointer-events:none;

user-select:none;

letter-spacing:-8px;

}

.jh-service-content h2,
.jh-service-description,
.jh-service-grid,
.jh-service-process,
.jh-service-cta{

position:relative;

z-index:2;

}

@media(max-width:991px){

.jh-services-workspace .jh-workspace-number{

font-size:90px;

top:-10px;

}

}

@media(max-width:767px){

.jh-services-workspace .jh-workspace-number{

font-size:70px;

top:0;

opacity:.25;

}

}

.jh-service-content h2{

max-width:700px;

margin-bottom:25px;

}

.jh-service-description{

max-width:760px;

margin-bottom:55px;

}

.jh-service-card{

transition:

transform .35s,

box-shadow .35s,

border-color .35s,

background .35s;

}

.jh-service-card:hover{

background:#ffffff;

border-color:#e10600;

box-shadow:

0 25px 60px rgba(0,0,0,.08);

}

.jh-service-cta{

display:flex;

align-items:center;

justify-content:space-between;

gap:25px;

padding-top:35px;

border-top:1px solid #ececec;

margin-top:45px;

}

@media(max-width:767px){

.jh-service-cta{

display:block;

}

}

.jh-btn-primary{

transition:.35s;

}

.jh-btn-primary:hover{

transform:translateY(-4px);

}

.jh-service-highlight{

margin:35px 0;

padding:18px 24px;

border-left:4px solid #e10600;

background:#fafafa;

border-radius:10px;

color:#4b5563;

line-height:1.8;

}

.jh-service-highlight strong{

color:#111827;

}




/* ===================================
           CONTACT PAGE
=================================== */

/* =========================
          HERO
========================= */

.jh-contact-hero{

    padding:70px 0 50px;
    text-align:center;
}

.jh-contact-hero .jh-badge{

    display:inline-block;
    padding:10px 20px;
    background:#fee2e2;
    color:#e10600;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    margin-bottom:20px;
}

.jh-contact-hero h1{

    font-size:52px;
    font-weight:800;
    line-height:1.2;
    color:#0f172a;
    margin-bottom:20px;
}

.jh-contact-hero p{

    max-width:650px;
    margin:auto;
    font-size:18px;
    color:#64748b;
    line-height:1.8;
}


/* =========================
      CONTACT FORM
========================= */

.jh-contact-section{

    padding:20px 0 70px;
}

.jh-contact-grid{

    display:grid;
    grid-template-columns:2fr 1fr;
    gap:30px;
}

.jh-contact-form{

    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:24px;
    padding:40px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.jh-contact-form h2{

    font-size:32px;
    margin-bottom:10px;
}

.jh-contact-form p{

    color:#64748b;
    margin-bottom:30px;
}


/* Fluent Form */

.jh-contact-form input,

.jh-contact-form textarea,

.jh-contact-form select{

    width:100%;
    padding:14px 18px;
    border:1px solid #dbe3eb;
    border-radius:12px;
}

.jh-contact-form input:focus,

.jh-contact-form textarea:focus{

    outline:none;
    border-color:#e10600;
}

/* =========================
      CONTACT INFO
========================= */

.jh-contact-info{

    display:flex;
    flex-direction:column;
    gap:20px;
}

.jh-info-card{

    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:20px;
    padding:28px;
    transition:.3s;
}

.jh-info-card:hover{

    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.jh-info-card h3{

    font-size:20px;
    margin-bottom:10px;
    color:#e10600;
}

.jh-info-card p{

    color:#64748b;
}

/* =========================
         FAQ
========================= */

.jh-faq-item{

    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:16px;
    margin-bottom:20px;
    overflow:hidden;
}

.jh-faq-question{

    width:100%;
    background:none;
    border:none;
    padding:25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-size:18px;
    font-weight:700;
    color:#0f172a;
}

.jh-faq-question span{

    font-size:28px;
    color:#e10600;
}

.jh-faq-answer{

    display:none;
    padding:0 25px 25px;
    color:#64748b;
    line-height:1.8;

}

.jh-faq-item.active .jh-faq-answer{

    display:block;

}

/* ===================================
TABLET & MOBILE HEADER
=================================== */

@media (max-width:991px){

    .jh-nav-wrap{
        display:none !important;
    }

    .jh-mobile-toggle span{
        width:28px;
        height:3px;
        background:#111;
        border-radius:5px;
    }
}

@media (max-width:767px){
    .jh-hero,
    .jh-contact-hero{
        padding:60px 0 40px !important;
    }

    .jh-hero h1,
    .jh-contact-hero h1{
        font-size:34px !important;
        line-height:1.3;
    }

    .jh-hero p,
    .jh-contact-hero p{
        font-size:16px;
        line-height:1.8;
    }
}

@media (max-width:991px){
    .jh-contact-grid,
    .jh-grid,
    .jh-cards{
        display:grid;
        grid-template-columns:1fr !important;
        gap:25px;
    }
}

@media (max-width:767px){
    .jh-info-card,
    .jh-card{
        padding:25px;
    }
}

@media (max-width:767px){
    .jh-footer{
        text-align:center;
    }
    
    .jh-footer-grid{
        display:grid;
        grid-template-columns:1fr;
        gap:35px;
    }

    .jh-footer-menu{
        justify-content:center;
        flex-wrap:wrap;
        gap:20px;
    }

    .jh-header{
    position:sticky;
    top:0;
    z-index:999;
    }

    .jh-header-container{
    padding:15px 20px;
    }

    .jh-logo-title{
    font-size:22px;
    }

    .jh-logo-tagline{
    display:none;
    }

    .jh-mobile-menu{
    display:none;
    }

    .jh-mobile-menu.active{
    display:block;
    position:fixed;
    top:80px;
    left:0;
    width:100%;
    background:#fff;
    padding:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    }

    .jh-mobile-nav{
    list-style:none;
    margin:0;
    padding:0;
    }

    .jh-mobile-nav li{
    margin-bottom:20px;
    }
    .jh-mobile-nav a{
    color:#111827;
    font-size:18px;
    font-weight:600;
    text-decoration:none;
    }

.jh-home-hero{

    min-height:80vh;
    padding:130px 0 80px;
    background-position:70% center !important;    
    }

.jh-hero h1{
    font-size:38px;
    
    }
}

/* ===================================
   FINAL TABLET RESPONSIVE
=================================== */

@media(max-width:991px){

    /* Container */

    .jh-container{
        max-width:100%;
        padding:0 24px;
    }

    /* Header */

    .jh-header-container{
        display:flex !important;
        justify-content:space-between;
        align-items:center;
        padding:18px 24px;
    }

    .jh-nav-wrap{
        display:none !important;
    }

    .jh-header-btn{
        display:none !important;
    }

    .jh-mobile-toggle{
        display:flex !important;
    }

    /* Hero */

    .jh-home-hero{
        min-height:90vh;
        padding:140px 0 80px;
        background-position:70% center !important;
    }

    .jh-hero-grid{
        grid-template-columns:1fr;
        gap:50px;
        text-align:center;
    }

    .jh-hero-content h1{
        font-size:42px !important;
    }

    /* Contact */

    .jh-contact-grid{
        grid-template-columns:1fr !important;
    }

    /* Footer */

    .jh-footer-grid{

        grid-template-columns:1fr 1fr;
        gap:40px;
    }
}

/* ===================================
   FINAL MOBILE RESPONSIVE
=================================== */

@media(max-width:767px){

    /* Container */

    .jh-container{
        width:100%;
        padding:0 20px;
    }

    /* Header */

    .jh-header-container{
        display:flex !important;
        justify-content:space-between;
        align-items:center;
        padding:16px 20px;
    }

    .jh-logo-title{
        font-size:22px;
    }

    .jh-logo-tagline{
        display:none;
    }

    .jh-nav-wrap,
    .jh-menu,
    .jh-header-btn{
        display:none !important;
    }

    .jh-mobile-toggle{
        display:flex !important;
        flex-direction:column;
        gap:5px;
        cursor:pointer;
    }

    .jh-mobile-toggle span{
        width:28px;
        height:3px;
        background:#111;
        border-radius:20px;
    }

    /* Mobile Menu */

    .jh-mobile-menu{
        display:none;
    }

    .jh-mobile-menu.active{
        display:block;
        position:fixed;
        top:80px;
        left:0;
        width:100%;
        background:#fff;
        padding:30px;
        z-index:999;
        box-shadow:0 10px 40px rgba(0,0,0,.08);
    }

    .jh-mobile-nav{
        list-style:none;
        padding:0;
        margin:0;
    }

    .jh-mobile-nav li{
        margin-bottom:20px;
    }

    .jh-mobile-nav a{
        color:#111;
        font-size:18px;
        font-weight:600;
        text-decoration:none;
    }

    /* Hero */

    .jh-home-hero{
        min-height:85vh;
        padding:120px 0 60px;
        background-position:75% center !important;
    }
    
  .jh-hero-content{
    display:flex;
    flex-direction:column;
    min-height:70vh;
    text-align:center;
    }

    .jh-home-hero h1,
    .jh-home-hero p,
    .jh-home-hero .jh-hero-stats {
        display: none !important;
    }

.jh-hero-buttons{

    width:100% !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    margin-top:auto !important;
    }

.jh-hero-buttons a{

    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
    margin:0 auto !important;
    white-space:nowrap !important;
    }
    .jh-btn-primary,
    .jh-btn-secondary{

    display:flex !important;
    width:fit-content;
    margin:0 auto !important;
    }

.jh-logo-wall{

    display:flex;
    flex-wrap:nowrap;
    overflow-x:auto;
    gap:15px;
    justify-content:flex-start;
    -webkit-overflow-scrolling:touch;
    }

.jh-logo-wall::-webkit-scrollbar{

    display:none;
    }

.jh-logo-item{

    flex:0 0 auto;
    }
    /* Cards */

    .jh-growth-grid{

        grid-template-columns:repeat(2,1fr) !important;
    }

    .jh-services-grid,
    .jh-social-grid,
    .jh-testimonial-grid,
    .jh-case-grid,
    .jh-process-timeline,
    .jh-footer-grid,
    .jh-contact-grid{
    
        grid-template-columns:1fr !important;
    }
    
    .jh-growth-card{
    padding:20px !important;
    }
    
    .jh-growth-card h3{
    font-size:16px !important;
    }
    
    .jh-growth-grid{
    gap:15px !important;

    }
    
    h3{

    font-size:18px !important;
    line-height:1.2;
    }
    
    .jh-results-grid{

    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:15px;
    }

    .jh-result-card.featured{
    grid-column:1 / -1;
    }
    .jh-result-card{
    padding:20px !important;
    }

    .jh-result-card h3{
        font-size:40px !important;
    }
    .jh-result-card h4{
        font-size:20px !important;
    }
    .jh-why-content h2{
    font-size:28px !important;
    }
    .jh-why-stats{
    display:none !important;
    }
    .jh-why-layout{
    grid-template-columns:1fr !important;

    }
    /* CTA */

    .jh-cta-box{
        padding:40px 25px !important;
    }
    
    .jh-cta-box h2{
        font-size:30px !important;
        line-height:1.25;
    }
    
    .jh-cta-box p{
        font-size:18px;
        line-height:1.7;
    }
    
    .jh-cta-box .jh-btn-primary{
    display:inline-flex !important;
    width:auto !important;
    min-width:220px;
    white-space:nowrap !important;
    padding:16px 28px !important;
    }
}
    
    @media (max-width:767px){

    .jh-footer{
        text-align:center;
        padding:50px 0 20px;
    }

    .jh-footer-container{
        padding:0 20px;
    }

    .jh-footer-grid{
        display:grid;
        grid-template-columns:1fr;
        gap:35px;
    }

    .jh-footer h3{
        font-size:28px;
        margin-bottom:15px;
    }

    .jh-footer h4{
        font-size:20px;
        margin-bottom:15px;
    }

    .jh-footer ul{
        list-style:none;
        padding:0;
        margin:0;
    }

    .jh-footer ul li{
        margin-bottom:10px;
    }

    .jh-copyright{
        font-size:14px;
        padding:20px;
    }
}
    @media (max-width:767px){
        
    .jh-badge,
    .jh-about-hero p,
    .jh-about-highlights{
        display:none !important;
    }
       .jh-about-hero h1{
        font-size:20px;
       }

    .jh-about-hero .jh-container{
        display:flex !important;
        flex-direction:column !important;
        align-items:center;
    }
    
    .jh-about-hero{
    padding:30px 0 !important;
    }
    
    .jh-about-hero-grid{
    min-height:auto !important;
    }
    
    .jh-hero-image{
    order:1 !important;
    text-align:center;
    }

    .jh-hero-image img{
        max-width:280px;
        width:100%;
        margin:0 auto;
    }
    
    .jh-about-buttons{
    order:2;
    justify-content:center;
    }
    .jh-about-buttons a:last-child{
    display:none;
    }
    
        .jh-journey-content h2{
        font-size:32px;
        line-height:1.3;
        margin-bottom:20px;
    }
    
        .jh-journey-grid{
        grid-template-columns:1fr !important;
        gap:30px;
    }
    
    .jh-mission-box p{
    font-size:16px;

    }
    
    .jh-whyhire-right{
    display:none !important;
    }
}

/* ===================================
    SERVICES HERO RESPONSIVE
=================================== */

@media (max-width:991px){

    .jh-service-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .jh-service-content{
        order:2;
        text-align:center;
        align-items:center;
    }

    .jh-service-image{
        order:1;
        text-align:center;
    }

    .jh-service-image img{
        margin:0 auto;
        max-width:420px;
    }

    .jh-service-content h1::after{
        margin:20px auto 0;
    }

}

@media (max-width:767px){

    .jh-service-hero{
        padding:60px 0;
    }

    .jh-service-badge{
        display:none;
    }

    .jh-service-content h1{
        font-size:38px;
    }

    .jh-service-content p{
        font-size:17px;
        line-height:1.8;
        margin-bottom:30px;
    }

    .jh-service-buttons{
        width:100%;
        flex-direction:column;
        gap:15px;
    }

    .jh-service-buttons a{
        width:100%;
    }

    .jh-service-trust{
        justify-content:center;
        gap:12px;
    }

    .jh-service-trust span{
        font-size:14px;
    }

    .jh-service-image img{
        max-width:320px;
    }
}

/* ===================================
      SERVICES QUICK NAV
=================================== */

.jh-service-nav{
    position:sticky;
    top:80px;
    z-index:99;
    background:#ffffff;
    border-top:1px solid #f1f5f9;
    border-bottom:1px solid #f1f5f9;
}

.jh-service-nav-wrap{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
    padding:18px 0;
}

.jh-service-nav-wrap a{
    padding:12px 22px;
    border:1px solid #e5e7eb;
    border-radius:50px;
    background:#ffffff;
    color:#111827;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.jh-service-nav-wrap a:hover{
    background:#e10600;
    border-color:#e10600;
    color:#ffffff;
}

@media (max-width:767px){

    .jh-service-nav{
        display:none;
    }

}

/* ===================================
    SERVICES RESPONSIVE
=================================== */

@media (max-width:991px){

    .jh-service-section{
        padding:70px 0;
    }

    .jh-service-layout,
    .jh-service-layout.reverse{

        grid-template-columns:1fr;
        gap:45px;

    }

    .jh-service-layout.reverse .jh-service-media,
    .jh-service-layout.reverse .jh-service-text{

        order:unset;

    }

    .jh-service-text{

        text-align:center;

    }

    .jh-service-text .jh-btn-primary{

        margin:auto;

    }

    .jh-service-list{

        display:inline-block;
        text-align:left;

    }

}

@media (max-width:767px){

    .jh-service-section{

        padding:60px 0;

    }

    .jh-service-text h2{

        font-size:32px;

    }

    .jh-service-text p{

        font-size:16px;
        line-height:1.8;

    }

    .jh-service-list li{

        font-size:15px;
        margin-bottom:12px;

    }

    .jh-service-media img{

        max-width:100%;

    }

}

