:root {
    --color-bg: #f6f8fb;
    --color-surface: #ffffff;
    --color-primary: #2298c1;
    --color-primary-600: #1d86aa;
    --color-primary-700: #197493;
    --color-primary-light: #e8f6fb;
    --color-primary-glow: rgba(34,152,193,0.18);
    --color-navy: #0a1628;
    --color-navy-800: #0f1e36;
    --color-accent: #22c55e;
    --color-amber: #f59e0b;
    --color-text: #111827;
    --color-muted: #4b5563;
    --color-border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-blue: 0 8px 32px rgba(34,152,193,0.25);
}
* { 
    box-sizing: border-box;
}
html, body { 
    margin: 0; 
    padding: 0; 
}
body { 
    font-family: "Montserrat", sans-serif; 
    color: var(--color-text);
    background: var(--color-bg);line-height: normal;
    font-weight: 500;
}

.lazy-blur {
  filter: blur(20px);
  transition: filter 0.4s ease-out;
}
.lazy-loaded {
  filter: blur(0);
}
a { 
    color: inherit; 
    text-decoration: none; 
}
img { 
    max-width: 100%; 
    display: block; 
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/*Hreader and Navigation */
.nav { 
    position: sticky; 
    top: 0; 
    z-index: 9999; 
    backdrop-filter: blur(10px); 
    background: rgba(255,255,255); 
    border-bottom: 1px solid var(--color-border); 
}
.nav-inner { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    padding-top: 8px;
    padding-bottom: 8px;
    gap: 20px;
    flex-wrap: wrap;
}
.brand-logo{
    max-width: 135px;
}
.nav-links { 
    display: flex; 
    gap: 15px; 
    color: #333;
    font-size: 15px;
    align-items: center;
    font-weight: 600;
}
.nav-cta { 
    display: none; 
}
.button-group {
    display: flex;
    align-items: center;
    gap: 10px;
}
a.nav-link{
    font-size: 14.4px;
}
header .btn{
    padding: 9px 19px ;
    font-size: 14px;
}
.right-part-header{
    display: none;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
    padding-bottom: 8px;
}
header .mobile-hidden{
    display: none!important;
}
a.whatshap-btn {
    background-color: #01e675;
    padding: 8px;
    border-radius: 50px;
}
a.whatshap-btn img {
    width: 24px;
    height: 24px;
}
.header-right-part {
    flex: 1;
    display: flex;
    gap: 17px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.header-btn {
    display: flex;
    gap: 12px;
    align-items: center;
}
a.btn.btn-primary.contact-button{
    display: flex!important;
    gap: 6px;
    align-items: center;
    padding: 8px 19px;
}
a.btn.btn-primary.contact-button img{
    width: 20px;
    height: 20px;
}
.btn.display-block-mobile{
    display: none;
}
.display-none-mobile{
    display: block;
}


/* Utility Classes */
.btn { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: 600; 
    letter-spacing: .2px; 
    border: 1px solid transparent; 
    cursor: pointer; 
    transition: all .5s ease; 
    padding: 15px 25px;
    border-radius: 30px;
    animation: 2s infinite pulse;
    line-height: normal;
    font-size: 16px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-small{
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: 600; 
    letter-spacing: .2px; 
    border: 1px solid transparent; 
    cursor: pointer; 
    transition: all .5s ease; 
    padding: 10px 20px;
    border-radius: 30px;
    animation: 2s infinite pulse;
    line-height: normal;
    font-size: 15px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-primary { 
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-700)); 
    color: #fff; 
    box-shadow: var(--shadow-blue); 
}
.btn-primary:hover{
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(34,152,193,0.35);
}
.btn-secondary { 
    background: transparent; 
    color: var(--color-text); 
    border-color: var(--color-text); 
}
.btn-secondary:hover { 
    border-color: var(--color-muted); 
    background: transparent;
    color: #fff;
}
.btn-secondary::before{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-muted);
    transition: all 0.4s ease;
    z-index: -1;
}
.btn-ghost { 
    background: transparent; 
    color: white; 
    border: 1px solid white;
}
.btn-ghost:hover{
    background: transparent; 
    color: #fff; 
    border: 1px solid #197493;
}
.btn-ghost::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-700));
    transition: all 0.4s ease;
    z-index: -1;
}
.btn-white {
    background: #fff;
    color: var(--color-navy);
    border-color: transparent;
    font-weight: 700;
}
.btn-white:hover {
    background: transparent;
    color: var(--color-primary-700);
}
.btn-white::before{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-primary-light);
    transition: all 0.4s ease;
    z-index: -1;
}
.btn-white:hover::before, .btn-ghost:hover::before, .btn-secondary:hover::before{
    left: 0px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid #13597096;
    color: #135970;
    background: var(--color-primary-light);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.m-0{
    margin: 0px!important;
}
h3.section-title.mt-0{
    margin-top: 0px!important;
}
h3.section-title {
    font-size: 32px;
    font-weight: 800;
    margin: 12px 0 10px;
    letter-spacing: -0.02em;
    color: var(--color-navy);
}
h3.section-title.white-color{
    color: #fff;
}

.text-center{
    text-align: center;
}
.section-header{
    padding-bottom: 30px;
}

/* Hero Section */
.hero {
    padding: 70px 0px 40px;
    position: relative;
    overflow: hidden;
    background: var(--color-navy);
}
.hero-grid {
    grid-template-columns: 1fr 1fr;
    align-items: self-start;
}
.hero-grid {
    display: grid;
    gap: 50px;
}
.hero-left .pill {
    background: rgba(34,152,193,0.15);
    border-color: rgba(34,152,193,0.4);
    color: #9adcf1;
    width: fit-content;
}
.hero h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    line-height: 1.12;
    font-size: 50px;
    margin: 18px 0 22px;
    color: #fff;
    letter-spacing: -0.02em;
}
.hero h1 span {
    color: var(--color-primary);
}
.hero p.lead {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.65;
    margin: 0;
    padding-bottom: 15px;
}
.hero-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}
.hero-trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-trust-item {
    text-align: left;
}
.hero-trust-item .lbl {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    letter-spacing: 0.05em;
}
.hero-bg-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(34,152,193,0.08) 0%, transparent 50%),radial-gradient(circle at 80% 20%, rgba(0,188,212,0.06) 0%, transparent 50%);
    pointer-events: none;
}
.form-card {
    margin: 0;
    padding-left: 20px;
}
.form-section-title{
    color: #fff;
    font-size: 25px;
    margin: 0px;
    margin-bottom: 15px;
    font-weight: 700;
}
.form-card .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}
span.error {
    color: #f37474;
    font-size: 14px;
}
.form-group {
    display:flex;
    flex-direction:column;
}
form label {
    display: none;
}
input, select, textarea {
    width: 100%;
    background: #fff;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 14px 14px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
    font-size: 14px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
}
input::placeholder,
textarea::placeholder {
    color:#6c768f;
}
textarea {
    grid-column: span 2;
    min-height:120px;
    resize:none;
}
select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='12' viewBox='0 0 20 12' fill='none'%3E%3Cpath d='M2 2L10 10L18 2' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 13px 8px;
}
.full {
    grid-column: span 2;
}
.banner-btn-row{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
#dateField{
    cursor: pointer;
}
.date-group{
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}
.input-group-date {
    position: relative;
    cursor: pointer;
}
.input-group-date svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}
input.number-filed {
    letter-spacing: 3px;
    text-align: center;
    width: 115px;
    background-image: url(../img/cat.png);
    font-size: 20px;
    margin-bottom: 0px;
    border: 1px solid #9c9c9c;
    padding: 11px 5px;
    text-align: center;
}
input.textbox {
    flex: 1;
}
span.captcha_box {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.captcha_refresh {
    color: #fff;
    width: 100%;
}
.captcha_refresh a{
    text-decoration: underline;
}
.popup-form .captcha_refresh{
    color: var(--color-navy);
}
.small-text {
    font-size: 12px;
    color: #fff;
    margin-top: 9px;
    text-align: center;
}
.small-text.text-left {
    text-align: left;
}

/* Benifits Section */
.benefits-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 40px 0 0px;
}
.benefit-box {
    color: #fff;
    padding: 10px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 4px 4px 14px 1px rgb(61 95 174 / 15%);
    transition: transform 0.2s ease;
    border: 1px solid rgba(255,255,255,0.1);
    background: #2a4768;
}
.benefit-box:hover {
    transform: translateY(-5px);
}
.benefit-box h3 {
    font-size: 16px;
    margin: 0px;
    text-align: left;
}
.benefit-image-wrap h3 span.cyb-badge{
    font-size: 22px;
}
.benefit-box p {
    font-size: 14px;
    color: #cfd8e3;
    margin-top: 10px;
    margin-bottom: 0px;
    text-align: left;
}
.benefit-image-wrap {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: start;
}
.benefit-image-wrap img.benefit-icon {
    width: 50px;
    height: 50px;
}

