:root {
    --main-color: #6c5ce7;
    --bg-color: #f8fafc;
    --text-main: #0f172a;
    --text-muted: #58677c;
    --grid-color: rgba(0, 0, 0, 0.05);
    --header-bg: rgba(255, 255, 255, 0.9);
    --accent-blue: #6c5ce7;
    --accent-green: #22c55e;
    --card-border: rgba(0, 0, 0, 0.05);
    --dropdown-bg: #ffffff;
    --lang-active-bg: #EDE9FF;
    --card-bg: #ffffff;
    --special-bg: #f8faff;
    --border: #EDE9FF;
}

body.dark {
    --bg-color: #0f172a;
    --text-main: #f8fafc;
    --text-muted: #eeeeee;
    --grid-color: rgba(255, 255, 255, 0.05);
    --header-bg: rgba(30, 41, 59, 0.9);
    --card-border: rgba(255, 255, 255, 0.1);
    --dropdown-bg: #1e293b;
    --lang-active-bg: #EDE9FF;
    --card-bg: #1e293b;
    --special-bg: #111827;
    --border: #3e3e3e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}
a{
    text-decoration: none;
}

body {
    font-family: 'Hind Siliguri', sans-serif;
    background: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* 1. Define the width of the vertical scrollbar and height of the horizontal one */
::-webkit-scrollbar {
    width: 1px;
    height: 1px;
}

/* 2. Style the Track (the background of the scrollbar) */
::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

/* 3. Style the Thumb (the draggable part) */
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
    transition: background 0.3s ease;
}

/* 4. Style the Thumb on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

* {
    scrollbar-width: none;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -2;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

header {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: var(--header-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 100px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 5px;
    overflow: hidden;
}

.logo-box {
    height: 32px;
    line-height: 32px;
    background: var(--main-color);
    color: white;
    padding: 0 8px;
    border-radius: 6px;
    font-weight: 900;
    transform: scale(0);
    animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.logo-text {
    font-weight: 800;
    font-family: 'Hind Siliguri';
    font-size: 30px;
    color: #333;
    display: inline-block;
    transform: translateX(-100%);
    opacity: 0;
    animation: slideRight 0.8s ease-out 0.4s forwards;
}

.brand-highlight {
    color: var(--main-color);
}

@keyframes popIn {
    to {
        transform: scale(1);
    }
}

@keyframes slideRight {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.logo-area:hover .logo-box {
    transform: scale(1.1) rotate(-5deg);
    transition: 0.3s;
}

.logo-area:hover .brand-highlight {
    filter: brightness(1.2);
}

.fs-30 {
    font-size: 19px;
    line-height: 1;
}

.fs-15 {
    font-size: 14px;
    line-height: 1;
}

nav {
    display: flex;
    gap: 5px;
    background: rgba(0, 0, 0, 0.03);
    padding: 4px;
    border-radius: 12px;
}

nav a {
    color: var(--text-muted);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    padding: 6px 16px;
    border-radius: 25px;
}

nav a.active {
    background-color: var(--lang-active-bg);
    color: #3a3a3a;
}

.action-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-switcher {
    display: flex;
    background: var(--dropdown-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    overflow: hidden;
    padding: 2px;
}

.lang-btn {
    padding: 4px 10px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    color: var(--text-main);
}

.lang-btn.active {
    background: var(--lang-active-bg);
    color: #3a3a3a;
    border-radius: 5px;
}

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-main);
    padding: 5px;
}

.profile-container {
    position: relative;
    display: flex;
    align-items: center;
}

.profile-trigger {
    background: none;
    border: 2px solid var(--card-border);
    border-radius: 50%;
    cursor: pointer;
    padding: 2px;
    width: 35px;
    height: 35px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-trigger img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.profile-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 200px;
    background: var(--dropdown-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    padding: 10px 0;
    z-index: 1100;
}

.profile-dropdown.show {
    display: flex;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-header {
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
}

.dropdown-header strong {
    font-size: 14px;
    color: var(--text-main);
}

.dropdown-header span {
    font-size: 11px;
    color: var(--text-muted);
}

.profile-dropdown hr {
    border: none;
    border-top: 1px solid var(--card-border);
    margin: 5px 0;
}

.profile-dropdown a {
    padding: 5px 20px;
    text-decoration: none;
    color: var(--text-main);
    font-size: 14px;
    font-weight: 500;
}

.profile-dropdown a:hover {
    background: rgba(0, 0, 0, 0.05);
}

.hero {
    padding: 50px 20px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.badge {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(28px, 6vw, 55px);
    font-weight: 800;
    line-height: 1.2;
}

#typing {
    color: var(--main-color);
    border-right: 3px solid var(--main-color);
    padding-right: 5px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    50% {
        border-color: transparent
    }
}

.hero-p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 20px 0 30px;
    line-height: 1.6;
}

.special-section {
    background: linear-gradient(180deg, var(--bg-color) 0%, var(--special-bg) 50%, var(--bg-color) 100%);
    padding: 50px 15.5%;
    text-align: center;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    position: relative;
}

.special-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.special-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--card-border);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.special-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
}

.icon-secured {
    background: linear-gradient(135deg, #60efff 0%, #00ff87 100%);
}

.icon-edit {
    background: linear-gradient(135deg, #ee9ae5 10%, #5961f9 100%);
}

.icon-support {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.services-section {
    padding: 80px 5%;
    max-width: 1255px;
    margin: 0 auto;
}

.services-section p {
    opacity: 0.7;
    font-size: 15px;
}

.special-section h3 {
    color: var(--text-main);
}
.special-section p {
    color: var(--text-main);
    opacity: 0.7;
    font-size: 15px;
}

.services-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 10px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 40px;
    border-radius: 25px;

    text-align: left;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.service-card.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.icon-box {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-box svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.bg-pink {
    background: #e91e63;
}

.bg-blue {
    background: #03a9f4;
}

.bg-green {
    background: #4caf50;
}

.bg-orange {
    background: #ff9800;
}

.bg-purple {
    background: #9c27b0;
}

.bg-indigo {
    background: #3f51b5;
}

.btn {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.btn-main {
    background: var(--accent-blue);
    color: white;
    padding: 14px 30px;
    border-radius: 10px;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-main);
    padding: 14px 30px;
    border-radius: 10px;
}

.slider-container {
    max-width: 1100px;
    height: 430px;
    margin: 110px auto 0;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid #ddd;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.slider-track {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.slide {
    position: relative;
    width: 33.333%;
    height: 100%;
    display: flex;
    padding-left: 30px;
    align-items: center;
    overflow: hidden;
}

.slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.slide-1 {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 100%);
}

.slide-2 {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, transparent 100%);
}

.slide-3 {
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.1) 0%, transparent 100%);
}

.slide-content h2 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--accent-blue);
}

.slide-content p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 500px;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 50%;
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 24px;
    border-radius: 10px;
    background: var(--accent-blue);
    opacity: 1;
}

@media (max-width: 768px) {
    .slider-container {
        height: 180px;
        width: 90%;
        margin-top: 100px;
    }

    .logo-area span {
        font-size: 15px;
    }

    .action-buttons {
        gap: 6px;
    }


    .slide-content h2 {
        font-size: 18px;
    }

    .badge {
        font-size: 14px;
    }
}


.free-resources {
    max-width: 1100px;
    margin: 0 auto;
}

.resources-container {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap-reverse;
}

.resources-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(366px, 1fr));
    gap: 0px;
    min-width: 300px;
}

.resources-info {
    text-align: left;
}

.resource-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 15px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.resource-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--main-color), #06b6d4);
    transform: translateX(-50%);
    transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.resource-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.resource-card:hover::before {
    width: 100%;
}

.res-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.resource-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-main);
}

.resource-card p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.view-link {
    color: var(--accent-blue);
    ;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 6px 15px;
    border: 1px solid var(--accent-blue);
    ;
    border-radius: 25px;
}

.truck-animation {
    position: relative;
    width: 165px;
}

.truck-img {
    width: 100%;
    filter: hue-rotate(180deg);
}

.free-badge {
    position: absolute;
    top: 20%;
    left: 15%;
    background: var(--main-color);
    color: white;
    padding: 10px 25px;
    font-weight: 900;
    font-size: 15px;
    border-radius: 8px;
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 16px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }

    .resources-info {
        text-align: center;
    }

    .truck-animation {
        margin: 0 auto 30px;
    }

    .resources-grid {
        grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
    }

    .resource-card {
        padding: 15px 5px;
    }

    .herosection {
        padding: 110px 20px 0px !important;
    }

    .fs-30 {
        font-size: 15px;
    }

    .fs-15 {
        font-size: 11px;
    }

    /* .logo-box {
        padding: 2px 5px;
    } */

    .services-container .description {
        margin: 0 !important;
    }
}

