/* ==========================================
   PROFESSIONAL RECRUITERS HUB
   STYLE.CSS
   PART 1
========================================== */

:root{

    --primary:#FCB504;
    --dark:#595959;
    --gray:#A6A6A6;
    --border:#DEDEE0;
    --light:#F5F5F5;
    --white:#FFFFFF;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:var(--light);
    color:var(--dark);
    line-height:1.7;
    overflow-x:hidden;
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;

}

.container{

    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;

}

.section-padding{

    padding:90px 0;

}
.section-padding1{

    padding:0px 0;

}

img{

    display:block;
    width:auto;
    max-width:100%;
    height:auto;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

/* ==========================================
   NAVBAR
========================================== */

.navbar{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:var(--white);
    z-index:999;
    box-shadow:0 5px 25px rgba(0,0,0,.06);

}

.nav-wrapper{


    min-height:90px;
    display:flex;
    justify-content:space-between;
    align-items:center;

}

.logo img{
    width:200px;
    max-width:100%;

}

.nav-links{

    display:flex;
    align-items:center;
    gap:40px;

}

.nav-links a{

    color:var(--dark);
    font-weight:500;
    transition:.3s;

}

.nav-links a:hover{

    color:var(--primary);

}

.nav-links a.active{

    color:var(--primary);
    font-weight:600;

}

/* ==========================================
   BUTTONS
========================================== */

.btn-primary{

    display:inline-flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    gap:8px;
    background:var(--primary);
    color:var(--dark);
    padding:15px 32px;
    border-radius:10px;
    font-weight:700;
    transition:.3s;
    border:2px solid var(--primary);
}

.btn-primary:hover{

    background:#e5a500;
    transform:translateY(-3px);

}

.btn-primary{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    gap:8px;
    background:var(--primary);
    color:var(--dark);
    padding:15px 32px;
    border-radius:10px;
    font-weight:700;
    transition:.3s;
    border:2px solid var(--primary);

}


.btn-secondary{

    display:inline-block;
    padding:15px 32px;
    border-radius:10px;
    border:2px solid var(--primary);
    color:var(--primary);
    transition:.3s;
    margin-left:15px;

}

.btn-secondary:hover{

    background:var(--primary);
    color:var(--dark);

}

/* ==========================================
   SECTION TITLES
========================================== */

.mini-title{

    color:var(--primary);
    font-weight:700;
    font-size:14px;
    letter-spacing:1px;
    margin-bottom:15px;

}

.section-header{

    text-align:center;
    margin:0 auto 70px;
    max-width:850px;

}

.section-header p{

    color:var(--primary);
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:10px;
    font-size:clamp(15px,2vw,20px);

}

.section-header h2{

    color:var(--dark);
    font-size:clamp(2rem,4vw,3rem);
    font-weight:700;
    line-height:1.2;

}


/* ==========================================
   HERO
========================================== */

.hero{
    min-height:650px;
    height:auto;
    display:flex;
    align-items:center;
    overflow:hidden;

    position:relative;
    height:100vh;
    background:url("assets/hero.jpg") center center/cover no-repeat;
    display:flex;

}

.hero-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to right,
        rgba(89,89,89,.92),
        rgba(89,89,89,.65),
        rgba(89,89,89,.25)
    );

}

.hero-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    position:relative;
    z-index:2;

}

.hero-text{
    max-width:650px;
    width:100%;
    color:white;

}

.hero-text h1{

    font-size:clamp(2.2rem,6vw,4rem);
    line-height:1.15;
    font-weight:800;
    margin-bottom:25px;

}

.hero-text h1 span{

    display:block;
    margin-top:15px;
    color:var(--primary);
    font-size:36px;

}

.hero-text p{

    font-size:clamp(16px,2vw,20px);
    line-height:1.8;
    color:#f0f0f0;
    margin-bottom:40px;
    max-width:600px;

}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    align-items:center;
}

/* ==========================================
   FEATURES
========================================== */

.features{

    background:#f5f5f5;

}

.features-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.feature-card{
    padding:35px;
    height:100%;
    background:var(--white);
    border:1px solid var(--border);
    border-radius:18px;
    padding:40px 30px;
    text-align:center;
    transition:.35s;

}

.feature-card:hover{

    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.feature-icon{

    font-size:42px;
    margin-bottom:20px;
        display:flex;
    justify-content:center;
    align-items:center;

}

.feature-icon img{

    width:80px;
    height:80px;

    object-fit:contain;

}

.feature-card h3{

    margin-bottom:15px;
    color:var(--dark);

}

.feature-card p{
    color: #595959;


    /*color:var(--gray);
    */

}
/* 
   PROCESS SECTION
========================================== */

.process{

    background:var(--light);

}

.process-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.process-card{

    background:var(--white);
    border:1px solid var(--border);
    border-radius:18px;
    padding:45px 30px;
    text-align:center;
    transition:.35s;
    box-shadow:0 8px 25px rgba(0,0,0,.04);

}

.process-card:hover{

    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.number{

    width:58px;
    height:58px;

    border-radius:50%;

    background:var(--primary);
    color:var(--dark);

    display:flex;
    justify-content:center;
    align-items:center;

    margin:0 auto 25px;

    font-weight:700;
    font-size:18px;

}

.process-card h3{

    margin-bottom:15px;
    color:var(--dark);

}

.process-card p{

    color:var(--gray);

}

/*=====================================
HOW IT WORKS
======================================*/

.how-it-works{

    background:var(--light);

}

.works-list{

    max-width:750px;
    margin:auto;

}

.work-item{

    display:flex;
    align-items:center;
    gap:35px;

    background:#fff;

    padding:30px 35px;

    border-radius:18px;

    margin-bottom:25px;

    border:4px solid var(--border);

    transition:.35s;

}

.work-item:hover{

    transform:translateX(10px);

    border-color:var(--primary);

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.work-icon{

    width:95px;
    height:95px;

    min-width:95px;

    border-radius:50%;

    border:5px solid #595959;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:42px;

    color:#595959;

    background:#fff;

}

.work-content{

    flex:1;

}

.work-content h3{

    color:var(--dark);

    font-size:34px;

    margin-bottom:12px;

}

.work-content p{

    color: #595959;

    font-size:17px;

    line-height:1.8;

}
/* ==========================================
   WHY PARTNER WITH PRHI
========================================== */

.partner{

    background:#fff;

}

.partner-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

}

.partner-image img{

    width:100%;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
    height:auto;

}

.partner-content h2{

    font-size:46px;
    margin-bottom:25px;


}

.partner-content p{

    color:var(--gray);
    margin-bottom:30px;


}

.partner-list{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:35px;

}

.partner-list div{

    background:var(--light);
    padding:15px;
    border-radius:10px;
    font-weight:600;

}

/* ==========================================
   OUR COMMITMENT
========================================== */

.commitment{

    background:var(--light);

}

.commitment-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.commitment-card{

    background:#fff;
    padding:35px;
    border-radius:18px;
    border:3px solid var(--border);
    text-align:center;
    transition:.35s;

}

.commitment-card:hover{

    transform:translateY(-8px);
    border-color:var(--primary);

}

.commitment-card h3{

    color:var(--primary);
    margin-bottom:15px;

}

.commitment-card p{
    color: #595959;

    /*color:var(--gray);
    */

}

/* ==========================================
   WHY OUTSOURCE
========================================== */

.outsource{

    background:#fff;

}

.outsource-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.outsource-item{

    background:var(--light);
    padding:35px;
    border-radius:18px;
    text-align:center;
    transition:.35s;

}

.outsource-item:hover{

    background:var(--primary);

}

.outsource-item span{

    display:inline-flex;
    width:60px;
    height:60px;
    border-radius:50%;
    justify-content:center;
    align-items:center;
    background:var(--dark);
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;

}

.outsource-item h3{

    margin-bottom:15px;

}

.outsource-item p{
    color: #595959;

    /*color:var(--gray);
    */

}

.outsource-item1{

    background: white;
    padding:35px;
    border-radius:18px;
    text-align:center;
    transition:.35s;

}

.outsource-item1:hover{

    background:var(--primary);

}

.outsource-item1 span{

    display:inline-flex;
    width:60px;
    height:60px;
    border-radius:50%;
    justify-content:center;
    align-items:center;
    background:var(--dark);
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;

}

.outsource-item1 h3{

    margin-bottom:15px;

}

.outsource-item1 p{
    color: #595959;

    /*color:var(--gray);
    */

}

/* ==========================================
   STATS SECTION
========================================== */

.stats{

    background:var(--dark);
    color:#fff;

}

.stats-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;

}

.stats-left{

    padding:80px;

}

.stats-left .mini-title{

    color:var(--primary);

}

.stats-left h2{

    font-size:42px;
    margin-bottom:45px;
    color:#fff;

}

.stats-cards{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;

}

.stats-cards h3{

    color:var(--primary);
    font-size:48px;
    margin-bottom:8px;

}

.stats-cards span{

    color:#eeeeee;
    font-size:15px;

}

/* ==========================================
   TESTIMONIAL
========================================== */

.testimonial{

    background:var(--white);
    color:var(--dark);
    padding:80px;
    height:100%;

}

.testimonial .mini-title{

    color:var(--primary);

}

.testimonial h2{

    font-size:42px;
    margin-bottom:30px;

}

.testimonial-text{

    color:#595959;
    margin-bottom:40px;
    font-size: 18px;
    font-weight: bold;

}

.client-info{

    display:flex;
    align-items:center;
    gap:18px;

}

.client-info img{

    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;

}

.client-info h4{

    color:var(--dark);
    font-weight: normal;

}

.client-info span{

    color:var(--gray);
    font-size:14px;

}

/* ==========================================
   INDUSTRIES
========================================== */

.industries{

    background:var(--white);

}

.industries-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;

}

