/* Reset page spacing */
html, body{
  margin:0;
  padding:0;
}

/* Hero overlay wrapper */
.ac-home .overlay{ position: relative; }

/* Hero dark overlay */
.ac-home .overlay::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(11,18,32,.65), rgba(11,18,32,.55));
  z-index:0;
}

/* Hero slide background */
.ac-home .ac-hero-slide{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  transition: transform 0.8s ease;
}

/* Hero content */
.ac-home .ac-hero-content{ 
  position: relative; 
  z-index: 1; 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 0;
}

/* Hero title */
.ac-home .ac-hero-title{
  color:#fff;
  font-weight: 900;
  letter-spacing: -.3px;
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  margin-bottom: 10px;
  animation: slideInFromLeft 1s ease-out;
}

/* Hero subtitle */
.ac-home .ac-hero-sub{
  color: rgba(255,255,255,.88);
  font-size: 1.1rem;
  max-width: 70ch;
  margin: 0 auto;
  animation: slideInFromLeft 1.2s ease-out;
}

/* Hero buttons */
.ac-home .ac-hero-content .btn{
  animation: slideInFromBottom 1.4s ease-out;
}

/* Hero animations */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero slider dots container */
.ac-home .owl-theme .owl-dots{
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}

/* Hero slider dots */
.ac-home .owl-theme .owl-dots .owl-dot span{
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.4);
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  margin: 0 6px;
  transition: all 0.3s ease;
  display: inline-block;
}

.ac-home .owl-theme .owl-dots .owl-dot.active span{
  background: #ff8c1a;
  border-color: #ff8c1a;
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(255,140,26,0.5);
}

/* Hero slider navigation arrows */
.ac-home .owl-theme .owl-nav [class*="owl-"]{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
  margin: 0 20px;
}

.ac-home .owl-theme .owl-nav [class*="owl-"]:hover{
  background: rgba(255,140,26,0.2);
  border-color: #ff8c1a;
  transform: translateY(-50%) scale(1.1);
  color: #ff8c1a;
}

.ac-home .owl-theme .owl-nav .owl-prev{
  left: 20px;
}

.ac-home .owl-theme .owl-nav .owl-next{
  right: 20px;
}

/* Page section spacing */
.ac-home .ac-section{
  padding: 84px 0;
}

/* Alternate background section */
.ac-home .ac-alt{
  background: #f4f6fb;
}

/* Section title */
.ac-home .ac-section-title{
  font-weight: 900;
  color:#0b1220;
  margin-bottom: 8px;
}

/* Section subtitle */
.ac-home .ac-section-sub{
  color:#6b7280;
  margin:0;
}

/* Featured section background */
.ac-home .ac-featured{
  background: radial-gradient(900px 420px at 20% 10%, rgba(13,110,253,.10), transparent 60%);
}

/* Suite layout */
.ac-home .ac-suite-wrap{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
  padding: 0 5vw 64px;
}

/* Mobile suite layout */
@media (max-width: 991.98px){
  .ac-home .ac-suite-wrap{ 
    grid-template-columns: 1fr; 
    padding: 0 5vw 44px; 
  }
}

/* Image stack container */
.ac-home .ac-image-stack{
  position: relative;
  min-height: 420px;
}

/* Image stack item */
.ac-home .ac-image-stack-item{
  position: absolute;
  width: 78%;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 22px 70px rgba(13,30,60,.18);
  border: 1px solid rgba(255,255,255,.18);
}

/* Image inside stack */
.ac-home .ac-image-stack-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Image overlay */
.ac-home .ac-image-stack-item .overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.20));
  z-index:1;
}

/* Top stacked image */
.ac-home .ac-image-stack-item.ac-top{
  top: 0;
  left: 0;
  height: 320px;
}

/* Bottom stacked image */
.ac-home .ac-image-stack-item.ac-bottom{
  right: 0;
  bottom: 0;
  height: 300px;
}

/* Suite content card */
.ac-home .ac-suite-contents{
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(229,231,235,.9);
  border-radius: 22px;
  padding: 28px 26px;
  box-shadow: 0 18px 60px rgba(13,30,60,.10);
}

/* Suite title */
.ac-home .ac-suite-title{
  font-weight: 900;
  color:#0b1220;
  margin-bottom: 10px;
}

/* Suite text */
.ac-home .ac-suite-text{
  color:#4b5563;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* Read more link */
.ac-home .ac-readmore{
  color:#0d6efd;
  font-weight: 800;
  text-decoration: none;
}

/* Read more hover */
.ac-home .ac-readmore:hover{ 
  text-decoration: underline; 
}

/* Step card */
.ac-home .ac-step-card{
  background: #fff;
  border: 1px solid rgba(229,231,235,.95);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 16px 50px rgba(13,30,60,.08);
  height: 100%;
}

/* Step number */
.ac-home .ac-step-num{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: rgba(13,110,253,.10);
  color: #0d6efd;
  margin-bottom: 12px;
}

/* Step title */
.ac-home .ac-step-card h5{
  font-weight: 900;
  margin-bottom: 8px;
  color:#0b1220;
}

/* Step description */
.ac-home .ac-step-card p{
  margin:0;
  color:#6b7280;
}

/* Remove extra top space */
.ac-home{
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Hero slider margin fix */
.ac-home .ac-owl-hero{
  margin-top: 0 !important;
}

/* GPU render fix for slider */
.ac-owl-hero,
.ac-owl-hero *{
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Smooth slider animation */
.ac-owl-hero .owl-stage{
  will-change: transform;
}
/* ================= HERO BUTTONS ================= */

/* Base style */
.ac-btn-hero {
  display: inline-block;
  padding: 12px 28px;
  font-size: 16px;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Dark button (primary) */
.ac-btn-hero--dark {
  background: rgba(11, 18, 32, 0.9);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.1);
}

.ac-btn-hero--dark:hover {
  background: #0b1220;
  transform: translateY(-2px);
  color: #ffffff;
}

/* Outline button (secondary) */
.ac-btn-hero--outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.4);
}

.ac-btn-hero--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #ffffff;
  transform: translateY(-2px);
  color: #ffffff;
}