/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

body {
    background: #F4F9FF;
    color: #224172;
}

a{
    text-decoration: none;
}

/* ==================================start-of-navigation=========================== */


/* ===== TOP NAV ===== */
.jobVac-topnav {
    background: linear-gradient(90deg, #E3F3FB, #cfdeff);
    border-bottom: 1px solid #69BBDD;
    padding: 10px 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.jobVac-topinner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.jobVac-topmenu {
    display: flex;
    gap: 20px;
}

.jobVac-toplink {
    text-decoration: none;
    color: #0B1957;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.jobVac-toplink::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #5784E6;
    transition: width 0.3s ease;
}

.jobVac-toplink:hover {
    color: #5784E6;
}

.jobVac-toplink:hover::after {
    width: 100%;
}

/* Right section */
.jobVac-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.jobVac-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0B1957;
    font-size: 14px;
}

.jobVac-phone i {
    color: #5784E6;
}

.jobVac-lang {
    display: flex;
    align-items: center;
    gap: 8px;
}

.jobVac-lang img {
    width: 20px;
    height: auto;
}

.jobVac-langselect {
    border: none;
    background: transparent;
    font-size: 14px;
    color: #224172;
    outline: none;
}

/* ===== BOTTOM NAV ===== */
.jobVac-botnav {
    background-color: #E3F3FB;
    border-top: 2px solid #69BBDD;
    /* box-shadow: 0 4px 6px rgba(0,0,0,0.08); */
    padding: 12px 0;
}

.jobVac-botinner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Logo */
.jobVac-logowrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.jobVac-logoimg {
    height: 48px;
     cursor: pointer;
}

.jobVac-brandwrap {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.jobVac-brand {
    font-size: 20px;
    font-weight: 700;
    color: #0B1957;
}

.jobVac-tagline {
    font-size: 13px;
    color: #5784E6;
}

/* Shop buttons */
.jobVac-shoparea {
    display: flex;
    align-items: center;
    gap: 15px;
}

.jobVac-buybtn {
    background-color: #5784E6;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 3px 6px rgba(87, 132, 230, 0.25);
}

.jobVac-buybtn a{
    color: #fff;

}

.jobVac-buybtn:hover {
    background-color: #69BBDD;
    transform: translateY(-2px);
}

/* Cart button */
.jobVac-cartbtn {
    background-color: transparent;
    border: 2px solid #5784E6;
    padding: 8px 14px;
    border-radius: 6px;
    color: #0B1957;
    font-size: 16px;
    position: relative;
    cursor: pointer;
    transition: all 0.25s ease;
}

.jobVac-cartbtn:hover {
    background-color: #F8F3EA;
}

.jobVac-cartcount {
    background-color: #5784E6;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    position: absolute;
    top: -6px;
    right: -6px;
}

/* Auth buttons */
.jobVac-authwrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

.jobVac-signin {
    color: #0B1957;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s ease;
}

.jobVac-signin:hover {
    color: #5784E6;
}

.jobVac-post {
    background-color: #69BBDD;
    color: #0B1957;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.jobVac-post:hover {
    background-color: #5784E6;
    color: #fff;
}

.jobVac-reg {
    /* background-color: #69BBDD; */
    color: #0B1957;
    outline: 1px solid #007BFF;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.jobVac-reg:hover {
    background-color: #5784E6;
    outline: none;
    color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .jobVac-topmenu {
        display: none;
    }

    .jobVac-botinner {
        flex-direction: column;
        gap: 15px;
    }

    .jobVac-shoparea {
        order: 3;
    }
}

/* ==================================end-of-navigation=========================== */


/* ============================start-of-banner========================================== */

.comp-ban-hero {
    position: relative;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 50px 0;
}

.comp-ban-overlay {
    position: absolute;
    background: linear-gradient(90deg, #E3F3FB, #cfdeff);
    inset: 0;
    backdrop-filter: blur(4px);
}

/* Layout Container */
.comp-ban-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1300px;
    z-index: 2;
    gap: 50px;
}

/* Left Section */
.comp-ban-left {
    flex: 1;
    padding: 1rem 0;
}

.comp-ban-small {
    font-size: 14px;
    letter-spacing: 2px;
    color: #69BBDD;
}

.comp-ban-heading {
    font-size: 50px;
    line-height: 1.2;
    font-weight: 900;
    color: #003b5c;
    margin-bottom: 1rem;
}

.comp-ban-heading span {
    color: #0078b7;
}

.comp-ban-subheading {
    font-size: 22px;
    font-weight: 500;
    color: #01506b;
    margin-bottom: 1.2rem;
}

.comp-ban-desc {
    font-size: 17px;
    color: #2a2a2a;
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 1.5rem;
}

.comp-ban-points {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.comp-ban-points li {
    font-size: 17px;
    color: #003b5c;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comp-ban-btn {
    background-color: #0078b7;
    color: #fff;
    border: none;
    padding: 0.75rem 1.6rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 120, 183, 0.3);
}

.comp-ban-btn:hover {
    background-color: #005f8a;
    box-shadow: 0 6px 14px rgba(0, 95, 138, 0.35);
    transform: translateY(-2px);
}

/* Right Form Box */
.comp-ban-right {
    flex: 0.9;
    display: flex;
    justify-content: center;
}

.comp-ban-card {
    background: radial-gradient(circle at top left, #006CA9, #001f33 70%);
    border-radius: 20px;
    padding: 35px;
    width: 380px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Tabs */
.comp-ban-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.879);
    border-radius: 30px;
    margin-bottom: 25px;
    overflow: hidden;
}

.comp-ban-tab {
    flex: 1;
    padding: 12px 0;
    border: none;
    background: transparent;
    color: #5784E6;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.comp-ban-tab.active {
    background: #69BBDD;
    color: #001f33;
}

/* Forms */
.comp-ban-form {
    display: none;
    flex-direction: column;
    gap: 14px;
}

.comp-ban-form.active {
    display: flex;
}

.comp-ban-form input {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    color: #F4F9FF;
    font-size: 15px;
    outline: none;
}

.comp-ban-form input::placeholder {
    color: #e0e9f0;
    outline: none;
}

.comp-ban-radio {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 10px;
}

.comp-ban-radio label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #69BBDD;
}

.comp-ban-submit {
    background: #006CA9;
    color: #F4F9FF;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.comp-ban-submit:hover {
    background: #69BBDD;
    color: #001f33;
}

.comp-ban-create {
    background: #69BBDD;
    color: #001f33;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.comp-ban-create:hover {
    background: #F4F9FF;
}

.comp-ban-forgot {
    text-align: right;
    font-size: 13px;
    color: #69BBDD;
    text-decoration: none;
}

.comp-ban-divider {
    text-align: center;
    color: #F4F9FF;
    opacity: 0.7;
    margin: 10px 0;
}

/* Responsive */
@media (max-width: 950px) {
    .comp-ban-container {
        flex-direction: column;
        text-align: center;
    }

    .comp-ban-left {
        order: 2;
    }

    .comp-ban-right {
        order: 1;
        margin-bottom: 40px;
    }
}


/* ============================end-of-banner========================================== */




/* ================start-of- JOBVACANT OFFERS SECTION =================== */

.cmp-ofr-section {
    background-color: #E3F3FB;
    padding: 4rem 2rem;
    text-align: center;
    overflow: hidden;
    position: relative;
}

/* Decorative soft blob */
.cmp-ofr-section::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: rgba(0, 120, 183, 0.15);
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
}

