:root {
    --brand: #ef6b2e;
    --brand-2: #f59b22;
    --brand-3: #f6c24a;
    --teal: #1ba99b;
    --green: #4ba56a;
    --ink: #17324a;
    --ink-2: #27465e;
    --panel: rgba(255, 251, 245, 0.88);
    --panel-strong: rgba(255, 248, 239, 0.96);
    --panel-soft: rgba(255, 255, 255, 0.72);
    --border: rgba(23, 50, 74, 0.12);
    --border-strong: rgba(23, 50, 74, 0.18);
    --text: #17324a;
    --text-2: #36546b;
    --muted: #5b7183;
    --muted-2: #8092a2;
    --white: #17324a;
    --gradient-primary: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 56%, var(--brand-3) 100%);
    --gradient-panel: linear-gradient(150deg, rgba(255, 255, 255, 0.92), rgba(255, 246, 235, 0.78));
    --shadow-soft: 0 18px 50px rgba(59, 78, 95, 0.12);
    --shadow-hover: 0 22px 60px rgba(59, 78, 95, 0.16);
    --shadow-brand: 0 16px 34px rgba(239, 107, 46, 0.22);
    --radius-card: 8px;
    --radius-panel: 10px;
    --transition: all 0.25s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Hind Siliguri", sans-serif;
    color: var(--text);
    background:
        linear-gradient(115deg, rgba(239, 107, 46, 0.14), transparent 24%),
        linear-gradient(245deg, rgba(27, 169, 155, 0.1), transparent 30%),
        linear-gradient(180deg, #fffaf4 0%, #fff3e6 48%, #fffdf9 100%);
    line-height: 1.65;
    letter-spacing: 0;
    overflow-x: hidden;
}

::selection {
    background: rgba(255, 159, 47, 0.34);
    color: var(--ink);
}

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

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

p {
    margin: 0;
    color: var(--muted);
}

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

small,
.text-muted {
    color: var(--muted-2) !important;
}

