/* =========================================================
   FOUNDATIONS (Fonts, Variables, Resets)
   ========================================================= */

/* Preferred family (others commented in original kept intentional) */
@font-face {
  font-family: 'Basier Square';
  src: url('https://www.casefox.com/assets/font/BasierSquare-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Global Tokens */
:root {
  /* Typography */
  --default-font: 'Basier Square', sans-serif;
  --heading-font: 'Basier Square', sans-serif;
  --nav-font: 'Basier Square', sans-serif;
  --body-font-weight: 400;

  /* Palette */
  --background-color: #F8F9FB;
  --default-color: #0a0a0a;
  --heading-color: #0B3558;
  --accent-color: #0066f2;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;

  /* Nav palette */
  --nav-color: #212529;
  --nav-hover-color: #0058D3;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #0d83fd;

  /* Motion */
  scroll-behavior: smooth;
}

/* Color presets */
.light-background {
  --background-color: #f3f9ff;
  --surface-color: #ffffff;
}
.dark-background {
  --background-color: #0058D3;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #0058D3;
  --contrast-color: #ffffff;
}

/* Base */
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-weight: var(--body-font-weight);
}
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}
h1,h2,h3,h4,h5,h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* =========================================================
   HEADER / NAV
   ========================================================= */

.header {
  margin-top: 10px;
  color: var(--default-color);
  padding: 0;
  transition: all 0.5s;
  z-index: 997;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}
