
    .career-checkerboard {
        /* Replace with your company's actual image or gradient for the blur to work */
        background-image: url('your-background-image.jpg');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }

    /* 2. Base Text Box Styling */
    .text-box {
        padding: 1.5rem 1rem;
        min-height: 180px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 22px;
        /* Adjusted text size to fit smaller 3-col width */
        font-weight: 500;
        color: #fff;
        border-radius: 0.75rem;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    /* 3. The Glass Effect properties */
    .glass-effect {
        /* Semi-transparent white background */
        background: rgba(255, 255, 255, 0.15);

        /* The core property for the blur effect */
        backdrop-filter: blur(9px);
        -webkit-backdrop-filter: blur(9px);
        /* Safari support */

        /* Subtle light border */
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);

    }

    /* 4. Optional: Hover Effect */
    .text-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.25);
    }

    /* Custom CSS for the "We Truly Believe In" Section */

    /* Define the primary color (similar to the orange in the image) */
    :root {
        --primary-orange: #fff;
        /* Adjust this color if needed */
        --text-dark-blue: #2a3550;
    }

    .believe-heading {
        color: var(--primary-orange);
        /* color: var(--text-dark-blue); */
        letter-spacing: 1px;
    }

    .belief-title {
        /* color: var(--text-dark-blue); */
        color: var(--primary-orange);
        margin-bottom: 0.5rem;
    }

    .belief-text {
        /* Slightly darker text than default muted for readability */
        color: var(--primary-orange);
    }

    /* Styling for the Icon Circle */
    .icon-circle {
        /* The size of the circle container */
        width: 60px;
        height: 60px;

        /* The color from the image */
        background: linear-gradient(270deg, #E33E83 0%, #350E9B 100%);

        /* Make it a circle */
        border-radius: 50%;

        /* Centering the icon */
        display: inline-flex;
        align-items: center;
        justify-content: center;

        /* Adjust margin for non-text alignment */
        margin-left: auto;
        margin-right: auto;
    }

    .icon-circle i {
        /* Styling for the icon inside the circle */
        color: white;
        font-size: 1.5rem;
    }

    /* Horizontal Divider Styling */
    .believe-divider {
        border: 0;
        height: 1px;
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
        margin-top: 3rem !important;
        /* Ensure space above the line */
    }

    .text-muted {
        color: var(--primary-orange) !important;
    }

    .faq-two .faq-one-accrodion h5 {
        padding: 15px 0px 8px 0px;
    }

    .row {
        --bs-gutter-y: 30px;
    }

    .faq-two {
        position: relative;
        display: block;
        background: transparent;
        padding: 0px 0 0px;
        overflow: hidden;
        z-index: 1;
    }

    .mailtag {
        /* color: #0a58ca; */
        /* background: linear-gradient(270deg, #E33E83 0%, #340E9B 100%); */
        background: linear-gradient(270deg, #5CB0E9 0%, #3D72FC 100%);
        background-clip: text;
        color: transparent;
    }

    .mailtag:hover {
        color: #fff;
    }

    .mailsec {
        border-radius: 25px;
        /* width: 100%; */
        /* margin-top: 20px; */
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(9px);
        padding: 25px 10px;
    }
    
    .career-checkerboard {
  /*background: radial-gradient(circle at top left, #081229, #020617);*/
  color: #fff;
  overflow: hidden;
  position: relative;
}

/* Header */
.career-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00aaff, #00ffaa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.career-subtitle {
  color: #aaa;
  font-size: 1.1rem;
}

/* Card Styles */
.text-box {
  position: relative;
  padding: 2rem 1rem;
  min-height: 200px;
  border-radius: 1rem;
  text-align: center;
  /*font-size: 1.1rem;*/
  font-weight: 500;
  color: #fff;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  z-index: 1;
}

.glass-effect {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.05);
}

/* Glow behind card */
.text-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.text-box:hover::before {
  opacity: 1;
}

/* Hover Motion */
.text-box:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.25);
}

/* Icon Style */
.icon-wrapper {
  font-size: 2.5rem;
  color: #00e5ff;
  margin-bottom: 1rem;
  z-index: 2;
  position: relative;
}

/* Optional Glow Animation */
@keyframes softPulse {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.1); }
}