.site-wrap {
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

.site-background {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(23, 50, 74, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(23, 50, 74, 0.05) 1px, transparent 1px);
    background-size: 52px 52px;
}

.glow {
    position: absolute;
    opacity: 0.7;
}

.glow-1 {
    left: -12%;
    right: -12%;
    top: 9%;
    height: 210px;
    transform: rotate(-7deg);
    background: linear-gradient(90deg, transparent, rgba(239, 107, 46, 0.18), rgba(246, 194, 74, 0.14), transparent);
}

.glow-2 {
    left: -10%;
    right: -10%;
    bottom: 18%;
    height: 180px;
    transform: rotate(8deg);
    background: linear-gradient(90deg, transparent, rgba(27, 169, 155, 0.12), rgba(75, 165, 106, 0.08), transparent);
}

.mesh-layer {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(140deg, transparent 0%, rgba(23, 50, 74, 0.04) 36%, transparent 37%),
        linear-gradient(36deg, transparent 0%, rgba(23, 50, 74, 0.03) 58%, transparent 59%);
    opacity: 0.85;
}

.container {
    max-width: 1220px;
}

.section-space {
    padding: 96px 0;
}

.section-space-sm {
    padding: 76px 0;
}

.section-head {
    max-width: 740px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    padding: 7px 11px;
    border: 1px solid rgba(255, 159, 47, 0.28);
    border-radius: var(--radius-card);
    background: rgba(255, 159, 47, 0.12);
    color: #9a4e12;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0;
}

.section-title {
    margin: 0 0 14px;
    font-family: "Noto Serif Bengali", serif;
    font-size: 2.65rem;
    line-height: 1.12;
    color: var(--text);
    letter-spacing: 0;
    text-wrap: balance;
}

.section-subtitle {
    color: var(--text-2);
    font-size: 1rem;
}

.glass-panel,
.glass-card,
.showcase-frame,
.page-hero-panel,
.content-panel,
.sidebar-panel {
    background: var(--gradient-panel), var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.glass-card {
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 159, 47, 0.34);
    box-shadow: var(--shadow-hover);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: var(--radius-card);
    font-weight: 800;
    letter-spacing: 0;
    padding: 0.78rem 1.16rem;
    transition: var(--transition);
}

.btn-gradient {
    color: #120c05;
    background: var(--gradient-primary);
    box-shadow: var(--shadow-brand);
}

.btn-gradient:hover {
    color: #120c05;
    transform: translateY(-2px);
    filter: saturate(1.08);
}

.btn-outline-glass {
    color: var(--text);
    border: 1px solid var(--border-strong);
    background: rgba(255, 255, 255, 0.72);
}

.btn-outline-glass:hover {
    color: var(--white);
    border-color: rgba(255, 159, 47, 0.42);
    background: rgba(255, 159, 47, 0.12);
    transform: translateY(-2px);
}

.btn-light {
    color: var(--ink);
    background: #ffffff;
}

.btn-sm {
    padding: 0.62rem 0.92rem;
    font-size: 0.9rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    padding-top: 12px;
}

.glass-nav {
    margin: 0 auto;
    width: calc(100% - 28px);
    max-width: 1288px;
    border-radius: var(--radius-panel);
    border: 1px solid var(--border-strong);
    background: rgba(255, 250, 244, 0.92);
    box-shadow: 0 16px 46px rgba(59, 78, 95, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: var(--transition);
}

.glass-nav.is-scrolled {
    width: 100%;
    border-radius: 0 0 var(--radius-panel) var(--radius-panel);
    border-left-color: transparent;
    border-right-color: transparent;
}

.brand-logo,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Noto Serif Bengali", serif;
    font-weight: 800;
    color: var(--text);
    letter-spacing: 0;
}

.brand-dot {
    position: relative;
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 4px;
    background: var(--gradient-primary);
    box-shadow: 0 0 0 5px rgba(255, 106, 61, 0.14);
}

.brand-text {
    font-size: 1rem;
}

.main-menu {
    gap: 4px;
}

.main-menu .nav-link {
    position: relative;
    padding: 0.72rem 0.86rem;
    border-radius: var(--radius-card);
    color: var(--text-2);
    font-weight: 800;
    font-size: 0.91rem;
    letter-spacing: 0;
}

.main-menu .nav-link:hover,
.main-menu .nav-link.is-active,
.main-menu .nav-link.show {
    color: var(--white);
    background: rgba(239, 107, 46, 0.1);
}

.main-menu .nav-link.is-active::before,
.main-menu .nav-link.show::before {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 6px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 4px;
}

.glass-dropdown {
    margin-top: 10px;
    padding: 8px;
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
    background: rgba(255, 250, 244, 0.98);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
}

.glass-dropdown .dropdown-item {
    border-radius: 6px;
    padding: 0.58rem 0.75rem;
    color: var(--text-2);
    font-weight: 700;
}

.glass-dropdown .dropdown-item:hover {
    background: rgba(255, 159, 47, 0.12);
    color: var(--white);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-btn {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.76);
    color: var(--text);
    transition: var(--transition);
}

.icon-btn:hover,
.user-btn:hover {
    color: var(--white);
    border-color: rgba(255, 159, 47, 0.4);
    background: rgba(255, 159, 47, 0.12);
    transform: translateY(-2px);
}

.user-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.62rem 0.92rem;
    border-radius: var(--radius-card);
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--text);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.76);
    transition: var(--transition);
}

.nav-toggle-btn {
    border: 0;
    box-shadow: none !important;
    padding: 8px;
}

.nav-toggle-btn .toggle-line {
    width: 23px;
    height: 2px;
    border-radius: 5px;
    display: block;
    background: var(--text);
    margin: 5px 0;
    transition: var(--transition);
}

.hero-section {
    position: relative;
    padding: 96px 0 72px;
}

.hero-container {
    position: relative;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
    align-items: center;
    gap: 44px;
}

.hero-copy h1 {
    margin: 16px 0 20px;
    max-width: 780px;
    font-family: "Noto Serif Bengali", serif;
    font-size: 3.8rem;
    line-height: 1.05;
    color: var(--white);
    letter-spacing: 0;
    text-wrap: balance;
}

.hero-text {
    max-width: 62ch;
    color: var(--text-2);
    font-size: 1.06rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 34px;
    max-width: 720px;
}