.service-card,
.special-card {
    position: relative;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    isolation: isolate;
}

.service-card::before,
.special-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--main-color), #22c55e, transparent);
    transform: translateX(-50%);
    transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 10;
}

.service-card::after,
.special-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.8s ease;
    z-index: -1;
}

.service-card:hover,
.special-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before,
.special-card:hover::before {
    width: 100%;
}

.service-card:hover::after,
.special-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

.service-card:hover .icon-box,
.special-card:hover .special-icon {
    animation: floatingIcon 2s ease-in-out infinite;
}

@keyframes floatingIcon {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-8px) rotate(5deg);
    }
}

.reveal {
    transform: translateY(5px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

body.dark .service-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    background: rgba(30, 41, 59, 0.8);
}

.mobile-nav {
    position: fixed;
    bottom: 20px;
    /* Floating look */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: space-around;
    padding: 12px 10px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 1000;
    line-height: 1;
}

.mobile-nav-item {
    text-decoration: none;
    color: #94a3b8;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-width: 60px;
}

.mobile-nav-item svg {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
    transition: transform 0.3s ease;
}

.mobile-nav-item span {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 0.7;
}

.mobile-nav-item.active {
    color: var(--main-color);
}

.mobile-nav-item.active svg {
    transform: translateY(-5px);
    color: var(--main-color);
}

.mobile-nav-item.active span {
    opacity: 1;
}

.mobile-nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    width: 5px;
    height: 5px;
    background: var(--main-color);
    border-radius: 50%;
}

@media (min-width: 768px) {
    .mobile-nav {
        display: none;
    }
}

.floating-wa {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 998;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
    header nav {
        display: none;
    }

    .mobile-nav {
        display: flex;
    }

    .floating-wa {
        display: flex;
        bottom: 140px;
    }

    /* body {
        padding-bottom: 80px;
    } */

    footer {
        padding-bottom: 40px;
    }

    .special-section {
        padding: 80px 5%;
    }
}

.project-demo {
    padding: 50px 5%;
    background: #f1f5f9;
    text-align: center;
    transition: background 0.4s ease;
}

body.dark .project-demo {
    background: #111827;
}

.demo-header {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.demo-icon-top {
    font-size: 60px;
    margin-bottom: 10px;
}

.demo-main-card {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 40px;
    display: flex;
    gap: 40px;
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.demo-main-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--main-color), #06b6d4);
    transform: translateX(-50%);
    transition: width 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.demo-main-card:hover::before {
    width: 100%;
}

/* Inner Left Card (The Project Display) */
.demo-left {
    flex: 1;
    background: rgba(0, 0, 0, 0.03);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid var(--card-border);
    transition: transform 0.4s ease;
}

body.dark .demo-left {
    background: rgba(255, 255, 255, 0.03);
}

.demo-img-wrapper img {
    width: -webkit-fill-available;
    object-fit: cover;
    height: 220px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Inner Right Content (The Features) */
.demo-right {
    flex: 1.2;
}

.demo-list {
    list-style: none;
    padding: 0;
}

.demo-list li {
    font-weight: normal;
    margin-bottom: 25px;
    color: var(--text-main);
    padding-left: 40px;
    position: relative;
}

/* Custom Checkmark Icons */
.demo-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    width: 28px;
    height: 28px;
    background: var(--lang-active-bg);
    color: #3a3a3a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

body.dark .demo-list li::before {
    background: var(--lang-active-bg);
}

.sec-title {
    font-size: 40px;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 900px) {
    .demo-main-card {
        flex-direction: column;
        padding: 25px;
    }

    .demo-left,
    .demo-right {
        width: 100%;
    }

    .sec-title {
        font-size: 30px;
    }
}

/* --- Feedback Section Styles --- */
.feedback-section {
    padding: 50px 20px;
    background: var(--bg-color);
    text-align: center;
    position: relative;
}

.section-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.section-icon .icon-box {
    background: linear-gradient(135deg, var(--main-color), #2563eb);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.section-title {
    font-size: clamp(24px, 5vw, 40px);
    font-weight: 800;
    margin-bottom: 15px;
}

.section-title .highlight {
    color: #00d2ff;
    /* Light blue/cyan from image */
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* --- Testimonial Card --- */
.testimonial-card {
    max-width: 1065px;
    margin: 0 auto;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 30px;
    text-align: left;
    backdrop-filter: blur(10px);
}

.card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.media-box {
    background: #000;
    border-radius: 15px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.client-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.client-logo {
    width: 50px;
    height: 50px;
    background: #1e293b;
    border: 1px solid var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
}

.client-info h3 {
    font-size: 16px;
}

.client-info span {
    color: var(--main-color);
    font-size: 14px;
    display: block;
}

.stars {
    color: #fbbf24;
    font-size: 14px;
}

.testimonial-text {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 15px;
}

.btn-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-blue);
    ;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
}

.btn-live:hover {
    background: #00d2ff;
    transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .card-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 20px;
    }
}

/* --- Neon Feedback Card --- */
.testimonial-card {
    position: relative;
    border: 1px solid var(--feedback-highlight);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.1),
        inset 0 0 10px rgba(0, 210, 255, 0.05);
    animation: neonBoxGlow 4s infinite ease-in-out;
}

@keyframes neonBoxGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 210, 255, 0.2);
        border-color: rgba(0, 210, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 40px rgba(0, 210, 255, 0.5);
        border-color: rgba(0, 210, 255, 0.8);
    }
}


/* --- Neon Text Highlight --- */
.section-title .highlight {
    color: #fff;
    text-shadow: 0 0 5px #fff,
        0 0 10px var(--feedback-highlight),
        0 0 20px var(--feedback-highlight);
    animation: neonTextPulse 2s infinite alternate;
}

@keyframes neonTextPulse {
    from {
        filter: brightness(1);
    }

    to {
        filter: brightness(1.3) drop-shadow(0 0 8px var(--feedback-highlight));
    }
}

/* --- Live Project Button Neon --- */
.btn-live {
    box-shadow: 0 0 10px var(--feedback-highlight);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-live:hover {
    box-shadow: 0 0 25px var(--feedback-highlight);
    transform: translateY(-3px) scale(1.02);
}

/* Container & Glass Overlay */
.side-modal {
    position: fixed;
    inset: 0;
    visibility: hidden;
    z-index: 2000;
    display: flex;
    justify-content: flex-end;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    /* Modern Slate Blue/Grey tint */
    backdrop-filter: blur(8px);
    /* The "Glass" effect */
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* The Drawer Panel */
.modal-content {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 100%;
    background: #ffffff;
    padding: 0;
    /* Remove default padding to style sections */
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    /* Start hidden to the right */
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

/* When Active */
.side-modal.active {
    visibility: visible;
}

.side-modal.active .modal-overlay {
    opacity: 1;
}

.side-modal.active .modal-content {
    transform: translateX(0);
}

/* Internal Styling */
#modalBody {
    padding: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.2s;
    /* Delays entrance slightly */
}

.side-modal.active #modalBody {
    opacity: 1;
    transform: translateY(0);
}

#modalTitle {
    font-size: 1.85rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.2;
}

#modalDesc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 25px;
}

/* Modern Close Button */
.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgb(255, 106, 106);
    color: white;
    border: none;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}

.close-btn:hover {
    background: red;
    transform: rotate(90deg);
}

/* Image styling with a slight lift */
#modalImg {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
}


.line {
    position: absolute;
    top: -50%;
    width: 2px;
    height: 30vh;
    background: linear-gradient(to bottom,
            transparent,
            var(--main-color),
            transparent);

    animation: drop-sequence 4s linear infinite;
    animation-delay: calc(var(--i) * 1s);
}

@keyframes drop-sequence {
    0% {
        top: -30vh;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 110vh;
        opacity: 0;
    }
}

.consultation-section {
    color: var(--text-main);
    padding: 0px 20px;
    font-family: 'Hind Siliguri', sans-serif;
    text-align: center;
}

.avatar-icon {
    width: 60px;
    margin-bottom: 20px;
}

.header-content h2 {
    font-weight: 800;
    margin-bottom: 15px;
}

.header-content p {
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
    color: var(--text-main);
}

.highlight {
    color: var(--accent-blue);
}

.booking-card {
    background: linear-gradient(145deg, #0a192f, #0F1E43);
    border: 1px solid #1e293b;
    border-radius: 24px;
    max-width: 1065px;
    margin: 0 auto;
    padding: 50px;
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.1);
}

.card-grid {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
    text-align: left;
}

.calendar-img {
    width: 200px;
}

