/*==============================
 GOOGLE FONT
==============================*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Mono&display=swap');

/*==============================
 ROOT
==============================*/

:root {
    --bg: #efe9da;
    --bg-soft: #f7f3e8;
    --card: rgba(255, 252, 245, .82);
    --card-solid: #fcfaf3;
    --text: #16201c;
    --muted: #5d655f;
    --line: rgba(34, 44, 39, .12);
    --brand: #215a55;
    --brand-dark: #163c39;
    --accent: #c57b34;
    --shadow: 0 20px 60px rgba(20, 28, 24, .08);
    --shadow-lg: 0 30px 80px rgba(20, 28, 24, .15);
    --radius: 20px;
    --maxw: 1180px;
}


/*==============================
 RESET
==============================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: var(--maxw);
    margin: auto;
}

.section {
    padding: 30px 0;
}


/*==============================
 SCROLLBAR
==============================*/

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: var(--brand);
    border-radius: 50px;
}

::-webkit-scrollbar-track {
    background: #eee;
}


/*==============================
 BLUR
==============================*/

.blur {
    position: fixed;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -2;
}

.blur1 {
    background: #d5ebe3;
    top: -120px;
    left: -120px;
}

.blur2 {
    background: #f1dcc0;
    bottom: -120px;
    right: -120px;
}


/*==============================
 CURSOR
==============================*/

.cursor {
    position: fixed;
    width: 14px;
    height: 14px;
    background: var(--brand);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 99999;
}

.cursor2 {
    position: fixed;
    width: 42px;
    height: 42px;
    border: 2px solid var(--brand);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: .12s;
    z-index: 99998;
}


/*==============================
 HEADER
==============================*/

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, .25);
    border-bottom: 1px solid var(--line);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.logo {
    font-size: 34px;
    font-weight: 800;
    color: var(--brand);
}

.logo span {
    color: var(--accent);
}

nav ul {
    display: flex;
    gap: 45px;
}

nav ul li a {
    font-weight: 500;
    color: var(--muted);
    transition: .35s;
}

nav ul li a:hover {
    color: var(--brand);
}

.resume-btn {
    background: var(--brand);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    transition: .4s;
}

.resume-btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.menu {
    display: none;
    font-size: 30px;
    cursor: pointer;
}


/*==============================
 HERO
==============================*/

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 50px;
    margin-top: 50px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--card);
    padding: 12px 18px;
    border-radius: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 25px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #19b95d;
}

.hero h3 {
    font-size: 25px;
    color: var(--muted);
}

.hero h1 {
    font-size: 72px;
    line-height: 1.05;
    margin: 15px 0;
    color: var(--brand-dark);
}

.hero h2 {
    color: var(--accent);
    font-size: 30px;
    margin-bottom: 25px;
    height: 45px;
}

.hero p {
    font-size: 18px;
    color: var(--muted);
    max-width: 580px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn {
    padding: 16px 34px;
    border-radius: 50px;
    background: var(--brand);
    color: #fff;
    font-weight: 600;
    transition: .4s;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.btn.outline {
    background: transparent;
    border: 2px solid var(--brand);
    color: var(--brand);
}

.btn.outline:hover {
    background: var(--brand);
    color: #fff;
}

.hero-info {
    display: flex;
    gap: 60px;
    margin-top: 55px;
}

.hero-info h4 {
    font-size: 36px;
    color: var(--brand);
}

.hero-info span {
    color: var(--muted);
}


/*==============================
 HERO IMAGE
==============================*/

.hero-card {
    position: relative;
    width: 480px;
    height: 560px;
    margin: auto;
    border-radius: 35px;
    background: var(--card);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .6);
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circle {
    position: absolute;
    border-radius: 50%;
    opacity: .25;
    animation: float 8s infinite ease-in-out;
}

.one {
    width: 160px;
    height: 160px;
    background: #215a55;
    top: -40px;
    right: -40px;
}

.two {
    width: 120px;
    height: 120px;
    background: #c57b34;
    left: -30px;
    bottom: 60px;
}

.three {
    width: 80px;
    height: 80px;
    background: #215a55;
    right: 80px;
    bottom: -20px;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-25px);
    }
    100% {
        transform: translateY(0);
    }
}