.trust-row div {
    min-height: 92px;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.74);
}

.trust-row strong {
    display: block;
    font-size: 1.45rem;
    color: #9a4e12;
}

.trust-row span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
}

.hero-showcase {
    position: relative;
}

.hero-media-frame {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-panel);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-soft);
    isolation: isolate;
}

.hero-media-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 44%, rgba(255, 248, 239, 0.94));
    z-index: 1;
    pointer-events: none;
}

.hero-media-frame img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.hero-media-caption {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-card);
    background: rgba(255, 250, 244, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.hero-media-caption span,
.hero-media-caption strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-media-caption span {
    color: var(--text-2);
    font-weight: 800;
    font-size: 0.86rem;
}

.hero-media-caption strong {
    color: #9a4e12;
    font-family: "Noto Serif Bengali", serif;
    font-size: 0.9rem;
}

.hero-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.hero-mini-grid div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 62px;
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.78);
    color: var(--text-2);
    font-weight: 800;
}

.hero-mini-grid i {
    color: #9a4e12;
}

.showcase-frame {
    position: relative;
    padding: 15px;
    min-height: 520px;
    overflow: hidden;
}

.showcase-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 106, 61, 0.18), transparent 34%),
        linear-gradient(245deg, rgba(41, 211, 194, 0.14), transparent 36%);
    pointer-events: none;
}

.window-bar {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 7px;
    min-height: 38px;
    padding: 0 10px;
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.82);
    color: var(--muted);
}

.window-bar span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--brand);
}

.window-bar span:nth-child(2) {
    background: var(--brand-3);
}

.window-bar span:nth-child(3) {
    background: var(--teal);
}

.window-bar strong {
    margin-left: 8px;
    color: var(--text-2);
    font-family: "Noto Serif Bengali", serif;
    font-size: 0.8rem;
}

.showcase-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.showcase-panel {
    min-height: 145px;
    padding: 18px;
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.78);
}

.showcase-panel.span-2 {
    grid-column: span 2;
}

.showcase-panel i {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: var(--radius-card);
    color: var(--ink);
    background: var(--gradient-primary);
    font-size: 1.2rem;
}

.showcase-panel strong,
.showcase-panel span {
    display: block;
}

.showcase-panel strong {
    color: var(--text);
    font-family: "Noto Serif Bengali", serif;
}

.showcase-panel span {
    color: var(--muted);
    font-size: 0.88rem;
}

.panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.panel-head span {
    color: var(--muted);
    font-weight: 800;
}

.panel-head strong {
    color: #9a4e12;
    font-size: 2rem;
}

.progress-stack {
    display: grid;
    gap: 10px;
}

.progress-stack span {
    display: block;
    width: 100%;
    height: 12px;
    border-radius: 999px;
    background: rgba(23, 50, 74, 0.08);
    overflow: hidden;
}

.progress-stack span::before {
    content: "";
    display: block;
    width: var(--w);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--brand), var(--brand-3));
}

.timeline-panel {
    display: grid;
    gap: 14px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.timeline-item span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--muted-2);
}

.timeline-item.active span {
    border-color: var(--green);
    background: var(--green);
}

.timeline-item p {
    color: var(--text-2);
    font-weight: 700;
    font-size: 0.9rem;
}

.launch-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(41, 211, 194, 0.26);
    border-radius: var(--radius-card);
    background: rgba(41, 211, 194, 0.08);
    color: var(--text-2);
    font-weight: 800;
}

.launch-note i {
    color: var(--teal);
}

.services-grid,
.portfolio-grid,
.products-grid,
.blog-grid,
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.feature-card,
.project-card,
.product-card,
.blog-card,
.testimonial-card {
    padding: 22px;
}

.service-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    margin-bottom: 18px;
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
}

.service-icon,
.feature-card > i,
.product-thumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-card);
    color: #10131b;
    background: var(--gradient-primary);
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.service-card h3,
.feature-card h4,
.project-card h3,
.product-card h3,
.blog-card h3,
.value-card h3,
.process-card h3 {
    margin: 0 0 9px;
    font-family: "Noto Serif Bengali", serif;
    color: var(--text);
    font-size: 1.04rem;
    line-height: 1.32;
}

