/* Pineex Custom Styles - Fix for hidden sections */

/* FIX: Preloader should not block content after it fades out */
.preloader {
  pointer-events: none !important;
}

.preloader-bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  height: 42px;
}

.preloader-bars .bar {
  width: 5px;
  height: 28px;
  background: #008b9a;
  animation: pineexLoader 0.9s ease-in-out infinite alternate;
}

.preloader-bars .bar2 { animation-delay: 0.12s; }
.preloader-bars .bar3 { animation-delay: 0.24s; }
.preloader-bars .bar4 { animation-delay: 0.36s; }
.preloader-bars .bar5 { animation-delay: 0.48s; }

@keyframes pineexLoader {
  from { transform: scaleY(0.35); opacity: 0.45; }
  to { transform: scaleY(1); opacity: 1; }
}

/* DISABLE fade animations that hide sections */
.fade-anim {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

/* IMPORTANT FIX: Ensure body and wrappers don't hide content */
body {
  overflow-x: hidden !important;
  position: relative !important;
}

/* Reset z-index stacking order properly */
main {
  position: relative !important;
  z-index: 1 !important;
}

/* If ScrollSmoother is being used, ensure wrapper is visible */
#smooth-wrapper,
#smooth-content {
  position: relative !important;
  overflow: visible !important;
}

/* Limit hero section height so it doesn't overlap other sections */
.bi-slider-area {
  position: relative !important;
  top: 40px;
  z-index: 1 !important;
  display: block !important;
  height: auto !important;
  min-height: auto !important;
  max-height: 100vh !important;
  overflow: visible !important;
}

.bi-hero-slider-item {
  height: 550px;
  /* min-height: 550px; */
  max-height: 550px;
  position: relative;
}

/* Make sure sections are visible and have proper display */

/* Hero overlay should not extend beyond hero */
.bi-hero-overlay::after {
  z-index: 0 !important;
  position: absolute !important;
}

/* Ensure content is above overlay */
.bi-hero-content {
  position: relative !important;
  z-index: 2 !important;
}

/* Header stays on top but below preloader */
header.oit-header-transparent {
  z-index: 999 !important;
}

/* Inner pages: keep header in document flow so the hero starts below it */
/* body.px-inner-page header.oit-header-transparent {
  position: sticky !important;
  top: 0;
  background: #fff;
} */
body.px-inner-page header.oit-header-transparent .oit-header-area {
  background: #fff;
}
body.px-inner-page .page-hero {
  padding-top: 70px !important;
  margin-top: 0;
}

.oit-breadcrumb-area {
  background-color: #0b2744;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* body.px-inner-page .oit-breadcrumb-wrap {
  padding: 35px 20px 35px;
} */
body.px-inner-page .oit-breadcrumb-title {
  margin-top: 14px;
  margin-bottom: 0;
}
body.px-inner-page .oit-breadcrumb-nav-link a:last-child {
  pointer-events: none;
  opacity: 0.85;
}

/* Force white/proper backgrounds on sections */
.akaasa-split-area {
  background: #fff !important;
}

.akaasa-stats-area {
  background: #fff !important;
}

.akaasa-services-area {
  background: #f7f9fc !important;
}




/* Skills Section Styling - Swiper carousel */
.akaasa-skills-area {
  background: #f7f9fc;
  padding: 90px 0;
}

.akaasa-skills-slider {
  display: flex !important;
  align-items: center;
  gap: 12px;
  position: relative;
  width: 100%;
}

.akaasa-skills-swiper {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.akaasa-skills-track.swiper-wrapper {
  display: flex !important;
  gap: 0 !important;
  width: auto;
  padding-bottom: 8px;
  overflow: visible !important;
  grid-template-columns: none !important;
}

.akaasa-skills-slider .swiper-slide {
  height: auto;
}

.akaasa-skill-item {
  height: 100%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(56, 63, 62, 0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.akaasa-skill-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(47, 158, 122, 0.15);
  border-color: rgba(47, 158, 122, 0.3);
}

.akaasa-skill-thumb {
  height: 180px;
  overflow: hidden;
  position: relative;
  margin-bottom: 0;
  border-radius: 0;
}

.akaasa-skill-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.akaasa-skill-item:hover .akaasa-skill-thumb img {
  transform: scale(1.1);
}

.akaasa-skill-content {
  padding: 20px;
}

.akaasa-skill-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #6b7c8a;
}

.akaasa-skill-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #213062;
  margin-bottom: 10px;
}

