@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Jost", sans-serif !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    font-family: "Jost", sans-serif !important;
    background-color: #f8f9fa;
    color: var(--theme-color8);
}


h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
    font-family: "Jost", sans-serif;
}

a {
    text-decoration: none !important;
}

.contact-form {
    background-color: var(--theme-color6);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--theme-color8);
    font-family: "Jost", sans-serif;
}

.form-control {
    width: 100%;
    padding: 15px !important;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--theme-color1) !important;
    box-shadow: 0 0 0 3px rgba(30, 194, 139, 0.2) !important;
    outline: none !important;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--theme-color1);
    color: var(--theme-color6);
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background-color: var(--theme-color4) !important;
}

.basic-btn {
    background-color: var(--theme-color1);
    color: var(--theme-color6);
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.basic-btn:hover {
    background-color: var(--theme-color2);
}

.secondary-btn {
    background-color: var(--theme-color2);
    color: var(--theme-color6);
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.secondary-btn:hover {
    background-color: var(--theme-color1);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    border-radius: 50%;
}

.pagination a,
.pagination span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #ddd;
    color: #333;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background: var(--theme-color4);
    color: #fff;
    border-color: var(--theme-color4);
}

.pagination .active {
    background: var(--theme-color4);
    color: #fff;
    border-color: var(--theme-color4);
    border-radius: 50%;
}

.pagination .active span {
    color: #fff;
}

.pagination .disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ================ Enhanced Navbar Section ================ */

.navbar-1 {
    background-color: transparent;
    backdrop-filter: blur(10px);
    padding: 12px 0;
    transition: all 0.3s ease;
    position: absolute;
    overflow: hidden;
}

.navbar-2 {
    background-color: white;
    backdrop-filter: blur(10px);
    padding: 12px 0;
    transition: all 0.3s ease;
    position: absolute;
    overflow: hidden;
}

.navbar-1::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right, rgba(150, 150, 150, 0.4) 1px,
            transparent 1px), linear-gradient(to bottom, rgba(150, 150, 150, 0.4) 1px, transparent 1px);
    mask-image: repeating-linear-gradient(to right, black 0px, black 3px, transparent 3px, transparent 8px),
        repeating-linear-gradient(to bottom, black 0px, black 3px, transparent 3px, transparent 8px);
    mask-composite: intersect;
    -webkit-mask-composite: intersect;
    background-size: 40px 40px;
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.navbar.scrolled::before {
    opacity: 0;
}

.navbar-light .navbar-toggler-icon {
    filter: brightness(0) saturate(100%) invert(19%) sepia(18%) saturate(1363%) hue-rotate(210deg) brightness(94%) contrast(93%);
}

.navbar.scrolled {
    background-color: var(--theme-color3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
}

.navbar-brand {
    width: 200px;
    transition: all 0.3s ease;
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    transform: scale(0.95);
}

/* Desktop Menu */
.navbar-nav.desktop-menu .nav-item {
    margin: 0 5px;
}

.navbar-nav.desktop-menu .nav-link {
    color: var(--theme-color8);
    font-weight: 500;
    font-size: 16px;
    padding: 8px 10px !important;
    border-radius: 6px;
    position: relative;
    transition: color 0.3s ease;
}

/* Underline (hidden by default) */
.navbar-nav.desktop-menu .nav-link {
    position: relative;
}

.navbar-nav.desktop-menu .nav-link::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 0;
    height: 2px;
    background-color: var(--theme-color2);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.navbar-nav.desktop-menu .nav-link:hover::after {
    transform: scaleX(1);
    transition-delay: 0.05s;
}

.navbar-nav.desktop-menu .nav-link::before {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) translateY(6px) scaleY(0);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid var(--theme-color2);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-nav.desktop-menu .nav-link:hover::before {
    transform: translateX(-50%) translateY(0) scaleY(1);
    opacity: 1;
    transition-delay: 0.1s;
}

.navbar-nav.desktop-menu .nav-link.active::before {
    transform: translateX(-50%) translateY(0) scaleY(1);
    opacity: 1;
    border-bottom-color: var(--theme-color2);
}

.navbar-nav.desktop-menu .nav-link:hover {
    color: var(--theme-color2);
    opacity: 1;
}

.navbar-nav.desktop-menu .nav-link:hover::after {
    transform: scaleX(1);
}

.navbar-nav.desktop-menu .nav-link.active {
    color: var(--theme-color2);
    font-weight: 600;
}

.navbar-nav.desktop-menu .nav-link.active::after {
    transform: scaleX(1);
    background-color: var(--theme-color2);
}

/* Login button */
.navbar-nav.desktop-menu .nav-link.login-btn {
    background-color: var(--theme-color1);
    color: white !important;
    border-radius: 50px;
    padding: 8px 20px !important;
    margin-left: 10px;
    box-shadow: 0 4px 10px rgba(30, 194, 139, 0.3);
    transition: all 0.3s ease;
}

.navbar-nav.desktop-menu .nav-link.login-btn::after {
    display: none;
}

.navbar-nav.desktop-menu .nav-link.login-btn:hover {
    background-color: var(--theme-color2);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 137, 0, 0.3);
    color: white !important;
}

/* Mobile Toggle Button */
/* Base toggler button */
.navbar-toggler {
    padding: 6px 10px;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

/* Remove focus outline */
.navbar-toggler:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Custom hamburger icon (white lines) */
.navbar-toggler .navbar-toggler-icon {
    width: 28px;
    height: 28px;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.95)' stroke-width='3' stroke-linecap='round' d='M5 7h20M5 15h20M5 23h20'/%3e%3c/svg%3e");
}

/* Hover effect */
.navbar-toggler:hover {
    background-color: rgba(30, 194, 139, 0.15);
}

/* ============== Enhanced Language Dropdown ============== */
.language-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 5px;
    z-index: 1060 !important; /* Navbar এর চেয়ে একটু বেশি */
}

.language-toggle {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    /* border: 1px solid rgba(30, 194, 139, 0.3); */
    border-radius: 30px;
    padding: 6px 16px !important;
    font-weight: 500;
    transition: all 0.25s ease;
    color: var(--theme-color8);
    text-decoration: none;
    cursor: pointer;
    position: relative;
}

.navbar-2 .language-toggle {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.08);
    color: #2c3e50;
}

.language-toggle:hover {
    background: var(--theme-color1) !important;
    border-color: var(--theme-color1) !important;
    color: white !important;
    box-shadow: 0 6px 15px rgba(30, 194, 139, 0.25);
    transform: translateY(-1px);
}

.language-toggle .flag-icon {
    border-radius: 3px;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}

.language-toggle .lang-name {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.language-toggle .dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    margin-left: 2px;
}

.language-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
    color: white;
}

/* Dropdown Menu - Custom Design */
.language-menu {
    position: fixed;
    top: 62px;
    width: 200px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    padding: 10px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 1070 !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.98);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    pointer-events: none; /* disable mouse events when hidden */
}

.language-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: all; /* re-enable when visible */
}

/* Large Desktop (1200px and up) */
@media screen and (min-width: 1200px) {
    .language-menu {
        right: 11%;
    }
}

/* Medium Desktop (992px to 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .language-menu {
        right: 8%;
    }
}

/* Small Desktop / Large Tablet (768px to 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {
    .language-menu {
        right: 5%;
        top: 55px;
        width: 180px;
    }
}

/* Alternative: Using calc for fluid positioning */
.language-menu-fluid {
    position: fixed;
    top: 60px;
    right: max(20px, calc(11% - 20px));
    width: min(200px, 90vw);
    background: white;
    border-radius: 16px;
    padding: 10px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    opacity: 1;
    visibility: visible;
    transform: translateY(15px) scale(0.98);
    transition: all 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
    z-index: 1070 !important;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Optional: Center alignment for very large screens */
@media screen and (min-width: 1600px) {
    .language-menu {
        right: calc(50% - 600px);
    }
}

/* Add small arrow on top of dropdown */
.language-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 30px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-left: 1px solid rgba(30, 194, 139, 0.15);
    border-top: 1px solid rgba(30, 194, 139, 0.15);
    border-radius: 4px 0 0 0;
    box-shadow: -3px -3px 8px rgba(0,0,0,0.02);
    z-index: 2147483647 !important;
}

/* Language Items */
.language-item {
    padding: 12px 20px;
    color: #2c3e50;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    position: relative;
    text-decoration: none;
    display: flex;
    align-items: center;
    background: white;
    z-index: 2147483647 !important;
}

.navbar {
    z-index: 999 !important; /* Lower than hero but higher than content */
}

.navbar-1, .navbar-2 {
    z-index: 999 !important;
}

/* Desktop menu items */
.desktop-menu {
    position: relative;
    z-index: 1000; /* Higher than navbar but lower than dropdown */
}


/* Hide old Bootstrap dropdown */
.dropdown-menu {
    display: none !important;
}
/* display none .language-menu for mobile devices */
@media (max-width: 992px) {
    .language-menu {
        display: none !important;
    }
}
/* Responsive adjustments */
@media (max-width: 992px) {
    .language-toggle .lang-name {
        display: none;
    }

    .language-toggle {
        padding: 6px 12px !important;
    }

    .language-menu {
        left: -20px;
        min-width: 180px;
    }

    .language-menu::before {
        left: 35px;
    }
}

/* Dark mode support for navbar-2 */
.navbar-2 .language-menu {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0,0,0,0.05);
}

.navbar-2 .language-item {
    color: #34495e;
}

.navbar-2 .language-item:hover {
    background: linear-gradient(90deg, rgba(30, 194, 139, 0.1) 0%, transparent 100%);
}

/* Animation for dropdown items */
.language-menu .language-item {
    animation: slideIn 0.3s ease backwards;
}

.language-menu .language-item:nth-child(1) { animation-delay: 0.05s; }
.language-menu .language-item:nth-child(2) { animation-delay: 0.1s; }
.language-menu .language-item:nth-child(3) { animation-delay: 0.15s; }
.language-menu .language-item:nth-child(4) { animation-delay: 0.2s; }
.language-menu .language-item:nth-child(5) { animation-delay: 0.25s; }
.language-menu .language-item:nth-child(6) { animation-delay: 0.3s; }

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-8px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.desktop-menu .language-dropdown {
    display: flex;
}



