 
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

  :root {
            --primary-color: #0A2342;
            --secondary-color: #4FC3F7;
            --border-color1: #1C355A;
            --border-color2: #4FC3F7;
            --main-heading: #0A2342;
            --sub-heading: #1E88E5;
            --text-color: #333333;
            --section-bg:#F0F8FB;
            --font-family:"Oswald", sans-serif;
            --font-family1:"Montserrat", sans-serif;
        }
        .ptb-80{
            padding:80px 0px;
        }

        .primary_btn{
            background: #1E88E5;
            color: #FFFFFF;
            border: none;
            padding: 7px 20px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            font-family: var(--font-family1);
        }

        .primary_btn:hover{
            background-color: #1565C0;
            color:#fff;
        }

          .secondary_btn{
            border: 1px solid #0A2342;
            color: #000;
            padding: 7px 20px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            margin-right: 5px;
            font-family: var(--font-family1);
        }

        .secondary_btn:hover{
            background-color: #082030;
            color:#fff;
        }
        
        body {
            color: var(--text-color);
            font-family: "Roboto", sans-serif;
        }

        /* Navbar */
        .navbar {
            padding: 1.2rem 0;
            background: white;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }

        .navbar-brand {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-navy) !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #4F5AED 0%, #3640C6 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }

   .nav-link {
    color: #000 !important;
    font-weight: 600;
    padding: 0.5rem 10px !important;
    position: relative;
    transition: color 0.3s;
    font-family: var(--font-family1);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.5px;
}

        .nav-link:hover {
            color: var(--primary-blue) !important;
        }

        .nav-link.active {
            color: var(--primary-blue) !important;
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 1rem;
            right: 1rem;
            height: 2px;
            background: var(--primary-blue);
        }

        /* Dropdown Menu */
        .dropdown-menu {
            border: none;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            border-radius: 12px;
            padding: 12px 0;
            margin-top: 10px;
            min-width: 220px;
        }

        .dropdown-item {
            padding: 10px 24px;
            color: var(--dark-navy);
            font-weight: 500;
            transition: all 0.3s;
        }

        .dropdown-item:hover {
            background: #F4F5F7;
            color: var(--primary-blue);
            padding-left: 30px;
        }

        .dropdown-item i {
            margin-right: 10px;
            width: 20px;
            color: var(--text-gray);
        }

        .dropdown-toggle::after {
            vertical-align: 0.15em;
            margin-left: 0.4em;
        }

        /* Hero Section */
        .hero-section {
            background:#f5f5f5;
            padding: 100px 0 80px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: rgba(79, 90, 237, 0.05);
            border-radius: 50%;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 500px;
            height: 500px;
            background: rgba(79, 90, 237, 0.03);
            border-radius: 50%;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    font-family: var(--font-family);
    text-transform: uppercase;
}

        .hero-title .highlight {
            color: var(--secondary-color);
        }

        .hero-description {
            font-size: 1.1rem;
            color: var(--text-color);
            line-height: 1.8;
            margin-bottom: 40px;
            max-width: 550px;
        }

        /* Search Box */
        .search-box {
            background: white;
            border-radius: 0px;
            padding: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            align-items: center;
            margin-bottom: 30px;
        }