.akaasa-skill-label svg {
  color: #213062;
  flex-shrink: 0;
}

.akaasa-skills-nav {
  position: static;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(47, 158, 122, 0.2);
  color: #213062;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  outline: none;
  transform: none;
}

.akaasa-skills-nav:hover {
  background: #213062;
  color: #fff;
  border-color: #213062;
  box-shadow: 0 4px 12px rgba(47, 158, 122, 0.3);
  transform: scale(1.05);
}

.akaasa-skills-nav.prev,
.akaasa-skills-nav.next {
  left: auto;
  right: auto;
}

@media (max-width: 768px) {
  .akaasa-skills-nav {
    width: 42px;
    height: 42px;
  }

  .akaasa-skills-nav svg {
    width: 16px;
    height: 16px;
  }
}





.akaasa-jobs-box {
  max-width: 1400px;
  margin: 0 auto;
}

.akaasa-section-desc {
  font-size: 18px;
  /* color: rgba(56, 63, 62, 0.7); */
  margin-top: 15px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.akaasa-jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.akaasa-job-card {
  display: block;
  background: #fff;
  border: 1px solid rgba(56, 63, 62, 0.1);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.akaasa-job-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #213062 0%, #0d5765 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.akaasa-job-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(47, 158, 122, 0.15);
  border-color: rgba(47, 158, 122, 0.3);
}

.akaasa-job-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(47, 158, 122, 0.1) 0%, rgba(62, 180, 137, 0.1) 100%);
  border-radius: 12px;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  color: #213062;
}

.akaasa-job-card:hover .akaasa-job-icon {
  background: linear-gradient(135deg, #213062 0%, #3eb489 100%);
  color: #fff;
  transform: scale(1.05) rotate(3deg);
}

.akaasa-job-card h3 {
  /* font-size: 20px; */
  font-weight: 700;
  /* color: #213062; */
  margin-bottom: 15px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.akaasa-job-card:hover h3 {
  color: #213062;
}

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

.akaasa-job-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  /* font-size: 13px; */
  font-weight: 500;
  /* color: rgba(56, 63, 62, 0.7); */
  background: rgba(47, 158, 122, 0.08);
  padding: 6px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.akaasa-job-meta span i {
  font-size: 12px;
  color: #213062;
}

.akaasa-job-card:hover .akaasa-job-meta span {
  background: rgba(47, 158, 122, 0.12);
  color: #213062;
}

.akaasa-job-loc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #213062;
  margin-bottom: 15px;
}

.akaasa-job-loc i {
  font-size: 13px;
}



.akaasa-job-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #213062;
  transition: all 0.3s ease;
  position: relative;
}

.akaasa-job-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.akaasa-job-card:hover .akaasa-job-link {
  gap: 12px;
}

.akaasa-job-card:hover .akaasa-job-link i {
  transform: translateX(4px);
}

.akaasa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #213062 0%, #3eb489 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.4s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(47, 158, 122, 0.25);
  position: relative;
  overflow: hidden;
}

.akaasa-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.akaasa-btn:hover::before {
  left: 100%;
}

.akaasa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(47, 158, 122, 0.35);
  color: #fff;
}

.akaasa-btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.akaasa-btn:hover .akaasa-btn-arrow {
  transform: translate(4px, -4px);
}

/* Responsive */
@media (max-width: 1200px) {
  .akaasa-jobs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .akaasa-jobs-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .akaasa-jobs-area {
    padding: 80px 0 60px;
  }
  
  .akaasa-section-desc {
    font-size: 16px;
  }
}


/* Blog Section Styling */
.akaasa-blog-area {
  background: #f7f9fc;
  padding: 120px 0 90px;
}

.akaasa-blog-card {
  display: block;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 12px rgba(47, 158, 122, 0.08);
  margin-bottom: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.akaasa-blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(47, 158, 122, 0.18);
}