/* Strip Section */
.strip-section {
    background-color: #2c456c; 
    color: white; 
    padding: 20px;
}
.strip-grid{
    display: flex; 
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    row-gap: 10px;
}
.strip-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.strip-item-duplicate {
    display: none;
}
.strip-item p {
    margin: 0px;
    font-size: 13px;
}

/*trust Strip Section */

.trust-bar{
    background: linear-gradient(90deg,#f8fafc,#eef2f7,#f8fafc);
    padding: 11px 20px;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    overflow-x: auto;
}
.trust-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    row-gap: 8px;
}
.trust-item{
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 7px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    transition: 0.3s ease;
}
span.trust-content {
    flex: 1;
}
.trust-item:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 18px rgba(0,0,0,0.08);
}
.trust-icon{
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.trust-item a{
    color: #111827;
    text-decoration: none;
}
.trust-item a:hover{
    color: var(--color-primary-600);
}

/* comparison-section */
.comparison-section {
    padding: 50px 0;
    background: var(--color-primary-light);
    border-top: 1px solid rgba(34, 152, 193, 0.15);
    border-bottom: 1px solid rgba(34, 152, 193, 0.15);
}
.comparison-section table{
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.comparison-section th{
    padding: 12px 14px;
    font-weight: 700;
    font-size: 16px;
    text-align: left;
    background: #fff;
    color: #0a1628;
    border: 1px solid #e2e8f0;
    line-height: 1.4;
}
.comparison-section th.col2,th.col3,th.col4{
    text-align: center
}
.comparison-section th.highlight{
    background: var(--color-navy);
    color: #fff;
    border-color: var(--color-navy);
    text-align: center
}
.comparison-section tbody td{
    padding: 11px 14px;
    border: 1px solid #e2e8f0;
    vertical-align: middle;
    text-align: center;
    color: #374151;
    background-color: #fff;
}
.comparison-section td.cap-col{
    text-align: left;
    color: var(--color-navy)
}
.comparison-section tr.section-head td{
    background: #e0e1e3;
    color: var(--color-navy);
    font-size:  13px;
    font-weight:  700;
    letter-spacing:  .06em;
    text-transform: uppercase;
    padding: 7px 14px;
    border-color: #e2e8f0;
    text-align: left;
}
.comparison-section td.hl{
    background: #f0f7ff
}
.comparison-section .yes{
    color: #0d602c;
    font-weight: 600
}
.comparison-section .yes::before{
    content: "✓ ";
    color: #0d602c
}
.comparison-section .no{
    color: #dc2626;
    font-weight: 500
}
.comparison-section .no::before{
    content: "✗ ";
    color: #dc2626
}
.comparison-section .partial{
    color: #6b7280;
    font-weight: 400
}
.comparison-section .partial::before{
    content: "◎ "
}
.comparison-section th.width-30{
    width: 30%
}
.comparison-section th.width-23{
    width: 23%
}
.comparison-section .table-bottom-text{
    font-size: 13px;
    color: #4d525c;
    margin-top: 12px;
    font-weight: 600;
}
.comparison-section .table-scroll {
    width: 100%;
    overflow-x: visible;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
}
.comparison-section .scroll-hint {
    display: none;
    font-size: 11px;
    color: #4d525c;
    margin-bottom: 6px;
    text-align: right;
    margin-top: -10px;
}
.pricing-btn{
    margin-top: 20px;
    display: block;
    text-align: center;
}

/* Auction Types */
.auction-types{
    padding: 50px 0px;
}
.auction-types .section-label{
    color:var(--gold);
}
.types-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}
.type-card{
    background:rgba(255,255,255);
    border:1px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding:28px 22px;
    transition:background .25s,border-color .25s,transform .25s;
}
.type-card:hover{
    background:#90dcf527;
    border-color: var(--color-primary);
    transform:translateY(-4px);
}
.type-emoji{
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
    transition: background 0.3s ease;
}
.type-card:hover .type-emoji{
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-700));
}
.type-title{
    font-size:16px;
    font-weight:700;
    margin-bottom:8px;
}
.type-desc{
    font-size:13px;
    line-height:1.6;
}