.service-card p,
.feature-card p,
.project-card p,
.product-card p,
.blog-card p,
.value-card p,
.process-card p {
    font-size: 0.93rem;
}

.service-link {
    margin-top: 17px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #ffd28f;
    font-weight: 800;
    font-size: 0.9rem;
}

.service-link i {
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(4px);
}

.split-feature {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    align-items: center;
    gap: 34px;
}

.feature-copy .btn {
    margin-top: 24px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.features-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card {
    min-height: 185px;
}

.project-visual {
    position: relative;
    display: grid;
    place-items: end start;
    min-height: 190px;
    margin-bottom: 18px;
    padding: 16px;
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 106, 61, 0.28), transparent 58%),
        linear-gradient(38deg, rgba(41, 211, 194, 0.18), transparent 55%),
        rgba(255, 255, 255, 0.04);
    isolation: isolate;
}

.project-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 36%, rgba(255, 248, 239, 0.78));
    z-index: 1;
}

.project-visual::after {
    display: none;
}

.project-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.project-visual span {
    position: relative;
    z-index: 3;
    padding: 7px 10px;
    border-radius: var(--radius-card);
    background: rgba(255, 250, 244, 0.88);
    color: var(--text);
    font-weight: 900;
    font-size: 0.82rem;
}

.visual-2 {
    background:
        linear-gradient(135deg, rgba(41, 211, 194, 0.26), transparent 55%),
        linear-gradient(34deg, rgba(255, 201, 51, 0.15), transparent 56%),
        rgba(255, 255, 255, 0.04);
}

.visual-3 {
    background:
        linear-gradient(135deg, rgba(120, 224, 143, 0.18), transparent 54%),
        linear-gradient(34deg, rgba(255, 106, 61, 0.24), transparent 56%),
        rgba(255, 255, 255, 0.04);
}

.project-meta,
.product-meta,
.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 5px 9px;
    border-radius: var(--radius-card);
    background: rgba(255, 159, 47, 0.11);
    color: #9a4e12;
    font-size: 0.76rem;
    font-weight: 900;
}

.section-action {
    margin-top: 28px;
    text-align: center;
}

.product-thumb {
    width: 100%;
    height: 172px;
    margin-bottom: 18px;
    background:
        linear-gradient(135deg, rgba(255, 106, 61, 0.18), rgba(41, 211, 194, 0.08)),
        rgba(255, 255, 255, 0.56);
    border: 1px solid var(--border);
    color: #9a4e12;
    font-size: 2.4rem;
}

.price {
    font-family: "Noto Serif Bengali", serif;
    color: var(--white);
    font-weight: 800;
}

.stars {
    display: inline-flex;
    gap: 2px;
    color: #ffc933;
    font-size: 0.8rem;
}

.testimonial-band {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 24px;
    align-items: center;
    padding: 28px;
    border-radius: var(--radius-panel);
    border: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(255, 106, 61, 0.1), rgba(41, 211, 194, 0.06));
}

.testimonial-card {
    min-height: 220px;
}

.testimonial-quote {
    margin-bottom: 18px;
    color: var(--text-2);
}

.testimonial-author h5 {
    margin: 0;
    color: var(--text);
    font-family: "Noto Serif Bengali", serif;
    font-size: 0.98rem;
}

.testimonial-author span {
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 700;
}

.blog-card {
    min-height: 250px;
}

.blog-meta {
    justify-content: flex-start;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
}

.cta-banner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 34px;
    border-radius: var(--radius-panel);
    background:
        linear-gradient(135deg, rgba(255, 106, 61, 0.95), rgba(255, 159, 47, 0.86)),
        linear-gradient(45deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
    color: #130c05;
    box-shadow: var(--shadow-brand);
}

.cta-banner .section-kicker {
    color: #231302;
    border-color: rgba(19, 12, 5, 0.18);
    background: rgba(255, 255, 255, 0.24);
}

.cta-content h2,
.cta-content h3 {
    margin: 0 0 10px;
    font-family: "Noto Serif Bengali", serif;
    font-size: 2rem;
    line-height: 1.2;
    color: #130c05;
}