/*==============================
 SECTION TITLE
==============================*/

.section-title {
    text-align: center;
    margin-bottom: 20px;
}

.section-title span {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: 38px;
    margin-top: 15px;
    color: var(--brand-dark);
}


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

.about-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.about-content h3 {
    font-size: 25px;
    line-height: 1.3;
    color: var(--brand-dark);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--muted);
    font-size: 17px;
    margin-bottom: 35px;
}

.about-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.box {
    background: var(--card);
    padding: 20px 20px;
    border-radius: 20px;
    transition: .4s;
    border: 1px solid rgba(255, 255, 255, .5);
    box-shadow: var(--shadow);
    text-align: center;
}

.box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.box i {
    font-size: 40px;
    margin-bottom: 18px;
}

.box h4 {
    margin-bottom: 8px;
    font-size: 22px;
}

.box p {
    margin: 0;
    font-size: 15px;
}

.experience-card {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    background: rgba(255, 255, 255, .65);
    backdrop-filter: blur(18px);
    padding: 45px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.experience-left {
    display: flex;
    gap: 30px;
}

.company-logo {
    width: 130px;
    height: 130px;
    min-width: 130px;
    min-height: 130px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .08);
}

.company-logo img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.company-details h3 {
    font-size: 25px;
    margin-bottom: 10px;
}

.designation {
    color: #215a55;
    font-weight: 700;
    font-size: 18px;
}

.exp-info {
    display: flex;
    gap: 30px;
    margin: 20px 0;
    color: #666;
}