/* ================= Mobile Menu (Offcanvas) ================= */
.offcanvas {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fb 100%);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    border-left: none;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease;
}

/* Header */
.offcanvas-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 1.5rem;
}

.offcanvas-header .navbar-brand img {
    width: 140px;
}

/* Close Button */
.btn-close-white {
    filter: invert(0.7);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.btn-close-white:hover {
    filter: invert(0);
    opacity: 1;
}

/* Offcanvas Body */
.offcanvas-body {
    padding: 2rem 1.5rem;
}

.offcanvas-body .nav-link {
    font-size: 17px;
    font-weight: 500;
    color: var(--theme-color8);
    padding: 10px 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Hover / Active effect */
.offcanvas-body .nav-link:hover {
    background-color: rgba(30, 194, 139, 0.1);
    color: var(--theme-color1);
    transform: translateX(5px);
}

.offcanvas-body .nav-link.active {
    background-color: var(--theme-color1);
    color: white;
    box-shadow: 0 3px 10px rgba(30, 194, 139, 0.3);
}

/* Optional Icons (if needed) */
.offcanvas-body .nav-link i {
    font-size: 18px;
}

/* Mobile menu slide animation */
.offcanvas.offcanvas-end.show {
    transform: translateX(0);
    opacity: 1;
}

.offcanvas.offcanvas-end {
    transform: translateX(100%);
    opacity: 0;
}

.offcanvas .login-btn {
    background-color: var(--theme-color1);
    color: white !important;
    border-radius: 50px;
    padding: 8px 20px !important;
    box-shadow: 0 4px 10px rgba(30, 194, 139, 0.3);
    transition: all 0.3s ease;
    display: inline;
}

.offcanvas.offcanvas-end.login-btn::after {
    display: none;
}

.offcanvas .login-btn:hover {
    background-color: var(--theme-color2);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 137, 0, 0.3);
    color: white !important;
}

/* ================ Hero Section ================ */
#hero {
    padding-top: 100px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--theme-color3) 10%, #ffffff 100%);
    z-index: 1; /* এইটা যোগ করুন - navbar এর চেয়ে কম */
}

#hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right,
            rgba(150, 150, 150, 0.4) 1px,
            transparent 1px),
        linear-gradient(to bottom, rgba(150, 150, 150, 0.4) 1px, transparent 1px);
    mask-image: repeating-linear-gradient(to right,
            black 0px,
            black 3px,
            transparent 3px,
            transparent 8px),
        repeating-linear-gradient(to bottom,
            black 0px,
            black 3px,
            transparent 3px,
            transparent 8px);
    mask-composite: intersect;
    -webkit-mask-composite: intersect;
    background-size: 40px 40px;
    z-index: -1; /* Negative করুন যাতে hero content এর নিচে থাকে */
    pointer-events: none;
}

#hero .floting-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0; /* এইটা 1 থেকে 0 করুন */
}

#hero .floting-icon img {
    position: absolute;
    max-width: 60px;
}

#hero .floting-icon .arrow {
    top: 10%;
    left: 35%;
    animation: float-arrow 6s ease-in-out infinite;
}

#hero .floting-icon .shpae1 {
    top: 10%;
    right: 8%;
    animation: float-shape1 15s ease-in-out infinite;
}

#hero .floting-icon .shpae2 {
    top: 30%;
    left: 3%;
    animation: float-shape2 15s ease-in-out infinite;
}

#hero span {
    display: inline-block;
    background-color: var(--theme-color2);
    padding: 5px 18px;
    border-radius: 30px;
    color: var(--theme-color6);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    transition: all 0.3s ease;
}

#hero span:hover {
    transform: translateY(-2px);
}

#hero .heading {
    font-size: 60px;
    font-weight: 800;
    color: #2b2945;
    text-transform: capitalize;
    line-height: 1.2;
    margin: 25px 0;
}

#hero .description {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

#hero .hero-btn .btn-main {
    background-color: var(--theme-color1, #00b894);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

#hero .hero-btn .btn-main:hover {
    background-color: var(--theme-color2);
    transform: translateY(-2px);
}

/* Floating animation for image */
#hero .hero-img {
    width: 100%;
    z-index: 0;
    position: relative;
    animation: float 4s ease-in-out infinite;
}



/* Carousel transition */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

/* ===== Custom Animations ===== */
.animate-slide {
    opacity: 0;
    transform: translateY(30px);
    animation: slideIn 1.2s ease forwards 0.3s;
}

.animate-fade {
    opacity: 0;
    animation: fadeIn 1.5s ease forwards 0.7s;
}

.animate-up {
    opacity: 0;
    transform: translateY(20px);
    animation: moveUp 1s ease forwards 1s;
}

.carousel-item.active .hero-img {
    opacity: 1 !important;
    transform: scale(1);
}

.animate-zoom {
    opacity: 0;
    transform: scale(0.9);
    animation: zoomIn 1.2s ease forwards 0.5s;
}

/* ===== Carousel Indicators (Custom Dots) ===== */
#hero .carousel-indicators {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 0;
    padding: 0;
    z-index: 10;
}

#hero .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--theme-color1);
    transition: all 0.4s ease;
    opacity: 0.7;
    cursor: pointer;
}

#hero .carousel-indicators button.active {
    background-color: var(--theme-color2);
    transform: scale(1.5);
    opacity: 1;
}

#hero .carousel-indicators button:hover {
    transform: scale(1.2);
    opacity: 1;
}

/* Optional glowing pulse animation for active dot */
#hero .carousel-indicators button.active::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--theme-color2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 1.5s ease-out infinite;
}

#search {
    margin-top: 80px;
    background: rgba(96, 251, 202, 0.5);
    box-shadow: 0 4px 10px rgba(30, 194, 139, 0.3);
    border-radius: 20px;
}

#search .stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item .stat-number {
    color: var(--theme-color2);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0px;
    transition: all 0.3s ease;
}

.stat-item .stat-label {
    color: var(--theme-color5);
    font-size: 0.9rem;
    margin-bottom: 0px;
    font-weight: 600;
}

#search .stats {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#search .stats img {
    width: 40px;
    transition: all 0.3s ease;
}

#search .stats img:hover {
    transform: scale(1.1);
}

#searchform {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.input-container {
    position: relative;
    font-family: "Jost", sans-serif;
}

#searchform .form-control,
#searchform select {
    height: 55px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding-left: 50px !important;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    font-family: "Jost", sans-serif;
}

#filterForm .input-container .form-control {
    height: 55px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding-left: 50px !important;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    font-family: "Jost", sans-serif;
}

#searchform .form-control:focus,
#searchform select:focus {
    border-color: var(--theme-color1);
    box-shadow: 0 0 0 0.25rem rgba(30, 194, 139, 0.25);
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    z-index: 5;
    pointer-events: none;
    transition: color 0.3s ease;
}

#searchform .form-control:focus+.input-icon,
#searchform select:focus+.input-icon {
    color: var(--theme-color1);
}

#searchform button {
    background: linear-gradient(135deg, var(--theme-color1), var(--theme-color4));
    color: white;
    border: none;
    height: 55px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: "Jost", sans-serif;
}

#searchform button:hover {
    background: linear-gradient(135deg, var(--theme-color4), var(--theme-color1));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 194, 139, 0.4);
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    color: var(--theme-color8);
    font-weight: 700;
    font-size: 2.2rem;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ================= Category Section ================= */
#categories {
    padding: 80px 0;
    padding-bottom: 0;
}

#categories .category-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Box design */
#categories .single-category {
    --r: 20px;
    --s: 30px;
    --x: 20px;
    --y: 10px;

    position: relative;
    overflow: visible;
    width: 18%;
    height: 200px;
    aspect-ratio: 1;
    border-radius: var(--r);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

#categories .single-category::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--r);
    background: var(--theme-color3);
    z-index: 0;
    --_m: /calc(2 * var(--r)) calc(2 * var(--r)) radial-gradient(#000 70%, #0000 72%);
    --_g: conic-gradient(at calc(100% - var(--r)) var(--r), #0000 25%, #000 0);
    --_d: (var(--s) + var(--r));
    mask: calc(100% - var(--_d) - var(--x)) 0 var(--_m),
        100% calc(var(--_d) + var(--y)) var(--_m),
        radial-gradient(var(--s) at 100% 0, #0000 99%, #000 calc(100% + 1px)) calc(-1 * var(--r) - var(--x)) calc(var(--r) + var(--y)),
        var(--_g) calc(-1 * var(--_d) - var(--x)) 0,
        var(--_g) 0 calc(var(--_d) + var(--y));
    mask-repeat: no-repeat;
    -webkit-mask:
        /* Safari support */
        calc(100% - var(--_d) - var(--x)) 0 var(--_m),
        100% calc(var(--_d) + var(--y)) var(--_m),
        radial-gradient(var(--s) at 100% 0, #0000 99%, #000 calc(100% + 1px)) calc(-1 * var(--r) - var(--x)) calc(var(--r) + var(--y)),
        var(--_g) calc(-1 * var(--_d) - var(--x)) 0,
        var(--_g) 0 calc(var(--_d) + var(--y));
    -webkit-mask-repeat: no-repeat;
    pointer-events: none;
    transition: 1s;
}

.single-category:hover h6 {
    color: var(--theme-color2);
    opacity: 1;
}

.single-category::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100px;
    height: 100px;
    background-image: url(../images/features/dots2.png);
    z-index: 0;
    background-repeat: no-repeat;
    transition: 0.4s;
}

#categories .single-category>* {
    position: relative;
    z-index: 1;
}

.category-btn {
    position: absolute;
    top: -10%;
    right: -38%;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    color: var(--theme-color1);
    border: 2px solid var(--theme-color1);
    font-weight: bold;
    text-decoration: none;
    z-index: 9999;
    font-size: 20px;
    transition: all 0.6s ease;
}

.category-btn:hover {
    background: var(--theme-color1);
    color: #fff;
    border: 2px solid var(--theme-color1);
}

#categories .single-category img {
    width: 50px;
    margin-bottom: 10px;
}

#categories .single-category h6 {
    margin: 5px 0;
    font-weight: 600;
    font-family: "Jost", sans-serif;
    transition: 0.5s;
    color: var(--theme-color2);
    font-size: 18px;
}

#categories .single-category small {
    opacity: 0.8;
    font-family: "Jost", sans-serif;
}

