/* ============================================================
   ADNEXA — Dramatic UI/UX Redesign
   ============================================================ */

/* ---- Base ---- */
html { scroll-behavior: smooth; }
body {
    background: #f8f9fc;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Inter', sans-serif;
}

/* ============================================================
   NAVBAR — Subtle Enhancements (original look preserved)
   ============================================================ */

/* Smoother shadow transition on scroll */
header.header-float .header-inner {
    transition: box-shadow 0.3s ease, margin 0.3s ease !important;
}

/* Slightly richer shadow when scrolled */
header.smaller.header-float.header-light .header-inner {
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.12) !important;
}

/* Active nav link — highlight current section */
#mainmenu > li > a.menu-item.nav-active {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
}

/* Dropdown base — JS controls display/position:fixed at runtime */
.menu_side_area .dropdown-menu {
    z-index: 999999 !important;
}

/* Login dropdown menu — polished panel (position/display set by JS) */
.menu_side_area .dropdown-menu {
    border-radius: 14px !important;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.13) !important;
    border: 1px solid #ebebeb !important;
    padding: 6px !important;
    min-width: 175px !important;
    overflow: hidden;
}

.menu_side_area .dropdown-menu a {
    border-radius: 8px !important;
    padding: 9px 14px !important;
    font-size: 13.5px !important;
    color: #374151 !important;
    transition: background 0.18s ease, color 0.18s ease !important;
    display: block !important;
}

.menu_side_area .dropdown-menu a:hover {
    background: rgba(8, 55, 222, 0.07) !important;
    color: var(--primary-color) !important;
}

/* Sign Up button — hover lift */
.menu_side_area a.btn-main.fx-slide:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 26px rgba(8, 55, 222, 0.38) !important;
}

/* ============================================================
   HERO SECTION — Dark Premium Look
   ============================================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /*background: linear-gradient(
        135deg,
        rgba(4, 12, 55, 0.94) 0%,
        rgba(8, 37, 150, 0.82) 50%,
        rgba(55, 8, 90, 0.70) 100%
    );*/
    z-index: 2;
}

.hero-glow-1 {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 162, 255, 0.22) 0%, transparent 65%);
    top: -150px;
    right: -200px;
    z-index: 3;
    pointer-events: none;
}

.hero-glow-2 {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 140, 50, 0.18) 0%, transparent 65%);
    bottom: -80px;
    left: -100px;
    z-index: 3;
    pointer-events: none;
}

.hero-content {
    position: relative !important;
    z-index: 10 !important;
}

/* Hero text — white on dark bg */
.hero-section h1 {
    /*color: #ffffff !important;*/
    font-size: clamp(2.1rem, 4vw, 3.4rem) !important;
    font-weight: 800 !important;
    line-height: 1.13 !important;
    letter-spacing: -0.025em;
    margin-bottom: 22px;
}

.hero-section .lead {
    /*color: rgba(255, 255, 255, 0.80) !important;*/
    font-size: 1.05rem;
    line-height: 1.8;
}

.text-gradient-hero {
    background: linear-gradient(130deg, #416288 0%, #4211ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero badge — glass on dark */
.hero-badge {
    margin-top: 100px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgb(72 72 72 / 24%);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    /*color: #ffffff;*/
    margin-bottom: 24px;
}

.hero-badge .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
    animation: pulse-dot 1.6s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.7);
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px rgba(74,222,128,0.7); }
    50%       { opacity: 0.5; transform: scale(0.75); box-shadow: 0 0 3px rgba(74,222,128,0.3); }
}

/* Stat / counter cards — glass on dark hero */
.de_count {
    background: rgba(255, 255, 255, 0.13) !important;
    border: 1px solid rgb(55 20 20 / 4%) !important;
    border-radius: 20px !important;
    padding: 28px 22px !important;
    transition: transform 0.3s ease, background 0.3s ease !important;
}