.text-box::before {
  animation: softPulse 6s ease-in-out infinite;
}

/* Background Shape (optional decorative) */
.process-one__bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('assets/images/shapes/process-one-bg-shape.png');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}
/*=============career pge new style css========================*/
.career-checkerboard{
    position:relative;
    overflow:hidden;
    /*background:*/
    /*radial-gradient(circle at 20% 20%, rgba(92,176,233,.12), transparent 35%),*/
    /*radial-gradient(circle at 80% 80%, rgba(227,62,131,.12), transparent 35%),*/
    /*linear-gradient(180deg,#070b17,#0d1328);*/
}

.career-checkerboard::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:linear-gradient(135deg,#5CB0E9,#3D72FC);
    filter:blur(180px);
    opacity:.15;
    top:-150px;
    left:-150px;
    animation:floatGlow 12s ease-in-out infinite;
}

.career-checkerboard::after{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background:linear-gradient(135deg,#E33E83,#340E9B);
    filter:blur(150px);
    opacity:.15;
    bottom:-100px;
    right:-100px;
    animation:floatGlow 10s ease-in-out infinite alternate;
}

@keyframes floatGlow{
    0%{
        transform:translate(0,0);
    }
    100%{
        transform:translate(50px,30px);
    }
}
/*==============================*/

/*========================*/
.text-box{
    position:relative;
    overflow:hidden;

    min-height:250px;

    background:rgba(255,255,255,.05);
    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    transition:.5s;

    color:#fff;
}

.text-box::before{
    content:'';
    position:absolute;
    inset:0;

    background:
    linear-gradient(
    135deg,
    rgba(92,176,233,.15),
    rgba(227,62,131,.15)
    );

    opacity:0;
    transition:.5s;
}

.text-box:hover{
    transform:translateY(-15px);
    border-color:#5CB0E9;

    box-shadow:
    0 0 30px rgba(92,176,233,.3),
    0 0 60px rgba(227,62,131,.15);
}

.text-box:hover::before{
    opacity:1;
}
/*==================================*/
.icon-wrapper{
    width:80px;
    height:80px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:34px;

    background:
    linear-gradient(
    135deg,
    #5CB0E9,
    #3D72FC
    );

    color:#fff;

    margin-bottom:20px;

    animation:pulseGlow 4s infinite;
}

@keyframes pulseGlow{
    0%,100%{
        box-shadow:0 0 10px rgba(92,176,233,.4);
    }

    50%{
        box-shadow:
        0 0 25px rgba(92,176,233,.8),
        0 0 50px rgba(92,176,233,.4);
    }
}
/*======================================*/
.value-box{
    height:100%;

    padding:35px;

    border-radius:24px;

    background:
    rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    transition:.5s;
}

.value-box:hover{
    transform:translateY(-10px);

    border-color:#E33E83;

    box-shadow:
    0 20px 50px rgba(227,62,131,.15);
}
/*=============================*/
.accrodion{
    background:
    rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    border-radius:20px;

    margin-bottom:25px;

    transition:.4s;
}

.accrodion:hover{
    transform:translateY(0px);

    border-color:#5CB0E9;

    box-shadow:
    0 15px 40px rgba(92,176,233,.15);
}

.accrodion-title h4{
    color:#fff;
}

.accrodion-title span{
    color:#5CB0E9 !important;
}
/*========================================*/
.thm-btn{
    background:
    linear-gradient(
    135deg,
    #5CB0E9,
    #3D72FC
    );

    border:none;

    border-radius:50px;

    overflow:hidden;

    position:relative;
}

.thm-btn::before{
    content:'';

    position:absolute;

    width:50px;
    height:200%;

    background:
    rgba(255,255,255,.3);

    top:-50%;
    left:-100px;

    transform:rotate(25deg);

    transition:.7s;
}

.thm-btn:hover::before{
    left:120%;
}
/*====================================*/
.mailsec{
    padding:50px;

    border-radius:30px;

    background:
    rgba(255,255,255,.06);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    transition:.5s;
}

.mailsec:hover{
    transform:translateY(-10px);

    box-shadow:
    0 0 40px rgba(92,176,233,.2);
}
/*======================================*/