.search-input-group {
    flex: 1;
    min-width: 180px;
    display: flex;
    align-items: center;
    padding: 7px 16px;
    border: 1px solid #E0E6F7;
    border-radius: 0px;
    background: #F8F9FC;
    transition: all 0.3s;
}

        .search-input-group:focus-within {
            border-color: var(--primary-color);
            background: white;
        }

        .search-input-group i {
            color: var(--text-color);
            margin-right: 12px;
        }

        .search-input-group select,
        .search-input-group input {
            border: none;
            background: transparent;
            color: var(--text-color);
            font-weight: 500;
            width: 100%;
            outline: none;
        }

        .search-input-group select option {
            background: white;
        }

        /* Popular Searches */
        .popular-searches {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .popular-searches span {
            color: var(--text-gray);
            font-weight: 500;
        }

        .popular-searches a {
            color: var(--dark-navy);
            text-decoration: none;
            padding: 6px 0;
            border-bottom: 1px solid transparent;
            transition: all 0.3s;
            font-weight: 500;
        }

        .popular-searches a:hover {
            color: var(--primary-blue);
            border-bottom-color: var(--primary-blue);
        }

        /* Hero Images */
        .hero-images {
            position: relative;
            z-index: 2;
        }

        .image-card {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            border: 8px solid white;
            transition: transform 0.3s;
        }

        .image-card:hover {
            transform: translateY(-10px);
        }

        .image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /*.image-card-1 {
            position: relative;
            margin-bottom: 30px;
        }*/

       /* .image-card-2 {
            position: absolute;
            bottom: -50px;
            right: -30px;
            width: 90%;
        }*/

        .image-card-2 {
    position: absolute;
    top: -240px;
    right: 0px;
    width: 90%;
}

        /* Decorative Dots */
        .dot-pattern {
            position: absolute;
            width: 120px;
            height: 120px;
            background-image: radial-gradient(circle, var(--primary-blue) 2px, transparent 2px);
            background-size: 15px 15px;
            opacity: 0.15;
        }

        .dot-pattern-1 {
            top: 15%;
            right: 5%;
        }

        .dot-pattern-2 {
            bottom: 10%;
            left: 0%;
        }

        @media (max-width: 991px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .image-card-2 {
                position: relative;
                bottom: 0;
                right: 0;
                width: 100%;
                margin-top: 20px;
            }

            .search-box {
                flex-direction: column;
            }

            .search-input-group {
                width: 100%;
            }

            .btn-search {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-section {
                padding: 60px 0 40px 0;
            }

            .navbar-brand {
                font-size: 1.2rem;
            }

            .logo-icon {
                width: 35px;
                height: 35px;
            }
        }

       /*category*/
       /* কার্ডের সাধারণ স্টাইল ও হোভার এফেক্ট অপরিবর্তিত */
.category-section{
background: var(--section-bg);
background: #f5f5f5!important;
}

.category-card {
     transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: pointer;
    background-color: #ffffff;
    text-align: left;
    border-radius: 10px;
    box-shadow: none;
    border: 1px solid var(--border-color1);
}
        .category-card:hover {
            transform: translateY(-5px); 
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; 
        }

        
        .category-icon {
            flex-shrink: 0; 
            display: inline-flex;
            justify-content: center;
            align-items: center;
            /*width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #f0f0f0; 
            color: #007bff; */
            margin-right: 15px;
        }

        .category-icon img {
    width: 40px !important;
    height: 40px !important;
}

        /* টেক্সট অংশ */
        .category-text {
            flex-grow: 1; /* বাকি জায়গা নেবে */
        }
        .category-text h5 {
            font-size: 15px;
            margin-bottom: 2px;
            line-height: 1.2;
        }
        .category-text p {
            font-size: 0.9rem;
            margin-bottom: 0;
        }

        .slick-slide { padding: 0 10px; }
        .category-slider .slick-prev, .category-slider .slick-next {
            top: 50%;
            transform: translate(0, -50%);
            z-index: 10;
        }

 .category-slider .slick-prev {
    left: 91%;
    top: -45px;
}

.category-slider .slick-next {
    right: 38px;
    top: -46px;
}

.category-slider .slick-prev i, .category-slider .slick-next i {
    font-size: 30px;
    color: #333;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: var(--primary-color);
    border-radius: 50px;
    font-size: 15px;
    color:#fff;
}
       /*category*/

       /*company*/
       /* Custom Styles for the card */
       .recruiter-section{
        background: var(--section-bg);
        background: #f5f5f5;
       }
       .company-card {
    border: 1px solid var(--border-color1);
    border-radius: 10px;
    padding: 15px;
    transition: box-shadow 0.3s ease;
    height: 100%;
     background-color: #fff; 
}
        .company-card:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* Enhanced shadow on hover */
        }
        .company-logo {
            width: 40px;
            height: 40px;
            border-radius: 6px;
            background-color: #f0f4f8; /* Placeholder background color */
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            flex-shrink: 0;
        }
.company-logo img {
    border-radius: 50px;
    width: 50px;
    height: 50px;
}
  .company-name {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    font-family: var(--font-family1);
}

.company-rating i {
    color: #ffc107;
    margin-right: 2px;
    font-size: 12px;
}
        .rating-count {
            font-size: 0.9rem;
            color: #666;
            font-weight: 500;
        }
        .card-meta {
            font-size:12px;
            color: #000;
            margin-top: 10px;
            display: flex;
            align-items: center;
            font-family: var(--font-family1);
        }
        .card-meta span {
            margin-right: 15px;
            display: flex;
            align-items: center;
        }
        .card-meta i {
            margin-right: 5px;
        }

        /* Responsive Grid Adjustments */
        /* For 4 cards per row (on large screens and up) */
        @media (min-width: 992px) {
            .col-lg-3-custom {
                width: 25%;
            }
        }
        /* For 3 cards per row (on medium screens) */
        @media (min-width: 768px) and (max-width: 991.98px) {
            .col-md-4-custom {
                width: 33.333333%;
            }
        }
        /* For 2 cards per row (on small screens) */
        @media (min-width: 576px) and (max-width: 767.98px) {
            .col-sm-6-custom {
                width: 50%;
            }
        }
        /* For 1 card per row (on extra small screens) */
        @media (max-width: 575px) {
            .col-xs-12-custom {
                width: 100%;
            }
    .category-slider .slick-next {
    right: 34px;
    top: -40px;
}

 .category-slider .slick-prev {
    left: 68%;
    top: -40px;
}
        }
       /*company*/

      /* footer*/

        /* Main Footer Styling */
        .jobbox-footer {
            background-color: var(--primary-color);
            padding-top: 50px;
            color: var(--text-color-light);
            /* Optional: Add background texture from the image */
            /* background-image: url('path/to/grid/texture.png'); */
        }

        /* Top Section Styling */
        .footer-top {
            padding-bottom: 30px;
        }
        .footer-logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        .footer-description {
            font-size: 0.9rem;
            color: #fff;
            line-height: 1.6;
        }

        /* Column Headings */
        .footer-heading {
            font-size: 1.2rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 20px;
        }

        /* Links Styling */
        .footer-link-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-link-list li {
            margin-bottom: 5px;
        }
        .footer-link-list a {
            color: #fff;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.2s;
        }
        .footer-link-list a:hover {
            color:#fff;
        }

        /* Social Icons */
.social-icons i {
    width: 40px !important;
    height: 40px;
    line-height: 40px;
    border-radius: 50px;
    border: 1px solid #fff;
    text-align: center;
}
        .social-icons a {
            color: #fff;
            font-size: 1.1rem;
            margin-right: 5px;
            transition: color 0.2s;
        }
        .social-icons a:hover {
            color: #fff;
        }

        /* Contact Info Styling (Matching the image) */
        .contact-info-block {
            margin-bottom: 30px;
            display: flex;
            align-items: flex-start;
        }
        .contact-icon-circle {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
            border:1px solid #fff;
        }
        .contact-icon-circle i {
            color: #fff;
            font-size: 12px;
        }
        .contact-text-label {
            font-size: 0.9rem;
            font-weight: 500;
            color:#fff;
            line-height: 1.2;
            margin-bottom: 2px;
        }
        .contact-text-value {
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
        }

        /* Bottom Footer (Copyright and Utility Links) */
        .footer-bottom {
            border-top: 1px solid #fff; /* Darker line for contrast */
            padding: 20px 0;
            font-size: 0.9rem;
            color:#fff;
        }
        .footer-bottom a {
            color: #fff;
            text-decoration: none;
            margin-left: 20px;
            transition: color 0.2s;
        }
        .footer-bottom a:hover {
            color: #fff;
        }

        /* Responsive Adjustments */
        @media (max-width: 991.98px) {
            .footer-col {
                margin-bottom: 30px;
            }
        }
      /* footer*/


      /*about*/
      /* Define the primary purple color */

        .about-us-section {
            padding: 80px 0;
            background-color: #f5f5f5; /* White background for the whole section area */
        }

        /* --- Left Column: Image and Overlays --- */
        .image-container {
            position: relative;
            height: 100%;
/*            min-height: 450px; */
        }
        .image-container img {
            width: 100%;
            height:650px;
            object-fit: cover;
            border-radius: 12px; /* Slight border-radius for the image */
        }

        /* Styles for the Overlapping Stat Boxes */
        .stat-box {
            position: absolute;
            background-color: var(--primary-purple);
            color: white;
            padding: 15px 20px;
            border-radius: 8px;
            font-weight: 600;
            z-index: 10;
        }

        /* 85% Sales Growth (Top Right) */
        .stat-box.top-right {
            top: 20px;
            right: -10px; /* Overlap effect */
            width: 150px;
            font-size: 0.9rem;
        }
        .stat-box.top-right i {
            font-size: 1.5rem;
            margin-right: 5px;
        }

        /* 120% Engagement (Bottom Left) */
        .stat-box.bottom-left {
            bottom: 20px;
            left: 20px;
            width: 150px;
            font-size: 1rem;
        }

        /* 10K+ Satisfied Members (Bottom Center) */
        .stat-box.bottom-center {
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 85%;
            padding: 15px 20px;
        }
        .stat-box.bottom-center .member-avatars {
            display: flex;
            align-items: center;
        }
        .stat-box.bottom-center .member-avatars img {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            border: 2px solid white;
            margin-left: -10px; /* Overlap avatars */
            object-fit: cover;
        }
        .stat-box.bottom-center .member-avatars .more-members {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background-color: white;
            color: var(--primary-purple);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            margin-left: -10px;
            border: 2px solid white;
        }
        .stat-box.bottom-center .stat-text {
            font-size: 1.1rem;
            font-weight: 700;
            margin-right: 15px;
        }


        /* --- Right Column: Text and Vision/Mission Boxes --- */
        .about-heading {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--primary-purple);
            margin-bottom: 10px;
        }
        .about-heading i {
            color: #ffc107; /* Star/sparkle icon color */
            margin-right: 5px;
        }
        .main-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #212529;
            line-height: 1.2;
            margin-bottom: 20px;
            font-family: var(--font-family);
        }
        .main-title .highlight {
            color: var(--secondary-color);
        }
        .about-description {
            font-size: 1rem;
            color: #6c757d;
            margin-bottom: 30px;
        }


        .vm-box {
            background-color:#fff;
            padding: 30px;
            border-radius: 12px;
            height: 100%;
        }
        .vm-box .vm-icon-circle {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            border: 1px solid #e9ecef;
        }
        .vm-box .vm-icon-circle i {
            color: var(--primary-purple);
            font-size: 1.2rem;
        }
        .vm-box .vm-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 10px;
        }
        .vm-box .vm-text {
            font-size: 0.95rem;
            color: #6c757d;
        }

        /* More About Us Button */
        .more-about-btn {
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: background-color 0.2s;
            margin-top: 30px;
            background: #1E88E5;
        }
        .more-about-btn:hover {
            background-color: #0056b3;
            color: white;
        }

        /* Responsive adjustments */
        @media (max-width: 991.98px) {
            .image-container {
                margin-bottom: 50px;
            }
            .main-title {
                font-size: 2rem;
            }
            .stat-box.top-right {
                right: 50px;
            }
        }
      /*about*/

     /* job section*/
     /* Card Container Styling */
        .job-card {
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            padding: 20px;
            transition: border 0.3s, box-shadow 0.3s;
            background-color: #fff;
            height: 100%; /* Ensures cards in a row have equal height */
            display: flex;
            flex-direction: column;
        }
        .job-card:hover {
            border-color: var(--primary-blue);
            box-shadow: 0 4px 15px rgba(51, 102, 255, 0.1);
        }

        /* Company Info Section */
        .company-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        .company-logo1 {
            width: 45px;
            height: 45px;
            border-radius: 8px;
            background-color: #fff;
            margin-right: 15px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .company-logo1 img {
            width: 100%;
            height: 100%;
/*            object-fit: contain;*/
            border-radius: 50px;
        }
        .company-details .location {
            font-size:12px;
            color: var(--text-muted);
            margin-top: -3px;
            font-family: var(--font-family1);
        }

        /* Job Title and Metadata */
        .job-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-family: var(--font-family1);
}
.job-title a{
    text-decoration: none;
     color: var(--secondary-color);
}
        .job-meta {
            font-size:12px;
            color: var(--text-muted);
            margin-bottom: 15px;
        }
        .job-meta span {
            margin-right: 15px;
        }

        /* Job Description */
        .job-description {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.5;
            margin-bottom: 20px;
            flex-grow: 1; /* Pushes the salary/button to the bottom */
        }

        /* Skill Tags */
        .skill-tags {
            margin-bottom: 25px;
        }
        .skill-tag {
            display: inline-block;
            background-color: #EFF3FC;
            color: #000;
            padding: 5px 12px;
            border-radius: 6px;
            font-size: 0.85rem;
            margin-right: 8px;
        }

        /* Footer Section (Salary and Button) */
        .card-footer-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid #f0f0f0;
        }
        .salary-info {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-blue);
        }
        .salary-info small {
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--text-muted);
        }
        .apply-btn {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s;
    border: none;
    font-size: 12px;
}
        .apply-btn:hover {
            background-color: #0056b3;
            color: white;
        }
     /* job section*/


    /* job detail*/

        .job-details-page {
            padding: 50px 0;
            background-color: #fff;
        }

        /* --- Job Header Section --- */
        .job-header-card {
            border-bottom: 1px solid #e9ecef;
            padding-bottom: 30px;
            margin-bottom: 30px;
        }
        .company-logo-large {
            width: 70px;
            height: 70px;
            border-radius: 12px;
            margin-right: 20px;
            background-color: #f0f8ff;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
       /* .job-title {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-color);
            margin-bottom: 5px;
        }*/
        .company-name-header {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 10px;
        }
        .job-meta-header span {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin-right: 20px;
        }
        .job-meta-header i {
            color: var(--primary-blue);
            margin-right: 5px;
        }

        /* --- Main Content (Left Column) --- */
        .content-section h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #f0f0f0;
        }
        .content-section p {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text-muted);
            margin-bottom: 25px;
        }
        .content-section ul {
            padding-left: 20px;
            list-style: none;
        }
        .content-section ul li {
            position: relative;
            margin-bottom: 10px;
            padding-left: 20px;
            font-size: 1rem;
            color: var(--text-muted);
        }
        .content-section ul li::before {
            content: "\f058"; /* Check circle icon from Font Awesome */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: var(--primary-blue);
            position: absolute;
            left: 0;
            top: 2px;
        }

        /* --- Sidebar (Right Column) --- */
        .sidebar-card {
            background-color: var(--sidebar-bg);
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            /* Sticky positioning for desktop */
            position: sticky;
            top: 20px; 
        }
        .sidebar-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px dashed #e9ecef;
        }
        .sidebar-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        .sidebar-label {
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .sidebar-value {
            font-size: 1rem;
            font-weight: 600;
            color: var(--primary-blue);
        }
        .sidebar-value.location-value {
             color: var(--text-color);
        }

        .apply-now-btn {
            width: 100%;
            padding: 12px;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 8px;
            margin-top: 20px;
        }

        /* Responsive adjustments */
        @media (max-width: 991.98px) {
            .sidebar-card {
                position: static; /* Remove sticky on mobile */
            }
        }
    /* job detail*/


   



.stats-card {
    background: #f5f5f5;
    border-radius: 0px;
    padding: 20px 10px;
    text-align: center;
    margin-bottom: 10px;
    border: 1px solid #f5f5f5;
}
        
        .stats-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}
        
   .stats-number {
    font-size: 25px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}
        
        .stats-label {
            color: #6c757d;
            font-size: 16px;
        }
        
        .main-image {
            width: 100%;
            height: 510px;
            object-fit: cover;
            border-radius: 10px;
            margin-top:-10px;
        }
        
        .section-tag {
            background: #fff3e6;
            color: #8b4513;
            padding: 8px 20px;
            border-radius: 20px;
            display: inline-block;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 20px;
        }
        
       .main-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000;
    font-family: var(--font-family);
}
        
        .description {
            color: #6c757d;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 30px;
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 0px;
            font-size: 16px;
            color: #000;
        }
        
        .feature-item i {
            background: #000;
            color: #fff;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            font-size: 12px;
        }
        
        .cta-button {
            background: #ff8800;
            color: #fff;
            padding: 15px 35px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .cta-button:hover {
            background: #e67700;
            transform: translateY(-2px);
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        @media (max-width: 768px) {
            .main-heading {
                font-size: 32px;
            }
            
            .feature-grid {
                grid-template-columns: 1fr;
            }
        }


       /* testimonial*/
       .testimonial-section {
            padding: 80px 0;
        }
        
        .section-tag {
            background: #fff3e6;
            color: #8b4513;
            padding: 8px 24px;
            border-radius: 20px;
            display: inline-block;
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 25px;
        }
        
        .section-title {
            font-size: 52px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #000;
        }
        
        .section-description {
            color: #6c757d;
            font-size: 18px;
            line-height: 1.6;
            max-width: 700px;
            margin-bottom: 50px;
        }
        
        .carousel-controls {
            display: flex;
            gap: 15px;
        }
        
        .carousel-btn {
            width: 50px;
            height: 50px;
            background: #fff3e6;
            border: none;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #000;
            font-size: 20px;
        }
        
        .carousel-btn:hover {
            background: #ff8800;
            color: #fff;
            transform: translateY(-2px);
        }
        
        .testimonial-wrapper {
            display: flex;
            gap: 20px;
            align-items: stretch;
        }
        
        .testimonial-card {
           /* background: #f8f9fa;
            border-radius: 16px;
            padding: 40px;*/
            flex: 1;

            /*display: flex;
            flex-direction: column;
            border: 1px solid #e9ecef;*/
        }
        
        .testimonial-image-wrapper {
            flex: 1;
/*            min-height: 450px;*/
        }
        
        .stars {
            display: flex;
            gap: 8px;
            margin-bottom: 30px;
        }
        
        .star {
            color: #ff8800;
            font-size: 24px;
        }
        
        .testimonial-text {
            color: #6c757d;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 30px;
            flex-grow: 1;
        }
        
        .client-name {
            font-size: 24px;
            font-weight: 700;
            color: #000;
            margin-bottom: 8px;
        }
        
        .client-position {
            color: #6c757d;
            font-size: 16px;
        }
        
        .testimonial-image {
            width: 100%;
            height:300px;
            object-fit: cover;
            border-radius: 20px;
        }
        
        .carousel-item {
            transition: transform 0.6s ease-in-out;
        }
        
.single-testimonial {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    border:1px solid;
}
        
        @media (max-width: 992px) {
            .single-testimonial {
                flex-direction: column;
            }
            
            .testimonial-card,
            .testimonial-image-wrapper {
                flex: unset;
                width: 100%;
            }
            
            .testimonial-image-wrapper {
                min-height: 300px;
            }
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 32px;
            }
            
            .testimonial-card {
                padding: 30px;
            }
        }
       /* testimonial*/


/*blog section*/
  .blog-section {
           padding:60px 0px;
           background: #f5f5f5;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-header h2 {
            font-size: 42px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 10px;
        }
        
        .section-header p {
            font-size: 18px;
            color: #6c757d;
        }
        
        .blog-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            margin: 15px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            padding:10px!important;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }
        
        .blog-image {
            width: 100%;
            height: 260px;
            object-fit: cover;
        }
        
        .blog-content {
            padding: 10px 0px;
        }
        
        .blog-tag {
            display: inline-block;
            background: #e6f0ff;
            color: #0066ff;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .blog-title {
            font-size: 16px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 15px;
            line-height: 1.4;
        }
        
        .blog-excerpt {
            font-size: 15px;
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .blog-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 15px;
            border-top: 1px solid #e9ecef;
        }
        
        .author-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #e9ecef;
        }
        
        .author-details {
            display: flex;
            flex-direction: column;
        }
        
        .author-name {
            font-size: 14px;
            font-weight: 600;
            color: #1a1a2e;
        }
        
        .post-date {
            font-size: 13px;
            color: #6c757d;
        }
        
        .read-time {
            font-size: 13px;
            color: #6c757d;
        }
        
        /* Slick Slider Custom Styles */
        .blog-section .slick-prev, .blog-section .slick-next {
            width: 45px;
            height: 45px;
            background: white !important;
            border-radius: 50%;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 10;
        }
        
        .blog-section .slick-prev:before, .blog-section .slick-next:before {
            color: #1a1a2e !important;
            font-size: 20px;
        }
        
        .blog-section .slick-prev {
            left: -60px;
        }
        
        .blog-section .slick-next {
            right: -60px;
        }
        
        .blog-section .slick-prev:hover, .blog-section .slick-next:hover {
            background: #0066ff !important;
        }
        
        .blog-section .slick-prev:hover:before, .blog-section .slick-next:hover:before {
            color: white !important;
        }
        
        .blog-section .slick-dots {
            bottom: -45px;
        }
        
        .blog-section .slick-dots li button:before {
            font-size: 12px;
            color: #0066ff;
        }
        
        @media (max-width: 768px) {
            .blog-section .slick-prev {
                left: 10px;
            }
            .blog-section .slick-next {
                right: 10px;
            }
        }