/* Case Study Section */
.case-study-section {
    padding: 70px 0;
    background: var(--color-navy);
    border: none;
}
.case-study-section .container{
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.case-study-section .grid-2 {
    display: grid;
    gap: 70px;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    color: #fff;
    position: relative;
}
.case-study-section .grid-2::before{
    content: "";
    background: linear-gradient(180deg, transparent, #dedad35c, #dedad391, transparent);
    width: 1px;
    height: 100%;
    top: 50%;
    left: 49%;
    position: absolute;
    display: block;
    transform: translate(-50% , -50%);
}
.list-style-none li {
    padding: 10px 0 0px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 10px;
}
.list-style-none {
    list-style: none;
    padding-left: 0;
    margin: 0 0 28px;
}

/* Process Section */
.process-section{
    padding: 50px 0px;
}
.process-steps{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    position: relative;
}
.process-steps::after{
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg,transparent,#dedad3,#dedad3,transparent);
    z-index: 0;
}
.step{
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
    width: 20%;
}
.step-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #2f436c, #364b7a);
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(34, 152, 193, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step:hover .step-num {
    transform: scale(1.1);
    box-shadow: 0 10px 28px rgba(34, 152, 193, 0.4);
}
.step-title{
    font-size:15px;
    font-weight:700;
    margin-bottom:8px;
}
.step-desc{
    font-size:13px;
    color:var(--color-muted);
    line-height:1.6;
}

/* Image Grid */
.image-slider-section {
    padding: 50px 0;
    background: var(--color-primary-light);
    border-top: 1px solid rgba(34, 152, 193, 0.1);
    border-bottom: 1px solid rgba(34, 152, 193, 0.1);
}
.video-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.8rem;
    padding: 30px 50px 0px;
}
.big-box {
    grid-row: 1;
}
.right-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
}
.video-card {
    position: relative;
    overflow: visible;
}
.tag-title {
    position: absolute;
    top: -14px;
    left: -12px;
    background: var(--color-navy);
    color: #fff;
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 600;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    z-index: 10;
    border-radius: 4px;
    transform: rotate(-1.5deg);
    box-shadow: 2px 2px 0 rgba(0,0,0,0.35);
    line-height: 1.4;
}
.big-box .tag-title {
    font-size: 14px;
    padding: 7px 16px;
    top: -17px;
}
.card-link {
    display: block;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    border: 2px solid #b1b1b1;
    transition: ease-in 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    height: 100%;
}
.card-link:hover {
    border-color: var(--color-navy);
    border-width: 2px;
}
.thumb {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    height: 100%;
    object-position: top;
}
.thumb.blur{
    filter: blur(2px);
    -webkit-filter: blur(2px);
}
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.75);
    width: 64px;
    height: 64px;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}
