body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
 
}
:root{

    --primary: #0057D9;
    --primary-dark: #003B95;

    --secondary: #7AC70C;
    --secondary-dark: #5A9A08;

    --accent: #F59E0B;
    --text: #1F2937;
    --text-light: #6B7280;

    --bg: #F8FAFC;
    --white: #FFFFFF;
    --border: #E5E7EB;
    --brand-gradient: linear-gradient(
        135deg,
        #003B95 0%,
        #0057D9 35%,
        #1E88E5 60%,
        #7AC70C 100%
    );
    --btn-gradient: linear-gradient(
        90deg,
        #0057D9 0%,
        #1E88E5 50%,
        #7AC70C 100%
    );

    --btn-gradient-hover: linear-gradient(
        90deg,
        #003B95 0%,
        #0057D9 50%,
        #5A9A08 100%
    );
}
header {
  background: #ffffff;
  border-bottom: 1px solid #e4e9f0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding:5px 0px;
}
.logo-icon img {
  height: 80px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  flex: 1;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.nav-links a {
  display: block;
  padding: 6px 13px;
  font-weight: 500;
   text-transform: uppercase;
  font-size: 15px;
  line-height: 18px;
  letter-spacing:0.8px;
  color: rgb(5, 38, 78);
  text-decoration: none;
  border-radius: 7px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 3px;
  background: var(--secondary);
  border-radius: 10px;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 80%;
}
.nav-auth {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.btn-employer {
  padding: 8px 18px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  align-items: center;
  gap: 6px;
  transition: all 0.15s;
  white-space: nowrap;
  background: transparent;
  color: var(--white);
  background:var(--brand-gradient);
  border: 1.5px solid var(--secondary-dark);
}
.btn-employer:hover {
  background: var(--brand-gradient);
  color:var(--white);
}
.btn-employer i {
  margin-right: 3px;
}
.btn-candidate {
  padding: 8px 18px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  align-items: center;
  gap: 6px;
  transition: all 0.15s;
  white-space: nowrap;
  background: #1a56db;
  color: #ffffff;
  border: 1.5px solid #1a56db;
}
.btn-candidate i {
  margin-right: 3px;
}
.btn-candidate:hover {
  background: #0d3fb0;
  border-color: #0d3fb0;
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(26, 86, 219, 0.25);
}
.btn-divider {
  width: 1px;
  height: 22px;
  background: #e4e9f0;
  margin: 0 2px;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  color: #4b5563;
  flex-shrink: 0;
}
.hamburger:hover {
  background: #f3f4f6;
}
.hamburger svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.mobile-menu {
  display: none;
  border-top: 1px solid #e4e9f0;
  padding: 1rem 0;
  background: #fff;
}

.mobile-menu.open {
  display: block;
}
.mobile-menu a {
  display: block;
  padding: 10px 1rem;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  border-radius: 7px;
  transition: background 0.12s, color 0.12s;
}
.mobile-menu a:hover {
  background: #eff4ff;
  color: #1a56db;
}
.mobile-menu .mobile-auth {
  display: flex;
  gap: 8px;
  padding: 10px 1rem 4px;
  flex-wrap: wrap;
}
.mobile-menu .btn-employer {
  flex: 1;
  justify-content: center;
  min-width: 120px;
}
.hero-section{
    position:relative;
    height:520px;
    overflow:hidden;
}

.hero-bg-slider,
.hero-bg-slider .owl-stage-outer,
.hero-bg-slider .owl-stage,
.hero-bg-slider .owl-item{
    height:100%;
    overflow:hidden;
}
.footer-col.my-col{
    margin-top:35px;
}
.bg-slide{
    height:520px;
    background-size:cover;
    background-position:center;
}
.hero-bg-slider{
    position:absolute !important;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:1;
}
.hero-bg-slider::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.4);
    z-index:2;
}

.hero-inner{
    position:relative;
    z-index:3;
    height:100%;
    display:flex;
    align-items:center;
    height:520px;
}

.hero-tag {
  display: inline-block;
  padding: 8px 18px;
  background: #e7f0ff;
  color: #0d6efd;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 10px;
}
.hero-content{
    z-index:999;
    position:relative;
    text-align:center;
}
.hero-content h1 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
}
.hero-content h1 span {
  color: var(--secondary);
}
.hero-content p {
  font-size: 18px;
  color: var(--white);
  margin: 20px 0 15px;
}
.search-btn {
  width: 100%;
  height: 50px;
  border: none;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  border-radius: 5px;
}
.search-btn:hover{
    color: var(--white);
    background: var(--secondary);
}
.hero-btns {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  align-items:center;
  justify-content:center;
}
.btn-find,
.btn-post {
  padding: 15px 35px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
}
.btn-find {
  color: var(--white);
    background: var(--secondary);
    border: 1px solid var(--secondary);
}
.btn-find:hover{
    color: #fff;
    background:var(--secondary-dark);
    border: 1px solid var(--secondary-dark);
}