.industry-card{

    background:#595959;

    border:3px solid var(--border);

    border-radius:14px;

    padding:35px;

    text-align:center;

    font-weight:600;

    color:var(--dark);

    transition:.35s;

}

.industry-card img{

    width:60px;

    height:60px;

    object-fit:contain;

    flex-shrink:0;

}

.industry-card span{
    font-size: 18px;

}

.industry-card:hover{

    background:var(--primary);
    border-color:var(--primary);

    color:var(--dark);

    transform:translateY(-5px);

}

/* ==========================================
   CTA SECTION
========================================== */

.cta{

    padding:80px 30px;

}

.cta-wrapper{

    background:var(--dark);

    color:#fff;

    border-radius:22px;

    padding:clamp(30px,5vw,70px);

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.cta-wrapper1{

    width:100%;
    max-width:1700px;
    margin:auto;

    background:var(--dark);
    border-radius:22px;
    padding:70px;

    display:flex;
    justify-content:space-between;
    align-items:center;

}

.cta-wrapper h2{

    font-size:46px;
    margin-bottom:12px;

}

.cta-wrapper p{

    color:#e7e7e7;

}

.cta-wrapper .btn-primary{

    min-width:220px;
    text-align:center;

}

/* ==========================================
   FOOTER
========================================== */

.footer{

    background:#4b4b4b;
    color:#dddddd;
    padding-top:80px;

}

.footer-grid{

    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
}

.footer h3,
.footer h4{

    color:#fff;
    margin-bottom:22px;

}

.footer p{

    color:#d7d7d7;

}

.footer ul li{

    margin-bottom:12px;

}

.footer ul li a{

    color:#d7d7d7;
    transition:.3s;

}

.footer ul li a:hover{

    color:var(--primary);

}

/*=====================================
FOOTER LOGO
======================================*/

.footer-company{

    display:flex;

    flex-direction:column;

    align-items:flex-start;

}

.footer-logo{

    width:75px;

    height:auto;

    margin-bottom:18px;

    transition:.35s;

}

.footer-logo:hover{

    transform:scale(1.08);

}

.footer-company h3{

    margin-bottom:15px;

}

/*=====================================
FOOTER BOTTOM
======================================*/

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.12);

    margin-top:50px;

    padding:25px 0;

}

.footer-bottom-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;
        font-size:15px;
      display: flex !important;                  /* Activates Flexbox layout */
  justify-content: center !important;        /* Centers image horizontally */
  align-items: center !important;            /* Centers image vertically */

}

.footer-bottom p{

    margin:0;

    color:#d7d7d7;

}

.footer-bottom a{

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.footer-bottom a:hover{

    color:var(--primary);

}
/* ==========================================
   ABOUT PAGE
========================================== */

.about-hero{


    min-height:650px;
    padding:140px 0 90px;
    display:flex;
    align-items:center;
    padding-top:160px;
    padding-bottom:100px;
    /*background:var(--white);
    */

}

.about-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

}

.about-text h1{

    font-size:58px;
    line-height:1.15;
    color:var(--dark);
    margin-bottom:25px;

}

.about-text h1 span{

    display:block;
    color:var(--primary);

}

.about-text p{

    color:#595959;
    margin-bottom:22px;
    font-size:18px;

}

.about-image{

    width:100%;
    border-radius:22px;
    box-shadow:0 20px 45px rgba(0,0,0,.10);

}

/* ==========================================
   ABOUT STATISTICS
========================================== */

.about-stats{

    background:var(--dark);
    color:#fff;
    padding:70px 0;

}

.stats-flex{

    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
    text-align:center;

}

.stats-flex div{

    padding:20px;

}

.stats-flex h2{

    font-size:48px;
    color:var(--primary);
    margin-bottom:10px;

}

.stats-flex p{

    color:#ececec;

}

/* ==========================================
   COMPANY INFORMATION
========================================== */

.company-info{

    background:var(--white);

}

.company-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;

}

.company-card{

    background:var(--white);
    border:1px solid var(--border);
    border-radius:18px;
    padding:40px;
    transition:.35s;
    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.company-card:hover{

    transform:translateY(-8px);
    border-color:var(--primary);
    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.company-card h3{

    color:var(--primary);
    font-size:26px;
    margin-bottom:20px;

}

.company-card p{

    color: #595959;
    line-height:1.9;
    font-size:16px;

}

.company-card strong{

    color:var(--dark);

}

/* ==========================================
   VALUES
========================================== */

.values-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.value-card{

    background:var(--white);
    border:1px solid var(--border);
    border-radius:18px;
    padding:35px;
    text-align:center;
    transition:.35s;
    box-shadow:0 5px 18px rgba(0,0,0,.04);

}

.value-card:hover{

    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.value-card h3{

    color:var(--dark);
    margin-bottom:15px;

}

.value-card p{

    color:var(--gray);

}

/* ==========================================
   MISSION & VISION
========================================== */

.mission-section{

    padding-bottom:100px;
    background:var(--light);

}

.mission-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;

}

.mission-card{

    background:var(--white);
    border:1px solid var(--border);
    border-radius:20px;
    padding:60px;
    transition:.35s;

}

.mission-card:hover{

    transform:translateY(-5px);

}

.mission-card.dark{

    background:var(--dark);
    color:#fff;
    border:none;

}

.mission-card.dark h3{

    color:var(--primary);

}

.mission-card h3{

    font-size:28px;
    margin-bottom:20px;

}

.mission-card p{

    line-height:1.8;

}

/* ==========================================
   TEAM SECTION
========================================== */

.team-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.team-card{

    background:var(--white);
    border:1px solid var(--border);
    border-radius:18px;
    overflow:hidden;
    text-align:center;
    transition:.35s;
    padding-bottom:30px;

}

.team-card:hover{

    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.team-card img{

    width: 100%;
    height: 400px;
    object-fit: contain;
    object-position: center;
    display: block;
    background: #f5f5f5;
    margin-bottom:25px;

}

.team-card h3{

    color:var(--dark);
    margin-bottom:8px;

}

.team-card span{

    color: #595959;
    font-size:15px;

}

/* ==========================================
   ABOUT CTA
========================================== */

.about-hero .btn-primary{

    margin-top:15px;

}
/* ==========================================
   SERVICES PAGE
========================================== */

/* HERO */

.services-hero{

    position:relative;
    height:520px;
    background:url("assets/services.png") center center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;

}

.services-hero .overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
        to right,
        rgba(89,89,89,.92),
        rgba(89,89,89,.70),
        rgba(89,89,89,.35)
    );

}

.hero-inner{

    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
    max-width:1800px;

}

.hero-inner h1{

    font-size:clamp(2.2rem,6vw,3.8rem);
    line-height:1.15;
    font-weight:700;
    margin:30px 0;

}

.hero-inner p{

    font-size:18px;
    color:#f2f2f2;
    max-width:800px;
    margin:auto;

}

/* ===============================
TESTIMONIAL HERO
=============================== */

.testimonial-hero .hero-inner{

    max-width:1400px;

    margin:auto;

    text-align:center;

    padding:0 20px;

}

.testimonial-hero .hero-inner h1{

    font-size:51px;

    line-height:1.2;

    margin-bottom:25px;

}

.testimonial-hero .hero-inner p{

    max-width:900px;

    margin:0 auto;

    font-size:20px;

    line-height:1.8;

}

/* Large Desktop */

@media (min-width:1200px){

    .testimonial-hero .hero-inner h1{

        white-space:nowrap;

    }

}

@media(max-width:768px){

.section-padding{

    padding:65px 0;

}

}
/* Laptop */

@media (max-width:1199px){

    .testimonial-hero .hero-inner{

        max-width:1000px;

    }

    .testimonial-hero .hero-inner h1{

        font-size:44px;

    }

}

/* Tablet */

@media (max-width:992px){

    .testimonial-hero{

        height:420px;

    }

    .testimonial-hero .hero-inner h1{

        font-size:38px;

    }

    .testimonial-hero .hero-inner p{

        font-size:18px;

    }

}

/* Mobile */

@media (max-width:768px){

    .section-padding{

    padding:65px 0;

}


    .testimonial-hero{

        height:360px;

    }

    .testimonial-hero .hero-inner{

        max-width:100%;

        padding:0 25px;

    }

    .testimonial-hero .hero-inner h1{

        font-size:30px;

        white-space:normal;

        line-height:1.3;

    }

    .testimonial-hero .hero-inner p{

        font-size:16px;

        line-height:1.7;

    }

}

/* Small Phones */

@media (max-width:480px){

    .testimonial-hero{

        height:320px;

    }

    .testimonial-hero .hero-inner h1{

        font-size:26px;

    }

    .testimonial-hero .hero-inner p{

        font-size:15px;

    }

    .industry-card img {
        width: 45px;
        height: 45px;
        object-fit: contain;
        flex-shrink: 0;
    }

}

@media(max-width:768px){

    .industry-card{

        padding:15px;

        gap:12px;

        font-size:15px;

    }

    .industry-card img {
        width: 45px;
        height: 45px;
        object-fit: contain;
        flex-shrink: 0;
    }

}
/*=====================================
SOURCING METHODOLOGY
======================================*/

.sourcing-methodology{

    background:#fff !important;

}

.methodology-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px 60px;
    margin-top:60px;

}

