@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');
:root {
    /* Global Brand Colors */
    --primary-color: #229D78;
    --secondary-color: #1B337B;
    --accent-color: #F8B430;

    /* Portfolio Specific */
    --portfolio-primary: #1B337B;
    --portfolio-primary-light: #2546a3;
    --portfolio-accent: #db2461;
    --portfolio-accent-hover: #b91d4f;
    --portfolio-text-dark: #0f172a;
    --portfolio-text-muted: #1a1b1d;
    --portfolio-bg-light: #f8fafc;
    --portfolio-glass-bg: rgba(255, 255, 255, 0.7);
    --portfolio-glass-border: rgba(255, 255, 255, 0.3);
    --portfolio-card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    --portfolio-card-hover-shadow: 0 20px 40px -15px rgba(27, 51, 123, 0.15);
    --portfolio-radius-lg: 24px;
    --portfolio-radius-md: 16px;
    --portfolio-transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    /* Aurora Blobs (RGBA) */
    --p-aurora-1: rgba(27, 51, 123, 0.08);
    --p-aurora-2: rgba(219, 36, 97, 0.05);
    --p-aurora-3: rgba(34, 157, 120, 0.05);

    /* Typography */
    --font-body: "Figtree", sans-serif;
    --font-heading: "Figtree", sans-serif;
    --font-premium: "Figtree", sans-serif;
    --section-padding: 100px 0;
}

/* --- Section Padding Utility --- */
.section-padding {
    padding: 100px 0;
}

/* --- Global Premium Button --- */
.btn-premium-global {
    background: var(--secondary-color) !important;
    color: #fff !important;
    padding: 14px 35px;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

.btn-premium-global::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--primary-color) !important;
    z-index: -1;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 100px;
}

.btn-premium-global:hover {
    color: #fff !important;
    box-shadow: 0 15px 35px rgba(34, 157, 120, 0.25);
    transform: translateY(-3px);
}

.btn-premium-global:hover::before {
    width: 100%;
}

.btn-premium-global i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-premium-global:hover i {
    transform: translateX(3px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: #fff;
    color: #333;
}


h1,
h2 {
    font-family: "Rajdhani", sans-serif !important;
}

h3,
h4,
h5,
h6 {
    font-family: "Figtree", sans-serif;
}

.hero-sup-title,
.btn-aurora span,
.nav-cat-text {
    font-family: "Figtree", sans-serif !important;
}

/* --- Modern Navbar --- */
.navbar {
    background-color: transparent !important;
    border-bottom: none !important;
    position: fixed;
    top: 35px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1050;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 15px !important;
}

.navbar.scrolled {
    top: 0;
    background: transparent !important;
}

.navbar.scrolled .top-bar-announcement {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -80px);
}

.navbar-container-pill {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 100px;
    padding: 10px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled .navbar-container-pill {
    /* max-width: 1100px; */
    padding: 8px 30px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1199.98px) and (min-width: 992px) {
    .nav-cat-text {
        padding: 8px 12px !important;
        font-size: 13px !important;
    }

    .navbar-container-pill {
        padding: 8px 25px !important;
    }

    .btn-premium-global {
        padding: 10px 24px !important;
        font-size: 13px !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }
}

.nav-cat-text {
    color: #131313 !important;
    font-size: 15px;
    font-weight: 700;
    padding: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 50px;
    position: relative;
    display: inline-block;
}

.nav-cat-text:hover {
    color: var(--primary-color) !important;
    background: rgba(34, 157, 120, 0.08);
    transform: translateY(-2px);
}

.nav-cat-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
    opacity: 0;
}

.nav-cat-text:hover::after {
    width: 15px;
    opacity: 1;
}

.btn-start-project {
    background: #131728;
    color: #FFF !important;
    border-radius: 100px;
    padding: 8px 18px;
    font-family: var(--font-heading) !important;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    text-decoration: none;
}

.btn-start-project .icon-circle {
    background: #FFF;
    color: #131728;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

/* --- Hero Aurora Section --- */
.hero-aurora-section {
    position: relative;
    padding: 180px 0 120px;
    overflow: hidden;
    background: #ffffff;
}

.aurora-bg {
    background-image: url('../images/home/banner-bg2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.blob {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.2;
    animation: blobFloat 25s infinite alternate;
}

.blob-1 {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    top: -200px;
    right: -100px;
}

.blob-2 {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    bottom: -300px;
    left: -100px;
    animation-delay: -7s;
}

.blob-3 {
    background: var(--primary-color);
    top: 30%;
    left: 15%;
    width: 400px;
    height: 400px;
    animation-delay: -12s;
    opacity: 0.1;
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    100% {
        transform: translate(150px, 80px) scale(1.3) rotate(30deg);
    }
}

.hero-aurora-content {
    position: relative;
    z-index: 5;
}

.hero-sup-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 35px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(34, 157, 120, 0.08);
    padding: 10px 25px;
    border-radius: 100px;
    border: 1px solid rgba(34, 157, 120, 0.2);
    backdrop-filter: blur(5px);
}

.hero-aurora-title {
    font-size: 5.0rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 40px;
}

.hero-aurora-title .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.reveal-text {
    overflow: hidden;
    display: block;
    /* height: 1.15em; */
    margin-bottom: -0.15em;
}

.reveal-text span {
    display: block;
    transform: translateY(100%);
    animation: cleanReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes cleanReveal {
    to {
        transform: translateY(0);
    }
}

.line-1 span {
    animation-delay: 0.1s;
}

.line-2 span {
    animation-delay: 0.3s;
}

.line-3 span {
    animation-delay: 0.5s;
}

.hero-aurora-desc {
    font-size: 1.2rem;
    color: #1c1818;
    max-width: 550px;
    line-height: 1.6;
    margin-bottom: 45px;
}

.btn-aurora {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 20px 50px;
    background: #0f172a;
    color: #fff;
    border-radius: 100px;
    text-decoration: none !important;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 1;
}

.btn-aurora span {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-aurora::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.btn-aurora:hover {
    transform: translateY(-5px);
    color: #fff;
    box-shadow: 0 20px 40px rgba(34, 157, 120, 0.3);
}

.btn-aurora:hover::before {
    opacity: 1;
}

.btn-aurora .btn-icon {
    transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.btn-aurora:hover .btn-icon {
    transform: translateX(10px);
}

/* --- Visual Area --- */
.hero-aurora-visual {
    position: relative;
    z-index: 5;
}




.hero-aurora-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.floating-badge-modern {
    position: absolute;
    background: #fff;
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    font-weight: 700;
}

.badge-1 {
    top: 20%;
    left: -20px;
    animation: floatHero 5s infinite ease-in-out;
}

.badge-2 {
    bottom: 10%;
    right: -20px;
    animation: floatHero 6s infinite reverse ease-in-out;
}

@keyframes floatHero {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}


/* --- Mega Menu Design --- */
.mega-menu {
    width: 1200px;
    background: #fff;
    border-radius: 30px !important;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15) !important;
    overflow: hidden;
    padding: 0 !important;
    display: none;
    opacity: 0;
    transform: translateX(-25%) translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mega-menu-box:hover .mega-menu {
    display: block;
    opacity: 1;
    transform: translateX(-25%) translateY(0);
}

.mega-menu-container {
    height: 670px;
}

.mega-menu-sidebar {
    background: #fff;
    border-right: 1px solid #f1f5f9;
    padding: 20px 0;
}

.mega-tabs li {
    padding: 15px 35px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: #0e0f10;
    border-left: 3px solid transparent;
}

.mega-tabs li:hover {
    background: #f8fafc;
    color: var(--secondary-color);
}

.mega-tabs li.active {
    background: #f1f5f9;
    color: var(--primary-color);
    font-weight: 700;
    border-left-color: var(--primary-color);
}

.mega-tabs li i {
    font-size: 10px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.mega-tabs li:hover i,
.mega-tabs li.active i {
    opacity: 0.5;
    transform: translateX(0);
}

.mega-menu-content {
    background: #fff;
    overflow-y: auto;
}

/* Modern Product Card inside Mega Menu */
.product-card-modern {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    animation: fadeInUpContent 0.5s ease backwards;
}

@keyframes fadeInUpContent {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.product-card-modern .card-img {
    border-radius: 15px;
    overflow: hidden;
    padding: 10px;
}

.product-card-modern .card-img img {
    transition: transform 0.6s ease;
}

.product-card-modern:hover .card-img img {
    transform: scale(1.1);
}

.product-card-modern .card-body-modern {
    padding: 15px;
    padding-top: 5px;
}

.product-card-modern h6 {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: #1e293b;
    margin-bottom: 0;
}

.product-card-modern .price {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 18px;
    color: #1e293b;
}

.product-card-modern .view-btn {
    background: #1e293b;
    color: #fff;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: -20px;
}

.product-card-modern .view-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

/* --- Category Section Styles --- */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #f1f5f9;
    margin-top: 50px;
}

.category-card {
    background: #fff;
    border-radius: 0;
    padding: 45px 35px;
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--secondary-color);
    z-index: -1;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 0;
}

.category-card:hover {
    transform: translateY(-15px);
    border-color: var(--secondary-color);
}

.category-card:hover::before {
    height: 100%;
}

.category-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #f8fafc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.category-card:hover .category-icon-wrapper {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(10deg);
}

.category-icon-wrapper img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: all 0.4s ease;
}

.category-card:hover .category-icon-wrapper img {
    filter: brightness(0) invert(1);
}

.category-card h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    transition: all 0.4s ease;
}

.category-card:hover h3 {
    color: #fff;
}

.category-card p {
    font-size: 14px;
    color: #0e0f10;
    margin-bottom: 0;
    transition: all 0.4s ease;
}

.category-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

.category-card-number {
    position: absolute;
    top: -15px;
    right: -10px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 80px;
    color: #f1f5f9;
    z-index: -1;
    opacity: 0.5;
    transition: all 0.4s ease;
}

.category-card:hover .category-card-number {
    color: rgba(255, 255, 255, 0.05);
    transform: scale(1.1);
}

.btn-explore-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Scroll Reveal Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-up.active.stagger-1 {
    transition-delay: 0.2s;
}

.reveal-up.active.stagger-2 {
    transition-delay: 0.4s;
}

.reveal-up.active.stagger-3 {
    transition-delay: 0.6s;
}

/* --- Global Section Spacing --- */
.section-padding {
    padding: var(--section-padding);
}

/* --- Premium Heading Animations --- */
.heading-reveal-wrapper {
    overflow: hidden;
    margin-bottom: 10px;
}

.heading-reveal-text {
    display: block;
    transform: translateY(105%);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active .heading-reveal-text {
    transform: translateY(0);
}

.section-tag {
    color: var(--primary-color);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.8s ease;
}

.reveal-up.active .section-tag {
    opacity: 1;
    transform: translateX(0);
}

.section-tag .tag-line {
    width: 50px;
    height: 2px;
    background: var(--primary-color);
    display: inline-block;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.reveal-up.active .section-tag .tag-line {
    transform: scaleX(1);
}

.home-page-heading {
    /* font-family: var(--font-heading) !important; */
    font-weight: 800;
    font-size: 56px;
    color: var(--secondary-color);
    line-height: 1.1;
    margin: 0;
    position: relative;
    display: block;
}

.heading-reveal-wrapper {
    overflow: hidden;
    position: relative;
    display: block;
}

.heading-reveal-text {
    transform: translateY(110%);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
    will-change: transform;
}

.reveal-up.active .heading-reveal-text {
    transform: translateY(0);
}

@media (max-width: 991px) {
    .home-page-heading {
        font-size: 42px;
    }
}


.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

.stagger-6 {
    transition-delay: 0.6s;
}

.stagger-7 {
    transition-delay: 0.7s;
}

.stagger-8 {
    transition-delay: 0.8s;
}

/* --- New CTA & Stats Modern --- */
.cta-stats-modern {
    background: transparent;
    position: relative;
    padding: 100px 0;
}

.cta-stats-inner-box {
    background: #0d121f;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    /* box-shadow: 0 50px 100px rgba(0,0,0,0.3); */
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-image: url('../images/home/cta-bg.jpeg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.cta-aurora-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    filter: blur(100px);
    opacity: 0.15;
    border-radius: 50%;
}

.cta-blob-1 {
    background: var(--primary-color);
    top: -150px;
    right: -50px;
}

.cta-blob-2 {
    background: var(--secondary-color);
    bottom: -150px;
    left: -50px;
}

.stats-glass-container {
    margin-top: 40px;
}

.stat-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 25px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    position: relative;
    z-index: 2;
}

.stat-glass-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-8px);
    border-color: var(--primary-color);
}

.stat-icon-circle {
    width: 55px;
    height: 55px;
    background: rgba(34, 157, 120, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
}

.stat-info h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 3px;
    line-height: 1;
    font-family: var(--font-heading);
}

.stat-info p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin: 0;
    font-weight: 500;
}

.btn-lg-modern {
    padding: 18px 40px !important;
    font-size: 17px !important;
}

@media (max-width: 991px) {
    .cta-stats-modern {
        padding: 60px 0;
    }

    .cta-stats-inner-box {
        border-radius: 30px;
    }

    .stat-glass-card {
        padding: 25px 15px;
    }

    .stat-info h3 {
        font-size: 24px;
    }
}



.stat-label {
    display: block;
    color: #94a3b8;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.avatar-stack-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding-right: 40px;
}