/*blog section*/

/*achievement_area*/
.achievement_area {
    background: #fff;
    padding: 60px 0px;
}
.achievement_area .card-title{
    font-size: 20px!important;
}
/*achievement_area*/


.job-item-style {
    display: flex; /* Enable Flexbox for horizontal arrangement */
    align-items: center; /* Vertically center the items */
    padding: 15px;
}

.job-item-style:hover {
    background-color: #f0f7ff; /* Lighter background on hover */
    border-left: 4px solid var(--primary-color);
    padding-left: 11px; /* Adjust padding due to border */
}

/* Logo Styling - Mimicking the blue icon in the image */
.job-logo-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px; /* Slightly rounded corners */
}

.job-logo-icon {
    font-size: 40px; 
    color: #3e9aff; /* A bright blue color */
    background: linear-gradient(135deg, #a0cfff, #3e9aff); /* Gradient effect */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 3px rgba(0, 123, 255, 0.3)); /* Subtle shadow for depth */
}


/* Job Title Styling */
.job-title-new {
    font-size: 1.1rem;
    font-weight: 700; /* Bold */
    color: #1a1a1a; /* Very dark text */
    margin-bottom: 5px;
    line-height: 1.3;
}

/* Metadata Styling */
.job-meta-line-1, .job-meta-line-2 {
    display: block; /* Ensure each line takes full width */
}

.job-meta-line-2 {
    font-size: 0.95rem;
    color: #495057 !important; /* Slightly darker text for salary/location */
    margin-top: 3px;
}

.job-meta-line-1 i, .job-meta-line-2 i {
    font-size: 0.8rem;
    color: var(--secondary-color); /* Icon color */
}

/* Ensure the hover effect for the similar jobs list is removed if it existed in previous custom CSS */
.similar-jobs-list .list-group-item-action:hover {
    /* Existing hover styles should be maintained but the padding adjusted */
    background-color: #f0f7ff;
    border-left: 4px solid var(--primary-color);
    padding-left: 11px; 
}

/* Optional: Remove bottom margin from the last list item */
.list-group-flush > .list-group-item:last-child {
    border-bottom: 0;
}


/*breadcrumb*/
.custom-breadcrumb-section {
    background-color:#f2f3f6; /* Light grey background for contrast */
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

/* Ensure the breadcrumb list itself has no default margin/padding */
.custom-breadcrumb-section .breadcrumb {
    padding: 0;
    margin: 0;
    --bs-breadcrumb-divider: '/'; /* Change the divider to '>' */
    /* Alternatively, you can use: --bs-breadcrumb-divider: url("data:image/svg+xml,..."); */
}

/* 2. Individual Breadcrumb Items */
.custom-breadcrumb-section .breadcrumb-item {
    font-size: 14px;
    /* Increase spacing between items (default is usually too tight) */
    padding-right: 0px; 
}

/* 3. Link Styling (Non-active items) */
.custom-breadcrumb-section .breadcrumb-link {
    text-decoration: none;
    color: #495057; /* Dark grey for better readability */
    transition: color 0.2s ease-in-out;
    display: inline-flex; /* Align icon and text */
    align-items: center;
}

/* Link Hover Effect */
.custom-breadcrumb-section .breadcrumb-link:hover {
    color: #007bff; /* Primary blue color on hover */
}

/* 4. Home Icon Styling (if used) */
.custom-breadcrumb-section .bi-house-door-fill {
    margin-right: 5px;
    color: #007bff; /* Home icon color */
}

/* 5. Active Item Styling (Current Page) */
.custom-breadcrumb-section .breadcrumb-item.active {
    color: #007bff; /* Primary color to highlight the current page */
    font-weight: 600; /* Bold the current page name */
}

/* Optional: Make the divider color match the non-active text */
.custom-breadcrumb-section .breadcrumb-item + .breadcrumb-item::before {
    color: #999; /* Lighten the divider color */
    padding-right: 10px;
    padding-left: 5px;
}
/*breadcrumb*/

/*login*/
.login-section {
    display: flex;
    align-items: center;
}

.login-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #0a4d5c;
}

/*.login-icon {
    font-size: 80px;
    color: #667eea;
}*/

.login-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.form-label {
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
}

.input-group-text {
    background-color: #f8f9fa;
    border-right: none;
    color: #667eea;
}

.form-control {
    border-left: none;
    padding: 12px 15px;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: none;
}

.input-group:focus-within .input-group-text {
    border-color: #667eea;
}

.btn-primary {
    background:#0a4d5c;
    border: none;
    padding: 12px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    background:#0a4d5c;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.btn-outline-danger:hover {
    background-color: #dc3545;
    color: white;
}

.btn-outline-primary:hover {
    background-color: #0d6efd;
    color: white;
}

#togglePassword {
    border-left: none;
}