.method-card{

    display:flex;
    align-items:flex-start;
    gap:25px;

    padding:25px;

    border-radius:18px;

    transition:.35s;

}

.method-card:hover{

    background:var(--light);

    transform:translateY(-6px);

}

.method-icon{

    width:95px;
    height:95px;

    min-width:95px;

    border:5px solid var(--primary);

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:42px;

    color:var(--primary);

    transition:.35s;

}

.method-card:hover .method-icon{

    background:var(--primary);

    color:var(--dark);

}

.method-content{

    flex:1;

}

.method-content h3{

    font-size:32px;

    margin-bottom:12px;

    color:var(--dark);

}

.method-content p{

    color: #595959;

    line-height:1.8;

}

/* ==========================================
   PROCESS (SERVICES)
========================================== */

.process{

    background:var(--light);

}

.process-card{

    background:var(--white);
    border:1px solid var(--border);

}

.process-card h3{

    margin-bottom:15px;
    color:var(--dark);

}

.process-card p{

    color:var(--gray);

}

.process-card:hover{

    border-color:var(--primary);

}

/* ==========================================
   INDUSTRIES
========================================== */

.industries{

    background:var(--white);

}

.industries-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;

}

.industry-card{

    display:flex;

    align-items:center;

    gap:15px;

    background:#fff;

    border:3px solid var(--border);

    border-radius:16px;

    padding:18px 22px;

    transition:.35s;

    font-weight:600;

    color:var(--dark);

}

.industry-card:hover{

    background:var(--primary);
    color:var(--dark);
    border-color:var(--primary);
    transform:translateY(-6px);

}

/* ==========================================
   SERVICES CTA
========================================== */

.services-hero + .section-padding{

    background:var(--light);

}

.cta{

    background:var(--light);

}

.cta-wrapper{

    background:var(--dark);
    border-radius:24px;
    padding:70px;

}

.cta-wrapper h2{

    color:#fff;

}

.cta-wrapper p{

    color:#E8E8E8;

}

.cta-wrapper .btn-primary{

    background:var(--primary);
    color:var(--dark);

}

.cta-wrapper .btn-primary:hover{

    background:#E2A000;

}

/* ==========================================
   SMALL IMPROVEMENTS
========================================== */

.service-card,
.process-card,
.industry-card{

    transition:
        transform .35s,
        box-shadow .35s,
        border-color .35s;

}

.service-card:hover,
.process-card:hover,
.industry-card:hover{

    cursor:pointer;

}

.section-header{

    max-width:750px;
    margin:0 auto 70px;
    text-align:center;

}

.section-header h2{

    margin-top:20px;
    margin-bottom:20px;

}
/* ==========================================
   CONTACT PAGE
========================================== */

.contact-page{

    padding-top:150px;
    padding-bottom:100px;
    background:var(--light);

}

.contact-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:start;

}

/* LEFT SIDE */

.contact-left{

    color:var(--dark);

}

.contact-left h1{

    font-size:56px;
    margin-bottom:20px;

}

.contact-left>p{

    color:#595959;
    margin-bottom:40px;

}


.contact-info{

    display:flex;
    flex-direction:column;
    gap:25px;

}

.contact-info div{

    background:var(--white);
    border:1px solid var(--border);
    border-radius:15px;
    padding:25px;
    transition:.3s;

}

.contact-info div:hover{

    border-color:var(--primary);
    transform:translateY(-5px);

}

.contact-info .social-section{

    border:none;
    background:transparent;
    padding:0;
    border-radius:0;
    box-shadow:none;

}

.contact-info h3{

    color:var(--primary);
    margin-bottom:8px;
    font-size:18px;

}

.contact-info p{

    color:var(--dark);

}

/* FORM */

.contact-form{

    background:var(--white);
    border:1px solid var(--border);
    border-radius:20px;
    padding:40px;
    box-shadow:0 15px 35px rgba(0,0,0,.05);

}

.form-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;

}

.contact-form input,
.contact-form textarea{

    width:100%;
    padding:16px 18px;
    border:1px solid var(--border);
    border-radius:10px;
    font-family:'Poppins',sans-serif;
    font-size:15px;
    transition:.3s;
    background:#fff;
    color:var(--dark);
    margin-bottom:20px;

}

.contact-form input:focus,
.contact-form textarea:focus{

    outline:none;
    border-color:var(--primary);
    box-shadow:0 0 0 3px rgba(252,181,4,.18);

}

.contact-form textarea{

    resize:vertical;

}

.contact-form button{

    width:100%;
    cursor:pointer;
    border:none;
    font-size:16px;

}

/* ==========================================
   GOOGLE MAP
========================================== */

.map-section{

    background:var(--white);

}

.map-section iframe{

    width:100%;
    height:450px;
    border:none;
    display:block;

}

/* ==========================================
   FAQ
========================================== */

.faq-container{

    max-width:900px;
    margin:auto;

}

.faq-item{

    background:var(--white);
    border:1px solid var(--border);
    border-radius:12px;
    margin-bottom:18px;
    overflow:hidden;

}

.faq-question{

    width:100%;
    background:#fff;
    border:none;
    padding:22px 25px;
    cursor:pointer;

    font-size:18px;
    font-weight:600;

    color:var(--dark);

    text-align:left;

    transition:.3s;

}

.faq-question:hover{

    background:var(--primary);

}

.faq-answer{

    display:none;
    padding:25px;
    background:var(--light);

}

.faq-answer p{

    color:var(--gray);

}

/* ==========================================
   GLOBAL HOVER EFFECTS
========================================== */

.feature-card,
.value-card,
.team-card,
.service-card,
.process-card,
.industry-card,
.contact-info div{

    transition:
        transform .35s,
        box-shadow .35s,
        border-color .35s;

}

.feature-card:hover,
.value-card:hover,
.team-card:hover,
.service-card:hover,
.process-card:hover,
.industry-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:992px){

    .hero{

        text-align:center;

    }

    .hero-buttons{

        justify-content:center;
        flex-wrap:wrap;
        gap:15px;

    }

    .hero-text{

        margin:auto;

    }

    .hero-text h1{

        font-size:48px;
        font-weight: 700 !important; /* Bold */

    }

    .hero-text h1 span{

        font-size:28px;

    }

    .about-grid,
    .contact-grid,
    .mission-grid,
    .stats-grid{

        grid-template-columns:1fr;

    }

    .features-grid,
    .values-grid,
    .team-grid,
    .services-grid,
    .industries-grid,
    .process-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .stats-flex{

        grid-template-columns:repeat(2,1fr);

    }

    .cta-wrapper{

        flex-direction:column;
        text-align:center;
        gap:30px;

    }

    .cta-wrapper h2{

        font-size:36px;

    }

}
.company-grid{

    grid-template-columns:repeat(2,1fr);

}

