/********** Template CSS **********/
:root {
    --primary: #5a3bb8;
    --primary-light: #8b6ce8;
    --primary-dark: #4a2fa0;
    --secondary: #f0b429;
    --secondary-light: #f5c84d;
    --light: #F8F9FC;
    --light-alt: #f0f2f8;
    --dark: #0f1118;
    --text: #2d3142;
    --text-muted: #5a5d6b;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(18, 20, 29, 0.08);
    --shadow-md: 0 8px 32px rgba(18, 20, 29, 0.1);
    --shadow-hover: 0 12px 40px rgba(98, 68, 197, 0.12);
    --shadow-glow: 0 16px 48px rgba(98, 68, 197, 0.18);
    --transition: 0.25s ease;
    --transition-slow: 0.35s ease;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--secondary) 100%);
    --gradient-hero-bg: linear-gradient(135deg, rgba(98, 68, 197, 0.06) 0%, rgba(255, 196, 72, 0.04) 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: rgba(98, 68, 197, 0.2);
    color: var(--dark);
}

*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

a {
    transition: color var(--transition), opacity var(--transition);
}

/* Professional scroll-triggered animations (WOW.js) */
.wow {
    visibility: hidden;
}
.wow.animated {
    visibility: visible;
}
html {
    scroll-behavior: smooth;
}

/* Subtle icon animations on hover */
.about-me-stat-card:hover .about-me-stat-icon,
.about-me-pillar-card:hover .about-me-pillar-icon,
.solve-card:hover .solve-card-icon,
.about-me-extra-card:hover .about-me-extra-icon {
    transform: scale(1.08);
    transition: transform 0.3s ease;
}
.about-me-stat-icon,
.about-me-pillar-icon,
.solve-card-icon {
    transition: transform 0.3s ease;
}


.back-to-top {
    position: fixed;
    display: none;
    right: 28px;
    bottom: 5rem;
    z-index: 99;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    background: var(--gradient-primary) !important;
    border: none;
    color: #fff !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(98, 68, 197, 0.4);
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
}
.back-to-top.visible {
    display: flex !important;
}
.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    color: #fff !important;
}
.back-to-top i {
    font-size: 1.25rem;
}

/* Floating WhatsApp - bottom right */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 98;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #25d366;
    color: #fff !important;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.whatsapp-float:hover {
    color: #fff !important;
    background: #20bd5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}
.whatsapp-float i {
    font-size: 1.5rem;
}
.whatsapp-float-text {
    white-space: nowrap;
}
@media (max-width: 575.98px) {
    .whatsapp-float {
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
        bottom: 1.25rem;
        right: 1rem;
    }
    .whatsapp-float-text {
        display: none;
    }
    .whatsapp-float i {
        font-size: 1.75rem;
        margin: 0;
    }
}
.back-to-top {
    bottom: 5rem;
}
@media (max-width: 575.98px) {
    .back-to-top {
        bottom: 4.5rem;
    }
}

/* Site footer */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    position: relative;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(98, 68, 197, 0.5), var(--secondary), rgba(240, 180, 41, 0.4), transparent);
    pointer-events: none;
}
.footer-logo {
    height: 28px;
    width: auto;
    display: block;
    object-fit: contain;
}
.footer-brand {
    font-weight: 700;
    color: #fff;
}
.site-footer .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Consistent section spacing */
.about-me-section,
.my-services-section,
.solve-section,
.lets-talk-section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}
@media (min-width: 992px) {
    .about-me-section,
    .my-services-section,
    .solve-section,
    .lets-talk-section {
        padding-top: 5.5rem;
        padding-bottom: 5.5rem;
    }
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.fixed-top {
    display: none;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    padding: 20px 15px;
    color: var(--dark);
    font-size: 18px;
    font-weight: 600;
    outline: none;
    position: relative;
}
.navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 12px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform var(--transition);
    border-radius: 1px;
}
.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        padding: 10px 0;
    }
}

/* Professional navbar */
.nav-professional {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(18, 20, 29, 0.06);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: box-shadow var(--transition);
}
.nav-professional.scrolled {
    box-shadow: var(--shadow);
}
.nav-brand-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--dark) !important;
    letter-spacing: -0.02em;
}
.nav-brand-center {
    padding: 0.65rem 1.25rem !important;
    background: transparent !important;
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    transition: background var(--transition), color var(--transition);
}
.nav-brand-center:hover {
    background: var(--primary) !important;
}
.nav-brand-center:hover .nav-brand-text {
    color: #fff !important;
}
.nav-logo {
    height: 36px;
    width: auto;
    display: block;
    object-fit: contain;
}
.nav-logo-center {
    height: 32px;
}
.nav-professional .nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}