.big-box .play-btn {
    width: 80px;
    height: 80px;
}
.card-link:hover .play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.play-btn .play-circle {
    fill: #c3c3c3;
    stroke: var(--color-navy);
    stroke-width: 2;
    transition: fill 0.3s;
}
.card-link:hover .play-btn .play-circle {
    fill: #c3c3c3;
}
.play-btn .play-triangle {
    fill: var(--color-navy);
}

/* Testimonial Section */
.testimonial-section {
    padding: 50px 0;
    background: #fff;
}
.testimonial-section .testimonial-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}
.testimonial-section .testimonial-box{
    background: var(--color-navy);
    padding: 28px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonial-section .testimonial-box::before {
    content: "";
    position: absolute;
    bottom  : 0px;
    right: 10px;
    width: 90px;
    height: 90px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M19.417 6.679C20.447 7.773 21 9 21 10.989c0 3.5-2.457 6.637-6.03 8.188l-.893-1.378c3.335-1.804 3.987-4.145 4.247-5.621-.537.278-1.24.375-1.929.311-1.804-.167-3.226-1.648-3.226-3.489a3.5 3.5 0 0 1 3.5-3.5c1.073 0 2.099.49 2.748 1.179zm-10 0C10.447 7.773 11 9 11 10.989c0 3.5-2.457 6.637-6.03 8.188l-.893-1.378c3.335-1.804 3.987-4.145 4.247-5.621-.537.278-1.24.375-1.929.311C4.591 12.322 3.17 10.841 3.17 9a3.5 3.5 0 0 1 3.5-3.5c1.073 0 2.099.49 2.748 1.179z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.06;
}
.testimonial-section .testimonial-text{
    font-size: 14px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}
.testimonial-section .author{
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.testimonial-section  .author-circle{
    width: 58px;
    height: 58px;
    border-radius: 50%;
    overflow: hidden;
}
.testimonial-section .client-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-section .author-info{
    flex: 1;
    text-align: left;
}
.testimonial-section .author-info h4{
    margin: 0;
    font-size: 18px;
}
.testimonial-section .author-info p{
    margin: 4px 0 0;
    color: #fff;
    font-size: 15px;
}
.testimonial-button {
    text-align: center;
    margin-top: 30px;
}   

/* FAQ Section */
.faq-section{
    padding: 50px 0px;
    background: #f6f9fb;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}
.faq-section{
    padding: 50px 0px;
}
.faq { 
    display: grid; 
    gap: 20px; 
    padding-top: 25px;
    grid-template-columns: repeat(2, 1fr);
}
.faq-item { 
    border: 1.5px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    margin-bottom: 15px;
}
.faq-item.active {
    border-color: var(--color-primary);
    box-shadow: 0 4px 20px rgba(34, 152, 193, 0.12);
}
.faq-q {
    width: 100%;
    text-align: left;
    background: transparent;
    color: var(--color-navy);
    border: 0;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    padding: 8px 60px 8px 20px;
    min-height: 57px;
    font-size: 15px;
    line-height: 1.3;
    transition: color 0.2s ease;
    font-family: "Montserrat", sans-serif;
}
.faq-item.active .faq-q {
    color: var(--color-primary);
}
.faq-item.active button.faq-q::after{
    content: "−";
    color: rgb(255, 255, 255);
    background: var(--color-primary);
}
button.faq-q::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 20px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 28px;
    text-align: center;
    transition: all 0.25s ease;
    font-family: monospace;
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
    padding: 0 18px;
    color: var(--color-muted);
}
.faq-item.active .faq-a { 
    padding: 0 20px 18px;
}
.faq-item.active .faq-a p{
    margin: 0px;
    font-size: 15px;
}
.faq-section .section-title{
    text-align: center;
}
.faq-section .container{
    width: 100%;
}

/* Call to Action Section */
.cta-section {
  background: var(--color-navy);
  padding: 40px 0px;
  text-align: center;
  color: #fff;
}
.cta-container {
    max-width: 900px;
    margin: auto;
    padding: 0px 30px;
}
.cta-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}
.cta-subtitle {
    font-size: 16px;
    color: #fff;
    margin-bottom: 25px;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
}
.footer-grid {  
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 30px;
}
.footer-text {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}
.footer-small {
  font-size: 13px;
  color: #888;
}
.footer-col h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #111;
  margin-top: 0px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 5px;
}
.footer-col ul li a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
  transition: 0.3s;
}
.footer-col ul li a:hover {
  color: #000;
}
footer .row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    font-size: 13.5px;
}
.footer-bottom{
    border-top: 1px solid #eee;
}
.contact-number {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #555555;
}
.contact-number span {
    font-weight: 600;
}
a.contact-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    flex-wrap: wrap;
}
a.contact-link:hover{
    color: #000;
}
.contact-link img {
    width: 20px;
    height: 20px;
}

