 /* =========================================================
           CAREER PAGE VARIABLES
        ========================================================= */
        .tb-carr-page {
            --tb-carr-black: #000000;
            --tb-carr-dark: #070707;
            --tb-carr-dark-2: #0c0c0c;
            --tb-carr-white: #ffffff;
            --tb-carr-text: #d0d0d0;
            --tb-carr-muted: #858585;
            --tb-carr-border: #202020;
            --tb-carr-border-light: #303030;
            color: #ffffff;
            font-family: "Poppins", sans-serif;
            overflow: hidden;
        }

        /* =========================================================
           COMMON SECTION
        ========================================================= */
        .tb-carr-section {
            position: relative;
            padding: 5px 0 20px;
        }

        /* Subtle background grid */
        .tb-carr-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
            background-size: 70px 70px;
            pointer-events: none;
            opacity: 0.7;
        }

        /* =========================================================
           ABOUT COMPANY
        ========================================================= */
        .tb-carr-about {
            position: relative;
        }

        /* Image wrapper */
        .tb-carr-about-image {
            position: relative;
            min-height: 500px;
            height: 100%;
            overflow: hidden;
            border-radius: 20px;
            background: #070707;
            border: 1px solid #202020;
            box-shadow: 0 30px 70px rgba(0,0,0,0.65);
        }

        /* Image */
        .tb-carr-about-image img {
            width: 100%;
            height: 100%;
            min-height: 500px;
            object-fit: cover;
            display: block;
            transition: transform 1s ease, filter 0.7s ease;
        }

        .tb-carr-about-image:hover img {
            transform: scale(1.06);
            filter: brightness(1.08);
        }

        /* Image overlay */
        .tb-carr-about-image::after {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        /* Image corner decoration */
        .tb-carr-about-image::before {
            content: "";
            position: absolute;
            right: 22px;
            bottom: 22px;
            width: 75px;
            height: 75px;
            z-index: 2;
            opacity: 0.7;
        }

        /* =========================================================
           ABOUT CONTENT
        ========================================================= */
        .tb-carr-about-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding-left: 10px;
        }

        /* Small heading */
        .tb-carr-subtitle {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            color: #ffffff;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            margin-bottom: 18px;
        }

        .tb-carr-subtitle::before {
            content: "";
            width: 35px;
            height: 1px;
            background: #ffffff;
        }

        /* About heading */
        .tb-carr-about-title {
            color: #ffffff;
            font-size: clamp(34px, 4vw, 54px);
            line-height: 1.15;
            font-weight: 700;
            margin-bottom: 25px;
        }

        /* Underline */
        .tb-carr-about-title span {
            position: relative;
            color: #ffffff;
        }

        .tb-carr-about-title span::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 100%;
            height: 2px;
            background: #ffffff;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .tb-carr-about-content:hover .tb-carr-about-title span::after {
            transform: scaleX(1);
        }

        /* About paragraphs */
        .tb-carr-about-text {
            color: #999999;
            font-size: 16px;
            line-height: 1.9;
            margin-bottom: 18px;
        }

        /* =========================================================
           COMPANY FEATURES
        ========================================================= */
        .tb-carr-about-features {
            display: grid;
            grid-template-columns: repeat(2, max-content);
            gap: 12px;
            margin-top: 18px;
        }

        .tb-carr-feature {
            display: flex;
            align-items: center;
            gap: 9px;
            padding: 10px 15px;
            background: #080808;
            border: 1px solid #222222;
            border-radius: 7px;
            color: #999999;
            font-size: 16px;
            transition: all 0.35s ease;
        }

        .tb-carr-feature i {
            color: #ffffff;
            font-size: 12px;
        }

        .tb-carr-feature:hover {
            color: #ffffff;
            background: #111111;
            border-color: #ffffff;
            transform: translateY(-3px);
        }

        /* =========================================================
           JOB SECTION HEADING
        ========================================================= */
        .tb-carr-heading {
            position: relative;
            z-index: 2;
            text-align: center;
            margin-bottom: 55px;
        }

        .tb-carr-heading .tb-carr-subtitle {
            justify-content: center;
        }

        .tb-carr-heading-title {
            color: #ffffff;
            font-size: clamp(32px, 4vw, 46px);
            font-weight: 700;
            margin-bottom: 15px;
        }

        .tb-carr-heading-title span {
            color: #ffffff;
        }

        .tb-carr-heading-text {
            max-width: 650px;
            margin: auto;
            color: #777777;
            font-size: 16px;
            line-height: 1.9;
        }

        /* =========================================================
           JOB CARDS
        ========================================================= */
        .tb-carr-job-card {
            position: relative;
            z-index: 2;
            height: 100%;
            padding: 20px 30px 10px;
            background: linear-gradient(145deg, #0c0c0c, #050505);
            border: 1px solid #202020;
            border-radius: 16px;
            overflow: hidden;
            transition: transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
        }

        /* Top line */
        .tb-carr-job-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: #ffffff;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .tb-carr-job-card:hover::before {
            transform: scaleX(1);
        }

        /* Circle decoration */
        .tb-carr-job-card::after {
            content: "";
            position: absolute;
            right: -60px;
            bottom: -60px;
            width: 120px;
            height: 120px;
            border: 1px solid #1b1b1b;
            border-radius: 50%;
            transition: transform 0.5s ease, border-color 0.5s ease;
        }

        .tb-carr-job-card:hover::after {
            transform: scale(1.5);
            border-color: #333333;
        }

        /* Hover */
        .tb-carr-job-card:hover {
            transform: translateY(-9px);
            border-color: #3a3a3a;
            box-shadow: 0 25px 60px rgba(0,0,0,0.75);
        }

        /* =========================================================
           JOB ICON
        ========================================================= */
        .tb-carr-job-icon {
            position: relative;
            z-index: 2;
            width: 58px;
            height: 58px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #111111;
            border: 1px solid #292929;
            border-radius: 12px;
            color: #ffffff;
            font-size: 19px;
            margin-bottom: 22px;
            transition: all 0.4s ease;
        }

        .tb-carr-job-card:hover .tb-carr-job-icon {
            background: #ffffff;
            color: #000000;
            transform: translateY(-4px) rotate(3deg);
        }

        /* =========================================================
           JOB CONTENT
        ========================================================= */
        .tb-carr-job-title {
            position: relative;
            z-index: 2;
            color: #ffffff;
            font-size: 19px;
            font-weight: 600;
            margin-bottom: 13px;
        }

        .tb-carr-job-description {
            position: relative;
            z-index: 2;
            color: #777777;
            font-size: 16px;
            line-height: 1.85;
            margin-bottom: 23px;
        }

        /* =========================================================
           JOB DETAILS
        ========================================================= */
        .tb-carr-job-details {
            position: relative;
            z-index: 2;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            padding-bottom: 22px;
            
        }

        .tb-carr-job-detail {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 7px 11px;
            background: #0e0e0e;
            border: 1px solid #202020;
            border-radius: 5px;
            color: #888888;
            font-size: 15px;
            transition: all 0.3s ease;
        }

        .tb-carr-job-detail i {
            color: #ffffff;
            font-size: 10px;
        }

        .tb-carr-job-detail:hover {
            color: #ffffff;
            border-color: #555555;
        }

        /* =========================================================
           FORM
        ========================================================= */
        .tb-carr-form-group {
            margin-bottom: 18px;
        }

        .tb-carr-form-label {
            display: block;
            color: #bbbbbb;
            font-size: 16px;  /* Updated from 11px */
            font-weight: 500;
            margin-bottom: 8px;
        }

        .tb-carr-form-control {
            width: 100%;
            height: 48px;
            padding: 10px 14px;
            background: #000000;
            border: 1px solid #282828;
            border-radius: 7px;
            color: #ffffff;
            outline: none;
            font-family: "Poppins", sans-serif;
            font-size: 12px;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .tb-carr-form-control::placeholder {
            color: #4d4d4d;
        }

        .tb-carr-form-control:focus {
            border-color: #ffffff;
            box-shadow: 0 0 0 3px rgba(255,255,255,0.05);
        }

        /* Select options */
        .tb-carr-form-control option {
            background: #000000;
            color: #ffffff;
        }

        /* File */
        .tb-carr-form-control[type="file"] {
            padding: 11px 12px;
            color: #777777;
        }

        .tb-carr-form-control[type="file"]::file-selector-button {
            border: none;
            background: #111111;
            color: #ffffff;
            padding: 5px 10px;
            margin-right: 8px;
            border-radius: 4px;
            cursor: pointer;
        }

        /* Textarea */
        .tb-carr-textarea {
            height: 105px;
            resize: vertical;
        }

        /* =========================================================
           SUBMIT BUTTON
        ========================================================= */
        .tb-carr-submit-btn {
            width: 100%;
            height: 50px;
            border: 1px solid #ffffff;
            border-radius: 7px;
            background: #ffffff;
            color: #000000;
            font-family: "Poppins", sans-serif;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.35s ease;
        }

        .tb-carr-submit-btn:hover {
            background: transparent;
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255,255,255,0.06);
        }

        /* =========================================================
           ANIMATIONS
        ========================================================= */
        .tb-carr-animate {
            animation: tb-carr-fade-up 0.8s ease both;
        }

        .tb-carr-delay-1 { animation-delay: 0.15s; }
        .tb-carr-delay-2 { animation-delay: 0.30s; }
        .tb-carr-delay-3 { animation-delay: 0.45s; }

        @keyframes tb-carr-fade-up {
            from {
                opacity: 0;
                transform: translateY(35px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* =========================================================
           RESPONSIVE
        ========================================================= */
        @media (max-width: 1199px) {
            .tb-carr-about-content {
                padding-left: 35px;
            }
        }

        @media (max-width: 991px) {
            .tb-carr-section {
                padding: 75px 0;
            }
            .tb-carr-about-image,
            .tb-carr-about-image img {
                min-height: 420px;
            }
            .tb-carr-about-content {
                padding: 40px 0 0;
            }
            .tb-carr-about-title {
                font-size: 40px;
            }
            .tb-carr-about-image {
                width: 100%;
            }
            .tb-carr-about-content {
                padding-left: 0;
            }
            .tb-carr-job-card {
                margin-bottom: 0;
            }
        }

        @media (max-width: 767px) {
            .tb-carr-section {
                padding: 55px 0;
                overflow: hidden;
            }
            .tb-carr-about-image,
            .tb-carr-about-image img {
                min-height: 330px;
                height: 330px;
            }
            .tb-carr-about-content {
                padding-top: 35px;
            }
            .tb-carr-about-title {
                font-size: 31px;
            }
            .tb-carr-about-text {
                font-size: 12px;
            }
            .tb-carr-about-features {
                grid-template-columns: 1fr 1fr;
            }
            .tb-carr-job-card {
                padding: 25px;
            }
            .tb-carr-about-image,
            .tb-carr-about-image img {
                min-height: 300px;
                height: 300px;
            }
            .tb-carr-about-content {
                padding-top: 30px;
            }
            .tb-carr-about-title {
                font-size: clamp(28px, 8vw, 36px);
            }
            .tb-carr-about-features {
                grid-template-columns: 1fr;
                width: 100%;
            }
            .tb-carr-feature {
                width: 100%;
            }
            .tb-carr-heading {
                margin-bottom: 35px;
            }
            .tb-carr-heading-title {
                font-size: clamp(28px, 8vw, 38px);
            }
            .tb-carr-job-card {
                padding: 22px;
            }
            .tb-carr-job-title {
                font-size: 18px;
            }
            .tb-carr-job-description {
                font-size: 12px;
            }
            .tb-carr-job-details {
                gap: 7px;
            }
            .tb-carr-job-detail {
                font-size: 9px;
                padding: 7px 9px;
            }
        }

        @media (max-width: 480px) {
            .tb-carr-page {
                padding-top: 30px !important;
                padding-bottom: 30px !important;
            }
            .tb-carr-heading {
                margin-top: 30px;
            }
            .tb-carr-job-description {
                font-size: 14px;
            }
            .tb-carr-job-detail {
                font-size: 13px;
            }
            .tb-carr-section {
                padding: 0px 0;
            }
            .tb-carr-about-image,
            .tb-carr-about-image img {
                min-height: 250px;
                height: 250px;
                border-radius: 14px;
            }
            .tb-carr-about-content {
                padding-top: 25px;
            }
            .tb-carr-about-title {
                font-size: 24px;
                line-height: 1.2;
            }
            .tb-carr-about-text {
                font-size: 14px;
                line-height: 1.8;
            }
            .tb-carr-job-card {
                padding: 20px 20px 0px;
                border-radius: 14px;
            }
            .tb-carr-job-details {
                grid-template-columns: 1fr;
            }
            .tb-carr-job-detail {
                justify-content: flex-start;
                width: 100%;
            }
            .gr{
                margin-bottom : 0px !important;
            }
        }

        /* Light mode overrides (if you use body.light) */
        body.light .tb-carr-about-title {
            color: #000;
        }
        body.light .tb-carr-subtitle {
            color: #000;
        }
        body.light .tb-carr-subtitle::before {
            background: #000 !important;
        }
        body.light .tf-text {
            color: #fff;
        }
        
        body.light .tb-carr-about-title span{
             color: #000;
        }
        
        body.light .tb-carr-heading-title{
             color: #000;
        }
        
        body.light .tb-carr-heading-title span{
            color: #000;
        }
        
        body.light .tb-carr-job-description{
            color : #fff;
        }

        @media only screen and (min-width: 1200px) and (max-width: 1319px) {
            .tb-carr-about-title {
                font-size: 35px;
            }
            .tb-carr-about-text {
                font-size: 14px;
            }
            .tb-carr-about-features {
                margin-top: 0px;
            }
            .tb-carr-about-image img {
                min-height: 450px;
            }
            .tb-carr-about-image {
                min-height: 450px;
            }
            .tb-carr-feature {
                font-size: 15px;
            }
            .tb-carr-job-description {
                font-size: 15px;
            }
            .tb-carr-job-details {
                margin-bottom: 0px;
            }
        }




@media only screen and (min-width: 1200px) and (max-width: 1319px){
 
    .tf-feature-section {
  width: 87% !important;
  max-width: 1200px !important;
    }
    .tf-icon-box {
  width: 45px !important;
  height: 45px !important;
    }
    .tf-text {

  font-size: 14px !important;
    }
    .tf-icon-box i {
  font-size: 20px !important;
    }
    
}


:root {
    --theme-color: #000000;
    --theme-color2: #ffffff;
    --theme-color3: #a9a9a9;
}

.tf-feature-section {
    width: 100%;
    max-width: 1370px;
    margin: 30px auto;
    padding: 45px 35px;
    background: #000000;
    border-radius: 28px;
    box-sizing: border-box;
}
/* Container */
.tf-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.tf-feature-card {
    padding: 24px;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;

    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(12px);

    transition: 0.4s ease;

    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

/* Stagger Animation */
.tf-feature-card:nth-child(1) {
    animation-delay: 0.2s;
}

.tf-feature-card:nth-child(2) {
    animation-delay: 0.4s;
}

.tf-feature-card:nth-child(3) {
    animation-delay: 0.6s;
}

/* Animated Border */
.tf-feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;

    background: linear-gradient(
        120deg,
        #ffffff,
        #555555,
        #ffffff
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    opacity: 0;
    transition: 0.4s;
}

/* Subtle Glow */
.tf-feature-card::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.06),
        rgba(255, 255, 255, 0)
    );

    z-index: 0;

    animation: glowMove 6s infinite linear;
}

/* Keep Content Above Overlay */
.tf-feature-card > * {
    position: relative;
    z-index: 1;
}

/* Hover */
.tf-feature-card:hover {
    transform: translateY(-10px) scale(1.02);

    box-shadow:
        0 20px 60px rgba(255, 255, 255, 0.08);
}

.tf-feature-card:hover::before {
    opacity: 1;
}

/* Icon Box */
.tf-icon-box {
    width: 70px;
    height: 70px;

    border-radius: 18px;

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

    background: #ffffff;

    box-shadow:
        0 10px 25px rgba(255, 255, 255, 0.12);

    flex-shrink: 0;

    transition: 0.4s ease;
}

/* Font Awesome Icon */
.tf-icon-box i {
    font-size: 30px;
    color: #000000;

    transition: 0.5s ease;
}

/* Icon Hover */
.tf-feature-card:hover .tf-icon-box {
    background: #000000;
    border: 1px solid #ffffff;

    transform: scale(1.05);
}

.tf-feature-card:hover .tf-icon-box i {
    color: #ffffff;
    transform: rotate(360deg) scale(1.2);
}

/* Content */
.tf-card-content {
    flex: 1;
}

/* Title */
.tf-title {
    font-size: 22px;
    font-weight: 700;

    color: #ffffff;

    margin-bottom: 8px;

    transition: 0.3s;
}

/* Text */
.tf-text {
    color: #a9a9a9;

    font-size: 15px;
    line-height: 1.6;

    margin-bottom: 0;

    transition: 0.3s;
}

/* Hover Text */
.tf-feature-card:hover .tf-title {
    color: #ffffff;
}

.tf-feature-card:hover .tf-text {
    color: #ffffff;
}

/* Glow Animation */
@keyframes glowMove {

    0% {
        transform: translateX(-10%);
    }

    50% {
        transform: translateX(10%);
    }

    100% {
        transform: translateX(-10%);
    }

}

/* Fade Up Animation */
@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* Tablet */
@media (max-width: 992px) {

    .tf-container {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* Mobile */
@media (max-width: 600px) {

    .tf-feature-section {
        padding: 30px 15px;
        border-radius: 20px;
    }

    .tf-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tf-feature-card {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .tf-icon-box {
        width: 60px;
        height: 60px;
        border-radius: 15px;
    }

    .tf-icon-box i {
        font-size: 26px;
    }

    .tf-title {
        font-size: 20px;
    }

    .tf-text {
        font-size: 14px;
        line-height: 1.6;
    }

}

@media only screen and (min-width: 1800px) and (max-width: 1903px){
    
    .tf-feature-section {
    width: 100%;
    max-width: 1580px;
    }
    
    
}