@media(max-width:768px){

    .company-grid{

        grid-template-columns:1fr;

    }

}
@media(max-width:768px){

.timeline::before{

    display:none;

}

.timeline-card{

    flex-direction:column;

}

.timeline-number{

    margin:auto;

}

.timeline-content ul{

    grid-template-columns:1fr;

}

.timeline-content{

    text-align:center;

}
.partner-grid{

    grid-template-columns:1fr 1fr;

}

@media(max-width:992px){

.partner-grid,
.commitment-grid,
.outsource-grid{

    grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.partner-grid,
.commitment-grid,
.outsource-grid,
.partner-list{

    grid-template-columns:1fr;

}

.partner-content{

    text-align:center;

}

}

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

    .hero{

        height:90vh;

    }

    .hero-text h1{

        font-size:40px;
        font-weight:700;

    }

    .hero-text h1 span{

        font-size:24px;

    }

    .section-header h2{

        font-size:34px;

    }

    .hero-inner h1{

        font-size:40px;

    }

        .hero-inner1 h1{

        font-size:35px;

    }

    .about-text h1{

        font-size:40px;

    }

    .contact-left h1{

        font-size:40px;

    }

    .features-grid,
    .values-grid,
    .team-grid,
    .services-grid,
    .industries-grid,
    .process-grid,
    .stats-flex{

        grid-template-columns:1fr;

    }

    .form-grid{

        grid-template-columns:1fr;

    }

    .stats-cards{

        grid-template-columns:1fr;

    }

    .stats-left,
    .testimonial{

        padding:50px 35px;

    }

    .mission-card{

        padding:35px;

    }

    .cta-wrapper{

        padding:50px 35px;

    }

}

/* ==========================================
   SMALL MOBILE
========================================== */

@media(max-width:480px){

    .logo img{
        width:150px;
    }

    .hero-text h1{
        font-size:32px;
    }

    .hero-text p{
        font-size:16px;
    }

    /* HERO BUTTONS */
    .hero-buttons{
        width:100%;
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:14px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary{
        display:flex;
        align-items:center;
        justify-content:center;

        width:100%;
        max-width:212px;

        box-sizing:border-box;

        margin:0;
        text-align:center;
    }

    .section-padding{
        padding:70px 0;
    }

        .section-header h2{
        font-size:30px;
        line-height:1.2;
    }

    .stats-left h2{
        font-size:30px;
        line-height:1.2;
    }

    .testimonial h2{
        font-size:32px;
        line-height:1.2;
    }

}

/* ==========================================
   SMALL MOBILE SECTION HEADINGS
========================================== */

@media (max-width:425px){

    .hero-text h1{
        font-weight:900;
    }

    .section-header h2{
        font-size:30px;
        line-height:1.2;
    }

    .stats-left h2{
        font-size:30px;
        line-height:1.2;
    }

    .testimonial h2{
        font-size:32px;
        line-height:1.2;
    }

    .testimonial p{
        font-size:16px;
        line-height:1.2;
    }



}

@media (max-width:375px){

    .section-header h2{
        font-size:35px;
        line-height:1.2;
    }

    .stats-left h2{
        font-size:35px;
        line-height:1.2;
    }

    .testimonial h2{
        font-size:32px;
        line-height:1.2;
    }

}

@media (max-width:325px){

    .section-header h2{
        font-size:28px;
        line-height:1.2;
    }

    .stats-left h2{
        font-size:28px;
        line-height:1.2;
    }

    .testimonial h2{
        font-size:32px;
        line-height:1.2;
    }

}

/* ==========================================
   TESTIMONIALS PAGE
========================================== */

.testimonial-hero{

    position:relative;

    height:500px;

    display:flex;
    align-items:center;
    justify-content:center;

    background-image:url("assets/testimonials.jpg");
    background-position:center;
    background-repeat:no-repeat;
    background-size:cover;

}

.testimonial-hero .overlay{

    position:absolute;
    inset:0;
    background:rgba(69,69,69,.65);

}

.testimonial-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.testimonial-card{

    background:#fff;
    padding:40px;
    border-radius:20px;
    border:3px solid var(--border);
    transition:.35s;

}

.testimonial-card:hover{

    transform:translateY(-8px);
    border-color:var(--primary);

}

.stars{

    color:var(--primary);
    font-size:24px;
    margin-bottom:20px;

}

.testimonial-card p{

    color:#595959;
    margin-bottom:25px;
    font-style:italic;

}

.testimonial-card h4{

    margin-bottom:5px;

}

.testimonial-card span{

    color:var(--gray);
    font-size:14px;

}

/* WHY CLIENTS */

.client-trust{

    background:var(--light);

}

.trust-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.trust-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:18px;

    padding:35px;

    text-align:center;

    transition:all .35s ease;

    cursor:pointer;

    position:relative;

    overflow:hidden;

}

.trust-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

    box-shadow:0 18px 40px rgba(0,0,0,.10);

}

.trust-card h3{

    color:var(--primary);

    margin-bottom:15px;

    transition:.35s;

}

.trust-card:hover h3{

    color:var(--dark);

}

.trust-card p{

    color:#595959;

    transition:.35s;

}

.trust-card:hover p{

    color:var(--dark);

}

.trust-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:0;

    height:5px;

    background:var(--primary);

    transition:.35s;

}

.trust-card:hover::before{

    width:100%;

}

/* RESULTS */

.results{

    background:#fff;

}

.results-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.result-box{

    background:var(--light);
    text-align:center;
    padding:40px;
    border-radius:20px;
    transition:.3s;

}

.result-box:hover{

    background:var(--primary);

}

.result-box h2{

    font-size:54px;
    color:var(--dark);
    margin-bottom:15px;

}

.result-box p{

    font-weight:600;

}

/* RESPONSIVE */

@media(max-width:992px){

.testimonial-grid,
.trust-grid,
.results-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.testimonial-grid,
.trust-grid,
.results-grid{

    grid-template-columns:1fr;

}

}

/*====================================================
JOIN US PAGE
====================================================*/

/* HERO */

.join-hero{

    position:relative;
    height:520px;
    background:url("assets/joinus-banner.jpg") center center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;

}

.join-hero .overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
        to right,
        rgba(79,79,79,.60),
        rgba(79,79,79,.55),
        rgba(79,79,79,.35)
    );

}

.join-hero .hero-inner{

    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
    max-width:850px;

}

.join-hero h1{

    font-size:64px;
    margin:20px 0;

}

.join-hero p{

    font-size:18px;
    color:#f5f5f5;
    margin-bottom:35px;

}


/*====================================================
JOB OPENINGS
====================================================*/

.join-jobs{

    background:#F5F5F5;

}

.jobs-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    align-items:stretch;

}

.job-card{

    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:35px;

    display:flex;
    flex-direction:column;

    min-height:560px;

    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.job-card:hover1{

    transform:translateY(-10px);
    border-color:var(--primary);
    box-shadow:0 20px 45px rgba(0,0,0,.10);

}
.job-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

    box-shadow:0 18px 45px rgba(0,0,0,.08);

}

.job-content{

    display:flex;
    flex-direction:column;

    flex:1;

}

.job-badge1{

    display:inline-block;
    align-self:flex-start;

    background:var(--primary);
    color:var(--dark);

    font-size:13px;
    font-weight:700;

    padding:8px 18px;

    border-radius:50px;

    margin-bottom:20px;

}

.job-badge {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 8px 0px;
    background: #fff;
    color: #595959;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
}

.job-card h3{

    color:var(--dark);

    font-size:28px;

    min-height:80px;

    display:flex;

    align-items:flex-start;

    margin-bottom:15px;

}

.job-location{

    color:#595959 !important;

    font-weight:600;

    min-height:28px;

    margin-bottom:18px;

}

.job-card p{

    color:var(--gray);
    margin-bottom:25px;
    line-height:1.8;

}

.job-description{

    flex:1;

    color:#595959 !important;

    line-height:1.8;

    min-height:110px;

}

.job-tags{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    min-height:78px;

    align-content:flex-start;

}

.job-tags1 span{

    background:#FFF9E6;
    color:var(--dark);
    border-radius:30px;
    padding:8px 14px;
    font-size:13px;
    font-weight:600;


}
.job-tags span{

    padding:8px 14px;

    border-radius:50px;

    background:#FFF9E6;

    color:#595959;

    font-size:13px;

    font-weight:600;


}

.job-card .btn-primary{

    margin-top:auto;
    width:100%;
    text-align:center;

}

/*==============================
JOB CATEGORY
==============================*/

.job-category{

    margin-top:18px;

    margin-bottom:10px;

    color:#595959 !important;

    font-weight:600;

    font-size:14px;

    letter-spacing:.8px;

    text-transform:uppercase;


}


/*====================================================
APPLICATION FORM
====================================================*/

.application{

    background:#fff;

}

.application-wrapper{

    max-width:950px;
    margin:auto;

    background:#fff;
    border:1px solid var(--border);

    border-radius:20px;

    padding:60px;

    box-shadow:0 20px 40px rgba(0,0,0,.06);

}

.career-form{

    margin-top:40px;

}

.form-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;

}

.form-group{

    margin-bottom:25px;

}

.form-group label{

    display:block;
    margin-bottom:10px;
    font-weight:600;
    color:var(--dark);

}

.form-group input,
.form-group select,
.form-group textarea{

    width:100%;
    padding:16px;

    border:1px solid var(--border);
    border-radius:10px;

    font-size:15px;

    transition:.3s;

    background:#fff;

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{

    outline:none;

    border-color:var(--primary);

    box-shadow:0 0 0 4px rgba(252,181,4,.18);

}

.form-group textarea{

    resize:vertical;

}

.submit-btn{

    width:100%;
    margin-top:20px;

}

.apply-btn{

    width:100%;

    text-align:center;

    margin-top:auto;
    margin-top:30px !important;


}


/*====================================================
WHY WORK WITH US
====================================================*/

.why-work{

    background:#F5F5F5;

}

.benefits-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.benefit-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    border:1px solid var(--border);

    transition:.35s;

    text-align:center;

}

.benefit-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.benefit-card h3{

    color:var(--primary);

    margin-bottom:15px;

}

.benefit-card p{

    color:var(--gray);

}


/*====================================================
HIRING PROCESS
====================================================*/

.join-process{

    background:#fff;

}

.join-process-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.join-step{

    text-align:center;

    background:#F5F5F5;

    border-radius:20px;

    padding:35px;

    transition:.35s;

}