.text-area h3 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.text-area p {
    color: #94a3b8;
    margin-bottom: 25px;
    line-height: 1.5;
}

.btn-cyan {
    background-color: var(--accent-blue);
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s;
}

.btn-cyan:hover {
    background-color: #0097a7;
    transform: translateY(-2px);
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .card-grid {
        flex-direction: column;
    }

    .calendar-img {
        width: 200px;
    }
}

.site-footer {
    background-color: #0F1E43;
    color: #ffffff;
    padding: 60px 20px 30px;
    font-family: 'Hind Siliguri', sans-serif;
    border-radius: 20px 20px 0 0;
}

.footer-container {
    max-width: 1055px;
    margin: 0 auto;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Logo Styling */
.brand-logo {
    font-size: 32px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
}

.logo-b {
    background: #00bcd4;
    color: #fff;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 24px;
}

.brand-logo span {
    color: #00bcd4;
}

/* Navigation */
.footer-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
    padding: 15px 0;
}

.footer-nav a:hover {
    color: #00bcd4;
}


.contact-label {
    color: #94a3b8;
    font-size: 13px;
    display: block;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

/* Bottom Bar */
.footer-divider {
    border: 0;
    border-top: 1px solid #1e293b;
    margin: 25px 0 25px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    color: #94a3b8;
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 38px;
    height: 38px;
    background: #1e293b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s;
}

.social-btn:hover {
    background: #00bcd4;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}


/* Enable smooth scrolling for the whole page */
html {
    scroll-behavior: smooth;
}

#scrollTopBtn {
    display: none;
    /* Hidden by default */
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: var(--main-color);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    font-size: 18px;
    transition: transform 0.3s, opacity 0.3s;
}

#scrollTopBtn:hover {
    background-color: #555;
    transform: scale(1.1);
    /* Slight pop on hover */
}


/* --- Main Content Layout --- */
.container {
    max-width: 1100px;
    margin: 70px auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.portfolio-container {
    max-width: 1100px;
    margin: 120px auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* --- Responsive Container --- */
@media (max-width: 992px) {
    .container {
        flex-direction: column;
        text-align: center;
        margin: 80px auto;
    }

    .mockup {
        height: 220px;
    }
}

/* --- Profile Image --- */
.profile-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
}

.hexagon {
    width: 320px;
    height: 340px;
    background: #1a2a3a;
    clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
    overflow: hidden;
}

@media (max-width: 480px) {
    .hexagon {
        width: 260px;
        height: 280px;
    }
}

.hexagon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-icon {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--main-color);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: bold;
}

/* --- Text Content --- */
.content {
    flex: 1.2;
}

.tag-text {
    font-family: 'Courier New', monospace;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 10px;
}

h1 {
    font-size: clamp(32px, 5vw, 52px);
    /* Smoothly scales text size */
    margin: 0;
    line-height: 1.1;
    font-weight: 700;
}

.highlight {
    color: var(--main-color);
    font-family: 'Courier New', monospace;
}

.description {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
    margin: 20px 0;
    max-width: 500px;
}

/* --- Tech Stack --- */
.tech-stack {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    justify-content: inherit;
    /* Centered on mobile */
}

@media (max-width: 992px) {
    .tech-stack {
        justify-content: center;
    }
}

.tech-card {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.tech-card img {
    width: 22px;
}

.cv-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--main-color);
    text-decoration: none;
    font-weight: 600;
}

/* --- Typing Animation --- */
#typing-text {
    border-right: 3px solid #333;
    padding-right: 5px;
    animation: caret 0.8s infinite;
}

/* --- Stats Grid --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px auto;
    max-width: 1100px;
    padding: 40px 20px;
    background-image: radial-gradient(#d1d1d1 1px, transparent 1px);
    background-size: 20px 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
    text-align: center;
    background: var(--bg-color);
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px 10px;
        gap: 15px;
    }

    .stat-card h2 {
        font-size: 28px;
    }

    .stat-card p {
        font-size: 12px;
    }
}

.stat-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.stat-card.appear {
    opacity: 1;
    transform: translateY(0);
}

.stat-card h2 {
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

.stat-card:hover {
    border-color: var(--accent-green);
    background-color: rgba(74, 222, 128, 0.05);
    transform: translateY(-5px);
}


.stat-card i {
    color: var(--accent-green);
    font-size: 20px;
    margin-bottom: 10px;
}

.stat-card h2 {
    font-size: 40px;
    margin: 5px 0;
    color: var(--text-muted);
}

.stat-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

/* --- Bottom Layout --- */
.bottom-layout {
    display: flex;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 80px;
}

@media (max-width: 992px) {
    .bottom-layout {
        flex-direction: column;
    }
}

.cooperation-card,
.journal-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 30px;
    flex: 2;
}

.journal-card {
    flex: 1;
}

.section-title {
    font-size: 28px;
    font-family: 'Courier New', monospace;
    margin: 15px 0;
}

/* --- Brand Box --- */
.brand-box {
    border: 1px solid var(--accent-green);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.brand-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    opacity: 0.6;
    font-weight: bold;
    font-size: 14px;
}

/* --- Contact Footer --- */
.contact-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: var(--text-muted);
}

.contact-footer i {
    color: var(--text-main);
    width: 20px;
}

/* --- Journaling List --- */
.journal-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.journal-list li {
    font-size: 13px;
    color: var(--text-muted);
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    gap: 15px;
}

.journal-list li span {
    color: #ccc;
    min-width: 50px;
}

.journal-list li:hover {
    color: var(--accent-green);
    cursor: pointer;
}

@keyframes caret {
    50% {
        border-color: transparent;
    }
}


.services-container {
    max-width: 1100px;
    margin: 50px auto;
    text-align: center;
}

/* Header Styles */
.services-container .header {
    padding: 0 20px;
}

.services-container .header .subtitle {
    color: #3b59ff;
    font-size: 14px;
    margin-bottom: 5px;
}

.services-container .header .title {
    font-size: 45px;
    color: var(--text-main);
    margin-bottom: 15px;
}


.services-container .header .description {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.services-container .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    max-width: 1100px;
    margin: 0 auto;
}

.services-container .card {
    background: var(--card-bg);
    padding: 20px 30px;
    position: relative;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eeeeee1f;
    border-radius: 15px;
    margin-top: 5px;
    overflow: hidden;
}

/* The Gradient Top Border Effect */
.services-container .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad);
    opacity: 0.3;
    transition: opacity 0.3s;
}

/* Hover Animation */
.services-container .card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.services-container .card:hover::before {
    opacity: 1;
}

