:root {
    --pc-bg: #f8fafc;
    --pc-card-bg: #ffffff;
    --pc-primary: #23029b;
    --pc-secondary: #0f172a;
    --pc-text: #334155;
    --pc-border: rgba(0, 0, 0, 0.05); 
    --percento-dark: #353535;  
    --percento-hero-radius: 0 0 4rem 4rem;
}

/* --- Global Scrollbar Hidden --- */
/* Chrome, Safari, and Edge */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

/* Firefox and IE/Edge */
html, body {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

body {
    background-color: var(--pc-bg);
    color: var(--pc-text); 
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden; 
}

/* --- Navbar --- */
.percento-navbar {
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--pc-border);
    padding: 1.2rem 0;
    transition: all 0.3s ease;
}

.percento-navbar.scrolled {
    padding: 0.7rem 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

/* --- Logo & Image Setup --- */
.percento-logo {
    display: flex;
    align-items: center;
    gap: 10px; /* ইমেজ এবং টেক্সটের মাঝখানের দূরত্ব */
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--pc-secondary) !important;
    text-decoration: none;
}

.percento-logo img {
    height: 35px; /* ডেস্কটপে ইমেজের হাইট */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.percento-logo span {
    color: var(--pc-primary);
}

 
.percento-nav-hotline {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.05); /* হালকা ব্যাকগ্রাউন্ড */
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 100px; /* ক্যাপসুল ডিজাইন */
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hotline-icon-wrapper {
    position: relative;
    width: 40px;
    height: 40px;
    background: var(--pc-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

/* পালসিং স্ট্যাটাস ডট */
.status-dot {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background: #10b981; /* Green */
    border: 2px solid white;
    border-radius: 50%;
}

.status-dot::after {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    border-radius: 50%;
    border: 2px solid #10b981;
    animation: hotline-pulse 2s infinite;
}

.hotline-content {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.hotline-label {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
}

.hotline-number {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
}

/* Hover Effects */
.percento-nav-hotline:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    border-color: var(--percento-accent);
}

.percento-nav-hotline:hover .hotline-icon-wrapper {
    transform: rotate(15deg);
}

/* Animation */
@keyframes hotline-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .hotline-label { display: none; } /* মোবাইলে শুধু নম্বর দেখাবে */
    .percento-nav-hotline { padding: 6px 12px; }
}
 
 
/* --- Mobile Floating Navigation Updated --- */
@media (max-width: 991px) {
    .mobile-premium-nav {
        display: flex; /* মোবাইলে শো করবে */
        position: fixed;
        bottom: 25px;
        left: 20px;
        right: 20px;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 30px;
        padding: 10px 15px;
        z-index: 9999;
        box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        border: 1px solid rgba(255,255,255,0.08);
        align-items: center;
        justify-content: space-around;
    }

    .m-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: rgba(255, 255, 255, 0.6) !important;
        text-decoration: none;
        font-size: 0.75rem;
        font-weight: 600;
        transition: 0.3s;
    }

    .m-btn i {
        margin-bottom: 4px;
    }

    /* মাঝখানের বড় বাটন (Let's Talk) */
    .m-btn-center {
        position: relative;
        z-index: 10000;
        margin-top: -45px; /* এটি বাটনটিকে উপরে তুলবে */
    }

    .center-circle {
        width: 65px;
        height: 65px;
        background: linear-gradient(135deg, #6366f1, #a855f7);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.8rem;
        box-shadow: 0 10px 25px rgba(99, 102, 241, 0.5);
        border: 5px solid #0f172a; /* ডকের সাথে মিশিয়ে দেওয়ার জন্য বর্ডার */
        transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .m-btn-center:active .center-circle {
        transform: scale(0.9);
    }

    .m-text {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }

    /* Active State Color */
    .m-btn:hover, .m-btn:focus {
        color: #fff !important;
    }
}




 
/* --- Hero & Typography --- */
.percento-hero {
    padding: 160px 0 100px 0;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.05), transparent);
    border-radius: var(--percento-hero-radius);
}

.percento-display {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 800;
    color: var(--pc-secondary);
    line-height: 1.1;
    letter-spacing: -2px;
}

.percento-gradient-text {
    background: linear-gradient(to right, #6366f1, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Premium Buttons --- */
.percento-btn-primary {
    background: var(--pc-secondary);
    color: #fff;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.percento-btn-primary:hover {
    background: var(--pc-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
    color: #fff;
}

/* --- Mockup Animations --- */
.percento-mockup-stack { position: relative; padding-right: 40px; }

.percento-mockup-web {
    background: #fff;
    border-radius: 20px;
    padding: 15px;
    border: 1px solid var(--pc-border);
    box-shadow: 0 40px 80px rgba(0,0,0,0.08);
    position: relative;
    z-index: 1;
}

.percento-mockup-mobile {
    position: absolute;
    width: 210px;
    height: 430px;
    background: #272a3e;
    border: 9px solid #272a3e;
    border-radius: 38px;
    bottom: -60px;
    right: -25px;
    z-index: 10;
    box-shadow: 0 40px 60px rgba(0,0,0,0.25);
    overflow: hidden;
    animation: percento-float 5s ease-in-out infinite;
}

@keyframes percento-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* --- App Inside Mobile Mockup --- */
.percento-mobile-inner { background: #f8fafc; height: 100%; display: flex; flex-direction: column; position: relative; }
.percento-mobile-notch { width: 65px; height: 20px; background: #272a3e; border-radius: 20px; position: absolute; top: 10px; left: 50%; transform: translateX(-50%); z-index: 11; }
.percento-mobile-content { padding: 40px 15px 15px 15px; flex-grow: 1; }
.percento-app-card-premium { background: linear-gradient(135deg, #6366f1, #4f46e5); border-radius: 18px; padding: 15px; color: white; margin-bottom: 15px; box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2); }
.percento-app-stat-row { display: flex; gap: 10px; margin-bottom: 15px; }
.percento-app-mini-card { background: white; flex: 1; height: 60px; border-radius: 14px; padding: 8px; border: 1px solid rgba(0,0,0,0.03); }
.percento-app-chart-line { height: 4px; background: #e2e8f0; border-radius: 10px; margin-top: 8px; position: relative; overflow: hidden; }
.percento-app-chart-line::after { content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 60%; background: var(--pc-primary); }
.percento-mobile-footer { height: 55px; background: white; border-top: 1px solid #f1f5f9; display: flex; justify-content: space-around; align-items: center; }
.percento-footer-dot { width: 10px; height: 10px; border-radius: 50%; background: #e2e8f0; }
/* মোবাইল মকআপের ভেতরে লোগো আইকন স্টাইল */
.percento-app-logo-wrapper {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.percento-app-logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* ইমেজ যেন কেটে না যায় */
}

/* --- Bento Cards --- */
.percento-bento-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 32px;
    padding: 40px;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.percento-bento-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: 0.5s;
}

.percento-bento-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.15);
}

.percento-bento-card:hover::before { opacity: 1; }

.bento-icon-wrapper {
    width: 64px; height: 64px;
    background: #f1f5f9;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 25px;
    transition: 0.5s;
    color: var(--pc-primary);
    position: relative;
    z-index: 2;
}

.percento-bento-card:hover .bento-icon-wrapper {
    background: var(--pc-primary);
    color: #fff;
    transform: rotate(-10deg) scale(1.1);
}

.bento-badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 800;
    color: var(--pc-primary);
    margin-bottom: 12px;
    display: block;
    opacity: 0.7;
}

.bento-link {
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--pc-primary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}


/* ============================================================
   FOOTER 
   ============================================================ */ 
.percento-footer {
    background: #ffffff;
    padding: 100px 0 40px 0;
    border-top: 1px solid #f1f5f9;
}

.percento-footer-brand .percento-footer-logo {
    font-size: 1.6rem;
    letter-spacing: -0.5px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    color: #0f172a !important;
    margin-bottom: 20px;
}

.percento-footer-brand .percento-footer-logo span {
    color: var(--pc-primary);
}

.percento-footer-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 450;
    max-width: 320px;
}

.percento-footer-heading {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
}

.percento-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.percento-footer-links li {
    margin-bottom: 15px;
}

.percento-footer-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.percento-footer-links a:hover {
    color: var(--pc-primary);
    transform: translateX(5px);
}

.percento-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.percento-footer-social-icon {
    width: 40px;
    height: 40px;
    background: #f8fafc;
    color: #64748b;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: 0.3s;
    border: 1px solid #f1f5f9;
    text-decoration: none;
}

.percento-footer-social-icon:hover {
    background: #0f172a;
    color: #ffffff;
    transform: translateY(-3px);
}

/* --- Bottom Section --- */
.percento-footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.percento-footer-copyright {
    color: #94a3b8;
    font-size: 0.85rem;
}

.percento-footer-legal a {
    color: #94a3b8;
    font-size: 0.85rem;
    margin-left: 25px;
    text-decoration: none;
    transition: 0.2s;
}

.percento-footer-legal a:hover {
    color: var(--pc-primary);
}


/* --- Responsive Fixes --- */
@media (max-width: 991px) {
    body{padding-bottom: 80px;}
    .navbar-collapse { display: none !important; }
    .mobile-premium-nav { display: flex; }
    .percento-hero { text-align: center; padding-top: 120px; }
    .percento-mockup-stack { padding-right: 0; margin-top: 40px; margin-bottom: 80px; }
    
    .percento-mockup-mobile { 
        width: 150px; height: 320px; 
        bottom: -40px; right: 40px; 
        border-width: 6px; 
        border-radius: 30px;
    }

    .percento-logo img {
        height: 28px; /* মোবাইলে ইমেজের হাইট কিছুটা ছোট হবে */
    }
    .percento-logo {
        font-size: 1.2rem;
    }

    .percento-footer-bottom {
        justify-content: center;
        text-align: center;
    }
}


/* ============================================================
   TECH STACK - HOME PAGE
   ============================================================ */ 
.percento-tech-section {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.percento-tech-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    color: #94a3b8;
    text-align: center;
    margin-bottom: 60px;
}

.percento-tech-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.percento-tech-item {
    display: flex;
    align-items: center;
    gap: 15px;
    /* শুরুতে ইমেজগুলো হালকা সাদা-কালো থাকবে */
    filter: grayscale(1);
    opacity: 0.6;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.percento-tech-img {
    height: 40px; /* লোগোর হাইট কন্ট্রোল */
    width: auto;
    object-fit: contain;
}

.percento-tech-item:hover {
    filter: grayscale(0); /* হোভার করলে রঙিন হবে */
    opacity: 1;
    transform: translateY(-8px);
}

.percento-tech-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.2px;
}

/* মোবাইল রেসপন্সিভ */
@media (max-width: 768px) {
    .percento-tech-wrapper {
        gap: 40px;
    }
    .percento-tech-img {
        height: 30px;
    }
    .percento-tech-name {
        font-size: 0.9rem;
    }
}




/* ============================================================
   PROJECT SHOWCASE - HOME PAGE
   ============================================================ */ 
.percento-project-section {
    padding: 120px 0;
    background: #fcfcfd;
}

.percento-project-header {
    margin-bottom: 80px;
}

.percento-project-tag {
    color: #6366f1;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.percento-project-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-top: 15px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.percento-project-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.percento-project-img-wrapper {
    width: 100%;
    height: 480px;
    overflow: hidden;
    background: #f1f5f9;
}

.percento-project-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.percento-project-content {
    padding: 35px;
    background: #ffffff;
}

.percento-project-category {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.percento-project-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    text-decoration: none;
    transition: 0.3s;
}

.percento-project-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.08);
}

.percento-project-card:hover .percento-project-img-wrapper img {
    transform: scale(1.08);
}

/* Custom Premium Button */
.percento-project-btn {
    display: inline-block;
    padding: 16px 45px;
    border: 2px solid #0f172a;
    border-radius: 50px;
    color: #0f172a;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.percento-project-btn:hover {
    background: #0f172a;
    color: #ffffff;
}

@media (max-width: 991px) {
    .percento-project-img-wrapper { height: 350px; }
    .percento-project-title { font-size: 2rem; }
}



/* ============================================================
   WORK PROCESS - HOME PAGE
   ============================================================ */ 
.percento-process-section {
    padding: 120px 0;
    background: #ffffff;
}

.percento-process-header {
    margin-bottom: 80px;
}

.percento-process-step-card {
    padding: 45px;
    border-radius: 30px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    height: 100%;
    transition: all 0.4s ease;
}

.percento-process-step-card:hover {
    background: #ffffff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
    border-color: #6366f1; /* Primary Color Border */
}

.percento-process-number {
    width: 50px;
    height: 50px;
    background: #6366f1;
    color: #ffffff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.percento-process-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.percento-process-step-desc {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* কানেক্টিং লাইন ইফেক্ট (ডেস্কটপের জন্য) */
@media (min-width: 992px) {
    .percento-process-row {
        position: relative;
    }
}

 
/* =========================================
PERCENTO PROJECTS PAGE  
=========================================
*/
 
.percento-projects-hero {
    padding: 240px 0 150px 0;
    background: #353535; 
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #1a1a1c;
    display: flex;
    align-items: center;
    border-radius: var(--percento-hero-radius);
}

.percento-hero-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(26, 26, 28, 0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 26, 28, 0.4) 1px, transparent 1px);
    background-size: 80px 80px;
    background-position: center top;
    z-index: 1;
    border-radius: var(--percento-hero-radius);
}

/* Desktop Floating Box */
.percento-hero-floating-box {
    width: 700px;
    height: 400px;
    background: #111114;
    border: 1px solid #1a1a1c;
    border-radius: 12px;
    position: absolute;
    top: 55%;
    left: 60%;
    transform: translate(-50%, -50%) rotate(-12deg);
    z-index: 2;
    box-shadow: 100px 100px 200px rgba(0,0,0,0.3);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.percento-hero-floating-box:hover {
    transform: translate(-50%, -50%) rotate(0deg) scale(1.02);
    border-color: #6366f1;
}

.percento-hero-floating-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.7);
}

.percento-hero-container {
    position: relative;
    z-index: 10;
}

.percento-hero-eyebrow {
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #6366f1;
    margin-bottom: 15px;
    display: block;
}

.percento-hero-large-title {
    font-size: clamp(3.5rem, 15vw, 8rem);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -6px;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    position: relative;
}

.percento-hero-large-title span {
    display: block;
    mix-blend-mode: difference;
}

/* 3. Luxury Asymmetric Grid */
.percento-luxury-grid {
    padding: 120px 0;
    background: #ffffff;
}

.percento-luxury-card {
    position: relative;
    margin-bottom: 120px;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.percento-luxury-img-box {
    width: 100%;
    height: 580px;
    overflow: hidden;
    border-radius: 8px; 
    background: #f8fafc;
    position: relative;
}

.percento-luxury-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.8);
    transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.percento-luxury-card:hover .percento-luxury-img-box img {
    transform: scale(1.05);
    filter: saturate(1.1);
}

/* 4. Floating Project Info Boxes */
.percento-luxury-info {
    position: absolute;
    bottom: -40px;
    right: 40px;
    background: #ffffff;
    padding: 45px;
    width: 85%;
    max-width: 480px;
    box-shadow: 25px 25px 70px rgba(0,0,0,0.06);
    z-index: 10;
    border: 1px solid #f1f5f9;
}

.percento-luxury-tag {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #6366f1;
    margin-bottom: 15px;
    display: block;
}

.percento-luxury-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    text-decoration: none;
    line-height: 1.2;
    display: block;
    transition: 0.3s;
}

.percento-luxury-name:hover {
    color: #6366f1;
}

/* 5. Restored Load More Button */
.percento-load-more-wrapper {
    padding: 60px 0 2px 0;
    text-align: center;
}

.percento-btn-load {
    position: relative;
    padding: 22px 55px;
    background: #0f172a;
    color: #ffffff !important;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: none;
    cursor: pointer;
    overflow: hidden;
}

.percento-btn-load:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.25);
    background: #1e293b;
}

