body {
	font-family: 'Poppins', sans-serif;
	font-weight: normal;
	font-style: normal;
	font-size: 15px;
	color: #8b98af;
    background-color: #f9f9f9;
}
.img {
	max-width: 100%;
	transition: all 0.3s ease-out 0s;
}
.f-left {
	float: left
}
.f-right {
	float: right
}
.fix {
	overflow: hidden
}
a,
.button {
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
a:focus,
.btn:focus,
.button:focus {
	text-decoration: none;
	outline: none;
	box-shadow: none;
}
a:focus,
a:hover,
.portfolio-cat a:hover,
.footer -menu li a:hover {
	text-decoration: none;
}
a,
button {
	color: #1696e7;
	outline: medium none;
}
button:focus,input:focus,input:focus,textarea,textarea:focus{outline: 0}
.uppercase {
	text-transform: uppercase;
}
.capitalize {
	text-transform: capitalize;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Baloo Bhaijaan', cursive;
	color:var(--bs-secondary-color) !important;
	margin-top: 0px;
	font-style: normal;
	font-weight: 400;
	text-transform: normal;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: inherit;
}
h1 {
	font-size: 40px;
	font-weight: 500;
}
h2 {
	font-size: 35px;
}
h3 {
	font-size: 28px;
}
h4 {
	font-size: 22px;
}
h5 {
	font-size: 18px;
}
h6 {
	font-size: 16px;
}
ul {
	margin: 0px;
	padding: 0px;
}
li {
	list-style: none
}
p {
	font-size: 15px;
	font-weight: normal;
	line-height: 2;
	color: #8b98af;
	margin-bottom: 15px;
}
hr {
	border-bottom: 1px solid #eceff8;
	border-top: 0 none;
	margin: 30px 0;
	padding: 0;
}
label {
	color: #7e7e7e;
	cursor: pointer;
	font-size: 14px;
	font-weight: 400;
}
*::-moz-selection {
	background: #d6b161;
	color: #fff;
	text-shadow: none;
}
::-moz-selection {
	background: #444;
	color: #fff;
	text-shadow: none;
}
::selection {
	background: #444;
	color: #fff;
	text-shadow: none;
}
*::-moz-placeholder {
	color: #555555;
	font-size: 14px;
	opacity: 1;
}
*::placeholder {
	color: #555555;
	font-size: 14px;
	opacity: 1;
}
.theme-overlay {
	position: relative
}
.theme-overlay::before {
	background: #1696e7 none repeat scroll 0 0;
	content: "";
	height: 100%;
	left: 0;
	opacity: 0.6;
	position: absolute;
	top: 0;
	width: 100%;
}
.separator {
	border-top: 1px solid #f2f2f2
}

/* button style */
.btn {
	background: #0b1175 none repeat scroll 0 0;
	border-radius: 0;
	color: #fff;
	cursor: pointer;
	/* display: inline-block; */
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1;
	margin-bottom: 0;
	text-align: center;
	text-transform: uppercase;
	touch-action: manipulation;
	transition: border-color 0.3s, color 0.3s;
	transition-timing-function: ease, ease;
	transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
	box-sizing: border-box;
	vertical-align: middle;
	white-space: nowrap;
	position: relative;
	overflow: hidden;
}

.btn:hover {
	box-shadow: none;
	color: #000000;
}

/* 1. HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f9fa; /* Soft light grey */
    color: #333; /* Dark grey text */
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
	z-index: 1000;
}