/* Icon Box Styles */
.services-container .icon-box {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.services-container .card:hover .icon-box {
    transform: rotate(-5deg) scale(1.1);
}

/* Specific Colors from Image */
.services-container .icon-shopify {
    background: #e51a5f;
    color: white;
}

/* Shopify Pink */
.services-container .icon-blue {
    color: #4361ee;
}

.services-container .icon-pink {
    color: #db2777;
}

.services-container .icon-orange {
    color: #ea580c;
}

/* Typography */
.services-container .content h3 {
    color: var(--text-main);
    font-size: 22px;
    margin-bottom: 0px;
    font-weight: 700;
}

.services-container .content p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-container .animate {
    display: flex;
    align-items: center;
    animation: fadeInUp 0.6s ease forwards;
}

@media (max-width: 768px) {
    .services-container .services-grid {
        grid-template-columns: 1fr;
    }

    /* .res-icon img {
        height: 170px !important;
    } */
}

.herosection {
    background: linear-gradient(180deg, var(--bg-color) 0%, var(--special-bg) 50%, var(--bg-color) 100%);
    padding: 120px 20px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-wrapper {
    width: 1100px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    text-align: left;
    flex: 1;
}

.hero-content h1 {
    font-size: 30px;
    line-height: 1.3;
    margin: 20px 0;
}

.hero-content span {
    color: #fff;
}

.hero-content p {
    opacity: .85;
    max-width: 500px;
}

.badge1 {
    background: var(--main-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    display: inline-block;
}

.hero-btns {
    margin-top: 30px;
}

.btn-primary {
    background: var(--main-color);
    padding: 8px 26px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    margin-right: 10px;
}

.btn-outline {
    border: 1px solid var(--main-color);
    padding: 8px 26px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-main);
}

.hero-image {
    flex: 1;
    position: relative;
    text-align: center;
}

.hero-slider {
    overflow: hidden;
    width: 100%;
    border-radius: 20px;
}

.hero-slider-track {
    display: flex;
    transition: transform .8s ease-in-out;
}

.slide {
    min-width: 100%;
}


@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

.mockup {
    height: 300px;
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
}

.speed-badge {
    position: absolute;
    color: white;
    top: -10px;
    right: 20px;
    background: var(--main-color);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    animation: float 4s ease-in-out infinite;
}

.conversion-card {
    position: absolute;
    color: white;
    bottom: 15px;
    left: 40px;
    background: var(--main-color);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.projects-section {
    background: var(--bg-color);
    background-size: 40px 40px;
}

.project-title {
    font-size: 40px;
    margin-bottom: 50px;
}

.project-slider {
    overflow: hidden;
}

.project-track {
    display: flex;
    transition: transform .6s ease;
}

.project-card {
    min-width: 100%;
    display: flex;
    gap: 15px;
    background: var(--bg-color);
    padding: 15px;
    /* border: 1px solid #e2e2e2; */
    border-radius: 15px;
}

.project-image img {
    width: 100%;
    max-width: 500px;
}

.project-name {
    color: #1fa26b;
    font-size: 28px;
}

.project-desc {
    margin: 15px 0 30px;
    color: #555;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.project-links {
    margin-top: 25px;
}

.project-links a {
    margin-right: 20px;
    text-decoration: none;
}

.project-nav {
    background: var(--bg-color);
    border: 1px solid #e6e6e6 !important;
    border-radius: 15px;
    height: -webkit-fill-available;
    display: flex;
    align-items: center;
    /* vertical center */
    justify-content: center;
    /* horizontal center */
}

.project-nav button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #d4e7d8;
    font-size: 20px;
    cursor: pointer;
}

@media (max-width:600px) {

    .hero {
        padding: 70px 20px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .speed-badge {
        font-size: 12px;
        padding: 8px 14px;
    }

    .conversion-card {
        font-size: 13px;
        padding: 10px 14px;
    }

}

@media (max-width: 768px) {
    .mobile-font-pp {
        font-size: 13px !important;
        opacity: .8;
    }

    .mobile-font-p {
        font-size: 14px !important;
        color: var(--text-muted);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mobile-font-h {
        font-size: 24px !important;
    }

    .mobile-sub-h {
        font-size: 18px !important;
    }

    .footer-main-grid {
        gap: 10px !important;
    }

    .btn {
        font-size: 12px !important;
    }

    .hero-wrapper {
        width: 100%;
        display: inline-flex;
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .d-sm-none {
        display: none;
    }

    .slide {
        padding: 0;
    }

    .mockup {
        height: 220px;
    }

    .service-grid {
        padding: 0px 5%;
    }

    .resources-grid {
        padding: 2%;
    }

    .content {
        width: 100%;
        /* padding: 0 7%; */
    }

    .project-slider {
        width: 100%;
    }

    .services-container .card {
        border-radius: 15px;
    }

    .booking-card {
        border-bottom-left-radius: 0;
        /* bottom-left not rounded */
        border-bottom-right-radius: 0;
    }
}

/* SECTION */
.category-section {
    background: var(--bg-color);
    padding: 40px 10px;
}

.container {
    max-width: 1100px;
    margin: auto;
}

/* GRID SYSTEM */
.category-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

/* CARD */
.cat-card {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 10px;
    text-align: center;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: .3s ease;
}

.cat-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: var(--hover-shadow);
}

/* ICON */
.cat-card .icon {
    font-size: 30px;
    margin-bottom: 8px;
}

/* TEXT */
.cat-card p {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* MOBILE TWEAK */
@media (max-width:576px) {
    .cat-card {
        padding: 14px 8px;
    }

    .cat-card .icon {
        font-size: 24px;
    }

    .cat-card p {
        font-size: 13px;
    }
}

#chatbotPanel {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.25s ease;
}

#chatbotPanel:not(.hidden) {
    transform: translateY(0);
    opacity: 1;
}

.rich-content {
    font-size: 16px;
    line-height: 1.3;
    color: #333;
    text-align: justify;
}

/* Headings */
.rich-content h1,
.rich-content h2,
.rich-content h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #111;
}

/* Paragraph */
.rich-content p {
    margin-bottom: 12px;
}

/* Lists */
.rich-content ul,
.rich-content ol {
    padding-left: 22px;
    margin: 10px 0;
}

.rich-content li {
    margin-bottom: 6px;
}

/* Links */
.rich-content a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.rich-content a:hover {
    text-decoration: underline;
}

/* Bold & italic */
.rich-content strong {
    font-weight: 700;
}

.rich-content em {
    font-style: italic;
}

/* Images */
.rich-content img {
    max-width: 100%;
    border-radius: 12px;
    margin: 15px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Blockquote */
.rich-content blockquote {
    border-left: 4px solid #6366f1;
    padding: 10px 15px;
    margin: 15px 0;
    background: #f9f9ff;
    color: #444;
    font-style: italic;
}



/* ── Tokens ── */
:root {
    --pd-display: 'Hind Siliguri';
    --pd-body: 'Hind Siliguri';
    --pd-ink: #0d0d0c;
    --pd-ink-2: #444440;
    --pd-ink-3: #888882;
    --pd-white: #ffffff;
    --pd-cream: #faf9f6;
    --pd-surface: #f4f3ef;
    --pd-surface-2: #eceae3;
    --pd-line: rgba(0, 0, 0, .09);
    --pd-line-md: rgba(0, 0, 0, .14);
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 18px;
    --r-xl: 24px;
    --r-2xl: 32px;
    --ease-out: cubic-bezier(.22, .68, 0, 1.2);
    --ease-slide: cubic-bezier(.77, 0, .175, 1);
    --dur: .3s;
    --t-blue-bg: #e6f1fb;
    --t-blue-fg: #185fa5;
    --t-green-bg: #eaf3de;
    --t-green-fg: #3b6d11;
    --t-amber-bg: #faeeda;
    --t-amber-fg: #854f0b;
    --t-purple-bg: #eeedfe;
    --t-purple-fg: #534ab7;
    --t-coral-bg: #faece7;
    --t-coral-fg: #993c1d;
    --t-teal-bg: #e1f5ee;
    --t-teal-fg: #0f6e56;
}

/* ── Section ── */
.pd-section {
    font-family: var(--pd-body);
    padding: 6rem 0 4rem;
    overflow: hidden;
}

/* ── Header ── */
.pd-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.pd-icon-wrap {
    margin-bottom: 1.25rem;
}

.pd-icon-wrap img {
    height: 68px;
    border-radius: var(--r-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
}

.pd-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--t-blue-fg);
    background: var(--t-blue-bg);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 1.4rem;
}

.pd-title {
    font-family: var(--pd-display);
    font-size: clamp(30px, 5vw, 52px);
    font-weight: 700;
    color: var(--pd-ink);
    line-height: 1.12;
    margin: 0 0 1.1rem;
    letter-spacing: -.02em;
}

.pd-title em {
    font-style: italic;
    font-weight: 600;
    color: var(--pd-ink-2);
}

.pd-subtitle {
    font-size: 15.5px;
    color: var(--pd-ink-2);
    line-height: 1.8;
    font-weight: 300;
    margin: 0 0 2.5rem;
}

.pd-header-stats {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    background: var(--pd-white);
    border: .5px solid var(--pd-line-md);
    border-radius: var(--r-xl);
    padding: 1rem 2rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .05);
}

.pd-hstat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.pd-hstat-num {
    font-family: var(--pd-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--pd-ink);
    line-height: 1;
}

.pd-hstat-label {
    font-size: 11px;
    color: var(--pd-ink-3);
    white-space: nowrap;
}

.pd-hstat-divider {
    width: 1px;
    height: 32px;
    background: var(--pd-line-md);
    flex-shrink: 0;
}

/* ── Slider wrap ── */
.pd-slider-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.pd-progress-track {
    height: 2px;
    background: var(--pd-line);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.pd-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--pd-ink);
    border-radius: 2px;
    transition: width .1s linear;
}

.pd-viewport {
    overflow: hidden;
    border-radius: var(--r-2xl);
    border: .5px solid var(--pd-line-md);
    box-shadow: 0 4px 40px rgba(0, 0, 0, .08), 0 1px 4px rgba(0, 0, 0, .04);
    background: var(--pd-white);
}

.pd-track {
    display: flex;
    transition: transform .65s var(--ease-slide);
    will-change: transform;
}

/* ── Card ── */
.pd-card {
    min-width: 100%;
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: stretch;
    background: var(--card-bg);
}

/* ── Left ── */
.pd-left {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-right: .5px solid var(--pd-line);
    position: relative;
    overflow: hidden;
}

.pd-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--card-accent, #185fa5);
    opacity: .85;
}

.pd-img-box {
    position: relative;
    height: 240px;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--pd-surface);
}

.pd-project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform .7s ease;
}

.pd-card:hover .pd-project-img {
    transform: scale(1.05);
}