/* Popup */
.download-popup .popup-content h2 {
  font-size: 22px;
  margin-top: 0px;
  color: var(--color-navy);
}
.download-popup .popup-content .small-text{
    display: none;
}
.download-popup .popup-content .captcha_refresh{
    color: #000;
}
.pop-up-overly-bg{
    background-color: rgb(0, 0, 0);
    position: fixed;
    inset: 0px;
    opacity: 0.7;
    z-index: 9999;
    cursor: pointer;
    display: none;
}
.pop-up-overly-bg.open{
    display: block;
}
.download-popup {
    left: 50%;
    z-index: 999999;
    width: 95%;
    overflow: auto;
    max-height: 90vh;
    max-width: 800px;
    position: fixed ;
    top: 50% ;
    transform: translate(-50%, -50%);
    margin: auto;
    padding: 30px;
    border-radius: 15px;
    background: #fff;
    display: block;
}
form.popup-form .grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.download-popup button{
    margin-top: 20px;
}
.close {
    position: absolute;
    top: 20px;
    right: 0px;
    font-size: 40px;
    cursor: pointer;
    width: 90px;
    text-align: center;
    display: none;
}
.download-popup .close{
    display: block;
}

/* FAB Icon */
.fabs {
    position: fixed;
}
.fabs {
    bottom: 0;
    margin: 1em 0px;
    right: 15px;
    z-index: 99999;
}
.fab.tollfree {
    background: #fff;
    box-shadow: none;
}
.fab {
    width: 50px;
    height: 50px;
    color: #f0f0f0;
    margin: 15px auto 0;
    -webkit-transition: .1s ease-out;
    transition: .1s ease-out;
    position: relative;
    z-index: 998;
    display: block;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
}
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}
.fab.whatsapp {
    background: #01e675;
}
.whatsapp svg {
    width: 30px;
    height: 30px;
    color: #fff;
}
.whatsapp span {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    position: absolute;
    overflow: hidden;
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fab.tollfree{
    display: none;
}

/* Responsive Styles */
@media screen and (max-width: 1180px) {
    .testimonial-slider button.slick-prev{
        left: 40%;
        top: calc(100% - 15px);
        transform: unset;
    }
    .testimonial-slider button.slick-next{
        right: 40%;
        top: calc(100% - 15px);
        transform: unset;
    }
    .testimonial-section .slick-list{
        padding-bottom: 30px;
    }
    .video-grid{
        padding: 30px 30px 0px;
    }
}
@media screen and (max-width: 1120px) {
    .nav-links { 
        display: none;
    }
    .right-part-header{
        display: block;
    }
    .mobile-menu-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: brightness(0) saturate(100%) invert(41%) sepia(43%) saturate(1139%) hue-rotate(162deg) brightness(91%) contrast(90%);
    }
    .mobile-menu-icon {
        width: 25px;
        height: 25px;
        cursor: pointer;
    }
    .mobile-menu.open .menu-icon , .mobile-menu .close-icon{
        display: none;
    }
    .mobile-menu.open .close-icon , .mobile-menu .menu-icon{
        display: block;
    }
    nav.nav-links.active {
        display: block;
        position: absolute;
        top: 100%;
        background: #fff;
        padding: 20px;
        border: 1px solid #e1e1e1;
        box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.5);
        width: 95%;
        left: 50%;
        transform: translateX(-50%);
    }
    nav.nav-links.active a.nav-link {
        width: 100%;
        display: block;
        padding: 10px 5px;
        border-bottom: 1px solid #e1e1e1;
    }
    .nav-inner{
        padding: 8px 25px;
    }
}
@media screen and (max-width: 1024px) {
    .image-slider .slide {
        padding: 15px;
    }
    .video-grid {
        grid-template-columns: 1fr 1fr;
    }
    .tag-title { 
        font-size: 11px;
    }
    .big-box .tag-title { 
        font-size: 14px; 
    }
}
@media screen and (max-width: 992px){
    .testimonial-section .testimonial-grid{
        grid-template-columns:repeat(2, 1fr);
    }
    .hero-grid{
        grid-template-columns: repeat(1, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 20px;
    }
    .types-grid{
        grid-template-columns: repeat(3, 1fr);
    }
    .case-study-section .grid-2{
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
    }
    .case-study-section .grid-2::before{
        content: none;
    }
    .process-steps{
        row-gap: 25px;
    }
    .process-steps .step{
        width: 33.33%;
    }
    .process-steps::after{
        content: none;
    }
    .testimonial-slider button.slick-next {
        right: 25%;
    }
    .testimonial-slider button.slick-prev {
        left: 25%;
    }
    .client-review,.client-info{
        padding: 20px;
    }
    .client-review p{
        font-size: 15px;
        ;line-height: 1.5;
    }
    .form-card{
        padding: 0px;
    }
    .order-1{
        order: 1;
    }
    .case-study-section .grid-2 img{
        width: 100%;
    }
    .play-btn::before{
        width: 45px;
        height: 45px;
    }
    .video-grid {
        grid-template-columns: 1fr;
    }
    .benefits-section{
        grid-template-columns: repeat(2, 1fr);
    }
    .strip-item{
        justify-content: center;
    }
    .type-card{
        padding: 20px;
    }
    .footer-text{
        margin-bottom: 0px;
    }
    .trust-item{
        width: calc(50% - 10px);
    }
    .strip-section{
        padding: 15px 20px;
    }
    .strip-grid{
        flex-wrap: nowrap;
        width: max-content;
        animation: strip-marquee 16s linear infinite;
    }
    .strip-section {
        overflow: hidden;
    }
    .strip-item {
        flex: 0 0 auto;
        white-space: nowrap;
    }
    .strip-item-duplicate {
        display: flex;
    }
}
@media screen and (max-width: 790px) {
    .scroll-hint {
        display: block;
    }
}
@media screen and (min-width: 768px) {
    .comparison-section th.col2{
        padding-bottom: 25px;
        padding-top: 0px;
        position: relative;
        z-index: 99;
    }
    .comparison-section tr:last-child td.col2{
        padding-top: 12px;
        padding-bottom: 12px;
    }
    .comparison-section th.highlight{
        background: #2298c1;
        border-color: #2298c1;;
    }
    .comparison-section th.col2::before{
        content: "";
        position: absolute;
        top: -35px;
        bottom: -1px;
        left: 0px;
        right: 0px;
        background: #2298c1;
        border-radius: 0px;
        width: 100%;
        z-index: -1;
        /* box-shadow: 0 10px 25px rgb(0 0 0 / 22%); */
        border: 1px solid #e2e8f0;
        z-index: -1;
    }
    .pricing-btn{
        margin-top: 0px;
    }
    .comparison-section .table-scroll{
        margin: 30px 0px 20px;
    }
    .pricing-btn.mobile-btn{
        display: none;
    }
    tfoot td.hl.col2 {
        box-shadow: 0px 7px 7px #00000026;
    }
    .comparison-section table tbody tr:last-child td {
        background: #fff;
    }
    .comparison-section table tbody tr:last-child {
        box-shadow: 0px 7px 7px #00000026;
    }
    .comparison-section table tbody tr:last-child td.hl {
        background: #f0f7ff;
    }
    thead th.highlight.col2 span {
        margin-top: -10px;
        display: block;
    }
}
@media screen and (max-width: 767px) {
    tfoot{
        display: none;
    }
    .video-grid{
        padding: 30px 20px 0px;
    }
    .hero .form-card .grid ,
    form.popup-form .grid{
        grid-template-columns: 1fr;
    }
    textarea, .full {
        grid-column: span 1;
    }
    .hero{
        padding: 50px 0px;
    }
    .container , .cta-container{
        padding: 0 20px;
    }
    footer .row{
        padding: 15px 2 0px;
    }
    .footer-grid{
        padding: 30px 20px;
    }
    .nav-inner{
        padding: 8px 20px;
    }
    .hero h1{
        font-size: 43px;
    }
    .comparison-section, .auction-types, .case-study-section, .process-section,.testimonial-section, .faq-section{
        padding: 40px 0px;
    }
    .comparison-section th.highlight .cyb-badge{
        font-weight: 500;
    }
    .comparison-section td:first-child{
        padding-left: 12px;
    }
    h3.section-title{
        font-size: 28px;
    }
    .section-sub{
        font-size: 15px;
        margin-top: 10px;
        margin-bottom: 0px;
        line-height: 1.5;
    }
    .types-grid{
        grid-template-columns: repeat(2, 1fr);
    }
    .btn{
        padding: 10px 20px;
        font-size: 14px;
    }
    .list-style-none{
        margin-bottom: 15px;
    }
    .image-slider button.slick-next{
        right: 10px;
    }
    .image-slider button.slick-prev{
        left: 10px;
    }
    .client-review,.client-info{
        width: 100%;
        padding: 20px;
    }
    .faq{
        padding-top: 10px;
    }
    .process-steps{
        column-gap: 25px;
    }
    .process-steps .step{
        width: calc(50% - 15px);
        padding: 0px;
    }
    .image-slider .slide {
        padding: 10px;
    }
    form#caseForm{
        grid-template-columns:1fr
    }
    .faq{
        grid-template-columns: 1fr;
        gap: 0px;
    }
    .testimonial-section .testimonial-grid{
        grid-template-columns:1fr;
        gap: 15px;
    }
    .right-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tag-title { 
        font-size: 11px; 
    }
    .big-box .tag-title { 
        font-size: 15px; 
    }
    .hero-grid, .case-study-section .grid-2{
        gap: 25px;
    }
    .benefits-section{
        margin: 25px 0 0px;
    }
    a.btn.btn-primary.contact-button {
        display: none !important;
    }
    .fab {
        width: 40px;
        height: 40px;
    }
    .fab.tollfree{
        display: block;
    }
    a.btn.btn-primary.contact-button {
        display: none !important;
    }
}