.section-heading {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-description {
    font-size: 18px;
    color: var(--theme-color7);
    max-width: 600px;
    margin: 0 auto;
    margin-top: 15px;
}

.section-heading h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--theme-color8);
    margin: 0;
    position: relative;
    display: inline-block;
    font-family: "Jost", sans-serif;
}

.section-heading h3:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--theme-color1);
    border-radius: 2px;
}

.section-heading a {
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.section-heading a:hover {
    color: var(--secondary-color);
    gap: 12px;
}

/* ========================== Features job section ================= */
#job {
    background-image: url(../images/features/vectosmartobject.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right center;
    position: relative;
}

#job::after {
    content: "";
    position: absolute;
    top: 2%;
    right: 20%;
    width: 60px;
    height: 100px;
    background-image: url(../images/features/star.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.4s ease;
    z-index: 0;
    transform: translate(-50%, 10%);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

#job::before {
    content: "";
    position: absolute;
    top: 13%;
    left: 2%;
    width: 73px;
    height: 100px;
    background-image: url(../images/features/abstract.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.4s ease;
    z-index: 0;
    transform: translate(-50%, 10%);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.job-card {
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border-top: 4px solid var(--theme-color1);
    display: flex;
    flex-direction: column;
    background-color: #fff;
}

.job-card::after {
    content: "";
    position: absolute;
    top: -15px;
    right: -30px;
    width: 140px;
    height: 140px;
    background-image: url(../images/features/dots.png);
    transition: all 0.4s ease;
    z-index: 0;
    background-repeat: no-repeat;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--theme-color2);
    background: linear-gradient(to bottom, #b2f3de 10%, #ffffff 100%);
}

.job-card:hover .company-logo {
    border: 2px solid var(--theme-color2);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: var(--theme-color2);
    color: var(--theme-color6);
    padding: 5px 35px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.job-header {
    padding: 20px 20px 15px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    min-height: 150px;
}

.company-logo {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-color: var(--theme-color3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--theme-color4);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.job-info {
    min-height: 95px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.job-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--theme-color8);
    margin-bottom: 5px;
    line-height: 1.3;
}

.company-name {
    color: var(--theme-color7);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.job-tag {
    background-color: var(--theme-color3);
    color: var(--theme-color4);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.job-details {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.deadline {
    color: var(--theme-color7);
    font-size: 0.9rem;
}

.deadline i {
    color: var(--theme-color2);
    margin-right: 5px;
}

.urgent {
    color: #e74c3c;
    font-weight: 600;
}

.apply-btn {
    background-color: var(--theme-color1);
    color: var(--theme-color6);
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.apply-btn:hover {
    background-color: var(--theme-color4);
}

/* ================= How its work ================= */
#how-works {
    background-image: url(../images/how-works/vectosmartobject.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
    position: relative;
}

#how-works::after {
    content: "";
    position: absolute;
    top: 10%;
    right: 10%;
    width: 200px;
    height: 100px;
    background-image: url(../images/how-works/cta-one-shape-2.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.4s ease;
    z-index: 0;
    transform: translate(-50%, 10%);
    animation: float 6s ease-in-out infinite;
}

.workflow-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.workflow-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--theme-color1), var(--theme-color4));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--theme-color6);
    flex-shrink: 0;
}

.workflow-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--theme-color4);
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--theme-color2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 18px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.step-number img {
    width: 25px;
}

.step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 19px;
    top: 45px;
    width: 2px;
    height: calc(100% + 20px);
    background: linear-gradient(180deg,
            var(--theme-color2) 0%,
            transparent 100%);
}

.step-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--theme-color2);
    margin-bottom: 5px;
}

.step-content p {
    font-size: 15px;
    color: var(--theme-color7);
    line-height: 1.6;
}

.step-arrow {
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 8px;
}

.how-works-img {
    position: relative;
    display: inline-block;
    animation: float2 4s ease-in-out infinite;
}

/* Pseudo Elements */
.how-works-img::after,
.how-works-img::before {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    background-image: url(../images/how-works/icon-bottom-banner.png);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
    pointer-events: none;
}

/* Different delays */
.how-works-img::after {
    top: -15px;
    left: -15px;
    animation-delay: 0.5s;
    animation: float2 4s ease-in-out infinite;
}

.how-works-img::before {
    bottom: -50px;
    right: -15px;
    animation-delay: 1s;
    animation: float2 4s ease-in-out infinite;
}

/* Img stays on top */
.how-works-img img {
    position: relative;
    z-index: 2;
    display: block;
}

#how-works .section-heading h3:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    /* centers it */
    width: 60px;
    height: 4px;
    background: var(--theme-color1);
    border-radius: 2px;
    display: block;
}

/* ==================== Testimonial Section ==================== */

#testimonials {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
}

#testimonials::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 194, 139, 0.85);
}

#testimonials .section-heading h3:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--theme-color2);
    border-radius: 2px;
    display: block;
}


#testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

#testimonials .section-description {
    font-size: 18px;
    color: var(--theme-color8);
    max-width: 600px;
    margin: 0 auto;
    margin-top: 15px;
}

#testimonialSlider {
    width: 800px;
    margin: auto;
    display: block;
}

#testimonialSlider .slide-row {
    display: flex;
    width: 3200px;
    transition: 0.5s;
}

#testimonialSlider .slide-col {
    position: relative;
    width: 800px;
    height: 400px;
}

#testimonialSlider .hero {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}

#testimonialSlider .hero img {
    height: 100%;
    border-radius: 20px;
    width: 320px;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
}

#testimonialSlider .content {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 520px;
    height: 270px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    backdrop-filter: blur(4.5px);
    -webkit-backdrop-filter: blur(4.5px);
    border-radius: 20px;
    padding: 45px;
    z-index: 2;
    user-select: none;
    transition: 0.5s;
}

#testimonialSlider .content:hover {
    transform: translateY(-50%) translateX(-2px);
}

#testimonialSlider .content p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.3;
}

#testimonialSlider .content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 35px;
    color: var(--theme-color2);
}

#testimonialSlider .indicator {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

#testimonialSlider .indicator .slider-btn {
    display: inline-block;
    height: 15px;
    width: 15px;
    margin: 4px;
    border-radius: 15px;
    background: var(--theme-color2);
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

#testimonialSlider .slider-btn.active {
    width: 30px;
}

#testimonialSlider .slider {
    width: 100%;
    overflow: hidden;
}

.star-rating {
    display: flex;
    margin-bottom: 15px;
}

.star-rating .star-rating-icon {
    color: var(--theme-color2) !important;
    font-size: 1rem;
    margin-right: 3px;
}

/* =============== Brand slider =============== */
#slider {
    overflow: hidden;
    max-width: 1140px;
    margin: auto;
    position: relative;
    mask-image: linear-gradient(to right,
            transparent,
            black 10%,
            black 90%,
            transparent);
}

.slide-track {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.slide-track:hover {
    animation-play-state: paused;
}

.slide {
    flex: 0 0 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.slide img {
    width: 100px;
    height: auto;
}

#slider .section-heading h3:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--theme-color1);
    border-radius: 2px;
    display: block;
}

/* ==================== Footer ==================== */
#footer {
    clip-path: ellipse(95% 100% at 50% 100%);
    width: 100%;
    background-color: var(--theme-color1);
    padding-top: 130px;
    padding-bottom: 0px;
    position: relative;
    overflow: visible;
    background-image: url(../images/footer/2.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right top;
}

#footer::after,
#footer::before {
    content: "";
    background: url(../images/footer/need_cta_overlay.png);
    background-repeat: no-repeat;
    width: 150px;
    height: 150px;
    background-size: contain;
    position: absolute;
    z-index: 0;
    animation: footerFloatAnimation 6s ease-in-out infinite alternate;
}

#footer::before {
    left: 30px;
    top: 120px;
    animation-delay: 3s;
}

#footer::after {
    right: 50px;
    top: 250px;
    animation-delay: 3s;
}

#footer-wrapper {
    position: relative;
}

#footer h4 {
    color: var(--theme-color8);
    font-weight: 700;
    margin-bottom: 35px;
    position: relative;
    font-size: 1.25rem;
}

#footer h4::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    border-radius: 20px;
    background-color: var(--theme-color8);
    bottom: -10px;
    left: 0px;
}

#footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer ul li {
    line-height: 32px;
    transition: all 0.6s ease;
    margin-bottom: 5px;
}

#footer ul li:hover {
    transform: translateX(5px);
}

#footer ul li a {
    text-decoration: none;
    color: var(--theme-color8);
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

#footer ul li a:hover {
    color: var(--theme-color8);
}

#footer ul li a i {
    margin-right: 8px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

#footer ul li:hover a i {
    transform: translateX(3px);
}

#footer p {
    color: var(--theme-color8);
    font-weight: 500;
    line-height: 1.6;
}
.footer-copyright{
    color: #fff !important;
}
.f-social-icon{
    color: #fff !important;
}
.footer-logo {
    width: 200px;
    margin-bottom: 20px;
}

.contact-info {
    color: var(--theme-color8);
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 25px;
}

.contact-item {
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.contact-item .contact-icon {
    width: 32px;
    height: 32px;
    background: var(--theme-color2);
    border-radius: 50%;

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

    font-size: 18px;
    line-height: 1;
    color: #fff;
    flex-shrink: 0;
}

#social {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

#social li {
    display: inline-block;
}

#social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

#social li:hover {
    transform: none !important;
}

#social li:hover #social li a {
    background-color: var(--theme-color2);
    color: #fff;
}

#social2 {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

#social2 li {
    display: inline-block;
}

#social2 a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    background-color: var(--theme-color1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

#social2 li:hover {
    transform: none !important;
}

#social2 li:hover #social2 li a {
    background-color: var(--theme-color2);
    color: #fff;
}



.bottom-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(0, 0, 0, 0.15);
    margin-top: 50px;
}

.bottom-footer p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
    color: #fff;
}

.footer-links a {
    color: #fff;
    font-size: 14px;
    margin-left: 18px;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: var(--theme-color2);
}

/* ==================== Back To Top ==================== */
#backToTopBtn {
    display: inline-block;
    background-color: var(--theme-color1);
    width: 50px;
    height: 50px;
    text-align: center;
    position: fixed;
    bottom: 100px;
    right: 30px;
    transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-decoration: none;
    border-radius: 50%;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    line-height: 50px;
}