.pd-img-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(255, 255, 255, .08) 0%, transparent 50%, rgba(0, 0, 0, .2) 100%);
    pointer-events: none;
}

.pd-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--pd-ink-3);
    font-size: 13px;
}

.pd-img-placeholder i {
    font-size: 40px;
    opacity: .45;
}

.pd-img-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 100px;
}

.tag-blue {
    background: var(--t-blue-bg);
    color: var(--t-blue-fg);
}

.tag-green {
    background: var(--t-green-bg);
    color: var(--t-green-fg);
}

.tag-amber {
    background: var(--t-amber-bg);
    color: var(--t-amber-fg);
}

.tag-purple {
    background: var(--t-purple-bg);
    color: var(--t-purple-fg);
}

.tag-coral {
    background: var(--t-coral-bg);
    color: var(--t-coral-fg);
}

.tag-teal {
    background: var(--t-teal-bg);
    color: var(--t-teal-fg);
}

.pd-left-meta {
    padding: 1.75rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: .85rem;
    flex: 1;
}

.pd-card-title {
    font-family: var(--pd-display);
    font-size: clamp(17px, 2vw, 21px);
    font-weight: 700;
    line-height: 1.28;
    margin: 0;
    letter-spacing: -.015em;
}

.pd-card-desc {
    font-size: 13.5px;
    line-height: 1.78;
    font-weight: 300;
    margin: 0;
    flex: 1;
}

.pd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 18px;
    border-radius: var(--r-sm);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    text-decoration: none;
    font-family: var(--pd-body);
    width: 100%;
    background: var(--main-color);
    color: var(--pd-white);
    letter-spacing: .01em;
    transition: opacity var(--dur), transform var(--dur);
    margin-top: auto;
}

.pd-btn:hover {
    opacity: .8;
}

.pd-btn:active {
    transform: scale(.98);
}

.pd-btn i {
    font-size: 16px;
    flex-shrink: 0;
}

.pd-btn-ghost {
    background: var(--main-color);
    border: .5px solid var(--pd-line-md);
}

/* ═══════════════════════════════════════════════════════
   RIGHT PANEL — RICH CONTENT TYPOGRAPHY
═══════════════════════════════════════════════════════ */
.pd-right {
    padding: 1rem 2.5rem 1rem 2rem;
    background: var(--card-bg);
    overflow-y: auto;
    max-height: 520px;
    scrollbar-width: none;
    scrollbar-color: var(--pd-surface-2) transparent;
    position: relative;
}

.pd-right::-webkit-scrollbar {
    width: 4px;
}

.pd-right::-webkit-scrollbar-track {
    background: transparent;
}

.pd-right::-webkit-scrollbar-thumb {
    background: var(--pd-surface-2);
    border-radius: 10px;
}

/* Scroll fade */
/* .pd-right::after {
    content: ''; position: sticky; bottom: 0; display: block;
    height: 48px; margin-top: -48px;
    background: linear-gradient(to bottom, transparent, var(--pd-surface));
    pointer-events: none;
} */

/* Base */
.pd-rich-content {
    font-family: var(--pd-body);
    font-size: 14px;
    line-height: 1.85;
    font-weight: 300;
}

/* H1 — page-level heading with underline */
.pd-rich-content h1 {
    font-family: var(--pd-display);
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 1.2rem;
    line-height: 1.2;
    letter-spacing: -.02em;
    padding-bottom: .7rem;
    border-bottom: 1.5px solid var(--pd-line-md);
}

/* H2 — section heading with left accent bar */
.pd-rich-content h2 {
    font-family: var(--pd-display);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -.01em;
    display: flex;
    align-items: center;
    gap: 9px;
}

.pd-rich-content h2::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 18px;
    background: var(--card-accent, #185fa5);
    border-radius: 2px;
    flex-shrink: 0;
}

/* H3 — uppercase label */
.pd-rich-content h3 {
    font-family: var(--pd-body);
    font-size: 11px;
    font-weight: 500;
    color: var(--pd-ink-3);
    margin: 1.4rem 0 .5rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

/* H4 */
.pd-rich-content h4 {
    font-family: var(--pd-body);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--pd-ink);
    margin: 1rem 0 .3rem;
}

/* Paragraph */
.pd-rich-content p {
    margin: 0 0 .9rem;
}

.pd-rich-content p:last-child {
    margin-bottom: 0;
}

/* Links */
.pd-rich-content a {
    color: var(--t-blue-fg);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: opacity .2s;
}

.pd-rich-content a:hover {
    opacity: .7;
}

/* Strong / em */
.pd-rich-content strong {
    font-weight: 500;
}

.pd-rich-content em {
    font-style: italic;
}

/* ── Unordered list — accent dot bullets ── */
.pd-rich-content ul {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.pd-rich-content ul li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13.5px;
    color: var(--pd-ink-2);
    line-height: 1.65;
}

.pd-rich-content ul li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    min-width: 6px;
    border-radius: 50%;
    background: var(--card-accent, #185fa5);
    margin-top: 7px;
    opacity: .7;
}

/* ── Ordered list — numbered badge ── */
.pd-rich-content ol {
    list-style: none;
    counter-reset: pd-ol;
    margin: 0 0 1rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.pd-rich-content ol li {
    counter-increment: pd-ol;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    line-height: 1.65;
}

.pd-rich-content ol li::before {
    content: counter(pd-ol);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    font-size: 11px;
    font-weight: 500;
    background: var(--card-accent, #185fa5);
    color: #fff;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 3px;
}

/* ── Blockquote ── */
.pd-rich-content blockquote {
    margin: 1.25rem 0;
    padding: 1rem 1.25rem;
    background: var(--pd-white);
    border-radius: var(--r-md);
    border: .5px solid var(--pd-line-md);
    border-left: 3px solid var(--card-accent, #185fa5);
    font-style: italic;
    color: var(--pd-ink-2);
    font-size: 13.5px;
    line-height: 1.75;
}

.pd-rich-content blockquote p {
    margin: 0;
}

/* ── Inline code ── */
.pd-rich-content code {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 12px;
    background: var(--pd-white);
    color: var(--pd-ink);
    border: .5px solid var(--pd-line-md);
    border-radius: 5px;
    padding: 2px 6px;
}

/* ── Code block ── */
.pd-rich-content pre {
    background: var(--pd-ink);
    color: #e8e6df;
    border-radius: var(--r-md);
    padding: 1.1rem 1.25rem;
    overflow-x: auto;
    font-size: 12px;
    line-height: 1.7;
    margin: 1rem 0;
}

.pd-rich-content pre code {
    background: none;
    border: none;
    padding: 0;
    color: inherit;
    font-size: inherit;
}

/* ── HR ── */
.pd-rich-content hr {
    border: none;
    border-top: .5px solid var(--pd-line-md);
    margin: 1.5rem 0;
}

/* ── Images ── */
.pd-rich-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--r-md);
    border: .5px solid var(--pd-line);
    margin: .85rem 0;
    display: block;
}

/* ── Table ── */
.pd-rich-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    margin: 1rem 0;
    background: var(--pd-white);
    border-radius: var(--r-md);
    overflow: hidden;
    border: .5px solid var(--pd-line-md);
}

.pd-rich-content thead th {
    background: var(--pd-surface-2);
    color: var(--pd-ink);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 10px 14px;
    text-align: left;
    border-bottom: .5px solid var(--pd-line-md);
}

.pd-rich-content tbody td {
    padding: 9px 14px;
    color: var(--pd-ink-2);
    border-bottom: .5px solid var(--pd-line);
    vertical-align: top;
}

.pd-rich-content tbody tr:last-child td {
    border-bottom: none;
}

.pd-rich-content tbody tr:hover td {
    background: var(--pd-surface);
}

/* ════════════════════════════════════════════
   UTILITY CLASSES for rich-content editors
   (Your CMS/TipTap/Quill can output these)
════════════════════════════════════════════ */

/* Callout / highlight box */
.pd-rich-content .callout,
.pd-rich-content .highlight-box {
    background: var(--pd-white);
    border: .5px solid var(--pd-line-md);
    border-left: 3px solid var(--card-accent, #185fa5);
    border-radius: var(--r-md);
    padding: 1rem 1.25rem;
    margin: 1rem 0;
    font-size: 13.5px;
}

/* Feature grid — 2-col icon+text cards */
.pd-rich-content .feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: .75rem 0 1.1rem;
}

.pd-rich-content .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 11px 13px;
    background: var(--pd-white);
    border: .5px solid var(--pd-line);
    border-radius: var(--r-sm);
    font-size: 12.5px;
    color: var(--pd-ink-2);
    line-height: 1.55;
}