/* 6. Mobile & Responsive Refinements (FIXED) */
@media (max-width: 991px) {
    .percento-projects-hero { 
        padding: 160px 0 80px 0; 
        min-height: 70vh;
        /* মোবাইলে কালো ব্যাকগ্রাউন্ডের পেছনে হালকা ইমেজ ওভারলে */
        background: linear-gradient(rgba(11, 11, 13, 0.8), rgba(11, 11, 13, 0.8)), 
                    url('your-hero-image.jpg') center center / cover; 
    }
    
    /* মোবাইলে ফ্লোটিং বক্সের বদলে ফুল ব্যাকগ্রাউন্ড ইমেজ ব্যবহার করা হয়েছে */
    .percento-hero-floating-box { display: none; }
    
    .percento-hero-large-title {
        font-size: 4rem;
        letter-spacing: -2px;
        line-height: 1;
    }

    .percento-luxury-info { 
        position: static; 
        width: 100%; 
        max-width: 100%; 
        padding: 30px 20px; 
        box-shadow: none;
        border: none;
        border-bottom: 1px solid #f1f5f9;
        margin-top: -20px; /* ইমেজ বক্সের সাথে কিছুটা মেলানোর জন্য */
    }

    .percento-luxury-img-box { 
        height: 320px; 
        border-radius: 12px;
    }

    .percento-luxury-card {
        margin-bottom: 60px;
    }
}