.avatar-stack-premium {
    display: flex;
}

.avatar-stack-premium img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid #0d121f;
    margin-left: -15px;
    transition: all 0.3s ease;
}

.avatar-stack-premium img:first-child {
    margin-left: 0;
}

.avatar-info h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 26px;
    color: #fff;
    margin: 0;
}

.avatar-info p {
    color: #0e0f10;
    margin: 0;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
}

/* --- About Section Premium --- */
.about-section-premium {
    padding: 120px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.about-image-wrapper {
    position: relative;
    padding: 30px;
}

.about-image-main {
    position: relative;
    z-index: 2;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.15);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-main:hover {
    transform: translateY(-15px) rotate(2deg);
}

.about-image-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.about-image-main:hover img {
    transform: scale(1.05);
}

.about-shape-1 {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.1;
    animation: rotateShape 10s linear infinite;
}

.about-shape-2 {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border: 15px solid rgba(248, 180, 48, 0.1);
    border-radius: 50%;
    z-index: 1;
}

@keyframes rotateShape {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.about-experience-badge {
    position: absolute;
    bottom: 50px;
    left: -20px;
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.about-experience-badge .num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 36px;
    color: var(--primary-color);
    line-height: 1;
}

.about-experience-badge .txt {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    line-height: 1.2;
}

.about-content-wrapper {
    padding-left: 50px;
}

.about-content-wrapper .section-tag {
    margin-bottom: 25px;
}

.about-description-1 {
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--secondary-color);
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 25px;
}

.about-description-2 {
    font-family: var(--font-body);
    font-size: 16px;
    color: #0e0f10;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* --- Service Section Premium --- */
.service-section-premium {
    padding: 120px 0;
    background: #f8fafc;
    position: relative;
}

.service-tabs-wrapper {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-tab-item {
    background: #fff;
    padding: 25px 35px;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #e2e8f0;
    width: 180px;
    position: relative;
    overflow: hidden;
}

.service-tab-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

.service-tab-item.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(13, 18, 31, 0.15);
    border-radius: 20px;
}

.service-tab-item .icon-box {
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.service-tab-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: all 0.4s ease;
}

.service-tab-item.active img {
    filter: brightness(0) invert(1);
}

.service-tab-item span {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.service-tab-item.active span {
    color: #fff;
}

.service-content-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* .service-content-box {
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.05);
    display: none;
    border: 1px solid #f1f5f9;
    background-image: url('../images/home/service-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
} */

.service-content-box {
    /* background: #fff; */
    border-radius: 20px;
    padding: 50px;
    /* box-shadow: 0 40px 100px rgba(0,0,0,0.05); */
    display: none;
    border: 1px solid #81b9f0;
    background-image: url('../images/home/service-bg.jpg');
    background-size: cover;
    background-position: right bottom;
    background-repeat: no-repeat;
}

.service-content-box.active {
    display: block;
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-content-box h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.service-content-box p {
    font-family: var(--font-body);
    font-size: 16px;
    color: #0e0f10;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-content-box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.service-content-box ul li {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--secondary-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-content-box ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    font-size: 18px;
}

.service-content-box .img-area {
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    width: fit-content;
}

@media (max-width: 767px) {
    .service-content-box {
        padding: 30px;
    }

    .service-content-box ul {
        grid-template-columns: 1fr;
    }
    .service-content-box .img-area{
        margin: 15px auto;
    }
}

/* Fix About Image Height */
.about-image-main {
    position: relative;
    z-index: 2;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.15);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    height: 500px;
    /* Fixed height to fix 'height me kam' issue */
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* This will make it look portrait even if original is wide */
    display: block;
    transition: transform 0.8s ease;
}

/* --- Service Grid Premium (Alternative Design) --- */
.service-grid-premium {
    padding: 120px 0;
    background: #fff;
    position: relative;
}

.service-card-modern {
    background: #fff;
    border-radius: 30px;
    padding: 45px 35px;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--secondary-color);
    z-index: -1;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-modern:hover {
    transform: translateY(-15px);
    border-color: var(--secondary-color);
}

.service-card-modern:hover::before {
    height: 100%;
}

.service-card-modern .icon-wrapper {
    width: 70px;
    height: 70px;
    background: #f8fafc;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.service-card-modern:hover .icon-wrapper {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(10deg);
}

.service-card-modern .icon-wrapper img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    transition: all 0.4s ease;
}

.service-card-modern:hover .icon-wrapper img {
    filter: brightness(0) invert(1);
}

.service-card-modern h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.service-card-modern:hover h4 {
    color: #fff;
}

.service-card-modern p {
    font-family: var(--font-body);
    font-size: 15px;
    color: #0e0f10;
    line-height: 1.7;
    margin-bottom: 0;
    transition: all 0.4s ease;
}

.service-card-modern:hover p {
    color: rgba(255, 255, 255, 0.8);
}

/* --- Split Video & Branding Showcase --- */
.industry-video-box {
    position: relative;
    padding-bottom: 40px;
}

.video-mockup-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.video-frame-outer {
    background: #111;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.video-mockup-stand {
    width: 120px;
    height: 40px;
    background: linear-gradient(to bottom, #222, #000);
    margin: -5px auto 0;
    border-radius: 0 0 10px 10px;
    position: relative;
    z-index: 1;
}

.video-mockup-stand::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 15px;
    background: #000;
    border-radius: 50px;
    opacity: 0.8;
}

.premium-video-frame {
    width: 100%;
    height: 500px;
    background: #000;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.premium-video-frame iframe,
.premium-video-frame video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.8;
}

.video-overlay-text {
    position: absolute;
    bottom: 50px;
    left: 20px;
    color: #fff;
    z-index: 5;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 0 20px 20px 0;
    border-left: 4px solid var(--primary-color);
}

.video-overlay-text h3 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    font-family: var(--font-heading);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.industry-tabs-compact {
    margin-bottom: 30px;
}

.industry-filter-list-compact {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 6px;
    background: #f1f5f9;
    border-radius: 100px;
    flex-wrap: wrap;
    width: fit-content;
}

.industry-filter-list-compact li {
    padding: 8px 20px;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    color: #191c21;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-transform: uppercase;
}

.industry-filter-list-compact li:hover {
    color: var(--primary-color);
}

.industry-filter-list-compact li.active {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 10px 20px rgba(34, 157, 120, 0.2);
}

.logo-category-grid-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.category-logo-card-compact {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    height: 140px;
}

.category-logo-card-compact:hover {
    background: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px);
}

.category-logo-card-compact img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    /* filter: grayscale(1) opacity(0.5); */
    transition: all 0.4s ease;
}

.category-logo-card-compact:hover img {
    filter: grayscale(0) opacity(1);
}

.industry-grid {
    display: none;
}

.industry-grid.active {
    display: block;
    animation: industryGridFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes industryGridFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .industry-video-box {
        margin-bottom: 50px;
    }

    .premium-video-frame {
        height: 350px;
    }
}

.service-card-modern .arrow-btn {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: absolute;
    bottom: -50px;
    right: 35px;
    transition: all 0.4s ease;
    opacity: 0;
    text-decoration: none;
}

.service-card-modern:hover .arrow-btn {
    bottom: 35px;
    opacity: 1;
}

.service-card-number {
    position: absolute;
    top: -20px;
    right: -10px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 100px;
    color: #f1f5f9;
    z-index: -1;
    opacity: 0.5;
    transition: all 0.4s ease;
}

.service-card-modern:hover .service-card-number {
    color: rgba(255, 255, 255, 0.05);
    transform: scale(1.1);
}

/* --- Remove extra white space above case studies --- */
.industry-logo-section.section-padding {
    padding-bottom: 60px;
}

/* --- Case Studies Drag Slider --- */
.cs-section {
    position: relative;
    background: #0d121f;
    padding: 100px 0 120px;
    overflow: hidden;
}

.cs-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 18vw;
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    letter-spacing: -0.5vw;
}

.cs-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.cs-title {
    color: #fff !important;
    font-size: 56px;
    margin-top: 10px;
    margin-bottom: 0;
}

.cs-nav-buttons {
    display: flex;
    gap: 15px;
}

.cs-nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-nav-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(34, 157, 120, 0.3);
}

.cs-nav-btn:active {
    transform: scale(0.95);
}

/* Slider Viewport */
.cs-slider-viewport {
    overflow: hidden;
    cursor: grab;
    position: relative;
    z-index: 2;
    padding: 0 0 0 calc((100vw - 1140px) / 2);
    /* align with container */
}

.cs-slider-viewport:active {
    cursor: grabbing;
}

.cs-slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    user-select: none;
    padding-right: 60px;
    will-change: transform;
}

.cs-slider-track.is-dragging {
    transition: none;
    cursor: grabbing;
}

/* Cards */
.cs-card {
    position: relative;
    min-width: 480px;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.cs-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.cs-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    pointer-events: none;
}

.cs-card:hover img {
    transform: scale(1.08);
}

.cs-card-link {
    position: absolute;
    inset: 0;
    z-index: 5;
}

.cs-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    color: #fff;
    transform: translateY(15px);
    opacity: 0.8;
    transition: all 0.5s ease;
}

.cs-card:hover .cs-card-overlay {
    transform: translateY(0);
    opacity: 1;
}

.cs-card-overlay h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.cs-card-overlay p {
    font-size: 14px;
    opacity: 0.7;
    margin: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1199px) {
    .cs-slider-viewport {
        padding-left: calc((100vw - 960px) / 2);
    }
}

@media (max-width: 991px) {
    .cs-section {
        padding: 80px 0;
    }

    .cs-title {
        font-size: 40px;
    }

    .cs-slider-viewport {
        padding-left: 20px;
    }

    .cs-card {
        min-width: 340px;
        height: 300px;
    }

    .cs-nav-btn {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .cs-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .cs-card {
        min-width: 300px;
        height: 260px;
    }

    .cs-slider-viewport {
        padding-left: 15px;
    }
}

/* --- Premium Interactive Testimonials (FINAL BRANDED) --- */
.testimonials-interactive-section {
    position: relative;
    padding: 150px 0;
    background: #fff;
    overflow: hidden;
}

.t-shape-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
}

.t-interactive-wrapper {
    position: relative;
    padding: 20px;
}

/* Floating Avatars */
.floating-avatars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 12;
    pointer-events: none;
}

.t-avatar {
    position: absolute;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    border: 4px solid #fff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    pointer-events: auto;
    filter: grayscale(100%);
    opacity: 0.6;
}

.t-avatar:hover,
.t-avatar.active {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

.t-avatar.active {
    border-color: var(--primary-color);
}

/* Overlapping Avatar Position */
.t-avatar.on-box {
    top: -30px;
    left: 50px;
    z-index: 25;
}

/* The Main Talk Box (BRAND GREEN) */
.t-talk-box {
    background: var(--primary-color);
    padding: 80px 60px;
    border-radius: 4px;
    position: relative;
    color: #fff;
    box-shadow: 0 40px 80px rgba(34, 157, 120, 0.2);
    z-index: 10;
    min-height: 300px;
    /* Removed dot pattern for clean look */
}

/* The Tail pointing to author - Fixed Shape */
.t-talk-box::after {
    content: '';
    position: absolute;
    bottom: -58px;
    left: 60px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 58px 149px 0 0;
    border-color: var(--primary-color) transparent transparent transparent;
}

/* Black Quote Box */
.t-quote-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 85px;
    height: 85px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: #fff;
    border-radius: 0 4px 0 0;
}

.t-content-slider {
    position: relative;
}

.t-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.t-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.rating {
    color: #ffb400;
    font-size: 24px;
    margin-bottom: 25px;
}

.t-text {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 500;
}

/* Author Section (OUTSIDE BELOW) */
.t-author-outer {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 25px;
    padding-left: 90px;
}

.t-author-box {
    display: none;
    align-items: center;
    gap: 20px;
}

.t-author-box.active {
    display: flex;
}

.t-author-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 2px solid #000;
    padding: 5px;
    background: #fff;
}

.t-author-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
}

.t-author-info h5 {
    margin-bottom: 4px;
    font-weight: 800;
    font-size: 24px;
    color: #0f172a;
}

