:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-1cac60a */.hero{
    position:relative;
    overflow:hidden;
    min-height:90vh;
    display:flex;
    align-items:center;
    background:
    linear-gradient(
        135deg,
        #0f172a,
        #1e1b4b,
        #312e81
    );
    padding:80px 30px;
}

/* Animated Background */

.bg-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
    animation:float 8s infinite ease-in-out;
}

.shape1{
    width:350px;
    height:350px;
    background:#ec4899;
    top:-100px;
    left:-100px;
}

.shape2{
    width:400px;
    height:400px;
    background:#8b5cf6;
    right:-100px;
    top:100px;
}

.shape3{
    width:250px;
    height:250px;
    background:#c026d3;
    bottom:-100px;
    left:40%;
}

@keyframes float{
    50%{
        transform:translateY(-25px);
    }
}

.hero-container{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:60px;
    align-items:center;
    position:relative;
    z-index:2;
}

.hero-tag{
    display:inline-block;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.15);
    backdrop-filter:blur(15px);
    color:#fff;
    padding:12px 20px;
    border-radius:100px;
    margin-bottom:25px;
}

.hero-content h1{
    font-size:72px;
    line-height:1.05;
    color:white;
    font-weight:800;
    margin-bottom:25px;
}

.hero-content h1 span{
    background:linear-gradient(
    90deg,
    #f472b6,
    #c084fc
    );
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-content p{
    font-size:19px;
    color:rgba(255,255,255,.75);
    max-width:700px;
    line-height:1.8;
    margin-bottom:35px;
}

/* SEARCH */

.search-box{
    background:white;
    border-radius:22px;
    padding:10px;
    display:flex;
    align-items:center;
    box-shadow:
    0 20px 50px rgba(0,0,0,.25);
    max-width:800px;
}

.search-box input{
    flex:1;
    border:none;
    outline:none;
    padding:20px;
    font-size:16px;
}

.search-box button{
    border:none;
    padding:18px 35px;
    border-radius:16px;
    cursor:pointer;
    color:white;
    font-weight:600;
    font-size:15px;
    background:
    linear-gradient(
        135deg,
        #ec4899,
        #8b5cf6
    );
}

/* CATEGORY PILLS */

.hero-categories{
    margin-top:30px;
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.hero-categories a{
    text-decoration:none;
    color:white;
    padding:12px 18px;
    border-radius:50px;
    border:1px solid rgba(255,255,255,.15);
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(15px);
    transition:.3s;
}

.hero-categories a:hover{
    transform:translateY(-4px);
    background:rgba(255,255,255,.15);
}

/* RIGHT CARD */

.glass-card{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    backdrop-filter:blur(20px);
    border-radius:30px;
    padding:35px;
    color:white;
    animation:float 6s infinite ease-in-out;
}

.glass-card h3{
    font-size:28px;
    margin-bottom:25px;
}

.job-item{
    padding:18px;
    margin-bottom:12px;
    border-radius:16px;
    background:rgba(255,255,255,.08);
    font-size:16px;
    transition:.3s;
}

.job-item:hover{
    transform:translateX(8px);
}

.job-item span{
    margin-right:10px;
}

/* MOBILE */

@media(max-width:1000px){

.hero-container{
    grid-template-columns:1fr;
}

.hero-content h1{
    font-size:48px;
}

.search-box{
    flex-direction:column;
}

.search-box button{
    width:100%;
}

}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-625237b */.jd-section{
    padding:100px 20px;
    background:linear-gradient(180deg,#ffffff,#faf5ff);
}

.jd-header{
    text-align:center;
    max-width:800px;
    margin:auto;
    margin-bottom:60px;
}

.jd-header span{
    background:#f5d0fe;
    color:#86198f;
    padding:10px 20px;
    border-radius:50px;
    font-weight:600;
}

.jd-header h2{
    font-size:54px;
    font-weight:800;
    margin:20px 0;
    color:#111827;
}

.jd-header p{
    color:#6b7280;
    font-size:18px;
}

/* GRID */

.jd-grid{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

/* CARD */

.jd-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    position:relative;
}

.jd-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 70px rgba(139,92,246,.20);
}

/* IMAGE */

.jd-image img{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:.4s;
}

.jd-card:hover .jd-image img{
    transform:scale(1.05);
}

/* CONTENT */

.jd-content{
    padding:25px;
}

.jd-cat{
    display:inline-block;
    background:#faf5ff;
    color:#7c3aed;
    padding:7px 14px;
    border-radius:50px;
    font-size:12px;
    font-weight:700;
}

.jd-content h3{
    margin-top:15px;
    margin-bottom:12px;
}

.jd-content h3 a{
    text-decoration:none;
    color:#111827;
    font-size:22px;
    font-weight:700;
    line-height:1.4;
}

.jd-content h3 a:hover{
    color:#ec4899;
}

.jd-content p{
    color:#6b7280;
    line-height:1.7;
    margin-bottom:20px;
}

/* META */

.jd-meta{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.jd-meta span{
    color:#6b7280;
    font-size:13px;
}

.jd-meta a{
    text-decoration:none;
    color:#ec4899;
    font-weight:700;
}

/* RESPONSIVE */

@media(max-width:768px){

.jd-header h2{
    font-size:36px;
}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4a9d596 */.about-jobzdekho{
    padding:120px 30px;
    background:
    linear-gradient(
        180deg,
        #ffffff,
        #faf5ff
    );
}

.about-container{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:60px;
    align-items:center;
}

.about-tag{
    display:inline-block;
    padding:10px 18px;
    border-radius:50px;
    background:#f5d0fe;
    color:#86198f;
    font-weight:600;
    margin-bottom:20px;
}

.about-content h2{
    font-size:54px;
    font-weight:800;
    line-height:1.15;
    color:#111827;
    margin-bottom:25px;
}

.about-content p{
    font-size:17px;
    line-height:1.9;
    color:#6b7280;
    margin-bottom:20px;
}

/* FEATURES */

.features-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:40px;
}

.feature-box{
    background:white;
    padding:25px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
}

.feature-box:hover{
    transform:translateY(-8px);
}

.feature-box span{
    font-size:28px;
}

.feature-box h4{
    margin:15px 0 10px;
    color:#111827;
}

.feature-box p{
    margin:0;
    font-size:14px;
}

/* RIGHT CARD */

.service-card{
    background:
    linear-gradient(
        135deg,
        #7c3aed,
        #ec4899
    );
    color:white;
    padding:40px;
    border-radius:30px;
    box-shadow:0 25px 60px rgba(124,58,237,.25);
}

.service-card h3{
    font-size:32px;
    margin-bottom:25px;
}

.service-card ul{
    list-style:none;
    padding:0;
    margin:0 0 30px;
}

.service-card ul li{
    margin-bottom:15px;
    font-size:16px;
}

.service-card a{
    display:inline-block;
    text-decoration:none;
    background:white;
    color:#7c3aed;
    padding:14px 24px;
    border-radius:12px;
    font-weight:700;
}

/* RESPONSIVE */

@media(max-width:992px){

    .about-container{
        grid-template-columns:1fr;
    }

    .about-content h2{
        font-size:40px;
    }

    .features-grid{
        grid-template-columns:1fr;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a55ec20 */.job-categories{
    padding:120px 30px;
    background:#ffffff;
}

.section-heading{
    text-align:center;
    max-width:800px;
    margin:auto;
    margin-bottom:70px;
}

.section-heading span{
    display:inline-block;
    padding:10px 18px;
    background:#f5d0fe;
    color:#86198f;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.section-heading h2{
    font-size:56px;
    font-weight:800;
    color:#111827;
    margin-bottom:15px;
}

.section-heading p{
    color:#6b7280;
    font-size:18px;
    line-height:1.8;
}

.categories-grid{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.category-card{
    position:relative;
    overflow:hidden;
    text-decoration:none;
    color:#111827;
    background:white;
    padding:35px;
    border-radius:28px;
    transition:.4s;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.category-card:hover{
    transform:translateY(-12px);
}

.icon{
    width:80px;
    height:80px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    border-radius:20px;
    margin-bottom:25px;
}

.category-card h3{
    font-size:28px;
    margin-bottom:15px;
}

.category-card p{
    color:#6b7280;
    line-height:1.8;
}

/* CARD COLORS */

.govt .icon{
    background:#fce7f3;
}

.army .icon{
    background:#ede9fe;
}

.police .icon{
    background:#fae8ff;
}

.bank .icon{
    background:#fdf2f8;
}

.private .icon{
    background:#f3e8ff;
}

.category-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:linear-gradient(
        90deg,
        #ec4899,
        #8b5cf6
    );
}

.category-card:hover{
    box-shadow:
    0 25px 60px rgba(139,92,246,.18);
}

@media(max-width:768px){

    .section-heading h2{
        font-size:38px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-86e7fc2 */.job-alerts{
    padding:120px 30px;
    background:
    linear-gradient(
        135deg,
        #0f172a,
        #1e1b4b,
        #312e81
    );
    position:relative;
    overflow:hidden;
}

/* LAYOUT */

.cta-container{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:1.2fr .8fr;
    align-items:center;
    gap:60px;
    position:relative;
    z-index:2;
}

/* TEXT */

.cta-tag{
    display:inline-block;
    padding:10px 18px;
    background:rgba(255,255,255,.1);
    border:1px solid rgba(255,255,255,.2);
    border-radius:50px;
    color:#fff;
    margin-bottom:20px;
    backdrop-filter:blur(10px);
}

.cta-content h2{
    font-size:56px;
    color:#fff;
    font-weight:800;
    line-height:1.1;
    margin-bottom:20px;
}

.cta-content p{
    color:rgba(255,255,255,.75);
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
}

/* FORM */

.cta-form{
    display:flex;
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    max-width:600px;
    box-shadow:0 20px 50px rgba(0,0,0,.3);
}

.cta-form input{
    flex:1;
    border:none;
    padding:18px;
    font-size:15px;
    outline:none;
}

.cta-form button{
    border:none;
    padding:18px 30px;
    background:linear-gradient(135deg,#ec4899,#8b5cf6);
    color:#fff;
    font-weight:600;
    cursor:pointer;
}

/* NOTE */

.cta-note{
    margin-top:15px;
    color:rgba(255,255,255,.6);
    font-size:14px;
}

/* VISUAL */

.cta-visual{
    position:relative;
    height:300px;
}

.floating-box{
    position:absolute;
    padding:15px 20px;
    background:rgba(255,255,255,.1);
    border:1px solid rgba(255,255,255,.2);
    border-radius:16px;
    color:#fff;
    backdrop-filter:blur(10px);
    animation:float 6s infinite ease-in-out;
}

.box1{ top:20px; left:20px; }
.box2{ top:120px; right:0; }
.box3{ bottom:20px; left:50px; }

@keyframes float{
    50%{
        transform:translateY(-15px);
    }
}

/* RESPONSIVE */

@media(max-width:900px){

.cta-container{
    grid-template-columns:1fr;
    text-align:center;
}

.cta-content h2{
    font-size:40px;
}

.cta-form{
    flex-direction:column;
}

.cta-form button{
    width:100%;
}

.cta-visual{
    display:none;
}

}/* End custom CSS */
/* Start custom CSS */a{
    text-decoration: none !important;
}/* End custom CSS */