.akaasa-blog-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  height: 260px;
}

.akaasa-blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.akaasa-blog-card:hover .akaasa-blog-thumb img {
  transform: scale(1.08);
}

.akaasa-blog-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #213062 0%, #3eb489 100%);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(47, 158, 122, 0.3);
}

.akaasa-blog-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.akaasa-blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.akaasa-blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(56, 63, 62, 0.6);
  font-weight: 500;
}

.akaasa-blog-meta i {
  color: #213062;
  font-size: 14px;
}

.akaasa-blog-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
  min-height: 62px;
}

.akaasa-blog-title a {
  color: #213062;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}

.akaasa-blog-title a:hover {
  color: #213062;
}

.akaasa-blog-excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(56, 63, 62, 0.75);
  margin-bottom: 20px;
  flex-grow: 1;
}

.akaasa-blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #213062;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.akaasa-blog-link i {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.akaasa-blog-card:hover .akaasa-blog-link {
  gap: 12px;
  color: #238563;
}

.akaasa-blog-card:hover .akaasa-blog-link i {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
  .akaasa-blog-area {
    padding: 80px 0 60px;
  }
  
  .akaasa-blog-thumb {
    height: 220px;
  }
  
  .akaasa-blog-title {
    font-size: 19px;
    min-height: auto;
  }
  
  .akaasa-blog-content {
    padding: 24px;
  }
}


/* Why Choose Us Section - Infographic Style with Circle */
.akaasa-why-choose-area {
  background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.akaasa-why-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  position: relative;
}

.akaasa-why-circle {
  position: relative;
  width: 450px;
  height: 450px;
}

.akaasa-why-circle-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, #213062 0%, #3eb489 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(47, 158, 122, 0.3);
  z-index: 2;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.02);
  }
}

.akaasa-why-circle-inner h3 {
  text-align: center;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
}

.akaasa-why-circle-inner h3 span {
  display: block;
  font-size: 36px;
  font-weight: 800;
  margin-top: 5px;
}

.akaasa-feature-point {
  position: absolute;
  width: 120px;
  text-align: center;
  z-index: 1;
}

.akaasa-feature-point::before {
  content: attr(data-number);
  display: block;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff9a76 0%, #ff6b8a 100%);
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 50px;
  margin: 0 auto 8px;
  box-shadow: 0 6px 20px rgba(255, 107, 138, 0.3);
  border: 3px solid #fff;
  transition: all 0.3s ease;
}

.akaasa-feature-point:hover::before {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 107, 138, 0.5);
}

.feature-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #213062;
  line-height: 1.3;
}

/* Position points around circle */
.point-1 { top: -10px; left: 50%; transform: translateX(-50%); }
.point-2 { top: 15%; right: -10px; }
.point-3 { top: 42%; right: -30px; }
.point-4 { bottom: 15%; right: -10px; }
.point-5 { bottom: -10px; left: 50%; transform: translateX(-50%); }
.point-6 { bottom: 15%; left: -10px; }
.point-7 { top: 42%; left: -30px; }
.point-8 { top: 15%; left: -10px; }
.point-9 { top: -10px; left: 15%; }

.akaasa-why-content-box {
  padding-left: 40px;
}

.akaasa-why-features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.akaasa-feature-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.akaasa-feature-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(47, 158, 122, 0.1);
  transition: all 0.4s ease;
}

.akaasa-feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(47, 158, 122, 0.12);
  border-color: rgba(47, 158, 122, 0.25);
}

.feature-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(47, 158, 122, 0.1) 0%, rgba(62, 180, 137, 0.15) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #213062;
  transition: all 0.3s ease;
}

.akaasa-feature-item:hover .feature-number {
  background: linear-gradient(135deg, #213062 0%, #3eb489 100%);
  color: #fff;
  transform: scale(1.05);
}

.feature-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: #213062;
  margin-bottom: 6px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.akaasa-feature-item:hover .feature-content h4 {
  color: #213062;
}

.feature-content p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(56, 63, 62, 0.7);
  margin: 0;
}