.t-author-info span {
    font-weight: 700;
    font-size: 14px;
    color: #191c21;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Progress Dots */
.t-progress-dots {
    display: flex;
    gap: 12px;
    margin-top: 50px;
}

.t-progress-dots .dot {
    width: 30px;
    height: 4px;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.t-progress-dots .dot.active {
    background: var(--primary-color);
    width: 50px;
}

@media (max-width: 991px) {
    .testimonials-interactive-section {
        padding: 80px 0;
    }

    .testimonials-interactive-section .reveal-up {
        text-align: center;
    }

    .testimonials-interactive-section .section-tag {
        justify-content: center;
        transform: translateY(-20px);
    }

    .testimonials-interactive-section .reveal-up.active .section-tag {
        transform: translateY(0);
    }

    .t-interactive-wrapper {
        padding: 0;
        margin-top: 40px;
    }

    /* Reset scattered floating avatars to a horizontal tab list */
    .floating-avatars {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 25px;
        pointer-events: auto;
        z-index: 12;
    }

    .t-avatar {
        position: static !important;
        width: 60px !important;
        height: 60px !important;
        border: 3px solid #fff !important;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        margin: 0 !important;
        opacity: 0.6;
        filter: grayscale(100%);
        transform: none !important;
    }

    .t-avatar:hover,
    .t-avatar.active {
        opacity: 1;
        filter: grayscale(0);
        transform: scale(1.1) !important;
    }

    .t-avatar.active {
        border-color: var(--primary-color) !important;
    }

    /* Adjust Talk Box for mobile */
    .t-talk-box {
        padding: 45px 25px 40px 25px;
        min-height: auto;
        border-radius: 8px;
        box-shadow: 0 25px 50px rgba(34, 157, 120, 0.15);
    }

    /* Small quote corner */
    .t-quote-corner {
        width: 50px;
        height: 50px;
        font-size: 20px;
        border-radius: 0 8px 0 0;
    }

    /* Change large speech bubble pointer to a small centered triangle */
    .t-talk-box::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 15px 15px 0 15px;
        border-color: var(--primary-color) transparent transparent transparent;
    }

    /* Center Progress Dots */
    .t-progress-dots {
        justify-content: center;
        margin-top: 25px;
    }

    /* Center Author outer */
    .t-author-outer {
        margin-top: 35px;
        padding-left: 0;
        justify-content: center;
        gap: 15px;
    }

    .t-author-box {
        gap: 15px;
        justify-content: center;
    }

    .t-author-img {
        width: 75px;
        height: 75px;
        padding: 3px;
        border-width: 1px;
    }

    .t-author-img img {
        border-width: 2px;
    }

    .t-author-info h5 {
        font-size: 18px;
        margin-bottom: 2px;
    }

    .t-author-info span {
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    .t-text {
        font-size: 16px;
        line-height: 1.5;
    }

    .rating {
        font-size: 18px;
        margin-bottom: 15px;
    }
}


/* --- High-Motion Cinematic Split Layout --- */
.bg-dark-modern {
    background: #0b1120;
    position: relative;
    overflow: hidden;
}

/* Liquid Background Blobs */
.v-liquid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.v-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 157, 120, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: moveBlob 20s infinite alternate;
}

.v-blob-1 {
    top: -10%;
    left: -10%;
}

.v-blob-2 {
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

@keyframes moveBlob {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 50px) scale(1.2);
    }
}

.v-split-content-wrapper {
    position: relative;
    z-index: 2;
    padding-right: 50px;
}

/* Split Content Slider */
.v-c-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.v-c-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}

/* Right Side Slider (3D TILT) */
.v-split-slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    background: #000;
    z-index: 2;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.v-split-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.v-s-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    /* Start hidden for wipe */
}

.v-s-slide.active {
    opacity: 1;
    visibility: visible;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.v-s-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    /* Over-scale for tilt parallax */
    height: 150%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0.8;
}

/* Floating Glass Badges */
.v-floating-badge {
    position: absolute;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.v-badge-1 {
    top: 15%;
    right: -30px;
}

.v-badge-2 {
    bottom: 15%;
    left: -30px;
}

.dot-pulse {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Magnetic Controls */
.v-split-nav {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
}

.v-split-nav:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* --- Premium Cinematic Video Slider (VERTICAL) --- */
.video-section-premium {
    position: relative;
    z-index: 5;
}

.video-slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    height: 550px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.15);
    background: #0f172a;
}

.video-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    /* Start from bottom for vertical slide */
    transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1), opacity 0.8s ease;
}

.video-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.video-slide.prev-slide {
    transform: translateY(-100%);
    opacity: 0;
}

.video-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-slide-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0.6;
}

@media (min-aspect-ratio: 16/9) {
    .video-slide-bg iframe {
        height: 56.25vw;
    }
}

@media (max-aspect-ratio: 16/9) {
    .video-slide-bg iframe {
        width: 177.78vh;
    }
}

.video-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.6) 0%, transparent 100%);
}

.video-slide-content {
    position: absolute;
    bottom: 60px;
    left: 60px;
    z-index: 10;
    max-width: 500px;
    transform: translateY(50px) skewY(5deg);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.video-slide.active .video-slide-content {
    transform: translateY(0) skewY(0);
    opacity: 1;
}

.video-slide-content h3 {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.video-slide-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.6;
}

/* Slider Controls (Vertical Dots) */
.v-slider-controls {
    position: absolute;
    bottom: 40px;
    right: 60px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 40px;
}

.v-slider-dots {
    display: flex;
    gap: 10px;
}

.v-dot {
    width: 30px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.v-dot.active {
    width: 60px;
    background: var(--primary-color);
}

.v-slider-nav {
    display: flex;
    gap: 15px;
}

.v-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.v-nav-btn:hover {
    background: #fff;
    color: #0f172a;
}

/* Video Modal Styles */
.v-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.v-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.v-modal-container {
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16 / 9;
    background: #000;
    position: relative;
    transform: scale(0.8);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.v-modal-overlay.active .v-modal-container {
    transform: scale(1);
}

.v-modal-close {
    position: absolute;
    top: -60px;
    right: 0;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
    transition: transform 0.3s ease;
}

.v-modal-close:hover {
    transform: rotate(90deg) scale(1.2);
}

.v-modal-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Play Button (Magnetic) */
.play-btn-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 15;
}

.magnetic-play-btn {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(34, 157, 120, 0.3);
}

.play-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(34, 157, 120, 0.4);
    animation: ripple 2s infinite ease-out;
    z-index: -1;
}

@keyframes ripple {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.8;
    }

    100% {
        width: 250%;
        height: 250%;
        opacity: 0;
    }
}

/* Footer Features */
.video-footer-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.v-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.v-num {
    font-size: 30px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    opacity: 0.2;
}

.v-info h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #0f172a;
}

.v-info p {
    color: #191c21;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .video-slider-container {
        height: 400px;
        border-radius: 20px;
    }

    .video-slide-content {
        left: 30px;
        bottom: 30px;
        max-width: 300px;
    }

    .v-slider-controls {
        display: none;
    }

    .video-footer-features {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* --- Premium FAQ Section (Split Layout) --- */
.faq-section {
    position: relative;
    z-index: 5;
}

.faq-image-wrapper {
    position: relative;
    padding: 30px;
}

.faq-main-img {
    position: relative;
    z-index: 2;
}

.faq-main-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 40px;
}

/* Floating Card over image */
.faq-floating-card {
    position: absolute;
    bottom: -30px;
    right: 0;
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 5;
    min-width: 250px;
}

.f-card-icon {
    width: 55px;
    height: 55px;
    background: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.f-card-info h6 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
}

.f-card-info p {
    margin: 0;
    font-size: 14px;
    color: #191c21;
}

/* Decorative Shapes */
.faq-shape-1 {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 1;
}

.faq-shape-2 {
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: 80px;
    height: 80px;
    border: 15px solid rgba(34, 157, 120, 0.1);
    border-radius: 50%;
    z-index: 3;
}

/* Accordion side */
.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.faq-header {
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    cursor: pointer;
}

.faq-num {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.5;
}

.faq-header h3 {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    flex: 1;
    color: #0f172a;
    transition: color 0.3s;
}

.faq-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}

.faq-item.active {
    background: #f8fafc;
    border-color: var(--primary-color);
}

.faq-item.active .faq-header h3 {
    color: var(--primary-color);
}

.faq-item.active .faq-icon {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(45deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.faq-item.active .faq-body {
    max-height: 500px;
}

.faq-content {
    padding: 0 40px 30px 105px;
}

.faq-content p {
    color: #191c21;
    line-height: 1.8;
}

@media (max-width: 991px) {
    .faq-image-wrapper {
        margin-bottom: 50px;
    }

    .faq-floating-card {
        bottom: 0;
        right: 20px;
    }
}

/* --- Premium FAQ Section --- */
.faq-section {
    position: relative;
    z-index: 10;
}

.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.faq-header {
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    cursor: pointer;
    position: relative;
}

.faq-num {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.5;
    font-family: "Figtree", sans-serif;
}

.faq-header h3 {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    flex: 1;
    color: #0f172a;
    transition: color 0.3s ease;
}

.faq-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    transition: all 0.4s ease;
}

.faq-item.active {
    border-color: var(--primary-color);
    background: #f8fafc;
}

.faq-item.active .faq-header h3 {
    color: var(--primary-color);
}

.faq-item.active .faq-icon {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(45deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-body {
    max-height: 1000px;
    transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
}

.faq-content {
    padding: 0 40px 30px 105px;
}

.faq-content p {
    color: #191c21;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 767px) {
    .faq-header {
        padding: 20px;
        gap: 15px;
    }

    .faq-header h3 {
        font-size: 17px;
    }

    .faq-content {
        padding: 0 20px 20px 55px;
    }
}

.v-nav-group {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
}

/* --- About Modern Section --- */
.about-modern-section {
    background: #fff;
    position: relative;
    overflow: hidden;
}

.about-modern-section::before {
    content: 'ABOUT';
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 200px;
    font-family: var(--font-heading);
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    pointer-events: none;
    z-index: 0;
}

/* --- New About Modern Visual (2 Images) --- */
.about-visual-modern {
    position: relative;
    padding: 30px;
}

.about-img-wrap-modern {
    position: relative;
    height: 550px;
}

.about-img-back-modern {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    z-index: 1;
}

.about-img-back-modern img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.about-img-front-modern {
    position: absolute;
    bottom: -100px;
    left: -15px;
    width: 75%;
    z-index: 2;
}

.about-img-front-modern img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    border: 10px solid #fff;
}

.about-review-card-modern {
    position: absolute;
    bottom: 40px;
    right: -10px;
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
    z-index: 3;
    width: 240px;
    text-align: center;
    animation: floatReviewCard 4s ease-in-out infinite;
}

@keyframes floatReviewCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.avatar-stack-modern {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.avatar-stack-modern img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.avatar-stack-modern img:first-child {
    margin-left: 0;
}

.stars-modern {
    color: #F8B430;
    font-size: 13px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    gap: 2px;
}

.review-text-modern {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    color: var(--secondary-color);
    margin: 0;
}

@media (max-width: 991px) {
    .about-img-wrap-modern {
        height: 500px;
        margin-bottom: 50px;
    }

    .about-review-card-modern {
        right: 0;
        bottom: 20px;
        width: 220px;
    }
    .service-content-box .img-area{
        display: none;
    }
}


.about-label-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    font-family: var(--font-heading);
}

.label-line {
    width: 35px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 5px;
}

.about-modern-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: #111;
}

.about-modern-desc {
    font-size: 17px;
    color: #1c1818;
    line-height: 1.8;
}

.about-feature-box {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
}

.about-feature-box:hover {
    transform: translateX(10px);
}

.f-icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(34, 157, 120, 0.1);
    color: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.f-icon-circle img {
    width: 30px;
    height: 30px;
}

.about-feature-box:hover .f-icon-circle {
    background: var(--primary-color);
    color: #fff;
}

.about-feature-box:hover .f-icon-circle img {
    filter: brightness(0) invert(1);
}

.f-content h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #111;
    font-family: var(--font-heading) !important;
}

.f-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.about-split-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.about-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-check-list li {
    font-size: 16px;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.1px;
}

