/* Reset and Base Styles */

/* Blog Detail Loading States */
.loading {
    opacity: 0.6;
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: loading-shimmer 1.5s infinite;
}

@keyframes loading-shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.author-image-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading-shimmer 1.5s infinite;
}

.content-loading {
    text-align: center;
    padding: 3rem 1rem;
    color: #666;
}

.error-message {
    text-align: center;
    padding: 3rem 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 2rem 0;
}

.error-message h2 {
    color: #dc3545;
    margin-bottom: 1rem;
}

.error-message a {
    display: inline-block;
    margin-top: 1rem;
    color: #007bff;
    text-decoration: none;
}

.error-message a:hover {
    text-decoration: underline;
}

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

body {
    font-family: 'Sora', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Headings with Petrona font */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Petrona', serif;
    font-weight: 300;
    color: #333;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Buttons */
.cta-button,
.submit-btn {
    display: inline-block;
    background: #FFD700;
    /* Yellow background */
    color: #000;
    /* Black text */
    padding: 0.75rem 1.5rem;
    border: 2px solid #000;
    /* Black border */
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cta-button:hover,
.submit-btn:hover {
    background: #FFC000;
    /* Slightly darker yellow on hover */
}

.cta-button:active,
.submit-btn:active {
    background: #FFB700;
    /* Even darker yellow when pressed */
}

/* ==================== */
/* Secondary Header */
/* ==================== */
.secondary-header {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 0;
    position: relative;
    z-index: 900;
    margin-top: 78px;
    /* Height of the main navbar */
}

.secondary-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.secondary-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.secondary-nav-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.secondary-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.secondary-link:hover {
    color: #FFD700;
    text-decoration: underline;
}

.divider {
    color: #666;
    margin: 0 0.5rem;
    font-size: 0.9rem;
}

.current-page {
    color: #999;
    font-size: 0.9rem;
}

.secondary-nav-right .back-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.secondary-nav-right .back-link:hover {
    color: #FFD700;
}

.back-arrow {
    font-size: 1.1rem;
    line-height: 1;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
    line-height: 1.2;
}

/* Adjust hero section margin to account for secondary header */
.hero {
    padding-top: 0;
}

/* ==================== */
/* Navigation */
/* ==================== */
.navbar {
    position: fixed;
    top: 40px;
    /* Adjusted for marquee notification */
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo .logo {
    height: 40px;
    display: block;
    transition: transform 0.3s ease;
}

.nav-logo:hover .logo {
    transform: scale(1.05);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #FFD700;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

.nav-link:hover,
.nav-link:focus {
    color: #000;
}

/* CTA Button */
.nav-cta {
    background: #FFD700;
    color: #000;
    padding: 0.6rem 1.5rem;
    border: 2px solid #000;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-cta:hover {
    background: #000;
    color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile Menu Button */
.hamburger {
    display: none;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 30px;
    height: 2px;
    background-color: #333;
    border-radius: 4px;
    position: absolute;
    transition: transform 0.15s ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -8px;
    transition: top 0.1s 0.14s ease, opacity 0.1s ease;
}

.hamburger-inner::after {
    bottom: -8px;
    transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* Active state */
.hamburger.active .hamburger-inner {
    transform: rotate(45deg);
    transition: transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger.active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease, opacity 0.1s 0.14s ease;
}

.hamburger.active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section Decorations */
.hero-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.decoration-left,
.decoration-right {
    position: absolute;
    width: 200px;
    height: 200px;
}

.decoration-left {
    top: 10%;
    left: 5%;
    animation: float 8s ease-in-out infinite;
}

.decoration-right {
    bottom: 10%;
    right: 5%;
    animation: float 10s ease-in-out infinite reverse;
}

.decoration-svg {
    width: 100%;
    height: 100%;
    opacity: 0.6;
    transition: transform 0.3s ease, opacity 0.3s ease;
    object-fit: contain;
}

.what-we-do-svg {
    max-width: 400px;
    height: auto;
    opacity: 0.8;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transform: scale(1.2) rotate(-5deg);
}

.left-svg {
    transform: rotate(-15deg);
}

.right-svg {
    transform: rotate(15deg);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(to bottom, #ffffff 0%, #ebd9aa 88%, #ffffff 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 4rem;
}

/* Hero Background Image */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8 !important;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease;
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
}

.hero h1 {
    font-size: 3.4rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: .8;
    animation: fadeInUp 0.8s ease 0.2s both;
    text-wrap: balance;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 4rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(to bottom, #ffffff 0%, #ebd9aa 88%, #ffffff 100%);
    /* display: flex;
    align-items: center; */
}

.page-hero-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center !important;
    text-align: center;
    margin: 0 auto;
}

.page-hero-content h1 {
    font-family: 'Petrona', serif !important;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    color: #1a1a1a;
    margin: 0.15rem 0;
    line-height: 1.2;
}

.about-hero .page-hero-content {
    max-width: 720px;
}

.page-hero-content .section-tag {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #888;
    font-size: 0.85rem;
    font-weight: 600;
}

.page-hero-content h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    color: #1a1a1a;
    margin: 0.15rem 0;
}

.page-hero-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.about-section {
    padding: 5rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text h2 {
    font-size: clamp(2rem, 3vw, 2.75rem);
}

.about-text p {
    color: #555;
}

.about-highlights {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    padding-left: 0;
}

.about-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: #444;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.about-highlights li::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #FFD700;
    position: absolute;
    left: 0;
    top: 8px;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.portfolio-hero .page-hero-content,
.services-hero .page-hero-content {
    max-width: 760px;
}

/* Portfolio Hero Background */
.portfolio-hero {
    position: relative;
    background: linear-gradient(to bottom, #ffffff 0%, #ebd9aa 88%, #ffffff 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0.8 !important;
}

.portfolio-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.portfolio-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    opacity: 0.8 !important;
}

.portfolio-hero .container {
    position: relative;
    z-index: 1;
}

.portfolio-filter {
    padding: 2.5rem 0;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
}

.filter-label {
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.filter-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    border: 1px solid #ddd;
    background: #fff;
    color: #444;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #111;
    color: #fff;
    border-color: #111;
}

.case-study-gallery {
    padding: 6rem 0;
    background: #fff;
    position: relative;
}

.case-study-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(assets/images/bg-pattern.svg);
    background-position: center center;
    background-size: contain;
    /* background-repeat: no-repeat; */
    opacity: 0.1;
    z-index: 0;
}

.case-study-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.case-study-card {
    background: #fff;
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.case-study-card--full {
    grid-column: span 2;
}

.case-study-row {
    display: contents;
}

.case-study-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 2rem;
}

.case-study-tag {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.7rem;
    font-weight: 600;
    color: #999;
    display: inline-flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.case-study-tag span {
    background: #f5f5f5;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.7rem;
    color: #666;
}

.case-study-content h3 {
    font-size: 2rem;
    font-weight: 300;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.case-study-content p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.case-study-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    position: relative;
    font-size: 0.95rem;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.case-study-link:hover {
    color: #666;
}

.case-study-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.case-study-link:hover::before {
    transform: scaleX(1);
}

.case-study-link::after {
    content: '→';
    display: inline-block;
    margin-left: 0.3rem;
    transition: transform 0.3s ease;
}

.case-study-link:hover::after {
    transform: translateX(4px);
}

.case-study-media {
    border-radius: 0;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #f5f5f5;
    position: relative;
}

.case-study-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.case-study-card:hover .case-study-media img {
    transform: scale(1.05);
}

/* Reduce height for full-width card images */
.case-study-card--full .case-study-media {
    aspect-ratio: 24 / 9;
}

.case-study-cta {
    text-align: center;
    font-weight: 500;
}

.featured-description a,
.case-study-cta a {
    color: #111;
    text-decoration: underline;
    text-underline-offset: 6px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.featured-description a:hover,
.case-study-cta a:hover {
    text-decoration-color: #FFD700;
    text-underline-offset: 4px;
}

.case-study-detail-hero {
    background: linear-gradient(180deg, #faf8f2 0%, #f4f1e6 100%);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.85rem;
    color: #8a8a8a;
    margin-bottom: 1.75rem;
}

.breadcrumb a {
    color: #555;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #111;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.case-study-summary,
.case-study-detail-content,
.case-study-gallery-section,
.case-study-process,
.case-study-testimonial,
.case-study-next {
    padding: 5rem 0;
}

.case-study-summary {
    background: #fff;
}

.summary-grid {
    display: grid;
    gap: 3.5rem;
    grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
    align-items: start;
}

.summary-meta {
    order: 1;
}

.summary-overview {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    order: 2;
}

.summary-overview h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
}

.summary-overview p {
    color: #555;
    line-height: 1.9;
}

.summary-overview h3 {
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    margin-top: 1.5rem;
}

.overview-list {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 2rem;
    display: grid;
    gap: 0.9rem;
    color: #555;
    line-height: 1.7;
}

.overview-list li {
    position: relative;
    padding-left: 1.4rem;
}

.overview-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #111;
}

.summary-visual {
    margin: 2rem 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.12);
    background: #fff;
}

.summary-visual img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.summary-visual figcaption {
    padding: 1.25rem 1.5rem;
    font-size: 0.92rem;
    color: #666;
    background: #faf8f2;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 1.75rem 0 2rem;
}

.pillar-card {
    background: #f7f4eb;
    border-radius: 18px;
    padding: 1.6rem;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pillar-card h4 {
    font-size: 1.1rem;
    color: #222;
}

.pillar-card p {
    color: #555;
    line-height: 1.7;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.project-tags span {
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: #f0ede3;
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
}

.summary-meta {
    display: grid;
    gap: 1.25rem;
}

.meta-card {
    background: #f8f6ef;
    border-radius: 18px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.meta-card h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #7a7051;
}

.meta-card p,
.meta-card li {
    color: #3d3d3d;
    font-size: 0.98rem;
    line-height: 1.6;
}

.meta-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.4rem;
}

.case-study-detail-content {
    background: #fafafa;
}

.detail-row {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-bottom: 2.5rem;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.detail-row--split {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.detail-card {
    background: #fff;
    border-radius: 22px;
    padding: 2.25rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.detail-card h2,
.detail-card h3 {
    font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.detail-card p {
    color: #555;
    line-height: 1.8;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.detail-list li {
    position: relative;
    padding-left: 1.25rem;
    color: #555;
    line-height: 1.6;
}

.detail-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #111;
}

.case-study-gallery-section {
    background: #fff;
}

.case-study-gallery-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-top: 3rem;
}

.gallery-card {
    background: #fafafa;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.gallery-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.gallery-card figcaption {
    padding: 1.5rem;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.case-study-process {
    background: linear-gradient(180deg, #f7f4eb 0%, #f0ede4 100%);
}

.process-timeline {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-top: 3rem;
}

.timeline-step {
    background: #fff;
    border-radius: 20px;
    padding: 2rem 1.75rem;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.timeline-index {
    font-weight: 700;
    font-size: 1.25rem;
    color: #a88f55;
}

.timeline-body h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.timeline-body p {
    color: #555;
    line-height: 1.7;
}

.case-study-testimonial {
    background: #0f1016;
}

.case-study-testimonial .testimonial-card {
    background: #161820;
    color: #fff;
    border-radius: 26px;
    padding: clamp(2.5rem, 5vw, 3.5rem);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.35);
}

.case-study-testimonial blockquote {
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.7;
    font-weight: 500;
}

.case-study-testimonial .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.case-study-testimonial .testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.case-study-testimonial .testimonial-author h4 {
    margin-bottom: 0.3rem;
    font-size: 1.05rem;
}

.case-study-next {
    background: #f6f3ea;
}

.next-steps {
    background: #fff;
    border-radius: 28px;
    padding: clamp(2.5rem, 4vw, 3.5rem);
    display: grid;
    gap: 2.5rem;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.1);
}

.next-copy {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.next-copy p {
    color: #555;
    line-height: 1.8;
}

.next-meta {
    background: #f8f6ef;
    border-radius: 20px;
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.next-meta ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
    color: #555;
}

@media (max-width: 992px) {
    .summary-grid {
        grid-template-columns: 1fr;
    }

    .summary-meta,
    .summary-overview {
        order: initial;
    }

    .next-steps {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 992px) {
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .gallery-card img {
        height: 260px;
    }
}

@media (max-width: 640px) {
    .breadcrumb {
        flex-wrap: wrap;
    }

    .detail-card {
        padding: 1.75rem;
    }

    .timeline-step {
        flex-direction: column;
    }

    .case-study-testimonial .testimonial-card {
        padding: 2.25rem;
    }
}

.blog-hero .page-hero-content {
    max-width: 780px;
}

.blog-feature {
    padding: 4.5rem 0;
}

.feature-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 2.5rem;
    background: #111;
    color: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.25);
}

.feature-media {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    min-height: 320px;
}

.feature-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-body {
    padding: clamp(2.25rem, 4vw, 3.25rem);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.post-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #d1c6a7;
}

.feature-body h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.3;
}

.feature-body p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.post-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.post-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: currentColor;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    width: fit-content;
}

.post-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.post-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.post-link:hover::before {
    transform: scaleX(1);
}

.post-link:hover::after {
    transform: translateX(4px);
}

.blog-layout {
    padding: 5rem 0 4rem;
    background: #f8f6ef;
}

/* Old blog-grid removed - now using post-grid for blog layout */

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: #fff;
    border-radius: 22px;
    padding: 2rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.sidebar-card h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #7a7051;
}

.topic-list,
.resource-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.topic-list a {
    color: #333;
    font-weight: 600;
    text-decoration: none;
}

.topic-list a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.resource-title {
    display: block;
    font-weight: 600;
    color: #222;
}

.resource-date {
    font-size: 0.85rem;
    color: #777;
}

.blog-stream {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.post-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
}

.post-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 260px;
}

.post-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

.post-content h3 {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    line-height: 1.35;
}

.post-content p {
    color: #555;
    line-height: 1.75;
}

.post-content .post-meta {
    color: #888;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.pagination-btn {
    padding: 0.75rem 1.75rem;
    border-radius: 999px;
    border: 1px solid #111;
    background: transparent;
    color: #111;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: #111;
    color: #fff;
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-status {
    font-size: 0.95rem;
    color: #666;
}

.newsletter-section {
    padding: 5rem 0;
}

.newsletter-card {
    background: linear-gradient(135deg, #111 0%, #2c2c2c 100%);
    border-radius: 32px;
    padding: clamp(2.5rem, 4vw, 4rem);
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2.5rem;
    color: #fff;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

.newsletter-copy {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.newsletter-copy p {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.newsletter-inputs {
    display: flex;
    gap: 1rem;
}

.newsletter-inputs input {
    flex: 1;
    padding: 0.9rem 1.1rem;
    border-radius: 999px;
    border: none;
    font-size: 1rem;
}

.newsletter-inputs button {
    padding: 0.9rem 2.5rem;
    border-radius: 999px;
    border: none;
    background: #fbdc00;
    color: #111;
    font-weight: 700;
    cursor: pointer;
}

.newsletter-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

@media (max-width: 1100px) {
    .feature-card {
        grid-template-columns: 1fr;
    }

    .feature-media img {
        height: 360px;
    }

    .post-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

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

    .newsletter-card {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 992px) {
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .post-content {
        padding: 1.75rem;
    }

    .post-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-feature {
        padding: 3.5rem 0;
    }

    .newsletter-inputs {
        flex-direction: column;
    }

    .newsletter-inputs button {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .feature-card {
        border-radius: 22px;
    }

    .sidebar-card {
        padding: 1.75rem;
    }

    .blog-layout {
        padding: 4rem 0 3rem;
    }

    .newsletter-card {
        border-radius: 26px;
    }
}

.article-hero {
    background: linear-gradient(180deg, #f8f6ef 0%, #f1eee6 100%);
}

.article-hero .page-hero-content {
    max-width: 860px;
    align-items: flex-start;
    text-align: left;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.meta-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.meta-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.meta-author h4 {
    margin-bottom: 0.25rem;
}

.meta-info {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #777;
}

.article-layout {
    padding: 5rem 0;
    background: #fff;
}

.article-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: minmax(0, 2fr) minmax(0, 0.8fr);
}

.article-content {
    display: flex;
    flex-direction: column;
    color: #3b3b3b;
    line-height: 1.8;
    font-size: 1.05rem;
}

.article-content h2 {
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    margin-top: 1rem;
}

.article-content h3 {
    font-size: clamp(1.5rem, 2.5vw, 1.8rem);
    margin-top: 1rem;
    color: #1a1a1a;
}

.article-content h4 {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    margin-top: 0.75rem;
    color: #222;
}

.article-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.article-content h6 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
}

.article-content ul,
.article-content ol {
    padding-left: 1.5rem;
    display: grid;
    gap: 0.75rem;
}

.article-content figure {
    margin: 2rem 0;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.article-content figure img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.article-content figure figcaption {
    padding: 1.2rem 1.6rem;
    font-size: 0.9rem;
    color: #666;
    background: #f9f6ed;
}

.article-content p:empty {
    display: none;
}

.article-content blockquote {
    border-left: 4px solid #111;
    padding-left: 1.5rem;
    font-size: 1.4rem;
    line-height: 1.6;
    color: #1f1f1f;
    font-weight: 500;
}

.article-highlight {
    background: linear-gradient(135deg, #fff8da 0%, #ffeab0 100%);
    border-radius: 22px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.article-highlight h3 {
    font-size: 1.3rem;
    color: #1f1f1f;
}

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.9rem;
}

.sidebar-list a {
    color: #333;
    font-weight: 600;
    text-decoration: none;
}

.sidebar-list a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.author-card {
    background: #0f1016;
    color: #fff;
}

.author-card p {
    color: rgba(255, 255, 255, 0.75);
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.share-buttons a {
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    border: 1px solid #111;
    color: #111;
    text-decoration: none;
    font-weight: 600;
}

.share-buttons a:hover {
    background: #111;
    color: #fff;
}

.article-related {
    padding: 5rem 0;
    background: #f8f6ef;
}

.related-grid {
    margin-top: 3rem;
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.related-card {
    background: #fff;
    border-radius: 24px;
    padding: 1.9rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.article-cta {
    padding: 5rem 0 6rem;
}

.article-cta-card {
    background: #111;
    color: #fff;
    border-radius: 32px;
    padding: clamp(2.75rem, 4vw, 3.75rem);
    display: grid;
    gap: 2.5rem;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    box-shadow: 0 32px 70px rgba(0, 0, 0, 0.35);
}

.article-cta-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
}

.article-cta-card li::before {
    content: '•';
    margin-right: 0.5rem;
}

@media (max-width: 1024px) {
    .article-grid {
        grid-template-columns: 1fr;
    }

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


@media (max-width: 992px) {
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .article-content figure img {
        height: 260px;
    }

    .article-highlight {
        padding: 1.75rem;
    }
}

.testimonials-section {
    padding: 5rem 0;
    background: #f9f5e9;
}

.testimonials-slider {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #fff;
    border-radius: 18px;
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.09);
}

.testimonial-content p {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.9rem;
    color: #777;
}

.services-section {
    padding: 5rem 0;
}

.services-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
}

.service-icon svg {
    color: #111;
}

.service-features {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    padding-left: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #555;
    position: relative;
    padding-left: 1.25rem;
}

.service-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FFD700;
    position: absolute;
    left: 0;
    top: 8px;
}

.process-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #fff 0%, #f3f0e6 100%);
}

.process-steps {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.process-step {
    background: #fff;
    padding: 2.25rem 2rem;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.process-step h3 {
    font-size: 1.2rem;
}

.process-step p {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}


@media (max-width: 992px) {
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .filter-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .project-media img {
        height: 260px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

.values-section {
    padding: 6rem 0;
    background: #fff;
    /* or kept separate if needed */
}

.timeline-grid {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.milestone-card {
    background: #F9F9F9;
    /* Very light gray */
    border-radius: 24px;
    padding: 3rem 2rem 0;
    /* Padding bottom 0 for graphic to sit at bottom */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* For bottom graphics */
    min-height: 500px;
    transition: transform 0.3s ease;
}

.milestone-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.milestone-badge {
    background: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-weight: 700;
    color: #111;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.milestone-badge .icon {
    color: #4A148C;
    /* Purple accent from screenshot */
}

.milestone-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #111;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    /* User requested "dora", likely typo for Sora */
}

.milestone-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: auto;
    /* Push graphics to bottom */
    padding-bottom: 3rem;
    max-width: 90%;
}

/* Base Graphic Container */
.milestone-graphic {
    width: 100%;
    height: 140px;
    margin-top: 2rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

/* Card 1: Grid of icons/squares */
.graphic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 0 2rem 2rem;
    width: 100%;
}

.graphic-grid span {
    background: #CDC6E3;
    /* Light purple gray */
    aspect-ratio: 1;
    border-radius: 8px;
    opacity: 0.8;
}

/* Card 2: Chart */
.graphic-chart-1 {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 0;
    position: relative;
    width: 100%;
}

.chart-badge {
    position: absolute;
    top: -40px;
    background: #F4D06F;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #111;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.chart-bars {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    height: 100px;
}

.chart-bars .bar {
    width: 16px;
    height: 60%;
    background: #CDC6E3;
    border-radius: 10px;
}

.chart-bars .bar:nth-child(2) {
    height: 40%;
}

.chart-bars .bar:nth-child(3) {
    height: 75%;
}

.chart-bars .bar:nth-child(4) {
    height: 50%;
}

.chart-bars .bar.highlight {
    background: #F4D06F;
    height: 90%;
}

.chart-line {
    position: absolute;
    bottom: 40px;
    left: 25%;
    width: 50%;
    height: 40px;
    border-top: 3px solid #4A148C;
    border-radius: 50%;
    transform: rotate(-10deg);
    opacity: 0.6;
}

/* Card 3: Growth Bars */
.graphic-chart-2 {
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 20px;
}

.coin-badge {
    background: #CDC6E3;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.growth-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 80px;
}

.growth-bars span {
    width: 14px;
    background: #7E6CA8;
    /* Deeper purple */
    border-radius: 10px 10px 0 0;
}

.team-section {
    padding: 5rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.team-member {
    background: #F3F0E6;
    /* Light Beige */
    border-radius: 20px;
    padding: 3.5rem 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    text-align: center;
    gap: 2rem;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.member-role {
    font-size: 0.9rem;
    color: #666;
    /* Muted text for role */
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

.member-name {
    font-size: 1.6rem;
    color: #111;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    font-family: 'Sora', sans-serif;
}

.member-visual {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    /* Push to bottom if height varies */
}

.visual-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    /* background-color: #F4D06F; */
    /* Yellow gold circle */
    border-radius: 50%;
    top: 0;
    left: 0;
    z-index: 0;
}

.member-visual img {
    position: relative;
    z-index: 1;
    width: 180px;
    height: 180px;
    /* Slightly smaller than wrapper */
    border-radius: 50%;
    object-fit: cover;
    /* Optional: border to separate from yellow if needed, but design implies clean overlay */
}

.cta-section {
    padding: 5rem 0;
    background: #111;
    color: #fff;
}

.cta-content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.75);
}

.cta-section .cta-button {
    align-self: center;
}


@media (max-width: 992px) {
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .page-hero {
        padding-top: 7rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image img {
        max-width: 420px;
        margin: 0 auto;
    }
}

.hashtag {
    color: #007bff;
    font-weight: 300;
}

.highlight-text {
    font-style: italic;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;

}

/* Service Cards Container */
.service-cards {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    perspective: 1000px;
    position: relative;
    min-height: 380px;
}

/* Service Card Base */
.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 250px;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
    animation: floatCard 3s ease-in-out infinite;
}

/* Tilt Effects for Cards */
/* Tilt Effects for Cards */
.service-card[data-tilt="left"] {
    --rotation: -12deg;
    --translateY: 30px;
    transform: rotate(var(--rotation)) translateY(var(--translateY));
    z-index: 1;
    animation-delay: 0s;
}

.service-card[data-tilt="center"] {
    --rotation: 0deg;
    --translateY: 0px;
    transform: rotate(var(--rotation)) translateY(var(--translateY));
    z-index: 3;
    animation-delay: 0.5s;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.service-card[data-tilt="right"] {
    --rotation: 12deg;
    --translateY: 30px;
    transform: rotate(var(--rotation)) translateY(var(--translateY));
    z-index: 2;
    animation-delay: 1s;
}

/* Card Colors */
.service-card.orange {
    background: linear-gradient(160.81deg, #B43A0A 3.38%, #FF7640 62.06%);
    color: white;
}

.service-card.green {
    background: linear-gradient(164.96deg, #083D1C 0.62%, #16A34A 56.36%);
    color: white;
}

.service-card.purple {
    background: linear-gradient(157.85deg, #472187 5.77%, #7C3AED 52.53%);
    color: white;
}

/* Card Header */
.card-header {
    margin-bottom: 1rem;
}

.card-header h3 {
    font-size: 1.3rem;
    font-weight: 300;
    color: white;
    line-height: 1.3;
}

.card-header h3 em {
    font-style: italic;
    font-weight: 400;
}

/* Laptop Mockup */
.laptop-mockup {
    background: #2a2a2a;
    border-radius: 8px 8px 0 0;
    padding: 0.3rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.screen-content {
    background: linear-gradient(135deg, #1a5f3f 0%, #2d8659 100%);
    border-radius: 5px;
    height: 150px;
    position: relative;
    overflow: hidden;
}

.screen-content::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.screen-content::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    top: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

/* Keyboard Base */
.laptop-mockup::after {
    content: '';
    display: block;
    height: 8px;
    background: #1a1a1a;
    border-radius: 0 0 8px 8px;
    margin: 0 -0.3rem -0.3rem;
}

/* Decorations */
.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decoration-left {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.decoration-right {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}

/* 3D Decoration Objects */
.decoration-3d {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    position: relative;
    animation: rotate3d 8s ease-in-out infinite;
    transition: transform 0.3s ease-out;
}

.left-flower {
    background: radial-gradient(circle at 30% 30%, #c8d0db 0%, #8b95a5 100%);
    box-shadow:
        -10px -10px 30px rgba(255, 255, 255, 0.5),
        10px 10px 30px rgba(0, 0, 0, 0.2);
    animation: rotate3d 8s ease-in-out infinite, float3d 4s ease-in-out infinite;
    transition: transform 0.3s ease-out;
}

.left-flower::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 40%, #a8b2c0 40%, #a8b2c0 45%, transparent 45%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.right-flower {
    background: radial-gradient(circle at 30% 30%, #ffd93d 0%, #ffb700 100%);
    box-shadow:
        -10px -10px 30px rgba(255, 255, 255, 0.5),
        10px 10px 30px rgba(255, 183, 0, 0.3);
    animation: rotate3d 6s ease-in-out infinite reverse, float3d 3s ease-in-out infinite 0.5s;
    transition: transform 0.3s ease-out;
}

.right-flower::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.right-flower::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: radial-gradient(circle at center, transparent 35%, #ffeb99 35%, #ffeb99 38%, transparent 38%);
    border-radius: 50%;
    animation: pulse 2.5s ease-in-out infinite;
}

/* Animations */
@keyframes floatCard {

    0%,
    100% {
        transform: rotate(var(--rotation, 0deg)) translateY(var(--translateY, 0px));
    }

    50% {
        transform: rotate(var(--rotation, 0deg)) translateY(calc(var(--translateY, 0px) - 15px));
    }
}

@keyframes rotate3d {

    0%,
    100% {
        transform: rotateY(0deg) rotateX(0deg);
    }

    25% {
        transform: rotateY(15deg) rotateX(5deg);
    }

    50% {
        transform: rotateY(0deg) rotateX(10deg);
    }

    75% {
        transform: rotateY(-15deg) rotateX(5deg);
    }
}

@keyframes float3d {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff9e6;
    border-radius: 50%;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 300;
}

.feature-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 6rem 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url('assets/images/bg-pattern.svg'); */
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.why-choose-us .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-header .underline {
    position: relative;
    display: inline-block;
}

.section-header .underline:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 10px;
    background-color: #FFD700;
    opacity: 0.7;
    z-index: -1;
}

.section-header .subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.why-choose-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 4rem;
}

.why-choose-content.reverse {
    flex-direction: row-reverse;
}

@media (max-width: 992px) {

    .why-choose-content,
    .why-choose-content.reverse {
        flex-direction: column;
    }

    .why-choose-content .why-choose-image,
    .why-choose-content.reverse .why-choose-image {
        margin-top: 2rem;
    }
}

.why-choose-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
}

.why-choose-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.why-choose-image:hover img {
    transform: scale(1.03);
}

.why-choose-text {
    flex: 1;
    padding: 2rem 0;
    text-align: left;
}

.why-choose-text h3 {
    font-size: 2rem;
    font-weight: 300;
    color: #1a1a1a;
    text-align: left;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.highlight-text {
    color: #444;
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;

}

.feature-list {
    list-style: none;
    margin: 2.5rem 0;
    padding: 0;
}

.feature-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.8rem;
    align-items: flex-start;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: #FFD700;
    color: #1a1a1a;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.2rem;
    font-size: 0.9rem;
    font-weight: bold;
}

.feature-list h4 {
    font-size: 1.1rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
}

.feature-list p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cta-button {
    display: inline-block;
    background: #feeb29;
    color: #000;
    /* padding: 0.9rem 2rem; */
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #1a1a1a;
}

.cta-button:hover {
    background: transparent;
    color: #1a1a1a;
}

/* Responsive Design */
@media (max-width: 992px) {
    .why-choose-content {
        flex-direction: column;
        gap: 3rem;
    }

    .why-choose-text {
        padding: 0;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }
}


@media (max-width: 992px) {
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .why-choose-text h3 {
        font-size: 1.8rem;
    }
}

/* Our Work Section */
.our-work {
    padding: 5rem 0;
    background: #f8f9fa;
}

.our-work h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.work-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.work-item:hover {
    transform: translateY(-5px);
}

.work-image {
    position: relative;
    height: 300px;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.work-item:hover .work-overlay {
    opacity: 1;
}

.view-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 300;
    cursor: pointer;
    transition: background 0.3s ease;
}

.view-btn:hover {
    background: #0056b3;
}

/* Help Section */
.help-section {
    padding: 5rem 0;
    background: white;
}

.help-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

.help-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.help-image-wrapper {
    position: relative;
    border-radius: 20px;
    padding: 15px;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.help-image-wrapper.green-border {
    border: 3px solid #2d7a4f;
}

.help-image-wrapper.pink-border {
    border: 3px solid #e91e8c;
}

.help-image {
    width: 100%;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.help-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.help-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #1a1a1a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.green-border .help-badge {
    color: #2d7a4f;
}

.pink-border .help-badge {
    color: #e91e8c;
}

.help-content {
    flex: 1;
}

.help-content h3 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.help-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.learn-more {
    color: #007bff;
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: #0056b3;
}

/* Mission Section */
.mission-section {
    position: relative;
    padding: 10rem 0;
    color: white;
    margin: 0 auto;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/bg9.svg') center/cover no-repeat;
    z-index: -1;
}

.mission-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.7) 30%,
            rgba(0, 0, 0, 0.4) 70%,
            transparent 100%);
    z-index: -1;
}

.mission-section .container {
    position: relative;
    z-index: 1;
}

.mission-section h2 {
    text-align: left;
    font-size: 1.6rem;
    font-weight: 300;
    /* margin-bottom: 2rem; */
    text-transform: uppercase;
    letter-spacing: 1px;
    /* padding-left: 2rem; */
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.mission-text {
    flex: 1;
    /* padding: 2rem 0 2rem 2rem; */
    text-align: left;
    max-width: 600px;
}

.mission-text h3 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #fff;
}

.mission-text p {
    font-size: .9rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.mission-image {
    flex: 1;
}

.mission-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}


/* Contact Section */
.contact-hero .page-hero-content {
    max-width: 780px;
}

.contact-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f9f5e9 0%, #f1eee5 100%);
}

.home-contact-section {
    background: linear-gradient(to bottom, #ffffff 0%, #ebd9aa 88%, #ffffff 100%);
    padding: 5rem 0;
}

.contact-tag {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    font-weight: 600;
    color: #5d6975;
    margin-bottom: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 3rem;
    align-items: start;
}

.contact-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.75rem;
    box-shadow: 0 26px 55px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-header h2 {
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    margin-bottom: 0.75rem;
}

.form-header p {
    color: #666;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
    color: #2c2c2c;
}

.required {
    color: #c75f00;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #111;
    box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.08);
}

.form-group textarea {
    min-height: 180px;
    resize: vertical;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.submit-btn {
    align-self: flex-start;
    padding: 0.95rem 2.5rem;
    border-radius: 999px;
    border: none;
    background: #111;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

.privacy-note {
    font-size: 0.85rem;
    color: #777;
}

.privacy-note a {
    color: #111;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.details-header h2 {
    font-size: clamp(1.8rem, 2.8vw, 2.2rem);
    margin-bottom: 0.6rem;
}

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

.details-stack {
    display: grid;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    gap: 1.2rem;
    background: #fff;
    border-radius: 18px;
    padding: 1.6rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.info-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}

.info-content p,
.info-content a {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-content a {
    text-decoration: none;
}

.info-content a:hover {
    text-decoration: underline;
}

.hours-card .info-content {
    width: 100%;
}

.hours-list {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    padding-left: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    color: #555;
    font-size: 0.95rem;
}

.contact-social h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-social .social-links {
    display: flex;
    gap: 0.9rem;
}

.contact-map {
    padding: 0;
}

.map-container {
    border-radius: 0;
    overflow: hidden;
}

.home-contact-title {
    text-align: center;
    margin: 0 auto 3rem;
    max-width: 560px;
    gap: 0.75rem;
}

.home-contact-title h2 {
    font-weight: 600;
    letter-spacing: 0.01em;
}

.home-contact-title .underline::after {
    left: 50%;
    transform: translateX(-50%);
}

.home-contact-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3.5rem;
    align-items: center;
    justify-items: center;
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
}

.home-contact-header .underline::after {
    left: 0;
    transform: none;
}

.home-contact-title .subtitle {
    max-width: none;
    color: #4f4f4f;
}

.home-contact-header .subtitle {
    max-width: 420px;
}

.home-contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3.5rem;
    max-width: 340px;
    width: 100%;
}

.home-contact-info h3 {
    font-size: 2.2rem;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.home-contact-info .contact-tag,
.home-contact-info h3 {
    align-self: center;
    text-align: center;
    width: 100%;
}

.home-contact-info>p {
    color: #666;
    margin: 0;
    line-height: 1.7;
    position: relative;
    padding-left: 1.4rem;
}

.home-contact-info>p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4rem;
    bottom: 0.4rem;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f3d24b 0%, #f0a84f 100%);
}

.contact-person-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 0;
}

.contact-person-photo {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
    border: 4px solid rgba(255, 255, 255, 0.8);
}

.contact-person-details {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-person-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e1e1e;
    margin: 0;
}

.contact-person-details p {
    margin: 0;
    font-size: 0.8rem;
    color: #666;
    white-space: nowrap;
}

.contact-person-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: transparent;
    border: none;
    border-radius: 6px;
    padding: 0.4rem 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: #242424;
    white-space: nowrap;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.contact-person-chip:hover {
    text-decoration: none;
}

.home-contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
    border: none;
    max-width: 480px;
    width: 100%;
    border: 1px solid rgba(17, 17, 17, 0.06);
}

.home-contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.home-contact-form .form-group label {
    font-weight: 600;
    color: #2d2d2d;
}

.home-contact-content .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.home-contact-content .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.home-contact-content .form-group label {
    font-weight: 500;
    color: #2c3e50;
    font-size: 0.95rem;
    letter-spacing: normal;
}

.home-contact-content .form-group input,
.home-contact-content .form-group textarea {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    color: #111827;
    background: #fbfbf9;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.home-contact-content .form-group input:focus,
.home-contact-content .form-group textarea:focus {
    outline: none;
    border-color: #f0a84f;
    box-shadow: 0 8px 20px rgba(240, 168, 79, 0.18);
}

.home-contact-content .form-group textarea {
    min-height: 160px;
    resize: vertical;
}

.home-submit-btn {
    width: 100%;
    border-radius: 6px;
    background: #ffd700;
    color: #242424;
    border: none;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.95rem;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 15px 30px rgba(254, 235, 41, 0.25);
}

.home-submit-btn:hover {
    background: #f9d800;
    transform: translateY(-1px);
    box-shadow: 0 20px 38px rgba(249, 216, 0, 0.28);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-details {
        order: -1;
    }

    .home-contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        justify-items: center;
    }

    .home-contact-info {
        align-items: center;
        text-align: center;
        max-width: 420px;
    }

    .home-contact-info p {
        padding-left: 0;
    }

    .home-contact-info p::before {
        display: none;
    }

    .contact-person-card {
        justify-content: center;
        gap: 1rem;
    }

    .home-contact-content .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .contact-form-card {
        padding: 2rem;
    }

    .details-stack {
        gap: 1.2rem;
    }

    .info-card {
        flex-direction: column;
    }

    .info-icon {
        width: 42px;
        height: 42px;
    }

    .home-contact-section h2 {
        text-align: center;
    }

    .home-contact-form {
        padding: 2rem;
    }
}

/* Footer */
.footer {
    background: #ffffff;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-cta {
    background: #007bff;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 300;
    cursor: pointer;
    transition: background 0.3s ease;
}

.footer-cta:hover {
    background: #0056b3;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
}

.footer-elegant {
    background-color: #fbf7f1;
    color: #2c2a3a;
    padding: clamp(4rem, 6vw, 6rem) 0 clamp(3rem, 5vw, 5rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/bg-pattern.svg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.048;
    z-index: 0;
}

.footer-elegant .container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
}

.footer-elegant-mission {
    font-family: 'Petrona', serif;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 300;
    line-height: 1.6;
    margin: 0 auto clamp(2rem, 4vw, 3rem);
    max-width: 850px;
    color: #3a3649;
}

.footer-elegant-divider {
    height: 1px;
    background: rgba(44, 42, 58, 0.15);
    margin: clamp(2rem, 4vw, 3rem) auto;
    width: 100%;
}

.footer-elegant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    text-align: left;
}

.footer-elegant-column h4 {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #2c2a3a;
}

.footer-elegant-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.footer-elegant-column a {
    text-decoration: none;
    color: rgba(44, 42, 58, 0.78);
    font-size: 0.95rem;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.footer-elegant-column a:hover {
    color: #c45a34;
    text-decoration: underline;
}

.footer-elegant-link--highlight {
    color: #c45a34;
    font-weight: 600;
}

.footer-elegant-column address {
    font-style: normal;
    margin-top: 1rem;
    color: rgba(44, 42, 58, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-elegant-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    color: rgba(44, 42, 58, 0.65);
}

.footer-elegant-meta-links {
    display: flex;
    gap: 1.5rem;
}

.footer-elegant-meta-social {
    display: flex;
    gap: 0.8rem;
}

.footer-elegant-meta-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-elegant-meta-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.footer-elegant-meta-links a:hover {
    color: #c45a34;
}

.footer-elegant-meta-social a:hover {
    background-color: #FFD700;
    color: #000;
    border-color: #000;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.footer-elegant-meta-info {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    text-align: left;
}

.footer-elegant-meta-info span {
    white-space: nowrap;
}


@media (max-width: 992px) {
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .footer-elegant {
        text-align: left;
    }

    .footer-elegant-mission {
        text-align: left;
        font-size: 1.35rem;
    }

    .footer-elegant-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        letter-spacing: 0.08em;
    }

    .footer-elegant-meta-info span {
        white-space: normal;
    }

    .footer-elegant-meta-links,
    .footer-elegant-meta-social {
        gap: 1rem;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.footer-logo-main {
    height: 30px;
}

.footer-brand span {
    font-size: 1.2rem;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        max-width: 900px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .service-cards {
        gap: 1.5rem;
    }

    .service-card {
        width: 220px;
        height: 300px;
    }

    .decoration-left {
        left: 2%;
    }

    .decoration-right {
        right: 2%;
    }

    .decoration-3d {
        width: 120px;
        height: 120px;
    }
}


@media (max-width: 992px) {
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 2rem;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 0.95rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .badge-text {
        font-size: 0.85rem;
    }

    .service-cards {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        min-height: auto;
        margin-top: 2rem;
        padding: 0 1rem;
        transform: scale(0.6);
        transform-origin: top center;
        width: 166%;
        margin-left: -33%;
        margin-bottom: -120px;
    }

    .service-card {
        width: 250px;
        height: auto;
        padding: 1.5rem;
    }

    /* .service-card[data-tilt="left"],
    .service-card[data-tilt="center"],
    .service-card[data-tilt="right"] {
        transform: rotate(0deg) translateY(0px) !important;
        animation: none;
    } */

    .service-card:hover {
        transform: scale(1.02) !important;
    }

    .card-header h3 {
        font-size: 1.2rem;
    }

    .laptop-mockup {
        margin-top: 0.5rem;
    }

    .screen-content {
        height: 130px;
    }

    .decoration-left,
    .decoration-right {
        display: none;
    }

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

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

    .help-item {
        flex-direction: column;
        text-align: center;
    }

    .mission-content {
        flex-direction: column;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 90px;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .badge-text {
        font-size: 0.8rem;
    }

    .service-cards {
        padding: 0 0.5rem;
        gap: 1rem;
        transform: scale(0.45);
        width: 222%;
        margin-left: -61%;
        margin-bottom: -160px;
        margin-top: 1rem;
    }

    .service-card {
        width: 250px;
        max-width: none;
        height: auto;
        padding: 1rem;
    }

    .card-header h3 {
        font-size: 1.1rem;
    }

    .screen-content {
        height: 110px;
    }

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

    .work-item {
        margin: 0 0.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* ===== THREE SERVICES BLOCK ===== */
.three-services {
    padding: 5rem 0;
    background: #ffffff;
}

.services-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-box {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #6366f1;
}

.service-box-icon {
    width: 60px;
    height: 60px;
    background: #f3f4f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #6366f1;
}

.service-box h3 {
    font-size: 1.25rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.service-box p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-box-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-box-features li {
    color: #555;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-box-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6366f1;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .services-row {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 992px) {
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .three-services {
        padding: 3rem 0;
    }

    .services-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-box {
        padding: 2rem;
    }
}

/* ===== FEATURED PROJECTS SECTION ===== */
.featured-projects {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #ebd9aa 88%, #ffffff 100%)
}



.featured-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.featured-card {
    /* border-radius: 20px; */
    overflow: hidden;
    position: relative;
    /* min-height removed */
    transition: transform 0.3s ease;
}

.featured-card--full {
    grid-column: 1 / -1;
    /* min-height removed */
}

.featured-card:hover {
    transform: translateY(-8px);
}

.featured-card-bg {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    position: relative;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.featured-card--full .featured-card-bg {
    height: 450px;
}

.featured-card-bg--finance {
    background-image: url('assets/images/fortune-mockup.jpg');
}

.featured-card-bg--boutique {
    background-image: url('assets/images/fortune-mockup.jpg');
}

.featured-card-bg--boutique1 {
    background-image: url('assets/images/giftly.jpg');
}

.featured-card-bg--retail {

    background-image: url(assets/images/e-com.jpg);
}


.featured-card-bg--retail1 {

    background-image: url(assets/images/mapr7.jpg);
}

.featured-card-bg--analytics {
    background-image: linear-gradient(135deg, rgb(199 207 247 / 0%) 0%, rgb(55 49 17) 100%), url(assets/images/bg.png);
}

.featured-card-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem 0.5rem;
    background: rgb(255, 255, 255);
}

.featured-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #00000070;
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.featured-description {
    color: #555;
    font-size: 1rem;
    line-height: 1.9;
    margin: 0rem 1rem 0rem;
}

.featured-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    background: transparent;
    /* border-radius: 50px;
    border: 2px solid #1a1a1a; */
    transition: all 0.3s ease;
}

.featured-link:hover {
    background: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
    transform: translateX(5px);
}

.featured-link svg {
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.featured-link:hover svg {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .featured-card,
    .featured-card--full {
        grid-column: 1;
        height: auto;
        min-height: 0;
    }

    .featured-card-bg {
        height: 300px;
        min-height: 0;
        padding: 0;
    }
}


@media (max-width: 992px) {
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .featured-projects {
        padding: 4rem 0;
    }

    .featured-header {
        margin-bottom: 3rem;
    }

    .featured-header h2 {
        font-size: 2rem;
    }

    .featured-card {
        height: auto;
        min-height: 0;
    }

    .featured-card-bg {
        height: 250px;
        min-height: 0;
        padding: 0;
    }

    .featured-description {
        font-size: 1rem;
    }
}

.col_white {

    color: #fff !important;
}

/* Blog Layout Styles */
.blog-layout {
    padding: 4rem 0;
    background: #f9f9f9;
}

.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #d0d0d0;
    background: white;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: #FFD700;
    background: #fffbf0;
}

.filter-btn.active {
    background: #FFD700;
    border-color: #FFD700;
    color: #000;
    font-weight: 600;
}

.blog-grid {
    margin-bottom: 3rem;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.post-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #e0e0e0;
    flex-shrink: 0;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #f0f0f0;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.post-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
    line-height: 1.3;
    font-weight: 600;
}

.post-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    flex-grow: 1;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 0.75rem;
    margin-top: auto;
}

.post-link {
    display: inline-block;
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.post-link:hover {
    color: #FFC000;
    transform: translateX(4px);
}

.show-more-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    padding-top: 2rem;
}

.show-more-btn {
    padding: 0.75rem 2.5rem;
    border: 2px solid #FFD700;
    background: white;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #FFD700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.show-more-btn:hover {
    background: #FFD700;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.show-more-btn:active {
    transform: translateY(0);
}

.show-more-btn.hidden {
    display: none;
}


@media (max-width: 992px) {
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .blog-filters {
        gap: 0.75rem;
    }

    .filter-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

    .post-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .post-image {
        height: 240px;
    }

    .post-content h3 {
        font-size: 1.1rem;
    }
}

.hidden {
    display: none !important;
}

/* Fix for responsive images in blog posts */
.post-content img,
.blog-post-content img,
.article-content img,
.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 1.5rem 0;
}

/* Updated Hero Card Images */
.card-screen {
    position: relative;
    width: 100%;
    /* overflow: hidden;  <-- Ensure content stays within the card screen area */
    /* Remove height constraint if it was fixed, or adjust as needed. 
       The previous .screen-content had height: 150px. 
       We might need to let the image define the height or fit it. */
    height: 180px;
    /* Adjust based on desired visual */
    border-radius: 8px;
    /* Match previous rounding */
    margin-top: 1rem;
    overflow: hidden;
}

.mockup-image {
    position: absolute;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    bottom: 0;
}

/* Responsive Portfolio Grid */
@media (max-width: 1024px) {
    .case-study-stack {
        gap: 3rem;
    }

    .case-study-content h3 {
        font-size: 1.75rem;
    }
}


@media (max-width: 992px) {
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .case-study-gallery {
        padding: 4rem 0;
    }

    .case-study-stack {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .case-study-card--full {
        grid-column: span 1;
    }

    .case-study-content {
        padding: 1.5rem;
    }

    .case-study-content h3 {
        font-size: 1.5rem;
    }
}


/* Image inside laptop mockup screen */
.mockup-screen-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    position: relative;
    z-index: 1;
}

/* Accordion Styles */
.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.accordion-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-header:hover {
    background: #f8f8f8;
}

.accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #FFD700;
    color: #fff;
    border-radius: 50%;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-icon {
    background: #333;
    transform: scale(1.1);
}

.accordion-header h4 {
    flex: 1;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    font-family: 'Sora', sans-serif;
    line-height: 1.4;
}

.accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: #f0f0f0;
    color: #333;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 300;
    transition: all 0.3s ease;
    line-height: 1;
}

.accordion-item.active .accordion-toggle {
    transform: rotate(45deg);
    background: #6a6a6a;
    color: #fff;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.accordion-content p {
    margin: 0;
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Responsive Accordion Styles */

@media (max-width: 992px) {
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .accordion-header {
        padding: 1rem 1.25rem;
        gap: 0.75rem;
    }

    .accordion-icon {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 0.9rem;
    }

    .accordion-header h4 {
        font-size: 1rem;
    }

    .accordion-toggle {
        width: 24px;
        height: 24px;
        min-width: 24px;
        font-size: 1.3rem;
    }

}


/* Top Marquee Notification */
.marquee-notification {
    background-color: #6F4E37;
    /* Coffee/Brown shade to match image */
    color: #fff;
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-content {
    display: flex;
    width: fit-content;
    animation: marquee-scroll 30s linear infinite;
    /* Slow consistent scroll */
}

.marquee-item {
    white-space: nowrap;
    padding: 0 4vw;
    /* Responsive spacing */
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    letter-spacing: 0.5px;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 70vh;
    /* Reduced height as requested */
    min-height: 500px;
    overflow: hidden;
    margin-top: 0;
    padding-top: 80px;
    /* Offset for fixed header + marquee */
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    visibility: hidden;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide.previous {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.slide-content-wrapper {
    position: relative;
    z-index: 2;
    padding-top: 0;
}

.slide-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    /* Animation handled by JS class toggle for replayability */
}

.slide.active .slide-content h1 {
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.slide-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    opacity: 0;
    transform: translateY(20px);
}

.slide.active .slide-content p {
    animation: fadeInUp 1s ease-out 0.7s forwards;
}

.slide-content .cta-button {
    opacity: 0;
    transform: translateY(20px);
}

.slide.active .slide-content .cta-button {
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: #FFD700;
    color: #000;
    border-color: #FFD700;
}

.prev-btn {
    left: 40px;
}

.next-btn {
    right: 40px;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #FFD700;
    transform: scale(1.2);
}

/* Responsive */

@media (max-width: 992px) {
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 2.2rem;
    }

    .prev-btn {
        left: 10px;
        width: 40px;
        height: 40px;
    }

    .next-btn {
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .hero-slider {
        height: 85vh;
        min-height: 500px;
    }
}

/* ==================== */
/* Policy Pages Styling */
/* ==================== */
.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    font-size: 1.75rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #FFD700;
}

.policy-section h3 {
    font-size: 1.35rem;
    font-weight: 500;
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.policy-section ul.about-highlights {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.policy-section a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.policy-section strong {
    color: #333;
    font-weight: 600;
}

/* Last Updated Styling */
.policy-section p strong {
    display: inline-block;
    margin-right: 0.5rem;
}

/* Responsive Policy Pages */

@media (max-width: 992px) {
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .policy-content {
        padding: 0 1rem;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }

    .policy-section h3 {
        font-size: 1.2rem;
    }

    .policy-section {
        margin-bottom: 2rem;
    }
}

/* ========================================
   MODERN BLOG CARDS - Colorful Design
   ======================================== */

.modern-post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e7eb;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modern-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.post-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post-visual-header {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.post-visual-header svg {
    width: 100%;
    height: 100%;
    display: block;
}

.post-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.post-date {
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    letter-spacing: 0.02em;
}

.post-title {
    font-family: 'Petrona', serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: #111827;
    margin: 0;
    min-height: 56px;
}

.post-meta-section {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.meta-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.meta-label {
    font-family: 'Sora', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.meta-name {
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.author-name {
    color: #ef4444;
}

.reviewer-name {
    color: #f59e0b;
}

/* Responsive adjustments */

@media (max-width: 992px) {
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .post-visual-header {
        height: 180px;
    }

    .post-title {
        font-size: 18px;
        min-height: auto;
    }

    .post-meta-section {
        flex-direction: column;
        gap: 12px;
    }
}

/* ========================================
   MODERN BLOG CARDS - Updated Design
   ======================================== */

.modern-post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e5e7eb;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modern-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

.post-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post-visual-header {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.post-visual-header svg {
    width: 100%;
    height: 100%;
    display: block;
}

.post-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.post-date {
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    letter-spacing: 0.02em;
}

.post-title {
    font-family: 'Petrona', serif;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
    color: #111827;
    margin: 0;
    min-height: 80px;
}

.post-meta-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.meta-label {
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #6b7280;
}

.meta-name {
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ef4444;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .post-visual-header {
        height: 180px;
    }
    
    .post-title {
        font-size: 17px;
        min-height: auto;
    }
}