#backToTopBtn::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 1.3em;
    line-height: 50px;
    color: #fff;
}

#backToTopBtn:hover {
    cursor: pointer;
    background-color: var(--theme-color4);
}

#backToTopBtn:active {
    background-color: var(--theme-color4);
}

#backToTopBtn.show {
    opacity: 1;
    visibility: visible;
}

/* ================= Breadcrumb with Background Image ================= */
.breadcrumb-hero {
    margin-top: 84px;
    height: 280px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.breadcrumb-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to right,
            rgba(255, 255, 255, 0.5) 1px,
            transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    pointer-events: none;
}

.breadcrumb-hero::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--theme-color8);
  opacity: 0.8;
}

.breadcrumb-content {
    position: relative;
    z-index: 1;
    color: white;
}

.breadcrumb-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.breadcrumb-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    background-color: rgba(255, 250, 250, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 12px 25px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 50%;
}

.breadcrumb {
    margin-bottom: 0;
    background-color: transparent;
    padding: 0;
}

.breadcrumb-item {
    font-size: 15px;
    font-weight: 500;
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex !important;
    align-items: center;
}

.breadcrumb-item a:hover {
    color: var(--theme-color3);
}

.breadcrumb-item.page-active {
    color: var(--theme-color8);
    font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "";
    display: none;
}

.breadcrumb-item .home-icon {
    margin-right: 5px;
    font-size: 14px;
}


/* Header Section */
.faq-header {
    background: linear-gradient(135deg, var(--theme-color1) 0%, var(--theme-color4) 100%);
    color: var(--secondary-color);
    text-align: center;
}

.faq-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.faq-header p {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Search Box */
.search-container {
    max-width: 700px;
    margin: -30px auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.search-box {
    background: var(--theme-color6);
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    padding: 8px 8px 8px 25px;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-family: "Jost", sans-serif;
    font-size: 1rem;
    padding: 10px;
    color: var(--theme-color8);
}

.search-box input::placeholder {
    color: var(--theme-color7);
}

.search-btn {
    background: var(--theme-color1);
    color: var(--theme-color6);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: "Jost", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.search-btn:hover {
    background: var(--theme-color4);
    transform: translateY(-2px);
}


/* Category Tabs */
.category-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.category-tab {
    background: var(--theme-color6);
    border: 2px solid #e0e0e0;
    padding: 12px 25px;
    border-radius: 50px;
    font-family: "Jost", sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--theme-color8);
}

.category-tab:hover {
    border-color: var(--theme-color1);
    color: var(--theme-color1);
}

.category-tab.active {
    background: var(--theme-color1);
    border-color: var(--theme-color1);
    color: var(--theme-color6);
}

/* FAQ Content */
.faq-content {
    display: grid;
    gap: 20px;
}

.faq-category {
    display: none;
}

.faq-category.active {
    display: block;
}

.category-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--theme-color8);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--theme-color3);
}

/* FAQ Item */
.faq-item {
    background: var(--theme-color6);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(30, 194, 139, 0.15);
}

.faq-question {
    padding: 25px 60px 25px 25px;
    cursor: pointer;
    position: relative;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--theme-color8);
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: var(--theme-color3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--theme-color4);
    flex-shrink: 0;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 25px;
    font-size: 1.8rem;
    color: var(--theme-color1);
    transition: transform 0.3s;
    font-weight: 300;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px 0 80px;
    color: var(--theme-color7);
    font-size: 1rem;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 25px 80px;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, var(--theme-color2) 0%, #ff6b00 100%);
    color: var(--theme-color6);
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 60px;
}

.contact-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.contact-btn {
    background: var(--theme-color6);
    color: var(--theme-color2);
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* =============== About Us ================ */
/* about-hero Section */
.about-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--theme-color3) 0%, #e6f7f0 100%);
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.about-hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-hero-text {
    flex: 1;
}

.about-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--theme-color8);
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-hero-title span {
    color: var(--theme-color1);
}

.about-hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--theme-color7);
}

.about-hero-image {
    flex: 1;
    position: relative;
    box-shadow: -50px -50px 0 -40px var(--theme-color2), 50px 50px 0 -40px var(--theme-color2);
}

.about-hero-img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    box-shadow: -50px -50px 0 -40px var(--theme-color2), 50px 50px 0 -40px var(--theme-color2);
}


/* Mission Section */
.mission {
    padding: 100px 0;
    background-color: var(--theme-color6);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}


.section-subtitle {
    font-size: 18px;
    color: var(--theme-color7);
    max-width: 600px;
    margin: 0 auto;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.mission-text {
    flex: 1;
}

.mission-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--theme-color8);
    margin-bottom: 20px;
}

.mission-description {
    font-size: 16px;
    margin-bottom: 25px;
    color: var(--theme-color7);
}

.mission-image {
    flex: 1;
}

.mission-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    box-shadow: -50px -50px 0 -40px var(--theme-color1), 50px 50px 0 -40px var(--theme-color1);
}

/* Values Section */
.values {
    padding: 100px 0;
    background-color: #f5f9f7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: var(--theme-color6);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--theme-color2);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: var(--theme-color3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--theme-color1);
    font-size: 28px;
}

.value-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--theme-color8);
    margin-bottom: 15px;
}

.value-description {
    font-size: 15px;
    color: var(--theme-color7);
}

.custom-about-btn {
    background-color: var(--theme-color1);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.custom-about-btn:hover {
    background-color: var(--theme-color4);
}

/* contact us section design */
/* Contact Section */
.contact-section {
    padding: 150px 0;
}

.contact-section .section-title {
    text-align: center;
    margin-bottom: 20px;
    font-family: "Jost", sans-serif;

}

.contact-section .section-title h2 {
    font-size: 36px;
    color: var(--theme-color8);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-family: "Jost", sans-serif;
    font-weight: 700;
}

.contact-section .section-title h2:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background-color: var(--theme-color1);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.contact-section .section-title p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--theme-color7);
    font-size: 16px;
    font-family: "Jost", sans-serif;
    font-weight: normal;
}

.contact-section .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* Contact Form */
.contact-section .contact-form {
    background-color: var(--theme-color6);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-section .form-group {
    margin-bottom: 25px;
}

.contact-section .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--theme-color8);
    font-family: "Jost", sans-serif;
}

.contact-section .form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
}

.contact-section .form-control:focus {
    border-color: var(--theme-color1);
    box-shadow: 0 0 0 3px rgba(30, 194, 139, 0.2);
    outline: none;
}

.contact-section textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-section .submit-btn {
    background-color: var(--theme-color1);
    color: var(--theme-color6);
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.contact-section .submit-btn:hover {
    background-color: var(--theme-color4);
}

/* Contact Info */
.contact-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-section .info-card {
    background-color: var(--theme-color6);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s;
}

.contact-section .info-card:hover {
    transform: translateY(-5px);
}

.contact-section .info-icon {
    background-color: var(--theme-color3);
    color: var(--theme-color1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-section .info-content h3 {
    color: var(--theme-color8);
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;

}

.contact-section .info-content p {
    margin-bottom: 5px;
    color: var(--theme-color7);
    font-weight: normal;
}

.contact-section .support-time {
    background-color: var(--theme-color3);
    padding: 15px;
    border-radius: 10px;
    margin-top: 10px;
    display: inline-block;
}

.contact-section .support-time p {
    color: var(--theme-color4);
    font-weight: 600;
    margin-bottom: 0px;
}

/* ===================== Blog List page design here ============= */
/* Main Content Layout */
#blog .blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Blog Cards */
#blog .blog-card {
    background-color: var(--theme-color6);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

#blog .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

#blog .blog-image {
    height: 400px;
    overflow: hidden;
}

#blog .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

#blog .blog-card:hover .blog-image img {
    transform: scale(1.05);
}

#blog .blog-content {
    padding: 25px;
}

#blog .blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--theme-color7);
}

#blog .blog-author,
.blog-date {
    display: flex;
    align-items: center;
}

#blog .blog-author i,
.blog-date i {
    margin-right: 5px;
    color: var(--theme-color1);
}

#blog .blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

#blog .category-tag {
    background-color: var(--theme-color3);
    color: var(--theme-color4);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

#blog .blog-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--theme-color8);
    line-height: 1.3;
    text-decoration: none;
}

#blog .blog-excerpt {
    color: var(--theme-color7);
    margin-bottom: 20px;
}

#blog .read-more {
    display: inline-flex;
    align-items: center;
    color: var(--theme-color1);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

#blog .read-more i {
    margin-left: 5px;
    transition: transform 0.3s;
}

#blog .read-more:hover {
    color: var(--theme-color4);
}

#blog .read-more:hover i {
    transform: translateX(3px);
}

/* Sidebar Styles */
#blog .sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#blog .sidebar-widget {
    background-color: var(--theme-color6);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

#blog .widget-title {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--theme-color3);
    color: var(--theme-color8);
}

#blog .recent-post {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

#blog .recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

#blog .recent-post-image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

#blog .recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#blog .recent-post-content a {
    font-size: 18px;
    margin-bottom: 5px;
    line-height: 1.3;
    text-decoration: none;
    color: var(--theme-color8);
    font-weight: 600;
}

#blog .recent-post-content .post-date {
    font-size: 12px;
    color: var(--theme-color7);
}

#blog .category-list {
    padding-left: 0px;
    list-style: none;
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 0;
}

#blog .category-list li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

#blog .category-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

#blog .category-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 12px;
    text-decoration: none;
    color: var(--theme-color8);
    border-radius: 6px;
    transition: background 0.3s, color 0.3s;
    padding-left: 0px;
}

/* Push count to the right */
#blog .category-list .category-count {
    margin-left: auto;
    font-weight: 600;
    font-size: 14px;
    background-color: var(--theme-color3);
    color: var(--theme-color4);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
}

/* Newsletter Widget */
#blog .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#blog .newsletter-form input {
    padding: 12px 15px;
    border: 1px solid #e0e6e9;
    border-radius: 8px;
    font-family: "Jost", sans-serif;
    font-size: 15px;
}

#blog .newsletter-form button {
    background-color: var(--theme-color1);
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 8px;
    font-family: "Jost", sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

#blog .newsletter-form button:hover {
    background-color: var(--theme-color4);
}