/* Heading */
.cmp-ofr-content {
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
}

.cmp-ofr-heading {
    font-size: 50px;
    font-weight: 800;
    color: #003b5c;
    margin-bottom: 0.6rem;
}

.cmp-ofr-subheading {
    font-size: 20px;
    color: #01506b;
    font-weight: 500;
    margin-bottom: 1rem;
}

.cmp-ofr-desc {
    font-size: 17px;
    color: #333;
    line-height: 1.6;
}

/* Offers Layout */
.cmp-ofr-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.cmp-ofr-item {
    background: #fff;
    border-radius: 20px;
    padding: 2rem 1.5rem 2.5rem;
    width: 260px;
    box-shadow: 0 10px 25px rgba(0, 59, 92, 0.1);
    transition: all 0.3s ease;
    position: relative;
    transform: rotate(-1deg);
}

.cmp-ofr-item:nth-child(2n) {
    transform: rotate(1deg);
    top: 10px;
}

.cmp-ofr-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 59, 92, 0.2);
}

/* Icons */
.cmp-ofr-icon {
    font-size: 2rem;
    color: #0078b7;
    margin-bottom: 1rem;
}

/* Titles & Text */
.cmp-ofr-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #003b5c;
    margin-bottom: 0.6rem;
}

.cmp-ofr-text {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

/* Card Button */
.cmp-ofr-card-btn {
    background-color: #0078b7;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 120, 183, 0.25);
}

.cmp-ofr-card-btn:hover {
    background-color: #005f8a;
    box-shadow: 0 6px 14px rgba(0, 95, 138, 0.35);
    transform: translateY(-2px);
}


/* Responsive */
@media (max-width: 768px) {
    .cmp-ofr-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .cmp-ofr-item {
        width: 90%;
        transform: none !important;
    }
}


/* ================end-of- JOBVACANT OFFERS SECTION =================== */




/* --=========================start-hire-type============================ -- */


.hire-type-section {
    background-color: #006CA9;
    padding: 50px 6%;
    text-align: center;
}

.hire-type-header {
    max-width: 1000px;
    margin: 0 auto 60px auto;
}

.hire-type-heading {
    font-size: 50px;
    color: #fefeff;
    font-weight: 800;
}

.hire-type-subheading {
    font-size: 20px;
    color: #c8c8c8;
    margin-top: 10px;
}

.hire-type-desc {
    font-size: 1rem;
    color: #d5f0ff;
    line-height: 1.7;
    max-width: 700px;
    margin: 15px auto 0 auto;
}

/* Container */
.hire-type-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
}