@media (max-width: 576px) {
    .percento-hero-large-title { 
        font-size: 3.2rem; 
        letter-spacing: -1px; 
    }
    .percento-projects-hero {
        padding: 120px 0 60px 0;
    }
    .percento-luxury-name {
        font-size: 1.4rem;
    }
}
 
/* ============================================================
   PERCENTO PROJECT DETAILS  
   ============================================================ */

   /* --- Hero Section --- */
.percento-detail-hero-mini {
    padding: 180px 0 120px 0;
    background: var(--percento-dark);
    position: relative;
    text-align: center; /* মোবাইলে টেক্সট সেন্টারে থাকলে প্রিমিয়াম লাগে */
    border-radius: var(--percento-hero-radius);
}

@media (min-width: 992px) {
    .percento-detail-hero-mini { text-align: left; padding: 80px 0 140px 0; }
}

.percento-title-sm {
    font-size: clamp(2.2rem, 8vw, 4.5rem);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -1.5px;
    line-height: 1;
    margin-top: 20px;
}

/* --- Video Wrapper (The Fix) --- */
.percento-video-wrapper {
    position: relative;
    z-index: 20;
    background: #645f5f;
    overflow: hidden;
    /* মোবাইলে ভিডিওর জন্য বিশেষ ফ্রেম */
    margin-top: -60px;
    border-radius: 16px; 
    box-shadow: 0 30px 80px rgba(0,0,0,0.4); 
    width: 94%; /* মোবাইলে দুই পাশে স্লাইট গ্যাপ প্রিমিয়াম ফিল দেয় */
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    .percento-video-wrapper {
        margin-top: -80px;
        border-radius: 24px;
        width: 100%;
    }
}