.header .header-container {
  background-color: rgba(255, 255, 255, 0.807);
  border-radius: 15px;
  border: 2px solid rgba(0, 4, 255, 0.100);
  padding: 5px 25px;
  max-width: 1295px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* Scrolled state */
.scrolled .header { background-color: #ffffff00; }
.scrolled .header .logo h1 { color: #2d405f; }
.scrolled .navmenu ul li a,
.scrolled .navmenu ul li a:focus { color: #2d405f; }
.scrolled .navmenu ul li:hover > a,
.scrolled .navmenu .active,
.scrolled .navmenu .active:focus { color: var(--accent-color); }
.scrolled .mobile-nav-toggle { color: #2d405f; }

/* Logo */
.header .logo {
  line-height: 1;
  padding-left: 5px;
  display: flex;
  align-items: center;
}
.header .logo img { max-height: 50px; margin-right: 0; }
.header .logo h1 {
  font-size: 24px; margin: 0; font-weight: 500;
  color: var(--default-color); transition: color 0.3s;
}

/* Buttons */
.header .btn-getstarted,
.header .btn-getstarted:focus { border: none; cursor: pointer; }
.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover { color: var(--contrast-color); }

.header .bbtn-getstarted,
.header .bbtn-getstarted:focus {
  color: var(--contrast-color);
  background: linear-gradient(to right, #350091 0%, #0a93e4 100%);
  font-size: 14px;
  padding: 10px 20px;
  margin: 0;
  border-radius: 7px;
  transition: 0.3s;
  border: none; cursor: pointer;
  font-family: var(--nav-font);
}
.header .bbtn-getstarted:hover,
.header .bbtn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/* Desktop Nav */
@media (min-width: 1210px) {
  .navmenu { padding: 0; }
  .navmenu ul {
    margin: 0; padding: 0; display: flex; list-style: none; align-items: center;
  }
  .navmenu li { position: relative; }
  .navmenu a,
  .navmenu a:focus {
    color: #10021c;
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
  }
  .navmenu a i,
  .navmenu a:focus i { font-size: 12px; line-height: 0; margin-left: 5px; transition: 0.3s; }
  .navmenu li:last-child a { padding-right: 0; }
  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus { color: #5d07a8a0; }

  /* Dropdown */
  .navmenu .dropdown ul{
    margin:0; padding:10px 0; display:block; position:absolute; visibility:hidden;
    left:14px; top:130%; opacity:0; transition:0.3s; border-radius:4px; z-index:99;
  }
  .navmenu .dropdown ul li { min-width: 200px; }
  .navmenu .dropdown ul a { padding:10px 20px; font-size:15px; }
  .navmenu .dropdown ul a i { font-size:12px; }
  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a { color: var(--nav-dropdown-hover-color); }
  .navmenu .dropdown:hover > ul { opacity:1; top:100%; visibility:visible; }
  .navmenu .dropdown .dropdown ul { top:0; left:-90%; visibility:hidden; }
  .navmenu .dropdown .dropdown:hover > ul { opacity:1; top:0; left:-100%; visibility:visible; }
}

/* Mobile Nav */
@media (max-width: 1210px) {
  .mobile-nav-toggle {
    color:#5c07a8; font-size:28px; line-height:0; margin-right:10px;
    cursor:pointer; transition:color .3s; display:block;
  }
  .navmenu { padding:0; z-index:9997; }
  .navmenu ul{
    display:none; list-style:none; position:absolute; inset:60px 20px 20px 20px;
    padding:10px 0; margin:0; border-radius:6px; background:var(--nav-mobile-background-color);
    overflow-y:auto; transition:.3s; z-index:9998; box-shadow:0 0 30px rgba(0,0,0,.1);
  }
  .navmenu a,
  .navmenu a:focus{
    color:var(--nav-dropdown-color); padding:10px 20px; font-family:var(--nav-font);
    font-size:17px; font-weight:500; display:flex; align-items:center; justify-content:space-between;
    white-space:nowrap; transition:.3s; text-decoration:none;
  }
  .navmenu a i,
  .navmenu a:focus i{
    font-size:12px; line-height:0; margin-left:5px; width:30px; height:30px; display:flex;
    align-items:center; justify-content:center; border-radius:50%;
    transition:.3s; background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }
  .navmenu a i:hover,
  .navmenu a:focus i:hover{ background-color: var(--accent-color); color: var(--contrast-color); }
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus{ color: var(--nav-dropdown-hover-color); }
  .navmenu .active i,
  .navmenu .active:focus i{ background-color: var(--accent-color); color: var(--contrast-color); transform: rotate(180deg); }
  .navmenu .dropdown ul{
    position:static; display:none; z-index:99; padding:10px 0; margin:10px 20px;
    background:var(--nav-dropdown-background-color);
    border:1px solid color-mix(in srgb, var(--default-color), transparent 90%); box-shadow:none;
    transition:all .5s ease-in-out;
  }
  .navmenu .dropdown ul ul{ background-color: rgba(33,37,41,0.1); }
  .navmenu .dropdown > .dropdown-active { display:block; background-color: rgba(33,37,41,0.03); }

  .mobile-nav-active { overflow:hidden; }
  .mobile-nav-active .mobile-nav-toggle{
    color:#2d405f; position:absolute; font-size:32px; top:15px; right:15px; margin-right:0; z-index:9999;
  }
  .mobile-nav-active .navmenu{
    position:fixed; overflow:hidden; inset:0; background:rgba(33,37,41,.8); transition:.3s;
  }
  .mobile-nav-active .navmenu > ul { display:block; }

  .scrolled .mobile-nav-toggle { color:#2d405f; }
  .scrolled.mobile-nav-active .mobile-nav-toggle { color:#2d405f; }
}


@media (max-width: 1200px) {
  .header { padding-top: 0; }
  .header .header-container { margin-left:0; margin-right:0; padding:10px 5px 10px 15px; }
  .header .logo { order:1; }
  .header .btn-getstarted { order:2; margin:0 -10px 0 0; padding:6px 15px; margin-top:5px; }
  .navmenu { order:3; }
}


.login-btn {
  display:inline-flex; align-items:center; text-decoration:none; color:#093444;
  font-size:16px; margin-right:8px; font-family:sans-serif;
}
.login-btn i { color:#093444; font-size:20px; margin-right:8px; }
.login-btn:hover { text-decoration: underline; }
@media (max-width: 499px) { .login-btn { display: none; } }


.ccustom-section{
  padding: 0 40px; padding-top:20px; background:#ffffff; border-radius:20px;
  border-top:3px solid rgb(7,7,77); margin-left:-380px; padding-bottom:20px;
}
@media (max-width:768px){
  .ccustom-section{
    padding:0; background-color:#ffffff00; border-radius:20px;
    border-top:3px solid rgba(255,255,255,0); margin-left:0; margin-top:-42px;
  }
}
.custom-section{
  padding:0 40px; padding-top:20px; background:#ffffff; border-radius:20px;
  border-top:3px solid rgb(7,7,77); margin-left:-272px; padding-bottom:15px;
}
.custom-container{
  max-width:1000px; min-width:1200px; margin:auto; display:flex; justify-content:space-between; gap:30px;
}
.custom-column{ width:30%; }
.custom-heading{
  font-weight:600; background:#f3f4f6; color:#374151; padding:8px 12px; border-radius:6px;
  margin-bottom:10px; font-size:16px; margin-left:-5px;
}
.custom-heading.custom-active{ background:#e5e7eb; }
.custom-item{ margin-bottom:-5px; }
.custom-title{
  display:inline-block; font-weight:600; color:#0f172a; text-decoration:none; font-size:15px; margin-left:-20px;
}
.custom-title:hover{ text-decoration: underline; }
.custom-item p{ color:#6b7280; font-size:11px; margin:-4px 0 0; }
.custom-see-all{ color:#6b7280; font-size:14px; text-decoration:none; }
.custom-see-all:hover{ text-decoration: underline; }
.custom-column img{ max-width:300px; height:auto; border-radius:10px; display:block; }
@media (max-width:768px){
  .custom-column img{ display:none; }
  .custom-section{
    padding:0; background:#ffffff00; border-radius:20px; border-top:3px solid rgba(255,255,255,0);
    margin-left:0; margin-top:-42px;
  }
  .custom-title{ margin-top:-25px; }
}
@media (max-width:910px){
  .custom-container{ flex-direction:column; }
  .custom-column{ width:100%; }
  .custom-item{ margin-bottom:5px; padding:10px; max-width:25%; }
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer-v2{
  background-image:url('https://www.casefox.com/assets/img/footer-bg.png');
  font-size:15px; background-size:cover; color:#111;
}
.footer-v2 h5{ font-weight:600; color:#111; margin-bottom:16px; }
.footer-v2 ul{ list-style:none; padding-left:0; }
.footer-v2 ul li{ margin-bottom:10px; }
.footer-v2 ul li a{ text-decoration:none; color:#111; }
.footer-v2 ul li a:hover,
.footer-v2 .contact-sales{ text-decoration: underline; }
.footer-v2 .footer-top{ padding:60px 0; }
.footer-v2 .footer-bottom{
  background:#fff; padding:20px 0; border-top:1px solid #cfd8e1; font-size:14px;
}
.footer-v2 .social-icons a{
  margin-right:15px; color:#111; font-size:20px; display:inline-flex; align-items:center; gap:6px; text-decoration:none;
}
.footer-v2 .legal-links{ text-align:center; flex-grow:1; margin-top:10px; margin-left:0; }
.footer-v2 .legal-links a{ margin:0 12px; color:#111; text-decoration:none; }
.footer-v2 .app-buttons{ display:flex; gap:10px; }
.footer-v2 .app-buttons img{ height:40px; }
.footer-v2 .arrow{ font-weight:500; margin-left:5px; }
.footer-v2 .emoji{ font-size:16px; }
@media (max-width:768px){
  .footer-v2 .footer-bottom .container{ flex-direction:column; align-items:center; text-align:center; gap:20px; }
  .footer-v2 .legal-links a{ display:inline-block; margin:6px; }
  .footer-v2 .app-buttons{ justify-content:center; }
}

/* =========================================================
   UTILITIES (Scroll top, AOS mobile)
   ========================================================= */

.scroll-top{
  position:fixed; visibility:hidden; opacity:0; right:15px; bottom:-15px; z-index:99999;
  background-color:var(--accent-color); width:44px; height:44px; border-radius:50px; transition:all .4s;
}
.scroll-top i{ font-size:24px; color:var(--contrast-color); line-height:0; }
.scroll-top:hover{ background-color: color-mix(in srgb, var(--accent-color), transparent 20%); color: var(--contrast-color); }
.scroll-top.active{ visibility:visible; opacity:1; bottom:15px; }
@media screen and (max-width:768px){ [data-aos-delay]{ transition-delay:0 !important; } }

/* =========================================================
   PAGE TITLES
   ========================================================= */

.page-title{
  color:var(--default-color); background-color:var(--background-color);
  padding:170px 0 80px; text-align:center; position:relative;
}
.page-title h1{ font-size:42px; font-weight:700; margin-bottom:10px; }
.page-title .breadcrumbs ol{
  display:flex; flex-wrap:wrap; list-style:none; justify-content:center; padding:0; margin:0; font-size:16px; font-weight:400;
}
.page-title .breadcrumbs ol li+li{ padding-left:10px; }
.page-title .breadcrumbs ol li+li::before{
  content:"/"; display:inline-block; padding-right:10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/* =========================================================
   SECTIONS & TITLES
   ========================================================= */

section,.section{
  color:var(--default-color); background-color:var(--background-color);
  padding:0px 0; scroll-margin-top:90px; overflow:clip;
}
@media (max-width:1199px){ section,.section{ scroll-margin-top:66px; } }

.section-title{
  text-align:center; padding-bottom:60px; position:relative; margin-top:-30px;
}
.section-title h2{
  font-size:36px; font-weight:700; margin-bottom:20px; padding-bottom:20px; color:rgb(11,53,88); position:relative;
}
.section-title h2:after{
  content:""; position:absolute; display:block; width:50px; height:3px; background:var(--accent-color);
  left:0; right:0; bottom:0; margin:auto;
}
.section-title p{ margin-bottom:0; }
/* =========================================================
   FAQ
   ========================================================= */

.faq .faq-title{ font-size:44px; font-weight:700; margin-bottom:1rem; color:var(--heading-color); }
.faq .faq-description{ font-size:1rem; color:var(--default-color); margin-bottom:2rem; }
.faq .faq-arrow{ color:var(--accent-color); }
.faq .faq-container .faq-item{
  background-color:var(--surface-color); position:relative; padding:20px; margin-bottom:15px; border-radius:10px; overflow:hidden;
}
.faq .faq-container .faq-item:last-child{ margin-bottom:0; }
.faq .faq-container .faq-item h3{
  font-weight:600; font-size:16px; line-height:24px; margin:0 30px 0 0; transition:.3s; cursor:pointer; display:flex; align-items:center;
}
.faq .faq-container .faq-item h3 .num{ color:var(--accent-color); padding-right:5px; }
.faq .faq-container .faq-item h3:hover{ color:var(--accent-color); }
.faq .faq-container .faq-item .faq-content{
  display:grid; grid-template-rows:0fr; transition:.3s ease-in-out; visibility:hidden; opacity:0;
}
.faq .faq-container .faq-item .faq-content p{ margin-bottom:0; overflow:hidden; }
.faq .faq-container .faq-item .faq-toggle{ position:absolute; top:20px; right:20px; font-size:16px; line-height:0; transition:.3s; cursor:pointer; }
.faq .faq-container .faq-item .faq-toggle:hover{ color:var(--accent-color); }
.faq .faq-container .faq-active h3{ color:var(--accent-color); }
.faq .faq-container .faq-active .faq-content{ grid-template-rows:1fr; visibility:visible; opacity:1; padding-top:10px; }
.faq .faq-container .faq-active .faq-toggle{ transform:rotate(90deg); color:var(--accent-color); }

.faq-left {
  position: static;
}

@media (min-width: 992px) {
  .faq-left {
    position: sticky;
    top: 100px; 
    align-self: flex-start;
  }
}

/* =========================================================
   bottum CTA 
   ========================================================= */


.msg-section-wrapper {
  background: linear-gradient(to bottom, #ffffff 50%, #b9d5fa 50%);
  padding: 30px 0;
}

.msg-card {
  background: url(' https://www.casefox.com/assets/img/background-1.png') center center / cover no-repeat;
}

.btn-gradient {
  background: linear-gradient(90deg, #200d7e, #4471f9);
  border: none;
  color: white;
  font-weight: 500;
  border-radius: 7px;
  transition: 0.3s ease;
  font-size: 20px;
}

.btn-gradient:hover {
  background: white;
  color: #021061;
  border: 2px solid #021061;
}


@media (max-width: 768px) {
  .msg-card {
    text-align: center;
  }

  .btn-gradient,
  .btn-outline-light {
    width: 100%;
    text-align: center;
  }
}


.cta-btn-fresh {
background: linear-gradient(90deg, #041264, #098dda);
color: #fff;
font-weight: 600;
font-size: clamp(16px, 2.5vw, 18px); 
padding: clamp(10px, 2.5vw, 12px) clamp(16px, 4vw, 28px); 
border: none;
border-radius: 10px;
transition: all 0.3s ease-in-out;
box-shadow: 0 4px 10px rgba(74, 9, 238, 0.25);
white-space: nowrap;
display: inline-block;
text-align: center;
min-height: 44px; 
line-height: 1.2;
}

.cta-btn-fresh:hover {
background: linear-gradient(90deg, #098dda, #041264);
color: #fff;
box-shadow: 0 6px 14px rgba(51, 9, 238, 0.35);
}

.cta-btn-fresh:active {
transform: translateY(1px) scale(0.97);
box-shadow: 0 2px 6px rgba(9, 59, 238, 0.2);
}


@media (max-width: 768px) {
.cta-btn-fresh {
width: 100%;
border-radius: 8px;
white-space: normal; 
padding: 14px 16px; 
display: block; 
}
}

.input-group {
flex-wrap: nowrap !important;
width: 100%;
}

.input-group .form-control {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
min-height: 44px; 
}

.input-group .cta-btn-fresh {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
flex-shrink: 0;
width: auto; 
}


/* =========================================================
   HERO
   ========================================================= */


.gradient-textt {
  font-weight: bold;
  background-image: linear-gradient(to right, #7991f6 0%,#2e3e8e 50%, #132a9d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* ------------------------------------------------------------------------- */


.text-succes {
  margin-top: 50px;
    --bs-text-opacity: 1;
    color: #ff620c;
}
.scroll-wrapper {
    margin-top: 30px;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    mask-image: linear-gradient(to right, transparent, rgb(0, 0, 0) 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  }

  .scroll-content {
    display: inline-flex;
    gap: 0; /* No gap between items */
    animation: scroll-left 20s linear infinite;
  }

  .scroll-content.reverse {
    animation: scroll-right 25s linear infinite;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  @keyframes scroll-right {
    0% {
      transform: translateX(-50%);
    }
    100% {
      transform: translateX(0);
    }
  }

  .scroll-badge {
    display: inline-block;
    white-space: nowrap;
    padding: 13px 34px;
    margin: 0; 
    border-radius: 9999px;
    background-color: #ffffff;
    color: #333;
    font-weight: 500;
    font-family: sans-serif;
    font-size: 22px;
  }

  
/* ------------------------------------------------------------------------- */




/* ---------------------------------------------------------------*/

  .horizontal-scroll {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .horizontal-scroll::-webkit-scrollbar {
    display: none;
  }

  .custom-card {
    width: 300px;
    min-width: 300px;
    background: white;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    scroll-snap-align: start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 450px;
    position: relative;
    overflow: hidden;
  }

  .custom-card:hover {
    border-color: #001bb165;
    box-shadow: 0 4px 16px rgba(0, 44, 177, 0.3);
  }

  .card-footer {
    margin-top: auto;
    overflow: hidden;
  }

  .bottom-image {
    transition: transform 0.3s ease;
    width: 100%;
    display: block;
  }

  .learn-more {
    position: absolute;
    top: -30px;
    left: 0;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 2;
    margin-left: 20px;
  }

  .custom-card:hover .bottom-image {
    transform: translateY(30px);
  }

  .custom-card:hover .learn-more {
    opacity: 1;
    top: 0;
  }
  /* New styles for navigation buttons */
  .scroll-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #001bb1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .scroll-button:hover {
    background: #001bb1;
    color: white;
    transform: scale(1.1);
  }

  .scroll-button:active {
    transform: scale(0.95);
  }

   /* Dot indicator styles */
  .dot-container {
    height: 12px;
  }

  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  

  .dot:hover {
    background-color: #001bb180;
  }

/* ---------------------------------------------------------------*/
.gradient-text {
    background: linear-gradient(90deg, #3105c5, #010756);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .text-purple {
    color: #7b4db7;
  }
  
  .bg-purple {
    background-color: #5f4db7;
  }
  
  .bg-purple-light {
    background-color: #f8f1f9;
  }
  
  .badgea.bg-purple {
    background-color: rgba(77, 86, 183, 0.064) !important;
  }
  
  @media (max-width: 992px) {
    .display-5 {
      font-size: 2rem;
    }
    
    .fs-5 {
      font-size: 1rem !important;
    }
    
    .p-lg-5 {
      padding: 1.5rem !important;
    }
  }
  
  @media (max-width: 768px) {
    .display-5 {
      font-size: 1.75rem;
    }
    
    .lead {
      font-size: 1rem;
    }
  }


  
  

/* ---------------------------------------------------------------*/
.performance-title {
    margin-top: 50px;
    color: #ff620c;
  }

  .performance-scroll-wrapper {
    margin-top: 30px;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  }

  .performance-scroll-track {
    display: inline-flex;
    gap: 0;
    animation: performance-scroll-left 20s linear infinite;
  }

  .performance-scroll-track.reverse {
    animation: performance-scroll-right 20s linear infinite;
  }

  @keyframes performance-scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  @keyframes performance-scroll-right {
    0% {
      transform: translateX(-50%);
    }
    100% {
      transform: translateX(0);
    }
  }

  .performance-badge-track {
    display: flex;
    gap: 20px;
    align-items: center;
  }

  .performance-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 25px;
    background: #e9e8e841;
    border-radius: 999px;
    color: #000;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  .performance-badge img {
    width: 35px;
    height: 35px;
    object-fit: cover;
    padding: 5px;
  }
  .performance-badge p{
    font-size: 20px;  
    margin-bottom: 0px;
  }

  .performance-gradient-text {
    background: linear-gradient(90deg, #0744c7, #0f8bdd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  @media (max-width: 768px) {
    .performance-badge img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    padding: 5px;
  }
   .performance-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
 
    
  }
  }

/* ---------------------------------------------------------------*/
   /* Base Styles */
  .feature-toggle-section {
    line-height: 1.5;
    margin-top: 50px;
  }
  
  .container {
    box-sizing: border-box;
    padding: 0 15px;
  }

  /* Toggle Buttons */
  .toggle-button {
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #333;
    margin: 5px;
    white-space: nowrap;
  }

  .toggle-button:hover {
    background-color: #f0f0f0;
  }

  .toggle-button.active {
    background-color: #006aff;
    color: #fff;
    border-color: #006aff;
  }

  /* Feature Content Box */
  .feature-content-box {
    background: #ffffff00;
    padding: 40px;
  }

  /* Tab Layout */
  .tab-pane {
    display: none;
  }

  .tab-pane.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
  }

  .tab-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
  }

  .text-block {
    flex: 1 1 50%;
    max-width: 45%;
    order: 1;
  }
  .text-block {
  flex: 1 1 50%;
  padding-right: 40px;
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

.text-block h2 {
  margin-top: -100px;
  font-size: 54px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.text-block p {
  font-size: 28px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 24px;
}

.text-block ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.text-block ul li {
  position: relative;
  padding-left: 28px;
  font-size: 21px;
  color: #333;
  margin-bottom: 14px;
  line-height: 1.5;
}

.text-block ul li::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 0;
  width: 14px;
  height: 14px;
  background-color: #006aff;
  border-radius: 50%;
  mask: url('https://cdn-icons-png.flaticon.com/512/1828/1828640.png') no-repeat center;
  mask-size: cover;
  -webkit-mask: url('https://cdn-icons-png.flaticon.com/512/1828/1828640.png') no-repeat center;
  -webkit-mask-size: cover;
}

  .image-block {
    flex: 1 1 50%;
    max-width: 50%;
    order: 2;
    text-align: center;
  }

  /* Images */
  .tab-pane img {
    max-width: 100%;
    height: auto;
    margin-right: -149px;
    margin-top: -50px;
    margin-bottom: -40px;
    border-radius: 26px 0px 26px 0px;
  }

  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive Adjustments */
  @media (max-width: 1000px) {
    .feature-content-box {
      padding: 25px;
      margin: -20px;

    }
    .tab-pane img {
    max-width: 100%;
    height: auto;
    margin: auto;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
    
    .tab-layout {
      flex-direction: column;
      gap: 30px;
    }
    
    .text-block, .image-block {
      flex: 1 1 100%;
      min-width: 100%;
    }
    
    .text-block {
      order: 2;
    }
    
    .image-block {
      order: 1;
    }
    
    .toggle-button-row {
      gap: 8px;
    }
    
    .toggle-button {
      padding: 8px 16px;
      font-size: 13px;
    }
  }

  @media (max-width: 480px) {
    .feature-toggle-section {
      padding: 40px 15px;
    }
    
    
    .feature-content-box {
      padding: 20px;
      margin: -10px;
    }
  }

  @media (max-width: 1000px) {
  .text-block {
    flex: 1 1 100%;
    padding-right: 0;
  }

  .text-block h2 {
    margin-top: 0px;
    font-size: 24px;
  }

  .text-block p {
    font-size: 16px;
  }

  .text-block ul li {
    font-size: 15px;
  }
}




.btn-orange {
  background: linear-gradient(90deg, #2d0e9f, #00aaff); /* Gradient from purple to blue */
  color: #ffffff;
  font-weight: 500;
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 170, 255, 0.3);
  text-decoration: none;
}

.btn-orange:hover {
  transform: translateY(-1px);
  background: #ffffff;
  color: #0044f0;
  border: 1px solid #0044f0;
}




/* ---------------------------------------------------------------*/


.nda-section{ background-color:#ffffff; }
.nda-wrapper{
  background:url('https://www.casefox.com/assets/img/background-1.png') no-repeat center center; background-size:cover;
  border-radius: 15px 15px 60px 15px; width:100%;
}
.nda-card{ background-color:#1b1e4aad; border-radius:15px 15px 15px 15px; color:#ffffff; }
.nda-card h5{ color:#fff; }
.nda-card p{ color:#ccc; }
.nda-section .btn-primary{ background:linear-gradient(90deg,#011446,#3171e6); border:none; }
.nda-section .btn-primary:hover{ background:linear-gradient(90deg,#011546c8,#3170e6c0); }

/* ====================================================================== */
/* Section Styles */
.performance-section {
  position: relative;
  overflow: hidden;
}
/* Main Card Styles */
.main-card {
  background: url('/assets/img/background-1.png') center center / cover no-repeat;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  border-radius: 30px;
  margin-top: 60px;
}
.main-card-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: white;
}
.main-card-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}
.main-card-image {
  max-width: 100%;
  height: auto;
}
/* Gradient Button */
.gradient-btn {
  background: linear-gradient(90deg, #340392 0%, #0b93e4 100%);
  border: none;
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
}
.gradient-btn:hover {
  background: white;
  color: #1d8cf8;
  border: 1px solid #1d8cf8;
}
.btn-arrow {
  font-size: 18px;
  font-weight: 600;
}
/* Left Card Styles */
.left-card {
  background: url('/assets/img/background-3.png') center center / cover no-repeat;
  border-radius: 24px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  color: #1c2049;
  padding: 55px;
}
.left-card-title {
  font-size: 2.5rem;
  line-height: 1.2;
}
.left-card-description {
  font-size: 1.25rem;
}
.left-card-image {
  max-width: 350px;
  width: 100%;
  margin-right: -500px;
  margin-top: -250px;
  margin-bottom: -78px;
}
/* Right Card Styles */
.right-card {
  background: url('/assets/img/background-4.png') center center / cover no-repeat;
  border-radius: 24px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  padding: 40px;
}
.collaboration-badge {
  background-color: white;
  color: #1c2049;
  font-size: 0.9rem;
  border-radius: 12px;
  padding: 8px 16px;
  font-weight: 600;
}
.right-card-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.right-card-text {
  font-size: 1rem;
  opacity: 0.9;
}
.right-card-image {
  max-width: 300px;
  width: 100%;
}
/* Resource Button */
.resource-btn {
  border: 2px solid #ffffff;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0);
  padding: 10px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-top: 70px;
}
.resource-btn:hover {
  background-color: #ffffff;
  color: rgba(0, 0, 0, 0.364);
  border: 2px solid #00000058;
}
/* Responsive Styles */
@media (max-width: 1199px) {
  .left-card-title {
    font-size: 2rem;
  }
  
  .left-card-image {
    margin-right: -300px;
    margin-top: -200px;
  }
}
@media (max-width: 992px) {
  .left-card-image {
    max-width: 100%;
    margin: 20px auto 0;
  }
  
  .right-card-image {
    max-width: 100%;
  }
  
  .main-card-title {
    font-size: 2rem;
  }
  
  .left-card-title {
    font-size: 1.8rem;
  }
  
  .right-card-subtitle {
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  .main-card {
    padding: 2rem 1.5rem !important;
    text-align: center;
  }
  
  .gradient-btn {
    width: 100%;
  }
  
  .left-card,
  .right-card {
    padding: 2rem 1.5rem !important;
  }
}
@media (max-width: 576px) {
  .main-card {
    padding: 2rem 1rem !important;
  }
  
  .main-card-title {
    font-size: 1.8rem !important;
  }
  
  .main-card-description {
    font-size: 1rem !important;
  }
  
  .gradient-btn {
    font-size: 1rem;
    padding: 10px 16px;
  }
  
  .left-card-title {
    font-size: 1.6rem;
  }
  
  .right-card-subtitle {
    font-size: 1.2rem;
  }
}

    
.djfsk-main-card {
  background: url('/assets/img/background-2.png') center center / cover no-repeat;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  border-radius: 30px;
  margin-top: 60px;
}

.djfsk-main-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: white;
}

.djfsk-main-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.djfsk-main-image {
  max-width: 100%;
  height: auto;
}

.djfsk-gradient-btn {
  background: linear-gradient(90deg, #7d0392 0%, #c47dde 100%);
  border: none;
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
}

.djfsk-gradient-btn:hover {
  background: white;
  color: #1d8cf8;
  border: 1px solid #1d8cf8;
}

.djfsk-btn-arrow {
  font-size: 18px;
  font-weight: 600;
}

.djfsk-left-card {
  background: url('/assets/img/background-5.png') center center / cover no-repeat;
  border-radius: 24px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  color: #1c2049;
  padding: 55px;
}

.djfsk-left-title {
  font-size: 2.5rem;
  line-height: 1.2;
}

.djfsk-left-desc {
  font-size: 1.25rem;
}

.djfsk-left-img {
  max-width: 520px;
  width: 100%;
  margin-right: -390px;
  margin-top: -250px;
  margin-bottom: -78px;
}

.djfsk-right-card {
  background: url('/assets/img/background-4.png') center center / cover no-repeat;
  border-radius: 24px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  padding: 40px;
}

.djfsk-badge {
  background-color: white;
  color: #1c2049;
  font-size: 0.9rem;
  border-radius: 12px;
  padding: 8px 16px;
  font-weight: 600;
}

.djfsk-right-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.djfsk-right-desc {
  font-size: 1rem;
  opacity: 0.9;
}

.djfsk-right-img {
  max-width: 300px;
  width: 100%;
}

.djfsk-resource-btn {
  border: 2px solid #ffffff;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0);
  padding: 10px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-top: 70px;
}

.djfsk-resource-btn:hover {
  background-color: #ffffff;
  color: rgba(0, 0, 0, 0.364);
  border: 2px solid #00000058;
}

@media (max-width: 1199px) {
  .djfsk-left-title {
    font-size: 2rem;
  }
  .djfsk-left-img {
    margin-right: -300px;
    margin-top: -200px;
  }
}

@media (max-width: 992px) {
  .djfsk-left-img {
    max-width: 100%;
    margin: 20px auto 0;
  }
  .djfsk-right-img {
    max-width: 100%;
  }
  .djfsk-main-title {
    font-size: 2rem;
  }
  .djfsk-left-title {
    font-size: 1.8rem;
  }
  .djfsk-right-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .djfsk-main-card {
    padding: 2rem 1.5rem !important;
    text-align: center;
  }
  .djfsk-gradient-btn {
    width: 100%;
  }
  .djfsk-left-card,
  .djfsk-right-card {
    padding: 2rem 1.5rem !important;
  }
}

@media (max-width: 576px) {
  .djfsk-main-card {
    padding: 2rem 1rem !important;
  }
  .djfsk-main-title {
    font-size: 1.8rem !important;
  }
  .djfsk-main-desc {
    font-size: 1rem !important;
  }
  .djfsk-gradient-btn {
    font-size: 1rem;
    padding: 10px 16px;
  }
  .djfsk-left-title {
    font-size: 1.6rem;
  }
  .djfsk-right-title {
    font-size: 1.2rem;
  }
}
.kdjfndk-main-card {
  background: linear-gradient(135deg, #fde5f0 0%, #fde5f0 100%);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  border-radius: 30px;
  margin-top: 0px;
}

.kdjfndk-main-title {
  font-size: 2.8rem;
  font-weight: 600;
  color: rgb(0, 0, 0);
}

.kdjfndk-main-desc {
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.9);
}

.kdjfndk-main-image {
  max-width: 110%;
  height: auto;
  margin-bottom: -55px;
  margin-right: -125px;
  margin-top: -50px;
}

.kdjfndk-gradient-btn {
  background: linear-gradient(90deg, #f482b5 0%, #f988ff 100%);
  border: none;
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
}

.kdjfndk-gradient-btn:hover {
  background: white;
  color: #1d8cf8;
  border: 1px solid #1d8cf8;
}

.kdjfndk-btn-arrow {
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .kdjfndk-main-card {
    padding: 2rem 1.5rem !important;
    text-align: center;
  }

  .kdjfndk-gradient-btn {
    width: 100%;
  }

  .kdjfndk-main-title {
    font-size: 2rem;
  }
  .kdjfndk-main-image {
  max-width: 110%;
  height: auto;
  margin-bottom: -50px;
  margin-right: 0px;
  margin-top: 10px;
}
}

@media (max-width: 576px) {
  .kdjfndk-main-card {
    padding: 2rem 1rem !important;
  }

  .kdjfndk-main-title {
    font-size: 1.8rem !important;
  }

  .kdjfndk-main-desc {
    font-size: 1rem !important;
  }

  .kdjfndk-gradient-btn {
    font-size: 1rem;
    padding: 10px 16px;
  }
}

/* ====================================================================== */
.slider112{
  background-color: #ffffff00;
}

.slider-section {
  max-width: 1380px;
  margin: auto;
  padding: 0px 20px;
}

.display-heading {
  font-size: 2.7rem;
  line-height: 1.3;
  font-weight: 800;
  color: #555555;
}

.display-stat {
  font-size: 11rem;
  line-height: 1;
  font-weight: 500;
}

.text-gradient {
  background: linear-gradient(90deg, #000000, #000000a5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 992px) {
  .display-heading {
    font-size: 2.1rem;
  }
  .display-stat {
    font-size: 5rem;
  }
}

@media (max-width: 576px) {
  .display-heading {
    font-size: 1.8rem;
  }

  .display-stat {
    font-size: 4rem;
  }
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.slider-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.card-item {
  flex: 0 0 calc(100% / 4.5);
  min-width: 260px;
  border: none;
  background-color: #00000005;
  border-bottom: 2px solid #0e042446;
  border-right: 2px solid #0e042446;
  border-radius: 0.75rem;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category {
  font-size: 1.10rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.profile-img {
  width: 126px;
  height: 126px;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 1.7rem;
  margin-top: 1rem;
}

.name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
}

.role {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.company-logo {
  height: 35px;
  margin-top: auto;
}

.slider-nav {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.nav-btn {
  width: 40px;
  height: 40px;
  background: white;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s;
  margin-left: 10px;
}

.nav-btn:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-btn svg {
  width: 20px;
  height: 20px;
  color: #6b7280;
}

@media (max-width: 768px) {
  .card-item {
    flex: 0 0 80%;
  }

  .slider-nav {
    display: none;
  }
}

.card-item {
  position: relative;
  transition: all 0.3s ease;
  height: 380px; /* Fixed height for consistency */
}

.card-content {
  transition: all 0.3s ease;
}

.card-hover-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  background: #ff7a07;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0.60rem;
}

.card-item:hover .card-content {
  opacity: 0;
  visibility: hidden;
}

.card-item:hover .card-hover-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.percentage {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.hover-category {
  font-size: 1.10rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ====================================================================== */
.hero-section {
  position: relative;
  padding: 120px 20px 100px;
  text-align: center;
  background: #f0f4fd url('/assets/img/Mas-group.svg') no-repeat;
  background-size: cover;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.badge-top {
  display: inline-block;
  background: #fff;
  padding: 6px 30px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #0540ae;
  margin-bottom: 10px;
}

.hero-heading {
  font-size: 70px;
  font-weight: 600;
  line-height: 1.1;
  color: #1c1c1c;
  margin-bottom: 20px;
}

.hero-heading span {
  background: linear-gradient(to right, #7991f6 0%, #2e3e8e 50%, #132a9d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 20px auto;
  color: #333;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 0px;
}

.btn-main,
.btn-outline {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.btn-main {
  background: linear-gradient(to right, #350091, #0a93e4);
  color: white;
}

.btn-outline {
  border: 2px solid #e5e5e5;
  color: #000;
  background: white;
}

.btn-main:hover{
  color: #ffffff;
  background: linear-gradient(to right,  #0a93e4 , #350091);
}


.hero-floating-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 5;
  pointer-events: none;
}

.floating-image {
  position: absolute;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  border-radius: 8px;
  overflow: hidden;
  will-change: transform, opacity;
}

.floating-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}

.left-1 { top: 200px; left: -3%; width: 280px; }
.left-2 { top: 400px; left: 22%; width: 300px; }
.right-1 { top: 130px; right: -4%; width: 290px; }
.right-2 { top: 400px; right: 20%; width: 270px; }

.hero-dashboard-gallery {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 0px 0px;
  margin-top: 150px;
  min-height: 650px;
  min-width: 1000px;
  background: url('/assets/img/main-deshboard.png') center center / cover no-repeat;
  border-radius: 28px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
  gap: 0;
  position: relative;
  z-index: 2;
}

.dash-img { display: flex; justify-content: center; }

.dash-center img {
  width: 520px;
  border-radius: 22px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.626);
}

@media (max-width: 1200px) {
  .floating-image { display: none !important; }
  .hero-dashboard-gallery {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    background-size: contain;
    background-position: center bottom;
    min-width: 0; 
  }

  .hero-container { padding: 0 16px; }
  .hero-heading { font-size: 58px; }
  .hero-description { font-size: 1.1rem; }
  .hero-dashboard-gallery {
    width: 100%;
    min-height: 560px;
    margin-top: 60px;
  }
}

@media (max-width: 992px) {
  .hero-section { padding: 140px 16px 80px; }
  .badge-top { font-size: 14px; padding: 6px 22px; }
  .hero-heading { font-size: 48px; }
  .hero-description { max-width: 680px; }
  .hero-buttons { gap: 12px; }
  .btn-main, .btn-outline { padding: 12px 26px; }
  .hero-dashboard-gallery {
    min-height: 480px;
    margin-top: 90px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 22px;
  }
  .dash-center img { width: 460px; }
}

@media (max-width: 788px) {
  .hero-heading { font-size: 38px; }
  .hero-description { font-size: 1rem; padding: 0 6px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-main, .btn-outline { width: 100%; max-width: 360px; text-align: center; }

  .hero-dashboard-gallery {
    opacity: 1 !important;
    transform: none !important;
    flex-direction: column;
    margin-top: -130px;
    padding: 20px 12px;
    min-width: 0;
    min-height: 320px;
    width: 100%;
    background-size: contain;
    background-position: center bottom;
    border-radius: 18px;
  }
  .dash-center img { width: 90%; max-width: 520px; }
  .badge-top { margin-bottom: 14px; }
}

@media (max-width: 596px) {
  .hero-section { padding: 130px 14px 64px; }
  .badge-top { font-size: 13px; padding: 5px 18px; border-radius: 10px; }
  .hero-heading { font-size: 32px; line-height: 1.15; }
  .hero-description { font-size: 0.98rem; }
  .hero-dashboard-gallery {
    margin-top: -220px;
    min-height: 280px;
    border-radius: 16px;
  }
  .btn-main, .btn-outline { padding: 12px 22px; font-size: 0.98rem; }
}

@media (max-width: 450px) {
  .hero-section { padding: 130px 14px 64px; }
  .badge-top { font-size: 13px; padding: 5px 18px; border-radius: 10px; }
  .hero-heading { font-size: 32px; line-height: 1.15; }
  .hero-description { font-size: 0.98rem; }
  .hero-dashboard-gallery {
    margin-top: -310px;
    min-height: 280px;
    border-radius: 16px;
  }
  .btn-main, .btn-outline { padding: 12px 22px; font-size: 0.98rem; }
}

@media (prefers-reduced-motion: reduce) {
  .floating-image { transition: none !important; }
  .hero-dashboard-gallery { transition: none !important; }
}


/* ====================================================================== */