/*** Header / Hero ***/
.hero-section {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background: #f0f2f8;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url(../img/logo.png) center center no-repeat;
    background-size: min(380px, 55vw);
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
}

/* Hero background – layered design (base + blobs) */
.hero-bg-base,
.hero-bg-blob {
    position: absolute;
    pointer-events: none;
}
.hero-bg-layer-0 {
    inset: 0;
    z-index: 0;
    background: linear-gradient(165deg, #f8f9fe 0%, #f2f4fa 35%, #eef0f8 100%);
}
.hero-bg-blob {
    z-index: 0;
    border-radius: 50%;
    animation: hero-layer-float 20s ease-in-out infinite;
}
.hero-bg-layer-1 {
    top: -25%;
    right: -15%;
    width: 60%;
    height: 65%;
    background: radial-gradient(ellipse 70% 60% at 75% 25%, rgba(98, 68, 197, 0.08) 0%, transparent 70%);
    border-radius: 55% 45% 50% 50%;
    animation-duration: 22s;
    animation-delay: 0s;
}
.hero-bg-layer-2 {
    bottom: -20%;
    left: -15%;
    width: 50%;
    height: 60%;
    background: radial-gradient(ellipse 60% 70% at 25% 80%, rgba(240, 180, 41, 0.07) 0%, transparent 70%);
    border-radius: 50% 50% 45% 55%;
    animation-duration: 26s;
    animation-delay: -4s;
}
.hero-bg-layer-3 {
    top: 35%;
    left: 45%;
    width: 40%;
    height: 45%;
    background: radial-gradient(ellipse at 50% 50%, rgba(139, 108, 232, 0.06) 0%, transparent 70%);
    border-radius: 45% 55% 55% 45%;
    animation-duration: 24s;
    animation-delay: -8s;
}
.hero-bg-layer-4 {
    top: 10%;
    left: -5%;
    width: 35%;
    height: 40%;
    background: radial-gradient(ellipse at 30% 40%, rgba(98, 68, 197, 0.05) 0%, transparent 65%);
    border-radius: 60% 40% 50% 50%;
    animation-duration: 28s;
    animation-delay: -12s;
}
.hero-bg-layer-5 {
    bottom: 10%;
    right: -8%;
    width: 38%;
    height: 42%;
    background: radial-gradient(ellipse at 70% 60%, rgba(240, 180, 41, 0.05) 0%, transparent 65%);
    border-radius: 40% 60% 50% 50%;
    animation-duration: 25s;
    animation-delay: -6s;
}
@keyframes hero-layer-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(2%, -1.5%) scale(1.02); }
    50% { transform: translate(-1.5%, 2%) scale(0.98); }
    75% { transform: translate(1%, 1%) scale(1.01); }
}

/* Floating bubbles */
.hero-bubbles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}
.hero-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    animation: hero-bubble-float 15s ease-in-out infinite;
}
.hero-bubble-1 { left: 8%; bottom: -20px; width: 50px; height: 50px; animation-delay: 0s; animation-duration: 14s; }
.hero-bubble-2 { left: 18%; bottom: -30px; width: 35px; height: 35px; animation-delay: -2s; animation-duration: 18s; }
.hero-bubble-3 { left: 35%; bottom: -15px; width: 60px; height: 60px; animation-delay: -4s; animation-duration: 16s; opacity: 0.7; }
.hero-bubble-4 { right: 25%; bottom: -25px; width: 45px; height: 45px; animation-delay: -1s; animation-duration: 17s; }
.hero-bubble-5 { right: 12%; bottom: -40px; width: 40px; height: 40px; animation-delay: -3s; animation-duration: 19s; }
.hero-bubble-6 { left: 50%; bottom: -35px; width: 28px; height: 28px; animation-delay: -5s; animation-duration: 20s; }
.hero-bubble-7 { left: 75%; bottom: -20px; width: 55px; height: 55px; animation-delay: -6s; animation-duration: 13s; opacity: 0.6; }
.hero-bubble-8 { right: 40%; bottom: -50px; width: 32px; height: 32px; animation-delay: -7s; animation-duration: 15s; }
@keyframes hero-bubble-float {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.5;
    }
    25% {
        transform: translateY(-25vh) translateX(8px) scale(1.05);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-50vh) translateX(-5px) scale(0.95);
        opacity: 0.35;
    }
    75% {
        transform: translateY(-75vh) translateX(6px) scale(1.02);
        opacity: 0.25;
    }
    100% {
        transform: translateY(-110vh) translateX(0) scale(1);
        opacity: 0;
    }
}