.percento-video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.percento-video-container iframe {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border: 0;
}

/* --- Specs Glass Card --- */
.percento-specs-glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid #f1f5f9;
    padding: 30px;
    border-radius: 20px;
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr; /* মোবাইলে ২ কলাম গ্রিড */
    gap: 25px;
}

@media (min-width: 768px) {
    .percento-specs-glass {
        grid-template-columns: repeat(4, 1fr);
        padding: 40px;
        margin-top: 50px;
    }
}

.percento-spec-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.percento-spec-data {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
}

/* --- Gallery Section --- */
.percento-gallery { padding: 80px 0; }

.percento-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px; /* মোবাইলে টাইট গ্যাপ */
    background: #f8fafc;
}

@media (min-width: 992px) {
    .percento-gallery-item { border-radius: 20px; margin-bottom: 30px; }
    .img-tall { height: 650px; object-fit: cover; }
    .img-wide { height: 400px; object-fit: cover; }
}


/* --- Project Narrative Styles --- */
.percento-project-narrative {
    padding: 100px 0;
    background: #ffffff;
}

.percento-narrative-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: #0f172a;
    letter-spacing: -2px;
    margin-bottom: 40px;
}

.percento-narrative-title span {
    color: var(--pc-primary);
}



.percento-narrative-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #475569;
    font-weight: 400;
}