.join-step:hover{

    background:#fff;

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.join-step-number{

    width:70px;
    height:70px;

    margin:auto auto 25px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:var(--primary);

    color:var(--dark);

    font-size:22px;

    font-weight:700;

}

.join-step h3{

    margin-bottom:15px;

    color:var(--dark);

}

.join-step p{

    color:var(--gray);

}


/*====================================================
ANIMATIONS
====================================================*/

.job-card,
.benefit-card,
.join-step{

    transition:
    transform .35s,
    box-shadow .35s,
    border-color .35s;

}


/*====================================================
RESPONSIVE
====================================================*/

@media(max-width:1100px){

.jobs-grid{

    grid-template-columns:repeat(2,1fr);

}

.benefits-grid{

    grid-template-columns:repeat(2,1fr);

}

.join-process-grid{

    grid-template-columns:repeat(2,1fr);

}

}


@media(max-width:768px){

.jobs-grid,
.benefits-grid,
.join-process-grid{

    grid-template-columns:1fr;

}

.form-grid{

    grid-template-columns:1fr;

}

.application-wrapper{

    padding:35px;

}

.join-hero{

    height:430px;

}

.join-hero h1{

    font-size:42px;

}

.join-hero p{

    font-size:16px;

}

}

@media(max-width:480px){

.application-wrapper{

    padding:25px;

}

.job-card{

    padding:25px;
    transition:.35s;

}

.join-hero h1{

    font-size:34px;

}

}

@media(max-width:768px){

.methodology-grid{

    grid-template-columns:1fr;

}

.method-card{

    flex-direction:column;

    text-align:center;

    align-items:center;

}

.method-icon{

    margin-bottom:10px;

}

}
/*=====================================
SOCIAL MEDIA
======================================*/

.social-section{

    margin-top:40px;
    padding-top:30px;

    border-top:1px solid rgba(255,255,255,.15);

}

.social-section h3{

    color:#fff;
    margin-bottom:10px;

}

.social-section p{

    color:#dcdcdc;
    margin-bottom:20px;
    line-height:1.7;

}


.social-links{

    display:flex;
    gap:18px;

}

.social-links a{

    width:55px !important;
    height:55px !important;

    border-radius:50% !important;

    display:flex !important;
    justify-content:center !important;
    align-items:center !important;

    background:#0A66C2 !important;

    color:fff !important;

    font-size:22px !important;

    text-decoration:none !important;

    transition:.35s !important;

}

.social-links a:hover{

    background:#fff;

    color:#fcb504;

    transform:translateY(-5px);

    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.contact-info a{

    color:#fff;
    text-decoration:none;

}

.contact-info a:hover{

    color:var(--primary);

}

/*====================================================
PRIVACY NOTICE PAGE
====================================================*/

/* HERO */

.privacy-hero{

    position:relative;

    height:450px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:url("assets/privacy1.jpg") center center/cover no-repeat;

}

.privacy-hero .overlay{

    position:absolute;
    inset:0;

    background:rgba(89,89,89,.82);

}

.privacy-hero .hero-inner{

    position:relative;

    z-index:2;

    text-align:center;

    max-width:850px;

    color:#fff;

}

.privacy-hero h1{

    font-size:60px;

    margin:20px 0;

}

.privacy-hero p{

    color:#f5f5f5;

    line-height:1.8;

}

/*====================================================
DPO LOGO
====================================================*/

.privacy-logo{

    background:#fff;

    padding-top:70px;

    padding-bottom:20px;

}

.dpo-logo{

    text-align:center;
      display: flex;                  /* Activates Flexbox layout */
  justify-content: center;        /* Centers image horizontally */
  align-items: center;            /* Centers image vertically */
  height: 400px;  

}

.dpo-logo img{

    max-width:240px;

    width:100%;

    border-radius:16px;

    box-shadow:0 20px 40px rgba(0,0,0,.10);

    transition:.35s;

}

.dpo-logo img:hover{

    transform:translateY(-6px);

}

/*====================================================
PRIVACY CONTENT
====================================================*/

.privacy-content{

    background:#F5F5F5;

    padding-bottom:0px;

}

.privacy-card{

    background:#fff;

    border:3px solid var(--border);

    border-radius:20px;

    padding:45px;

    margin-bottom:35px;

    box-shadow:0 12px 30px rgba(0,0,0,.05);

    transition:.35s;

}

.privacy-card:hover{

    transform:translateY(-6px);

    border-color:var(--primary);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.privacy-card h2{

    color:var(--dark);

    font-size:34px;

    margin-bottom:25px;

    position:relative;

}

.privacy-card h2::after{

    content:"";

    display:block;

    width:80px;

    height:4px;

    background:var(--primary);

    margin-top:12px;

    border-radius:50px;

}

.privacy-card p{

    color:#595959;

    line-height:2;

    margin-bottom:20px;

    text-align:justify;

}

.privacy-card ul{

    margin-left:30px;

    margin-bottom:25px;

}

.privacy-card li{

    margin-bottom:12px;

    color:#595959;

    line-height:1.8;

}

/*====================================================
EMAIL
====================================================*/

.privacy-email{

    text-align:center;

    margin-top:30px;

}

.privacy-email strong{

    display:inline-block;

    background:var(--primary);

    color:var(--dark);

    padding:15px 30px;

    border-radius:50px;

    font-size:18px;

    letter-spacing:.5px;

}

/*====================================================
CTA
====================================================*/

.privacy-content + .cta{

    margin-top:0;

}

/*==============================
JOB SUBTITLE
==============================*/

.job-subtitle{

    margin-top:-8px;
    margin-bottom:14px;

    color:var(--gray);

    font-size:15px;

    font-weight:500;

    font-style:italic;

    min-height:22px;

}
.container-wide{

    width:100
    .
      %;
    max-width:1500px;
    margin:auto;

}

/*====================================================
RESPONSIVE
====================================================*/

@media(max-width:992px){

.privacy-card{

    padding:35px;

}

.privacy-hero h1{

    font-size:46px;

}

}

/* =====================================================
   PRIVACY PAGE - TABLET / MOBILE
   ===================================================== */

@media (max-width:768px){

    .privacy-hero{
        height:auto;
        min-height:360px;
        padding:100px 0 45px;
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .privacy-hero-inner{
        width:100%;
        max-width:700px;
        text-align:center;
    }

    .privacy-hero h1{
        font-size:36px;
        line-height:1.2;
        margin:0 0 20px;
    }

    .privacy-hero p{
        font-size:18px !important;
        line-height:1.7;
        margin:0 auto;
        max-width:650px;
    }

    .privacy-card{
        padding:28px;
    }

    .privacy-card h2{
        font-size:28px;
        line-height:1.25;
    }

    .dpo-logo img{
        max-width:180px;
    }

    .privacy-email{
        width:100%;
        max-width:100%;
        overflow:hidden;
    }

    .privacy-email strong{
        display:block;
        width:100%;
        max-width:100%;
        box-sizing:border-box;

        font-size:16px;
        line-height:1.4;

        padding:14px 18px;

        overflow-wrap:anywhere;
        word-break:break-word;
    }

    .privacy-email a{
        display:block;
        width:100%;
        max-width:100%;
    }

}

@media(max-width:480px){

.privacy-hero{

    height:320px;

}

.privacy-hero h1{

    font-size:30px;

}

.privacy-card{

    padding:22px;

.privacy-email strong{
    display:block;
    width:100%;
    max-width:100%;
    box-sizing:border-box;
    font-size:14px;
    line-height:1.4;
    padding:14px 18px;
    overflow-wrap:anywhere;
    word-break:break-word;
    }

}
@media(max-width:768px){

.footer-bottom-wrapper{

    flex-direction:column;

    text-align:center;

}

}

}

/* ======================================================
   GLOBAL RESPONSIVE BREAKPOINTS
====================================================== */

/* 1440px */
@media (max-width:1440px){

    .container{
        max-width:1200px;
    }

}

/* 1024px */
@media (max-width:1024px){

    .hero-text h1{
        font-weight:900;
    }

    .container{
        padding:0 25px;
    }

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .cta-wrapper{
        gap:25px;
    }

}

/* 769px */
@media (max-width:769px){

    .container{
        padding:0 20px;
    }

    .section-padding{
        padding:70px 0;
    }

    .section-header{
        margin-bottom:45px;
    }

    .section-header h2{
        font-size:32px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-company{
        align-items:center;
    }

    .footer-logo{
        margin:auto auto 20px;
    }

    .footer-bottom-wrapper{
        flex-direction:column;
        text-align:center;
    }

    .cta-wrapper{
        flex-direction:column;
        text-align:center;
        gap:25px;
    }

}

/* 425px */
@media (max-width:425px){

    .container{
        padding:0 18px;
    }

    .section-padding{
        padding:60px 0;
    }

    .btn-primary,
    .btn-secondary{

        width:100%;
        max-width:320px;
        margin:10px auto;

    }

    .stats-left{
        text-align:center;
    }

    .stats-left .mini-title,
    .stats-left h2{
        text-align:center;
    }

}

/* 320px */
@media (max-width:320px){

    .container{
        padding:0 15px;
    }

    .logo img{
        width:150px;
    }

    .section-header h2{
        font-size:28px;
    }

    .cta-wrapper h2{
        font-size:24px;
    }

}

/* 275px */
@media (max-width:275px){

    .container{
        padding:0 12px;
    }

    .logo img{
        width:130px;
    }

    .section-header h2{
        font-size:24px;
    }

    .btn-primary,
    .btn-secondary{

        font-size:14px;
        padding:12px 18px;

    }

    .cta-wrapper{
        padding:25px 15px;
    }

}
/* =====================================================
INDEX PAGE RESPONSIVE
===================================================== */

/* 1024px */

@media (max-width:1024px){

.hero{

    min-height:600px;

}

.hero-content{

    gap:40px;

}

.features-grid{

    grid-template-columns:repeat(2,1fr);

}

.partner-grid{

    gap:40px;

}

.stats-grid{

    gap:40px;

}

}

/* 769px */

@media (max-width:769px){

.hero{

    min-height:auto;
    padding:140px 0 80px;

}

.hero-content{

    flex-direction:column;
    text-align:center;

}

.hero-buttons{

    justify-content:center;

}

.partner-grid{

    grid-template-columns:1fr;
    text-align:center;

}

.partner-image{

    order:-1;

}

.commitment-grid{

    grid-template-columns:1fr 1fr;

}

.outsource-grid{

    grid-template-columns:1fr 1fr;

}

.stats-grid{

    grid-template-columns:1fr;

}

}

/* 425px */

@media (max-width:425px){

.features-grid{

    grid-template-columns:1fr;

}

.commitment-grid{

    grid-template-columns:1fr;

}

.outsource-grid{

    grid-template-columns:1fr;

}

.stats-cards{

    grid-template-columns:1fr;

}

.hero-buttons{

    flex-direction:column;

}

.hero-text h1{

    font-size:34px;

}

}

/* 320px */

@media (max-width:320px){

.hero{

    padding:120px 0 60px;

}

.hero-text h1{

    font-size:30px;

}

.hero-text p{

    font-size:15px;

}

}

/* 275px */

@media (max-width:275px){

.hero-text h1{

    font-size:26px;

}

.hero-buttons{

    gap:10px;

}

.hero-text p{

    font-size:14px;

}

}

/* =========================================================
   INDEX.HTML RESPONSIVE SYSTEM
   1024px / 768px / 425px / 375px / 320px
   ========================================================= */


/* =========================================================
   MOBILE MENU DEFAULT
   ========================================================= */

#menu-toggle {
    display: none;
}

.menu-toggle {
    display: none;
}


/* =========================================================
   1024px — TABLET / SMALL LAPTOP
   ========================================================= */

@media (max-width: 1100px) {

    .container {
        width: 92%;
        max-width: 1100px;
    }

    /* NAVIGATION */

    .nav-wrapper {
        height: 80px;
    }

    .logo img {
        width: 175px;
    }

    .nav-links {
        gap: 22px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .nav-button {
        padding: 12px 20px;
        font-size: 14px;
    }


    /* HERO */

    .hero {
        min-height: 700px;
        height: 90vh;
    }

    .hero-content {
        gap: 40px;
    }

    .hero-text {
        max-width: 700px;
    }

    .hero-text h1 {
        font-size: clamp(42px, 5vw, 58px);
    }

    .hero-text h1 span {
        font-size: 28px;
    }


    /* FEATURE CARDS */

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }


    /* COMPANY */

    .company-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }


    /* STATS */

    .stats-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }


    /* INDUSTRIES */

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }


    /* CTA */

    .cta-wrapper {
        width: 94%;
        max-width: 1150px;
        padding: 55px 45px;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px;
    }

}


/* =========================================================
   992px — MOBILE NAVIGATION STARTS
   ========================================================= */

@media (max-width: 992px) {

    .nav-wrapper {
        position: relative;
    }

    /* Hide desktop navigation */

    .main-nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 15px 30px rgba(0,0,0,.10);
        border-top: 1px solid var(--border);
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 14px 10px;
        text-align: center;
        border-bottom: 1px solid var(--border);
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }


    /* SHOW MENU */

    #menu-toggle:checked ~ .main-nav {
        display: block;
    }


    /* HAMBURGER */

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;

        width: 42px;
        height: 42px;

        cursor: pointer;

        margin-left: auto;
        margin-right: 12px;
    }

    .menu-toggle span {
        display: block;
        width: 26px;
        height: 3px;
        background: var(--dark);
        border-radius: 3px;
        transition: .3s;
    }


    /* TURN HAMBURGER INTO X */

    #menu-toggle:checked + .menu-toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    #menu-toggle:checked + .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    #menu-toggle:checked + .menu-toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }


    /* JOIN BUTTON */

    .nav-button {
        display: none;
    }

}


