/* =========================================
   Global Theme Variables
   ========================================= */
:root {
  /* Primary accent color (rgba(244, 104, 33, 1)) */
  --accent: #F46821;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

/* =========================================
   Swiper Pagination (moved from inline <style>)
   ========================================= */
.swiper-pagination-bullet {
  background-color: #d1d5db; /* gray-300 */
  opacity: 1;
  width: 1rem;
  height: 0.5rem;
  border-radius: 9999px;
  transition: background-color 0.3s ease;
}

.swiper-pagination-bullet-active {
  background-color: var(--accent) !important;
}

/* =========================================
   Header / Branding
   ========================================= */
.logo-img {
  height: 50px;
}

/* =========================================
   Hero Section helpers
   ========================================= */
.hero-sticky {
  position: sticky;
  top: 33%;
}

/* =========================================
   Floating Wave Hand (CTA loader)
   ========================================= */
.wave-hand-container {
  position: fixed;
  left: 41%;
  bottom: -2.5rem;
  width: 200px;
}

/* Utility: fill both width and height */
.full-size {
  width: 100%;
  height: 100%;
}

/* =========================================
   Executive Summary Layout (image to right edge)
   ========================================= */
.exec-summary {
  position: relative;
  overflow: visible; /* allow image to bleed to edge */
}

.exec-summary-container {
  position: relative;
}

/* default mobile/tablet keeps centered image */
.exec-summary-img {
  position: relative;
}

/* large screens: push image to the right edge */
@media (min-width: 1024px) {
  .exec-summary-container {
    padding-right: 0; /* remove side padding effect */
  }
  .exec-summary-img {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    display: flex;
    justify-content: flex-end;
  }
  .exec-summary-img-el {
    max-width: 520px;
    width: 100%;
    height: auto;
  }
  /* give left content breathing room so it doesn't hide under image */
  .exec-summary .lg\:w-2\/3 {
    padding-right: 2rem;
  }
} 
.core-feature-1{
  background: rgba(235, 226, 255, 1);
  border: 1.7px solid var(--Stroke, rgba(210, 213, 218, 1));
  box-shadow: 0px 1.7px 10.53px 0px rgba(0, 0, 0, 0.12);

}
.core-feature-2 {
  background: rgba(255, 239, 144, 1);
  border: 1.7px solid var(--Stroke, rgba(210, 213, 218, 1));
  box-shadow: 0px 1.7px 10.53px 0px rgba(0, 0, 0, 0.12);


}
.core-feature-3{
  background: rgba(166, 231, 255, 1);
  border: 1.7px solid var(--Stroke, rgba(210, 213, 218, 1));
  box-shadow: 0px 1.7px 10.53px 0px rgba(0, 0, 0, 0.12);
}
.core-feature-4{
  background: rgba(252, 209, 255, 1);
  border: 1.7px solid var(--Stroke, rgba(210, 213, 218, 1));
  box-shadow: 0px 1.7px 10.53px 0px rgba(0, 0, 0, 0.12);

}
.swiper-pagination {
  position: relative !important; /* Prevent overlapping */
  margin-top: 20px; /* Space below slider */
}
.pillars-div{
  padding: 15% !important;
}
.list-style{
 width: 20 !important;
                height: 20 !important;
                background-color:#EEF2FF;
                border-radius: 50px;
                
                top: 1px;
                
                
}
/* Responsive card styles */
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .scale-110 {
    transform: none !important;
  }
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr !important;
  }
  .p-14 {
    padding: 2rem !important; /* Reduce padding on mobile */
  }
  .scale-110 {
    transform: none !important;
  }
  .text-3xl {
    font-size: 1.75rem !important;
  }
  .text-2xl {
    font-size: 1.5rem !important;
  }
}




/* ===== HRMS Hero (scoped classes) ===== */
:root {
  --hrms-orange: #F46821;
  --hrms-dark: #0d0d0f;
  --hrms-text: #ffffff;
  --hrms-muted: #c8c8d0;
  --hrms-radius: 28px;
}

.hrms-hero {
  padding: 2rem 0 0;             /* tight top spacing; card has own padding */
}

.hrms-hero__container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1rem;
}

.hrms-hero__card {
  background: var(--hrms-dark);
  color: var(--hrms-text);
  border-radius: var(--hrms-radius);
  padding: clamp(1.25rem, 2vw + 1rem, 2rem);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,.16);
}


.hrms-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}