/* Highlights Sidebar Card */
.percento-highlights-card {
    background: #f8fafc;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
}

.percento-highlight-heading {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.percento-feature-list {
    list-style: none;
    padding: 0;
}

.percento-feature-list li {
    margin-bottom: 25px;
    padding-left: 0;
}

.percento-feature-list li strong {
    display: block;
    font-size: 1rem;
    color: #0f172a;
    margin-bottom: 5px;
}

.percento-feature-list li p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .percento-project-narrative { padding: 60px 0; }
    .percento-narrative-title { font-size: 1.8rem; margin-bottom: 20px; }
    .percento-highlights-card { margin-top: 50px; padding: 25px; }
}
 

/* ============================================================
   CONTACT - PAGE
   ============================================================ */

/* --- Contact Hero --- */
.percento-contact-hero {
    padding: 80px 0 100px 0;
    background: #353535;
    position: relative;
}

.percento-contact-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -2px;
}

.percento-contact-title span {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Info Cards --- */
.percento-contact-details {
    background: #ffffff;
    padding: 100px 0;
    margin-top: -50px; /* Hero-র সাথে স্লাইট ওভারল্যাপ */
}

.percento-info-card {
    padding: 50px 40px;
    border-radius: 24px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    text-align: center;
    transition: 0.4s ease;
    height: 100%;
}

.percento-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}