.pd-rich-content .feature-item i {
    font-size: 15px;
    color: var(--card-accent, #185fa5);
    flex-shrink: 0;
    margin-top: 1px;
}

.pd-rich-content .feature-item strong {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--pd-ink);
    margin-bottom: 2px;
}

/* Tech-stack pill row */
.pd-rich-content .tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: .5rem 0 1rem;
}

.pd-rich-content .tech-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11.5px;
    font-weight: 500;
    color: var(--pd-ink);
    background: var(--pd-white);
    border: .5px solid var(--pd-line-md);
    border-radius: 100px;
    padding: 3px 11px;
    letter-spacing: .02em;
}

.pd-rich-content .tech-pill i {
    font-size: 12px;
    color: var(--card-accent, #185fa5);
}

/* Stat row */
.pd-rich-content .stat-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 8px;
    margin: .75rem 0 1.1rem;
}

.pd-rich-content .stat-box {
    background: var(--pd-white);
    border: .5px solid var(--pd-line);
    border-radius: var(--r-md);
    padding: 12px;
    text-align: center;
}

.pd-rich-content .stat-num {
    display: block;
    font-family: var(--pd-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--pd-ink);
    line-height: 1;
    margin-bottom: 4px;
}

.pd-rich-content .stat-label {
    font-size: 11px;
    color: var(--pd-ink-3);
}

/* Vertical timeline */
.pd-rich-content .timeline {
    list-style: none;
    padding: 0;
    margin: .75rem 0 1.1rem;
    display: flex;
    flex-direction: column;
}

.pd-rich-content .timeline-item {
    display: flex;
    gap: 12px;
    padding-bottom: 18px;
}

.pd-rich-content .timeline-item::before {
    display: none;
}

/* override ul li::before */
.pd-rich-content .tl-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.pd-rich-content .tl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--card-accent, #185fa5);
    margin-top: 4px;
}

.pd-rich-content .tl-connector {
    width: 1px;
    flex: 1;
    background: var(--pd-line-md);
    margin-top: 4px;
    min-height: 16px;
}

.pd-rich-content .tl-body {
    flex: 1;
}

.pd-rich-content .tl-label {
    font-size: 10.5px;
    font-weight: 500;
    color: var(--pd-ink-3);
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.pd-rich-content .tl-title {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--pd-ink);
    margin-bottom: 3px;
}

.pd-rich-content .tl-desc {
    font-size: 12.5px;
    color: var(--pd-ink-3);
    line-height: 1.55;
}

/* Badge / tag inline */
.pd-rich-content .badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    font-weight: 500;
    padding: 2px 9px;
    border-radius: 100px;
    letter-spacing: .04em;
    background: var(--pd-surface-2);
    color: var(--pd-ink-2);
    vertical-align: middle;
}

.pd-rich-content .badge-blue {
    background: var(--t-blue-bg);
    color: var(--t-blue-fg);
}

.pd-rich-content .badge-green {
    background: var(--t-green-bg);
    color: var(--t-green-fg);
}

.pd-rich-content .badge-amber {
    background: var(--t-amber-bg);
    color: var(--t-amber-fg);
}

.pd-rich-content .badge-purple {
    background: var(--t-purple-bg);
    color: var(--t-purple-fg);
}

.pd-rich-content .badge-coral {
    background: var(--t-coral-bg);
    color: var(--t-coral-fg);
}

.pd-rich-content .badge-teal {
    background: var(--t-teal-bg);
    color: var(--t-teal-fg);
}

/* ── Controls ── */
.pd-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 1.75rem 0 .5rem;
}

.pd-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: .5px solid var(--pd-line-md);
    background: var(--pd-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--pd-ink);
    font-size: 18px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, .06);
    transition: all var(--dur) var(--ease-out);
}

.pd-nav-btn:hover {
    background: var(--pd-ink);
    color: var(--pd-white);
    border-color: var(--pd-ink);
    transform: scale(1.08);
}

.pd-nav-btn:active {
    transform: scale(.95);
}

.pd-dots {
    display: flex;
    gap: 7px;
    align-items: center;
}

.pd-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--pd-line-md);
    cursor: pointer;
    border: none;
    padding: 0;
    transition: all .35s ease;
}

.pd-dot.active {
    width: 26px;
    border-radius: 4px;
    background: var(--pd-ink);
}

.pd-dot:focus-visible {
    outline: 2px solid var(--pd-ink);
    outline-offset: 2px;
}

.pd-counter {
    text-align: center;
    font-size: 12px;
    color: var(--pd-ink-3);
    margin: .4rem 0 0;
    letter-spacing: .04em;
}

/* ── Responsive ── */
@media (max-width: 960px) {
    .pd-card {
        grid-template-columns: 1fr;
    }

    .pd-left {
        border-right: none;
        border-bottom: .5px solid var(--pd-line);
    }

    .pd-img-box {
        height: 210px;
    }

    .pd-right {
        max-height: none;
        padding: 1.75rem;
    }

    .pd-right::after {
        display: none;
    }
}

@media (max-width: 640px) {
    .pd-section {
        padding: 3.5rem 0 2.5rem;
    }

    .pd-header {
        padding-bottom: 2rem;
    }

    .pd-header-stats {
        gap: 1.25rem;
        padding: .85rem 1.25rem;
    }

    .pd-hstat-num {
        font-size: 18px;
    }

    .pd-slider-wrap {
        padding: 0 .75rem 1.5rem;
    }

    .pd-viewport {
        border-radius: var(--r-xl);
    }

    .pd-img-box {
        height: 180px;
    }

    .pd-left-meta {
        padding: 1.25rem 1.25rem 1.5rem;
    }

    .pd-right {
        padding: 1.25rem;
    }

    .pd-rich-content .feature-grid {
        grid-template-columns: 1fr;
    }

    .pd-rich-content .stat-row {
        grid-template-columns: 1fr 1fr;
    }

    .pd-nav-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    .pd-title {
        font-size: 27px;
    }

    .pd-header-stats {
        flex-direction: column;
        gap: .75rem;
    }

    .pd-hstat-divider {
        width: 40px;
        height: 1px;
    }

    .pd-img-box {
        height: 160px;
    }

    .pd-left-meta,
    .pd-right {
        padding: 1rem;
    }
}

/* ================================================================
   SECTION
================================================================ */
.projects-section {
    padding: 80px 40px;
    font-family: 'Hind Siliguri', sans-serif;
}

/* ================================================================
   HEADER
================================================================ */
.projects-header {
    text-align: center;
    margin-bottom: 60px;
}

.projects-header .ph-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #6c5ce7;
    margin-bottom: 18px;
}

.projects-header .ph-eyebrow::before,
.projects-header .ph-eyebrow::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, #6c5ce7);
}

.projects-header .ph-eyebrow::after {
    background: linear-gradient(90deg, #6c5ce7, transparent);
}

.projects-header h2 {
    font-family: 'Hind Siliguri', sans-serif;
    font-size: clamp(28px, 4.5vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.projects-header h2 .accent {
    color: #6c5ce7;
    position: relative;
}

.projects-header h2 .accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6c5ce7, #a29bfe);
    border-radius: 2px;
    opacity: 0.4;
}

.projects-header .ph-sub {
    margin-top: 14px;
    font-size: 15px;
    font-weight: 400;
    max-width: 460px;
    margin-inline: auto;
    line-height: 1.6;
}

/* ================================================================
   GRID
================================================================ */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

/* ================================================================
   CARD
================================================================ */
.project-card {
    /* background: #ffffff; */
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s, box-shadow 0.38s;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(32px);
    animation: cardReveal 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.project-card:hover {
    transform: translateY(-7px);
    border-color: rgba(108, 92, 231, 0.25);
    box-shadow: 0 20px 50px rgba(108, 92, 231, 0.10), 0 4px 12px rgba(0, 0, 0, 0.06);
}

@keyframes cardReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-card:nth-child(1) {
    animation-delay: 0.05s;
}

.project-card:nth-child(2) {
    animation-delay: 0.12s;
}

.project-card:nth-child(3) {
    animation-delay: 0.19s;
}

.project-card:nth-child(4) {
    animation-delay: 0.26s;
}

.project-card:nth-child(5) {
    animation-delay: 0.33s;
}

.project-card:nth-child(6) {
    animation-delay: 0.40s;
}

.card-thumb {
    width: 100%;
    height: 210px;
    overflow: hidden;
    position: relative;
}

.card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card:hover .card-thumb img {
    transform: scale(1.07);
}

.card-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, transparent 40%, rgba(108, 92, 231, 0.75) 100%);
    opacity: 0;
    transition: opacity 0.38s;
    display: flex;
    border-radius: 10px;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 16px;
}

.project-card:hover .card-thumb-overlay {
    opacity: 1;
}

.thumb-action {
    width: 42px;
    height: 42px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.5) rotate(-30deg);
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.project-card:hover .thumb-action {
    transform: scale(1) rotate(0deg);
}

.thumb-action svg {
    width: 16px;
    height: 16px;
    stroke: #6c5ce7;
    fill: none;
    stroke-width: 2.2;
}

.card-cat-pill {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #6c5ce7;
}

.card-body {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-family: 'Hind Siliguri', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.2px;
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-desc {
    font-size: 13.5px;
    line-height: 1.65;
    font-weight: 400;
    flex: 1;
}

.card-footer {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.card-status {
    width: 49%;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-green);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid var(--accent-green);
    transition: background 0.2s, border-color 0.2s, gap 0.2s;
}

.card-status.inactive {
    color: #dc2626;
    background: #fef2f2;
    border-color: #fecaca;
}

.card-status::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.card-view-btn {
    width: 49%;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--main-color);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid var(--main-color);
    transition: background 0.2s, border-color 0.2s, gap 0.2s;
}

.card-view-btn:hover {
    background: #ede9fe;
    border-color: #c4b5fd;
    gap: 9px;
}

/* ================================================================
   OVERLAY
================================================================ */
.pm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 30, 0);
    z-index: 900;
    pointer-events: none;
    transition: background 0.4s, backdrop-filter 0.4s;
    backdrop-filter: blur(0px);
}