.form-check-input:checked {
    background-color: #667eea;
    border-color: #667eea;
}

@media (max-width: 768px) {
    .login-card {
        padding: 30px 20px;
    }
    
    .login-icon {
        font-size: 60px;
    }
    
    .login-title {
        font-size: 24px;
    }
}
/*login*/


/*clients logo*/

.clients-logo-section {
    padding: 60px 0;
    background-color: #fff;
}

.clients-logo-section .logo-item {
    padding: 0 10px; 
    text-align: center;
}

.clients-logo-section .logo-item img {
    width: 100%; 
    height: 100px;
    display: block;
    margin: 0 auto;
    opacity: 0.6; 
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
    border:1px solid;
}

.clients-logo-section .logo-item img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.clients-logo-section .slick-prev:before,
.clients-logo-section .slick-next:before {
    color: #007bff !important; 
    font-size: 24px !important;
}

.clients-logo-section .slick-dots li button:before {
    color: #ccc !important; 
}

.clients-logo-section .slick-dots li.slick-active button:before {
    color: #007bff !important; 
}
/*clients logo*/


/*contact page*/

.contact-section {
    background-color: #ffffff;
    padding:60px 0px;
}


/* 2. Map Column Styling */
.map-col {
/*    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); */
    z-index: 1;
    padding-left:2rem!important;
}