.de_count:hover {
    background: rgba(255, 255, 255, 0.16) !important;
    transform: translateY(-5px) !important;
}

.de_count h3,
.de_count div {
    /*color: #ffffff !important;*/
}

.de_count h3 {
    font-weight: 800 !important;
    letter-spacing: -0.03em;
}
.jarallax-img{
    opacity:0.5;
}
/* ---- Floating proof cards in hero ---- */
.hero-proof-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 16px;
    padding: 14px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
    position: absolute;
    min-width: 190px;
    border: 1px solid rgba(255,255,255,0.9);
}

.hero-proof-card-1 { bottom: 30px; left: -20px; }
.hero-proof-card-2 { top: 30px; right: -10px; }

.hpc-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}

.hpc-icon.orange { background: linear-gradient(135deg, #ff7300, #ff9f00); }

.hpc-value {
    font-weight: 800;
    font-size: 18px;
    color: #111827;
    line-height: 1;
}

.hpc-label {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}

.hero-img-wrap {
    position: relative;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-main {
    border-radius: 50px !important;
    padding: 13px 30px !important;
    font-weight: 600 !important;
    font-size: 14.5px !important;
    letter-spacing: 0.01em;
    transition: transform 0.28s ease, box-shadow 0.28s ease !important;
    position: relative;
    overflow: hidden;
}

.btn-main:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 16px 36px rgba(8, 55, 222, 0.42) !important;
}

.btn-main[style*="#ff7300"]:hover {
    box-shadow: 0 16px 36px rgba(255, 115, 0, 0.42) !important;
}

/* ============================================================
   SECTION SUBTITLE PILLS
   ============================================================ */

.subtitle {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
    background: rgba(8, 55, 222, 0.09);
    border-radius: 100px;
    padding: 5px 14px;
    margin-bottom: 12px;
    border: 1px solid rgba(8, 55, 222, 0.15);
}

/* ============================================================
   SERVICE CARDS (Ad Formats)
   ============================================================ */

.service-card {
    border-radius: 24px !important;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.09) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.service-card:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.16) !important;
}

.service-card img {
    border-radius: 14px !important;
    transition: transform 0.35s ease;
}

.service-card:hover img {
    transform: scale(1.08) rotate(3deg);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin-top: 8px;
    color: #111827;
}

.service-card p {
    font-size: 0.92rem;
    line-height: 1.72;
    color: #5a6478;
}

.btn-plus {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 13.5px;
    transition: gap 0.22s ease;
    margin-top: 18px;
}

.btn-plus:hover { gap: 16px; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */

/* Section background */
section#about {
    background: linear-gradient(135deg, #eef2ff 0%, #f5f0ff 100%) !important;
    position: relative;
}

/* Decorative background blobs */
.about-bg-deco-1 {
    position: absolute;
    top: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(8,55,222,0.07), transparent 70%);
    pointer-events: none;
}

.about-bg-deco-2 {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(133,89,230,0.08), transparent 70%);
    pointer-events: none;
}

/* Gradient text for heading */
.text-gradient-about {
    background: linear-gradient(130deg, var(--primary-color), var(--tertiary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ul-check override for about section */
.about-ul li {
    font-size: 14.5px;
    line-height: 1.6;
}

/* Image wrapper */
.about-img-wrap {
    position: relative;
    padding: 20px 20px 20px 0;
}

.about-img-glow {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 85%;
    height: 85%;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(8,55,222,0.10), rgba(133,89,230,0.10));
    z-index: 0;
}

.about-img {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(8,55,222,0.15);
}

/* Floating achievement badges */
.about-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.98);
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.14);
    position: absolute;
    z-index: 3;
    min-width: 175px;
    border: 1px solid rgba(255,255,255,0.8);
}

.about-badge-1 {
    top: 36px;
    left: -10px;
}

.about-badge-2 {
    bottom: 50px;
    right: 0px;
}