/* =============== Job details page ============ */
/* Main Layout */
.main-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 40px 0;
}

/* Blog Post */
.blog-post {
    background-color: var(--theme-color6);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.blog-content {
    padding: 30px;
}

.blog-title {
    font-size: 2.2rem;
    color: var(--theme-color8);
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 700;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.meta-item span {
    color: var(--theme-color7);
}

.meta-item .meta-icon {
    color: var(--theme-color1) !important;
}

.categories {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.category {
    background-color: var(--theme-color3);
    color: var(--theme-color4);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.blog-text {
    margin: 25px 0;
    font-size: 1.1rem;
    line-height: 1.7;
}

.blog-text p {
    margin-bottom: 20px;
    color: var(--theme-color7);
}

.blog-text h2 {
    color: var(--theme-color8);
    margin: 30px 0 15px;
    font-weight: 600;
}

.blog-text ul,
.blog-text ol {
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--theme-color7);
}

/* Social Share */
.social-share {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--theme-color6);
    transition: transform 0.3s;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.facebook {
    background-color: #3b5998;
}

.twitter {
    background-color: #1da1f2;
}

.linkedin {
    background-color: #0077b5;
}

.whatsapp {
    background-color: #25d366;
}

/* Comments Section */
.comments-section {
    margin-top: 40px;
}

.comments-section .section-title {
    font-size: 1.5rem;
    color: var(--theme-color8);
    margin-bottom: 20px;
    padding-bottom: 10px;
    text-align: left;
    border-bottom: 2px solid var(--theme-color3);
}

.comment {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--theme-color3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-color4);
    font-weight: 600;
    flex-shrink: 0;
}

.comment-content h4 {
    color: var(--theme-color8);
    margin-bottom: 5px;
}

.comment-content p {
    color: var(--theme-color7);
}

.comment-meta {
    font-size: 0.85rem;
    color: var(--theme-color7);
    margin-bottom: 10px;
}

.comment-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--theme-color8);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: "Jost", sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--theme-color1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--theme-color1);
    color: var(--theme-color6);
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-family: "Jost", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: var(--theme-color4);
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background-color: var(--theme-color6);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.widget-title {
    font-size: 1.3rem;
    color: var(--theme-color8);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--theme-color3);
    font-weight: 700;
}

.recent-post {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.recent-post-content h4 {
    font-size: 1rem;
    color: var(--theme-color8);
    margin-bottom: 5px;
    line-height: 1.4;
}

.recent-post-content h4 a {
    color: var(--theme-color8);
}

.recent-post-date {
    font-size: 0.85rem;
    color: var(--theme-color7);
}

.category-list {
    padding-left: 0px;
    list-style: none;
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.category-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.category-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 12px;
    text-decoration: none;
    color: var(--theme-color8);
    border-radius: 6px;
    transition: background 0.3s, color 0.3s;
    padding-left: 0px;
}

/* Push count to the right */
.category-list .category-count {
    margin-left: auto;
    font-weight: 600;
    font-size: 14px;
    color: #6c757d;
    background-color: var(--theme-color3);
    color: var(--theme-color4);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
}

/* ================== Filter page design ================== */
#find-job .filter-toggle {
    display: none;
    background-color: var(--theme-color1);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 20px;
    width: 100%;
    text-align: left;
    position: relative;
}

#find-job .filter-toggle:after {
    content: '\f0b0';
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
}

#find-job .filter-container {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

#find-job .filter-sidebar {
    flex: 0 0 300px;
    background-color: var(--theme-color6);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

#find-job .filter-group {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

#find-job .filter-group:last-child {
    border-bottom: none;
}

#find-job .filter-group h3 {
    color: var(--theme-color8);
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

#find-job .filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#find-job .filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: color 0.2s;
}

#find-job .filter-option:hover {
    color: var(--theme-color1);
}

#find-job .filter-option input {
    accent-color: var(--theme-color1);
}

#find-job select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background-color: white;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

#find-job select:focus {
    outline: none;
    border-color: var(--theme-color1);
}

#find-job .salary-range {
    padding-top: 10px;
}

#find-job .range-values {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.9rem;
}

#find-job .range-slider {
    width: 100%;
    height: 5px;
    background: #ddd;
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
}

#find-job .range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--theme-color1);
    cursor: pointer;
}


#find-job .btn {
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 1rem;
    flex: 1;
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
}

#find-job .btn-primary {
    background-color: var(--theme-color1);
    color: white;
}

#find-job .btn-primary:hover {
    background-color: var(--theme-color4);
}

#find-job .btn-secondary {
    background-color: #f0f0f0;
    color: var(--theme-color7);
}

#find-job .btn-secondary:hover {
    background-color: #e0e0e0;
}

/* Job Listings */
#find-job .job-listings {
    flex: 1;
}

#find-job .job-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

#find-job .job-count {
    color: var(--theme-color8);
    font-weight: 600;
}

#find-job .sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

#find-job .sort-options select {
    width: auto;
    min-width: 180px;
}

#find-job .job-cards {
    display: grid;
    gap: 20px;
}

#find-job .job-card2 {
    background-color: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    gap: 20px;
    transition: 0.5s;
    border-top: 4px solid var(--theme-color1);
    position: relative;
}

#find-job .job-card2::after {
    content: "";
    position: absolute;
    top: 0px;
    right: -15px;
    width: 140px;
    height: 140px;
    background-image: url(../images/features/dots.png);
    z-index: 1;
    background-repeat: no-repeat;
}

#find-job .job-card2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--theme-color2);
}

#find-job .company-logo {
    flex: 0 0 70px;
    height: 70px;
    border-radius: 8px;
    background-color: var(--theme-color3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--theme-color1);
}

#find-job .job-details2 {
    flex: 1;
}

#find-job .job-title {
    color: var(--theme-color8) !important;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
}

#find-job .job-title a {
    color: var(--theme-color8) !important;
}

#find-job .company-name {
    color: var(--theme-color7);
    margin-bottom: 10px;
    font-weight: 500;
}

#find-job .job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

#find-job .meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

#find-job .meta-item i {
    color: var(--theme-color1);
}

#find-job .job-salary {
    color: var(--theme-color2);
    font-weight: 600;
}

#find-job .job-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}

#find-job .job-tags {
    display: flex;
    gap: 10px;
}

#find-job .tag {
    padding: 5px 12px;
    background-color: var(--theme-color3);
    color: var(--theme-color4);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

#find-job .apply-btn {
    background-color: var(--theme-color1);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

#find-job .apply-btn:hover {
    background-color: var(--theme-color4);
}

/* ===================== Company list page design ================ */
/* Main Content */
#company-content .main-content {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
}

/* Filter Section */
#company-content .filter-section {
    flex: 0 0 280px;
    background: var(--theme-color6);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

#company-content .filter-section h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--theme-color8);
    padding-bottom: 10px;
    border-bottom: 1px solid #eaeaea;
}

#company-content .filter-group {
    margin-bottom: 25px;
}

#company-content .filter-group h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--theme-color8);
}

#company-content .filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#company-content .filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
}

#company-content .filter-option input {
    accent-color: var(--theme-color1);
}

#company-content .filter-option label {
    color: var(--theme-color7);
    cursor: pointer;
}


/* Company List Section */
#company-content .company-list-section {
    flex: 1;
}

#company-content .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

#company-content .section-header h2 {
    font-size: 1.6rem;
    color: var(--theme-color8);
}

#company-content .sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

#company-content .sort-options select {
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: var(--theme-color6);
    color: var(--theme-color8);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}

#company-content .sort-options select:focus {
    outline: none;
    border-color: var(--theme-color1);
}

/* Company Grid */
#company-content .company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

#company-content .company-card {
    background: var(--theme-color6);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

#company-content .company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

#company-content .company-header {
    padding: 25px 25px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

#company-content .company-logo {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-color: var(--theme-color3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--theme-color4);
    font-size: 1.2rem;
}

#company-content .company-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--theme-color8);
}

#company-content .company-type {
    display: inline-block;
    padding: 5px 12px;
    background-color: var(--theme-color3);
    color: var(--theme-color4);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

#company-content .company-details {
    padding: 0 25px 25px;
}

#company-content .company-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--theme-color7);
}

#company-content .company-detail i {
    color: var(--theme-color1);
    width: 20px;
}

#company-content .company-actions {
    display: flex;
    gap: 10px; /* দুই বাটনের মাঝে গ্যাপ */
}

#company-content .view-jobs-btn {
    flex: 1; /* দুইটা সমান চওড়া */
    padding: 12px;
    background-color: var(--theme-color1);
    color: var(--theme-color6);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
    text-decoration: none;
}


#company-content .view-jobs-btn:hover {
    background-color: var(--theme-color4);
}

/* ============= Bottom Nav ============= */
#bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: none;
}

#bottom-nav nav {
    width: 100%;
    padding: 0 15px 15px;
    margin: 0 auto;
    box-sizing: border-box;
}

#bottom-nav .nav-box {
    display: flex;
    flex-direction: row; /* এটা যোগ করা হয়েছে */
    padding: 15px 8px;
    background-color: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1), 0 -2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    max-width: 500px;
    margin: 0 auto;
}

#bottom-nav .nav-container {
    display: flex;
    flex-direction: row; /* এটা যোগ করা হয়েছে */
    width: 100%;
    list-style: none;
    justify-content: space-around;
    margin: 0;
    padding: 0;
    align-items: center;
}

#bottom-nav .nav__item {
    display: flex;
    position: relative;
    flex: 1;
    justify-content: center;
    align-items: flex-end; /* এটা যোগ করা হয়েছে */
}

#bottom-nav .nav__item.active .nav__item-icon {
    margin-top: -35px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    border: 3px solid #fff;
    transform: scale(1.1);
}

#bottom-nav .nav__item.active .nav__item-text {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

#bottom-nav .nav__item-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #2f3046;
    text-decoration: none;
    width: 100%;
    position: relative;
    gap: 8px;
}

#bottom-nav .nav__item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    min-width: 50px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    position: relative;
    z-index: 2;
    flex-shrink: 0; /* এটা যোগ করা হয়েছে */
}

#bottom-nav .nav__item-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