/* LinkedIn button in hero */
.btn-hero-linkedin {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: #0a66c2;
    background: rgba(10, 102, 194, 0.1);
    border: 2px solid rgba(10, 102, 194, 0.4);
    border-radius: var(--radius);
    transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}
.btn-hero-linkedin:hover {
    color: #fff;
    background: #0a66c2;
    border-color: #0a66c2;
    transform: translateY(-2px);
}
.btn-hero-whatsapp {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: #0d7d3d;
    background: rgba(13, 125, 61, 0.12);
    border: 2px solid rgba(13, 125, 61, 0.4);
    border-radius: var(--radius);
    transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}
.btn-hero-whatsapp:hover {
    color: #fff;
    background: #25d366;
    border-color: #25d366;
    transform: translateY(-2px);
}
.hero-section .hero-container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5.5rem;
    padding-bottom: 4rem;
}
.hero-row {
    width: 100%;
    margin: 0;
    --bs-gutter-x: 2.5rem;
    --bs-gutter-y: 2rem;
}
@media (min-width: 992px) {
    .hero-row { --bs-gutter-x: 3.5rem; }
}
.hero-text-col {
    display: flex;
    align-items: center;
}
@media (min-width: 992px) {
    .hero-text-col {
        padding-right: 2rem;
    }
    .hero-text-inner {
        max-width: 520px;
    }
}
.hero-profile-col {
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width: 992px) {
    .hero-profile-col {
        justify-content: flex-end;
        padding-left: 1rem;
    }
}
.hero-section .container {
    font-family: 'Poppins', sans-serif;
}
.hero-badge {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--primary);
    background: rgba(98, 68, 197, 0.12);
    padding: 0.5rem 1.15rem;
    border-radius: 50px;
    border: 1px solid rgba(98, 68, 197, 0.15);
    transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.hero-badge:hover {
    background: rgba(98, 68, 197, 0.18);
    border-color: rgba(98, 68, 197, 0.25);
    box-shadow: 0 2px 12px rgba(98, 68, 197, 0.15);
}
.hero-greeting {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.hero-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    color: var(--dark);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0 0 0.75rem;
}
.hero-accent-line {
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--secondary));
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(98, 68, 197, 0.2);
}
.hero-tagline .highlight {
    background: linear-gradient(180deg, transparent 60%, rgba(255, 196, 72, 0.45) 60%);
    padding: 0 0.15em;
    font-weight: 700;
    color: var(--dark);
}
.hero-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.5;
}
.hero-desc {
    font-family: 'Poppins', sans-serif;
    color: #3d4050;
    line-height: 1.7;
    max-width: 520px;
    font-size: 1.05rem;
}
.hero-desc .highlight-inline {
    color: var(--primary);
    font-weight: 600;
    background: rgba(98, 68, 197, 0.08);
    padding: 0.1em 0.35em;
    border-radius: 4px;
}
.hero-cta-text {
    font-family: 'Poppins', sans-serif;
    color: #3d4050;
    line-height: 1.65;
    font-size: 1.05rem;
}
.hero-cta-text .highlight-strong {
    color: var(--primary);
    background: rgba(98, 68, 197, 0.1);
    padding: 0.15em 0.4em;
    border-radius: 4px;
}
.hero-name-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.25rem;
}
.hero-logo {
    height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
}
@media (max-width: 991.98px) {
    .hero-name-wrap {
        justify-content: center;
    }
}
.hero-detail-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--primary);
    background: rgba(98, 68, 197, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(98, 68, 197, 0.2);
    margin-bottom: 0.5rem;
}
.hero-trust-line {
    font-size: 0.9rem;
    max-width: 420px;
}
.btn-hero {
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(98, 68, 197, 0.35);
    border: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    background: var(--primary-dark) !important;
}
.btn-outline-hero {
    font-weight: 600;
    color: var(--primary);
    border: 2px solid var(--primary);
    background: transparent;
    transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}