.rating-card-modern {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.stars-row {
    color: #F8B430;
    /* Accent gold from variables */
    margin-bottom: 10px;
    font-size: 15px;
}

.rating-value {
    font-size: 40px;
    font-weight: 900;
    color: #111;
    line-height: 1;
    font-family: var(--font-heading);
}

.rating-value span {
    font-size: 20px;
    color: #aaa;
    font-weight: 500;
}

.rating-label {
    font-size: 13px;
    font-weight: 700;
    color: #444;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-author-row {
    border-top: 1px dashed #ddd;
}

.author-box {
    display: flex;
    align-items: center;
    gap: 18px;
}

.author-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    padding: 3px;
    border: 2px solid var(--primary-color);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.author-meta h5 {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    color: #111;
    font-family: var(--font-heading) !important;
}

.author-meta span {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 700;
}

@media (max-width: 991px) {
    .about-modern-title {
        font-size: 42px;
    }

    .about-main-img-container {
        margin-bottom: 40px;
    }

    .partnership-card {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: -30px;
        width: auto;
        max-width: 280px;
    }

    .about-split-footer {
        align-items: flex-start;
    }

    .rating-card-modern {
        width: 100%;
    }
}

/* --- Portfolio Premium Styles --- */




.portfolio-page-wrapper {
    background-color: var(--portfolio-bg-light);
    font-family: "Figtree", sans-serif !important;
    color: var(--portfolio-text-dark);
}

.portfolio-page-wrapper .portfolio-hero {
    padding: 140px 0 100px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Aurora Background Effect */
.portfolio-page-wrapper .portfolio-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(219, 36, 97, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

.portfolio-page-wrapper .portfolio-hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(27, 51, 123, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

.portfolio-page-wrapper .portfolio-hero .container {
    position: relative;
    z-index: 2;
}

.portfolio-page-wrapper .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(27, 51, 123, 0.05);
    color: var(--portfolio-primary);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

.portfolio-page-wrapper .portfolio-hero h1 {
    font-weight: 800;
    font-size: 4rem;
    color: var(--portfolio-text-dark);
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.04em;
}

.portfolio-page-wrapper .hero-desc {
    font-size: 1.25rem;
    color: var(--portfolio-text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.portfolio-page-wrapper .toggle-container {
    display: flex;
    align-items: center;
    background: #f8fafc;
    padding: 6px;
    border-radius: 100px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    width: fit-content;
    margin: 0 auto;
    border: 1px solid #e2e8f0;
}

.portfolio-page-wrapper .toggle-option {
    padding: 14px 36px;
    border-radius: 100px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--portfolio-transition);
    color: var(--portfolio-text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    font-size: 0.95rem;
}

.portfolio-page-wrapper .toggle-option.active {
    background: #fff;
    color: var(--portfolio-primary);
    box-shadow: 0 10px 25px -5px rgba(27, 51, 123, 0.15), 0 4px 10px -3px rgba(27, 51, 123, 0.1);
}

.portfolio-page-wrapper .toggle-option:not(.active):hover {
    color: var(--portfolio-primary);
    background: rgba(27, 51, 123, 0.05);
}

.portfolio-page-wrapper .filter-sidebar {
    background: var(--portfolio-glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--portfolio-glass-border);
    border-radius: var(--portfolio-radius-lg);
    padding: 24px;
    position: sticky;
    top: 120px;
    box-shadow: var(--portfolio-card-shadow);
}

.portfolio-page-wrapper .filter-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.portfolio-page-wrapper .clear-all {
    font-size: 0.85rem;
    color: var(--portfolio-accent);
    cursor: pointer;
    font-weight: 500;
}

.portfolio-page-wrapper .accordion-item {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid #e2e8f0 !important;
    margin-bottom: 10px;
}

.portfolio-page-wrapper .accordion-button {
    background: transparent !important;
    padding: 16px 0 !important;
    font-weight: 600 !important;
    color: var(--portfolio-text-dark) !important;
    box-shadow: none !important;
    border: none !important;
}

.portfolio-page-wrapper .accordion-button:not(.collapsed) {
    color: var(--portfolio-primary) !important;
    background: transparent !important;
}

.portfolio-page-wrapper .check-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: var(--portfolio-transition);
}

.portfolio-page-wrapper .check-group:hover {
    transform: translateX(4px);
}

.portfolio-page-wrapper .check-group input {
    width: 18px;
    height: 18px;
    accent-color: var(--portfolio-primary);
    cursor: pointer;
}

.portfolio-page-wrapper .check-group label {
    font-size: 0.95rem;
    color: var(--portfolio-text-muted);
    cursor: pointer;
    margin: 0;
}

.portfolio-page-wrapper .portfolio-card,
.portfolio-single-wrapper .portfolio-card {
    background: #fff;
    border-radius: var(--portfolio-radius-lg);
    overflow: hidden;
    transition: var(--portfolio-transition);
    border: 1px solid #f1f5f9;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-page-wrapper .portfolio-card:hover,
.portfolio-single-wrapper .portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--portfolio-card-hover-shadow);
}

.portfolio-page-wrapper .card-media,
.portfolio-single-wrapper .card-media {
    position: relative;
    padding-top: 65%;
    overflow: hidden;
}

.portfolio-page-wrapper .card-media img,
.portfolio-single-wrapper .card-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--portfolio-transition);
}

.portfolio-page-wrapper .portfolio-card:hover .card-media img,
.portfolio-single-wrapper .portfolio-card:hover .card-media img {
    transform: scale(1.08);
}

.portfolio-page-wrapper .card-overlay,
.portfolio-single-wrapper .card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 51, 123, 0.4);
    opacity: 0;
    transition: var(--portfolio-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-page-wrapper .portfolio-card:hover .card-overlay,
.portfolio-single-wrapper .portfolio-card:hover .card-overlay {
    opacity: 1;
}

.portfolio-page-wrapper .view-btn,
.portfolio-single-wrapper .view-btn {
    background: #fff;
    color: var(--portfolio-primary);
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transform: translateY(20px);
    transition: var(--portfolio-transition);
}

.portfolio-page-wrapper .portfolio-card:hover .view-btn,
.portfolio-single-wrapper .portfolio-card:hover .view-btn {
    transform: translateY(0);
}

.portfolio-page-wrapper .card-content,
.portfolio-single-wrapper .card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: 25px;
}

.portfolio-page-wrapper .creator-badge,
.portfolio-single-wrapper .creator-badge {
    position: absolute;
    top: -30px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 6px 16px 6px 6px;
    border-radius: 100px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-page-wrapper .creator-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.portfolio-page-wrapper .creator-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--portfolio-text-dark);
}

.portfolio-page-wrapper .template-title,
.portfolio-single-wrapper .template-title {
    font-weight: 700;
    font-size: 1.15rem;
    margin: 15px 0 8px;
    color: var(--portfolio-text-dark);
    display: block;
    text-decoration: none;
    transition: var(--portfolio-transition);
}


.portfolio-page-wrapper .card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.portfolio-page-wrapper .category-label,
.portfolio-single-wrapper .category-label {
    font-size: 0.85rem;
    color: var(--portfolio-text-muted);
    font-weight: 500;
}

.portfolio-page-wrapper .price-tag,
.portfolio-single-wrapper .price-tag {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--portfolio-primary);
}

.portfolio-page-wrapper .card-actions {
    display: flex;
    gap: 12px;
}

.portfolio-page-wrapper .btn-primary-premium {
    flex-grow: 1;
    background: var(--portfolio-primary);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: var(--portfolio-radius-md);
    font-weight: 600;
    transition: var(--portfolio-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none !important;
}

.portfolio-page-wrapper .btn-primary-premium:hover {
    background: var(--portfolio-primary-light);
    transform: scale(1.02);
    color: #fff !important;
}

.portfolio-page-wrapper .btn-icon-premium {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    border-radius: var(--portfolio-radius-md);
    color: var(--portfolio-text-muted);
    transition: var(--portfolio-transition);
    background: #fff;
}

.portfolio-page-wrapper .btn-icon-premium:hover {
    background: #f8fafc;
    color: var(--portfolio-accent);
    border-color: var(--portfolio-accent);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-page-wrapper .reveal {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@media (max-width: 991px) {
    .portfolio-page-wrapper .filter-sidebar {
        position: static;
        margin-bottom: 30px;
    }
}

/* Pagination Premium */
.portfolio-page-wrapper .pagination {
    gap: 10px;
}

.portfolio-page-wrapper .page-link {
    border-radius: 12px !important;
    border: 1px solid #e2e8f0;
    color: var(--portfolio-primary);
    padding: 10px 18px;
    font-weight: 600;
    transition: var(--portfolio-transition);
}

.portfolio-page-wrapper .page-item.active .page-link {
    background: var(--portfolio-primary);
    border-color: var(--portfolio-primary);
    box-shadow: 0 4px 12px rgba(27, 51, 123, 0.2);
}

.portfolio-page-wrapper .page-link:hover {
    background: #f1f5f9;
}



.portfolio-page-wrapper .card-media img,
.portfolio-single-wrapper .card-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--portfolio-transition);
}

.portfolio-page-wrapper .portfolio-card:hover .card-media img,
.portfolio-single-wrapper .portfolio-card:hover .card-media img {
    transform: scale(1.08);
}

.portfolio-page-wrapper .card-overlay,
.portfolio-single-wrapper .card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 51, 123, 0.4);
    opacity: 0;
    transition: var(--portfolio-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-page-wrapper .portfolio-card:hover .card-overlay,
.portfolio-single-wrapper .portfolio-card:hover .card-overlay {
    opacity: 1;
}

.portfolio-page-wrapper .view-btn,
.portfolio-single-wrapper .view-btn {
    background: #fff;
    color: var(--portfolio-primary);
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transform: translateY(20px);
    transition: var(--portfolio-transition);
}

.portfolio-page-wrapper .portfolio-card:hover .view-btn,
.portfolio-single-wrapper .portfolio-card:hover .view-btn {
    transform: translateY(0);
}

.portfolio-page-wrapper .card-content,
.portfolio-single-wrapper .card-content {
    /* padding: 24px; */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.portfolio-page-wrapper .creator-badge,
.portfolio-single-wrapper .creator-badge {
    position: absolute;
    top: -30px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 6px 16px 6px 6px;
    border-radius: 100px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-page-wrapper .creator-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.portfolio-page-wrapper .creator-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--portfolio-text-dark);
}

.portfolio-page-wrapper .template-title,
.portfolio-single-wrapper .template-title {
    font-weight: 700;
    font-size: 1.15rem;
    margin: 15px 0 8px;
    color: var(--portfolio-text-dark);
    display: block;
    text-decoration: none;
    transition: var(--portfolio-transition);
}



.portfolio-page-wrapper .card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.portfolio-page-wrapper .category-label,
.portfolio-single-wrapper .category-label {
    font-size: 0.85rem;
    color: var(--portfolio-text-muted);
    font-weight: 500;
}

.portfolio-page-wrapper .price-tag,
.portfolio-single-wrapper .price-tag {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--portfolio-primary);
}

.portfolio-page-wrapper .card-actions {
    display: flex;
    gap: 12px;
}

.portfolio-page-wrapper .btn-primary-premium {
    flex-grow: 1;
    background: var(--portfolio-primary);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: var(--portfolio-radius-md);
    font-weight: 600;
    transition: var(--portfolio-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none !important;
}

.portfolio-page-wrapper .btn-primary-premium:hover {
    background: var(--portfolio-primary-light);
    transform: scale(1.02);
    color: #fff !important;
}

.portfolio-page-wrapper .btn-icon-premium {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    border-radius: var(--portfolio-radius-md);
    color: var(--portfolio-text-muted);
    transition: var(--portfolio-transition);
    background: #fff;
}

.portfolio-page-wrapper .btn-icon-premium:hover {
    background: #f8fafc;
    color: var(--portfolio-accent);
    border-color: var(--portfolio-accent);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-page-wrapper .reveal {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@media (max-width: 991px) {
    .portfolio-page-wrapper .filter-sidebar {
        position: static;
        margin-bottom: 30px;
    }
}

/* Pagination Premium */
.portfolio-page-wrapper .pagination {
    gap: 10px;
}

.portfolio-page-wrapper .page-link {
    border-radius: 12px !important;
    border: 1px solid #e2e8f0;
    color: var(--portfolio-primary);
    padding: 10px 18px;
    font-weight: 600;
    transition: var(--portfolio-transition);
}

.portfolio-page-wrapper .page-item.active .page-link {
    background: var(--portfolio-primary);
    border-color: var(--portfolio-primary);
    box-shadow: 0 4px 12px rgba(27, 51, 123, 0.2);
    color: #fff;
}

.portfolio-page-wrapper .page-link:hover {
    background: #f1f5f9;
}

/* --- Portfolio Single Page Styles --- */
.portfolio-single-wrapper {
    background: #f8fafc;
    font-family: "Figtree", sans-serif !important;
}

.portfolio-single-wrapper .single-hero,
.logo-single-wrapper .single-hero {
    padding: 120px 0 100px;
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

/* Hero Background Decoration */
.portfolio-single-wrapper .single-hero::before,
.logo-single-wrapper .single-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(27, 51, 123, 0.05) 0%, transparent 70%);
    filter: blur(60px);
}

.portfolio-single-wrapper .single-hero .container,
.logo-single-wrapper .single-hero .container {
    position: relative;
    z-index: 2;
}

.portfolio-single-wrapper .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 25px;
}

.portfolio-single-wrapper .breadcrumb-item a {
    color: var(--portfolio-text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--portfolio-transition);
}

.portfolio-single-wrapper .breadcrumb-item a:hover {
    color: var(--portfolio-primary);
}

.portfolio-single-wrapper .breadcrumb-item.active {
    color: var(--portfolio-primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.portfolio-single-wrapper .project-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--portfolio-text-dark);
    margin-bottom: 25px;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.portfolio-single-wrapper .project-meta-top {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.portfolio-single-wrapper .meta-badge {
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    background: #f8fafc;
    color: var(--portfolio-text-muted);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--portfolio-transition);
}

.portfolio-single-wrapper .meta-badge i {
    font-size: 0.9rem;
}

.portfolio-single-wrapper .meta-badge.premium {
    background: rgba(27, 51, 123, 0.05);
    color: var(--portfolio-primary);
    border-color: rgba(27, 51, 123, 0.1);
}

.portfolio-single-wrapper .preview-container {
    background: #fff;
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.1);
    /* margin-top: -60px; */
    position: relative;
    z-index: 10;
    border: 1px solid #f1f5f9;
}

.portfolio-single-wrapper .device-switcher {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.portfolio-single-wrapper .device-btn {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--portfolio-transition);
    color: var(--portfolio-text-muted);
}

.portfolio-single-wrapper .device-btn.active {
    background: var(--portfolio-primary);
    color: #fff;
    border-color: var(--portfolio-primary);
    box-shadow: 0 10px 20px rgba(27, 51, 123, 0.2);
}

.portfolio-single-wrapper .iframe-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: var(--portfolio-transition);
}

.portfolio-single-wrapper .sticky-sidebar {
    position: sticky;
    top: 100px;
}

.portfolio-single-wrapper .action-card,
.portfolio-single-wrapper .action-card-premium,
.logo-single-wrapper .action-card-premium {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--portfolio-card-shadow);
    border: 1px solid #f1f5f9;
    margin-bottom: 30px;
}

.portfolio-single-wrapper .price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--portfolio-primary);
    margin-bottom: 20px;
}

.portfolio-single-wrapper .stats-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.portfolio-single-wrapper .stats-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #e2e8f0;
    font-size: 0.95rem;
}

.portfolio-single-wrapper .stats-label {
    color: var(--portfolio-text-muted);
    font-weight: 500;
}

.portfolio-single-wrapper .stats-value {
    color: var(--portfolio-text-dark);
    font-weight: 700;
}