.ab-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.ab-icon-orange {
    background: linear-gradient(135deg, #ff7300, #f59e0b) !important;
}

.ab-value {
    font-weight: 700;
    font-size: 13.5px;
    color: #111827;
    line-height: 1.2;
}

.ab-label {
    font-size: 11.5px;
    color: #6b7280;
    margin-top: 2px;
}

/* ============================================================
   WHY CHOOSE US — Ordered Lists
   ============================================================ */

.ol-style-1 {
    counter-reset: adnexa-counter;
    list-style: none;
    padding-left: 0;
}

.ol-style-1 li {
    counter-increment: adnexa-counter;
    position: relative;
    padding: 16px 18px 16px 62px;
    margin-bottom: 12px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    line-height: 1.6;
    color: #374151;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.ol-style-1 li::before {
    content: counter(adnexa-counter, decimal-leading-zero);
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    font-weight: 800;
    color: var(--primary-color);
}

.ol-style-1 li:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 24px rgba(8, 55, 222, 0.12);
    border-color: rgba(8, 55, 222, 0.2);
}

.ol-style-1.color-2 li::before { color: var(--secondary-color); }

.ol-style-1.color-2 li:hover {
    box-shadow: 0 6px 24px rgba(255, 115, 0, 0.12);
    border-color: rgba(255, 115, 0, 0.2);
}

/* ============================================================
   PARTNER LOGOS
   ============================================================ */

.partner-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 24px;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    filter: grayscale(40%) opacity(0.72);
}

.partner-logo-wrap:hover {
    filter: none;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
    border-color: rgba(8, 55, 222, 0.15);
}

/* ============================================================
   SERVICES INCLUDED — Cards with colored top border
   ============================================================ */

section.bg-color-2-op-2 {
    background: #f1f5f9 !important;
}

.services-included-card {
    border-radius: 18px !important;
    border: none !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    border-top: 4px solid var(--primary-color) !important;
    transition: transform 0.32s ease, box-shadow 0.32s ease !important;
    position: relative;
    overflow: hidden;
}

.services-included-card.sic-orange { border-top-color: var(--secondary-color) !important; }
.services-included-card.sic-purple { border-top-color: var(--tertiary-color) !important; }

/* Service icon */
.sic-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 18px;
}

.sic-icon-blue   { background: linear-gradient(135deg, var(--primary-color), #6366f1); }
.sic-icon-orange { background: linear-gradient(135deg, var(--secondary-color), #f59e0b); }
.sic-icon-purple { background: linear-gradient(135deg, var(--tertiary-color), #a855f7); }

.services-included-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.14) !important;
}

.services-included-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.services-included-card p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   TESTIMONIALS — Dramatic dark section
   ============================================================ */

section.bg-color-3-op-1 {
    background: linear-gradient(135deg, #eef2ff 0%, #f5f0ff 100%) !important;
}

section.bg-color-3-op-1 h3,
section.bg-color-3-op-1 span {
    /*color: #ffffff !important;*/
}

section.bg-color-3-op-1 .icofont-quote-left {
    /*color: rgba(255, 255, 255, 0.3) !important;*/
    font-size: 64px !important;
}

/* Rating boxes */
.rating-box {
    background: rgb(174 174 174 / 12%);
    border-radius: 18px;
    padding: 22px 26px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease;
    display: inline-block;
    margin: 8px;
    text-align: center;
}

.rating-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.18);
}

/*.rating-box h4 { color: #ffffff !important; }*/
/*.rating-box .fs-14 { color: rgba(255,255,255,0.75) !important; }*/

.d-stars i { color: #fbbf24 !important; font-size: 15px; }

/* Owl dots on dark bg */
section.bg-color-3-op-1 .owl-dot span {
    /*background: rgba(255,255,255,0.3) !important;*/
}

section.bg-color-3-op-1 .owl-dot.active span {
    background: #ffffff !important;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */

.form-control {
    border-radius: 12px !important;
    border: 1.5px solid #e5e7eb !important;
    padding: 13px 16px !important;
    font-size: 14px !important;
    background: #ffffff !important;
    color: #1f2937 !important;
    transition: border-color 0.22s ease, box-shadow 0.22s ease !important;
    font-family: 'Inter', sans-serif;
}

.form-control:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 4px rgba(8, 55, 222, 0.10) !important;
    outline: none !important;
}

.form-control::placeholder { color: #9ca3af !important; }

select.form-control { cursor: pointer; }

#send_message {
    border-radius: 50px !important;
    padding: 14px 44px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer;
    border: none;
    transition: transform 0.28s ease, box-shadow 0.28s ease !important;
    font-family: 'Inter', sans-serif;
}

#send_message:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 14px 32px rgba(8, 55, 222, 0.38) !important;
}

/* ============================================================
   SOCIAL ICONS
   ============================================================ */

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(8, 55, 222, 0.09);
    color: var(--primary-color);
    font-size: 14px;
    margin-right: 7px;
    transition: all 0.25s ease;
    text-decoration: none;
    border: 1px solid rgba(8, 55, 222, 0.12);
}

.social-icons a:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(8, 55, 222, 0.32);
    border-color: var(--primary-color);
}

/* ============================================================
   NAVIGATION — Glass effect
   ============================================================ */

.menu_side_area .dropdown-menu {
    z-index: 99999 !important;
    position: absolute !important;
    border-radius: 14px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.13) !important;
    border: 1px solid #f0f0f0 !important;
    padding: 8px !important;
    min-width: 185px;
}