/* Card Design */
.hire-type-card {
    background: rgba(255, 255, 255, 0.46);
    width: 320px;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    text-align: left;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #ffffff;
}

.hire-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

/* Icon */
.hire-type-icon {
    font-size: 2rem;
    background-color: #E3F3FB;
    color: #0098C7;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 15px;
}

/* Titles & Text */
.hire-type-title {
    font-size: 1.4rem;
    color: #0B3D60;
    margin-bottom: 10px;
}

.hire-type-info {
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.6;
    font-weight: 600;
}

.hire-type-steps {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.hire-type-steps li {
    background: #E3F3FB;
    padding: 10px 15px;
    margin: 6px 0;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #0B3D60;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Button */
.hire-type-btn {
    background-color: #0098C7;
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hire-type-btn:hover {
    background-color: #0B3D60;
}


/* --=========================end-hire-type============================ -- */




/* --=========================start- enquire Form============================ -- */


.enq-frm-demo-btn {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.enq-frm-demo-btn:hover {
    background-color: #005fc1;
}

/* Overlay */
.enq-frm-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

/* Form Box */
.enq-frm-box {
    background: #fff;
    width: 380px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: enqSlideUp 0.4s ease;
}

/* Animation */
@keyframes enqSlideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Close Button */
.enq-frm-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 26px;
    color: #333;
    cursor: pointer;
}

/* Titles */
.enq-frm-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0B3D60;
    margin-bottom: 5px;
}

.enq-frm-subtitle {
    font-size: 0.95rem;
    color: #4A5F6A;
    margin-bottom: 20px;
}

/* Inputs */
.enq-frm-form label {
    font-size: 0.9rem;
    color: #1a1a1a;
    display: block;
    margin-top: 12px;
}

.enq-frm-form input,
.enq-frm-form select {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.enq-frm-form input:focus,
.enq-frm-form select:focus {
    border-color: #007BFF;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

/* Radio Group */
.enq-frm-radio-group {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.enq-frm-radio-group label {
    font-size: 0.9rem;
    color: #333;
}

/* Submit Button */
.enq-frm-btn {
    background-color: #007BFF;
    color: #fff;
    border: none;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    margin-top: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enq-frm-btn:hover {
    background-color: #005fc1;
}

/* --=========================end- enquire Form============================ -- */


/* --=========================start-hire-steps============================ -- */

.cmp-step-section {
    position: relative;
    /* background: linear-gradient(180deg, #E3F3FB 0%, #B3E5FC 100%); */
    background: linear-gradient(90deg, #E3F3FB, #cfdeff);

    overflow: hidden;
    padding: 80px 20px;
}

/* Glowing gradient blobs */
.cmp-step-section::before,
.cmp-step-section::after {
    content: "";
    position: absolute;
    width: 850px;
    height: 850px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(0, 140, 200, 0.25), transparent 70%);
    filter: blur(70px);
    z-index: 0;
    animation: floatBg 10s ease-in-out infinite alternate;
}

.cmp-step-section::before {
    top: -300px;
    left: -200px;
}

.cmp-step-section::after {
    bottom: -400px;
    right: -150px;
    animation-delay: 2s;
}

/* Floating accent circles */
.cmp-step-section span.cmp-step-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 108, 169, 0.15);
    animation: drift 12s infinite ease-in-out alternate;
}

.cmp-step-section span.c1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 20%;
}

.cmp-step-section span.c2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 25%;
}

.cmp-step-section span.c3 {
    width: 100px;
    height: 100px;
    bottom: 10%;
    left: 35%;
}

@keyframes floatBg {
    from {
        transform: translateY(0px) scale(1);
    }

    to {
        transform: translateY(40px) scale(1.05);
    }
}

@keyframes drift {
    from {
        transform: translateY(0px);
        opacity: 0.6;
    }

    to {
        transform: translateY(-40px);
        opacity: 0.3;
    }
}

/* Main container */
.cmp-step-container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.cmp-step-heading {
    font-size: 2.3rem;
    font-weight: 700;
    color: #004F79;
    background: linear-gradient(90deg, #004F79, #0097E6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.cmp-step-subheading {
    font-size: 1.1rem;
    color: #045A8D;
    margin: 10px 0 50px;
    font-weight: 500;
}

/* Tabs */
.cmp-step-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.cmp-step-tab {
    background: #fff;
    border: 2px solid #0097E6;
    color: #006CA9;
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0, 151, 230, 0.15);
}

.cmp-step-tab.active,
.cmp-step-tab:hover {
    background: linear-gradient(90deg, #006CA9, #00AEEF);
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 151, 230, 0.4);
}

/* Timeline */
.cmp-step-timeline {
    position: relative;
    margin: 0 auto;
    max-width: 800px;
    z-index: 2;
}

.cmp-step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.cmp-step-item::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 50px;
    height: calc(100% - 50px);
    width: 3px;
    background: linear-gradient(to bottom, #0097E6, transparent);
    z-index: 0;
}

.cmp-step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #006CA9, #00AEEF);
    color: #fff;
    font-size: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
    margin-right: 25px;
    box-shadow: 0 6px 15px rgba(0, 108, 169, 0.4);
}

.cmp-step-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #004F79;
    margin-bottom: 6px;
}