.btn-outline-hero:hover {
    background: var(--primary);
    color: #fff !important;
    border-color: var(--primary);
    transform: translateY(-3px);
}
/* Hero profile - clean circle + footer */
.hero-profile-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    max-width: 300px;
}
@media (min-width: 992px) {
    .hero-profile-block {
        margin: 0 0 0 auto;
        max-width: 360px;
    }
}
.hero-profile-circle {
    position: relative;
    width: 260px;
    height: 260px;
    flex-shrink: 0;
}
@media (min-width: 992px) {
    .hero-profile-circle {
        width: 300px;
        height: 300px;
    }
}
.hero-profile-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(145deg, var(--primary) 0%, #9d7aef 50%, var(--secondary) 100%);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 12px 40px rgba(98, 68, 197, 0.2);
}
.hero-profile-ring::after {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background: #fff;
}
.hero-profile-img-wrap {
    position: absolute;
    inset: 14px;
    z-index: 2;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 36px rgba(18, 20, 29, 0.12);
}
.hero-profile-img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
    display: block;
    transition: transform 0.4s ease;
}
.hero-profile-block:hover .hero-profile-img-wrap img {
    transform: scale(1.02);
}
.hero-profile-block:hover .hero-profile-ring {
    background: linear-gradient(145deg, #4a2fa0 0%, #a88af2 50%, #e8a838 100%);
    box-shadow: 0 16px 48px rgba(98, 68, 197, 0.25);
}
.hero-profile-footer {
    margin-top: 1.25rem;
    width: 100%;
    padding: 1.25rem 1.35rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(18, 20, 29, 0.08);
    border: 1px solid rgba(98, 68, 197, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.hero-profile-footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}
.hero-profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
    padding: 0.45rem 0.95rem;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.hero-profile-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    animation: hero-badge-pulse 2s ease-in-out infinite;
}
@keyframes hero-badge-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.1); }
}
.hero-profile-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    font-weight: 500;
}
.hero-profile-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0a66c2;
    background: rgba(10, 102, 194, 0.08);
    border: 1px solid rgba(10, 102, 194, 0.25);
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.hero-profile-linkedin:hover {
    background: #0a66c2;
    color: #fff;
    border-color: #0a66c2;
}
.hero-profile-linkedin i {
    font-size: 1.1rem;
}
.hero-profile-detail {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    font-weight: 500;
}
@media (max-width: 991.98px) {
    .hero-text-inner { max-width: none; }
    .hero-profile-col { padding-left: 0; padding-top: 1rem; }
    .hero-profile-circle { width: 260px; height: 260px; }
    .hero-profile-footer { padding: 0.85rem 1rem; }
    .hero-profile-badge { font-size: 0.75rem; padding: 0.35rem 0.75rem; }
    .hero-section .hero-container { padding-top: 6rem; padding-bottom: 3rem; }
}

.typed-cursor {
    font-size: 30px;
    color: var(--dark);
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--primary);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** About Me ***/
.about-me-section {
    background: var(--light);
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}
.about-me-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url(../img/logo.png) center center no-repeat;
    background-size: min(320px, 50vw);
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}
.about-me-section .container {
    position: relative;
    z-index: 1;
}
.about-me-bg-accent {
    position: absolute;
    top: 0;
    left: -10%;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(98, 68, 197, 0.05) 0%, rgba(255, 196, 72, 0.03) 100%);
    border-radius: 0 50% 50% 0;
    pointer-events: none;
}
.about-me-header-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(98, 68, 197, 0.35);
    transition: transform var(--transition), box-shadow var(--transition);
}
.about-me-header:hover .about-me-header-icon {
    transform: scale(1.05);
    box-shadow: 0 12px 36px rgba(98, 68, 197, 0.4);
}
.about-me-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.35rem;
    color: var(--dark);
    letter-spacing: -0.02em;
}
.about-me-subtitle {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    margin: 0;
}
.about-me-section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--primary);
}
.about-me-title-accent {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}
.about-me-stat-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.75rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(18, 20, 29, 0.06);
    border: 1px solid rgba(98, 68, 197, 0.08);
    height: 100%;
    transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition);
}
.about-me-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(98, 68, 197, 0.15);
}
.about-me-stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    background: rgba(98, 68, 197, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}
.about-me-stat-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--dark);
    margin-bottom: 0.25rem;
}
.about-me-stat-label {
    font-size: 0.9rem;
    color: #5a5d6b;
    margin: 0;
    font-weight: 500;
}
.about-me-stat-detail {
    font-size: 0.8rem;
    margin-top: 0.25rem;
}
.about-me-intro-box {
    background: #fff;
    border-radius: 18px;
    padding: 1.5rem 1.75rem;
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition), border-color var(--transition);
}
.about-me-intro-box:hover {
    box-shadow: var(--shadow-md);
    border-left-color: var(--primary-light);
}
.about-me-intro-icon {
    width: 40px;
    height: 40px;
    background: rgba(98, 68, 197, 0.1);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.about-me-intro {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #3d4050;
}
.about-me-intro strong {
    color: var(--primary);
}
.about-me-pillars-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--dark);
}
.about-me-pillars-title i {
    color: var(--primary);
}
.about-me-pillar-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.75rem;
    height: 100%;
    box-shadow: var(--shadow);
    border: 1px solid rgba(98, 68, 197, 0.06);
    transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition);
}
.about-me-pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(98, 68, 197, 0.12);
}
.about-me-pillar-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(98, 68, 197, 0.12), rgba(255, 196, 72, 0.12));
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}
.about-me-pillar-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}
.about-me-pillar-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5a5d6b;
    margin: 0;
}
.about-me-outcomes-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--dark);
}
.about-me-outcomes-title i {
    color: var(--primary);
}
.about-me-outcomes-list li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 1rem;
    color: #3d4050;
}
.about-me-outcomes-list li i {
    flex-shrink: 0;
    font-size: 1.1rem;
}
.about-me-extra-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.25rem;
    height: 100%;
    border: 1px solid rgba(98, 68, 197, 0.08);
    box-shadow: 0 4px 16px rgba(18, 20, 29, 0.04);
    transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition);
}
.about-me-extra-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(98, 68, 197, 0.12);
}
.about-me-extra-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.about-me-extra-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0.35rem;
}
.about-me-extra-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #5a5d6b;
}