.menu_side_area .dropdown-menu a {
    border-radius: 8px;
    padding: 9px 14px;
    display: block;
    font-size: 13.5px;
    color: #374151;
    transition: background 0.2s ease, color 0.2s ease;
}

.menu_side_area .dropdown-menu a:hover {
    background: rgba(8, 55, 222, 0.07);
    color: var(--primary-color);
}

/* ============================================================
   WHY CHOOSE US — FEATURE CARDS
   ============================================================ */

.wcu-gradient {
    background: linear-gradient(130deg, var(--primary-color), var(--tertiary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wcu-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.wcu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(0,0,0,0.12);
    border-color: transparent;
}

.wcu-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    margin-bottom: 18px;
}

.wcu-icon-blue   { background: linear-gradient(135deg, var(--primary-color), #6366f1); }
.wcu-icon-purple { background: linear-gradient(135deg, var(--tertiary-color), #a855f7); }
.wcu-icon-orange { background: linear-gradient(135deg, #ff7300, #f59e0b); }

.wcu-card h5 {
    font-weight: 700;
    font-size: 1rem;
    color: #111827;
    margin-bottom: 10px;
}

.wcu-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}

.wcu-partners-label {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 20px;
}

/* ============================================================
   FOOTER
   ============================================================ */

footer.footer-light {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

/* Footer logo */
.footer-logo {
    max-height: 36px;
    width: auto;
    display: block;
}

/* Footer contact items */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-item > .fa {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(8, 55, 222, 0.08);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 2px;
}

.fci-label {
    font-size: 11px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    margin-bottom: 2px;
    line-height: 16px;
}

.fci-value {
    font-size: 13.5px;
    color: #374151;
    line-height: 1.4;
}

footer.footer-light h5 {
    font-size: 14.5px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

footer.footer-light .widget ul li a {
    font-size: 13.5px;
    color: #6b7280;
    display: inline-block;
    margin-bottom: 7px;
    transition: color 0.2s ease, transform 0.2s ease;
}

footer.footer-light .widget ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

footer.footer-light p {
    font-size: 13.5px;
    line-height: 1.75;
    color: #6b7280;
}

.subfooter {
    border-top: 1px solid #e5e7eb;
    font-size: 13px;
    color: #9ca3af;
}

/* ============================================================
   MODAL
   ============================================================ */

.custom-modal .modal-content {
    border-radius: 22px !important;
    border: none !important;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.18) !important;
    padding: 36px !important;
}

.signup-option {
    padding: 28px 20px;
    border-radius: 16px;
    transition: background 0.2s ease;
}

.signup-option:hover { background: rgba(8, 55, 222, 0.04); }

.signup-option img { width: 60px; height: 60px; object-fit: contain; margin-bottom: 12px; }
.signup-option h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
    .signup-option p {
        font-size: 13px;
        color: #cdcdcd;
        margin-bottom: 25px;
        line-height: 20px;
    }

.btnpupop {
    display: inline-block;
    padding: 10px 26px;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    border: 2px solid rgba(8, 55, 222, 0.22);
    color: var(--primary-color);
    transition: all 0.25s ease;
    text-decoration: none;
}

.btnpupop:hover {
    background: var(--primary-color) !important;
    color: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(8, 55, 222, 0.32);
}

/* ============================================================
   BACK TO TOP + SCROLLBAR
   ============================================================ */

#back-to-top {
    border-radius: 50% !important;
    box-shadow: 0 6px 20px rgba(8, 55, 222, 0.32);
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f1f3f9; }
::-webkit-scrollbar-thumb { background: var(--primary-color); border-radius: 3px; }

/* ============================================================
   UL-CHECK
   ============================================================ */

.ul-check li {
    padding: 10px 10px 10px 32px;
    margin-bottom: 8px;
    border-radius: 10px;
    background: rgba(8, 55, 222, 0.05);
    border: 1px solid rgba(8, 55, 222, 0.08);
    font-size: 14px;
    transition: background 0.2s ease;
}

.ul-check li:hover { background: rgba(8, 55, 222, 0.09); }

/* ============================================================
   SECTION ROUNDS
   ============================================================ */

section.rounded-1.mx-4 { border-radius: 28px !important; }

/* ============================================================
   HERO TRUST STRIP
   ============================================================ */

.hero-trust-strip {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 100px;
    width: fit-content;
}

.hts-avatars {
    display: flex;
}

.hta {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    margin-right: -8px;
    flex-shrink: 0;
}

.hts-text {
    padding-left: 12px;
}

.hts-stars {
    color: #fbbf24;
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 3px;
}

.hts-label {
    font-size: 12.5px;
    /*color: rgba(255,255,255,0.85);*/
}

    .hts-label strong {
        color: #0837de;
    }

/* Secondary CTA button */
.btn-secondary-cta {
    background: #ff7300 !important;
}

/* ============================================================
   ABOUT STATS STRIP
   ============================================================ */

.about-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 28px;
    padding: 20px 24px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    border: 1px solid #e5e7eb;
}

.as-item {
    flex: 1;
    text-align: center;
}

.as-item strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 4px;
}

.as-item span {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.as-divider {
    width: 1px;
    height: 36px;
    background: #e5e7eb;
    flex-shrink: 0;
}

/* ============================================================
   BENEFIT CARDS (Advertisers / Publishers)
   ============================================================ */

.benefit-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 36px;
    height: 100%;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    border-radius: 24px 24px 0 0;
}

.bc-blue::before  { background: linear-gradient(90deg, var(--primary-color), #6366f1); }
.bc-orange::before { background: linear-gradient(90deg, #ff7300, #f59e0b); }

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(0,0,0,0.13);
}

.bc-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.bc-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-color), #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    flex-shrink: 0;
}

.bc-icon-orange { background: linear-gradient(135deg, #ff7300, #f59e0b) !important; }

.bc-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px;
}

.bc-sub {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.bc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.bc-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
    line-height: 1.5;
}

.bc-list li:last-child { border-bottom: none; }

.bc-list li .fa-check {
    color: var(--primary-color);
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

.bc-orange .bc-list li .fa-check { color: #ff7300; }

.bc-btn {
    display: inline-flex;
    align-items: center;
    background: var(--primary-color);
    color: #fff !important;
    border-radius: 50px;
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(8,55,222,0.38);
    color: #fff !important;
}

.bc-btn-orange { background: #ff7300 !important; }

.bc-btn-orange:hover {
    box-shadow: 0 10px 28px rgba(255,115,0,0.38) !important;
}

/* ============================================================
   TESTIMONIAL AUTHOR
   ============================================================ */

.testi-stars {
    color: #fbbf24;
    font-size: 18px;
    letter-spacing: 2px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
}

.testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.3);
}

.testi-name {
    font-weight: 700;
    font-size: 15px;
    /*color: #ffffff;*/
}

.testi-role {
    font-size: 12.5px;
    /*color: rgba(255,255,255,0.60);*/
    margin-top: 2px;
}

/* ============================================================
   CONTACT RESPONSE BADGE
   ============================================================ */

.contact-response-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(74, 222, 128, 0.12);
    border: 1px solid rgba(74, 222, 128, 0.30);
    border-radius: 100px;
    padding: 7px 18px;
    font-size: 13px;
    color: #065f46;
    margin-top: 16px;
}

.contact-response-badge .fa-clock {
    color: #059669;
}

/* ============================================================
   CONTACT SECTION — INFO PANEL + FORM CARD
   ============================================================ */

.contact-info-panel {
    background: linear-gradient(163deg, #F3D36A 0%, #cfaa34 100%) !important;
    border-radius: 24px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    flex-direction: column;
}

.cip-deco {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.10), transparent 70%);
    pointer-events: none;
}

.cip-title {
    color: #000000;
    font-weight: 800;
    font-size: 1.6rem;
    margin-bottom: 10px;
    position: relative;
}

.cip-sub {
    color: rgb(21 20 20 / 92%);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 32px;
    position: relative;
}

.cip-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
    position: relative;
}

.cip-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgb(101 208 59 / 18%);
    border: 1px solid rgb(54 191 8 / 9%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 15px;
    flex-shrink: 0;
}

.cip-label {
    font-size: 11.5px;
    color: rgb(0 0 0 / 92%);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 3px;
    line-height: normal;
}

.cip-value {
    color: #6b6b6b;
    font-size: 14px;
    font-weight: 500;
}

.cip-divider {
    height: 1px;
    background: rgba(255,255,255,0.14);
    margin: 24px 0 20px;
}

.cip-socials {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.cip-socials a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.22s ease, transform 0.22s ease;
}

.cip-socials a:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-3px);
    color: #ffffff;
}

/* Form card */
.contact-form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}

.cf-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}