.cta-content p {
    color: rgba(19, 12, 5, 0.78);
    max-width: 760px;
}

.cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cta-actions .btn-outline-glass {
    color: #130c05;
    border-color: rgba(19, 12, 5, 0.24);
    background: rgba(255, 255, 255, 0.18);
}

.site-footer {
    margin-top: 86px;
    padding: 72px 0 24px;
    background: rgba(255, 248, 239, 0.92);
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.18fr repeat(3, 1fr);
    gap: 26px;
}

.footer-brand {
    margin-bottom: 15px;
}

.footer-text {
    color: var(--muted);
    font-size: 0.94rem;
}

.footer-col h5 {
    margin: 0 0 14px;
    color: var(--text);
    font-family: "Noto Serif Bengali", serif;
    font-size: 1rem;
}

.footer-links li + li {
    margin-top: 9px;
}

.footer-links a,
.footer-contact a {
    color: var(--muted);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #9a4e12;
}

.newsletter-form {
    display: grid;
    gap: 9px;
    margin-top: 12px;
}

.newsletter-form input,
.search-field,
.form-control,
textarea.form-control,
select.form-control {
    width: 100%;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.82);
    border-radius: var(--radius-card);
    padding: 0.78rem 0.9rem;
    color: var(--text);
    outline: none;
    transition: var(--transition);
}

.newsletter-form input::placeholder,
.form-control::placeholder,
textarea.form-control::placeholder {
    color: var(--muted-2);
}

.newsletter-form input:focus,
.search-field:focus,
.form-control:focus,
textarea.form-control:focus,
select.form-control:focus {
    border-color: rgba(255, 159, 47, 0.54);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 0 0 3px rgba(255, 159, 47, 0.12);
    color: var(--text);
}

.footer-contact {
    display: grid;
    gap: 7px;
    margin-top: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--muted-2);
    font-size: 0.88rem;
}

.footer-bottom span {
    color: #ffd28f;
    font-weight: 800;
}

.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-card);
    border: 1px solid var(--border-strong);
    background: var(--gradient-primary);
    color: #120c05;
    box-shadow: var(--shadow-brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1030;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-2px);
}

.page-hero {
    padding: 94px 0 54px;
}

.page-hero-panel {
    padding: 30px;
}

.page-title {
    margin: 0 0 12px;
    color: var(--white);
    font-family: "Noto Serif Bengali", serif;
    font-size: 2.9rem;
    line-height: 1.12;
    letter-spacing: 0;
}

.page-subtitle {
    max-width: 760px;
    color: var(--text-2);
}

.page-grid,
.contact-grid,
.split-layout {
    display: grid;
    grid-template-columns: 1.58fr 0.92fr;
    gap: 22px;
    align-items: start;
}

.content-panel,
.sidebar-panel {
    padding: 24px;
}

.content-panel h2,
.content-panel h3,
.sidebar-panel h3,
.sidebar-panel h4 {
    margin: 0 0 12px;
    font-family: "Noto Serif Bengali", serif;
    color: var(--text);
    letter-spacing: 0;
}

.content-panel + .content-panel,
.sidebar-panel + .sidebar-panel {
    margin-top: 18px;
}

.stat-grid,
.values-grid,
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.stat-card,
.value-card,
.process-card,
.contact-card {
    padding: 20px;
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.76);
}

.stat-card strong {
    display: block;
    color: #9a4e12;
    font-size: 1.8rem;
}

.stat-card span,
.value-card p,
.process-card p,
.contact-card p {
    color: var(--muted);
}

.detail-list {
    display: grid;
    gap: 11px;
}

.detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-2);
    font-weight: 700;
}

.detail-list i {
    color: var(--teal);
    margin-top: 3px;
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.filter-pills button {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.78);
    border-radius: var(--radius-card);
    padding: 0.56rem 0.92rem;
    font-weight: 800;
    color: var(--text-2);
    transition: var(--transition);
}

.filter-pills button.active,
.filter-pills button:hover {
    background: var(--gradient-primary);
    color: #120c05;
    border-color: transparent;
}