.btn-primary-premium {
    background: var(--portfolio-primary);
    color: #fff !important;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    transition: var(--portfolio-transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary-premium:hover {
    background: var(--portfolio-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(27, 51, 123, 0.2);
}

.btn-outline-premium {
    background: transparent;
    color: var(--portfolio-primary) !important;
    border: 2px solid var(--portfolio-primary);
    border-radius: 12px;
    font-weight: 700;
    transition: var(--portfolio-transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-outline-premium:hover {
    background: var(--portfolio-primary);
    color: #fff !important;
}

/* Project Content Styles */
.portfolio-single-wrapper .project-content h3 {
    font-family: "Figtree", sans-serif;
    font-weight: 800;
    color: var(--portfolio-text-dark);
    margin-bottom: 25px;
}

.portfolio-single-wrapper .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.portfolio-single-wrapper .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--portfolio-text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

.portfolio-single-wrapper .feature-item i {
    color: #229d78;
    margin-top: 4px;
    font-size: 0.9rem;
}

.portfolio-single-wrapper .tech-badge-modern {
    padding: 8px 18px;
    border-radius: 100px;
    background: #fff;
    border: 1px solid var(--portfolio-glass-border);
    color: var(--portfolio-text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--portfolio-transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.portfolio-single-wrapper .tech-badge-modern:hover {
    border-color: var(--portfolio-primary);
    color: var(--portfolio-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 51, 123, 0.08);
}

/* Project Slider Styles */
.project-slider-wrapper {
    position: relative;
    border-radius: var(--portfolio-radius-md);
    overflow: hidden;
    background: var(--portfolio-bg-light);
}

.project-slider-wrapper .item img {
    width: 100%;
    height: auto;
    border-radius: var(--portfolio-radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.project-slider-wrapper .slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
}

.project-slider-wrapper .nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    pointer-events: auto;
    transition: var(--portfolio-transition);
    color: var(--portfolio-primary);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-slider-wrapper .nav-btn:hover {
    background: var(--portfolio-primary);
    color: #fff;
    transform: scale(1.1);
}

.rounded-16 {
    border-radius: 16px !important;
}

/* Project Modal Styles */
.portfolio-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content-wrapper {
    background: #fff;
    width: 100%;
    max-width: 1400px;
    height: 90vh;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
}

.modal-main-view {
    flex: 1;
    background: #f1f5f9;
    overflow-y: auto;
    padding: 0;
    position: relative;
}

.modal-main-view img {
    width: 100%;
    height: auto;
}

.modal-sidebar-view {
    width: 400px;
    background: #fff;
    border-left: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    padding: 40px;
    overflow-y: auto;
}

.modal-sidebar-view .close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}

.modal-sidebar-view .close-modal:hover {
    background: #fee2e2;
    color: #ef4444;
}

.page-thumb-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.page-thumb-card:hover,
.page-thumb-card.active {
    border-color: var(--portfolio-primary);
    background: rgba(27, 51, 123, 0.03);
}

.page-thumb-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 8px;
}

.page-thumb-card p {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--portfolio-text-dark);
    text-align: center;
}

/* Modern Modal Redesign */
.modal-sidebar-view {
    width: 380px;
    padding: 30px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.modal-sidebar-view h3 {
    font-size: 1.8rem;
    letter-spacing: -0.03em;
    margin-bottom: 5px;
}

.modal-sidebar-view .dev-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.modal-sidebar-view .dev-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.page-switcher-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.page-thumb-card {
    position: relative;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 8px;
    background: #fff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    overflow: hidden;
}

.page-thumb-card:hover {
    transform: translateX(8px);
    border-color: var(--portfolio-primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.page-thumb-card.active {
    border-color: var(--portfolio-primary);
    background: #fff;
    box-shadow: 0 15px 30px rgba(27, 51, 123, 0.1);
}

.page-thumb-card .img-wrapper {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    height: 100px;
}

.page-thumb-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.page-thumb-card:hover img {
    transform: scale(1.1);
}

.page-thumb-card p {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--portfolio-text-dark);
    margin-bottom: 4px;
    padding-left: 5px;
}

.page-thumb-card .status {
    font-size: 0.75rem;
    color: var(--portfolio-text-muted);
    padding-left: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.page-thumb-card.active .status {
    color: var(--portfolio-primary);
}

/* Independent Sidebar Scrolling */
.modal-sidebar-view {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.modal-sidebar-top {
    flex-shrink: 0;
    margin-bottom: 20px;
}

.page-switcher-list {
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 5px;
}

.page-switcher-list::-webkit-scrollbar {
    width: 6px;
}

.page-switcher-list::-webkit-scrollbar-track {
    background: transparent;
}

.page-switcher-list::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 10px;
}

.page-switcher-list::-webkit-scrollbar-thumb:hover {
    background: #cbd5e1;
}

/* Background Blobs */
.p-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
}

.p-blob-1 {
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: var(--p-aurora-1);
}

.p-blob-2 {
    top: 40%;
    left: -200px;
    width: 500px;
    height: 500px;
    background: var(--p-aurora-2);
}

.p-blob-3 {
    bottom: 10%;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--p-aurora-3);
}

.single-hero {
    padding: 140px 0 100px !important;
    border-bottom: none !important;
    background: transparent !important;
}

.single-hero .project-title {
    font-size: 4.5rem !important;
    line-height: 1 !important;
    margin-bottom: 30px !important;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.action-card-premium {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 40px 80px -20px rgba(27, 51, 123, 0.12);
}

.price-large {
    font-size: 3.5rem !important;
    font-weight: 900 !important;
    color: var(--portfolio-primary);
    letter-spacing: -0.05em;
    margin-bottom: 5px;
}


.portfolio-single-wrapper {
    position: relative;
    overflow: hidden !important;
    background: #fafbfc;
    width: 100%;
}


/* Logo Page Specific Styles */
/* --- [LOGO-PAGE-V2] SIGNATURE ANTIGRAVITY DESIGN --- */
.v2-logo-wrapper {
    background: #fafbfc;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.v2-hero-title {
    font-family: var(--font-premium);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.06em;
    background: linear-gradient(135deg, var(--portfolio-primary) 0%, var(--portfolio-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
}

.v2-meta-badge {
    background: #fff;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--portfolio-text-dark);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: 0.3s;
}

.v2-meta-badge:hover {
    transform: translateY(-3px);
    border-color: var(--portfolio-primary);
}

.v2-showcase-canvas {
    background: #fff;
    border-radius: 60px;
    position: relative;
    z-index: 5;
    box-shadow: 0 60px 120px -40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 650px;
    overflow: hidden;
}

.v2-showcase-canvas::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(219, 36, 97, 0.03) 0%, transparent 70%);
}

.v2-showcase-canvas img {
    max-width: 85%;
    height: auto;
    transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.v2-showcase-canvas:hover img {
    transform: scale(1.05) rotate(1deg);
}

.v2-info-stack {
    position: sticky;
    top: 120px;
}

.v2-card-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 40px;
    padding: 45px;
    box-shadow: 0 40px 100px -30px rgba(27, 51, 123, 0.1);
    margin-bottom: 30px;
}

.v2-id-strip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--portfolio-primary);
    color: #fff;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.v2-btn-prime {
    background: var(--portfolio-primary);
    color: #fff !important;
    height: 70px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.25rem;
    font-weight: 800;
    border: none;
    width: 100%;
    transition: 0.4s;
    box-shadow: 0 20px 40px rgba(27, 51, 123, 0.2);
    text-decoration: none;
}

.v2-btn-prime:hover {
    background: var(--portfolio-accent);
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(219, 36, 97, 0.3);
}

.v2-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.v2-feature-item {
    background: #fff;
    padding: 25px;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    transition: 0.3s;
}

.v2-feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--portfolio-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* V2 Specific Enhancements */
.v2-inclusions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.v2-inclusion-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    transition: 0.3s;
}

.v2-inclusion-item:hover {
    transform: translateX(5px);
}

.v2-check-circle {
    width: 32px;
    height: 32px;
    background: #229d78;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(34, 157, 120, 0.2);
}

.v2-check-circle i {
    color: #fff;
    font-size: 0.85rem;
}

.v2-inclusion-text {
    font-weight: 700;
    color: var(--portfolio-text-dark);
    font-size: 1rem;
}

.v2-card-title {
    font-family: var(--font-premium);
    font-weight: 800;
    color: var(--portfolio-text-dark);
    margin-bottom: 25px;
    font-size: 1.5rem;
}



/* Restored & Refined Grid Styles */
.logo-grid-card {
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #f1f5f9;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.logo-grid-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(27, 51, 123, 0.1);
}

.logo-card-media {
    position: relative;
    padding-top: 75%;
    background: #f8fafc;
    overflow: hidden;
}

.logo-card-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.logo-grid-card:hover .logo-card-media img {
    transform: scale(1.1);
}

.logo-card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.logo-creator-strip {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.logo-creator-strip img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 51, 123, 0.4);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
    z-index: 2;
}

.logo-grid-card:hover .card-overlay {
    opacity: 1;
}

.view-btn {
    background: #fff;
    color: var(--portfolio-primary);
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    transform: translateY(20px);
    transition: 0.4s;
    font-size: 0.9rem;
}

.logo-grid-card:hover .view-btn {
    transform: translateY(0);
}


/* --- [LOGO-PAGE-V3] NEXT-GEN CINEMATIC DESIGN --- */
.v3-page-root {
    background: #fdfdfe;
    position: relative;
    overflow: hidden;
}

.v3-aurora-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.v3-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    animation: v3-float 20s infinite alternate ease-in-out;
}

.v3-blob-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, #db2461 0%, transparent 70%);
    top: -200px;
    left: -200px;
}

.v3-blob-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #1B337B 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

.v3-blob-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #4f46e5 0%, transparent 70%);
    top: 40%;
    left: 30%;
    animation-delay: -10s;
}

@keyframes v3-float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 50px) scale(1.1);
    }
}

.v3-hero-section {
    position: relative;
    z-index: 10;
    padding: 120px 0 80px;
}

.v3-title-box {
    margin-bottom: 60px;
}

.v3-main-title {
    font-family: var(--font-premium);
    font-size: 5.5rem;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.05em;
    line-height: 0.9;
    margin-bottom: 25px;
}

.v3-main-title span {
    color: var(--portfolio-accent);
}

.v3-canvas-frame {
    background: #fff;
    border-radius: 80px;
    box-shadow: 0 100px 150px -50px rgba(0, 0, 0, 0.12), 0 0 40px rgba(27, 51, 123, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 700px;
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.v3-canvas-frame:hover {
    transform: translateY(-15px) rotateX(2deg);
    box-shadow: 0 120px 180px -50px rgba(0, 0, 0, 0.15);
}

.v3-info-panel {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(30px);
    border-radius: 50px;
    padding: 55px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 40px 100px -30px rgba(27, 51, 123, 0.1);
}


/* --- [LOGO-PAGE-LUXURY] MINIMALIST LUXURY DESIGN (SYNCED WITH INDEX) --- */
.lux-page-root {
    background: #ffffff;
    color: #1e293b;
    min-height: 100vh;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.lux-page-root::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--p-aurora-2) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.lux-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
    z-index: 1;
}

.lux-breadcrumb {
    font-family: var(--font-premium);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #94a3b8;
    font-weight: 600;
}

.lux-breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

.lux-breadcrumb a:hover {
    color: var(--primary-color);
}

.lux-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    line-height: 1;
}

.lux-badge-row {
    display: flex;
    gap: 10px;
    margin-bottom: 60px;
}

.lux-badge {
    border: 1px solid #e2e8f0;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #191c21;
    background: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lux-showcase {
    background: #fff;
    border-radius: 40px;
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    min-height: 600px;
}

.lux-showcase img {
    max-width: 80%;
    height: auto;
    transition: 0.5s ease;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
}

.lux-info-card {
    padding: 40px;
}

.lux-id {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
    text-transform: uppercase;
}

.lux-subtitle {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 25px;
    text-transform: uppercase;
    line-height: 1.1;
}

.lux-desc {
    font-family: var(--font-premium);
    font-size: 1.05rem;
    line-height: 1.8;
    color: #191c21;
    margin-bottom: 40px;
}

.lux-feature-box {
    background: #fff;
    border: 1px solid #f1f5f9;
    padding: 35px;
    border-radius: 32px;
    margin-bottom: 20px;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.lux-feature-box:hover {
    border-color: var(--primary-color);
}

.lux-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lux-list-item {
    font-family: var(--font-premium);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 1rem;
    font-weight: 600;
    color: #334155;
}

.lux-list-item i {
    color: var(--primary-color);
    font-size: 1rem;
}



/* --- [PRICING-LUXURY] MINIMALIST PRICING SYSTEM --- */
.pricing-section {
    padding: 120px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.price-card {
    background: #fff;
    border-radius: 40px;
    padding: 60px 45px;
    border: 1px solid #f1f5f9;
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.02);
}

.price-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: 0 50px 100px rgba(27, 51, 123, 0.08);
}

.price-card.featured {
    background: #fafbfc;
    border-color: var(--secondary-color);
    box-shadow: 0 40px 100px rgba(27, 51, 123, 0.1);
}

.price-card.featured::after {
    content: "BEST VALUE";
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--primary-color);
    color: #fff;
    padding: 6px 15px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.plan-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: #191c21;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.plan-price {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1;
}