/*** What I Help You Solve ***/
.solve-section {
    background: var(--light-alt);
    font-family: 'Poppins', sans-serif;
    position: relative;
}
.solve-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(98, 68, 197, 0.12), transparent);
    pointer-events: none;
}
.solve-header-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(98, 68, 197, 0.35);
    transition: transform var(--transition), box-shadow var(--transition);
}
.solve-header:hover .solve-header-icon {
    transform: scale(1.05);
    box-shadow: 0 12px 36px rgba(98, 68, 197, 0.4);
}
.solve-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.35rem;
    color: var(--dark);
    letter-spacing: -0.02em;
}
.solve-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3d4050;
    max-width: 640px;
}
.solve-intro strong {
    color: var(--primary);
    font-weight: 600;
}
.solve-section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--primary);
}
.solve-title-accent {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}
.solve-intro-sub {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 560px;
}
.solve-cta-detail {
    font-size: 0.9rem;
}
.solve-subhead {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0;
}
.solve-subhead i {
    color: var(--primary);
}
.solve-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.5rem 1.75rem;
    height: 100%;
    border: 1px solid rgba(98, 68, 197, 0.08);
    box-shadow: 0 4px 20px rgba(18, 20, 29, 0.06);
    transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition);
}
.solve-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(98, 68, 197, 0.15);
}
.solve-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(98, 68, 197, 0.12), rgba(255, 196, 72, 0.1));
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.solve-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}
.solve-card-desc {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #5a5d6b;
}

/*** My Services ***/
.my-services-section {
    background: var(--light);
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}
.services-section-bg {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
}
.services-section-bg-left {
    bottom: -15%;
    left: -8%;
    width: 45%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(98, 68, 197, 0.07) 0%, transparent 70%);
}
.services-section-bg-right {
    top: -10%;
    right: -5%;
    width: 40%;
    height: 50%;
    background: radial-gradient(ellipse at center, rgba(255, 196, 72, 0.06) 0%, transparent 70%);
}
.services-header-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(98, 68, 197, 0.35);
    transition: transform var(--transition), box-shadow var(--transition);
}
.services-header:hover .services-header-icon {
    transform: scale(1.05);
    box-shadow: 0 12px 36px rgba(98, 68, 197, 0.4);
}
.services-main-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.35rem;
    color: var(--dark);
}
.services-section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--primary);
}
.services-title-accent {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}
.services-header-detail {
    font-size: 0.95rem;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

/* Service cards v2 - attractive layout */
.service-card-v2 {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    height: 100%;
    box-shadow: var(--shadow);
    border: 1px solid rgba(98, 68, 197, 0.06);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    opacity: 0.9;
    transition: opacity var(--transition);
}
.service-card-accent-1::before { background: linear-gradient(90deg, var(--primary), var(--primary-light)); }
.service-card-accent-2::before { background: linear-gradient(90deg, #e8a838, var(--secondary)); }
.service-card-accent-3::before { background: linear-gradient(90deg, #6b4cbf, #9d7aef); }
.service-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(98, 68, 197, 0.15);
}
.service-card-num {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(98, 68, 197, 0.07);
    font-family: 'Poppins', sans-serif;
}
.service-card-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(145deg, rgba(98, 68, 197, 0.15), rgba(255, 196, 72, 0.12));
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.1rem;
    transition: transform var(--transition), background var(--transition);
    border: 1px solid rgba(98, 68, 197, 0.08);
}
.service-card-v2:hover .service-card-icon {
    transform: scale(1.05);
    background: linear-gradient(145deg, rgba(98, 68, 197, 0.2), rgba(255, 196, 72, 0.15));
}
.service-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}
.service-card-tagline {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.25rem;
    line-height: 1.4;
    padding-left: 0.15rem;
}
.service-card-block {
    margin-bottom: 1rem;
}
.service-card-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
    margin-bottom: 0.4rem;
}
.service-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text-muted);
}
.service-card-list li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.3rem;
}
.service-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.6;
}
.service-card-note {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-muted);
    margin-top: 1rem;
    margin-bottom: 0;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(98, 68, 197, 0.08);
}

