/* Brand Colors */
:root{
    --primary-color:#E13511;
    --heading-color:#000000;
    --body-color:#7A7A7A;
    --white:#ffffff;
    --light-bg:#f8f8f8;
    --border-color:#e5e5e5;
    --text-color:#7A7A7A
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
        font-family:'Roboto', sans-serif;
}
.hero-mobile-image{
    display:none;
}

@media (max-width:767px){

    .hero-mobile-image{
        display:block;
        height:40vh;

        margin:0 !important;
        padding:0 !important;

        background-image:url('/images/mobile3-globify homepage2.webp');
        background-repeat:no-repeat;
        background-position:center center;
        background-size:contain;
    }

}
.hero-section{
    width:100%;
    min-height:100vh;
    background-image: url('/images/hero-banner.webp'); /* remove /public */
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;

    display:flex;
    align-items:center;

    padding-top: 200px;
    margin:0;
    overflow:hidden;
}
.hero-content{
    align-items: center;
    padding: 20px;
}
.hero-mobile-image{
    display:none;
}
.hero-badge{
    display:inline-block;
    background:#e0f2fe;
    color:#0369a1;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
}

.hero-content h1{
    font-size:55px;
    line-height:1.1;
    font-weight:800;
    color:var(--heading-color);
    margin-bottom:25px;
}

.hero-content h1 span{
    color:var(--primary-color);
}

.hero-content p{
    font-size:18px;
    line-height:1.8;
    color:var(--text-color);
    margin-bottom:10px;
    max-width:600px;
    
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:35px;
}

.btn-primary-custom{
    background:var(--primary-color);
    color:#fff;
    padding:15px 30px;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:0.3s;
}