.plan-price span {
    font-size: 1.2rem;
    color: #94a3b8;
    font-weight: 600;
}

.plan-desc {
    color: #191c21;
    margin-bottom: 40px;
    min-height: 50px;
    font-weight: 500;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
    flex-grow: 1;
}

.plan-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #334155;
    font-weight: 600;
    font-size: 0.95rem;
}

.plan-feature-item i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.plan-feature-item.muted {
    color: #94a3b8;
    text-decoration: line-through;
}

.plan-feature-item.muted i {
    color: #cbd5e1;
}


/* --- [PACKAGE-V2] HORIZONTAL LUXURY SYSTEM --- */
/* Next-Gen Aurora Hero Section Styling with Geometric Blueprint Grid */
.pkg-hero {
    position: relative;
    padding: 160px 0 110px;
    background-color: #f8fafc;
    background-image:
        linear-gradient(rgba(34, 157, 120, 0.035) 1.5px, transparent 1.5px),
        linear-gradient(90deg, rgba(34, 157, 120, 0.035) 1.5px, transparent 1.5px),
        radial-gradient(circle at 80% 20%, #ffffff 0%, #f8fafc 100%);
    background-size: 50px 50px, 50px 50px, 100% 100%;

    background-image: url('../images/package/bg-3.jpeg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Organic Animated Aurora Blobs - Green, Blue & Yellow only */
.pkg-aurora-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.pkg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0.35;
    animation: pkg-aurora-float 22s infinite alternate ease-in-out;
}

.pkg-blob-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    top: -200px;
    left: -150px;
}

.pkg-blob-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

.pkg-blob-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    top: 25%;
    left: 35%;
    animation-delay: -10s;
}

@keyframes pkg-aurora-float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(80px, 40px) scale(1.08);
    }
}

/* Breadcrumb Pill */
.pkg-breadcrumb-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 22px;
    background: rgba(27, 51, 123, 0.04);
    border: 1px solid rgba(27, 51, 123, 0.05);
    border-radius: 100px;
    color: var(--secondary-color);
    font-family: var(--font-premium);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--portfolio-transition);
}

.pkg-breadcrumb-pill:hover {
    background: rgba(27, 51, 123, 0.08);
    transform: translateY(-2px);
    color: var(--primary-color);
}

/* Hero Typography - Synced exactly with Index Page heading styles */
.pkg-hero .hero-aurora-title {
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 6vw, 5.2rem);
    font-weight: 850;
    line-height: 0.95;
    letter-spacing: -3px;
    color: var(--secondary-color);
    margin: 25px 0;
    text-transform: uppercase;
}

.pkg-hero .hero-aurora-title .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
}

.pkg-hero .hero-aurora-desc {
    font-family: var(--font-premium);
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 35px;
    max-width: 540px;
}

/* Money Back Guarantee Badge */
.pkg-guarantee-badge {
    font-family: var(--font-premium);
    font-weight: 800;
    color: var(--primary-color);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pkg-guarantee-badge i {
    font-size: 1.1rem;
    filter: drop-shadow(0 4px 10px rgba(34, 157, 120, 0.2));
    animation: pkg-badge-pulse 2s infinite alternate ease-in-out;
}

@keyframes pkg-badge-pulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

/* ==========================================================================
           2. 3D Floating Mockup Graphic Component Styling
           ========================================================================== */
.pkg-mockup-container {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Interactive Backdrop */
.pkg-mockup-backdrop {
    position: absolute;
    width: 80%;
    height: 80%;
    border-radius: 40px;
    background: radial-gradient(circle at 10% 20%, rgba(27, 51, 123, 0.03) 0%, rgba(34, 157, 120, 0.03) 90%);
    filter: blur(20px);
    z-index: 1;
}

/* Main Glass Dashboard Panel */
.pkg-mockup-main {
    position: relative;
    z-index: 2;
    width: 85%;
    /* height: 380px; */
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 36px;
    box-shadow: 0 40px 100px -20px rgba(27, 51, 123, 0.08);
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--portfolio-transition);
}

.pkg-mockup-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 50px 120px -20px rgba(27, 51, 123, 0.12);
}

/* Window Header Dots */
.pkg-mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(27, 51, 123, 0.06);
}

.pkg-window-dots {
    display: flex;
    gap: 6px;
}

.pkg-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.pkg-dot-red {
    background: #ef4444;
}

.pkg-dot-yellow {
    background: #f59e0b;
}

.pkg-dot-green {
    background: #10b981;
}

.pkg-mockup-tab {
    font-family: var(--font-premium);
    font-weight: 700;
    font-size: 0.75rem;
    color: #191c21;
    background: rgba(27, 51, 123, 0.05);
    padding: 5px 12px;
    border-radius: 8px;
}

/* Premium MacBook Pro Device Mockup Showcase Screen Bezel and Bevel */
.pkg-mockup-body-showcase {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
    margin-top: 15px;
    position: relative;
    background: #0f172a;
    /* Dark sleek bezel backing color */
    border: 1px solid rgba(27, 51, 123, 0.08);
    box-shadow: inset 0 20px 40px rgba(0, 0, 0, 0.2);
    /* height: 270px; */
}

.pkg-showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 12px;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.pkg-mockup-main:hover .pkg-showcase-img {
    transform: scale(1.03) translateY(2px);
}

/* 3D Floating Elements */
.pkg-floating-element {
    position: absolute;
    z-index: 3;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: var(--portfolio-transition);
}

.pkg-floating-element:hover {
    transform: scale(1.05) translateY(-5px) !important;
    box-shadow: 0 35px 70px rgba(15, 23, 42, 0.12);
}

/* Element 1: High Client Rating Badge */
.pkg-float-el-1 {
    top: 8%;
    right: 0;
    background: #ffffff;
    border-radius: 20px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: pkg-float-up-anim 6s infinite alternate ease-in-out;
}

.pkg-pulse-circle {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary-color);
    position: relative;
}

.pkg-pulse-circle::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.4;
    animation: pkg-radial-pulse 1.8s infinite ease-out;
}

@keyframes pkg-radial-pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.pkg-float-el-1 span {
    font-family: var(--font-premium);
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--portfolio-text-dark);
    white-space: nowrap;
}

/* Element 2: Performance Graph Card */
.pkg-float-el-2 {
    bottom: 10%;
    right: -10%;
    width: 220px;
    background: var(--portfolio-primary);
    border-color: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 22px 24px;
    color: #ffffff;
}

.pkg-float-el-2 .card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.pkg-float-el-2 .card-head span {
    font-family: var(--font-premium);
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.8;
}

.pkg-float-el-2 .card-head i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

.pkg-float-el-2 .chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 50px;
    margin-top: 15px;
}

.pkg-chart-bar {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    transition: all 0.5s;
}

.pkg-chart-bar-1 {
    height: 40%;
    animation: pkg-bar-rise 2s ease-out forwards;
}

.pkg-chart-bar-2 {
    height: 75%;
    animation: pkg-bar-rise 2.3s ease-out forwards;
    background: var(--accent-color);
}

.pkg-chart-bar-3 {
    height: 50%;
    animation: pkg-bar-rise 1.8s ease-out forwards;
}

.pkg-chart-bar-4 {
    height: 90%;
    animation: pkg-bar-rise 2.5s ease-out forwards;
    background: var(--primary-color);
}

@keyframes pkg-bar-rise {
    from {
        height: 0%;
    }
}

/* Element 3: Agency Award Badge */
.pkg-float-el-3 {
    top: 48%;
    right: -8%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-color: transparent;
    border-radius: 100px;
    padding: 10px 22px;
    color: #ffffff;
    font-family: var(--font-premium);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 20px 40px rgba(34, 157, 120, 0.15);
    animation: pkg-float-up-anim 8s infinite alternate ease-in-out;
    animation-delay: -2.5s;
}

@keyframes pkg-float-up-anim {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-22px) rotate(1.5deg);
    }
}

@keyframes pkg-float-down-anim {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(22px) rotate(-1.5deg);
    }
}

/* ==========================================================================
           3. Dynamic Sliding Switcher Toggle Styling
           ========================================================================== */
.pricing-toggle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 65px;
    position: relative;
    z-index: 10;
}

.pricing-toggle-wrap {
    display: flex;
    position: relative;
    background: #f1f5f9;
    border-radius: 100px;
    padding: 6px;
    border: 1px solid #e2e8f0;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.03);
    width: 380px;
    max-width: 100%;
}

.pricing-toggle-btn {
    flex: 1;
    background: transparent;
    border: none;
    border-radius: 100px;
    padding: 14px 25px;
    font-family: var(--font-premium);
    font-size: 0.95rem;
    font-weight: 800;
    color: #191c21;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 2;
    text-align: center;
    outline: none !important;
}

.pricing-toggle-btn.active {
    color: #ffffff;
}

.pricing-toggle-slider {
    position: absolute;
    top: 6px;
    left: 6px;
    width: calc(50% - 6px);
    height: calc(100% - 12px);
    background: var(--secondary-color);
    border-radius: 100px;
    z-index: 1;
    box-shadow: 0 8px 22px rgba(27, 51, 123, 0.18);
}

.pricing-toggle-sub {
    margin-top: 15px;
    font-family: var(--font-premium);
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 6px;
    animation: pkg-subtext-pulse 2s infinite alternate ease-in-out;
}

@keyframes pkg-subtext-pulse {
    0% {
        transform: scale(1);
        opacity: 0.95;
    }

    100% {
        transform: scale(1.03);
        opacity: 1;
    }
}

/* ==========================================================================
           4. Ultra-Premium Vertical Pricing Cards Styling
           ========================================================================== */
.pkg-modern-grid {
    margin-top: 20px;
}

.pkg-modern-card {
    height: 100%;
    background: #ffffff;
    border-radius: 32px;
    border: 1px solid #f1f5f9;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.015);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pkg-modern-card:hover {
    transform: translateY(-15px);
    border-color: transparent;
    box-shadow: 0 45px 100px rgba(27, 51, 123, 0.08);
}

/* Premium Glow Highlight for Recommended Plan (Green & Blue Gradient only) */
.pkg-modern-card.featured {
    background: #ffffff;
    border: 2px solid transparent;
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    background-image: linear-gradient(to bottom, #ffffff, #ffffff),
        linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    box-shadow: 0 35px 85px rgba(27, 51, 123, 0.08);
}

.pkg-modern-card.featured::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 32px;
    z-index: -1;
    opacity: 0.15;
    filter: blur(20px);
    transition: opacity 0.4s ease;
}

.pkg-modern-card.featured:hover::after {
    opacity: 0.3;
}

/* Recommended Pill Badge */
.pkg-recommended-pill {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%) !important;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 100px;
    font-family: var(--font-premium);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(34, 157, 120, 0.2);
    white-space: nowrap;
    text-align: center;
}

/* Card Header Elements */
.pkg-card-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    font-family: var(--font-premium);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    width: fit-content;
}

.pkg-badge-startup {
    background: rgba(34, 157, 120, 0.08);
    color: var(--primary-color);
}

.pkg-badge-growth {
    background: rgba(27, 51, 123, 0.08);
    color: var(--secondary-color);
}

.pkg-badge-enterprise {
    background: rgba(248, 180, 48, 0.08);
    color: var(--accent-color);
}

.pkg-card-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.85rem;
    color: var(--portfolio-text-dark);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.pkg-card-desc {
    font-family: var(--font-premium);
    font-size: 0.95rem;
    color: #191c21;
    line-height: 1.6;
    margin-bottom: 30px;
    min-height: 48px;
}

/* Pricing Section inside Card */
.pkg-price-wrap {
    display: flex;
    flex-direction: column;
}

.pkg-price {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3.8rem;
    color: var(--portfolio-text-dark);
    line-height: 1;
    display: flex;
    align-items: flex-end;
    gap: 4px;
}

.pkg-price span {
    font-family: var(--font-premium);
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: lowercase;
}

.pkg-price-subtext {
    font-family: var(--font-premium);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-top: 8px;
    transition: all 0.3s ease;
}

.pkg-price-subtext.blue-text {
    color: var(--secondary-color);
}

.pkg-price-subtext.yellow-text {
    color: var(--accent-color);
}

/* Inline SVG Icon Styling */
.pkg-visual-icon-wrap {
    width: 50px;
    height: 50px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pkg-visual-icon-wrap svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 15px rgba(27, 51, 123, 0.05));
    transition: var(--portfolio-transition);
}

.pkg-modern-card:hover .pkg-visual-icon-wrap svg {
    transform: scale(1.1) rotate(3deg);
}

/* Premium Custom Feature Checklist */
.pkg-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 45px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    flex-grow: 1;
}

.pkg-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--font-premium);
    font-size: 0.95rem;
    color: black;
    font-weight: 500;
    line-height: 1.4;
}

.pkg-feature-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.65rem;
    margin-top: 2px;
}

.pkg-icon-startup {
    background: rgba(34, 157, 120, 0.1);
    color: var(--primary-color);
}

.pkg-icon-growth {
    background: rgba(27, 51, 123, 0.1);
    color: var(--secondary-color);
}

.pkg-icon-enterprise {
    background: rgba(248, 180, 48, 0.1);
    color: var(--accent-color);
}

/* Premium Glowing Call to Actions */
.pkg-action-btn {
    width: 100%;
    border-radius: 100px;
    padding: 18px 30px;
    font-family: var(--font-premium);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
    outline: none;
}