/* How I Work v2 - attractive horizontal layout */
.how-i-work-v2 {
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.98) 100%);
    border-radius: var(--radius-lg);
    padding: 2rem 2.25rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(98, 68, 197, 0.08);
    position: relative;
    overflow: hidden;
}
.how-i-work-v2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.how-i-work-v2-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--dark);
}
.how-i-work-v2-pills .pill {
    display: inline-block;
    background: linear-gradient(135deg, rgba(98, 68, 197, 0.1), rgba(255, 196, 72, 0.08));
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-right: 0.5rem;
    margin-top: 0.35rem;
    border: 1px solid rgba(98, 68, 197, 0.1);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.how-i-work-v2-pills .pill:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(98, 68, 197, 0.18), rgba(255, 196, 72, 0.12));
    box-shadow: 0 4px 12px rgba(98, 68, 197, 0.15);
}
.how-i-work-v2-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
}
.how-i-work-v2-detail {
    font-size: 0.9rem;
}

/* Engagement models v2 - attractive tags */
.engagement-v2 {
    margin-top: 2.5rem;
}
.engagement-v2-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}
.engagement-v2-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}
.engagement-tag {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border: 2px solid rgba(98, 68, 197, 0.12);
    border-radius: 50px;
    padding: 0.6rem 1.15rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(18, 20, 29, 0.04);
}
.engagement-tag:hover {
    background: linear-gradient(135deg, rgba(98, 68, 197, 0.08), rgba(255, 196, 72, 0.06));
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(98, 68, 197, 0.12);
}
.engagement-tag i {
    color: var(--primary);
    font-size: 0.9rem;
}

.services-cta-wrap {
    padding-top: 0.5rem;
}
.services-cta-detail {
    font-size: 0.95rem;
    font-weight: 500;
}

.service-main-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(18, 20, 29, 0.06);
    border: 1px solid rgba(98, 68, 197, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-main-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(98, 68, 197, 0.1);
}
.service-main-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(98, 68, 197, 0.12), rgba(255, 196, 72, 0.1));
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}
.service-main-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}
.service-main-tagline {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}
.service-main-desc {
    font-size: 0.95rem;
    color: #3d4050;
    margin-bottom: 0.5rem;
}
.service-subhead {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    margin-top: 0.75rem;
    margin-bottom: 0.35rem;
}
.service-list {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #5a5d6b;
    padding-left: 1.25rem;
    margin-bottom: 0;
}
.service-list li {
    margin-bottom: 0.25rem;
}
.service-note {
    font-size: 0.9rem;
    font-style: italic;
    color: #5a5d6b;
    margin-top: 0.75rem;
    margin-bottom: 0;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(98, 68, 197, 0.1);
}
.how-i-work-box {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(18, 20, 29, 0.06);
    border: 1px solid rgba(98, 68, 197, 0.08);
}
.how-i-work-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--dark);
}
.how-i-work-title i {
    color: var(--primary);
}
.how-i-work-intro {
    font-size: 1.05rem;
    color: #3d4050;
    margin-bottom: 0;
}
.how-i-work-pill {
    display: inline-block;
    background: linear-gradient(135deg, rgba(98, 68, 197, 0.12), rgba(255, 196, 72, 0.1));
    color: var(--primary);
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 1rem;
}
.how-i-work-desc {
    font-size: 1rem;
    line-height: 1.65;
    color: #5a5d6b;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.how-i-work-detail {
    font-size: 0.9rem;
}
.engagement-models {
    margin-top: 2.5rem;
}
.engagement-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--dark);
}
.engagement-intro {
    font-size: 1rem;
    color: #5a5d6b;
    margin-bottom: 0;
}
.engagement-pill {
    background: #fff;
    border: 1px solid rgba(98, 68, 197, 0.1);
    border-radius: 12px;
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
    transition: background 0.2s ease, border-color 0.2s ease;
}
.engagement-pill:hover {
    background: rgba(98, 68, 197, 0.06);
    border-color: rgba(98, 68, 197, 0.2);
}
.engagement-pill i {
    color: var(--primary);
}