.pm-overlay.active {
    background: rgba(15, 15, 30, 0.5);
    backdrop-filter: blur(4px);
    pointer-events: all;
}

/* ================================================================
   SIDE DRAWER
================================================================ */
.pm-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: min(540px, 100vw);
    background: #ffffff;
    border-left: 1px solid #e8eaf0;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.08);
    z-index: 99999;
    transform: translateX(105%);
    transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pm-drawer.active {
    transform: translateX(0);
}

.pm-scroll {
    overflow-y: auto;
    flex: 1;
    scrollbar-width: thin;
    scrollbar-color: #c4b5fd transparent;
}

.pm-scroll::-webkit-scrollbar {
    width: 4px;
}

.pm-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.pm-scroll::-webkit-scrollbar-thumb {
    background: #c4b5fd;
    border-radius: 4px;
}

.pm-hero {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.pm-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.pm-drawer.active .pm-hero img {
    transform: scale(1.03);
}

.pm-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
    z-index: 1;
}

.pm-topbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent);
    z-index: 2;
}

.pm-label-badge {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(108, 92, 231, 0.7);
    backdrop-filter: blur(10px);
    padding: 5px 13px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pm-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgb(226, 75, 75);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.25s;
}

.pm-close:hover {
    background: rgb(199, 32, 32);
    transform: rotate(90deg);
}

.pm-close svg {
    width: 15px;
    height: 15px;
    stroke: white;
    fill: none;
    stroke-width: 2.2;
}

/* ================================================================
   MODAL CONTENT
================================================================ */
.pm-content {
    padding: 26px 28px 44px;
}

.pm-category-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: #6c5ce7;
    background: #f5f3ff;
    border: 1px solid #ede9fe;
    padding: 5px 13px;
    border-radius: 30px;
    margin-bottom: 14px;
}

.pm-category-tag::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6c5ce7;
}

.pm-title {
    font-family: 'Hind Siliguri', sans-serif;
    font-size: clamp(20px, 4vw, 26px);
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -0.4px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.pm-short-desc {
    font-size: 14px;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 24px;
    padding-left: 14px;
    border-left: 3px solid #6c5ce7;
    font-style: italic;
}

.pm-divider {
    height: 1px;
    background: linear-gradient(90deg, #e8eaf0 0%, transparent 100%);
    margin-bottom: 22px;
}

/* Meta grid */
.pm-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}

.pm-meta-card {
    background: #fafafa;
    border: 1px solid #eef0f6;
    border-radius: 14px;
    padding: 14px 15px;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.pm-meta-card:hover {
    background: #f5f3ff;
    border-color: #c4b5fd;
    transform: translateY(-2px);
}

.pm-meta-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.pm-meta-icon svg {
    width: 15px;
    height: 15px;
    stroke: #6c5ce7;
    fill: none;
    stroke-width: 1.8;
}

.pm-meta-label {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: #94a3b8;
    margin-bottom: 5px;
    font-family: 'Hind Siliguri', sans-serif;
}

.pm-meta-value {
    font-size: 13.5px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.35;
    word-break: break-word;
    font-family: 'Hind Siliguri', sans-serif;
}

.pm-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 600;
    text-transform: capitalize;
    color: #059669;
}

.pm-status-badge.inactive {
    color: #dc2626;
}

.pm-status-badge::before {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    animation: pulseGlow 2s ease-in-out infinite;
}

.pm-status-badge.inactive::before {
    animation: none;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.45);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(5, 150, 105, 0);
    }
}

.pm-url-link {
    color: #6c5ce7;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}

.pm-url-link:hover {
    color: #5b4ecc;
    text-decoration: underline;
}

.pm-no-url {
    font-size: 12.5px;
    color: #cbd5e1;
    font-style: italic;
    font-weight: 400;
}

/* Section heading */
.pm-section-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.pm-section-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pm-section-icon svg {
    width: 13px;
    height: 13px;
    stroke: #6c5ce7;
    fill: none;
    stroke-width: 2;
}

.pm-section-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #334155;
    font-family: 'Hind Siliguri', sans-serif;
}

/* ================================================================
   RICH TEXT BODY
================================================================ */
.pm-rich-body {
    font-family: 'Hind Siliguri', sans-serif;
    font-size: 14.5px;
    line-height: 1.85;
    color: #334155;
    word-break: break-word;
}

.pm-rich-body p {
    margin-bottom: 14px;
}

.pm-rich-body p:last-child {
    margin-bottom: 0;
}

.pm-rich-body h1,
.pm-rich-body h2,
.pm-rich-body h3,
.pm-rich-body h4 {
    font-family: 'Hind Siliguri', sans-serif;
    font-weight: 700;
    color: #1a1a2e;
    margin-top: 22px;
    margin-bottom: 10px;
    line-height: 1.25;
}

.pm-rich-body h1 {
    font-size: 20px;
}

.pm-rich-body h2 {
    font-size: 17px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f8;
}

.pm-rich-body h3 {
    font-size: 15px;
    color: #3730a3;
}

.pm-rich-body h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6c5ce7;
}

.pm-rich-body strong,
.pm-rich-body b {
    font-weight: 700;
    color: #1e293b;
}

.pm-rich-body em,
.pm-rich-body i {
    font-style: italic;
    color: #475569;
}

.pm-rich-body a {
    color: #6c5ce7;
    text-decoration: none;
    border-bottom: 1px solid #c4b5fd;
    transition: color 0.2s, border-color 0.2s;
}

.pm-rich-body a:hover {
    color: #5b4ecc;
    border-color: #6c5ce7;
}

.pm-rich-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pm-rich-body ul li {
    padding-left: 20px;
    position: relative;
    color: #334155;
}

.pm-rich-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
}

.pm-rich-body ol {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    counter-reset: rtcounter;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pm-rich-body ol li {
    padding-left: 30px;
    position: relative;
    counter-increment: rtcounter;
    color: #334155;
}

.pm-rich-body ol li::before {
    content: counter(rtcounter);
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    color: white;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pm-rich-body blockquote {
    margin: 18px 0;
    padding: 14px 18px 14px 20px;
    background: #f5f3ff;
    border-left: 4px solid #6c5ce7;
    border-radius: 0 12px 12px 0;
    color: #4c4082;
    font-style: italic;
    font-size: 14.5px;
    line-height: 1.75;
    position: relative;
}

.pm-rich-body blockquote::before {
    content: '\201C';
    position: absolute;
    top: -4px;
    left: 12px;
    font-size: 38px;
    color: #a29bfe;
    font-style: normal;
    line-height: 1;
}

.pm-rich-body code {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    padding: 2px 7px;
    font-size: 12.5px;
    font-family: 'Courier New', Courier, monospace;
    color: #e11d48;
}

.pm-rich-body pre {
    background: #1e293b;
    border-radius: 12px;
    padding: 16px 18px;
    overflow-x: auto;
    margin: 14px 0;
}

.pm-rich-body pre code {
    background: none;
    border: none;
    padding: 0;
    color: #a5f3c4;
    font-size: 13px;
    line-height: 1.7;
}

.pm-rich-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 14px 0;
    font-size: 13.5px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e8eaf0;
}

.pm-rich-body th {
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
    color: #3730a3;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 14px;
    text-align: left;
}

.pm-rich-body td {
    padding: 9px 14px;
    border-top: 1px solid #f0f2f7;
    color: #334155;
}

.pm-rich-body tr:nth-child(even) td {
    background: #fafbff;
}

.pm-rich-body tr:hover td {
    background: #f5f3ff;
}

.pm-rich-body hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, #e8eaf0 0%, transparent 100%);
    margin: 18px 0;
}