/* Responsive */
@media (max-width: 1199px) {
  .akaasa-why-circle {
    width: 400px;
    height: 400px;
  }
  
  .akaasa-why-circle-inner {
    width: 280px;
    height: 280px;
  }
  
  .akaasa-why-circle-inner h3 {
    font-size: 24px;
  }
  
  .akaasa-why-circle-inner h3 span {
    font-size: 30px;
  }
  
  .akaasa-why-content-box {
    padding-left: 30px;
  }
}

@media (max-width: 991px) {
  .akaasa-why-visual {
    margin-bottom: 50px;
    min-height: 500px;
  }
  
  .akaasa-why-content-box {
    padding-left: 0;
  }
  
  .akaasa-feature-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .akaasa-why-choose-area {
    padding: 80px 0;
  }
  
  .akaasa-why-circle {
    width: 320px;
    height: 320px;
  }
  
  .akaasa-why-circle-inner {
    width: 220px;
    height: 220px;
  }
  
  .akaasa-why-circle-inner h3 {
    font-size: 20px;
  }
  
  .akaasa-why-circle-inner h3 span {
    font-size: 26px;
  }
  
  .akaasa-feature-point {
    width: 90px;
  }
  
  .akaasa-feature-point::before {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
  
  .feature-label {
    font-size: 10px;
  }
  
  .akaasa-feature-item {
    padding: 16px;
  }
  
  .feature-number {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  
  .feature-content h4 {
    font-size: 15px;
  }
  
  .feature-content p {
    font-size: 13px;
  }
}

.why-choose-us {
  /* padding: 80px 20px; */
  background-color: #ebf8fb8f;
}

a.bi-choose-item {
  text-decoration: none;
  color: inherit;
}
a.bi-choose-item:hover {
  color: inherit;
}

.bi-contact-left .akaasa-v2-steps {
  grid-template-columns: 1fr;
}

.bi-contact-form .bi-contact-input-box input[type="file"] {
  height: auto;
  line-height: 1.4;
  padding: 14px 16px;
}
.bi-contact-form .px-native-select {
  width: 100%;
  height: 60px;
  padding: 0 16px;
  border: 1px solid rgba(56, 63, 62, 0.1);
  border-radius: 10px;
  background-color: var(--oit-gray-1, #f7f9fc);
  font-size: 14px;
  color: inherit;
  appearance: auto;
}

.px-career-reasons {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}
.px-career-reasons article h4 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  color: #1b365d;
}
.px-career-reasons article p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #6b7c8a;
}
.px-career-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.px-career-photos img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}
.px-hire-process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.px-hire-process article {
  background: #fff;
  border: 1px solid #e8eef4;
  border-radius: 18px;
  padding: 24px 18px;
  text-align: center;
}
.px-hire-day {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  background: #1b365d;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.px-hire-process h4 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  color: #1b365d;
}
.px-hire-process p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #6b7c8a;
}
@media (max-width: 1199px) {
  .px-hire-process {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .px-career-photos {
    grid-template-columns: 1fr;
  }
  .px-career-photos img {
    height: 220px;
  }
  .px-hire-process {
    grid-template-columns: 1fr;
  }
}

.akaasa-job-card[hidden],
.akaasa-job-card[style*="display: none"] {
  display: none !important;
}
.akaasa-job-filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
  background: #fff;
  border: 1px solid rgba(56, 63, 62, 0.1);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 28px;
}
.akaasa-job-filters label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #1b365d;
}
.akaasa-job-filters input,
.akaasa-job-filters select {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(56, 63, 62, 0.12);
  border-radius: 10px;
  background: #f7f9fc;
  font-size: 14px;
  font-weight: 400;
  color: #1b365d;
  float: none;
  appearance: auto;
}
.akaasa-job-filters input:focus,
.akaasa-job-filters select:focus {
  outline: none;
  border-color: #1b365d;
  background: #fff;
}
.akaasa-job-desc {
  /* font-size: 14px; */
  line-height: 1.6;
  /* color: #6b7c8a; */
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .akaasa-job-filters {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575px) {
  .akaasa-job-filters {
    grid-template-columns: 1fr;
  }
}



.image-side {
  flex: 1;
}

.image-side img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content-side {
  flex: 1.2;
}

.content-side h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
  line-height: 1.3;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  margin-bottom: 22px;
}