/*** Let's Talk / Contact ***/
.lets-talk-section {
    background: var(--light);
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}
.lets-talk-bg {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 45%;
    height: 70%;
    background: radial-gradient(ellipse at center, rgba(98, 68, 197, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.lets-talk-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(98, 68, 197, 0.12), transparent);
    pointer-events: none;
}
.lets-talk-header-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(98, 68, 197, 0.35);
    transition: transform var(--transition), box-shadow var(--transition);
}
.lets-talk-header:hover .lets-talk-header-icon {
    transform: scale(1.05);
    box-shadow: 0 12px 36px rgba(98, 68, 197, 0.4);
}
.lets-talk-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--dark);
}
.lets-talk-section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--primary);
}
.lets-talk-title-accent {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}
.lets-talk-intro {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
}
.lets-talk-detail {
    font-size: 0.9rem;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact row - two cards side by side */
.contact-row {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact info card (left) */
.contact-info-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(98, 68, 197, 0.06);
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}
.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}
.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.contact-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--dark);
}
.contact-card-role {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(98, 68, 197, 0.06);
}
.contact-item:last-of-type {
    border-bottom: none;
}
.contact-item-icon {
    color: var(--primary);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}
.contact-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition);
}
.contact-link:hover {
    color: var(--primary);
}
.contact-social-wrap {
    border-top: 1px solid rgba(98, 68, 197, 0.08);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.contact-social-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}
.contact-social-btn {
    transition: transform var(--transition), box-shadow var(--transition);
}
.contact-social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(98, 68, 197, 0.25);
}
.contact-social-whatsapp {
    background: #25d366 !important;
    border-color: #25d366 !important;
}
.contact-social-whatsapp:hover {
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}
.contact-item-icon-whatsapp {
    color: #25d366 !important;
}

/* Contact form card (right) */
.contact-form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(98, 68, 197, 0.06);
    position: relative;
    height: 100%;
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}
.contact-form-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}
.contact-form-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.contact-form-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.25rem;
}
.contact-form-subtitle {
    font-size: 0.9rem;
}
.contact-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.35rem;
}
.contact-input {
    border: 1px solid rgba(98, 68, 197, 0.12);
    border-radius: var(--radius);
    padding: 0.7rem 1rem;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(98, 68, 197, 0.15);
    outline: none;
}
.contact-input::placeholder {
    color: #9ca3af;
}
.contact-textarea {
    min-height: 110px;
    resize: vertical;
}
.contact-form .btn-send {
    min-width: 180px;
}
@media (max-width: 575.98px) {
    .contact-form .btn-send {
        width: 100%;
    }
}

/*** About (legacy) ***/
#about .years .display-1 {
    font-size: 10rem;
    line-height: 9rem;
}

#about .years h5 {
    letter-spacing: 30px;
    margin-right: -30px;
}


/*** Skills ***/
#skill .progress {
    height: 5px;
    border-radius: 5px;
}

#skill .progress .progress-bar {
    width: 0px;
    border-radius: 5px;
    transition: 3s;
}

#skill .nav-pills .nav-link {
    color: var(--dark);
}

#skill .nav-pills .nav-link.active {
    color: #FFFFFF;
}

#skill .tab-content hr {
    width: 30px;
}


/*** Service ***/
.service-item .bg-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/bg-icon.png) center center no-repeat;
    background-size: cover;
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-img {
    position: relative;
}

.portfolio-btn {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(98, 68, 197, .9);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 30px;
    padding-bottom: 100px !important;
    opacity: 0;
    transition: .5s;
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
    padding-bottom: 30px !important;
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    opacity: .7;
}

.team-item .team-text {
    position: absolute;
    left: 0;
    right: 60px;
    bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    right: 30px;
    opacity: 1;
}

.team-item .team-text div {
    transition: .5s;
}

.team-item:hover .team-text div {
    margin-left: 30px;
}


/*** Testimonial ***/
.testimonial-left,
.testimonial-right {
    position: relative;
}

.testimonial-left img,
.testimonial-right img {
    position: absolute;
    padding: 5px;
    border: 1px solid var(--secondary);
    border-radius: 70px;
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
    width: 70px;
    height: 70px;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
    width: 50px;
    height: 50px;
    bottom: 10%;
    right: 10%;
}

.testimonial-carousel .owl-item img {
    width: 120px;
    height: 120px;
}

.testimonial-carousel .testimonial-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border: 1px solid var(--secondary);
    border-radius: 60px;
}

.testimonial-carousel .owl-dots {
    height: 40px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    background: #FFFFFF;
    border: 2px solid var(--secondary);
    border-radius: 30px;
    transition: .5s;
}

.testimonial-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    top: 5px;
    left: 5px;
    border-radius: 16px;
    background: var(--secondary);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active::after {
    background: var(--primary);
}