[data-filter-item] {
    transition: var(--transition);
}

[data-filter-item].is-hidden {
    opacity: 0;
    transform: scale(0.98);
    pointer-events: none;
    display: none !important;
}

.form-group {
    margin-bottom: 14px;
}

.form-label {
    color: var(--text-2);
    font-weight: 800;
}

.contact-methods {
    display: grid;
    gap: 12px;
}

.contact-card {
    display: flex;
    gap: 13px;
}

.contact-card i {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: var(--radius-card);
    background: rgba(255, 159, 47, 0.14);
    color: #9a4e12;
}

.contact-card h4 {
    margin: 0 0 3px;
    font-family: "Noto Serif Bengali", serif;
    font-size: 0.98rem;
}

.status-alert {
    padding: 13px 15px;
    margin-bottom: 18px;
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
    font-weight: 800;
}

.status-alert.success {
    border-color: rgba(120, 224, 143, 0.4);
    background: rgba(120, 224, 143, 0.1);
    color: #276246;
}

.status-alert.error {
    border-color: rgba(255, 106, 61, 0.44);
    background: rgba(255, 106, 61, 0.1);
    color: #a14e2c;
}

body,
button,
input,
select,
textarea {
    font-family: "Hind Siliguri", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-logo,
.footer-brand,
.brand-text,
.section-title,
.page-title,
.hero-copy h1,
.hero-media-caption strong,
.trust-row strong,
.showcase-panel strong,
.panel-head strong,
.service-card h3,
.feature-card h4,
.project-card h3,
.product-card h3,
.blog-card h3,
.value-card h3,
.process-card h3,
.price,
.testimonial-author h5,
.cta-content h2,
.cta-content h3,
.footer-col h5,
.content-panel h2,
.content-panel h3,
.sidebar-panel h3,
.sidebar-panel h4,
.contact-card h4,
.stat-card strong {
    font-family: "Noto Serif Bengali", serif;
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.policy-content h2,
.article-body h2 {
    margin-top: 24px;
}

.policy-content p + p,
.article-body p + p {
    margin-top: 12px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--muted);
    font-weight: 800;
}

.reveal-up {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: #f6efe4;
}

body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--brand), var(--brand-3));
    border-radius: 999px;
}

@media (max-width: 1199.98px) {
    .glass-nav {
        width: calc(100% - 18px);
    }

    .main-menu {
        margin: 16px 0;
        gap: 2px;
    }

    .nav-actions {
        padding: 6px 0 12px;
    }

    .hero-layout,
    .split-feature,
    .testimonial-band {
        grid-template-columns: 1fr;
    }

    .hero-copy h1 {
        font-size: 3.2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .features-grid,
    .portfolio-grid,
    .products-grid,
    .blog-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-grid,
    .contact-grid,
    .split-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
    .section-space {
        padding: 82px 0;
    }

    .section-space-sm {
        padding: 68px 0;
    }

    .hero-section {
        padding: 82px 0 60px;
    }

    .section-title,
    .page-title {
        font-size: 2.25rem;
    }

    .hero-copy h1 {
        font-size: 2.75rem;
    }

    .stat-grid,
    .values-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .site-header {
        padding-top: 8px;
    }

    .glass-nav {
        width: calc(100% - 10px);
    }

    .hero-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }

    .hero-copy h1 {
        font-size: 2.28rem;
    }

    .hero-actions .btn,
    .cta-actions .btn {
        width: 100%;
    }

    .trust-row,
    .services-grid,
    .features-grid,
    .features-grid.compact,
    .portfolio-grid,
    .products-grid,
    .blog-grid,
    .testimonials-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .showcase-frame {
        min-height: auto;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-panel.span-2 {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .section-title,
    .page-title {
        font-size: 1.9rem;
    }

    .hero-copy h1 {
        font-size: 2rem;
    }

    .page-hero-panel,
    .content-panel,
    .sidebar-panel,
    .cta-banner,
    .testimonial-band {
        padding: 20px;
    }

    .service-card,
    .feature-card,
    .project-card,
    .product-card,
    .blog-card,
    .testimonial-card {
        padding: 18px;
    }
}