/* Tabel Responsive */
@media screen and (max-width: 767px) {
    .comparison-section, .auction-types, .case-study-section, .process-section,.testimonial-section, .faq-section{
        padding: 40px 0px;
    }
    .comparison-section .scroll-hint{
        display: none;
    }
    .comparison-section .table-scroll{
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        overflow: visible;
    }
    .comparison-section table{
        min-width: 100%;
        width: 100%;
        background: transparent;
        border-collapse: separate;
        border-spacing: 0 12px;
        font-size: 13px;
    }
    .comparison-section thead{
        display: none;
    }
    .comparison-section tbody{
        display: block;
    }
    .comparison-section tbody tr{
        display: block;
        background: #fff;
        border: 1px solid #dbe7f3;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(15, 30, 54, 0.08);
        margin-bottom: 6px;
    }
    .comparison-section tbody tr.section-head{
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        margin-top: 16px;
        margin-bottom: 8px;
    }
    .comparison-section tr.section-head td{
        border: 0;
        border-radius: 10px;
        padding: 10px 12px;
        font-size: 15px;
        background: none;
        padding: 0px;
        text-decoration: underline;
        text-underline-offset: 3px;
    }
    .comparison-section tbody tr td{
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        width: 100%;
        padding: 9px 12px;
        text-align: right;
    }
    .comparison-section td.hl{
        background: #d0e3f9;
    }
    .comparison-section tbody tr td:last-child{
        border-bottom: 0;
    }
    .comparison-section tbody tr td::before{
        font-size: 13px;
        font-weight: 700;
        letter-spacing: .02em;
        color: #64748b;
        text-transform: uppercase;
        flex: 0 0 42%;
        text-align: left;
    }
    .comparison-section tbody tr td.cap-col{
        background: #f8fbff;
        color: var(--color-navy);
        font-weight: 600;
        font-size: 13px;
        text-align: right;
    }
    .comparison-section tbody tr td.cap-col::before{
        content: "Capability";
    }
    .comparison-section tbody tr td.col2::before{
        content: "Cyblance";
        color: var(--color-navy);
    }
    .comparison-section tbody tr td.col3::before{
        content: "Generic SaaS";
    }
    .comparison-section tbody tr td.col4::before{
        content: "Build In-House";
    }
    .comparison-section td span{
        text-align: right;
        width: 100%;
    }
    .comparison-section .table-bottom-text{
        margin-top: 0px;
    }
}