/* =========================================================
   768px — TABLET / MOBILE
   ========================================================= */

@media (max-width: 768px) {

    body {
        width: 100%;
        overflow-x: hidden;
    }

    .container {
        width: calc(100% - 32px);
        max-width: none;
        padding: 0;
    }


    /* NAVBAR */

    .nav-wrapper {
        height: 72px;
    }

    .logo img {
        width: 155px;
    }

    .main-nav {
        top: 72px;
    }


    /* HERO */

    .hero {
        min-height: 650px;
        height: auto;
        padding: 130px 0 80px;
    }

    .hero-content {
        display: block;
    }

    .hero-text {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .hero-text h1 {
        font-size: 42px;
        line-height: 1.15;
        margin-bottom: 20px;
    }

    .hero-text h1 span {
        font-size: 25px;
        margin-top: 12px;
    }

    .hero-text p {
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
        font-size: 17px;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    .hero-buttons {
        justify-content: center;
        gap: 12px;
    }


    /* SECTION SPACING */

    .section-padding {
        padding: 70px 0;
    }

    .section-header {
        margin-bottom: 45px;
    }

    .section-header h2 {
        font-size: 34px;
        line-height: 1.2;
    }


    /* FEATURES */

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature-card {
        padding: 30px 22px;
    }

    .feature-card h3 {
        font-size: 20px;
    }

    .feature-card p {
        font-size: 15px;
    }

    .feature-icon img {
        width: 60px;
        height: 60px;
    }


    /* COMPANY */

    .company-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .company-card {
        padding: 30px 25px;
    }

    .company-card h3 {
        font-size: 23px;
    }

    .company-card p {
        font-size: 15px;
    }


    /* STATS */

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stats-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stats-cards > div {
        padding: 25px 15px;
        text-align: center;
    }

    .stats-cards h3 {
        font-size: 36px;
    }


    /* INDUSTRIES */

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .industry-card {
        padding: 20px 15px;
        text-align: center;
    }


    /* CTA */

    .cta {
        padding: 60px 0;
    }

    .cta-wrapper {
        width: calc(100% - 32px);
        max-width: none;
        padding: 45px 25px;
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .cta-wrapper h2 {
        font-size: 32px;
        line-height: 1.25;
    }

    .cta-wrapper p {
        font-size: 16px;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .footer-grid > div {
        min-width: 0;
    }

    .footer-grid p,
    .footer-grid li {
        overflow-wrap: anywhere;
    }

    .footer-bottom-wrapper {
        text-align: center;
    }

    .stats-left{
        text-align:center;
    }

    .stats-left .mini-title,
    .stats-left h2{
        text-align:center;
    }

    .testimonial{
        text-align:center;
    }

    .testimonial .mini-title,
    .testimonial h2{
        text-align:center;
    }
}


/* =========================================================
   425px — STANDARD MOBILE
   ========================================================= */

@media (max-width: 425px) {

    .container {
        width: calc(100% - 28px);
    }


    /* NAVBAR */

    .logo img {
        width: 140px;
    }

    .menu-toggle {
        margin-right: 0;
    }


    /* HERO */

    .hero {
        min-height: 620px;
        padding: 120px 0 65px;
    }

    .hero-text h1 {
        font-size: 34px;
        line-height: 1.12;
    }

    .hero-text h1 span {
        font-size: 22px;
    }

    .hero-text p {
        font-size: 15.5px;
        line-height: 1.65;
    }


    /* BUTTONS */

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        margin: 0;
        text-align: center;
    }

    .btn-primary,
    .btn-secondary {
        padding: 13px 20px;
    }


    /* SECTION */

    .section-padding {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .section-header h2 {
        font-size: 29px;
    }

    .section-header p {
        font-size: 13px;
    }


    /* FEATURES */

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 28px 22px;
    }

    .feature-card h3 {
        font-size: 21px;
    }


    /* COMPANY */

    .company-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .company-card {
        padding: 28px 22px;
    }

    .company-card h3 {
        font-size: 22px;
    }


    /* STATS */

    .stats-cards {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .stats-cards > div {
        padding: 20px 10px;
    }

    .stats-cards h3 {
        font-size: 30px;
    }

    .stats-cards span {
        font-size: 14px !important;
        line-height: 1.4;
        display: block;
    }


    /* INDUSTRIES */

    .industries-grid {
        grid-template-columns: 1fr;
    }


    /* CTA */

    .cta-wrapper {
        width: calc(100% - 20px);
        padding: 38px 20px;
        border-radius: 16px;
    }

    .cta-wrapper h2 {
        font-size: 27px;
    }

    .cta-wrapper p {
        font-size: 15px;
    }

    .cta-wrapper .btn-primary {
        width: 100%;
        text-align: center;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-company {
        text-align: center;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-grid ul {
        padding: 0;
    }

    .footer-bottom p {
        font-size: 13px;
        line-height: 1.6;
    }

}


/* =========================================================
   375px — SMALL MOBILE
   ========================================================= */

@media (max-width: 375px) {

    .container {
        width: calc(100% - 24px);
    }


    /* NAVBAR */

    .logo img {
        width: 125px;
    }


    /* HERO */

    .hero {
        min-height: 600px;
        padding-top: 110px;
    }

    .hero-text h1 {
        font-size: 30px;
    }

    .hero-text h1 span {
        font-size: 20px;
    }

    .hero-text p {
        font-size: 14.5px;
    }


    /* SECTION */

    .section-padding {
        padding: 55px 0;
    }

    .section-header h2 {
        font-size: 27px;
    }


    /* FEATURE */

    .feature-card {
        padding: 25px 18px;
    }

    .feature-card h3 {
        font-size: 19px;
    }

    .feature-card p {
        font-size: 14px;
    }


    /* COMPANY */

    .company-card {
        padding: 25px 18px;
    }


    /* STATS */

    .stats-cards {
        grid-template-columns: 1fr;
    }

    .stats-cards h3 {
        font-size: 32px;
    }


    /* CTA */

    .cta-wrapper {
        width: calc(100% - 12px);
        padding: 32px 17px;
    }

    .cta-wrapper h2 {
        font-size: 25px;
    }

}


/* =========================================================
   320px — EXTRA SMALL MOBILE
   ========================================================= */

@media (max-width: 320px) {

    .container {
        width: calc(100% - 20px);
    }


    /* NAVBAR */

    .nav-wrapper {
        height: 68px;
    }

    .logo img {
        width: 115px;
    }

    .main-nav {
        top: 68px;
    }

    .menu-toggle {
        width: 38px;
        height: 38px;
    }


    /* HERO */

    .hero {
        min-height: 580px;
        padding: 105px 0 55px;
    }

    .hero-text h1 {
        font-size: 27px;
    }

    .hero-text h1 span {
        font-size: 18px;
        margin-top: 8px;
    }

    .hero-text p {
        font-size: 14px;
        line-height: 1.6;
    }


    /* BUTTONS */

    .btn-primary,
    .btn-secondary {
        padding: 12px 16px;
        font-size: 14px;
    }


    /* SECTION */

    .section-padding {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 24px;
    }


    /* FEATURE */

    .feature-card {
        padding: 23px 16px;
        border-radius: 14px;
    }

    .feature-icon img {
        width: 50px;
        height: 50px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .feature-card p {
        font-size: 13.5px;
    }


    /* COMPANY */

    .company-card {
        padding: 22px 16px;
        border-radius: 14px;
    }

    .company-card h3 {
        font-size: 20px;
    }

    .company-card p {
        font-size: 13.5px;
        line-height: 1.7;
    }


    /* STATS */

    .stats-cards {
        grid-template-columns: 1fr;
    }


    /* CTA */

    .cta-wrapper {
        width: calc(100% - 8px);
        padding: 28px 15px;
        border-radius: 14px;
    }

    .cta-wrapper h2 {
        font-size: 23px;
    }

    .cta-wrapper p {
        font-size: 14px;
    }


    /* FOOTER */

    .footer-grid {
        gap: 25px;
    }

    .footer-grid h3 {
        font-size: 19px;
    }

    .footer-grid h4 {
        font-size: 17px;
    }

    .footer-grid p,
    .footer-grid li {
        font-size: 13px;
        line-height: 1.7;
    }

    .footer-bottom p {
        font-size: 12px;
    }

}

/* =========================================
   PARTNER SECTION - RESPONSIVE HEADING
========================================= */

/* Desktop */
.partner-content h2 {
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 20px;
}


/* =========================================
   1024px
========================================= */

@media (max-width: 1024px) {

    .partner-content h2 {
        font-size: 36px;
    }

}


/* =========================================
   768px
========================================= */

@media (max-width: 768px) {

    .partner-content h2 {
        font-size: 32px;
        line-height: 1.2;
    }

        .works-list {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .work-item {
        width: 100%;
        max-width: 100%;
        min-width: 0;

        display: flex;
        align-items: center;

        gap: 25px;
        padding: 25px;

        box-sizing: border-box;

        overflow: hidden;

        /* Prevent mobile hover from pushing the card sideways */
        transform: none !important;
    }

    .work-icon {
        flex: 0 0 85px;
        width: 85px;
        height: 85px;
        min-width: 85px;

        font-size: 36px;
    }

    .work-content {
        flex: 1 1 auto;
        min-width: 0;
        width: 0;
        max-width: 100%;
    }

    .work-content h3 {
        font-size: 28px;
        line-height: 1.2;

        margin: 0 0 10px;

        max-width: 100%;

        overflow-wrap: anywhere;
        word-break: normal;
    }

    .work-content p {
        font-size: 16px;
        line-height: 1.6;

        margin: 0;

        max-width: 100%;

        overflow-wrap: anywhere;
    }

        .industries {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .industries .container {
        width: 100%;
        max-width: 100%;
        padding-left: 24px;
        padding-right: 24px;
        box-sizing: border-box;
    }

    .industries .section-header {
        width: 100%;
        text-align: center;
        margin-bottom: 35px;
    }

    .industries .section-header h2 {
        font-size: 38px;
        line-height: 1.2;
        text-align: center;
    }

    /* ONE COLUMN */
    .industries-grid {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        gap: 20px;
        box-sizing: border-box;
    }

    /* INDUSTRY CARD */
    .industry-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        min-height: 115px;

        display: flex;
        align-items: center;
        justify-content: flex-start;

        gap: 20px;

        padding: 20px 22px;

        box-sizing: border-box;

        text-align: left;

        overflow: hidden;
    }

    /* ICON */
    .industry-card i,
    .industry-card img {
        flex: 0 0 45px;
        width: 45px;
        min-width: 45px;
        text-align: center;
    }

    /* INDUSTRY NAME */
    .industry-card span {
        flex: 1;
        min-width: 0;
        text-align: left;
        line-height: 1.45;
        overflow-wrap: break-word;
        word-break: normal;
    }

}


/* =========================================
   425px
========================================= */

@media (max-width: 425px) {

    .partner-content h2 {
        font-size: 27px;
        line-height: 1.2;
        margin-bottom: 16px;
    }

        .works-list {
        width: 100%;
        max-width: 100%;
    }

    .work-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;

        display: flex;
        align-items: center;

        gap: 25px;
        padding: 25px;

        box-sizing: border-box;
        overflow: hidden;
    }

    .work-icon {
        flex: 0 0 95px;
        width: 95px;
        height: 95px;
    }

    .work-content {
        flex: 1;
        min-width: 0;
        width: auto;
        max-width: 100%;
    }

    .work-content h3 {
        font-size: 36px;
        line-height: 1.15;

        margin: 0 0 12px;

        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .work-content p {
        font-size: 18px;
        line-height: 1.5;

        margin: 0;

        overflow-wrap: break-word;
        word-wrap: break-word;
    }

        .industries-grid {
        width: 100%;
    }

    .industry-card {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        gap: 20px;
        padding: 20px 22px;
        box-sizing: border-box;
    }

    .industry-card i,
    .industry-card img {
        flex-shrink: 0;
        width: 40px;
        text-align: center;
    }

    .industry-card span {
        word-break: normal !important;
        overflow-wrap: normal !important;
        white-space: normal;
    }

        .industries {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .industries .container {
        width: 100%;
        max-width: 100%;
        padding-left: 24px;
        padding-right: 24px;
        box-sizing: border-box;
    }

    .industries .section-header {
        width: 100%;
        text-align: center;
        margin-bottom: 35px;
    }

    .industries .section-header h2 {
        font-size: 38px;
        line-height: 1.2;
        text-align: center;
    }

    /* ONE COLUMN */
    .industries-grid {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        gap: 20px;
        box-sizing: border-box;
    }

    /* INDUSTRY CARD */
    .industry-card {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .industry-card img {
        flex: 0 0 50px;
        width: 42px;
        height: 42px;
        object-fit: contain;
    }

    .industry-card span {
        flex: 1;
        min-width: 0;

        font-size: 18px !important;
        line-height: 1.4;

        word-break: normal !important;
        overflow-wrap: normal !important;
    }

    /* ICON */
    .industry-card i{
        flex: 0 0 45px;
        width: 45px;
        min-width: 45px;
        text-align: center;
    }

    .industry-long-word {
        font-size: 17px !important;
        letter-spacing: -0.3px;
    }


}


/* =========================================
   375px
========================================= */

@media (max-width: 375px) {

    .partner-content h2 {
        font-size: 25px;
        line-height: 1.2;
    }

        .works-list {
        width: 100%;
    }

    .work-card {
        width: 100%;
        max-width: 100%;

        gap: 20px;
        padding: 20px;

        box-sizing: border-box;
    }

    .work-icon {
        flex: 0 0 80px;
        width: 80px;
        height: 80px;
    }

    .work-content {
        min-width: 0;
        flex: 1;
    }

    .work-content h3 {
        font-size: 30px;
        line-height: 1.15;
        margin-bottom: 10px;
    }

    .work-content p {
        font-size: 16px;
        line-height: 1.5;
    }

}


/* =========================================
   325px
========================================= */

@media (max-width: 325px) {

    .partner-content h2 {
        font-size: 22px;
        line-height: 1.2;
        margin-bottom: 14px;
    }

        .works-list {
        width: 100%;
        max-width: 100%;
    }

    .work-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;

        display: flex;
        align-items: center;

        gap: 15px;
        padding: 15px;

        box-sizing: border-box;
        overflow: hidden;
    }

    .work-icon {
        flex: 0 0 70px;
        width: 70px;
        height: 70px;
    }

    .work-content {
        flex: 1;
        min-width: 0;
        width: 0;
        max-width: 100%;
    }

    .work-content h3 {
        font-size: 25px;
        line-height: 1.15;

        margin: 0 0 8px;

        overflow-wrap: anywhere;
        word-break: normal;
    }

    .work-content p {
        font-size: 14px;
        line-height: 1.5;

        margin: 0;

        overflow-wrap: anywhere;
    }

}

/* =========================================================
   SERVICES PAGE - MOBILE WIDTH / OVERFLOW FIX
   ========================================================= */

html,
body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Make every main container fit the viewport */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================================
   768px
   ========================================================= */

@media (max-width: 768px) {

    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .services-hero {
        width: 100%;
        max-width: 100%;
    }

    .sourcing-methodology,
    .how-it-works,
    .process,
    .industries,
    .cta,
    .footer {
        width: 100%;
        max-width: 100%;
    }

    .methodology-grid,
    .works-list,
    .process-grid,
    .industries-grid {
        width: 100%;
        max-width: 100%;
    }

    .method-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .method-content {
        min-width: 0;
    }

    .method-content h3,
    .method-content p {
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
}

/* =========================================================
   CONTACT PAGE - MOBILE RESPONSIVE FIX
   Prevent horizontal overflow at 768px, 425px, 375px, 320px
   ========================================================= */

.contact-page {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.contact-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.contact-left,
.contact-form {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.contact-left > p,
.contact-info,
.contact-info > div {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.contact-info p,
.contact-info h3 {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-wrap: break-word;
}

/* Prevent long email addresses / URLs from creating overflow */
.contact-info a {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* Contact form */
.contact-form {
    overflow: hidden;
}

.contact-form form {
    width: 100%;
    max-width: 100%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

/* Form becomes one column */
@media (max-width: 768px) {

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-left h1 {
        font-size: 40px;
        line-height: 1.15;
    }

    .contact-left > p {
        font-size: 16px;
        line-height: 1.7;
    }

    .contact-info {
        gap: 20px;
    }

    .contact-info > div {
        padding: 22px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: 30px 25px;
    }

}


/* =========================================================
   425px
   ========================================================= */

@media (max-width: 425px) {

    .contact-page {
        padding-top: 105px;
        padding-bottom: 50px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-left h1 {
        font-size: 31px;
        line-height: 3.15;
        margin-top: 0;
        margin-bottom: 15px;
    }

    .contact-left > p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    .contact-info {
        width: 100%;
        gap: 18px;
    }

    .contact-info > div {
        width: 100%;
        padding: 20px;
    }

    .contact-info h3 {
        font-size: 17px;
    }

    .contact-info p {
        font-size: 15px;
        line-height: 1.65;
    }

    .contact-form {
        width: 100%;
        padding: 25px 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   375px
   ========================================================= */

@media (max-width: 375px) {

    .contact-page {
        padding-top: 105px;
        padding-bottom: 50px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-left h1 {
        font-size: 31px;
        line-height: 5.15;
        margin-top: 0;
        margin-bottom: 15px;
    }


    .contact-left > p {
        font-size: 14px;
        line-height: 1.65;
    }

    .contact-info {
        gap: 15px;
    }

    .contact-info > div {
        padding: 18px;
    }

    .contact-info h3 {
        font-size: 16px;
    }

    .contact-info p {
        font-size: 14px;
        line-height: 1.6;
    }

    .contact-form {
        padding: 20px 16px;
    }

    .privacy-email strong{
    display:block;
    width:100%;
    max-width:100%;
    box-sizing:border-box;
    font-size:11px !important;
    line-height:1.4;
    padding:14px 18px;
    overflow-wrap:anywhere;
    word-break:break-word;
    }

}


/* =========================================================
   320px
   ========================================================= */

@media (max-width: 320px) {

    .contact-page {
        width: 100%;
        max-width: 100%;
        padding-top: 60px;
        padding-bottom: 45px;
        overflow-x: hidden;
    }

    .contact-grid {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-left {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .contact-left h1 {
        font-size: 30px;
        line-height: 5.15;
        margin-bottom: 0px;
    }

    .contact-left > p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 22px;
    }

    .contact-info {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        gap: 14px;
    }

    .contact-info > div {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 17px;
        box-sizing: border-box;
    }

    .contact-info h3 {
        font-size: 16px;
        line-height: 1.3;
    }

    .contact-info p {
        font-size: 14px;
        line-height: 1.6;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .contact-info a {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .contact-form {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 18px 15px;
        box-sizing: border-box;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        font-size: 14px;
        padding: 13px 14px;
        box-sizing: border-box;
    }



}

/* =========================================================
   SERVICES PAGE — MOBILE WORK ITEMS
   Fixes 425px / 375px / 320px
   ========================================================= */

/* Keep the logo proportional */
.logo img {
    height: auto;
    max-width: 100%;
    object-fit: contain;
}


/* =========================================================
   425px
   ========================================================= */

@media (max-width: 425px) {

    /* LOGO */
    .logo img {
        width: 150px;
        height: auto;
        max-width: 100%;
    }

    /* HOW IT WORKS CARDS */
    .works-list {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }

    .work-item {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 22px 20px;
        margin-bottom: 22px;
        border-width: 4px;
        overflow: hidden;
    }


@media (max-width: 425px) {

    .work-icon {
        width: 90px !important;
        height: 90px !important;

        min-width: 90px !important;
        min-height: 90px !important;

        max-width: 90px !important;
        max-height: 90px !important;

        flex: 0 0 90px !important;
        flex-shrink: 0 !important;

        aspect-ratio: 1 / 1 !important;

        display: flex;
        align-items: center;
        justify-content: center;

        box-sizing: border-box;
        border-radius: 50%;
    }

    .work-icon img {
        width: 45px !important;
        height: 45px !important;

        max-width: 45px !important;
        max-height: 45px !important;

        object-fit: contain !important;
        display: block;
    }

    .work-content {
        min-width: 0;
        flex: 1;
    }

    .work-content h3 {
        font-size: 17px;
        line-height: 1.2;
        margin-bottom: 10px;
        word-break: normal;
        overflow-wrap: break-word;
    }

    .work-content p {
        font-size: 16px;
        line-height: 1.6;
    }

}


/* =========================================================
   375px
   ========================================================= */

@media (max-width: 375px) {

    /* LOGO */
    .logo img {
        width: 145px;
        height: auto;
        max-width: 100%;
    }

    /* HOW IT WORKS CARDS */
    .works-list {
        padding: 0 15px;
    }

    .work-item {
        gap: 16px;
        padding: 20px 16px;
        margin-bottom: 20px;
    }


    .work-icon {
        width: 76px;
        height: 76px;
        min-width: 76px;
        min-height: 76px;

        flex-shrink: 0;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 50%;
        box-sizing: border-box;
    }

    .work-icon img {
        width: 42px;
        height: 42px;

        max-width: 42px;
        max-height: 42px;

        object-fit: contain;
        display: block;
    }

    .work-content h3 {
        font-size: 17px;
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .work-content p {
        font-size: 15px;
        line-height: 1.55;
    }

}


/* =========================================================
   320px
   ========================================================= */

@media (max-width: 320px) {

    /* LOGO */
    .logo img {
        width: 135px;
        height: auto;
        max-width: 100%;
    }

    /* HOW IT WORKS CARDS */
    .works-list {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
    }

    .work-item {
        width: 100%;
        gap: 13px;
        padding: 18px 12px;
        margin-bottom: 18px;
        border-width: 4px;
    }

    .work-icon {
        width: 62px;
        height: 62px;
        min-width: 62px;
        border-width: 4px;
        font-size: 27px;
    }

    .work-content {
        min-width: 0;
        flex: 1;
    }

    .work-content h3 {
        font-size: 17px;
        line-height: 1.15;
        margin-bottom: 7px;
        overflow-wrap: anywhere;
    }

    .work-content p {
        font-size: 14px;
        line-height: 1.5;
    }

}

/* =========================================================
   PARTNER LIST - MOBILE RESPONSIVE
   ========================================================= */

@media (max-width: 768px) {

    .partner-list {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        text-align: left;
    }

    .partner-list > div {
        width: 100%;
        box-sizing: border-box;
        text-align: left;
        padding: 20px 25px;
        margin-bottom: 15px;
        line-height: 1.5;
    }

}


/* =========================================================
   425px
   ========================================================= */

@media (max-width: 425px) {

    .partner-list {
        width: 100%;
        align-items: stretch;
    }

    .partner-list > div {
        width: 100%;
        text-align: left;
        padding: 16px 18px;
        margin-bottom: 12px;
        font-size: 16px;
        line-height: 1.5;
        box-sizing: border-box;
    }

}


/* =========================================================
   375px
   ========================================================= */

@media (max-width: 375px) {

    .partner-list > div {
        padding: 15px 16px;
        margin-bottom: 10px;
        font-size: 15px;
        line-height: 1.5;
    }

    .industry-long-word {
        font-size: 16px !important;
        letter-spacing: -0.3px;
    }

}


/* =========================================================
   320px
   ========================================================= */

@media (max-width: 320px) {

    .partner-list {
        width: 100%;
    }

    .partner-list > div {
        width: 100%;
        padding: 14px 14px;
        margin-bottom: 10px;
        font-size: 14px;
        line-height: 1.5;
        text-align: left;
        box-sizing: border-box;
    }

}