.cf-sub {
    font-size: 13.5px;
    color: #6b7280;
    margin-bottom: 24px;
}

.cf-label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cf-input {
    border-radius: 12px !important;
    border: 1.5px solid #e5e7eb !important;
    background: #f9fafb !important;
    font-size: 14px !important;
    color: #111827 !important;
    padding: 12px 16px !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.cf-input:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 4px rgba(8,55,222,0.09) !important;
    background: #ffffff !important;
    outline: none !important;
}

.cf-textarea {
    min-height: 110px !important;
    resize: vertical !important;
}

.cf-select-wrap {
    position: relative;
}

.cf-select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    color: #9ca3af;
    pointer-events: none;
}

.cf-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), #6366f1);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.2s ease;
    margin-top: 4px;
}

.cf-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(8,55,222,0.38);
    opacity: 0.95;
}

.cf-privacy {
    text-align: center;
    font-size: 12px;
    color: #9ca3af;
    margin-top: 12px;
}

.cf-privacy .fa-lock {
    font-size: 11px;
    margin-right: 4px;
    color: #6b7280;
}

/* ============================================================
   CTA BANNER SECTION
   ============================================================ */

.cta-banner-section {
    background: linear-gradient(135deg, #003acc 0%, #0c86fc 55%, #590bda 100%) !important;
    padding: 80px 0;
    margin: 0 16px;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    isolation: isolate;
}

/* Decorative background circles */
.cta-banner-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.cta-deco-1 {
    width: 400px;
    height: 400px;
    top: -120px;
    left: -100px;
    background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 65%);
}