@media screen and (max-width: 600px){
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .image-slider.slick-initialized .slick-slide{
        padding: 0px 3px;
    }
    .case-study-section .container{
        gap: 40px;
    }
    .right-grid {
        grid-template-columns: 1fr;
    }
    .trust-item{
        width: 100%;
    }
}
@media screen and (max-width: 520px) {
    .types-grid{
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
    form#caseForm .grid{
        grid-template-columns: 1fr;
    }
    .download-popup{
        padding: 20px;
    }
    .close{
        right: 0px;
    }
    .download-popup .close{
        top: 10px;
    }
    .benefits-section{
        grid-template-columns: repeat(1, 1fr);
    }
}
@media screen and (max-width: 500px) {
    .nav-inner {
        padding: 8px 15px;
    }
    .brand-logo {
        max-width: 95px;
    }
    .header-right-part {
        gap: 10px;
    }
    .header-btn {
        gap: 8px;
    }
    a.whatshap-btn {
        padding: 7px;
    }
    a.whatshap-btn img {
        width: 20px;
        height: 20px;
    }
    .mobile-menu-icon {
        width: 22px;
        height: 22px;
    }
    header .btn {
        padding: 9px 12px;
        font-size: 12px;
    }
}
@media screen and (max-width: 480px) {
    .desktop-hidden{
        display: none;
    }
    header .mobile-hidden{
        display: inline-block!important;
    }
    .download-popup-content {
        padding: 20px;
        border-radius: 12px;
    }
    .play-btn::before{
        width: 40px;
        height: 40px;
    }
    .play-btn { 
        width: 40px; 
        height: 40px; 
    }
    .tag-title { 
        font-size: 10px; 
        padding: 4px 10px; 
    }
    .hero h1{
        font-size: 38px;
    }
}
@media screen and (max-width: 380px){
    header .btn {
        padding: 9px 10px;
        font-size: 12px;
    }
}
@media screen and (max-width: 374px) {
    header .btn{
        padding: 9px 10px;
        font-size: 11px;
    }
    a.whatshap-btn {
        padding: 5px;
    }
}
@media screen and (max-width: 360px){
    .container, .cta-container{
        padding: 0 15px;
    }
    .process-steps .step{
        width: 100%;
    }
    .download-popup {
        padding: 20px 15px;
    }
    .download-popup .close {
        width: 40px;
    }
    .download-popup .popup-content h2 {
        font-size: 18px;
    }
    input.number-filed {
        width: 90px;
        font-size: 15px;
    }
    .nav-inner{
        padding: 8px 15px;
    }
}
@media screen and (max-width: 320px){
    .btn.display-block-mobile{
        width: auto;
        display: inline-block;
        margin-top: 10px;
    }
    .display-none-mobile{
        display: none;
    }
}
@keyframes strip-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translate(-50%);
    }
}