#bottom-nav .nav__item-text {
    font-size: 11px;
    font-weight: 700;
    font-family: "Jost", sans-serif;
    color: var(--primary-color) !important;
    opacity: 0.7;
    transition: all 0.3s ease;
    transform: translateY(5px);
    visibility: hidden;
    text-align: center;
    white-space: nowrap;
    position: static;
    margin-top: 0;
}

#bottom-nav .nav__item.active .nav__item-text {
    opacity: 1;
    color: var(--primary-color);
    font-weight: 700;
    transform: translateY(0);
    visibility: visible;
}

#bottom-nav .nav__item:not(.active) .nav__item-text {
    display: none;
}

/* Media query */
@media (max-width: 478px) {
    #bottom-nav {
        display: flex;
    }

    /* Notched phones এর জন্য */
    @supports (padding-bottom: env(safe-area-inset-bottom)) {
        #bottom-nav nav {
            padding-bottom: calc(15px + env(safe-area-inset-bottom));
        }
    }
}

/* Small screens এর জন্য adjustments */
@media (max-width: 350px) {
    #bottom-nav .nav__item-icon {
        height: 44px;
        width: 44px;
        min-width: 44px;
    }

    #bottom-nav .nav__item-icon img {
        width: 20px;
        height: 20px;
    }
}

/* ================= Login page design ================= */
#login {
    background: linear-gradient(to bottom, var(--theme-color3) 10%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-x: hidden;
    position: relative;
}

#login::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right,
            rgba(150, 150, 150, 0.4) 1px,
            transparent 1px),
        linear-gradient(to bottom, rgba(150, 150, 150, 0.4) 1px, transparent 1px);
    mask-image: repeating-linear-gradient(to right,
            black 0px,
            black 3px,
            transparent 3px,
            transparent 8px),
        repeating-linear-gradient(to bottom,
            black 0px,
            black 3px,
            transparent 3px,
            transparent 8px);
    mask-composite: intersect;
    -webkit-mask-composite: intersect;
    background-size: 40px 40px;
    z-index: 0;
    pointer-events: none;
}

#login .user-type-selector {
    display: flex;
    margin-bottom: 35px;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
}

#login .user-type-option {
    flex: 1;
    text-align: center;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--theme-color7);
    font-size: 1.1rem;
}

#login .user-type-option.active {
    background: linear-gradient(90deg, var(--theme-color1), var(--theme-color4));
    color: white;
}

#login .container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

#login .logo-section {
    flex: 1;
    min-width: 300px;
    text-align: center;
    color: var(--theme-color6);
    padding: 20px;
    animation: fadeIn 1s ease-out;
}



#login .features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    align-items: center;
}

#login .feature {
    background: var(--theme-color4);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px;
    width: 150px;
    text-align: center;
    transition: transform 0.3s ease;
    align-items: center;
}

#login .feature:hover {
    transform: translateY(-5px);
}

#login .feature i {
    font-size: 2rem;
    color: var(--theme-color1);
    margin-bottom: 10px;
}

#login .feature p {
    margin-bottom: 0;
}

#login .login-section {
    flex: 1;
    min-width: 350px;
    max-width: 450px;
}

#login .login-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    animation: slideUp 0.8s ease-out;
}

#login .login-card::after {
    content: "";
    position: absolute;
    top: 0px;
    right: -12px;
    width: 140px;
    height: 140px;
    background-image: url(../images/features/dots.png);
    transition: all 0.4s ease;
    z-index: 0;
    background-repeat: no-repeat;
}

#login .login-header {
    text-align: center;
    margin-bottom: 30px;
}

#login .login-header h2 {
    color: var(--theme-color8);
    font-size: 2rem;
    margin-bottom: 10px;
}

#login #searchform {
    background-color: transparent;
    padding: 0px;
    box-shadow: none;
}

#login .login-header p {
    color: var(--theme-color7);
    font-size: 1rem;
}

#login .options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

#login .remember {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--theme-color7);
}

#login .remember input {
    accent-color: var(--theme-color1);
}

#login .forgot-password {
    color: var(--theme-color1);
    text-decoration: none;
    transition: color 0.3s ease;
}

#login .forgot-password:hover {
    color: var(--theme-color4);
}

#login .login-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(90deg, var(--theme-color1), var(--theme-color4));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(30, 194, 139, 0.4);
}

#login .login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 194, 139, 0.6);
}

#login .login-btn:active {
    transform: translateY(0);
}

#login .signup-link {
    text-align: center;
    margin-top: 10px;
    color: var(--theme-color7);
}

#login .signup-link a {
    color: var(--theme-color1);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

#login .signup-link a:hover {
    color: var(--theme-color4);
}

#login .floating-img {
    position: absolute;
    top: 50px;
    left: 50px;
    width: 150px;
    animation: float 4s ease-in-out infinite;
    animation-delay: 1.5s;
}

.login-vector {
    animation: float 6s ease-in-out infinite;
    /* width: 400px; */
}

/* ================= Register page design ================= */
#register {
    background: linear-gradient(to bottom, var(--theme-color3) 10%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-x: hidden;
    position: relative;
}

#register::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right,
            rgba(150, 150, 150, 0.4) 1px,
            transparent 1px),
        linear-gradient(to bottom, rgba(150, 150, 150, 0.4) 1px, transparent 1px);
    mask-image: repeating-linear-gradient(to right,
            black 0px,
            black 3px,
            transparent 3px,
            transparent 8px),
        repeating-linear-gradient(to bottom,
            black 0px,
            black 3px,
            transparent 3px,
            transparent 8px);
    mask-composite: intersect;
    -webkit-mask-composite: intersect;
    background-size: 40px 40px;
    z-index: 0;
    pointer-events: none;
}

#register .container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

#register .logo-section {
    flex: 1;
    min-width: 400px;
    text-align: center;
    color: var(--theme-color6);
    padding: 20px;
    animation: fadeIn 1s ease-out;
}

#register .features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    align-items: center;
}

#register .feature {
    background: var(--theme-color4);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 10px;
    width: 150px;
    text-align: center;
    transition: transform 0.3s ease;
    align-items: center;
}

#register .feature:hover {
    transform: translateY(-5px);
}

#register .feature i {
    font-size: 2.5rem;
    color: var(--theme-color1);
    margin-bottom: 15px;
}

#register .feature p {
    margin-bottom: 0;
    font-size: 1.1rem;
}

#register .register-section {
    flex: 1.5;
    min-width: 600px;
    max-width: 800px;
}

#register .register-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    animation: slideUp 0.8s ease-out;
}

#register .register-card::after {
    content: "";
    position: absolute;
    top: 0px;
    right: -12px;
    width: 135px;
    height: 135px;
    background-image: url(../images/features/dots.png);
    transition: all 0.4s ease;
    z-index: 0;
    background-repeat: no-repeat;
}

#register .register-header {
    text-align: center;
    margin-bottom: 40px;
}

#register .register-header h2 {
    color: var(--theme-color8);
    font-size: 2rem;
    margin-bottom: 10px;
}

#register .register-header p {
    color: var(--theme-color7);
    font-size: 1.2rem;
}

#register .user-type-selector {
    display: flex;
    margin-bottom: 35px;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
}

#register .user-type-option {
    flex: 1;
    text-align: center;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--theme-color7);
    font-size: 1.1rem;
}

#register .user-type-option.active {
    background: linear-gradient(90deg, var(--theme-color1), var(--theme-color4));
    color: white;
}

#register .form-section {
    display: none;
}

#register .form-section.active {
    display: block;
}

#register #searchform {
    background-color: transparent;
    padding: 0px;
    box-shadow: none;
}

#register .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

#register .form-col {
    flex: 1;
    min-width: 250px;
}

#register .input-container {
    position: relative;
    margin-bottom: 18px;

}

#register .input-container input,
#register .input-container select {
    width: 100%;
    padding: 16px 16px 16px 50px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding-left: 50px !important;
}

#register .input-container input:focus,
#register .input-container select:focus {
    border-color: var(--theme-color1);
    box-shadow: 0 0 0 3px rgba(30, 194, 139, 0.2);
    outline: none;
}

#register .input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--theme-color7);
    font-size: 1rem;
}

#register .options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1rem;
}

#register .terms {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--theme-color7);
}

#register .terms input {
    accent-color: var(--theme-color1);
    width: 18px;
    height: 18px;
}

#register .terms a {
    color: var(--theme-color1);
    text-decoration: none;
}

#register .terms a:hover {
    text-decoration: underline;
}

#register .register-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(90deg, var(--theme-color1), var(--theme-color4));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(30, 194, 139, 0.4);
}

#register .register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 194, 139, 0.6);
}

#register .register-btn:active {
    transform: translateY(0);
}

#register .login-link {
    text-align: center;
    margin-top: 10px;
    color: var(--theme-color7);
    font-size: 1.1rem;
}

#register .login-link a {
    color: var(--theme-color1);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

#register .login-link a:hover {
    color: var(--theme-color4);
}

#register .floating-img {
    position: absolute;
    top: 120px;
    left: 50px;
    width: 140px;
    animation: float 4s ease-in-out infinite;
    animation-delay: 1.5s;
}

.register-vector {
    animation: float 6s ease-in-out infinite;
}

/* ================ Preloader ================ */
#preloader {
    position: fixed;
    inset: 0;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#preloader .preloader-logo {
    width: 200px;
    position: relative;
    z-index: 2;
}

/* Animated Border Container */
#preloader .preloader-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* =============== Preloader ============= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.loading-bar-container {
    width: 300px;
    height: 4px;
    background-color: #ddd;
    overflow: hidden;
    border-radius: 2px;
}

.loading-bar {
    width: 0;
    height: 100%;
    background-color: var(--theme-color2);
    transition: width 2s ease-in-out;
}


.terms-content {
    padding: 60px 0;
    background-color: #f8f9fa;
}

/* Terms & condition ============== */
.terms-container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

.terms-section {
    margin-bottom: 40px;
}

.terms-section h2 {
    color: var(--theme-color8);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.terms-section h3 {
    color: var(--theme-color1);
    margin: 25px 0 15px;
    font-size: 1.3rem;
}

.terms-section p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

.terms-section ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.terms-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.highlight-box {
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 5px 5px 0;
}

.last-updated {
    background-color: #e8f4fc;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 30px;
    font-style: italic;
}

/* Privacy policy =========== */
.privacy-policy-section {
    background-color: #fff;
}

.privacy-content h2 {
    color: var(--theme-color8);
    font-weight: 600;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.privacy-content h4 {
    color: var(--theme-color8);
    font-weight: 500;
}

.privacy-content ul {
    padding-left: 20px;
}

.privacy-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.policy-intro {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--theme-color1);
}

.policy-section {
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
}

.policy-section:last-child {
    border-bottom: none;
}

/* Blog Comment */
.comments-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e7eb;
}