.cta-deco-2 {
    width: 280px;
    height: 280px;
    bottom: -80px;
    left: 30%;
    background: radial-gradient(circle, rgba(255,115,0,0.12), transparent 65%);
}

.cta-deco-3 {
    width: 360px;
    height: 360px;
    top: -60px;
    right: -80px;
    background: radial-gradient(circle, rgba(133,89,230,0.18), transparent 65%);
}

.cta-banner-inner {
    position: relative;
    z-index: 2;
}

/* Left text side */
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.26);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 12.5px;
    color: rgba(255,255,255,0.90);
    font-weight: 500;
    margin-bottom: 18px;
}

.cta-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74,222,128,0.8);
    display: inline-block;
    flex-shrink: 0;
}

.cta-heading {
    font-size: 2.4rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.cta-sub {
    color: rgba(255,255,255,0.72);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
    max-width: 480px;
}

.cta-trust-row {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.ctr-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.80);
    font-size: 13.5px;
    font-weight: 500;
}

.ctr-item .fa-check-circle {
    color: #4ade80;
    font-size: 14px;
}

/* Right card */
.cta-card {
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.24);
    border-radius: 24px;
    padding: 36px 32px;
    text-align: center;
}

.cta-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.cta-card-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 24px;
    line-height: 1.6;
}