.cmp-step-content p {
    color: #033B57;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cmp-step-flow.show {
    animation: fadeUp 0.5s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --=========================end-hire-steps============================ -- */



/* --=========================start-cta============================ -- */


.cta-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fbff;
    border-radius: 20px;
    padding: 60px 80px;
    margin: 60px auto;
    max-width: 1100px;
    box-shadow: 0 10px 25px rgba(0, 80, 150, 0.08);
    overflow: hidden;
}

.cta-content {
    max-width: 550px;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2rem;
    color: #002b5c;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    color: #334e68;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.cta-btn {
    display: inline-block;
    background: #0078d7;
    color: #fff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(0, 120, 215, 0.3);
}

.cta-btn:hover {
    background: #005fa3;
    box-shadow: 0 8px 25px rgba(0, 120, 215, 0.4);
}

/* Right graphic part */
.cta-graphic {
    position: relative;
    width: 240px;
    height: 200px;
}


/* ----------------------===========-----remember-it------------===============--------------- */

.circle {
    width: 90px;
    height: 90px;
    background: #000;
    border-radius: 50%;
    position: absolute;
    top: 40px;
    left: 70px;
    z-index: 2;
}

.circle::before {
    content: "";
    position: absolute;
    top: 30%;
    left: 28%;
    width: 12px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 25px 0 #fff;
}

.ring {
    position: absolute;
    width: 160px;
    height: 160px;
    border: 3px solid #bcd2e5;
    border-radius: 50%;
    top: 20px;
    left: 40px;
    z-index: 1;
    animation: spin 8s linear infinite;
}

.star {
    position: absolute;
    background: #a5ff00;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    width: 50px;
    height: 50px;
    z-index: 0;
    filter: drop-shadow(0 0 10px rgba(165, 255, 0, 0.5));
}

.star1 {
    bottom: 10px;
    right: 50px;
}

.star2 {
    top: 10px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: #b2e0ff;
    filter: drop-shadow(0 0 8px rgba(178, 224, 255, 0.5));
}