/* Card 1 Button */
.pkg-btn-startup {
    background: rgba(27, 51, 123, 0.05);
    color: var(--secondary-color);
    border: 1px solid rgba(27, 51, 123, 0.08);
}

.pkg-btn-startup:hover {
    background: var(--secondary-color);
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(27, 51, 123, 0.15);
    transform: translateY(-2px);
}

/* Card 2 Featured Button - Blue to Green Gradient only */
.pkg-btn-growth {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(34, 157, 120, 0.15);
}

.pkg-btn-growth:hover {
    box-shadow: 0 20px 45px rgba(34, 157, 120, 0.25);
    transform: translateY(-3px);
}

/* Card 3 Button */
.pkg-btn-enterprise {
    background: var(--portfolio-primary);
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(27, 51, 123, 0.12);
}

.pkg-btn-enterprise:hover {
    background: var(--primary-color);
    box-shadow: 0 15px 35px rgba(34, 157, 120, 0.22);
    transform: translateY(-2px);
}

.pkg-action-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.pkg-action-btn:hover i {
    transform: translateX(4px);
}

/* Secure SSL Footer Tag */
.pkg-secure-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
    font-family: var(--font-premium);
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 700;
}

.pkg-secure-tag i {
    font-size: 0.85rem;
}

/* Adjust bottom section title spacing */
.plans-intro-title span {
    color: var(--primary-color);
}

/* ==========================================================================
           5. Extra Clean Separations and Utilities
           ========================================================================== */
.pkg-breadcrumb-chevron {
    font-size: 0.6rem;
}

.pkg-delay-2 {
    animation-delay: 0.2s;
}

.pkg-delay-4 {
    animation-delay: 0.4s;
}

.pkg-delay-6 {
    animation-delay: 0.6s;
}

.pkg-icon-primary {
    color: var(--primary-color) !important;
}

.pkg-icon-secondary {
    color: var(--secondary-color) !important;
}

.pkg-icon-accent {
    color: var(--accent-color) !important;
}

.pkg-icon-accent-normal {
    color: var(--accent-color);
}

.plans-intro-title {
    font-size: 2.8rem;
}

.plans-intro-desc {
    font-family: var(--font-premium);
    font-size: 1.05rem;
    font-weight: 500;
}

.pkg-modern-card.featured .pkg-visual-icon-wrap {
    margin-top: 15px;
}

.btn-premium-global:hover .pkg-btn-icon {
    transform: rotate(45deg) translate(2px, -2px) !important;
}

/* ==========================================================================
           PORTFOLIO SPECIFIC PREMIUM STYLES OVERRIDES
           ========================================================================== */

/* --- PREMIUM REDESIGNED HERO SYSTEM --- */
.portfolio-page-wrapper .hero-aurora-section {
    position: relative;
    padding: 160px 0 110px;
    background-image: url('../images/portfolio/bg-2.jpg');
    /* background-color: #f8fafc; */
    /* background-image:
        linear-gradient(rgba(34, 157, 120, 0.035) 1.5px, transparent 1.5px),
        linear-gradient(90deg, rgba(34, 157, 120, 0.035) 1.5px, transparent 1.5px),
        radial-gradient(circle at 80% 20%, #ffffff 0%, #f8fafc 100%);
    background-size: 50px 50px, 50px 50px, 100% 100%; */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    border-bottom: 1px solid rgba(27, 51, 123, 0.05);
}

.portfolio-page-wrapper .aurora-bg {
    background: transparent !important;
    background-image: none !important;
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* Luxury Pill Badge - Synced with Packages Page */
.portfolio-page-wrapper .pkg-breadcrumb-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(27, 51, 123, 0.04);
    border: 1px solid rgba(27, 51, 123, 0.08);
    padding: 8px 20px;
    border-radius: 100px;
    font-family: var(--font-premium);
    font-weight: 800;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary-color);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none !important;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(27, 51, 123, 0.02);
}

.portfolio-page-wrapper .pkg-breadcrumb-pill:hover {
    background: rgba(27, 51, 123, 0.08);
    transform: translateY(-2px);
    color: var(--primary-color);
}

/* Synced Heading Size - Exactly matching package.blade.php */
.portfolio-page-wrapper .hero-aurora-title {
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 6vw, 5.2rem) !important;
    font-weight: 850 !important;
    line-height: 0.95 !important;
    letter-spacing: -3px !important;
    color: var(--secondary-color) !important;
    margin: 25px 0 !important;
    text-transform: uppercase !important;
}

.portfolio-page-wrapper .hero-aurora-title .highlight {
    color: var(--primary-color) !important;
    position: relative;
    display: inline-block;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
}

.portfolio-page-wrapper .hero-aurora-desc {
    font-family: var(--font-premium) !important;
    font-size: clamp(1rem, 2vw, 1.15rem) !important;
    line-height: 1.65 !important;
    color: #191c21 !important;
    margin-bottom: 35px !important;
    font-weight: 600 !important;
    max-width: 520px;
}

/* Standardised Button Scroll arrow offsets */
.portfolio-page-wrapper .btn-premium-global .fa-arrow-down {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.portfolio-page-wrapper .btn-premium-global:hover .fa-arrow-down {
    transform: translateY(3px);
}

/* Creative Split Column Showcase Grid */
.portfolio-page-wrapper .portfolio-hero-split-showcase {
    display: flex;
    gap: 30px;
    align-items: stretch;
    width: 100%;
    min-height: 480px;
    z-index: 5;
    position: relative;
}

.portfolio-page-wrapper .showcase-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.portfolio-page-wrapper .showcase-pill-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(27, 51, 123, 0.05);
    border: 1px solid rgba(27, 51, 123, 0.08);
    padding: 8px 18px;
    border-radius: 100px;
    font-family: var(--font-premium);
    font-weight: 800;
    font-size: 0.72rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
    align-self: center;
    box-shadow: 0 4px 12px rgba(27, 51, 123, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.portfolio-page-wrapper .showcase-pill-header i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* --- THEME COLUMN STYLES --- */
.portfolio-page-wrapper .theme-mockup-wrap {
    position: relative;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.portfolio-page-wrapper .theme-card-main {
    position: absolute;
    width: 100%;
    max-width: 360px;
    height: 415px;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid #ffffff;
    background: #0f172a;
    box-shadow: 0 25px 50px rgba(27, 51, 123, 0.08);
    z-index: 2;
    transform: perspective(1000px) rotateY(-12deg) rotateX(4deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s;
    animation: floatThemeMain 8s infinite ease-in-out;
}

.portfolio-page-wrapper .theme-card-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}



/* Hover interaction for Theme Column */
.portfolio-page-wrapper .theme-showcase-col:hover .theme-card-main {
    transform: perspective(1000px) rotateY(-2deg) rotateX(0deg) scale(1.03);
    box-shadow: 0 35px 70px rgba(27, 51, 123, 0.15);
    animation-play-state: paused;
}



@keyframes floatThemeMain {

    0%,
    100% {
        transform: perspective(1000px) rotateY(-12deg) rotateX(4deg) translateY(0);
    }

    50% {
        transform: perspective(1000px) rotateY(-12deg) rotateX(4deg) translateY(-12px);
    }
}

@keyframes floatThemeSub {

    0%,
    100% {
        transform: perspective(1000px) rotateY(15deg) rotateX(-5deg) translateZ(-40px) translateY(0);
    }

    50% {
        transform: perspective(1000px) rotateY(15deg) rotateX(-5deg) translateZ(-40px) translateY(12px);
    }
}

/* --- LOGO COLUMN STYLES --- */
.portfolio-page-wrapper .logo-grid-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    flex-grow: 1;
    min-height: 400px;
}

.portfolio-page-wrapper .logo-grid-tile {
    background: #ffffff;
    border: 1.5px solid rgba(27, 51, 123, 0.05);
    border-radius: 20px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(27, 51, 123, 0.02);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    min-height: 110px;
    position: relative;
}

.portfolio-page-wrapper .logo-tile-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.portfolio-page-wrapper .logo-tile-inner img {
    max-width: 80%;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.65);
    transition: all 0.4s ease;
}

/* Hover interaction for Logo Tiles */
.portfolio-page-wrapper .logo-grid-tile:hover {
    transform: translateY(-6px) scale(1.06) !important;
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(34, 157, 120, 0.12);
    z-index: 5;
    animation-play-state: paused !important;
}

.portfolio-page-wrapper .logo-grid-tile:hover .logo-tile-inner img {
    filter: grayscale(0%) opacity(1);
}

/* Staggered Floating Keyframes for 6 Logo Tiles */
.portfolio-page-wrapper .float-tile-1 {
    animation: floatTile1 6s infinite ease-in-out;
}

.portfolio-page-wrapper .float-tile-2 {
    animation: floatTile2 7s infinite ease-in-out;
}

.portfolio-page-wrapper .float-tile-3 {
    animation: floatTile3 8s infinite ease-in-out;
}

.portfolio-page-wrapper .float-tile-4 {
    animation: floatTile4 6.5s infinite ease-in-out;
}

.portfolio-page-wrapper .float-tile-5 {
    animation: floatTile5 7.5s infinite ease-in-out;
}

.portfolio-page-wrapper .float-tile-6 {
    animation: floatTile6 8.5s infinite ease-in-out;
}

@keyframes floatTile1 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes floatTile2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes floatTile3 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes floatTile4 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes floatTile5 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes floatTile6 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-11px);
    }
}

/* Grid Control Bar Design */
.grid-control-bar {
    background: #fff;
    border-radius: 20px;
    padding: 12px 25px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.portfolio-grid-toggle {
    display: flex;
    gap: 5px;
    background: #f8fafc;
    padding: 4px;
    border-radius: 100px;
    border: 1px solid #e2e8f0;
}

.toggle-option {
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #191c21;
    background: transparent;
    border: none;
}

.toggle-option.active {
    background: var(--secondary-color);
    color: #fff;
    box-shadow: 0 5px 15px rgba(27, 51, 123, 0.15);
}

.results-count {
    font-weight: 700;
    color: #1e293b;
    font-size: 0.85rem;
}

.results-count span {
    color: var(--primary-color);
}

/* Filter Sidebar Upgrade - More Compact */
.filter-sidebar {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
    position: sticky;
    top: 100px;
}

.filter-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: #0f172a;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Portfolio Card & Z-Index Fixes */
.portfolio-card {
    background: #fff;
    border-radius: 20px;
    overflow: visible;
    /* Important for badge overlap */
    border: 1px solid #f1f5f9;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(27, 51, 123, 0.08);
    border-color: var(--primary-color);
}

.card-media {
    position: relative;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    z-index: 1;
    /* Base layer */
}

.card-media img {
    width: 100%;
    height: auto;
    transition: 0.6s;
}

.portfolio-card:hover .card-media img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 51, 123, 0.4);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
    z-index: 5;
    /* Above image, below badge */
}

.portfolio-card:hover .card-overlay {
    opacity: 1;
}

.view-btn {
    background: #fff;
    color: var(--secondary-color);
    padding: 10px 25px;
    border-radius: 100px;
    font-weight: 800;
    text-decoration: none !important;
    font-size: 0.85rem;
    transform: translateY(10px);
    transition: 0.4s;
}

.portfolio-card:hover .view-btn {
    transform: translateY(0);
}

.card-content {
    padding: 10px 25px 25px 25px;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    z-index: 10;
    /* Above media for the badge overlap */
}

.creator-badge {
    position: absolute;
    top: -22px;
    left: 20px;
    background: #fff;
    padding: 6px 16px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    z-index: 20;
    /* LIFTED: Above the card-overlay */
    border: 1px solid #f1f5f9;
    transition: 0.3s;
}

.portfolio-card:hover .creator-badge {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.creator-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.creator-name {
    font-size: 0.75rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
}

.template-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    margin: 15px 0;
    line-height: 1.3;
    text-decoration: none !important;
    display: block;
    transition: 0.3s;
}


.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.category-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #191c21;
    background: #f1f5f9;
    padding: 4px 12px;
    border-radius: 100px;
}

.price-tag {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--secondary-color);
}

.card-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn-icon-premium {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #191c21;
    transition: 0.3s;
}

.btn-icon-premium:hover {
    background: #f1f5f9;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-primary-premium {
    flex: 1;
    background: var(--secondary-color);
    color: #fff !important;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    text-decoration: none !important;
    font-size: 0.85rem;
    transition: 0.3s;
}

.btn-primary-premium:hover {
    background: #15296b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27, 51, 123, 0.2);
}

/* ==========================================================================
           CART SPECIFIC PREMIUM STYLES
           ========================================================================== */
.cart-item-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-item-card:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(var(--primary-rgb), 0.15);
    transform: translateY(-4px);
}

.cart-item-media {
    width: 160px;
    height: 120px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.delete-btn-premium {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(239, 68, 68, 0.08);
    color: #ef4444;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.delete-btn-premium:hover {
    background: #ef4444;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(239, 68, 68, 0.3);
}

.addon-row {
    background: #f8fafc;
    border-radius: 16px;
    padding: 16px 20px;
    margin-top: 12px;
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.addon-row:hover {
    background: #f1f5f9;
}

/* Modern Switch */
.modern-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
}

.modern-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: .4s;
    border-radius: 26px;
}

.switch-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

input:checked+.switch-slider {
    background: linear-gradient(135deg, var(--primary-color), #2563eb);
}

input:checked+.switch-slider:before {
    transform: translateX(22px);
}

.summary-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 36px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 120px;
}