.btn-post {
  border: 1px solid var(--white);
  color: var(--white);
}
.btn-post:hover {
  color: var(--white);
}
.popular-tags {
  margin-top: 15px;
}
.popular-tags span {
  font-weight: 700;
}
.popular-tags a {
  text-decoration: none;
  margin-left: 10px;
  color: #666;
}
.hero-image {
  position: relative;
  text-align: center;
}
.hero-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.stat-card {
  position: absolute;
  background: #fff;
  padding: 15px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  min-width: 140px;
}
.stat-card h4 {
  color: #0d6efd;
  font-weight: 800;
  margin-bottom: 5px;
}
.stat-card p {
  margin: 0;
  color: #666;
  font-size: 14px;
}
.stat-1 {
  top: 30px;
  left: -20px;
}
.stat-2 {
  top: 45%;
  right: -25px;
}
.stat-3 {
  bottom: 30px;
  left: 20px;
}
.job-search-box {
  background: #fff;
  padding: 20px 15px;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  margin-top: 20px;
}
.search-field {
  position: relative;
}
.search-field i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #0d6efd;
  font-size: 18px;
}
.search-field input {
  width: 100%;
  height: 50px;
  border: 1px solid #e5e7eb;
  border-radius: 5px;
  padding: 0 15px 0 50px;
  outline: none;
  font-size: 13px;
  transition: 0.3s;
}
.search-field input:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