.pm-rich-body small {
    font-size: 12px;
    color: #94a3b8;
}

.pm-rich-body mark {
    background: #fef9c3;
    color: #713f12;
    border-radius: 3px;
    padding: 1px 4px;
}

/* img inside rich body */
.pm-rich-body img {
    max-width: 100%;
    border-radius: 10px;
    margin: 10px 0;
    border: 1px solid #e8eaf0;
}

/* ================================================================
   CTA
================================================================ */
.pm-cta {
    margin-top: 28px;
    display: flex;
    gap: 10px;
}

.pm-btn-primary {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    color: white;
    font-size: 13.5px;
    font-weight: 700;
    font-family: 'Hind Siliguri', sans-serif;
    padding: 13px 20px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(108, 92, 231, 0.3);
}

.pm-btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(108, 92, 231, 0.4);
}

.pm-btn-primary svg {
    width: 15px;
    height: 15px;
    stroke: white;
    fill: none;
    stroke-width: 2;
    transition: transform 0.2s;
}

.pm-btn-primary:hover svg {
    transform: translate(2px, -2px);
}

.pm-btn-secondary {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #f5f3ff;
    border: 1px solid #ede9fe;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.pm-btn-secondary:hover {
    background: #ede9fe;
    border-color: #c4b5fd;
    transform: translateY(-2px);
}

.pm-btn-secondary svg {
    width: 16px;
    height: 16px;
    stroke: #6c5ce7;
    fill: none;
    stroke-width: 2;
}

/* ================================================================
   ENTRANCE ANIMATIONS
================================================================ */
.pm-drawer.active .pm-content>* {
    animation: fadeUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.pm-drawer.active .pm-category-tag {
    animation-delay: 0.10s;
}

.pm-drawer.active .pm-title {
    animation-delay: 0.15s;
}

.pm-drawer.active .pm-short-desc {
    animation-delay: 0.20s;
}

.pm-drawer.active .pm-divider:nth-of-type(1) {
    animation-delay: 0.24s;
}

.pm-drawer.active .pm-meta-grid {
    animation-delay: 0.28s;
}

.pm-drawer.active .pm-divider:nth-of-type(2) {
    animation-delay: 0.32s;
}

.pm-drawer.active .pm-section-head {
    animation-delay: 0.35s;
}

.pm-drawer.active .pm-rich-body {
    animation-delay: 0.38s;
}

.pm-drawer.active .pm-cta {
    animation-delay: 0.42s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feedback-section {
    padding: 80px 20px;
    text-align: center;
    background: transparent;
    /* NO BACKGROUND */
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.testimonial-card {
    display: none;
    animation: fade 0.6s ease;
}

.testimonial-card.active {
    display: block;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 20px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
}

.media-box img {
    width: 100%;
    border-radius: 15px;
}

.client-logo img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.stars {
    color: #fbbf24;
}

.slider-dots {
    margin-top: 20px;
}

.slider-dots span {
    width: 10px;
    height: 10px;
    background: #aaa;
    display: inline-block;
    border-radius: 50%;
    margin: 5px;
    cursor: pointer;
}

.slider-dots .active {
    background: #6366f1;
}

@media(max-width:768px) {
    .card-grid {
        grid-template-columns: 1fr;
    }
}

.cs {
    font-family: 'Hind Siliguri', system-ui, sans-serif;
    padding: 70px 20px 80px;
}

.cs-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.cs-hero {
    text-align: center;
    margin-bottom: 52px;
}

.cs-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #EDE9FF;
    border: 1px solid #AFA9EC;
    border-radius: 999px;
    padding: 5px 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #3C3489;
    margin-bottom: 24px;
}

.cs-badge i {
    font-size: 14px;
}

.cs-h {
    font-family: 'Hind Siliguri', Georgia, serif;
    font-size: clamp(30px, 5vw, 50px);
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 6px;
    line-height: 1.1;
}

.cs-h em {
    font-style: italic;
    font-weight: 400;
    color: #6C5CE7;
}

.cs-p {
    font-size: 15px;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 16px auto 0;
    line-height: 1.7;
}

.cs-perks {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.cs-perk {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--color-background-secondary);
    border: 0.5px solid var(--color-border-tertiary);
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 13px;
    color: var(--color-text-secondary);
}

.cs-perk i {
    font-size: 14px;
    color: #6C5CE7;
}

.cs-card {
    background: var(--color-background-primary);
    border: 0.5px solid var(--color-border-tertiary);
    border-radius: 20px;
    overflow: hidden;
}

.cs-card-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
}

.cs-visual {
    background: #EDE9FF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 32px;
    gap: 20px;
    position: relative;
}

.cs-visual-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-visual-icon i {
    font-size: 34px;
    color: #6C5CE7;
}

.cs-time-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border-radius: 999px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    color: #3C3489;
}

.cs-time-badge i {
    font-size: 15px;
}

.cs-free-tag {
    background: #6C5CE7;
    color: #fff;
    border-radius: 999px;
    padding: 5px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.cs-body {
    background: var(--card-bg);
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 2px solid #EDE9FF;
    gap: 20px;
}

.cs-tag {
    display: inline-block;
    background: #EDE9FF;
    color: #3C3489;
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
}

.cs-bh {
    font-family: 'Hind Siliguri', Georgia, serif;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0;
    line-height: 1.2;
}

.cs-bp {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.65;
    margin: 0;
}

.cs-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cs-step {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--color-text-secondary);
}

.cs-step-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #EDE9FF;
    color: #534AB7;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.cs-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #6C5CE7;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 13px 28px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s, transform .15s;
    align-self: flex-start;
}

.cs-btn:hover {
    background: #534AB7;
    transform: translateY(-1px);
}

.cs-btn i {
    font-size: 16px;
}

.cs-sub {
    font-size: 12px;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 5px;
}

.cs-sub i {
    font-size: 13px;
    color: #1D9E75;
}

@media(max-width:640px) {
    .cs {
        padding: 50px 16px 60px;
    }

    .cs-badge{
        display: none;
    }

    .cs-card-inner {
        grid-template-columns: 1fr;
    }

    .cs-visual {
        padding: 36px 24px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .cs-body {
        padding: 28px 24px;
    }

    .cs-btn {
        align-self: stretch;
        justify-content: center;
    }
}

.site-footer {
    font-family: 'Hind Siliguri', sans-serif;
    background: #0f0f1a;
    color: #e5e7eb;
    padding: 80px 20px 30px;
}

.footer-container {
    max-width: 1100px;
    margin: auto;
}

/* GRID */
.footer-main-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
}

/* BRAND */
.footer-brand {
    padding-right: 20px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #6C5CE7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 18px;
}

.ab .fs-15 {
    font-size: 14px;
    color: #a5b4fc;
    margin: 0;
}

.ab .fs-30 {
    font-size: 18px;
    margin: 2px 0 0;
    color: #fff;
}

.footer-brand p {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.7;
    color: #9ca3af;
}

/* NAV */
.footer-nav {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-nav a {
    font-size: 13px;
    color: #c7d2fe;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.2s;
}

.footer-nav a:hover {
    background: #6C5CE7;
    color: #fff;
    transform: translateY(-1px);
}

/* CONTACT */
.footer-contact {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-block span {
    font-size: 12px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.contact-block p {
    margin: 4px 0 0;
    font-size: 14px;
    color: #e5e7eb;
}

/* DIVIDER */
.footer-divider {
    margin: 40px 0 20px;
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

/* BOTTOM */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright-text {
    font-size: 13px;
    color: #9ca3af;
}

/* SOCIAL */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.2s;
    text-decoration: none;
}

.social-btn:hover {
    background: #6C5CE7;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media(max-width:768px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

#page-loader-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 1px;
    width: 0%;
    background: var(--main-color);
    z-index: 999999;
    transition: width 0.25s ease, opacity 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}


 @media (max-width: 700px) {
        .cards-grid {
            grid-template-columns: 1fr !important;
        }

        .business-grid {
            grid-template-columns: 1fr !important;
        }

        .hero-btns {
            flex-direction: column;
            align-items: center;
        }
    }

    @media (max-width: 900px) {
        .cards-grid {
            grid-template-columns: 1fr 1fr !important;
        }
    }

    @media (max-width: 600px) {
        .cards-grid {
            grid-template-columns: 1fr !important;
        }
    }