.coupon-box {
    background: #f8fafc;
    border-radius: 20px;
    padding: 24px;
    border: 1px dashed #cbd5e1;
}

/* Premium Checkbox Design */
.premium-checkbox .form-check-input {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid #cbd5e1;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #fff;
}

.premium-checkbox .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(var(--primary-rgb), 0.25);
}

.premium-checkbox .form-check-input:focus {
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.15);
    border-color: var(--primary-color);
}

.premium-checkbox label {
    cursor: pointer;
}

/* Custom Tooltip */
.custom-tooltip-icon {
    position: relative;
    cursor: help;
    color: #94a3b8;
    transition: color 0.2s;
    font-size: 0.9rem;
}

.custom-tooltip-icon:hover {
    color: var(--primary-color);
}

.custom-tooltip-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #0f172a;
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-family: var(--font-premium, 'Inter', sans-serif);
    font-weight: 600;
    width: max-content;
    max-width: 220px;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
    pointer-events: none;
    z-index: 100;
}

.custom-tooltip-icon::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    border-width: 6px;
    border-style: solid;
    border-color: #0f172a transparent transparent transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 100;
}

.custom-tooltip-icon:hover::after,
.custom-tooltip-icon:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}


.top-bar-announcement {
    position: absolute;
    width: 55%;
    top: -30px;
    background: #1b337b;
    height: 67px;
    border-radius: 78px;
    left: 50%;
    transform: translate(-50%);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.top-bar-announcement h3 {
    text-align: center;
    color: #fff;
    padding: 3px 0px;
    font-size: 20px;
}

/* --- Premium Responsive and Search Styles --- */

@media (max-width: 991.98px) {
    .top-bar-announcement {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        padding: 10px 15px !important;
        border-radius: 30px !important;
        margin: 0 auto 12px auto !important;
        z-index: 1 !important;
        display: none;
    }

    .top-bar-announcement h3 {
        font-size: 13px !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1.4 !important;
    }

    .navbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        padding: 10px 15px !important;
        background: rgba(255, 255, 255, 0.95) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
        backdrop-filter: blur(10px);
    }

    .navbar-container-pill {
        padding: 8px 20px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .nav-end {
        display: flex !important;
        align-items: center !important;
        flex-shrink: 0 !important;
    }

    .logo-area img {
        height: 32px !important;
    }
}

/* Mobile Menu Trigger & Hamburger Animation */
.mobile-menu-trigger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1100;
    position: relative;
    outline: none !important;
}

.mobile-menu-trigger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #131313;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transform-origin: left center;
}

.mobile-menu-trigger.active span:nth-child(1) {
    transform: rotate(45deg) translate(3px, -1px);
    background-color: var(--secondary-color);
}

.mobile-menu-trigger.active span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.mobile-menu-trigger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(3px, 1px);
    background-color: var(--secondary-color);
}

/* Mobile Drawer Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1080;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: -15px 0 45px rgba(15, 23, 42, 0.1);
    z-index: 1090;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 35px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-drawer.active {
    right: 0;
}

.mobile-drawer-header {
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    padding-bottom: 20px;
}

.mobile-nav-links .mobile-nav-link {
    font-family: var(--font-heading) !important;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #131313 !important;
    text-decoration: none !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.03);
    transition: all 0.3s ease;
}

.mobile-nav-links .mobile-nav-link:hover,
.mobile-nav-links .mobile-dropdown.active>.mobile-nav-link {
    color: var(--primary-color) !important;
    padding-left: 5px;
}

.mobile-nav-link i.transition-rotate {
    transition: transform 0.3s ease;
    font-size: 14px;
}

.mobile-dropdown.active i.transition-rotate {
    transform: rotate(180deg);
}

.mobile-submenu {
    background: rgba(15, 23, 42, 0.02);
    border-radius: 12px;
    border-left: 2px solid var(--primary-color);
    padding-top: 5px;
    padding-bottom: 5px;
}

.mobile-submenu-link {
    font-family: var(--font-premium, 'Outfit', sans-serif);
    font-size: 15px;
    font-weight: 500;
    color: #4b5563 !important;
    text-decoration: none !important;
    display: block;
    padding: 8px 15px;
    transition: all 0.3s ease;
}

.mobile-submenu-link:hover {
    color: var(--primary-color) !important;
    background: rgba(34, 157, 120, 0.05);
    border-radius: 6px;
}

/* Animated Search Overlay Styling */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.search-close-btn {
    position: absolute;
    top: 40px;
    right: 40px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 32px;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-close-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.search-dialog {
    width: 90%;
    max-width: 750px;
    text-align: left;
    transform: scale(0.9) translateY(30px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-overlay.active .search-dialog {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.search-input-icon {
    font-size: 28px;
    color: var(--primary-color);
    margin-right: 20px;
    animation: pulseGlow 2s infinite ease-in-out;
}

.search-input-field {
    width: 100%;
    background: transparent;
    border: none;
    outline: none !important;
    color: #fff;
    font-family: var(--font-heading) !important;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.search-input-field::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.search-input-line {
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-50%);
}

.search-input-field:focus~.search-input-line {
    width: 100%;
    box-shadow: 0 0 15px rgba(34, 157, 120, 0.5);
}

.suggestions-title {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-family: var(--font-premium, 'Outfit', sans-serif);
}

.suggestion-tag {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-family: var(--font-premium, 'Outfit', sans-serif);
    font-weight: 500;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.suggestion-tag:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 157, 120, 0.25);
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        text-shadow: 0 0 0px rgba(34, 157, 120, 0);
    }

    50% {
        transform: scale(1.08);
        text-shadow: 0 0 10px rgba(34, 157, 120, 0.6);
    }
}

@media (max-width: 767.98px) {
    .portfolio-grid-toggle{
        margin-top: 20px !important;
    }
    .search-close-btn {
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .search-input-field {
        font-size: 20px;
    }

    .search-input-icon {
        font-size: 20px;
    }

    .suggestion-tag {
        font-size: 12px;
        padding: 6px 14px;
    }
}

/* --- Micro-interactions & Spacing for Nav End Actions --- */
.nav-end a:not(.btn-premium-global) {
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #131313 !important;
    text-decoration: none !important;
}

.nav-end a:not(.btn-premium-global):hover {
    color: var(--primary-color) !important;
    background: rgba(34, 157, 120, 0.08);
    transform: scale(1.05);
}

@media (max-width: 991.98px) {
    .nav-end {
        gap: 10px !important;
    }

    .nav-end a:not(.btn-premium-global) {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 50px 0;

    }

    .home-page-heading {
        font-size: 32px;
    }

    .hero-sup-title {
        margin-bottom: 5px;
        letter-spacing: 1px;
        font-size: 0.8rem;
    }

    .hero-aurora-section {

        padding: 90px 0 40px;
    }

    .hero-aurora-title {
        margin-bottom: 0px;
        font-size: 4.0rem;
        text-align: center;
        margin-top: 30px;
    }
    .hero-actions{
        display: none;
    }
    
.hero-sup-title{
    display: none;
}
.hero-aurora-desc{
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin: 40px 0px;
}
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-visual-modern {
        display: none;
    }

    .about-author-row {
        display: none;
    }

    .pkg-hero {
        padding: 85px 0 40px;
    }

    .portfolio-page-wrapper .hero-aurora-section {
        padding: 85px 0 40px;
    }

    .portfolio-page-wrapper .hero-aurora-title {
        margin: 0px !important;
    }

    .portfolio-page-wrapper .pkg-breadcrumb-pill {
        margin-bottom: 10px;
    }

    .portfolio-page-wrapper .hero-aurora-desc {
        margin-bottom: 15px;
    }

    .pkg-guarantee-badge {
        display: none;
    }

    .portfolio-page-wrapper .showcase-pill-header {
        display: none;
    }
}

@media (max-width: 650px) {
    .v-split-nav {
        height: 50px;
        width: 50px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-split-footer {
        flex-direction: column;
    }

    .stat-glass-card {
        gap: 5px;
        padding: 5px;
    }

    .stat-info h3 {
        font-size: 22px;
    }

    .v-split-slider-container {
        height: 280px;
    }

    .portfolio-page-wrapper .portfolio-hero-split-showcase {
        flex-direction: column;
        gap: 15px;
    }

    .portfolio-page-wrapper .theme-card-main {
        height: 320px;

    }

    .grid-control-bar{
        flex-direction: column;
        padding: 4px 3px;
    }
.portfolio-grid-toggle{
    margin-top: 10px !important;
}
.mobile_text{
    font-size: 16px !important;
}
}

@media (max-width: 470px) {
    .category-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* ==========================================================================
   INTERACTIVE PILL BRAND CATEGORIES & CUSTOM CARDS STYLES
   ========================================================================== */

/* Category Pills Container */
.category-pills-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    /* max-width: 1100px; */
    padding: 10px 0;
}

/* Individual Pill Buttons */
.category-pill {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    color: #0f172a;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    padding: 8px 18px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
    user-select: none;
    letter-spacing: 0.5px;
}

.category-pill:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #000;
}

.category-pill.active {
    border: 1px solid #0f172a !important;
    font-weight: 500;
    padding-top: 7px;
    padding-bottom: 7px;
}

/* Templates Section Showcase Container */
.category-showcase-container {
    position: relative;
    width: 100%;
    z-index: 1;
}

/* Modern Pill Template Card (Matching User Screenshot) */
.pill-template-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.015);
}

.pill-template-card:hover {
    transform: translateY(-5px);
    border-color: #cbd5e1;
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.06);
}

/* Template Card Media Image */
.pill-template-card .card-media {
    position: relative;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
}

.pill-template-card .card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.pill-template-card:hover .card-media img {
    transform: scale(1.04);
}

/* Card Body Content */
.pill-template-card .card-body {
    padding: 16px 0 0 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: transparent;
}

.pill-template-card .template-title {
    font-family: inherit;
    font-weight: 500;
    font-size: 1rem;
    color: #0f172a;
    letter-spacing: 0.2px;
    margin: 0 0 6px 0;
    text-decoration: none !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    line-height: 1.3;
}

.pill-template-card .template-author {
    font-size: 0.78rem;
    color: #000000;
    font-weight: 500;
    margin: 0 0 18px 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    letter-spacing: 0.3px;
}

/* Card Footer Row Layout */
.pill-template-card .card-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.pill-template-card .price-tag {
    font-weight: 800;
    color: #0f172a;
    font-size: 1.3rem;
    font-family: inherit;
    line-height: 1;
}

.pill-template-card .action-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Shopping Cart Square Button */
.pill-template-card .btn-icon-cart {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
    font-size: 0.95rem;
}

.pill-template-card .btn-icon-cart:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(34, 157, 120, 0.2);
    transform: translateY(-1px);
}

/* Live Preview Text Button */
.pill-template-card .btn-live-preview {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff !important;
    background: var(--primary-color);
    border: none;
    border-radius: 6px;
    text-decoration: none !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    height: 38px;
    box-shadow: 0 4px 10px rgba(34, 157, 120, 0.15);
}

.pill-template-card .btn-live-preview:hover {
    background: var(--secondary-color);
    color: #ffffff !important;
    box-shadow: 0 6px 15px rgba(27, 51, 123, 0.25);
    transform: translateY(-1px);
}

/* Bottom Actions Showcase Buttons */
.btn-showcase-primary {
    background: var(--primary-color) !important;
    color: #ffffff !important;
    padding: 12px 30px;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary-color) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 13px;
    cursor: pointer;
}

.btn-showcase-primary:hover {
    background: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 20px rgba(34, 157, 120, 0.15);
    transform: translateY(-2px);
}

.btn-showcase-secondary {
    background: #ffffff !important;
    color: var(--secondary-color) !important;
    padding: 12px 30px;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--secondary-color) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 13px;
    cursor: pointer;
}

.btn-showcase-secondary:hover {
    background: var(--secondary-color) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.1);
    transform: translateY(-2px);
}

/* Shimmer Loading placeholders */
.skeleton-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    height: 345px;
    display: flex;
    flex-direction: column;
}

.skeleton-media {
    height: 200px;
    background: linear-gradient(90deg, #f8fafc 25%, #f1f5f9 50%, #f8fafc 75%);
    background-size: 200% 100%;
    animation: shimmerPulse 1.5s infinite;
    border-radius: 8px;
}

.skeleton-body {
    padding: 16px 0 0 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.skeleton-line {
    background: linear-gradient(90deg, #f8fafc 25%, #f1f5f9 50%, #f8fafc 75%);
    background-size: 200% 100%;
    animation: shimmerPulse 1.5s infinite;
    border-radius: 4px;
}

.skeleton-title {
    height: 20px;
    width: 80%;
}

.skeleton-meta {
    height: 14px;
    width: 45%;
    margin-top: 6px;
    margin-bottom: auto;
}

.skeleton-button {
    height: 38px;
    width: 100%;
    border-radius: 6px;
    margin-top: 15px;
}

@keyframes shimmerPulse {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Mobile responsive scroll views for pills */
@media (max-width: 991px) {
    .category-pills-wrapper {
        justify-content: flex-start;
    }

    .category-pills {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 10px !important;
        justify-content: flex-start !important;
        padding-bottom: 15px !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .category-pill {
        flex: 0 0 auto !important;
        scroll-snap-align: start !important;
    }
}
.rajdhani_font{
    font-family: "Rajdhani", sans-serif !important;
}