.percento-info-card.highlighted {
    background: #0f172a;
    color: #ffffff;
}

.info-icon {
    font-size: 2.5rem;
    color: #6366f1;
    margin-bottom: 20px;
}

.highlighted .info-icon {
    color: #a855f7;
}

.percento-info-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.percento-info-card p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 5px;
}

.highlighted p {
    color: #cbd5e1;
}

/* --- Map Style --- */
.percento-map-section {
    filter: grayscale(100%) invert(92%) contrast(83%); /* Map-টিকে প্রিমিয়াম গ্রে থিম দেওয়ার জন্য */
    opacity: 0.8;
    transition: 0.5s;
}

.percento-map-section:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Mobile Fixes */
@media (max-width: 768px) {
    .percento-contact-hero { padding: 120px 0 80px 0; }
    .percento-contact-details { padding: 60px 0; margin-top: 0; }
    .percento-info-card { padding: 30px 20px; }
}

 

/* ============================================================
   ABOUT - PAGE
   ============================================================ */

 /* --- 1. Creative Hero Section --- */
.percento-about-hero-creative {
    padding: 90px 0 100px 0;
    background: var(--percento-dark);
    position: relative;
    overflow: hidden;
    border-radius: var(--percento-hero-radius);
}

.percento-badge-animated {
    background: linear-gradient(90deg, #6366f1, #a855f7);
    color: white;
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    display: inline-block;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

.percento-mask-text {
    font-size: clamp(3.5rem, 12vw, 8.5rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -5px;
    /* Text Mask Background */
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072') center;
    background-size: cover;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 10px 20px rgba(99, 102, 241, 0.2));
    animation: mask-move 20s infinite alternate;
}

@keyframes mask-move {
    from { background-position: top; }
    to { background-position: bottom; }
}

.percento-hero-sub {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    max-width: 650px;
    margin: 40px auto;
    font-weight: 500;
}

.percento-stats-row {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px 40px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 20px;
}

.stat-item { text-align: left; }
.stat-num { color: #fff; font-size: 1.5rem; font-weight: 800; display: block; }
.stat-label { color: #d3c9f7; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; }
.stat-sep { width: 1px; height: 35px; background: rgba(255, 255, 255, 0.1); }

/* Background Orbs */
.bg-blur-circle {
    position: absolute;
    top: 10%; left: 50%;
    transform: translateX(-50%);
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
}

/* --- 2. Vision Mission --- */
.percento-vm-section { padding: 100px 0; background: #fff; }
.vm-card {
    padding: 60px 40px;
    border-radius: 30px;
    background: var(--pc-bg);
    position: relative;
    border: 1px solid #f1f5f9;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}
.vm-card:hover { background: #0f172a; color: #fff; transform: translateY(-10px); }
.vm-label {
    font-size: 5rem; font-weight: 900;
    position: absolute; top: -10px; right: 20px;
    opacity: 0.05; color: var(--pc-primary);
}
.vm-card h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 20px; }
.vm-card p { color: #64748b; line-height: 1.8; }
.vm-card:hover p { color: #cbd5e1; }

/* --- 3. Board Members --- */
.percento-team-section { padding: 100px 0; }
.percento-team-title { font-size: 2.8rem; font-weight: 900; letter-spacing: -1.5px; }
.team-card { text-align: center; }
.team-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 20px;
}
.team-img-wrapper img {
    width: 100%; aspect-ratio: 4/5; object-fit: cover;
    transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.team-socials {
    position: absolute; bottom: -60px; left: 0; right: 0;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    padding: 15px; display: flex; justify-content: center; gap: 15px;
    transition: 0.4s ease-in-out;
}
.team-card:hover .team-socials { bottom: 0; }
.team-card:hover img { transform: scale(1.1); }
.team-socials a { color: #fff; font-size: 1.2rem; transition: 0.3s; }
.team-socials a:hover { color: var(--pc-primary); }
.team-info h4 { font-size: 1.4rem; font-weight: 800; margin-bottom: 5px; }
.team-info span { font-size: 0.85rem; color: #64748b; font-weight: 700; text-transform: uppercase; }

/* Responsive */
@media (max-width: 768px) {
    .percento-mask-text { font-size: 3.2rem; letter-spacing: -2px; }
    .percento-stats-row { 
        flex-direction: column; 
        gap: 20px; 
        padding: 30px; 
        border-radius: 24px;
        width: 90%;
    }
    .stat-sep { width: 40px; height: 1px; }
    .percento-about-hero-creative { padding: 150px 0 100px 0; }
}




/* --- Legal Hero --- */
.percento-legal-hero {
    padding: 160px 0 80px 0;
    background: #0b0b0d;
}

.percento-legal-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
}

.percento-legal-title span {
    color: var(--percento-accent);
}

.percento-legal-sub {
    color: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
    font-size: 1.1rem;
}

/* --- Content Layout --- */
.percento-legal-content {
    padding: 100px 0;
    background: #ffffff;
}

/* Sticky Sidebar */
.percento-legal-nav {
    top: 100px;
    padding: 30px;
    background: #f8fafc;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
}

.percento-legal-nav h5 {
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.percento-legal-nav .nav-link {
    color: #64748b;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: 0.3s;
}

.percento-legal-nav .nav-link:hover, 
.percento-legal-nav .nav-link.active {
    color: var(--percento-accent);
    padding-left: 10px;
}

/* Body Text */
.legal-section {
    margin-bottom: 60px;
}

.legal-section h3 {
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #0f172a;
}

.legal-section p, .legal-section li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
}

.legal-section ul {
    margin-top: 20px;
}

.legal-section li {
    margin-bottom: 10px;
}

/* Call to Action Box */
.legal-footer-box {
    background: #0f172a;
    padding: 50px;
    border-radius: 30px;
    color: #fff;
    margin-top: 80px;
}

.legal-footer-box h4 {
    font-weight: 800;
    margin-bottom: 15px;
}

.legal-footer-box p {
    color: #94a3b8;
    margin-bottom: 30px;
}








/* Privacy Specific Styles */
.data-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.data-tag {
    background: #f1f5f9;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.security-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 24px;
    border-left: 5px solid var(--percento-accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.security-card i {
    font-size: 2.5rem;
    color: var(--percento-accent);
    margin-bottom: 15px;
    display: block;
}

.privacy-box {
    background: #f8fafc !important;
    color: #0f172a !important;
    border: 2px dashed #e2e8f0;
}

/* Hover effect on nav links */
.percento-legal-nav .nav-link {
    position: relative;
    padding-left: 0;
}

.percento-legal-nav .nav-link.active::before {
    content: '→';
    position: absolute;
    left: -20px;
    color: var(--percento-accent);
}