.comment {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 8px;
    position: relative;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--theme-color4) 0%, var(--theme-color1) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
}

.comment-content {
    flex: 1;
}

.comment-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: #1f2937;
    font-weight: 600;
}

.comment-meta {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.comment-content p {
    margin: 0.75rem 0;
    color: #374151;
    line-height: 1.6;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.reply-btn {
    background: none;
    border: none;
    color: var(--theme-color4);
    font-size: 0.875rem;
    cursor: pointer;
    padding: 0.5rem 0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.reply-btn:hover {
    color: var(--theme-color4);
}

.reply-btn i {
    margin-right: 0.25rem;
}

/* Replies */
.replies {
    margin-top: 1rem;
    margin-left: 2rem;
    padding-left: 1.5rem;
    border-left: 3px solid #e5e7eb;
}

.reply-comment {
    background: white;
    margin-bottom: 1rem;
}

.reply-comment .comment-avatar {
    width: 40px;
    height: 40px;
    font-size: 14px;
}

/* Reply Form */
.reply-form-container {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
}

.reply-form-container h5 {
    margin: 0 0 1rem 0;
    color: #1f2937;
    font-size: 1rem;
    font-weight: 600;
}

.reply-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.cancel-btn {
    background: #6b7280;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cancel-btn:hover {
    background: #4b5563;
}

/* Comment Form */
.contact-form {
    margin-top: 3rem;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--theme-color4);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-control.is-invalid {
    border-color: #ef4444;
}

.invalid-feedback {
    display: block;
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.submit-btn {
    background: linear-gradient(135deg, var(--theme-color4) 0%, var(--theme-color1) 100%);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(102, 126, 234, 0.2);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(102, 126, 234, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Alerts */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
}

.alert-danger {
    background: #fee2e2;
    color: #991b1b;
}

.alert i {
    font-size: 1.25rem;
}

.btn-close {
    margin-left: auto;
    opacity: 0.5;
    cursor: pointer;
}

/* ============ Job Details page ============= */
/* Breadcrumb */
.breadcrumb2 {
    margin-top: 100px;
    padding: 20px 0;
    font-size: 14px;
    color: var(--theme-color7);
}

.breadcrumb2 a {
    color: var(--theme-color1);
    text-decoration: none;
}

.breadcrumb2 a:hover {
    text-decoration: underline;
}

/* Job Details Layout */
.job-details-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

/* Job Header */
.job-details-container .job-header2 {
    background-color: var(--theme-color6);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.job-details-container .job-header2 .apply-btn {
    font-size: 18px;
    padding: 12px 30px;
    background-color: var(--theme-color1);
    color: #fff;
    border: none;
    box-shadow: 0 4px 10px rgba(30, 194, 139, 0.3);
}

.job-details-container .job-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.job-details-container .job-title {
    font-size: 28px;
    color: var(--theme-color8);
    margin-bottom: 5px;
}

.job-details-container .job-company {
    font-size: 18px;
    color: var(--theme-color7);
    margin-bottom: 15px;
}

.job-details-container .job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.job-details-container .meta-item4 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--theme-color7);
}

.job-details-container .job-salary {
    color: var(--theme-color2);
    font-weight: 600;
}

.job-details-container .job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.job-details-container .tag {
    background-color: var(--theme-color3);
    color: var(--theme-color4);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.job-details-container .apply-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid var(--theme-color3);
}

.job-details-container .save-job {
    background: none;
    border: none;
    color: var(--theme-color7);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-details-container .save-job:hover {
    color: var(--theme-color1);
}

/* Job Content */
.job-details-container .job-content {
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
    background-color: var(--theme-color6);
}

.job-details-container .section-title {
    font-size: 22px;
    color: var(--theme-color8);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--theme-color3);
    text-align: left;
}

.job-details-container .job-description,
.job-details-container .job-responsibilities,
.job-details-container .job-benefits {
    margin-bottom: 30px;
}

.job-details-container .job-description p,
.job-details-container .job-responsibilities p,
.job-details-container .job-benefits p {
    color: var(--theme-color7);
    margin-bottom: 15px;
}

.job-details-container .job-responsibilities ul {
    padding-left: 20px;
}

.job-details-container .job-responsibilities li {
    margin-bottom: 8px;
    position: relative;
}

.job-details-container .job-responsibilities li:before {
    content: "•";
    color: var(--theme-color1);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Requirements Section */
.job-details-container .requirements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 15px;
}

.job-details-container .requirement-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.job-details-container .requirement-item i {
    color: var(--theme-color1);
    margin-top: 3px;
}

.job-details-container .requirement-label {
    font-weight: 600;
    color: var(--theme-color8);
    margin-bottom: 3px;
}

.job-details-container .requirement-value {
    color: var(--theme-color7);
}

/* Skills Section */
.job-details-container .skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.job-details-container .skill-tag {
    background-color: var(--light-gray);
    border: 1px solid var(--border-color);
    padding: 8px 15px;
    border-radius: 5px;
    color: var(--theme-color8);
}

/* Sidebar */
.job-details-container .job-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.job-details-container .sidebar-card {
    background-color: var(--theme-color6);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.job-details-container .company-info {
    text-align: center;
}

.job-details-container .company-logo {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color3);
    border: 1px solid var(--border-color);
}

.job-details-container .company-logo img {
    max-width: 100%;
    max-height: 100%;
}

.job-details-container .company-logo i {
    font-size: 36px;
    color: var(--theme-color1);
}

.job-details-container .company-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.job-details-container .company-website {
    color: var(--theme-color1);
    text-decoration: none;
    font-weight: 500;
}

.job-details-container .company-website:hover {
    text-decoration: underline;
}

.job-details-container .job-summary .summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.job-details-container .summary-item:last-child {
    border-bottom: none;
}

.job-details-container .summary-label {
    color: var(--theme-color7);
}

.job-details-container .summary-value {
    font-weight: 600;
    color: var(--theme-color8);
}

.job-details-container .deadline-warning {
    background-color: #fff8e1;
    border-left: 4px solid var(--theme-color2);
    padding: 15px;
    border-radius: 5px;
    margin-top: 15px;
}

.job-details-container .deadline-warning i {
    color: var(--theme-color2);
    margin-right: 8px;
}

.job-samary {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--theme-color8);
    font-weight: 600;
}

.requirment-icon {
    color: var(--theme-color1);
}

.requirment-icon2 {
    color: var(--theme-color7);
}

.job-details-company-name {
    color: var(--theme-color7);
    margin: 10px 0;
    font-size: 14px;
}
.job-details-container .social1{
    display: flex;
    gap: 10px;
    margin-top: 15px;
}
.job-details-container .social1 .facebook{
    background-color: #3b5998;
    color: white;
    flex: 1;
}
.job-details-container .social1 .twitter{
    background-color: #1da1f2;
    color: white;
    flex: 1;
}
.job-details-container .social1 .linkedin{
    background-color: #0077b5;
    color: white;
    flex: 1;
}
@media (max-width: 992px) {
    .job-details-container {
        grid-template-columns: 1fr;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .job-title-row {
        flex-direction: column;
        gap: 15px;
    }

    .apply-actions {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
.my-120{
    margin-top: 120px !important;
    margin-bottom: 120px !important;
}
.candidate-card{
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: none;
}
.toggle-password {
    position: absolute;
    top: 50px;
    right: 12px;
    cursor: pointer;
    color: #6c757d;
}
.toggle-password i {
    font-size: 18px;
}

.candidate-sidebar {
    border-radius: 12px;
    overflow: hidden;
}

.candidate-sidebar .avatar-placeholder {
    background: linear-gradient(135deg,  0%, var(--theme-color1) 100%);
}

.candidate-sidebar .sidebar-item {
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.candidate-sidebar .sidebar-item:last-child {
    border-bottom: none;
}

.candidate-sidebar .sidebar-item a {
    color: #495057 !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.candidate-sidebar .sidebar-item a:hover {
    background-color: #f8f9fa;
    color: var(--theme-color1);
}

.candidate-sidebar .sidebar-item.active a {
    background-color: #eef2ff;
    color: var(--theme-color1);
    border-left: 4px solid var(--theme-color1);
}

.candidate-sidebar .sidebar-item.active i {
    color: var(--theme-color1);
}

.candidate-sidebar .sidebar-item i {
    width: 20px;
    text-align: center;
    color: #6c757d;
}

.candidate-sidebar .stat-box {
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.candidate-sidebar .stat-box:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
}

.candidate-sidebar .stat-number {
    font-size: 1.25rem;
    line-height: 1.2;
}

.candidate-sidebar .stat-label {
    font-size: 0.75rem;
}

.candidate-sidebar .card {
    border-radius: 12px;
}

.candidate-sidebar .progress {
    border-radius: 10px;
}

.candidate-sidebar .progress-bar {
    border-radius: 10px;
}

.candidate-sidebar .btn-primary {
    background: linear-gradient(135deg, var(--theme-color1) 0%, var(--theme-color1) 100%);
    border: none;
    border-radius: 8px;
}

.candidate-sidebar .btn-outline-primary {
    border-radius: 8px;
}

.candidate-sidebar .badge {
    font-size: 0.7rem;
    padding: 0.25em 0.6em;
}
.cv-edit-page .cv-tabs {
        border-bottom: 2px solid var(--theme-color3);
        margin-bottom: 2rem;
    }
    .cv-edit-page .cv-tabs .nav-link {
        border: none;
        color: var(--theme-color7);
        font-weight: 500;
        padding: 1rem;
        border-bottom: 3px solid transparent;
        transition: all 0.3s ease;
    }
    .cv-edit-page .cv-tabs .nav-link:hover {
        color: var(--theme-color1);
        border-bottom-color: var(--theme-color3);
    }
    .cv-edit-page .cv-tabs .nav-link.active {
        color: var(--theme-color1);
        background: none;
        border-bottom-color: var(--theme-color1);
    }
    .cv-edit-page .cv-tabs .nav-link i {
        margin-right: 0.5rem;
    }

    .cv-edit-page .preview-image {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 50%;
        border: 2px solid var(--theme-color3);
    }

    .cv-edit-page .education-item, .experience-item, .skill-item {
        transition: all 0.3s ease;
    }
    .cv-edit-page .education-item:hover, .experience-item:hover, .skill-item:hover {
        box-shadow: 0 2px 8px rgba(30, 194, 139, 0.1);
    }

    .cv-edit-page .profile-completion .progress {
        background-color: #f8f9fa;
    }

    .cv-edit-page .btn-group .btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.875rem;
    }
     .cv-edit-page .progress {
        height: 8px;
    }
#cv .cv-view-page {
        max-width: 1000px;
        margin: 0 auto;
    }

    #cv .cv-card {
        background: var(--theme-color6);
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    #cv .cv-header {
        background: linear-gradient(135deg, var(--theme-color1), var(--theme-color4));
        color: white;
        padding: 3rem;
    }

    #cv .candidate-name {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: white;
    }

    #cv .candidate-title {
        font-size: 1.25rem;
        font-weight: 400;
        margin-bottom: 1rem;
        color: var(--theme-color3);
    }

    #cv .contact-info {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    #cv .contact-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
    }

    #cv .contact-item i {
        color: var(--theme-color3);
    }

    #cv .social-links {
        display: flex;
        gap: 0.75rem;
    }

    #cv .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    #cv .social-link:hover {
        background: var(--theme-color2);
        color: white;
        transform: translateY(-2px);
    }

    #cv .profile-picture {
        width: 150px;
        height: 150px;
        object-fit: cover;
        border-radius: 50%;
        border: 4px solid rgba(255, 255, 255, 0.3);
    }

    #cv .profile-placeholder {
        width: 150px;
        height: 150px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        margin-left: auto;
    }

    #cv .cv-body {
        padding: 2rem 3rem;
    }

    #cv .cv-section {
        margin-bottom: 2.5rem;
    }

    #cv .section-title {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--theme-color8);
        margin-bottom: 1.5rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid var(--theme-color3);
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    #cv .section-title i {
        color: var(--theme-color1);
    }

    #cv .career-objective {
        font-size: 1rem;
        line-height: 1.7;
        color: var(--theme-color7);
    }

    #cv .experience-item, .education-item {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #eee;
    }

    #cv .experience-item:last-child, .education-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    #cv .experience-header, .education-header {
        display: flex;
        justify-content: between;
        align-items: flex-start;
        margin-bottom: 0.5rem;
    }

    #cv .job-title, .degree-title {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--theme-color8);
        margin-bottom: 0.25rem;
        flex: 1;
    }

    #cv .experience-duration, .education-year {
        font-size: 0.9rem;
        color: var(--theme-color1);
        font-weight: 500;
        background: var(--theme-color3);
        padding: 0.25rem 0.75rem;
        border-radius: 20px;
    }

    #cv .company-name, .institute-name {
        font-size: 1.1rem;
        color: var(--theme-color2);
        margin-bottom: 0.5rem;
    }

    #cv .company-location {
        font-size: 0.9rem;
        color: var(--theme-color7);
        margin-bottom: 0.5rem;
    }

    #cv .responsibilities {
        font-size: 0.95rem;
        line-height: 1.6;
        color: var(--theme-color7);
        white-space: pre-line;
    }

    #cv .education-details {
        display: flex;
        gap: 1rem;
        margin-bottom: 0.5rem;
        flex-wrap: wrap;
    }

    #cv .detail-item {
        font-size: 0.9rem;
        color: var(--theme-color7);
        background: #f8f9fa;
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
    }

    #cv .education-description {
        font-size: 0.95rem;
        line-height: 1.6;
        color: var(--theme-color7);
    }

    #cv .skills-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    #cv .skill-item {
        background: #f8f9fa;
        padding: 1rem;
        border-radius: 8px;
    }

    #cv .skill-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.75rem;
    }

    #cv .skill-name {
        font-weight: 600;
        color: var(--theme-color8);
    }

    #cv .skill-level {
        font-size: 0.8rem;
        color: var(--theme-color1);
        background: var(--theme-color3);
        padding: 0.25rem 0.5rem;
        border-radius: 12px;
    }

    #cv .skill-bar {
        height: 8px;
        background: #e9ecef;
        border-radius: 4px;
        overflow: hidden;
    }

    #cv .skill-progress {
        height: 100%;
        background: var(--theme-color1);
        transition: width 0.3s ease;
    }

    #cv .personal-info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1rem;
    }

    #cv .info-item {
        display: flex;
        padding: 0.75rem;
        background: #f8f9fa;
        border-radius: 6px;
    }

    #cv .info-label {
        font-weight: 600;
        color: var(--theme-color8);
        min-width: 140px;
    }

    #cv .info-value {
        color: var(--theme-color7);
    }

    #cv .cv-footer {
        background: var(--theme-color8);
        color: white;
        padding: 1.5rem;
    }

    #cv .cv-footer a {
        color: var(--theme-color3);
        text-decoration: none;
    }

    #cv .cv-footer a:hover {
        color: var(--theme-color2);
    }

    @media (max-width: 768px) {
        #cv .cv-header {
            padding: 2rem;
        }

        #cv .cv-body {
            padding: 1.5rem;
        }

        #cv .candidate-name {
            font-size: 2rem;
        }

        #cv .contact-info {
            flex-direction: column;
            gap: 0.5rem;
        }

        #cv .personal-info-grid {
            grid-template-columns: 1fr;
        }

        #cv .skills-grid {
            grid-template-columns: 1fr;
        }

        #cv .profile-picture, .profile-placeholder {
            width: 120px;
            height: 120px;
            margin-top: 1rem;
        }
    }
    .candidate-dashboard-card{
        border: none;
        box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.175);
        border-top: 2px solid var(--theme-color1);
        border-radius: 10px;
        transition: 0.5s;
    }
    .candidate-dashboard-card:hover{
        box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
        border-top: 2px solid var(--theme-color2);
    }
    .candidate-dashboard-card .stat-number{
        font-size: 22px !important;
        color: var(--theme-color2);
    }
    .tooltip-btn {
        position: relative;
        cursor: pointer;
        text-decoration: none;
        padding: 0 5px;
    }

    .tooltip-btn::after {
        content: attr(data-tooltip);
        position: absolute;
        bottom: 125%;
        /* Position above the button */
        left: 50%;
        transform: translateX(-50%);
        background-color: var(--theme-color1);
        color: #fff;
        padding: 5px 8px;
        border-radius: 4px;
        white-space: nowrap;
        font-size: 12px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease-in-out;
        z-index: 1000;
    }

    .tooltip-btn:hover::after {
        opacity: 1;
        visibility: visible;
    }

    .notification-wrapper {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.notification-card {
    display: flex;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.notification-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.notification-card.unseen {
    background: var(--bg-light);
    border-left: 4px solid var(--theme-color1);
}

.notification-left {
    margin-right: 14px;
}

.notification-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

.notification-body {
    flex: 1;
}

.notification-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.notification-text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.notification-time {
    font-size: 12px;
    color: #999;
    margin-top: 6px;
}

.notification-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 10px;
}

.btn-view,
.btn-delete {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: #fff;
    cursor: pointer;
}

.btn-view {
    background: var(--info-color);
}

.btn-delete {
    background: var(--danger-color);
}

.new-badge {
    background: var(--success-color);
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
}

.notification-empty {
    text-align: center;
    padding: 60px 0;
    color: #aaa;
}

.notification-empty i {
    font-size: 48px;
    margin-bottom: 10px;
}

.custom-language-dropdown {
        position: relative;
        width: 100%;
        cursor: pointer;
    }

    .selected-language {
        background: #f8f9fa;
        padding: 10px 15px;
        border-radius: 6px;
        border: 1px solid #ddd;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        font-weight: 500;
        gap: 10px;
    }
    .selected-language i{
        float:right;
    }

    .language-options {
        list-style: none;
        padding: 0;
        margin: 5px 0 0 0;
        position: absolute;
        width: 100%;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 6px;
        display: none;
        max-height: 200px;
        overflow-y: auto;
        z-index: 999;
    }

    .language-options li {
        padding: 10px 15px;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: 0.2s;
    }

    .language-options li:hover {
        background: #f1f1f1;
    }

    .language-options li.active {
        background: #e9ecef;
        font-weight: 600;
    }

    .language-options img {
        width: 20px;
        height: 14px;
        object-fit: cover;
        border-radius: 2px;
    }
    .custom-img-1{
        width: 50px;
        height: 50px;
    }
    .btn-clear-filter{
        background:none;
        border:none;
        color: var(--primary-color);
        font-size:12px;
        cursor:pointer;
        margin-left:5px;
    }
    .btn-clear-filter{
        background:none;
        border:none;
        color: var(--primary-color);
        font-size:12px;
        cursor:pointer;
        margin-left:5px;
    }
    .mt-10{
        margin-top: 10px;
    }
    .custom-height{
        width: 80px;
        height: 80px;
    }
    .rest{
        text-align: center;
        margin: 30px 0;
    }


.captcha-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 15px;
    border-radius: 8px;
}

.captcha-container .d-flex {
    display: flex;
    align-items: center;
    gap: 15px;
}

.captcha-container .captcha-image {
    flex-shrink: 0;
}

.captcha-container .captcha-image img {
    border-radius: 6px;
    border: 1px solid #ddd;
    height: 40px;
    width: auto;
}

.captcha-container .captcha-input-wrapper {
    flex: 1;
}

.captcha-container .input-container {
    position: relative;
    width: 100%;
}

.captcha-container .input-container .form-control {
    width: 100%;
    padding: 10px 15px 10px 40px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

.captcha-container .input-container .form-control:focus {
    outline: none;
    border-color: #007bff;
}

.captcha-container .input-container .form-control.is-invalid {
    border-color: #dc3545;
}
.h-40px{
    height: 43px !important;
}

@media (max-width: 576px) {
    .d-flex {
        flex-direction: column;
        align-items: stretch;
    }

    .captcha-image {
        text-align: center;
    }

    .captcha-image img {
        height: 50px;
    }
}
.mt--16{
    margin-top: -16px !important;
}