.cta-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: var(--primary-color);
    border-radius: 50px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    letter-spacing: 0.01em;
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(255,255,255,0.25);
    color: var(--primary-color);
}

.cta-btn-ghost {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.10);
    border: 1.5px solid rgba(255,255,255,0.28);
    color: rgba(255,255,255,0.88);
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 20px;
    transition: background 0.22s ease, transform 0.22s ease;
}

.cta-btn-ghost:hover {
    background: rgba(255,255,255,0.18);
    color: #ffffff;
    transform: translateY(-1px);
}

.cta-card-note {
    font-size: 12px;
    color: rgba(255,255,255,0.50);
}

.cta-card-note .fa-lock {
    font-size: 11px;
    margin-right: 4px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* GPU compositing — reduces scroll repaint cost globally */
.jarallax, .jarallax-img {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* ── Mobile: disable jarallax parallax via CSS backup ── */
@media (max-width: 768px) {
    .jarallax-img {
        position: absolute !important;
        transform: none !important;
        will-change: auto !important;
        top: 0 !important; left: 0 !important;
        width: 100% !important; height: 100% !important;
        object-fit: cover !important;
    }
    .hero-section {
        min-height: 100svh;
        padding-bottom: 40px;
    }
    .hero-content {
        padding-bottom: 30px !important;
    }
    .about-bg-deco-2{
        display:none;
    }
}

/* ── Tablet (≤992px) ── */
@media (max-width: 992px) {
    /* Hero */
    .hero-section h1    { font-size: 2.2rem !important; }
    .hero-badge         { margin-top: 80px; }
    .hero-glow-1, .hero-glow-2 { display: none; }
    .hero-proof-card    { display: none; }
    .hero-trust-strip   { width: fit-content; }

    /* Stat counters */
    .de_count { padding: 20px 16px !important; }

    /* About */
    .about-stats  { flex-wrap: wrap; gap: 10px; }
    .as-divider   { display: none; }
    .as-item      { min-width: 30%; }
    .about-badge  { display: none; }
    .about-img-wrap { padding: 0; }
    .about-img    { border-radius: 16px; }

    /* CTA */
    .cta-heading  { font-size: 2rem; }
    .cta-sub      { max-width: 100%; }

    /* Why Choose Us */
    .wcu-card     { padding: 26px 22px; }

    /* Footer */
    .footer-logo  { max-height: 30px; }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {
    /* Hero */
    .hero-section h1    { font-size: 2rem !important; }
    .hero-badge         { margin-top: 88px; font-size: 12px; padding: 7px 14px; }
    .hero-section .lead { font-size: 0.95rem !important; }
    .hero-trust-strip   { border-radius: 14px; }
    .hts-label          { font-size: 12px; }

    /* Stat counters */
    .de_count     { padding: 18px 14px !important; border-radius: 16px !important; }

    /* About */
    .about-stats  { padding: 16px 18px; }
    .as-item strong { font-size: 1.4rem; }

    /* Services Included */
    .services-included-card { padding: 24px !important; }

    /* Contact */
    .contact-info-panel { min-height: auto; padding: 28px 22px; }
    .contact-form-card  { padding: 26px 20px; }

    /* Benefits */
    .benefit-card { padding: 24px 20px; }

    /* CTA */
    .cta-banner-section { margin: 0 12px; padding: 56px 0; border-radius: 22px; }
    .cta-heading  { font-size: 1.85rem; }
    .cta-card     { padding: 28px 22px; margin-top: 8px; }
    .cta-trust-row { gap: 14px; }
    .ctr-item     { font-size: 13px; }

    /* Rounded sections */
    section#about.rounded-1,
    section.bg-color-3-op-1.rounded-1 {
        margin-left: 8px !important;
        margin-right: 8px !important;
        border-radius: 20px !important;
    }
}

/* ── Small phones (≤576px) ── */
@media (max-width: 576px) {
    /* Hero */
    .hero-section h1    { font-size: 1.75rem !important; }
    .hero-badge         { margin-top: 76px; }
    .hero-trust-strip   { width: 100%; border-radius: 14px; }

    /* Stat counters */
    .de_count h3 { font-size: 2.5rem !important; }
    .de_count .fs-18 { font-size: 13px !important; }

    /* Buttons */
    .btn-main { padding: 12px 22px !important; font-size: 14px !important; }

    /* Service cards */
    .service-card { border-radius: 18px !important; }

    /* About stats */
    .about-stats { padding: 14px 16px; gap: 8px; }
    .as-item strong { font-size: 1.3rem; }
    .as-item span   { font-size: 11px; }
    .about-img-wrap { padding: 0; }

    /* Benefits */
    .benefit-card   { padding: 22px 18px; }
    .bc-btn         { padding: 11px 20px; font-size: 13px; width: 100%; justify-content: center; }

    /* Contact */
    .contact-form-card  { padding: 20px 16px; }
    .contact-info-panel { padding: 26px 20px; }
    .cf-submit-btn  { padding: 13px; font-size: 14px; }
    .cip-socials a  { width: 36px; height: 36px; }

    /* CTA */
    .cta-banner-section { margin: 0 8px; padding: 50px 0; border-radius: 18px; }
    .cta-heading        { font-size: 1.6rem; letter-spacing: -0.02em; }
    .cta-card           { padding: 22px 16px; }
    .cta-btn-primary,
    .cta-btn-ghost      { padding: 12px 20px; font-size: 14px; }
    .cta-trust-row      { gap: 10px; flex-direction: column; align-items: flex-start; }
    .ctr-item           { font-size: 12.5px; }

    /* Why Choose Us */
    .wcu-card  { padding: 22px 18px; }
    .wcu-icon  { width: 44px; height: 44px; font-size: 18px; border-radius: 12px; }

    /* Testimonials */
    .testi-avatar { width: 40px; height: 40px; font-size: 13px; }
    .rating-box   { padding: 18px !important; }

    /* Footer */
    .footer-logo  { max-height: 26px; }
    .footer-contact-item { margin-bottom: 12px; }
    .fci-value    { font-size: 13px; }
}