.form-col {
    padding-left: 2rem !important;
    padding-right: 0rem !important;
    background-color: #fcfcfc;
}

.contact-title {
    font-weight: 400 !important;
    font-size: 2.5rem; 
    color: #333;
}

.contact-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
}

.custom-input-lg {
    height: 55px; 
    border-radius: 50px;
    border: 1px solid #d3d3d3;
    padding: 0.75rem 1.25rem;
    background-color: #f9f9f9;
}

.custom-input-lg::placeholder {
    color: #a0a0a0;
    font-size: 1rem;
}

.custom-input-lg:focus {
    border-color: #999;
    box-shadow: none; 
    background-color: #fff;
}


.custom-textarea-lg {
    min-height: 160px; 
    border-radius: 20px!important;
    border: 1px solid #d3d3d3;
    padding: 1.25rem 1.25rem;
    background-color: #f9f9f9;
    resize: vertical; 
}

.custom-textarea-lg:focus {
    border-color: #999;
    box-shadow: none;
    background-color: #fff;
}


.custom-btn-dark {
    background-color: #1E88E5; 
    border-color: #1E88E5;
    color: #ffffff;
    height: 50px;
    font-size: 1.15rem;
    font-weight: 500;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.custom-btn-dark:hover {
    background-color: #0d1230; 
    border-color: #0d1230;
}
/*contact page*/


@media (min-width:320px) and (max-width:575px){
    .image-card-2 {
        position: relative;
        bottom: 0;
        right: 0;
        top:0;
        width: 100%;
      }

    .hero-title {
        font-size: 25px!important;
        line-height: 35px!important;
        font-weight: 400!important;
    }
     .image-container{
        height:100%!important;
        margin-bottom: 10px!important;
     }
    img{
        height:100%!important;
    }
    .main-image{
        margin-top:10px!important;
    }
    .section-tag{
      margin-top:20px!important;  
    }
    .form-col{
        padding-left:0px!important;
    }
    .map-col{
        margin-top:20px!important;
    }
}