.features-list li strong {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: #111;
  margin-bottom: 4px;
}

.features-list li p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
 

  .content-side h2 {
    font-size: 26px;
    text-align: center;
  }
}

.akaasa-stats-area {
   padding: 20px 0;
   background: linear-gradient(135deg, #f7fafc 0%, #eef5f6 100%);
}

.akaasa-stats-wrap {
   position: relative;
   display: grid;
   grid-template-columns: repeat(4, minmax(0, 1fr));
   padding: 11px 8px;
   overflow: hidden;
   background: #0d56641a;
   border: 1px solid #e3ebee;
   border-radius: 22px;
   box-shadow: 0 15px 45px rgba(27, 54, 93, 0.08);
   column-gap: 10px;
}

.akaasa-stats-wrap::before {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 4px;
   background: linear-gradient(90deg, #0d5765, #1b365d);
   content: "";
}

.akaasa-stat-item {
   position: relative;
   display: flex;
   align-items: center;
   gap: 18px;
   min-width: 0;
   min-height: 100px;
   padding: 10px 14px;
   border-radius: 15px;
   transition: background 0.3s ease, transform 0.3s ease;
   background: #fbfbfb;
}

.akaasa-stat-item:not(:last-child)::after {
   position: absolute;
   top: 22%;
   right: 0;
   width: 1px;
   height: 56%;
   background: #dce5e8;
   content: "";
}

.akaasa-stat-item:hover {
   background: #f4f9fa;
   transform: translateY(-4px);
}

.akaasa-stat-icon {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 64px;
   min-width: 64px;
   height: 64px;
   color: #0d5765;
   background: rgba(13, 87, 101, 0.09);
   border: 1px solid rgba(13, 87, 101, 0.14);
   border-radius: 18px;
   transition: all 0.3s ease;
}

.akaasa-stat-item:hover .akaasa-stat-icon {
   color: #ffffff;
   background: linear-gradient(135deg, #0d5765, #1b365d);
   border-color: transparent;
   box-shadow: 0 10px 22px rgba(13, 87, 101, 0.22);
   transform: rotate(-4deg);
}

.akaasa-stat-icon svg {
   width: 34px;
   height: 34px;
}

.akaasa-stat-content {
   min-width: 0;
}

.akaasa-stat-content h4 {
   margin: 0 0 7px;
   color: #1b365d;
   font-size: clamp(19px, 1.25vw, 23px);
   font-weight: 750;
   line-height: 1.25;
}

.akaasa-stat-content p {
   margin: 0;
   color: #596771;
   font-size: 15px;
   font-weight: 500;
   line-height: 1.45;
}

/* Tablet */
@media (max-width: 1199px) {
   .akaasa-stats-wrap {
      grid-template-columns: repeat(2, minmax(0, 1fr));
   }

   .akaasa-stat-item:nth-child(2)::after,
   .akaasa-stat-item:nth-child(4)::after {
      display: none;
   }

   .akaasa-stat-item:nth-child(1),
   .akaasa-stat-item:nth-child(2) {
      border-bottom: 1px solid #e3ebee;
      border-radius: 0;
   }
}

/* Mobile */
@media (max-width: 767px) {
   .akaasa-stats-area {
      padding: 35px 0;
   }

   .akaasa-stats-wrap {
      grid-template-columns: 1fr;
      padding: 12px;
      border-radius: 18px;
   }

   .akaasa-stat-item {
      min-height: auto;
      padding: 20px 15px;
   }

   .akaasa-stat-item:not(:last-child) {
      border-bottom: 1px solid #e3ebee;
      border-radius: 0;
   }

   .akaasa-stat-item::after {
      display: none;
   }

   .akaasa-stat-icon {
      width: 58px;
      min-width: 58px;
      height: 58px;
   }

   .akaasa-stat-content h4 {
      font-size: 20px;
   }
}

.main-footer-prime {
  background-color: #cccccc;
  background-image: url(../img/all/dark-section-bg-image.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}