/* -------------------=================--------remember-it------================--------------------- */


@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .cta-section {
        flex-direction: column;
        text-align: center;
        padding: 50px 30px;
    }

    .cta-graphic {
        margin-top: 40px;
    }
}


/* --=========================end-cta============================ -- */



/* -- --=========================start-faq============================ -- -- */


.comp-faq-section {
    background-color: #E3F3FB;
    padding: 50px 6%;
    text-align: center;
}

.comp-faq-header {
    max-width: 750px;
    margin: 0 auto 60px;
}

.comp-faq-heading {
    font-size: 40px;
    color: #0B3D60;
    font-weight: 800;
}

.comp-faq-subheading {
    font-size: 20px;
    color: #31708E;
    margin-top: 10px;
}

.comp-faq-desc {
    font-size: 17px;
    color: #4A5F6A;
    margin-top: 15px;
    line-height: 1.6;
}

/* FAQ Container */
.comp-faq-container {
    max-width: 850px;
    margin: 0 auto;
    text-align: left;
}

.comp-faq-item {
    background-color: #fff;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.comp-faq-item.active {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Question */
.comp-faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 20px 25px;
    font-size: 1rem;
    font-weight: 600;
    color: #0B3D60;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    transition: all 0.3s ease;
}

.comp-faq-question:hover {
    background-color: #D9EEF8;
}

.comp-faq-icon {
    font-size: 1.5rem;
    color: #0098C7;
    transition: transform 0.3s ease;
}

.comp-faq-item.active .comp-faq-icon {
    transform: rotate(45deg);
}

/* Answer */
.comp-faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: #F8FCFF;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 25px;
}

.comp-faq-item.active .comp-faq-answer {
    max-height: 300px;
    padding: 20px 25px;
}

.comp-faq-answer p {
    color: #4A5F6A;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* -- --=========================end-faq============================ -- -- */














/* =========================start-of-footer===================================== */


.job-foot-footer {
  background: linear-gradient(180deg,#041033 0%, #02061a 100%);
  color: #dbe9ff;
  padding: 48px 6%;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  box-shadow: 0 -6px 30px rgba(2,8,30,0.25);
}

/* wrapper grid */
.job-foot-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1fr;
  gap: 28px;
  align-items: start;
}

/* columns */
.job-foot-col {}

/* logo block */
.job-foot-logowrap {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
}

.job-foot-logoimg {
  width: 58px;
  height: auto;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  padding: 6px;
}

.job-foot-brand {
  margin: 0;
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
}

.job-foot-tagline {
  margin: 2px 0 0;
  font-size: 13px;
  color: #8fc5ff;
  font-weight: 600;
}

/* short about */
.job-foot-about {
  margin-top: 10px;
  color: #bcd7ff;
  font-size: 14px;
  line-height: 1.6;
  max-width: 420px;
}

/* headings */
.job-foot-heading {
  margin: 0 0 12px 0;
  font-size: 16px;
  color: #ffffff;
  font-weight: 700;
}

/* link lists */
.job-foot-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.job-foot-links li {
  margin-bottom: 10px;
}

.job-foot-links a {
  color: #cfe2ff;
  text-decoration: none;
  font-size: 14px;
  transition: color .18s ease, transform .18s ease;
}

.job-foot-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* support column */
.job-foot-support {
  color: #dceeff;
  font-size: 14px;
  margin: 6px 0;
}

.job-foot-support a {
  color: #fff;
  text-decoration: underline;
}

/* CTA button in footer (subtle) */
.job-foot-cta {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 14px;
  background: linear-gradient(90deg,#2c7bff,#6ab3ff);
  color: #001331;
  font-weight: 700;
  font-size: 13px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(66,133,244,0.12);
}

/* bottom copyright */
.job-foot-bottom {
  max-width: 1200px;
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.job-foot-bottom p {
  color: #9fb0d9;
  font-size: 13px;
  margin: 0;
  letter-spacing: 0.2px;
}

/* responsiveness */
@media (max-width: 980px) {
  .job-foot-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .job-foot-about { max-width: 100%; }
}

@media (max-width: 640px) {
  .job-foot-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .job-foot-logowrap { align-items: flex-start; }
  .job-foot-cta { width: 100%; text-align: center; }
}
/* =========================end-of-footer===================================== */