/* Desktop: text left, image right */
@media (min-width: 900px) {
  .hrms-hero__grid {
    grid-template-columns: 1.1fr .9fr;
    padding: clamp(1rem, 3vw, 2rem) clamp(1rem, 3vw, 2rem);
  }
}

.hrms-hero__copy {
  max-width: 640px;
}

.hrms-hero__title {
  font-size: clamp(1.6rem, 2.2vw + 1rem, 2.6rem);
  line-height: 1.15;
  font-weight: 800;
  margin: 0 0 .5rem 0;
  letter-spacing: .2px;
}

.hrms-hero__highlight {
  display: inline-block;
  background: linear-gradient(90deg, #FFB283, var(--hrms-orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hrms-hero__sub {
  color: var(--hrms-muted);
  margin: .25rem 0 1.25rem;
  font-size: clamp(.95rem, .4vw + .9rem, 1rem);
}

.hrms-hero__actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}

/* Button */
.hrms-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  padding: .9rem 1.25rem;
  line-height: 1;
  transition: transform .16s ease, box-shadow .2s ease, background-color .2s ease;
  box-shadow: 0 10px 20px rgba(244,104,33,.25);
  will-change: transform;
}
.hrms-btn:active { transform: translateY(1px) scale(.99); }

.hrms-btn--primary {
  background: var(--hrms-orange);
  color: #fff;
}
.hrms-btn--primary:hover {
  filter: brightness(.96);
  box-shadow: 0 14px 28px rgba(244,104,33,.35);
}

.hrms-btn__icon {
  width: 20px;
  height: 20px;
}

/* Art */
.hrms-hero__art {
  display: grid;
  place-items: center;
}
.hrms-hero__art img {
  width: min(560px, 90%);
  height: auto;
  display: block;
  object-fit: contain;
  transform: translateZ(0); /* crisper on some GPUs */
}

/* Optional: make the black card edges look pill-like on large screens */
@media (min-width: 1200px) {
  .hrms-hero__card { border-radius: 36px; }
}
@media (min-width: 1024px) {
  .hrms .lg\:right-\[-8\%\] {
      right: -27%;
      top: -116px  !important;
  }
}


/* Default styles */
.pro-card {
  background: linear-gradient(159.44deg, #304c65 28.86%, #f46821 99.3%);
  box-shadow: 0px 42px 34px 0px #5243c24b;
  transform: scale(1.1);
  color: white  !important;
  transition: all 0.3s ease;
}

.starter-card {
  background: white;
  transform: scale(1);
  transition: all 0.3s ease;
}

/* On Starter hover */
.starter-card:hover {
  background: linear-gradient(159.44deg, #304c65 28.86%, #f46821 99.3%);
  box-shadow: 0px 42px 34px 0px #5243c24b;
  color: white  !important;
  transform: scale(1.1);
}
.starter-card:hover li {
  color: white  !important;
}
.starter-card:hover p {
  color: white  !important;
}
.starter-card:hover span {
  color: white  !important;
}
.starter-card:hover .text-gray-900 {
  color: white  !important;
}
.starter-card:hover ~ .pro-card {
  background: white;
  box-shadow: none;
  color:rgb(75 85 99 / var(--tw-text-opacity,1)) !important;
  transform: scale(1);
  
}
.starter-card:hover .get-start-btn{
  background:#ffff;
  color: #F46821;
}
.popular{
  background-color: #FFFFFF3D;
}
.starter-card:hover ~ .popular{
  background-color: #FFFFFF3D !important;
  color: #0d0d0f !important;
  border: 1px solid #0000 !important;
}
.upgrade-btn{
  background:#ffff;
  color: #F46821;
}
.starter-card:hover  ~ .pro-card .upgrade-btn{
  background-color:#F46821 !important;
  color: #ffff;
}



.book-demo-btn {
  background-color: #F46821;
  color: white;
  border-radius: 6px; /* optional, to look like button */
  text-decoration: none; /* remove underline */
  display: inline-block;
  padding: 10px;
}
/* Mobile view */
@media (max-width: 768px) {
  .book-demo-btn {
    font-size: 3vw;
  }
}
/* Keep same style for all states */
.book-demo-btn:hover {
  background-color: #d95a1d; /* darker orange on hover */
  color: white;
}

/* Prevent focus/active/visited from changing style */
.book-demo-btn:visited,
.book-demo-btn:focus,
.book-demo-btn:active {
  background-color: #F46821 !important;
  color: #fff !important;
  text-decoration: none;
  outline: none; /* remove blue outline */
}