/* ========== Mobile responsive ========== */
html {
    overflow-x: hidden;
}
body {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

@media (max-width: 991.98px) {
    .container,
    .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 100%;
    }
    .hero-section {
        padding-top: 6rem;
        padding-bottom: 2.5rem;
        min-height: auto;
    }
    .hero-section .hero-container {
        padding-top: 0;
        padding-bottom: 0;
        min-height: auto;
    }
    .hero-row {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 1.5rem;
    }
    .hero-text-col {
        order: 2;
        padding-top: 0.5rem;
    }
    .hero-profile-col {
        order: 1;
        padding-top: 0;
    }
    .hero-text-inner {
        max-width: none;
        text-align: center;
    }
    .hero-detail-label,
    .hero-tagline,
    .hero-desc,
    .hero-cta-text,
    .hero-trust-line {
        text-align: center;
    }
    .hero-desc,
    .hero-trust-line {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-accent-line {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-text-inner .d-flex {
        justify-content: center;
    }
    .hero-name {
        font-size: clamp(1.85rem, 8vw, 2.5rem);
        text-align: center;
    }
    .hero-greeting {
        text-align: center;
    }
    .hero-profile-block {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-profile-circle {
        width: 240px;
        height: 240px;
    }
    .hero-profile-footer {
        padding: 1rem 1.2rem;
        margin-top: 1rem;
    }
    .hero-profile-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    .hero-profile-meta {
        font-size: 0.75rem;
    }
    .about-me-section,
    .my-services-section,
    .solve-section,
    .lets-talk-section {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
    .about-me-title,
    .solve-title,
    .services-main-title {
        font-size: 1.75rem;
    }
    .about-me-stat-card,
    .about-me-pillar-card,
    .about-me-extra-card,
    .solve-card,
    .service-card-v2 {
        margin-bottom: 0;
    }
    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
    }
    .contact-row {
        max-width: 100%;
    }
    .lets-talk-header .btn {
        display: inline-block;
        width: auto;
    }
    .site-footer .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .site-footer .row {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    .site-footer .col-md-6.text-md-end {
        text-align: center !important;
    }
    .site-footer .col-md-6.text-md-start {
        text-align: center !important;
    }
    .back-to-top {
        right: 1rem;
        bottom: 5rem;
        width: 44px;
        height: 44px;
    }
    .navbar {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    .nav-brand-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .container,
    .container-fluid {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    .hero-section {
        padding-top: 5.5rem;
        padding-bottom: 2rem;
    }
    .hero-name {
        font-size: 1.75rem;
    }
    .hero-tagline {
        font-size: 1.05rem;
    }
    .hero-desc {
        font-size: 0.95rem;
    }
    .hero-profile-circle {
        width: 220px;
        height: 220px;
    }
    .hero-text-inner .d-flex .btn {
        width: 100%;
        justify-content: center;
    }
    .about-me-section,
    .my-services-section,
    .solve-section,
    .lets-talk-section {
        padding-top: 2.75rem;
        padding-bottom: 2.75rem;
    }
    .about-me-title,
    .solve-title,
    .services-main-title {
        font-size: 1.5rem;
    }
    .about-me-header-icon,
    .solve-header-icon,
    .services-header-icon,
    .lets-talk-header-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    .about-me-stat-card,
    .about-me-pillar-card,
    .about-me-intro-box {
        padding: 1.25rem;
    }
    .solve-card {
        padding: 1.25rem;
    }
    .service-card-v2 {
        padding: 1.25rem 1rem;
    }
    .how-i-work-v2 {
        padding: 1.25rem 1rem;
    }
    .engagement-v2-wrap {
        gap: 0.5rem;
    }
    .engagement-tag {
        font-size: 0.8rem;
        padding: 0.5rem 0.85rem;
    }
    .contact-info-card,
    .contact-form-card {
        padding: 1.25rem;
    }
    .contact-form .btn-send {
        width: 100%;
        min-width: 0;
    }
    .contact-name {
        font-size: 1.15rem;
    }
    .lets-talk-title {
        font-size: 1.5rem;
    }
    .site-footer {
        font-size: 0.85rem;
    }
    .site-footer .py-4 {
        padding-top: 1.25rem !important;
        padding-bottom: 1.25rem !important;
    }
    .back-to-top {
        right: 0.75rem;
        bottom: 4.5rem;
        width: 42px;
        height: 42px;
    }
}

/* Touch-friendly tap targets */
@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        padding: 12px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    .btn,
    .contact-social-btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* Prevent images and embeds from overflowing */
img,
iframe,
video {
    max-width: 100%;
    height: auto;
}
.hero-profile-img-wrap img,
.hero-photo-inner img {
    max-width: 100%;
}