/* =========================================================
   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; }}

/* =========================================================
   Hero Section
   ========================================================= */

    :root {
        --primary-gradient: linear-gradient(to right, #350091, #0a93e4);
        --secondary-gradient: linear-gradient(to right, #7991f6 0%, #2e3e8e 50%, #132a9d 100%);
        --text-dark: #1c1c1c;
        --text-light: #333;
        --accent-blue: #0540ae;
        --shadow: 0 12px 40px rgba(0, 0, 0, 0.626);
    }

    .hero-section {
        position: relative;
        padding: clamp(80px, 10vw, 120px) clamp(20px, 3vw, 40px) clamp(60px, 8vw, 100px);
        text-align: center;
        background: #f0f4fd url('https://www.casefox.com/assets/img/Mas-group.svg') no-repeat;
        background-size: cover;
        overflow: hidden;
    }

    .hero-container {
        max-width: min(1200px, 90vw);
        margin: 0 auto;
        position: relative;
        z-index: 2;
        margin-top: -100px;
    }

    .badge-top {
        display: inline-block;
        background: #fff;
        padding: clamp(5px, 0.8vw, 8px) clamp(20px, 3vw, 30px);
        border-radius: 12px;
        font-size: clamp(14px, 1.1vw, 16px);
        font-weight: 500;
        color: var(--accent-blue);
        margin-bottom: clamp(15px, 1.5vw, 20px);
        box-shadow: 0 4px 12px rgba(5, 64, 174, 0.1);
    }

    .hero-heading {
        font-size: clamp(32px, 4.5vw, 50px);
        font-weight: 600;
        line-height: 1.3;
        color: #1c1c1c;
        margin-bottom: clamp(15px, 1.5vw, 20px);
    }

    .hero-heading span {
        background: var(--secondary-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-description {
        font-size: clamp(1rem, 1.2vw, 1.2rem);
        max-width: min(700px, 90vw);
        margin: clamp(15px, 1.5vw, 20px) auto;
        color: var(--text-light);
        line-height: 1.6;
    }

    .hero-buttons {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: clamp(10px, 1vw, 16px);
        margin-top: clamp(20px, 2vw, 30px);
    }

    .btn-main, .btn-outline {
        padding: clamp(12px, 1.2vw, 14px) clamp(24px, 2.5vw, 32px);
        font-size: clamp(0.95rem, 1vw, 1rem);
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        display: inline-block;
    }

    .btn-main {
        background: var(--primary-gradient);
        color: white;
        box-shadow: 0 4px 15px rgba(53, 0, 145, 0.3);
    }

    .btn-outline {
        border: 2px solid #e5e5e5;
        color: #000;
        background: white;
    }

    .btn-main:hover {
        background: linear-gradient(to right, #0a93e4, #350091);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(53, 0, 145, 0.4);
        color: white;
    }

    /* Image Container Styles */
    .hero-dashboard-gallery {
        position: relative;
        width: 100%;
        margin: 0 auto clamp(40px, 4vw, 60px);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .dash-center {
        width: 100%;
        max-width: 1300px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .dash-center img {
        width: 100%;
        height: auto;
        max-width: 1300px;
        object-fit: contain;
        border-radius: 12px;
        display: block;
    }


/* =========================================================
   Hero Section end 
   ========================================================= */

.cf-nutshell-section {
        padding: clamp(30px, 3vw, 40px) clamp(20px, 3vw, 40px);
        background-color: #e5f4ff44;

    }

    .cf-nutshell-container {
        max-width: min(1000px, 90vw);
        margin: 0 auto;
        text-align: center;
    }

    .cf-nutshell-container h2 {
        font-size: clamp(24px, 3vw, 36px);
        font-weight: 600;
        color: #1c1c1c;
        margin-bottom: clamp(15px, 1.5vw, 20px);
    }

    .cf-nutshell-container p {
        font-size: clamp(16px, 1.2vw, 18px);
        line-height: 1.7;
        color: #455678;
        font-weight: 400;
        max-width: min(1000px, 90vw);
        margin: 0 auto;
    }

    .cf-nutshell-container strong {
        color: #0540ae;
    }

    /* Responsive Adjustments */
    @media (max-width: 1200px) {
        .dash-center {
            max-width: 1100px;
        }
        .hero-container {
        margin-top: -50px;
        }
    }

    @media (max-width: 992px) {
        .dash-center {
            max-width: 900px;
        }
        
        .hero-section {
            padding-top: clamp(100px, 12vw, 120px);
        }
    }

    @media (max-width: 768px) {
        .hero-buttons {
            flex-direction: column;
            align-items: center;
        }
        
        .hero-container {
        margin-top: 0px;
        }
        
        .btn-main, .btn-outline {
            width: min(280px, 90vw);
            text-align: center;
        }
        
        .hero-heading br {
            display: none;
        }
        
        .dash-center {
            max-width: 95vw;
        }
        
        .badge-top {
            margin-top: 0;
        }
        
        .hero-dashboard-gallery {
            margin-bottom: clamp(30px, 5vw, 40px);
        }
        
        .hero-section {
            background-position: center;
        }
    }

    @media (max-width: 480px) {
        .hero-section {
            padding: clamp(80px, 15vw, 100px) 15px clamp(40px, 8vw, 60px);
        }
        
        .hero-heading {
            font-size: clamp(28px, 7vw, 32px);
            line-height: 1.2;
        }
        
        .hero-description {
            font-size: clamp(0.9rem, 1.1vw, 1rem);
            line-height: 1.5;
        }
        
        .btn-main, .btn-outline {
            padding: 14px 20px;
            font-size: 0.95rem;
            width: 100%;
            max-width: 300px;
        }
        
        .cf-nutshell-container h2 {
            font-size: clamp(22px, 6vw, 28px);
        }
        
        .cf-nutshell-container p {
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        .dash-center img {
            border-radius: 8px;
            margin-top: 20px ;
        }
    }

    @media (max-width: 360px) {
        .hero-heading {
            font-size: 24px;
        }
        
        .hero-description {
            font-size: 0.85rem;
        }
        
        .badge-top {
            font-size: 13px;
            padding: 8px 16px;
        }
    }

    /* Orientation specific adjustments */
    @media (max-height: 600px) and (orientation: landscape) {
        .hero-section {
            padding: 60px 20px 40px;
        }
        
        .hero-dashboard-gallery {
            margin-bottom: 30px;
        }
        
        .hero-heading {
            font-size: clamp(24px, 3vw, 32px);
        }
    }

    /* High-resolution screens */
    @media (min-width: 1920px) {
        .dash-center {
            max-width: 1600px;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .btn-main, .btn-outline, .dash-center img {
            transition: none;
        }
    }





   
/* =========================================================

    ========================================================= */


    .reasons-section {
        padding: clamp(60px, 8vw, 60px) clamp(20px, 4vw, 40px);
        background-color: #ffffff;
        position: relative;
    }

    .reasons-container {
        max-width: 1295px;
        margin: 0 auto;
    }

    .section-header {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 60px);
    }

    .section-title {
        font-size: clamp(36px, 4.5vw, 48px);
        font-weight: 700;
        color: #1c1c1c;
        margin-bottom: 15px;
        background: linear-gradient(135deg, #000000 0%, #000000 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: -30px;
    }

    .section-subtitle {
        font-size: clamp(20px, 2.5vw, 24px);
        font-weight: 500;
        color: #6d6d6d;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .section-subtitle::before,
    .section-subtitle::after {
        content: '';
        height: 2px;
        width: 40px;
         background: #6d6d6d;
        /* background: linear-gradient(135deg, #350091 0%, #0a93e4 100%); */
    }

    .reasons-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: clamp(25px, 3vw, 35px);
        margin-top: clamp(30px, 4vw, 50px);
    }

    .reason-card {
        background: white;
        border-radius: 20px;
        padding: 35px 30px;
        text-align: center;
        transition: all 0.4s ease;
        border: 1px solid #eef2ff;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 100%;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.088);
    }

    .reason-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.199);
        border-color: #0540ae;
    }

    .reason-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(135deg, #350091 0%, #0a93e4 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .reason-card:hover::before {
        opacity: 1;
    }

    .icon-container {
        width: 100px;
        height: 100px;
        background: #f0f5ff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        transition: all 0.4s ease;
        border: 3px solid transparent;
    }

    .reason-card:hover .icon-container {
        background: white;
        border-color: #0540ae;
        transform: scale(1.05);
    }

    .reason-icon {
        width: 80px;
        height: 80px;
        object-fit: contain;
        transition: transform 0.4s ease;
    }

    .reason-card:hover .reason-icon {
        transform: scale(1.1);
    }

    .reason-title {
        font-size: clamp(22px, 2.5vw, 24px);
        font-weight: 600;
        color: #1c1c1c;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .reason-description {
        font-size: clamp(16px, 1.8vw, 17px);
        line-height: 1.6;
        color: var(--text-light);
        margin: 0;
        flex-grow: 1;
    }

    /* Decorative Elements */
    .decorative-dots {
        position: absolute;
        width: 450px;
        height: 450px;
        background: radial-gradient(#0540ae 2px, transparent 3px);
        background-size: 20px 20px;
        opacity: 0.05;
        z-index: 0;
    }

    .dots-top-left {
        top: 10px;
        left: 10px;
    }

    .dots-bottom-right {
        bottom: 10px;
        right: 10px;
    }

    /* Responsive Design */
    @media (min-width: 1200px) {
        .reasons-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 1199px) and (min-width: 768px) {
        .reasons-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }
    }

    @media (max-width: 992px) {
        .reason-card {
            padding: 30px 25px;
        }
        
        .icon-container {
            width: 90px;
            height: 90px;
            margin-bottom: 20px;
        }
        
        .reason-icon {
            width: 45px;
            height: 45px;
        }
    }

    @media (max-width: 768px) {
        .reasons-section {
            padding: 50px 20px;
        }
        
        .section-subtitle {
            flex-direction: column;
            gap: 10px;
        }
        
        .section-subtitle::before,
        .section-subtitle::after {
            width: 60px;
        }
        
        .decorative-dots {
            display: none;
        }
        
        .reasons-grid {
            grid-template-columns: 1fr;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }
    }

    @media (max-width: 576px) {
        .reason-card {
            padding: 30px 20px;
        }
        
        .section-title {
            font-size: 32px;
        }
        
        .section-subtitle {
            font-size: 18px;
        }
    }

    @media (max-width: 360px) {
        .reason-card {
            padding: 25px 15px;
        }
        
        .icon-container {
            width: 80px;
            height: 80px;
        }
        
        .reason-icon {
            width: 40px;
            height: 40px;
        }
        
        .reason-title {
            font-size: 20px;
        }
        
        .reason-description {
            font-size: 15px;
        }
    }

    /* Animation for cards on load */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .reason-card {
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
    }

    .reason-card:nth-child(1) { animation-delay: 0.1s; }
    .reason-card:nth-child(2) { animation-delay: 0.2s; }
    .reason-card:nth-child(3) { animation-delay: 0.3s; }
    .reason-card:nth-child(4) { animation-delay: 0.4s; }
    .reason-card:nth-child(5) { animation-delay: 0.5s; }
    .reason-card:nth-child(6) { animation-delay: 0.6s; }

    /* Print styles */
    @media print {
        .reason-card:hover {
            transform: none;
            box-shadow: none;
        }
        
        .decorative-dots {
            display: none;
        }
    }

/* =========================================================
   
   ========================================================= */

  .offsite-section {
    position: relative;
    padding: clamp(70px, 9vw, 70px) clamp(20px, 6vw, 80px);
    background: radial-gradient(circle at top left, #eef3ff 0%, #ffffff 40%, #f9fbff 100%);
    text-align: center;
    overflow: hidden;
  }

  .offsite-section::before,
  .offsite-section::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    filter: blur(70px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
  }

  .offsite-section::before {
    background: #c4d7ff;
    top: -80px;
    left: -40px;
  }

  .offsite-section::after {
    background: #ffd6e7;
    bottom: -100px;
    right: -40px;
  }

  .offsite-inner {
    max-width: 1395px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .offsite-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: 999px;
    background: rgba(5, 64, 174, 0.06);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #0540ae;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .offsite-kicker span {
    font-size: 15px;
  }

  .offsite-title {
    font-size: clamp(30px, 3.8vw, 40px);
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 28px;
    line-height: 1.15;
  }

  .offsite-title span {
    background: linear-gradient(135deg, #350091 0%, #0a93e4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .offsite-media-wrap {
    position: relative;
    border-radius: 26px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(53, 0, 145, 0.12), rgba(10, 147, 228, 0.12));
    display: inline-block;
    max-width: 100%;
  }

  .offsite-media-inner {
    border-radius: 20px;
    overflow: hidden;
    background: #020617;
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.35);
  }

  .offsite-image {
    display: block;
    width: 100%;
    max-width: 1270px;
    height: auto;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.6s ease;
  }

  .offsite-media-wrap:hover .offsite-image {
    transform: scale(1.04);
  }

  .offsite-tag {
    position: absolute;
    left: 26px;
    bottom: 24px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.78);
    color: #e5e7eb;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(6px);
  }

  .offsite-tag span {
    font-size: 15px;
  }

  .offsite-caption {
    margin-top: 18px;
    font-size: 14px;
    color: #6b7280;
  }

  @media (max-width: 768px) {
    .offsite-section {
      padding: 52px 18px;
    }

    .offsite-title {
      margin-bottom: 22px;
      font-size: 26px;
    }

    .offsite-media-wrap {
      padding: 8px;
      border-radius: 20px;
    }

    .offsite-media-inner {
      border-radius: 16px;
    }

    .offsite-tag {
      left: 16px;
      bottom: 16px;
      font-size: 12px;
    }
  }

  @media (max-width: 480px) {
    .offsite-title {
      font-size: 24px;
    }

    .offsite-caption {
      font-size: 13px;
    }
  }


/* =========================================================
   
   ========================================================= */

  .core-values-section {
    padding: clamp(70px, 8vw, 70px) clamp(20px, 6vw, 80px);
    background: #e5f4ff44;
    text-align: center;
  }

  .core-values-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .core-values-kicker {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #818cf8;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .core-values-title {
    font-size: clamp(32px, 4vw, 40px);
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
  }

  .core-values-subtitle {
    max-width: 760px;
    margin: 0 auto 36px;
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
  }

  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px 26px;
    justify-items: center;
  }

  .value-pill-wrap {
    position: relative;
    width: 100%;
    max-width: 340px;
  }

  .value-pill-shadow {
    position: absolute;
    inset: auto 8px -6px 8px;
    height: 10px;
    border-radius: 20px;
    background: #e2ebff;
    z-index: 0;
  }

  .value-pill {
    position: relative;
    z-index: 1;
    background: #ffffff;
    border-radius: 10px;
    padding: 14px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    border: 1px solid #e5edff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    font-weight: 600;
    font-size: 15px;
    color: #111827;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease,
                background 0.2s ease;
    cursor: default;
  }

  .value-pill-emoji {
    font-size: 18px;
    flex-shrink: 0;
  }

  .value-pill:hover {
    transform: translateY(-2px);
    border-color: #c7d2fe;
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.18);
    background: linear-gradient(135deg, #ffffff 0%, #f5f7ff 100%);
  }

  @media (max-width: 768px) {
    .core-values-section {
      padding: 52px 18px;
    }

    .core-values-subtitle {
      margin-bottom: 28px;
      font-size: 14px;
    }

    .values-grid {
      gap: 14px 18px;
    }

    .value-pill {
      font-size: 14px;
      padding: 12px 18px;
    }
  }
/* =========================================================
   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; 
    }


/* =========================================================
   
   ========================================================= */

   .career-roles-section {
        position: relative;
        padding: clamp(50px, 9vw, 50px) clamp(20px, 6vw, 72px);
        background: radial-gradient(circle at top left, #ffffff 0%, #ffffff 42%, #ffffff 100%);
        margin: 0 auto;
        overflow: hidden;
        box-shadow: 0 24px 80px rgba(5, 64, 174, 0.08);
    }

    /* funky blobs */
    .career-roles-section::before,
    .career-roles-section::after {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        border-radius: 999px;
        filter: blur(60px);
        opacity: 0.35;
        pointer-events: none;
        z-index: 0;
    }



    .career-roles-section::after {
        background: #ffd6e7;
        bottom: -90px;
        right: -40px;
    }

    .section-header {
        position: relative;
        z-index: 1;
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 64px);
        max-width: 720px;
        margin-inline: auto;
    }

    .hashtag-title {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 14px;
        border-radius: 999px;
        background: rgba(5, 64, 174, 0.06);
        font-size: clamp(14px, 1.7vw, 15px);
        font-weight: 600;
        color: #0540ae;
        margin-bottom: 14px;
        letter-spacing: 0.7px;
        text-transform: uppercase;
    }

    .hashtag-title::before {
        content: "✨";
        font-size: 16px;
    }

    .main-title {
        font-size: clamp(32px, 4.2vw, 44px);
        font-weight: 700;
        color: #101827;
        line-height: 1.12;
        margin: 0 0 10px;
    }

    .main-title span {
        background: linear-gradient(135deg, #350091 0%, #0a93e4 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        white-space: nowrap;
    }

    .roles-subtitle {
        margin: 0;
        font-size: 15px;
        color: #64748b;
    }

    .roles-container {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 26px;
        margin-top: 42px;
        max-width: 1295px;
        margin-inline: auto;
    }

    .category-card {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 18px;
        padding: 26px 24px 24px;
        border: 1px solid rgba(5, 64, 174, 0.08);
        box-shadow: 0 16px 40px rgba(15, 23, 42, 0.03);
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease,
            background 0.3s ease, translate 0.3s ease;
        animation: fadeIn 0.6s ease forwards;
        opacity: 0;
        backdrop-filter: blur(6px);
    }

    .category-card:hover {
        transform: translateY(-6px) translateZ(0);
        box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
        border-color: rgba(5, 64, 174, 0.24);
        background: #ffffff;
    }

    .category-card:nth-child(1) { animation-delay: 0.1s; }
    .category-card:nth-child(2) { animation-delay: 0.2s; }
    .category-card:nth-child(3) { animation-delay: 0.3s; }

    .category-label {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        color: #6b7280;
        margin-bottom: 10px;
    }

    .category-label-dot {
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: #a5b4fc;
    }

    .category-title {
        font-size: clamp(20px, 2.2vw, 22px);
        font-weight: 600;
        color: #111827;
        margin-bottom: 18px;
        padding-bottom: 12px;
        border-bottom: 1px dashed #e5e8ff;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }

    .category-icon-pill {
        padding: 4px 10px;
        border-radius: 999px;
        font-size: 12px;
        background: rgba(5, 64, 174, 0.04);
        color: #0540ae;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        white-space: nowrap;
    }

    .category-icon-pill span {
        font-size: 14px;
    }

    /* .category-title::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 64px;
        height: 3px;
        border-radius: 999px;
        background: linear-gradient(135deg, #350091 0%, #0a93e4 100%);
    }

    .category-card:nth-child(1) .category-title::after {
        background: linear-gradient(135deg, #350091 0%, #7991f6 100%);
    }

    .category-card:nth-child(2) .category-title::after {
        background: linear-gradient(135deg, #0a93e4 0%, #2e3e8e 100%);
    }

    .category-card:nth-child(3) .category-title::after {
        background: linear-gradient(135deg, #f97316 0%, #ec4899 100%);
    } */

    .roles-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .role-item {
        padding: 11px 4px;
        border-bottom: 1px solid #f3f4ff;
        display: flex;
        align-items: center;
        font-size: 15px;
        color: #4b5563;
        transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
        border-radius: 10px;
        cursor: default;
    }

    .role-item:last-child {
        border-bottom: none;
    }

    .role-item:hover {
        color: #111827;
        background: rgba(5, 64, 174, 0.04);
        transform: translateY(-1px);
    }

    .checkmark {
        margin-right: 10px;
        width: 26px;
        height: 26px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        border-radius: 999px;
        font-size: 18px;
        font-weight: 700;
        border: 1px solid transparent;
        background: #f3f4ff;
        color: #9ca3af;
        transition: all 0.25s ease;
    }

    .role-item:hover .checkmark {
        background: linear-gradient(135deg, #350091 0%, #0a93e4 100%);
        color: #ffffff;
        border-color: transparent;
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.7);
    }

    .checkmark.checked {
        background: linear-gradient(135deg, #0540ae 0%, #0a93e4 100%);
        color: #ffffff;
        box-shadow: 0 6px 16px rgba(5, 64, 174, 0.35);
    }

    .checkmark.unchecked {
        background: #eef2ff;
        color: #a5b4fc;
        box-shadow: none;
    }

    .role-name {
        font-weight: 500;
        line-height: 1.5;
    }

    /* Responsive Design */
    @media (min-width: 1200px) {
        .roles-container {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 900px) {
        .career-roles-section {
            border-radius: 24px;
            padding: 50px 20px;
            box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
        }
    }

    @media (max-width: 768px) {
        .roles-container {
            grid-template-columns: 1fr;
            max-width: 540px;
            margin: 32px auto 0;
            gap: 22px;
        }

        .category-card {
            padding: 22px 20px 20px;
        }

        .main-title {
            font-size: 30px;
        }

        .hashtag-title {
            font-size: 13px;
        }
    }

    @media (max-width: 480px) {
        .role-item {
            padding: 10px 4px;
            font-size: 14px;
        }

        .category-title {
            font-size: 19px;
            margin-bottom: 16px;
        }

        .career-roles-section {
            padding: 38px 16px;
        }
    }

    /* Simple fade-in animation */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(22px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

/* =========================================================
   
   ========================================================= */