.search-btn i {
  margin-right: 8px;
}
.container-fluid {
  padding: 0px 45px 0px;
}
.category-section {
  background: #ffffff;
  padding: 40px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 20px;
}
.section-label {
  display: inline-block;
  background: #eff4ff;
  color: #1a56db;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.section-title span {
  color: #1a56db;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

/* Category Card */
.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 16px;
  border-radius: 14px;
  border: 1.5px solid #e8ecf0;
  background: #fafbfc;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.cat-card:hover {
  border-color: var(--cat-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.cat-card:hover::before {
  opacity: 1;
}
.cat-name {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: color 0.15s;
}
.cat-icon i{
    font-size:35px;
    color: #fff;
    background: var(--secondary);
    height: 70px;
    width: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cat-card:hover .cat-icon i {
  color: var(--white);
  background: var(--primary);
}

.cat-card:hover .cat-name {
  color: var(--cat-color);
  
}


.cat-count {
  font-size: 11.5px;
  color: #9ca3af;
  position: relative;
  z-index: 1;
  margin-top: -8px;
}

/* View All Button */
.cat-footer {
  text-align: center;
  margin-top: 16px;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 28px;
  border-radius: 9px;
  border: 1.5px solid #1a56db;
  background: transparent;
  color: #1a56db;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
}

.btn-view-all:hover {
  background: var(--brand-gradient);
  color: #ffffff;
}

.btn-view-all svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  transition: transform 0.15s;
}

.btn-view-all:hover svg {
  transform: translateX(3px);
}
.jobs-section {
  background: #fff;
  padding: 40px 0;
}


.jobs-section .section-sub {
  font-size: 15px;
  color: #f3f4f7;
}

/* Jobs Grid */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

/* Job Card */
.job-card {
  background: #ffffff;
  border: 1.5px solid #e8ecf0;
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.job-card:hover {
  border-color: #1a56db;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(26, 86, 219, 0.1);
}

.job-card.featured::before {
  content: 'Featured';
  position: absolute;
  top: 14px;
  right: 14px;
  background: #fff7ed;
  color: #c2410c;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 12px;
  border: 1px solid #fed7aa;
}

/* Card Top */
.card-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.co-logo {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.card-meta {
  flex: 1;
}

.card-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 3px;
  line-height: 1.3;
}

.card-company {
  font-size: 13px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-company svg {
  width: 13px;
  height: 13px;
  stroke: #9ca3af;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* Badges */
.card-badges {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.badge {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 14px;
}

.badge-blue  { background: #eff4ff; color: #1d4ed8; }
.badge-green { background: #f0fdf4; color: #15803d; }
.badge-amber { background: #fffbeb; color: #b45309; }
.badge-gray  { background: #f3f4f6; color: #4b5563; }
.badge-pink  { background: #fdf2f8; color: #9d174d; }

/* Location + Salary Row */
.card-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
}

.card-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  color: #6b7280;
}

.card-location svg {
  width: 13px;
  height: 13px;
  stroke: #9ca3af;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.card-salary {
  font-size: 13px;
  font-weight: 700;
  color: #15803d;
}
.card-apply {
  width: 100%;
  padding: 10px;
  border-radius: 9px;
  border: none;
  background: var(--primary);
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  letter-spacing: 0.2px;
}

.card-apply:hover {
  background: var(--secondary);
}

.jobs-footer {
  text-align: center;
}

.btn-view-jobs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  border-radius: 5px;
  border: 1.5px solid #1a56db;
  background: transparent;
  color: #1a56db;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
}

.btn-view-jobs:hover {
  background: var(--brand-gradient);
  color: #ffffff;
}

.btn-view-jobs svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  transition: transform 0.15s;
}

.btn-view-jobs:hover svg {
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 1024px) {
  .jobs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .jobs-grid { grid-template-columns: 1fr; }
  .jobs-section .section-title { font-size: 22px; }
  .jobs-section { padding: 40px 0; }
}
.companies-section {
  background: #f8fafc;
  padding: 40px 0;
  overflow: hidden;
}

.companies-header {
  text-align: center;
  margin-bottom: 24px;
}
.companies-header h2 {
  font-size: 30px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.companies-header h2 span {
  color: #1a56db;
}
.companies-scroll-wrapper {
  position: relative;
}

/* Fade edges */
.companies-scroll-wrapper::before,
.companies-scroll-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 20px;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}


.companies-scroll-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #f8fafc, transparent);
}

/* Scroll Track */
.companies-scroll-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 4px 20px 4px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

.companies-scroll-track:active {
  cursor: grabbing;
}

/* Webkit Scrollbar */
.companies-scroll-track::-webkit-scrollbar {
  height: 0px;
}

.companies-scroll-track::-webkit-scrollbar-track {
  background: #e2e8f0;
  border-radius: 10px;
}

.companies-scroll-track::-webkit-scrollbar-thumb {
  background: #1a56db;
  border-radius: 10px;
}

.companies-scroll-track::-webkit-scrollbar-thumb:hover {
  background: #0d3fb0;
}

/* Company Card */
.company-card {
  flex: 0 0 200px;
  background: #ffffff;
  border: 1.5px solid #e8ecf0;
  border-radius: 16px;
  padding: 18px 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  scroll-snap-align: start;
  transition: all 0.2s ease;
  text-decoration: none;
}

.company-card:hover {
  border-color: #1a56db;
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(26, 86, 219, 0.1);
}

.company-img-wrap {
  width: 90px;
  height: 90px;
  border-radius: 4px;
  overflow: hidden;
  border: 1.5px solid #e8ecf0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  flex-shrink: 0;
}

.company-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 4px;
}

.company-name {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 10px;
}

.company-industry {
  font-size: 13px;
  color: #9ca3af;
  text-align: center;
  margin-top: -10px;
}

.company-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1.5px solid #e0e7ff;
  background: #eff4ff;
  color: #1a56db;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
  width: 100%;
  justify-content: center;
}

.company-btn i {
  font-size: 12px;
  transition: transform 0.15s;
}

.company-card:hover .company-btn {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #ffffff;
}

.company-card:hover .company-btn i {
  transform: translateX(3px);
}

@media (max-width: 600px) {
  .companies-section { padding: 40px 0; }
  .companies-header h2 { font-size: 24px; }
  .company-card { flex: 0 0 165px; }
}



.testimonials-section {
  background: #ffffff;
  padding: 50px 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 24px;
}

.testimonials-header .section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #eff4ff;
  color: #1a56db;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.testimonials-header h2 {
  font-size: 30px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.testimonials-header h2 span {
  color: #1a56db;
}
.testimonials-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}

.testimonials-carousel .owl-item {
  display: flex;
}
.testimonials-carousel .owl-dots {
  margin-top: 15px;
  text-align: center;
}

.testimonials-carousel .owl-dot span {
  width: 8px;
  height: 8px;
  background: #e2e8f0;
  border-radius: 50%;
  margin: 0 4px;
  display: block;
  transition: all 0.2s;
}

.testimonials-carousel .owl-dot.active span {
  background: #1a56db;
  width: 24px;
  border-radius: 10px;
}

.testimonials-carousel .owl-nav {
  position: absolute;
  top: 40%;
  left: -19px;
  right: -19px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 -20px;
}

.testimonials-carousel .owl-prev,
.testimonials-carousel .owl-next {
  width: 42px;
  height: 42px;
  border-radius: 50% !important;
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: all 0.15s;
  margin: 0 -21px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.testimonials-carousel .owl-prev:hover,
.testimonials-carousel .owl-next:hover {
  background: #1a56db !important;
  border-color: #1a56db !important;
}

.testimonials-carousel .owl-prev span,
.testimonials-carousel .owl-next span {
  display: none;
}

.testimonials-carousel .owl-prev::after,
.testimonials-carousel .owl-next::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 13px;
  color: #6b7280;
}

.testimonials-carousel .owl-prev:hover::after,
.testimonials-carousel .owl-next:hover::after {
  color: #ffffff;
}

.testimonials-carousel .owl-prev::after {
  content: "\f053";
}

.testimonials-carousel .owl-next::after {
  content: "\f054";
}

/* Carousel wrapper for nav positioning */
.carousel-wrapper {
  position: relative;

}

/* Testimonial Card */
.testi-card {
  background: #ffffff;
  border: 1.5px solid #ccc;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin: 0px 8px;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}


.quote-icon {
  width: 40px;
  height: 40px;
  background: #eff4ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quote-icon i {
  font-size: 16px;
  color: #1a56db;
}

.testi-stars {
  display: flex;
  gap: 3px;
}

.testi-stars i {
  font-size: 13px;
  color: #f59e0b;
}

.testi-text {
  font-size: 14.5px;
  color: #374151;
  line-height: 1.75;
  flex: 1;
  margin: 0px;
}

/* Divider */
.testi-divider {
  height: 1px;
  background: #f1f5f9;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #e8ecf0;
  flex-shrink: 0;
}

.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-avatar-initials {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
  border: 2px solid transparent;
}


.testi-name {
  font-size: 14.5px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.testi-role {
  font-size: 12.5px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 5px;
}

.testi-role i {
  font-size: 11px;
  color: #9ca3af;
}

@media (max-width: 600px) {
  .testimonials-header h2 { font-size: 24px; }
  .carousel-wrapper { padding: 0 10px; }
}


.footer {
  background: #132244;
  padding: 40px 0 0;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.6fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  text-decoration: none;
}

.footer-logo-icon {
  width: 38px;
  height: 38px;
  background: #1a56db;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-logo-icon i {
  font-size: 16px;
  color: #ffffff;
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.footer-logo-text span {
  color: #fff;
}

.footer-desc {
  font-size: 15px;
  line-height: 1.75;
  color: #fff;
  font-weight:500;
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.1);
  background:var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.15s;
  color: #fff;
  font-size: 20px;
}

.social-btn:hover {
  background:var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col h4 i {
  font-size: 13px;
  color: #fff;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.footer-links a {
  font-size: 15px;
  color: #fff;
  font-weight:500;
  letter-spacing:0.5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s;
}

.footer-links a i {
  font-size: 11px;
  color: #fff;
  transition: color 0.15s, transform 0.15s;
}

.footer-links a:hover {
  color: #60a5fa;
  padding-left: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 3px;
  background: var(--secondary);
  display: flex;
  color:#fff;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 15px;
  color: #fff;
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-label {
  font-size: 13px;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-value {
  font-size: 12.5px;
  color: #fff;
  font-weight:500;
  text-decoration: none;
  transition: color 0.15s;
}
.contact-value:hover {
  color: #fff;
}
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content:center ;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 14px;
  color: #fff;
}
.footer-copy span {
  color: #fff;
}

.footer-made {
  font-size: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-made i {
  color: #fff;
  font-size: 11px;
}
.about-section {
  background: #f8f8f8;
  padding: 40px 0;
}

.about-inner {
  display: flex;
  align-items: center;
  gap: 64px;
}
.about-left {
  flex: 1;
}

.about-label {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.about-label i {
  font-size: 12px;
}

.about-heading {
  font-size: 34px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}

.about-heading span {
  color: var(--secondary);
}

.about-desc {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 25px;
  background: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
  margin-top: 10px;
}

.about-btn:hover {
  background: var(--secondary);
  gap: 13px;
  color:var(--white);
}

.about-btn i {
  font-size: 14px;
  transition: transform 0.15s;
}

.about-btn:hover i {
  transform: translateX(3px);
}

/* ── RIGHT SIDE ── */
.about-right {
  flex: 0 0 46%;
  max-width: 46%;
  position: relative;
}

.about-img-wrap {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}


.blog-section{
    padding:40px 0;
}

.blog-heading{
    text-align:center;
    margin-bottom:20px;
}

.blog-heading span{
    color:#2563eb;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.blog-heading h2{
    font-size:38px;
    color:#0f172a;
    margin-top:10px;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.blog-card{
    background:#ffffff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(37,99,235,0.12);
    transition:0.35s ease;
    border:1px solid #dbeafe;
}

.blog-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(37,99,235,0.18);
}

.blog-image{
    height:220px;
    overflow:hidden;
}

.blog-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s;
}

.blog-card:hover .blog-image img{
    transform:scale(1.08);
}

.blog-content{
    padding:15px;
}

.blog-date{
    display:inline-block;
    color:#2563eb;
    font-size:14px;
    font-weight:600;
}

.blog-content h3{
    font-size:22px;
    color:#0f172a;
    font-weight:600;
    margin-bottom:8px;
    line-height:1.4;
}

.blog-content p{
    color:#64748b;
    line-height:1.7;
    margin-bottom:10px;
}

.blog-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    color:linear-gradient(135deg,#1d4ed8,#2563eb);
    border-radius:8px;
    font-weight:600;
    transition:0.3s;
}



/*------------------------------------*/
/*-----------pages css----------------*/
/*------------------------------------*/
.breadcrumb-area{
    position: relative;
    background: #132244;
    padding: 60px 60px;
    overflow: hidden;
}

.breadcrumb-area::before{
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    top: -120px;
    right: 10%;
}

.breadcrumb-area::after{
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    bottom: -80px;
    right: -40px;
}
.brow-part{
  font-size:32px;
  color:#fff;
  font-weight: 700;
}
.breadcrumb{
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb a,
.breadcrumb span{
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.breadcrumb a:hover{
    opacity: 0.85;
}

.browse-section {
  background: #f8fafc;
  padding: 40px 0 60px;
}

.browse-inner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
/* ═══════════════════════════
   LEFT SIDEBAR
═══════════════════════════ */
.filter-sidebar {
  flex: 0 0 270px;
  width: 270px;
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.filter-card {
  background: #ffffff;
  border: 1.5px solid #e8ecf0;
  border-radius: 14px;
  padding: 20px;
}

.filter-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.filter-card-head h4 {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-card-head h4 i {
  font-size: 13px;
  color: #1a56db;
}

.filter-reset-all {
  background: none;
  border: none;
  font-size: 12px;
  color: #1a56db;
  cursor: pointer;
  font-weight: 600;
  padding: 0;
}

.filter-reset-all:hover {
  color: #0d3fb0;
}

/* Checkboxes */
.filter-options {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.filter-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.filter-option input[type="checkbox"] {
  display: none;
}

.filter-option-left {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.custom-check {
  width: 17px;
  height: 17px;
  border-radius: 5px;
  border: 1.5px solid #cbd5e1;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s;
}

.filter-option input:checked ~ .filter-option-left .custom-check {
  background: #1a56db;
  border-color: #1a56db;
}

.filter-option input:checked ~ .filter-option-left .custom-check::after {
  content: '\f00c';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 9px;
  color: #ffffff;
}

.filter-option-label {
  font-size: 13.5px;
  color: #374151;
  font-weight: 500;
}
.filter-count {
  font-size: 11.5px;
  color: #9ca3af;
  background: #f1f5f9;
  padding: 2px 8px;
  border-radius: 10px;
}
.salary-slider-wrap {
  padding: 4px 0;
}

.salary-range-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.salary-val {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
}

.salary-val span {
  font-size: 11px;
  color: #9ca3af;
  font-weight: 400;
}

input[type="range"].salary-slider {
  width: 100%;
  height: 4px;
  border-radius: 10px;
  background: linear-gradient(to right, #1a56db 0%, #1a56db 60%, #e2e8f0 60%, #e2e8f0 100%);
  outline: none;
  border: none;
  cursor: pointer;
}

input[type="range"].salary-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  border: 2.5px solid #1a56db;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(26,86,219,0.3);
}

.filter-select {
  width: 100%;
  padding: 9px 12px;
  border-radius: 9px;
  border: 1.5px solid #e2e8f0;
  background: #f8fafc;
  color: #374151;
  font-size: 13.5px;
  outline: none;
  cursor: pointer;
  transition: border-color 0.15s;
  font-family: inherit;
}

.filter-select:focus {
  border-color: #1a56db;
  background: #ffffff;
}

/* ═══════════════════════════
   RIGHT — JOB LIST
═══════════════════════════ */
.jobs-right {
  flex: 1;
  min-width: 0;
}

/* Top Bar */
.jobs-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}


.sort-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sort-wrap label {
  font-size: 13px;
  color: #6b7280;
  white-space: nowrap;
}

.sort-select {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1.5px solid #e2e8f0;
  background: #ffffff;
  color: #374151;
  font-size: 13px;
  outline: none;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.15s;
}

.sort-select:focus {
  border-color: #1a56db;
}

/* Job List */
.job-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.jl-card {
  background: #ffffff;
  border: 1.5px solid #ccc;
  border-radius: 14px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all 0.2s ease;
  position: relative;
  text-decoration: none;
}

.jl-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 6px 24px rgba(26, 86, 219, 0.09);
  transform: translateY(-2px);
}

.jl-logo {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
  border: 1.5px solid #e8ecf0;
}
.jl-body {
  flex: 1;
  min-width: 0;
}

.jl-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.jl-title {
  font-size: 15.5px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.jl-company {
  font-size: 13px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

.jl-company i {
  font-size: 11px;
  color: #9ca3af;
}

.jl-badges {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.jl-badge {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 14px;
}
.lb-blue   { background: #eff4ff; color: #1d4ed8; }
.lb-green  { background: #f0fdf4; color: #15803d; }
.lb-amber  { background: #fffbeb; color: #b45309; }
.lb-gray   { background: #f3f4f6; color: #4b5563; }
.lb-pink   { background: #fdf2f8; color: #9d174d; }
.jl-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}
.jl-salary {
  font-size: 15px;
  font-weight: 700;
  color: #15803d;
  white-space: nowrap;
}
.jl-location {
  font-size: 12.5px;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.jl-location i {
  font-size: 11px;
}

.jl-apply {
  padding: 9px 20px;
  border-radius: 8px;
  background: var(--secondary);
  color: #ffffff;
  border: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}

.jl-apply:hover {
  background: var(--primary);
}
.jl-date {
  font-size: 11.5px;
  color: #cbd5e1;
}

/* ═══════════════════════════
   PAGINATION
═══════════════════════════ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.pg-btn {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  border: 1.5px solid #e2e8f0;
  background: #ffffff;
  color: #4b5563;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  text-decoration: none;
}

.pg-btn:hover {
  border-color: #1a56db;
  color: #1a56db;
  background: #eff4ff;
}

.pg-btn.active {
  background: #1a56db;
  border-color: #1a56db;
  color: #ffffff;
}

.pg-btn.pg-arrow {
  font-size: 12px;
}

.pg-dots {
  color: #9ca3af;
  font-size: 14px;
  padding: 0 4px;
}

.recruit-about{
    padding: 40px 0;
}

.recruit-about-container{
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 60px;
}

.recruit-about-img img{
    width: 100%;
    display: block;
    border-radius: 18px;
    object-fit: cover;
}

.recruit-tag{
    display: inline-block;
    color: #111;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.recruit-about-content h2{
    font-size: 32px;
    line-height: 1.3;
    color: #0f172a;
    margin-bottom: 10px;
}
.recruit-about-content span{
    color:var(--secondary);
}

.recruit-about-content p{
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 10px;
}

.recruit-btn{
    display: inline-block;
    padding: 10px 25px;
    font-size: 14px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}
.recruit-btn i{
    margin-left:8px;
}
.recruit-btn:hover{
    background: var(--secondary);
     color: #fff;
}

.mv-section {
  background: #f8fafc;
  padding: 40px 0;
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mv-card {
  background: #ffffff;
  border: 1.5px solid #ccc;
  border-radius: 20px;
  padding: 22px 22px 10px;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}

.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.mv-card.mission::before {
  background: var(--brand-gradient);
}
.mv-card.vision::before {
  background: var(--brand-gradient);
}
.mv-card::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.04;
}
.mv-card.mission::after {
  background: #1a56db;
}

.mv-card.vision::after {
  background: #7c3aed;
}

.mv-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 24px;
}
.mv-card.mission .mv-icon-box {
  background: #eff4ff;
  color: #1a56db;
}
.mv-card.vision .mv-icon-box {
  background: #f5f3ff;
  color: #7c3aed;
}
.mv-card-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.mv-card.mission .mv-card-label {
  color: #1a56db;
}
.mv-card.vision .mv-card-label {
  color: #7c3aed;
}
.mv-card-title {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.2;
}
.mv-card-text {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 24px;
}

.why-choose{
    padding: 40px 0;
    background: #fff;
}
.why-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
}.why-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
}
.why-card {
  background: #ffffff;
  padding: 22px 28px;
  border-radius: 16px;
  border: 1px solid #e5efff;
  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.07);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(13, 110, 253, 0.13);
  border-color: #bfdbfe;
}
.why-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.why-icon {
  width: 42px;
  height: 42px;
  background: #0d6efd;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.why-card:hover .why-icon {
  transform: scale(1.08);
}

.why-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin: 0;
}
.why-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.75;
  margin: 0;
}

.offer-section {
  background: #f8fafc;
  padding: 40px 0;
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.offer-card {
  background: #ffffff;
  border: 1.5px solid #e8ecf0;
  border-radius: 8px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all 0.22s ease;
  position: relative;
  overflow: hidden;
  box-shadow:0px 5px 15px rgba(0,0,0,0.1);
}
.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--card-color);
  opacity: 0;
  transition: opacity 0.2s;
}
.offer-card:hover {
  border-color: var(--card-border);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px var(--card-shadow);
}
.offer-card:hover::before {
  opacity: 1;
}
.offer-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.offer-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  background: var(--card-bg);
  color: var(--card-text);
  transition: transform 0.2s;
}
.offer-card:hover .offer-icon {
  transform: scale(1.1);
}
.offer-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin: 0;
}
.offer-divider {
  height: 1px;
  background: #f1f5f9;
  margin-bottom: 8px;
}
.offer-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 10px;
  flex: 1;
}
.offer-points {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.offer-point {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: #374151;
}
.offer-point i {
  font-size: 11px;
  color: var(--card-text);
  flex-shrink: 0;
}
.offer-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--card-text);
  text-decoration: none;
  margin-top: 10px;
  transition: gap 0.15s;
}
.offer-link:hover {
  gap: 10px;
}
.offer-link i {
  font-size: 12px;
  transition: transform 0.15s;
}
.offer-link:hover i {
  transform: translateX(2px);
}
/* ═══════════════════════════
   HOW WE WORK
═══════════════════════════ */
.process-section {
  background: #ffffff;
  padding: 40px 0;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, #1a56db, #60a5fa);
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #ffffff;
  border: 2.5px solid #1a56db;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  transition: all 0.2s;
  flex-shrink: 0;
}
.step-num:hover {
  background: #1a56db;
}
.step-num:hover i {
  color: #ffffff;
}
.step-num i {
  font-size: 35px;
  color: #1a56db;
  transition: color 0.2s;
}
.step-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1a56db;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}
.step-title {
  font-size: 15.5px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.3;
}
.step-desc {
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.7;
}
.industries-section {
  background: #f8fafc;
  padding: 40px 0 30px;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.industry-card{
  background: var(--white);
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: 0.3s ease;
}
.industry-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.industry-image{
  height: 260px;
  overflow: hidden;
}

.industry-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.industry-card:hover .industry-image img{
  transform: scale(1.1);
}
.industry-card:hover .industry-title {
  color: var(--primary);
}
.industry-content{
  padding: 15px;
}
.industry-title{
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}

.industry-text{
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin:0;
}
.contact-section {
  background: #f8fafc;
  padding: 60px 0 70px;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
}

/* ═══════════════════════════
   LEFT — FORM
═══════════════════════════ */
.contact-form-card {
  background: #ffffff;
  border: 1.5px solid #e8ecf0;
  border-radius: 5px;
  padding: 20px 20px;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
}

.contact-form-head {
  margin-bottom: 28px;
}

.contact-form-head h3 {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
  letter-spacing: -0.4px;
}

.contact-form-head p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* Form Grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-group label i {
  font-size: 12px;
  color: #1a56db;
}

.form-group label .required {
  color: #e11d48;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border-radius: 5px;
  border: 1.5px solid #e2e8f0;
  background: #f8fafc;
  color: #0f172a;
  font-size: 14px;
  outline: none;
  font-family: inherit;
  transition: all 0.15s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #1a56db;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

.form-group textarea {
  height: 130px;
  resize: vertical;
  line-height: 1.6;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239ca3af' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}

.contact-submit {
  width: 100%;
  padding: 13px;
  border-radius: 10px;
  border: none;
  background: var(--brand-gradient);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: all 0.15s;
  font-family: inherit;
  margin-top: 15px;
}

.contact-submit:hover {
  background: #0d3fb0;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26, 86, 219, 0.25);
}

.contact-submit i {
  font-size: 14px;
  transition: transform 0.15s;
}

.contact-submit:hover i {
  transform: translateX(3px);
}

/* Success Message */
.form-success {
  display: none;
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  color: #15803d;
  font-weight: 500;
  margin-top: 12px;
  text-align: center;
  align-items: center;
  gap: 8px;
}

.form-success i {
  font-size: 16px;
}
.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Info Card */
.info-card {
  background: #ffffff;
  border: 1.5px solid #e8ecf0;
  border-radius: 5px;
  padding: 22px 20px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.2s ease;
}

.info-card:hover {
  border-color: var(--info-color);
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  background: var(--info-bg);
  color: var(--info-color);
  transition: transform 0.2s;
}

.info-card:hover .info-icon {
  transform: scale(1.08);
}
.info-label {
  font-size: 11.5px;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}

.info-value {
  font-size: 14.5px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.5;
}

.info-value a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.15s;
}

.info-value a:hover {
  color: #1a56db;
}

.info-sub {
  font-size: 12.5px;
  color: #9ca3af;
  margin-top: 2px;
}
.social-card {
  background: #ffffff;
  border: 1.5px solid #e8ecf0;
  padding: 22px 20px;
   border-radius: 5px;
  padding: 22px 20px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.social-card-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.social-card-title i {
  color: #1a56db;
  font-size: 13px;
}

.social-icons-row {
  display: flex;
  gap: 10px;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1.5px solid #e2e8f0;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #6b7280;
  font-size: 15px;
  transition: all 0.15s;
}

.social-icon-btn:hover {
  background: #1a56db;
  border-color: #1a56db;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ═══════════════════════════
   MAP SECTION
═══════════════════════════ */
.map-section {
  margin-top: 32px;
  overflow: hidden;
  border: 1.5px solid #e8ecf0;
  height: 300px;
  background: #f1f5f9;
  position: relative;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Map placeholder if no iframe */
.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #9ca3af;
}

.map-placeholder i {
  font-size: 40px;
  color: #cbd5e1;
}

.map-placeholder p {
  font-size: 14px;
}

.ep-blog-details{
  padding: 60px 0;
  background: #fff;
}

/* badge */
.ep-blog-badge{
  display:inline-block;
  background: rgba(0,87,217,0.1);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 15px;
}

/* title */
.ep-blog-title{
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

/* meta */
.ep-blog-meta{
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 20px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.ep-blog-image{
    height:400px;
     margin-bottom:20px;
}
.ep-blog-image img{
  width:100%;
  border-radius: 15px;
  margin-bottom: 25px;
  height:100%;
  object-fit:cover;
}
.ep-blog-content p{
  color: var(--text-light);
  line-height: 1.8;
  font-size: 16px;
}
.ep-blog-content h3{
  color: var(--text);
  font-weight: 700;
  font-size:20px;
}

.ep-blog-content blockquote{
  border-left: 4px solid var(--primary);
  padding: 15px;
  background: #f5f9ff;
  margin: 20px 0;
  font-style: italic;
}
.ep-blog-tags{
  margin-top: 25px;
}

.ep-blog-tags a{
  display:inline-block;
  padding: 6px 12px;
  background: #f1f1f1;
  border-radius: 6px;
  margin-right: 8px;
  font-size: 13px;
  text-decoration:none;
  color: var(--text);
  transition: 0.3s;
}

.ep-blog-tags a:hover{
  background: var(--primary);
  color: #fff;
}


.privacy-section{
  padding: 60px 0;
  background: var(--bg);
}

.privacy-section .container{
  max-width: 1000px;
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.privacy-section h1{
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text);
  position: relative;
}

.privacy-section h1::after{
  content: "";
  width: 60px;
  height: 4px;
  background: var(--primary);
  display: block;
  margin-top: 10px;
  border-radius: 2px;
}
.privacy-section h3{
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 10px;
  color: var(--text);
  font-weight: 700;
  position: relative;
  padding-left: 12px;
}
.privacy-section p{
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 10px;
}
.privacy-section strong{
  color: var(--primary);
}


.job-apply-modal{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.65);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.job-apply-modal.active{
    display:flex;
}

.job-apply-box{
    width:600px;
    max-width:90%;
    margin:auto;
    background:#fff;
    padding:30px;
    border-radius:12px;
    position:relative;
}
.job-field label{
    display:block;
    margin-bottom:6px;
    font-size:14px;
    font-weight:600;
    color:#222;
}

.job-close-btn{
    position:absolute;
    right:15px;
    top:15px;
    border:none;
    background:none;
    font-size:20px;
    cursor:pointer;
}

.job-apply-box h3{
    margin-bottom:10px;
}
.job-field.resume-field input{
    border:1px solid #ddd;
    border-radius:6px;
    padding:0 0px;
    height:auto;
}

.job-apply-box p{
    margin-bottom:20px;
    color:#666;
}

.job-field{
    margin-bottom:15px;
}

.job-field input{
    width:100%;
    height:40px;
    border:1px solid #ddd;
    border-radius:6px;
    padding:0 10px;
}

.job-submit-btn{
    width:100%;
    height:50px;
    border:none;
    border-radius:6px;
    color:#fff;
    background:var(--primary);
}