.btn-primary-custom:hover{
    background:var(--primary-color);
    color:#fff;
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.btn-outline-custom{
    border:2px solid var(--primary-color);
    color:var(--primary-color);
    padding:15px 30px;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:0.3s;
}

.btn-outline-custom:hover{
    color:var(--primary-color);
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.feature-item {
    background: none;
    border: 1px solid none;
    padding: 0px 0px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 600;

    display: flex;
    align-items: center;
    gap: 10px;

    font-family: Roboto, Arial, sans-serif;
    color: var(--heading-color);
}

.feature-icon {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
}
.hero-image{
    width:100%;
    max-width:650px;
    height:auto;
}
@media (max-width: 767px){

    .hero-mobile-image{
        display:block;
        text-align:center;
        margin-bottom:0;
    }

    .hero-mobile-image img{
        width:100%;
        max-width:320px;
        height:auto;
        object-fit:contain;
    }

}
/* Tablet */

@media(max-width:767px){

    .hero-section{
        padding-top:0;
        padding-bottom:40px ;
        background-color: var(--white);
    }

    .hero-content h1{
        font-size:36px;
    }

    .hero-content p{
        font-size:16px;
    }

    .btn-primary-custom,
    .btn-outline-custom{
        width:100%;
        text-align:center;
    }

    .feature-item{
        width:100%;
    }
}
@media (max-width: 767px){

  .hero-section{
    background-image: none !important;
  }

}
@media (max-width:767px){

    .hero-features{
        display:grid;
        grid-template-columns:repeat(2, 1fr);
        gap:15px;
        margin-top:20px;
    }

    .feature-item{
        width:100%;
        justify-content:flex-start;
        align-items:center;
        font-size:12px;
    }

}
@media(max-width:767px){

    .hero-mobile-image{
        margin:0 !important;
        padding:0 !important;
    }

    .hero-section{
        min-height:auto !important;
        display:block !important;
        padding:0 !important;
        margin:0 !important;
        background:none !important;
    }

    .hero-content{
        padding:0 20px 20px !important;
        margin:0 !important;
    }

}

/* ========================================
   GLOBAL ACCESS SECTION
======================================== */

.global-access-section{
    width: 100%;
    padding: 70px 0;
    background: #fff;
    overflow: hidden;
}

/* MAIN WRAPPER */

.global-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    padding: 40px;
    border: 1px solid #e5e7eb;
    border-radius: 24px;

    background: #fff;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}

/* ========================================
   LEFT CONTENT
======================================== */

.global-content{
    flex: 0 0 40%;
    max-width: 40%;

    display: flex;
    align-items: flex-start;
    gap: 20px;
}

/* ICON */

.global-icon-box{
    flex-shrink: 0;
}

.global-main-icon{
    width: 70px;
    height: 70px;
    object-fit: contain;
}

/* TEXT */

.global-text{
    width: 100%;
}

.global-title{
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    color: #111;
    margin-bottom: 18px;
}

.global-title span{
    color: var(--primary-color);
}

.global-description{
    font-size: 16px;
    line-height: 1.8;
    color: #6b7280;
}

/* ========================================
   RIGHT GRID
======================================== */

.stats-grid{
    flex: 0 0 55%;
    max-width: 55%;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CARD */

.stat-card{
    background: #f8f9fb;
    border: 1px solid #e5e7eb;
    border-radius: 16px;

    padding: 24px;

    transition: 0.3s ease;
}

.stat-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* TOP AREA */

.stat-top{
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 18px;
}

/* ICON */

.stat-icon{
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex-shrink: 0;

    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* NUMBER */

.stat-number{
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
}

/* TEXT */

.stat-text{
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
    color: #111;
    margin: 0;
}

.stat-text span{
    display: block;
    margin-top: 4px;

    font-size: 16px;
    font-weight: 500;
    color: #6b7280;
}

/* ========================================
   LARGE TABLET
======================================== */

@media (max-width: 1199px){

    .global-wrapper{
        flex-direction: column;
        align-items: flex-start;
    }

    .global-content,
    .stats-grid{
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

    .stats-grid{
        grid-template-columns: repeat(2, 1fr);
    }

}

/* ========================================
   TABLET
======================================== */

@media (max-width: 991px){

    .global-access-section{
        padding: 50px 0;
    }

    /* REMOVE HUGE BOOTSTRAP PADDING */
    .global-access-section .container-fluid{
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .global-wrapper{
        padding: 30px;
        gap: 30px;
    }

    .global-title{
        font-size: 30px;
    }

    .global-description{
        font-size: 15px;
    }

    .stat-text{
        font-size: 16px;
    }

}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px){

    .global-access-section{
        padding: 30px 0;
    }

    .global-access-section .container-fluid{
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .global-wrapper{
        padding: 20px;
        border-radius: 18px;
        gap: 25px;
    }

    .global-content{
        flex-direction: column;
        gap: 15px;
    }

    .global-main-icon{
        width: 55px;
        height: 55px;
    }

    .global-title{
        font-size: 24px;
        line-height: 1.3;
    }

    .global-description{
        font-size: 14px;
        line-height: 1.7;
    }

    .stats-grid{
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stat-card{
        padding: 20px;
    }

    .stat-number{
        font-size: 24px;
    }

    .stat-text{
        font-size: 15px;
    }

    .stat-text span{
        font-size: 14px;
    }

}

/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 480px){

    .global-wrapper{
        padding: 16px;
    }

    .global-title{
        font-size: 22px;
    }

    .stat-card{
        padding: 18px;
    }

}
/* =========================================
   ABOUT SECTION
========================================= */

.about-globify{
    position: relative;
    width: 100%;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background-image: url("/images/globifyHQ.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
@media (max-width:767px){

    .about-globify{
        background-image:url('/images/globifyHQnextgeneration (1).webp');
        background-repeat:no-repeat;
        background-position:center center;
        background-size:cover;

        min-height:60vh; /* or 50vh */
    }

}
/* OPTIONAL DECORATION */

.about-globify::before{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:350px;
    height:180px;
}

/* OVERLAY */

.about-globify::after{
    content:'';
    position:absolute;
    inset:0;
    z-index:0;
}

/* CONTAINER */

.container{
    max-width: 1320px;
    margin: auto;
    padding: 0 20px;
}

/* MAIN WRAPPER */

.about-wrapper{
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    min-height: 650px;
}

/* =========================================
   LEFT CONTENT
========================================= */

.about-content{
    flex: 0 0 55%;
    max-width: 55%;

    display: flex;
    align-items: flex-start;
}

/* ICON */

.icon-box{
    flex-shrink: 0;
}

.icon-box img{
    width: 100px;
    height: 100px;
    object-fit: contain;
}

/* DIVIDER */

.divider{
    width: 2px;
    height: 220px;
    background: #f04e23;
    margin: 0 25px;
    border-radius: 20px;
}

/* TEXT */

.text-content{
    width: 100%;
}

.text-content h2{
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
}

.text-content h2 span{
    color: #f04e23;
}

.text-content p{
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    max-width: 700px;
    font-family: 'Roboto', sans-serif;
}

/* =========================================
   RIGHT IMAGE
========================================= */

.about-image{
    flex: 0 0 42%;
    max-width: 42%;
}

.about-image img{
    width: 100%;
    display: block;
    object-fit: contain;
}

/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1199px){

    .about-wrapper{
        gap: 30px;
    }

    .text-content h2{
        font-size: 36px;
    }

    .text-content p{
        font-size: 17px;
    }

}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px){

    .about-globify{
        min-height: auto;
        padding: 70px 0;
        background:url('/images/globifyHQ.webp') no-repeat;
        background-size:cover;
    opacity: 1;
    background-position:center center;
    }

    .about-wrapper{
        flex-direction: column;
        align-items: center;
        justify-content: center;

        min-height: auto;
        text-align: center;
    }

    .about-content{
        flex: 0 0 100%;
        max-width: 100%;

        justify-content: center;
    }

    .about-image{
        flex: 0 0 80%;
        max-width: 80%;
    }

    .divider{
        height: 180px;
    }

    .text-content h2{
        font-size: 34px;
    }

    .text-content p{
        font-size: 17px;
        max-width: 100%;
    }

}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px){

    .about-globify{
        padding: 50px 0;
         background-image: url('/images/globifyHQnextgeneration.webp');
         background-size:cover;
    opacity: 1;
    }

    .container{
        padding: 0 15px;
    }

    .about-wrapper{
        gap: 35px;
    }

    .about-content{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .icon-box img{
        width: 75px;
        height: 75px;
    }

    .divider{
        width: 100px;
        height: 4px;
        margin: 20px 0;
    }

    .text-content h2{
        font-size: 28px;
        line-height: 1.3;
    }

    .text-content p{
        font-size: 15px;
        line-height: 1.7;
        padding-bottom: 120px;
    }

    .about-image{
        max-width: 100%;
    }

}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px){

    .about-globify{
        padding: 40px 0;
        background-image: url('/images/globifyHQnextgeneration.webp');
         background-size:cover;
    opacity: 1;
    }

    .container{
        padding: 0 12px;
    }

    .text-content h2{
        font-size: 24px;
    }

    .text-content p{
        font-size: 14px;
    }

    .icon-box img{
        width: 65px;
        height: 65px;
    }

    .divider{
        width: 80px;
    }

}
/* =========================================
   CONTACT FORM SECTION
========================================= */

.contact-form-section{
    padding:60px 0;
    background:#f8f8f8;
    overflow:hidden;
}

/* REMOVE EXTRA SIDE SPACE */

.contact-form-section .container,
.contact-form-section .container-fluid{
    width:100%;
}

/* =========================================
   FORM CARD
========================================= */

.form-card{
    background:#fff;
    border-radius:20px;

    padding:35px;

    display:flex;
    align-items:flex-start;
    gap:35px;

    box-shadow:0 2px 12px rgba(0,0,0,0.08);
}

/* =========================================
   LEFT CONTENT
========================================= */

.form-info{
    flex:0 0 28%;
    max-width:28%;
}

.form-info h2{
    font-size:42px;
    line-height:1.2;
    font-weight:700;

    color:#000;
    margin-bottom:24px;

    position:relative;
}

.form-info h2::after{
    content:'';
    position:absolute;

    left:0;
    bottom:-10px;

    width:100px;
    height:3px;

    background:#000;
}

.form-info p{
    color:#6b7280;
    font-size:18px;
    line-height:1.7;
    font-weight:500;
}

/* =========================================
   DIVIDER
========================================= */

.vertical-divider{
    width:1px;
    background:#d8d8d8;
    align-self:stretch;
}

/* =========================================
   FORM AREA
========================================= */

.form-area{
    flex:1;
    width:100%;
}

/* =========================================
   FORM ROW
========================================= */

.form-row{
    display:flex;
    gap:15px;
    margin-bottom:15px;
}

.form-row input{
    flex:1;
}

/* =========================================
   INPUTS
========================================= */

.form-row input,
.form-row textarea{
    width:100%;

    border:1px solid #d7d7d7;
    border-radius:8px;

    padding:14px 16px;

    font-size:15px;
    outline:none;

    transition:0.3s ease;
    background:#fff;
}

.form-row input:focus,
.form-row textarea:focus{
    border-color:#ff1e00;
    box-shadow:0 0 0 3px rgba(255,30,0,0.08);
}

/* =========================================
   TEXTAREA
========================================= */

.form-row textarea{
    min-height:130px;
    resize:none;
}

/* =========================================
   BUTTON
========================================= */

.submit-btn{
    background:#ff1e00;
    color:#fff;

    border:none;
    border-radius:8px;

    padding:14px 28px;

    cursor:pointer;

    font-size:15px;
    font-weight:600;

    transition:0.3s ease;
}

.submit-btn:hover{
    background:#e11900;
}

/* =========================================
   SECURE TEXT
========================================= */

.secure-text{
    margin-top:15px;

    color:#6b7280;
    font-size:14px;
    line-height:1.6;
}

/* =========================================
   LARGE TABLET
========================================= */

@media (max-width:1199px){

    .contact-form-section{
        padding:50px 0;
    }

    .form-card{
        padding:30px;
        gap:28px;
    }

    .form-info{
        flex:0 0 32%;
        max-width:32%;
    }

    .form-info h2{
        font-size:34px;
    }

    .form-info p{
        font-size:16px;
    }
}

/* =========================================
   TABLET
========================================= */

@media (max-width:991px){

    .contact-form-section{
        padding:40px 0;
    }

    .contact-form-section .container,
    .contact-form-section .container-fluid{
        padding-left:20px !important;
        padding-right:20px !important;
    }

    .form-card{
        flex-direction:column;

        padding:25px;
        gap:22px;

        border-radius:18px;
    }

    .form-info{
        flex:0 0 100%;
        max-width:100%;
    }

    .vertical-divider{
        width:100%;
        height:1px;
    }

    .form-info h2{
        font-size:30px;
        margin-bottom:18px;
    }

    .form-info p{
        font-size:15px;
        line-height:1.6;
    }

    .form-row{
        gap:12px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width:767px){

    .contact-form-section{
        padding:30px 0;
    }

    /* VERY IMPORTANT FOR MOBILE */

    .contact-form-section .container,
    .contact-form-section .container-fluid{
        padding-left:15px !important;
        padding-right:15px !important;
    }

    .form-card{
        padding:18px;
        gap:18px;

        border-radius:14px;
    }

    .form-row{
        flex-direction:column;
        gap:12px;
        margin-bottom:12px;
    }

    .form-info h2{
        font-size:26px;
        line-height:1.2;
        margin-bottom:15px;
    }

    .form-info h2::after{
        width:80px;
        bottom:-8px;
    }

    .form-info p{
        font-size:14px;
        line-height:1.6;
    }

    .form-row input,
    .form-row textarea{
        padding:13px 14px;
        font-size:14px;
        border-radius:6px;
    }

    .form-row textarea{
        min-height:110px;
    }

    .submit-btn{
        width:100%;

        padding:13px 18px;

        font-size:14px;
        border-radius:6px;
    }

    .secure-text{
        margin-top:12px;
        font-size:13px;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width:480px){

    .contact-form-section{
        padding:25px 0;
    }

    .contact-form-section .container,
    .contact-form-section .container-fluid{
        padding-left:12px !important;
        padding-right:12px !important;
    }

    .form-card{
        padding:15px;
        border-radius:12px;
    }

    .form-info h2{
        font-size:22px;
    }

    .form-info p{
        font-size:13px;
    }

    .form-row input,
    .form-row textarea{
        padding:12px;
    }

    .submit-btn{
        font-size:13px;
    }
}
/* =========================================
   WHY SECTION
========================================= */

.why-section{
    position: relative;
    padding: 100px 0;
    overflow: hidden;

    background: url('/images/bg-ov.webp') center center no-repeat;
    background-size: cover;
}

/* =========================================
   DECORATION
========================================= */

.why-section::before{
    content:'';
    position:absolute;
    top:0;
    left:0;

    width:400px;
    height:220px;

    z-index:1;
}

.why-section::after{
    content:'';
    position:absolute;
    bottom:0;
    right:0;

    width:400px;
    height:220px;

    transform: rotate(180deg);
    z-index:1;
}

/* CONTENT */

.why-section .container{
    position: relative;
    z-index: 2;
}

/* =========================================
   HEADER
========================================= */

.section-header{
    text-align: center;
    margin-bottom: 60px;
}

/* TAG */

.section-tag{
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-tag span{
    color: #ff3b1f;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.section-tag::before,
.section-tag::after{
    content:'';
    position:absolute;
    top:50%;

    width:120px;
    height:1px;

    background:#ff3b1f;
}

.section-tag::before{
    right:100%;
    margin-right:15px;
}

.section-tag::after{
    left:100%;
    margin-left:15px;
}

/* TITLE */

.section-header h2{
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #000;
    line-height: 1.2;
}

.section-header h2 span{
    color: #ff1e00;
}

/* DESCRIPTION */

.section-header p{
    max-width: 700px;
    margin: auto;

    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

/* =========================================
   GRID
========================================= */

.why-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

/* =========================================
   CARD
========================================= */

.why-card{
    position: relative;

    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;

    padding: 30px;
    min-height: 300px;

    transition: 0.3s ease;

    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.why-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* NUMBER */

.card-number{
    position:absolute;
    top:20px;
    right:20px;

    font-size: 54px;
    font-weight: 700;
    color: #efefef;
    line-height: 1;
}

/* =========================================
   ICON
========================================= */

.why-icon-wrap{
    width: 90px;
    height: 90px;

    background: #fff;
    border-radius: 50%;

    box-shadow: 0 5px 15px rgba(0,0,0,.08);

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom: 22px;
}

.why-icon-wrap img{
    width: 90px;
    height: 90px;
    object-fit: contain;
}

/* RED LINE */

.card-line{
    width: 90px;
    height: 2px;

    background: #ff3b1f;
    margin-bottom: 20px;
}

/* TITLE */

.why-card h4{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
    line-height: 1.4;
}

/* TEXT */

.why-card p{
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1199px){

    .why-section{
        padding: 20px 0;
    }

    .why-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .section-header h2{
        font-size: 48px;
    }

}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px){

    .why-section{
        padding: 20px 0;
    }

    .section-header{
        margin-bottom: 50px;
    }

    .section-header h2{
        font-size: 42px;
    }

    .section-header p{
        font-size: 15px;
    }

    .why-card{
        min-height: auto;
    }

}

/* =========================================
   MOBILE RESPONSIVE ONLY
   DESKTOP REMAINS SAME
========================================= */

@media (max-width: 767px){

    /* SECTION */
    .why-section{
        padding: 50px 0;
    }

    .why-section .container{
        padding-left: 15px;
        padding-right: 15px;
    }

    /* HEADER */
    .section-header{
        margin-bottom: 28px;
    }

    .section-tag{
        margin-bottom: 10px;
    }

    .section-tag span{
        font-size: 12px;
    }

    .section-tag::before,
    .section-tag::after{
        width: 40px;
    }

    .section-header h2{
        font-size: 30px;
        margin-bottom: 12px;
        line-height: 1.25;
    }

    .section-header p{
        font-size: 14px;
        line-height: 1.6;
        max-width: 100%;
    }

    /* GRID */
    .why-grid{
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* CARD */
    .why-card{
        padding: 18px;
        border-radius: 12px;
        min-height: auto;
    }

    .card-number{
        top: 14px;
        right: 14px;
        font-size: 34px;
    }

    /* ICON */
    .why-icon-wrap{
        width: 60px;
        height: 60px;
        margin-bottom: 14px;
    }

    .why-icon-wrap img{
        width: 60px;
        height: 60px;
    }

    /* LINE */
    .card-line{
        width: 60px;
        margin-bottom: 14px;
    }

    /* TEXT */
    .why-card h4{
        font-size: 17px;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .why-card p{
        font-size: 13px;
        line-height: 1.6;
    }

}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px){

    .why-section{
        padding: 50px 0;
    }

    .why-section .container{
        padding-left: 12px;
        padding-right: 12px;
    }

    .section-header{
        margin-bottom: 24px;
    }

    .section-header h2{
        font-size: 25px;
    }

    .section-tag::before,
    .section-tag::after{
        width: 28px;
    }

    .why-card{
        padding: 16px;
    }

    .why-icon-wrap{
        width: 54px;
        height: 54px;
    }

    .why-icon-wrap img{
        width: 54px;
        height: 54px;
    }

    .card-number{
        font-size: 30px;
    }

    .why-card h4{
        font-size: 16px;
    }

    .why-card p{
        font-size: 13px;
    }

}
/* =========================================
   SERVICES SECTION
========================================= */

.services-section{
    position: relative;
    padding: 100px 0;
    overflow: hidden;

    background-color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* =========================================
   DECORATION
========================================= */

.services-section::before{
    content:'';
    position:absolute;
    top:0;
    left:0;

    width:400px;
    height:220px;

    z-index:1;
}

.services-section::after{
    content:'';
    position:absolute;
    bottom:0;
    right:0;

    width:400px;
    height:220px;

    transform: rotate(180deg);
    z-index:1;
}

/* CONTENT */

.services-section .container,
.services-section .container-fluid{
    position: relative;
    z-index: 2;
}

/* =========================================
   HEADER
========================================= */

.services-header{
    text-align: center;
    margin-bottom: 60px;
}

/* TAG */

.services-tag{
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.services-tag span{
    color: #ff3b1f;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.services-tag::before,
.services-tag::after{
    content:'';
    position:absolute;
    top:50%;

    width:120px;
    height:1px;

    background:#ff3b1f;
}

.services-tag::before{
    right:100%;
    margin-right:15px;
}

.services-tag::after{
    left:100%;
    margin-left:15px;
}

/* TITLE */

.services-header h2{
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #000;
    line-height: 1.2;
}

.services-header h2 span{
    color: #ff1e00;
}

/* DESCRIPTION */

.services-header p{
    max-width: 700px;
    margin: auto;

    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

/* =========================================
   GRID
========================================= */

.services-grid{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 25px;
}

/* =========================================
   CARD
========================================= */

.service-card{
    position: relative;

    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;

    padding: 28px;
    min-height: 320px;

    transition: 0.3s ease;

    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.service-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* NUMBER */

.service-number{
    position:absolute;
    top:20px;
    right:20px;

    font-size: 54px;
    font-weight: 700;
    color: #efefef;
    line-height: 1;
}

/* =========================================
   ICON
========================================= */

.service-icon-wrap{
    width: 90px;
    height: 90px;

    background: #fff;
    border-radius: 50%;

    box-shadow: 0 5px 15px rgba(0,0,0,.08);

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom: 22px;
}

.service-icon-wrap img{
    width: 90px;
    height: 90px;
    object-fit: contain;
}

/* LINE */

.service-line{
    width: 90px;
    height: 2px;

    background: #ff3b1f;
    margin-bottom: 20px;
}

/* TITLE */

.service-card h4{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
    line-height: 1.4;
}

/* TEXT */

.service-card p{
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 18px;
}

/* =========================================
   BUTTON AREA
========================================= */

.services-button{
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* BUTTON */

.service-btn-cutome{
    display: inline-flex;
    align-items: center;
    gap: 8px;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    color: var(--primary-color);

    transition: 0.3s ease;
}

.service-btn-cutome:hover{
    transform: translateY(-3px);
    color: #ff1e00;
}

/* =========================================
   LARGE LAPTOP
========================================= */

@media (max-width: 1400px){

    .services-grid{
        grid-template-columns: repeat(4,1fr);
    }

}

/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1199px){

    .services-section{
        padding: 40px 0;
    }

    .services-grid{
        grid-template-columns: repeat(3,1fr);
    }

    .services-header h2{
        font-size: 48px;
    }

}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px){

    .services-section{
        padding: 20px 0;
    }

    .services-header{
        margin-bottom: 50px;
    }

    .services-header h2{
        font-size: 40px;
    }

    .services-header p{
        font-size: 15px;
    }

    .services-grid{
        grid-template-columns: repeat(2,1fr);
        gap: 20px;
    }

    .service-card{
        min-height: auto;
    }

}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px){

    .services-section{
        padding: 20px 0;
    }

    .services-grid{
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-header{
        margin-bottom: 40px;
    }

    .services-header h2{
        font-size: 32px;
    }

    .services-header p{
        font-size: 14px;
        line-height: 1.7;
    }

    .services-tag::before,
    .services-tag::after{
        width: 50px;
    }

    .service-card{
        padding: 24px;
        border-radius: 14px;
    }

    .service-icon-wrap{
        width: 60px;
        height: 60px;
        margin-bottom: 18px;
    }

    .service-icon-wrap img{
        width: 60px;
        height: 60px;
    }

    .service-line{
        width: 70px;
    }

    .service-card h4{
        font-size: 18px;
    }

    .service-card p{
        font-size: 14px;
    }

    .service-number{
        font-size: 42px;
    }

}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px){

    .services-section{
        padding: 20px 0;
    }

    .services-header h2{
        font-size: 26px;
    }

    .services-tag span{
        font-size: 12px;
    }

    .services-tag::before,
    .services-tag::after{
        width: 35px;
    }

    .service-card{
        padding: 20px;
    }

    .service-number{
        font-size: 36px;
    }

}
/* =========================================
   PROCESS SECTION
========================================= */

.process-section{
    position: relative;
    padding: 100px 20px; /* ONLY 20px LEFT RIGHT */
    overflow: hidden;

    background: url('/images/bg-ov.webp') center center no-repeat;
    background-size: cover;
}

/* =========================================
   HEADER
========================================= */

.process-header{
    text-align: center;
    margin-bottom: 60px;
}

/* TAG */

.process-tag{
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.process-tag span{
    color: #ff3b1f;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.process-tag::before,
.process-tag::after{
    content:'';
    position:absolute;
    top:50%;

    width:120px;
    height:1px;

    background:#ff3b1f;
}

.process-tag::before{
    right:100%;
    margin-right:15px;
}

.process-tag::after{
    left:100%;
    margin-left:15px;
}

/* TITLE */

.process-header h2{
    font-size: 60px;
    font-weight: 700;
    color: #000;
    margin-bottom: 18px;
    line-height: 1.2;
}

.process-header h2 span{
    color:#ff3b1f;
}

/* DESCRIPTION */

.process-header p{
    max-width: 700px;
    margin: auto;

    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

/* =========================================
   GRID
========================================= */

.process-grid{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 20px;
}

/* =========================================
   CARD
========================================= */

.process-card{
    position: relative;

    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;

    padding: 30px 20px;
    text-align: center;

    min-height: 320px;

    transition: 0.3s ease;

    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.process-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* =========================================
   FLOW ARROW
========================================= */

.process-card:not(:last-child)::after{
    content:'';
    position:absolute;

    top:95px;
    right:-40px;

    width:100px;
    height:20px;

    background:url('/images/flow-arrow.webp') no-repeat center;
    background-size:contain;

    z-index:10;
}

/* =========================================
   STEP NUMBER
========================================= */

.process-number{
    width:42px;
    height:42px;

    background:#ff3b1f;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-weight:700;

    margin:0 auto 20px;

    display:none;
}

/* =========================================
   ICON
========================================= */

.process-icon-wrap{
    width:60%;
    margin:0 auto 20px;

    display:flex;
    align-items:center;
    justify-content:center;

    position:relative;
}

.process-icon-wrap::before{
    content:'';
    position:absolute;

    width:90px;

    border:2px solid #ff3b1f;
    border-top:none;

    border-radius:0 0 100px 100px;

    display:none;
}

.process-icon-wrap img{
    width:100%;
    max-width:180px;

    position:relative;
    z-index:2;

    object-fit:contain;
}

/* =========================================
   LINE
========================================= */

.process-line{
    width:120px;
    height:2px;

    background:#ff3b1f;
    margin:0 auto 20px;
}

/* =========================================
   TITLE
========================================= */

.process-card h4{
    font-size:20px;
    font-weight:700;
    margin-bottom:15px;
    color:#111;
    line-height:1.4;
}

/* =========================================
   TEXT
========================================= */

.process-card p{
    font-size:15px;
    line-height:1.8;
    color:#666;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px){

    .process-section{
        padding: 40px 20px !important; /* 20px left-right only */
    }

    .process-header{
        margin-bottom: 35px;
    }

    .process-header h2{
        font-size: 40px;
        margin-bottom: 14px;
    }

    .process-header p{
        font-size: 15px;
        line-height: 1.7;
        max-width: 100%;
    }

    .process-grid{
        grid-template-columns: repeat(2,1fr);
        gap: 18px;
    }

    .process-card{
        min-height:auto;
        padding: 22px 18px;
    }

}

/* =========================================
   MOBILE
========================================= */
@media (max-width: 767px){

  /* REMOVE OLD HORIZONTAL ARROW */
  .process-card:not(:last-child)::after{
    display: none;
  }

}
@media (max-width: 767px){

  .process-card{
    position: relative;
  }

  .process-card:not(:last-child)::before{
    content: "";
    position: absolute;

    left: 50%;
    bottom: -50;
    transform: translateX(-50%);

    width: 10px;
    height: 80px;

    background: url('/images/globify.webp') no-repeat center;
    background-size: contain;
    z-index: 2;
  }

}
@media (max-width: 767px){

    .process-section{
        padding: 35px 20px !important; /* EXACT 20px LEFT RIGHT */
    }

    /* REMOVE EXTRA CONTAINER SPACE */
    .process-section .container,
    .process-section .container-fluid{
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100%;
    }

    .process-header{
        margin-bottom: 28px;
    }

    .process-tag{
        margin-bottom: 10px;
    }

    .process-tag span{
        font-size: 12px;
    }

    .process-tag::before,
    .process-tag::after{
        width: 38px;
    }

    .process-header h2{
        font-size: 30px;
        margin-bottom: 12px;
        line-height: 1.25;
    }

    .process-header p{
        font-size: 14px;
        line-height: 1.6;
        max-width: 100%;
    }

    .process-grid{
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .process-card{
        padding: 20px 16px;
        border-radius: 12px;
        min-height: auto;
    }

    .process-icon-wrap{
        width: 48%;
        margin-bottom: 14px;
    }

    .process-icon-wrap img{
        max-width: 120px;
    }

    .process-line{
        width: 65px;
        margin-bottom: 14px;
    }

    .process-card h4{
        font-size: 17px;
        margin-bottom: 10px;
    }

    .process-card p{
        font-size: 13px;
        line-height: 1.6;
    }

}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px){

    .process-section{
        padding: 30px 20px !important; /* SAME 20px LEFT RIGHT */
    }

    .process-header{
        margin-bottom: 24px;
    }

    .process-header h2{
        font-size: 25px;
    }

    .process-tag::before,
    .process-tag::after{
        width: 26px;
    }

    .process-card{
        padding: 18px 14px;
    }

    .process-icon-wrap{
        width: 44%;
    }

    .process-icon-wrap img{
        max-width: 105px;
    }

    .process-card h4{
        font-size: 16px;
    }

    .process-card p{
        font-size: 13px;
    }

}
/* =========================================
   AUDIENCE SECTION
========================================= */

.audience-section{
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

/* =========================================
   GRID
========================================= */

.audience-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 35px;
}

/* =========================================
   CARD
========================================= */

.audience-card{
    background: #FEFDFD;
    border: 1px solid #e5e5e5;
    border-radius: 18px;
    overflow: hidden;

    transition: 0.3s ease;
}

.audience-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

/* =========================================
   TOP AREA
========================================= */

.card-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;

    padding: 30px;
}

/* LEFT CONTENT */

.audience-card-content{
    flex: 1;
}

/* LINE */

.Employers-line{
    width: 120px;
    height: 2px;
    background: #ff3b1f;
    margin-bottom: 15px;
}

/* ICON */

.card-icon{
    margin-bottom: 20px;
}

.audience-card-icon img{
    width: 110px;
    height: auto;
    object-fit: contain;
}

/* TITLE */

.card-content h3{
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #111;
}

.card-content h3 span{
    color: #ff3b1f;
}

/* DESCRIPTION */

.card-content p{
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

/* =========================================
   RIGHT IMAGE
========================================= */

.card-image img{
    width: 100%;
    max-width: 320px;
    display: block;
    object-fit: contain;
}

/* =========================================
   FEATURES
========================================= */

.feature-list{
    padding: 0 30px 30px;
    margin-top: -20px;
}

/* ITEM */

.feature-item{
    display: flex;
    align-items: flex-start;
    gap: 15px;

    margin-bottom: 20px;
}

/* ICON */

.feature-item img{
    width: 50px;
    height: 50px;

    object-fit: contain;
    flex-shrink: 0;

    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-radius: 50%;
    background: #fff;
}

/* CONTENT */

.feature-item h5{
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #111;
}

.feature-item p{
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* =========================================
   FOOTER
========================================= */

.card-footer{
    background: #fff5f5;
    padding: 20px 30px;
}

.foremployer-card-footer{
    background: #F4F4F4;
    padding: 20px 30px;
}

/* BUTTON */

.audience-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #ff3b1f;
    color: #fff;

    padding: 15px 28px;
    border-radius: 10px;

    font-size: 14px;
    font-weight: 600;
    text-decoration: none;

    transition: 0.3s ease;
}

.audience-btn:hover{
    background: var(--primary-color);
    color: #fff;

    transform: translateY(-4px);
}

/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1199px){

    .audience-grid{
        gap: 25px;
    }

    .card-content h3{
        font-size: 30px;
    }

}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px){

    .audience-section{
        padding: 60px 0;
    }

    .audience-grid{
        grid-template-columns: 1fr;
    }

    .card-top{
        flex-direction: column;
        align-items: flex-start;
    }

    .card-image{
        width:100%;
        text-align:right;
    }

    .card-image img{
        max-width:220px;
        margin-left:auto;
        margin-right:0;
        display:block;
    }
    .card-content h3{
        font-size: 28px;
    }

}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px){

    .audience-section{
        padding: 40px 0;
    }

    /* REMOVE EXTRA SIDE SPACING */

    .audience-section .container,
    .audience-section .container-fluid{
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .audience-grid{
        gap: 20px;
    }

    .audience-card{
        border-radius: 14px;
    }

    .card-top{
        padding: 22px;
        gap: 20px;
    }

    .feature-list{
        padding: 0 22px 22px;
        margin-top: 0;
    }

    .card-footer,
    .foremployer-card-footer{
        padding: 20px 22px;
    }

    .audience-card-icon img{
        width: 85px;
    }

    .card-content h3{
        font-size: 24px;
        margin-bottom: 12px;
    }

    .card-content p{
        font-size: 14px;
        line-height: 1.7;
    }

    .feature-item{
        gap: 12px;
        margin-bottom: 18px;
    }

    .feature-item img{
        width: 42px;
        height: 42px;
    }

    .feature-item h5{
        font-size: 15px;
    }

    .feature-item p{
        font-size: 13px;
    }

    .card-image img{
        max-width: 220px;
    }

    .audience-btn{
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }

}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px){

    .audience-section{
        padding: 30px 0;
    }

    .audience-section .container,
    .audience-section .container-fluid{
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .card-top{
        padding: 18px;
    }

    .feature-list{
        padding: 0 18px 18px;
    }

    .card-footer,
    .foremployer-card-footer{
        padding: 18px;
    }

    .card-content h3{
        font-size: 22px;
    }

    .card-image img{
        max-width: 180px;
    }

}
/* =========================
   HIRING ENGINE SECTION
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial, sans-serif;
  background:#f5f5f5;
}

.hiring-engine-section{
  padding:100px 20px 80px;
  background:var(--light-bg);
  background-image:url('/images/FLAG.webp');
  background-repeat: no-repeat;
  background-size: 400px;
}

.container{
  max-width:1280px;
  margin:auto;
}

/* =========================
   HEADER
========================= */

.section-header{
  text-align:center;
  margin-bottom:80px;
}

.top-title{
  color:#ff3d00;
  font-size:12px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
}

.section-header h2{
  font-size:58px;
  font-weight:800;
  margin:10px 0;
  color:#111;
}

.section-header h2 span{
  color:#ff2b06;
}

.section-header p{
  max-width:700px;
  margin:auto;
  color:#666;
  line-height:1.7;
  font-size:15px;
}

.section-header p strong{
  color:#ff2b06;
}

/* =========================
   GRID
========================= */

.features-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:22px;
  margin-bottom:50px;
}

/* =========================
   CARD
========================= */

.feature-card{
  background:#fff;
  border-radius:20px;
  padding:80px 25px 40px;
  text-align:center;
  position:relative;
  box-shadow:0 4px 14px rgba(0,0,0,0.05);
  transition:0.35s ease;
}

.feature-card:hover{
  transform:translateY(-8px);
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

/* ICON */

.icon-wrap{
  position:absolute;
  top:-45px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  flex-direction:column;
  align-items:center;
}

.icon-circle{
  width:auto;
  height:auto;
  border-radius:50%;
  background:#fff;
  border:none;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 5px 20px rgba(0,0,0,0.06);
}

.icon-circle img{
  width:120px;
  height:auto;
}

.dot{
  width:10px;
  height:10px;
  background:#ff2b06;
  border-radius:50%;
  margin-top:12px;
  display: none;
}

/* CARD CONTENT */

.number{
  display:block;
  color:#ff2b06;
  font-weight:700;
  font-size:28px;
  margin-bottom:15px;
  margin-top: 15px;
}

.feature-card h3{
  font-size:22px;
  font-weight:700;
  color:#111;
  line-height:1.2;
  margin-bottom:15px;
}

.line{
  width:80px;
  height:2px;
  background:#ff4d32;
  margin:0 auto 20px;
}

.feature-card p{
  color:#666;
  font-size:15px;
  line-height:1.8;
}

/* =========================
   CTA BOX
========================= */

.cta-box{
  background:#F4F4F4;
  border-radius:20px;
  padding:35px 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  box-shadow:0 4px 14px rgba(0,0,0,0.05);
}

.cta-left{
  display:flex;
  align-items:center;
  gap:20px;
  flex:1;
}

.rocket-icon{
  width:80px;
  height:80px;
  background:#F4F4F4;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:26px;
  flex-shrink:0;
}

.cta-text h3{
  font-size:25px;
  color:#111;
  font-weight:700;
  line-height:1.2;
}

.cta-text span{
  color:#ff3d00;
}

.cta-middle{
  flex:1;
  color:#666;
  line-height:1.7;
  font-size:15px;
}

.cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 30px;
  background:#ff3d00;
  color:#fff;
  text-decoration:none;
  border-radius:50px;
  font-size:14px;
  font-weight:700;
  transition:0.3s ease;
  white-space:nowrap;
}

.cta-btn:hover{
  background:#e63200;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:1200px){

  .features-grid{
    grid-template-columns:repeat(3,1fr);
    row-gap:80px;
  }

}

@media (max-width:768px){

  .section-header h2{
    font-size:42px;
  }

  .features-grid{
    grid-template-columns:1fr;
    row-gap:80px;
  }

  .cta-box{
    flex-direction:column;
    text-align:center;
  }

  .cta-left{
    flex-direction:column;
  }

  .cta-text h3{
    font-size:26px;
  }

}
@media (max-width:768px){

  /* REMOVE SIDE GAP COMPLETELY */
  .hiring-engine-section{
    padding:60px 0 50px !important; /* removed left/right padding */
  }

  /* CONTAINER FULL WIDTH */
  .hiring-engine-section .container{
    max-width:100% !important;
    width:100% !important;
    padding-left:15px !important;
    padding-right:15px !important;
  }

  /* PREVENT GRID OVERFLOW */
  .features-grid{
    padding:0 15px;
  }

}
@media (max-width:768px){

  .hiring-engine-section{
    padding:60px 0 50px !important;
    overflow-x:hidden;
  }

  .container,
  .container-fluid{
    width:100% !important;
    max-width:100% !important;
    margin:0 !important;
    padding-left:12px !important;
    padding-right:12px !important;
  }

}
/* =========================================
   GLOBAL HIRING SECTION
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.global-hiring{
    padding:70px 0;
    background:var(--light-bg);
    overflow:hidden;
}

/* =========================================
   CONTAINER
========================================= */

.global-hiring{
    width:100%;
    padding:70px 0;
}

.global-hiring .container-fluid{
    width:100%;
    max-width:100% !important;
    padding-left:50px !important;
    padding-right:50px !important;
}

/* =========================================
   MAIN WRAPPER
========================================= */

.hiring-wrapper{
    background:#fff;
    border:1.5px solid #ff5a36;
    border-radius:24px;

    padding:35px;

    display:grid;
    grid-template-columns:420px 1fr;
    gap:40px;
    align-items:center;

    box-shadow:0 5px 18px rgba(0,0,0,0.05);
}

/* =========================================
   LEFT CONTENT
========================================= */

.hiring-content{
    width:100%;
}

.hiring-content h2{
    font-size:38px;
    line-height:1.15;
    font-weight:800;

    color:#000;
    margin-bottom:20px;
}

.hiring-content h2 span{
    color:#ff2b06;
}

.hiring-content p{
    color:#666;
    font-size:17px;
    line-height:1.8;

    margin-bottom:30px;
}

/* =========================================
   FEATURES
========================================= */

.feature-list{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-top:10px;
}

.feature-item{
    display:flex;
    align-items:flex-start;
    gap:16px;
}

.feature-icon{
    width:70px;
    height:70px;

    border-radius:50%;
    background:none;

    border:1px solid #ececec;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:0 4px 12px rgba(0,0,0,0.06);

    flex-shrink:0;
}

.feature-icon img{
    width:70px;
    height:70px;
    object-fit:contain;
}

.feature-item span{
    font-size:17px;
    font-weight:600;
    line-height:1.5;
    color:#111;
}

/* =========================================
   FORM AREA
========================================= */

.hiring-form{
    position:relative;
    width:100%;
}

/* DIVIDER */

.hiring-form::before{
    content:"";
    position:absolute;

    left:-20px;
    top:0;

    width:1px;
    height:100%;

    background:#ddd;
}

/* =========================================
   FORM GRID
========================================= */

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;

    margin-bottom:14px;
}

/* FORM GROUP */

.form-group{
    width:100%;
}

/* INPUTS */

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;

    border:1px solid #ddd;
    border-radius:8px;

    padding:15px 16px;

    font-size:16px;
    font-family:inherit;

    outline:none;
    background:#fff;

    transition:0.3s ease;
}

/* FOCUS */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:#ff4d32;
    box-shadow:0 0 0 3px rgba(255,77,50,0.08);
}

/* TEXTAREA */

.form-group textarea{
    min-height:120px;
    resize:none;
}

/* FULL WIDTH */

.full-width{
    margin-bottom:18px;
}

/* =========================================
   BUTTON
========================================= */

.submit-btn{
    background:#ff5a36;
    color:#fff;

    border:none;
    border-radius:8px;

    padding:15px 30px;

    font-size:15px;
    font-weight:700;

    cursor:pointer;
    transition:0.3s ease;
}

.submit-btn:hover{
    background:#e94724;
    transform:translateY(-2px);
}

/* =========================================
   SECURE TEXT
========================================= */

.secure-text{
    margin-top:18px;

    color:#777;
    font-size:15px;

    display:flex;
    align-items:center;
    gap:8px;

    line-height:1.6;
}

/* =========================================
   LARGE TABLET
========================================= */

@media (max-width:1100px){

    .global-hiring{
        padding:60px 0;
    }

    .hiring-wrapper{
        grid-template-columns:1fr;
        gap:35px;
    }

    .hiring-form::before{
        display:none;
    }

}

/* =========================================
   TABLET
========================================= */

@media (max-width:991px){

    .global-hiring{
        padding:50px 0;
    }

    /* SIDE SPACING */

    .global-hiring .container,
    .global-hiring .container-fluid{
        padding-left:24px !important;
        padding-right:24px !important;
    }

    .hiring-wrapper{
        padding:30px;
        gap:30px;
    }

    .hiring-content h2{
        font-size:34px;
    }

    .hiring-content p{
        font-size:16px;
        margin-bottom:25px;
    }

    .feature-item span{
        font-size:16px;
    }

    .form-grid{
        grid-template-columns:1fr;
    }

}

/* =========================================
   MOBILE
========================================= */

@media (max-width:767px){

    .global-hiring{
        padding:40px 0;
    }

    /* REMOVE EXTRA SIDE SPACING */

    .global-hiring .container,
    .global-hiring .container-fluid{
        padding-left:15px !important;
        padding-right:15px !important;
    }

    .hiring-wrapper{
        padding:24px 20px;
        border-radius:18px;

        gap:28px;
    }

    .hiring-content h2{
        font-size:28px;
        line-height:1.2;

        margin-bottom:15px;
    }

    .hiring-content p{
        font-size:14px;
        line-height:1.7;

        margin-bottom:22px;
    }

    .feature-list{
        gap:12px;
    }

    .feature-item{
        gap:12px;
    }

    .feature-icon{
        width:70px;
        height:70px;
    }

    .feature-icon img{
        width:70px;
        height:70px;
        object-fit:contain;
    }

    .feature-item span{
        font-size:14px;
        line-height:1.5;
    }

    /* FORM */

    .form-grid{
        gap:12px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea{
        padding:14px;
        font-size:14px;
    }

    .form-group textarea{
        min-height:100px;
    }

    .submit-btn{
        width:100%;
        padding:14px 20px;
    }

    .secure-text{
        font-size:13px;
        align-items:flex-start;
    }

}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width:480px){

    .global-hiring{
        padding:30px 0;
    }

    .global-hiring .container,
    .global-hiring .container-fluid{
        padding-left:12px !important;
        padding-right:12px !important;
    }

    .hiring-wrapper{
        padding:20px 16px;
        border-radius:16px;
    }

    .hiring-content h2{
        font-size:24px;
    }

    .hiring-content p{
        font-size:13px;
    }

    .feature-item span{
        font-size:13px;
    }

    .feature-icon{
        width:65px;
        height:65px;
    }

    .feature-icon img{
        width:65px;
        height:65px;
        object-fit:contain;
    }
    .submit-btn{
        font-size:14px;
    }

}
/* =========================================
   INDUSTRIES SECTION
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#f5f5f5;
}

/* SECTION */

.industries-section{
    padding:70px 0;
    background:#fff;
    overflow:hidden;
}

/* CONTAINER */

.industries-section{
    width:100%;
    padding:70px 0;
}

.industries-section .container-fluid{
    width:100%;
    max-width:100% !important;
    padding-left:50px !important;
    padding-right:50px !important;
}
/* TITLE */

.section-title{
    text-align:center;
    font-size:42px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:50px;
    color:#000;
}

.section-title span{
    color:#ff0000;
}

/* =========================================
   GRID
========================================= */

.industries-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/* =========================================
   CARD
========================================= */

.industry-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;

    box-shadow:0 4px 14px rgba(0,0,0,0.08);

    transition:all 0.35s ease;
    cursor:pointer;
}

.industry-card:hover{
    transform:translateY(-8px);
    box-shadow:0 14px 30px rgba(0,0,0,0.14);
}

/* IMAGE */

.industry-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;

    transition:0.4s ease;
}

.industry-card:hover img{
    transform:scale(1.03);
}

/* =========================================
   CARD CONTENT
========================================= */

.card-content{
    display:flex;
    align-items:center;
    gap:14px;

    padding:18px 20px;
}

/* ICON */

.card-content .icon{
    flex-shrink:0;
}

.card-content .icon img{
    width:58px;
    height:58px;

    object-fit:contain;
    display:block;
}

/* TITLE */

.card-content h4{
    font-size:18px;
    font-weight:600;
    color:#222;
    line-height:1.4;
}

/* =========================================
   LARGE TABLET
========================================= */

@media (max-width:1199px){

    .industries-section{
        padding:60px 0;
    }

    .industries-grid{
        grid-template-columns:repeat(2,1fr);
        gap:24px;
    }

    .section-title{
        font-size:38px;
        margin-bottom:40px;
    }

    .industry-card img{
        height:220px;
    }
}

/* =========================================
   TABLET
========================================= */

@media (max-width:991px){

    .industries-section{
        padding:50px 0;
    }

    .industries-section .container,
    .industries-section .container-fluid{
        padding-left:20px !important;
        padding-right:20px !important;
    }

    .industries-grid{
        gap:20px;
    }

    .section-title{
        font-size:34px;
    }

    .industry-card img{
        height:210px;
    }

    .card-content{
        padding:16px 18px;
    }

    .card-content h4{
        font-size:17px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width:767px){
    .global-reach-section::before{
        background-image: url('/images/mobile-globify homepage.webp') !important;
        background-repeat: no-repeat;
        background-position: center top;
        background-size: cover;
    }
    .industries-section{
        padding:40px 20px;
    }

    .industries-section .container,
    .industries-section .container-fluid{
        padding-left:20px !important;
        padding-right:20px !important;
    }

    .industries-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .section-title{
        font-size:30px;
        margin-bottom:30px;
    }

    .industry-card{
        border-radius:12px;
    }

    .industry-card img{
        height:200px;
    }

    .card-content{
        padding:16px;
        gap:12px;
    }

    .card-content .icon img{
        width:50px;
        height:50px;
    }

    .card-content h4{
        font-size:16px;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width:480px){

    .industries-section{
        padding:35px 0;
    }

    .industries-section .container,
    .industries-section .container-fluid{
        padding-left:12px !important;
        padding-right:12px !important;
    }

    .section-title{
        font-size:26px;
        margin-bottom:25px;
    }

    .industry-card img{
        height:180px;
    }

    .card-content{
        padding:14px;
    }

    .card-content .icon img{
        width:45px;
        height:45px;
    }

    .card-content h4{
        font-size:15px;
    }
}
/* =====================================
   GLOBAL REACH SECTION
===================================== */

.global-reach-section{
    position:relative;
    padding:80px 0;
    overflow:hidden;
    background:#f7f7f9;
    z-index:1;
}

/* Desktop Background */

.global-reach-section::before{
    content:"";
    position:absolute;
    inset:0;

    background-image:url('/images/global-reach.webp');
    background-repeat:no-repeat;
    background-position:center right;
    background-size:cover;

    z-index:-1;
}

/* Container */

.global-reach-section .container-fluid{
    padding-left:40px;
    padding-right:40px;
}

/* Content */

.reach-content{
    width:100%;
}

/* Heading */

.section-title{
    font-size:48px;
    font-weight:700;
    color:#000;
    line-height:1.2;
    margin-bottom:15px;
}

.section-title span{
    color:#E13511;
}

/* Description */

.section-description{
    max-width:650px;
    font-size:16px;
    line-height:1.7;
    color:#666;
    margin-bottom:40px;
}

/* =====================================
   GRID
===================================== */

.reach-grid{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(230px,230px));

    gap:20px;
    justify-content:flex-start;
}

/* =====================================
   CARD
===================================== */

.reach-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;

    box-shadow:0 4px 15px rgba(0,0,0,.08);

    transition:.3s ease;
}

.reach-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 25px rgba(0,0,0,.12);
}

.reach-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
}

.reach-card-content{
    padding:18px;
    text-align:center;
}

.reach-card-content h4{
    font-size:16px;
    font-weight:600;
    color:#222;
}
.section-title{
    text-align:left;
}
/* =====================================
   LARGE TABLET
===================================== */

@media (max-width:1200px){

    .section-title{
        font-size:42px;
    }

    .reach-grid{
        grid-template-columns:
        repeat(auto-fit,minmax(220px,1fr));
    }

}

/* =====================================
   TABLET
===================================== */

@media (max-width:991px){

    .global-reach-section{
        padding:60px 0;
    }

    .global-reach-section .container-fluid{
        padding-left:25px;
        padding-right:25px;
    }

    .section-title{
        font-size:36px;
    }

    .section-description{
        font-size:15px;
    }

    .reach-grid{
        grid-template-columns:repeat(2,1fr);
    }

    /* Tablet Background */

    .global-reach-section::before{
        background-image:url('/images/global-reach-tablet.webp');
        background-position:center;
    }

}

/* =====================================
   MOBILE (FIXED SPACING)
===================================== */

@media (max-width:767px){

    .global-reach-section{
        padding:35px 0; /* reduced from 50px */
    }

    .global-reach-section .container-fluid{
        padding-left:12px;  /* reduced */
        padding-right:12px; /* reduced */
    }

    .section-title{
        font-size:28px;
        margin-bottom:10px; /* tighter spacing */
    }

    .section-description{
        font-size:14px;
        margin-bottom:20px; /* reduced gap */
    }

    .reach-grid{
        grid-template-columns:1fr;
        gap:12px; /* reduced from 20px */
    }

    .reach-card img{
        height:200px;
    }

    .reach-card-content{
        padding:12px; /* tighter */
    }
}


/* =====================================
   SMALL MOBILE (EXTRA FIX)
===================================== */

@media (max-width:480px){

    .global-reach-section{
        padding:25px 0; /* tighter section */
    }

    .global-reach-section .container-fluid{
        padding-left:10px;
        padding-right:10px;
    }

    .section-title{
        font-size:24px;
    }

    .section-description{
        margin-bottom:15px;
    }

    .reach-grid{
        gap:10px;
    }

    .reach-card img{
        height:180px;
    }

    .reach-card-content{
        padding:10px;
    }

    .reach-card-content h4{
        font-size:14px;
    }
}
/* =====================================
   GLOBAL MOBILE EDGE FIX
===================================== */

@media (max-width: 767px){

    body{
        margin:0;
        padding:0;
        overflow-x:hidden;
    }

    .global-reach-section{
        width:100vw;
        margin-left:calc(-50vw + 50%);
        margin-right:calc(-50vw + 50%);
    }

    .global-reach-section .container-fluid{
        padding-left:10px !important;
        padding-right:10px !important;
    }
}