.header-left {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #555; /* Slightly darker grey */
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.text-center {
    margin-right: 10px;
    font-weight: 600;
    color: #444;
}



/* 2. NAVBAR */
.transparent-header {
	width: 100%;
	background: rgba(0, 0, 0, 0.8);
	padding: 10px 0;
	z-index: 1000;
}

.logo img {
	max-height: 50px;
}
.navbar-nav .nav-link {
	color: white;
	font-weight: 500;
	transition: color 0.3s;
}
.navbar-nav .nav-link:hover {
	color: #f8b400;
}
.navbar-toggler {
	border: none;
	outline: none;
}
.overlay {
	height: 100%;
	width: 0;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.9);
	overflow-x: hidden;
	transition: 0.5s;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.overlay-content {
    list-style: none;
    padding: 20px;
    margin: 0;
    color: #fff;
    text-align: center;
    width: 250px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.overlay-content li {
    margin: 10px 0;
}

.overlay-content a {
    display: block;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 15px;
    transition: 0.3s ease;
    border-radius: 5px;
}

.overlay-content a:hover {
    background: #f39c12;
    color: #222;
}

.overlay-content p {
    margin: 10px 0;
    font-size: 14px;
    font-weight: 500;
    color: #ccc;
}

.overlay-content p span {
    font-weight: bold;
    color: #fff;
}

.close-btn {
	position: absolute;
	top: 20px;
	right: 45px;
	font-size: 40px;
	color: white;
	background: none;
	border: none;
}
@media (max-width: 991px) {
	.navbar-collapse {
		display: none;
	}
	header {
		display: none;
	}
}

/* 3. SLIDER */
.slider {
    /* position: relative; */
    width: 100%;
    max-width: 100%;
    overflow: hidden;
	height: 450px;
}

/* Images within the slider */
.slider-images img {
    width: 100%;
    display: none;
    /* Hide all images initially */
}

/* Active image */
.slider-images img.active {
    display: block;
    /* Show only the active image */
}

/* Navigation buttons */
.slider-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

#prev, #next {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

#prev:hover, #next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


/* 4. PROFILE */

.profile-section {
	background: #F8F9FA;
	padding: 60px 20px;
  }
  
  .profile-container {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 1100px;
	margin: auto;
	gap: 40px;
  }
  
  .profile-image img {
	width: 100%;
	max-width: 450px;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .profile-content {
	max-width: 600px;
  }
  
  .profile-content h2 {
	font-size: 28px;
	color: #2C3E50;
	margin-bottom: 15px;
  }
  
  .profile-content p {
	font-size: 16px;
	color: #555;
	line-height: 1.6;
  }
  
 
  
  /* Responsive */
  @media (max-width: 768px) {
	.profile-container {
	  flex-direction: column;
	  text-align: center;
	}
  
	.profile-image img {
	  max-width: 80%;
	}
  }
  
/* Sidebar styling */
.sidebar {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.sidebar h4 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
}

.sidebar .form-label {
    font-weight: bold;
}

.sidebar .form-control,
.sidebar .form-select {
    border-radius: 4px;
    margin-bottom: 15px;
}

.sidebar .form-control::placeholder,
.sidebar .form-select {
    font-size: 0.9rem;
}

/* Styling the search button */
.sidebar .btn {
    background-color: #007bff;
    color: white;
    padding: 12px;
    border-radius: 4px;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.sidebar .btn:hover {
    background-color: #0056b3;
}



/* Styling for the middle navbar */
/* Base Styles */
.middle-filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 10px;
    background-color: #f8f9fa; /* Light gray background */
}

/* Filter Tab Styling */
.filter-tab {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 30px;
    border: 2px solid #333;
    transition: 0.3s ease;
}

/* Active Filter */
.active-filter {
    background-color: #333;
    color: white;
}

/* Hover Effect */
.filter-tab:hover {
    background-color: #ddd;
    color: #000;
}

/* Tablet & Smaller Screens (≤ 768px) */
@media (max-width: 768px) {
    .middle-filter {
        gap: 5px;
    }

    .filter-tab {
        font-size: 14px;
        padding: 8px 12px;
    }
}

/* Mobile View (≤ 480px) */
@media (max-width: 480px) {
    .middle-filter {
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
        padding: 10px;
        justify-content: flex-start;
    }

    .filter-tab {
        flex-shrink: 0;
        padding: 8px 10px;
        font-size: 10px;
    }
}
/* Job container styling */
/* Job Card Container */
.job-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr)); /* Default: 2 per row */
    gap: 20px;
    padding: 20px;
}

/* Job Card Styling */
.job-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
    border: 1px solid #ddd;
}

/* Hover Effect */
.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* Title */
.job-card h5 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

/* Paragraphs */
.job-card p {
    font-size: 14px;
    color: #555;
    margin: 5px 0;
}

/* Button Styling */
.job-card .btn {
    display: inline-block;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 14px;
}

/* Mobile View (≤ 600px): 1 Job Card per Row */
@media (max-width: 600px) {
    .job-container {
        grid-template-columns: 1fr; /* Only 1 card per row */
        padding: 15px;
    }
}

/* 5. ABOUT US */
.about{
	background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
    border: 1px solid #ddd;
}
.about-section {
	background: #f8f9fa;
	padding: 60px 0;
}
.about-heading {
	text-align: center;
	margin-bottom: 40px;
	font-size: 2rem;
	font-weight: bold;
	color: #333;
}
.icon-box {
	font-size: 2rem;
	color: #007bff;
}
.about-content {
	padding: 20px;
	background: rgb(0, 0, 0);
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


/* 6. DETAIL */

.job-details-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    text-align: left;
}

.job-title {
    font-size: 28px;
    font-weight: bold;
    color: #343a40;
    margin-bottom: 15px;
}
/* Company Banner */
.company-banner img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Company Logo */
.company-logo {
    text-align: center;
    margin-bottom: 20px;
}

.company-logo img {
    width: 120px;
    height: 120px;
    object-fit: fill;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.company-info {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 15px;
    line-height: 1.6;
}

.job-info {
    font-size: 16px;
    color: #495057;
    margin-bottom: 20px;
}

.job-description {
    font-size: 16px;
    color: #212529;
    line-height: 1.8;
}
/* Job Details Card */
.job-details-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}


/* 7. CONTENT */
.contact-container {
	max-width: 800px;
	margin: 50px auto;
	background: #fff;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.contact-header {
	text-align: center;
	margin-bottom: 20px;
}
.contact-info {
	text-align: center;
	margin-bottom: 20px;
}
.contact-info i {
	font-size: 24px;
	color: #007bff;
	margin-right: 10px;
}
.form-control {
	border-radius: 5px;
}
.btn-primary {
	width: 100%;
	border-radius: 5px;
}
.map-container {
	margin-top: 20px;
}
/* Footer Styling */
footer {
    background: #343a40;
    padding: 15px;
    text-align: center;
    color: white;
    margin-top: 30px;
}

footer p {
    margin: 0;
    font-size: 14px;
}

footer span {
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .job-details-card {
        padding: 20px;
    }
    
    .job-title {
        font-size: 24px;
    }
    
    .btn-apply {
        width: 100%;
        text-align: center;
    }
}