.company-details p {
    color: #555;
    line-height: 1.8;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.tech-stack span {
    background: #dfe8d8;
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
}

.experience-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.exp-stat {
    background: #215a55;
    color: white;
    border-radius: 20px;
    text-align: center;
    padding: 30px 20px;
}

.exp-stat h2 {
    font-size: 40px;
}


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

@media (max-width: 991px) {
    .experience-card {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 35px 25px;
    }
    .experience-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .company-logo {
        width: 110px;
        height: 110px;
        min-width: 110px;
        min-height: 110px;
    }
    .company-details h3 {
        font-size: 25px;
    }
    .designation {
        display: block;
        margin-top: 8px;
    }
    .exp-info {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px 20px;
    }
    .tech-stack {
        justify-content: center;
    }
    .experience-right {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .experience-card {
        padding: 25px 20px;
        border-radius: 22px;
    }
    .company-logo {
        width: 90px;
        height: 90px;
        min-width: 90px;
        min-height: 90px;
        border-radius: 18px;
    }
    .company-logo img {
        width: 75%;
        height: 75%;
    }
    .company-details h3 {
        font-size: 25px;
        line-height: 1.3;
    }
    .designation {
        font-size: 16px;
    }
    .exp-info {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin: 18px 0;
    }
    .company-details p {
        font-size: 15px;
        text-align: center;
    }
    .tech-stack {
        gap: 10px;
    }
    .tech-stack span {
        font-size: 12px;
        padding: 8px 14px;
    }
    .experience-right {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .exp-stat {
        padding: 20px 15px;
    }
    .exp-stat h2 {
        font-size: 28px;
    }
    .exp-stat p {
        font-size: 13px;
    }
}

.review-card {
    background: linear-gradient(135deg, #215a55, #163c39);
    color: white;
    padding: 50px;
    border-radius: 30px;
    position: relative;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.review-header img {
    width: 70px;
    background: white;
    border-radius: 15px;
    padding: 10px;
}

.review-card p {
    font-size: 14px;
    line-height: 1.8;
    color: #f2f2f2;
}

.review-stars {
    margin-top: 25px;
    font-size: 28px;
    color: #FFD54F;
}

.highlight-name {
    background: linear-gradient(135deg, #ff0000, #ff0000);
    color: #fff;
    padding: 4px 10px;
    border-radius: 8px;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(13, 0, 255, 0.25);
}


/*======================================
SKILLS
======================================*/

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.skill-card {
    background: var(--card);
    border-radius: 25px;
    padding: 20px 20px;
    text-align: center;
    transition: .45s;
    box-shadow: var(--shadow);
}

.skill-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: var(--shadow-lg);
}

.skill-card i {
    font-size: 40px;
    margin-bottom: 10px;
}

.skill-card h4 {
    font-size: 18px;
}

.skill-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.laravel {
    color: #FF2D20;
}

.livewire {
    color: #FB70A9;
}

.wordpress {
    color: #21759B;
}

.elementor {
    color: #92003B;
}

.html {
    color: #E34F26;
}

.css {
    color: #1572B6;
}

.javascript {
    color: #F7DF1E;
}

.bootstrap {
    color: #7952B3;
}

.mysql {
    color: #4479A1;
}

.php {
    color: #777BB4;
}

.react {
    color: #61DAFB;
}

.java {
    color: #ED8B00;
}

.testing {
    color: #FF9800;
}

.canva {
    color: #00C4CC;
}

.livewire {
    color: #FB70A9;
}

.woocommerce {
    color: #96588A;
}


/*======================================
TECH STACK
======================================*/

.tech-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.tech-list span {
    background: var(--card);
    padding: 15px 28px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    transition: .4s;
    cursor: pointer;
    font-weight: 600;
}

.tech-list span:hover {
    background: var(--brand);
    color: white;
    transform: translateY(-6px);
}


/*======================================
COUNTER
======================================*/

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.counter-box {
    background: linear-gradient(145deg, #ffffff, #f6f2e8);
    border-radius: 25px;
    text-align: center;
    padding: 20px 20px;
    box-shadow: var(--shadow);
    transition: .4s;
}

.counter-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.counter-box h2 {
    font-size: 40px;
    color: var(--brand);
    margin-bottom: 10px;
}

.counter-box p {
    color: var(--muted);
    font-size: 18px;
}


/*======================================
PROJECTS
======================================*/

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
}

.project-card {
    background: var(--card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 28px;
    padding: 35px;
    transition: .45s;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.project-card::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(197, 123, 52, .08);
    border-radius: 50%;
    top: -120px;
    right: -120px;
    transition: .5s;
}

.project-card:hover::before {
    transform: scale(1.4);
}

.project-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.project-icon {
    width: 80px;
    height: 80px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 34px;
    margin-bottom: 25px;
}

.project-card h3 {
    font-size: 25px;
    margin-bottom: 15px;
    color: var(--brand-dark);
}

.project-card p {
    color: var(--muted);
    margin-bottom: 25px;
    line-height: 1.8;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.project-tags span {
    background: #dfe8d8;
    color: var(--brand-dark);
    padding: 10px 18px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
}


/*======================================
EDUCATION
======================================*/

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.edu-card {
    background: var(--card);
    text-align: center;
    padding: 20px 20px;
    border-radius: 25px;
    transition: .4s;
    box-shadow: var(--shadow);
}

.edu-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.edu-card i {
    font-size: 45px;
    color: var(--brand);
    margin-bottom: 10px;
}

.edu-card h3 {
    font-size: 25px;
    margin-bottom: 6px;
}

.edu-card h4 {
    color: var(--accent);
    font-size: 28px;
    margin-bottom: 6px;
}

.edu-card p {
    color: var(--muted);
}


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

.contact-card {
    max-width: 900px;
    margin: auto;
    background: var(--card);
    border-radius: 30px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.contact-card h3 {
    font-size: 25px;
    color: var(--brand-dark);
}

.contact-card p {
    color: var(--muted);
    margin: 10px 0 10px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.contact-list div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 18px;
}

.contact-list i {
    color: var(--brand);
    font-size: 24px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: .35s;
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-6px);
}


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

footer {
    padding: 10px 0;
    text-align: center;
}

footer h3 {
    font-size: 30px;
    color: var(--brand);
    margin-bottom: 10px;
}

footer p {
    color: var(--muted);
}

.copy {
    margin-top: 20px;
    font-size: 14px;
}


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

@media(max-width:1100px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-info {
        justify-content: center;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-dot {
        left: 20px;
    }
    .timeline-card {
        width: calc(100% - 60px);
        margin-left: 60px!important;
    }
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {
    nav {
        display: none;
    }
    .menu {
        display: block;
    }
    .hero h1 {
        font-size: 48px;
    }
    .hero h2 {
        font-size: 22px;
    }
    .hero-card {
        width: 100%;
        height: 450px;
    }
    .hero-info {
        flex-direction: column;
        gap: 25px;
    }
    .about-boxes {
        grid-template-columns: 1fr;
    }
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .education-grid {
        grid-template-columns: 1fr;
    }
    .counter-grid {
        grid-template-columns: 1fr;
    }
    .contact-card {
        padding: 35px 25px;
    }
    .section-title h2 {
        font-size: 34px;
    }
}

@media(max-width:500px) {
    .container {
        width: 92%;
    }
    .hero {
        padding-top: 60px;
    }
    .hero h1 {
        font-size: 40px;
    }
    .hero p {
        font-size: 16px;
    }
    .btn {
        width: 100%;
        text-align: center;
    }
    .hero-btns {
        flex-direction: column;
    }
    .skills-grid {
        grid-template-columns: 1fr;
    }
    .contact-list div {
        flex-direction: column;
        gap: 5px;
    }
}

.lottie-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lottie-wrapper dotlottie-wc {
    width: 100%;
    max-width: 450px;
    height: 500px;
}


/* Tablet */

@media (max-width:768px) {
    .lottie-wrapper dotlottie-wc {
        max-width: 350px;
        height: 400px;
    }
}


/* Mobile */

@media (max-width:576px) {
    .lottie-wrapper dotlottie-wc {
        max-width: 280px;
        height: 300px;
    }
}

.footer-lottie {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

.footer-lottie dotlottie-wc {
    width: 100%;
    max-width: 600px;
    height: 160px;
}


/* Tablet */

@media (max-width:768px) {
    .footer-lottie dotlottie-wc {
        max-width: 450px;
        height: 140px;
    }
}


/* Mobile */

@media (max-width:576px) {
    .footer-lottie dotlottie-wc {
        max-width: 300px;
        height: 130px;
    }
}

.experience-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.achievement-card {
    grid-column: 1 / -1;
    background: linear-gradient( 135deg, var(--brand), var(--brand-dark));
    color: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

.achievement-card h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    margin-bottom: 15px;
}

.achievement-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.achievement-card li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.achievement-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FFD54F;
    font-weight: 700;
}

.why-wrapper {
    display: grid;
    grid-template-columns: 404px 1fr;
    gap: 28px;
    align-items: start;
}

.why-highlight {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: #fff;
    padding: 28px;
    border-radius: 30px;
    position: sticky;
    top: 100px;
}

.highlight-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.highlight-icon i {
    font-size: 40px;
}

.why-highlight h3 {
    margin-bottom: 15px;
    font-size: 25px;
}

.why-highlight p {
    line-height: 1.8;
    opacity: .9;
}

.mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.mini-stats div {
    text-align: center;
    background: rgba(255, 255, 255, .1);
    padding: 15px;
    border-radius: 15px;
}

.mini-stats h4 {
    font-size: 20px;
}

.why-points {
    display: grid;
    gap: 18px;
}

.why-item {
    background: #fff;
    padding: 10px 22px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    border: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
    transition: .3s;
}

.why-item:hover {
    transform: translateX(10px);
}

.why-item i {
    font-size: 24px;
    color: var(--brand);
}

.why-item span {
    font-weight: 600;
}

@media(max-width:991px) {
    .why-wrapper {
        grid-template-columns: 1fr;
    }
    .why-highlight {
        position: relative;
        top: auto;
    }
}

.mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.mini-stats div {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    padding: 18px 12px;
    border-radius: 15px;
    text-align: center;
}

.mini-stats i {
    display: block;
    font-size: 28px;
    margin-bottom: 10px;
}

.mini-stats span {
    font-size: 14px;
    font-weight: 600;
}

.fa-layer-group {
    color: #2563eb;
}

.fa-wordpress {
    color: #21759b;
}

.fa-database {
    color: #4479a1;
}

.fa-cloud-arrow-up {
    color: #16a34a;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(77, 113, 80, 0.12);
    color: var(--success);
    border: 1px solid rgba(77, 113, 80, 0.25);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(77, 113, 80, 0.08);
}

.hero-badge::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 12px #22c55e;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.4);
        opacity: .6;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}