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

/* ============================================
   PAGE LOADER - Full white, line + 4 green dots
   ============================================ */
.page-loader {
    position: fixed;
    inset: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: transform 0.9s cubic-bezier(0.32, 0.72, 0, 1), visibility 0s linear 0.9s;
}

.page-loader.loaded {
    transform: translateY(-100vh);
    visibility: hidden;
    pointer-events: none;
}

.page-loader-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 50vh;
    background: var(--accent-color, #4CB050);
}

.page-loader-content {
    position: absolute;
    top: calc(50vh + 8px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-loader-dots {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.page-loader-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-color, #4CB050);
    animation: loaderDotBounce 2.2s ease-in-out infinite both;
}

.page-loader-dot:nth-child(1) { animation-delay: 0s; }
.page-loader-dot:nth-child(2) { animation-delay: 0.22s; }
.page-loader-dot:nth-child(3) { animation-delay: 0.44s; }
.page-loader-dot:nth-child(4) { animation-delay: 0.66s; }

@keyframes loaderDotBounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

html {
    overflow-y: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

html::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none; /* Chrome, Safari, Opera */
}

:root {
    --primary-color: #000;
    --secondary-color: #666;
    --bg-color: #fff;
    --text-color: #333;
    --border-color: #e0e0e0;
    --hover-color: #000;
    --accent-color: #4CB050;
    --accent-color-dark: #3d8c40;
}

/* Pantra Font */
@font-face {
    font-family: 'Pantra';
    src: url('fonts/Pantra-Regular.woff2') format('woff2'),
         url('fonts/Pantra-Regular.woff') format('woff'),
         url('fonts/Pantra-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Pantra';
    src: url('fonts/Pantra-Bold.woff2') format('woff2'),
         url('fonts/Pantra-Bold.woff') format('woff'),
         url('fonts/Pantra-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Pantra';
    src: url('fonts/Pantra-Medium.woff2') format('woff2'),
         url('fonts/Pantra-Medium.woff') format('woff'),
         url('fonts/Pantra-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Pantra';
    src: url('fonts/Pantra-Light.woff2') format('woff2'),
         url('fonts/Pantra-Light.woff') format('woff'),
         url('fonts/Pantra-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

body {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
    overflow-y: auto;
    line-height: 1.6;
    scrollbar-width: none !important; /* Firefox - hides scrollbar but keeps scrolling */
    -ms-overflow-style: none !important; /* IE and Edge - hides scrollbar but keeps scrolling */
}

body::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    display: none !important; /* Chrome, Safari, Opera - hides scrollbar but keeps scrolling */
    background: transparent !important;
}

body::-webkit-scrollbar-track {
    display: none !important;
    background: transparent !important;
}

body::-webkit-scrollbar-thumb {
    display: none !important;
    background: transparent !important;
}

/* Apply Outfit font to all headings and large text */
h1, h2, h3, h4, h5, h6,
.hero-name,
.hero-title,
.about-section h2,
.services-section h3,
.service-item h5,
.skills-section h3,
.hard-skills-section h3,
.reviews-section h3,
.review-item h4,
.blog-section h3,
.blog-item h4,
.contact-section h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* Header Indicator Line with Green Circle */
.header-indicator-line {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.indicator-line {
    width: 1px;
    height: 120px;
    background: var(--border-color);
}

.indicator-circle {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
    margin-top: -4px;
}

/* Contact page: menu indicator line + dot reduced 30% */
.left-content:has(.contact-page-section) .header-indicator-line .indicator-line {
    height: 84px;
}
.left-content:has(.contact-page-section) .header-indicator-line .indicator-circle {
    width: 5.6px;
    height: 5.6px;
    margin-top: -2.8px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    height: 90px;
    display: flex;
    align-items: center;
    width: 100%;
}

.nav-container {
    max-width: 100%;
    margin: 0;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.nav-icon-box {
    position: fixed;
    width: 90px;
    height: 90px;
    background: var(--accent-color);
    color: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    top: 0;
    z-index: 1001;
}

.nav-icon-box:first-of-type {
    left: 0;
}

.nav-icon-box:last-of-type {
    right: 0;
    border-left: 1px solid var(--border-color);
    background: #000;
}

.nav-icon-box:last-of-type:hover {
    background: #222;
    transform: translateY(-2px);
}

.nav-icon-box:hover {
    background: var(--accent-color-dark);
    transform: translateY(-2px);
}

.nav-icon-box svg {
    width: 40px;
    height: 40px;
}

.nav-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nav-logo-box {
    padding: 0;
    overflow: hidden;
    background: transparent;
    border-right: 1px solid var(--border-color);
}

.nav-logo-box:hover {
    background: transparent;
    transform: translateY(-2px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    text-decoration: none;
    color: #000;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

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

.nav-link::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link.active::before {
    opacity: 1;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Main Container - Split Layout */
.main-container {
    display: flex;
    min-height: 100vh;
    margin-top: 90px;
}

/* Left Sidebar - Fixed */
.left-sidebar {
    width: 90px;
    position: fixed;
    left: 0;
    top: 90px;
    height: calc(100vh - 90px);
    background: var(--bg-color);
    border-right: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 0 2rem;
    height: 100%;
}

.current-page {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.page-indicator-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: var(--accent-color);
    flex-shrink: 0;
    display: block;
}

.page-indicator {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.2em;
    display: inline-block;
    transform: rotate(180deg);
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    margin-top: auto;
}

.social-icon {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 0;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: transparent;
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.social-icon:hover {
    background: transparent;
    color: var(--accent-color);
    transform: scale(1.1);
}

/* Middle Content - Scrollable */
.left-content {
    width: calc(65% - 90px);
    margin-left: 90px;
    padding: 1.5rem 6rem 0;
    overflow-y: visible;
    height: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 90px);
}

.left-content::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Scroll Progress Line */
.scroll-progress-line {
    position: fixed;
    left: 65%;
    top: 90px;
    width: 3px;
    height: calc(100vh - 90px);
    background: rgba(0, 0, 0, 0.1);
    z-index: 999;
    pointer-events: none;
}

.scroll-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--accent-color);
    transition: height 0.1s ease-out;
}

/* Right Image - Fixed */
.right-image {
    width: 35%;
    position: fixed;
    right: 0;
    top: 90px;
    height: calc(100vh - 90px);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.image-content {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
}

/* Hero Section */
.hero-section {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 4rem 0;
}

.hero-content {
    text-align: center;
}

.hero-greeting {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero-name {
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hero-title {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.hero-profile-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 18px solid #e6e6e6;
    background: #fff;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--secondary-color);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* About Section */
.about-section {
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.about-section h2 {
    font-size: 2.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.3;
    color: var(--primary-color);
    text-align: center;
}

.about-section p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.8;
    max-width: 90%;
    margin: 0 auto;
    text-align: justify;
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    text-align: center;
}

.services-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.services-section .section-title-with-lines {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
}

.services-section .title-text {
    flex-shrink: 0;
}

.services-section .line-left,
.services-section .line-right {
    flex: 1;
    height: 1px;
    background: var(--border-color);
    position: relative;
}

.services-section .line-left::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
}

.services-section .line-right::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #E6E6E6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

.service-item h5 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
    color: var(--primary-color);
    text-align: center;
}

.service-item p {
    color: var(--text-color);
    line-height: 1.7;
    text-align: justify;
    margin: 0;
    flex-grow: 1;
}

.service-btn {
    display: none;
}

.service-btn:hover {
    background: var(--accent-color-dark);
    transform: translateX(5px);
}

.service-btn svg {
    width: 16px;
    height: 16px;
}

/* Skills Section */
.skills-section {
    padding: 4rem 0;
    text-align: center;
}

.skills-section h3 {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.skills-section .section-title-with-lines {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    margin-bottom: 3rem;
}

.skills-section .title-text {
    flex-shrink: 0;
}

.skills-section .line-left,
.skills-section .line-right {
    flex: 1;
    height: 1px;
    background: var(--border-color);
    position: relative;
}

.skills-section .line-left::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
}

.skills-section .line-right::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
}

.skills-circular-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4.5rem;
    flex-wrap: nowrap;
    margin-top: 2rem;
}

.skill-circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.circular-progress {
    position: relative;
    width: 90px;
    height: 90px;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring-circle-bg {
    fill: none;
    stroke: var(--border-color);
    stroke-width: 4;
}

.progress-ring-circle {
    fill: none;
    stroke: var(--accent-color);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 251.327;
    stroke-dashoffset: 251.327;
    transition: stroke-dashoffset 1.5s ease;
    will-change: stroke-dashoffset;
}

.circular-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Outfit', sans-serif;
}

.skill-circle-item .skill-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.language-skills-bars {
    width: 90%;
    max-width: 160px;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.language-skill-bar {
    width: 100%;
}

.skill-bar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.4rem;
}

.skill-bar-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-color);
}

.skill-bar-percentage {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
}

.skill-bar-container {
    width: 100%;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
}

.skill-bar-fill {
    height: 100%;
    background: var(--accent-color);
    border-radius: 2px;
    width: 0%;
    transition: width 1s ease;
    will-change: width;
}

/* Hard Skills Section */
.hard-skills-section {
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.hard-skills-section h3 {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.hard-skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.hard-skill-item {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hard-skill-item:hover {
    border-color: var(--accent-color);
    background: var(--accent-color);
    color: var(--bg-color);
}

/* Reviews Section */
.reviews-section {
    padding: 4rem 0;
    text-align: center;
}

.reviews-section h3 {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.reviews-section .section-title-with-lines {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    margin-bottom: 3rem;
}

.reviews-section .title-text {
    flex-shrink: 0;
}

.reviews-section .line-left,
.reviews-section .line-right {
    flex: 1;
    height: 1px;
    background: var(--border-color);
    position: relative;
}

.reviews-section .line-left::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
}

.reviews-section .line-right::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
}

.reviews-slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.reviews-slider-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.reviews-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.review-slide {
    min-width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
}

.review-slide.active {
    display: flex;
}

.review-profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 3px solid var(--border-color);
}

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

.review-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.review-project {
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.review-linkedin {
    color: var(--accent-color);
    font-size: 0.9rem;
    text-decoration: none;
    margin-bottom: 1.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.review-linkedin:hover {
    color: var(--accent-color-dark);
    text-decoration: underline;
}

.review-text {
    color: var(--text-color);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
    text-align: justify;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-color);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.slider-arrow:hover {
    background: var(--accent-color);
    color: var(--bg-color);
    border-color: var(--accent-color);
}

.slider-arrow-right {
    background: var(--accent-color);
    color: var(--bg-color);
    border-color: var(--accent-color);
}

.slider-arrow-right:hover {
    background: var(--accent-color-dark);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-color);
}

/* Blog Section */
.blog-section {
    padding: 4rem 0;
    text-align: center;
}

.blog-section h3 {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.blog-section .section-title-with-lines {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    margin-bottom: 3rem;
}

.blog-section .title-text {
    flex-shrink: 0;
}

.blog-section .line-left,
.blog-section .line-right {
    flex: 1;
    height: 1px;
    background: var(--border-color);
    position: relative;
}

.blog-section .line-left::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
}

.blog-section .line-right::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-item {
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.blog-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(76, 176, 80, 0.2);
}

.blog-meta {
    color: var(--accent-color);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 500;
}

.blog-item h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
}

.blog-excerpt {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: justify;
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--accent-color-dark);
    text-decoration: underline;
}

/* Education Section */
.education-section {
    padding: 6rem 0 4rem 0;
    text-align: center;
    border-top: none;
    margin-top: 2rem;
}

.education-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.education-quote-author {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-weight: 400;
}

.education-section .section-title-with-lines {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    margin-bottom: 3rem;
}

.education-section .title-text {
    flex-shrink: 0;
}

.education-section .line-left,
.education-section .line-right {
    flex: 1;
    height: 1px;
    background: var(--border-color);
    position: relative;
}

.education-section .line-left::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
}

.education-section .line-right::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
}

.education-title-line {
    width: 100%;
    height: 1px;
    background: var(--border-color);
    margin: 2rem auto 3rem;
    max-width: 800px;
}

.education-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 3rem;
    text-align: left;
}

.timeline-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border-color);
}

.education-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
}

.timeline-dot {
    position: absolute;
    left: -3rem;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
    z-index: 1;
    margin-left: -4px;
    border: 2px solid rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    animation: pulseStroke 1.2s ease-in-out infinite;
}

@keyframes pulseStroke {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 0 0 0 14px rgba(0, 0, 0, 0);
    }
}

/* Scroll Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animation Classes */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.scroll-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays for child elements */
.scroll-animate-delay-1 { transition-delay: 0.05s; }
.scroll-animate-delay-2 { transition-delay: 0.1s; }
.scroll-animate-delay-3 { transition-delay: 0.15s; }
.scroll-animate-delay-4 { transition-delay: 0.2s; }
.scroll-animate-delay-5 { transition-delay: 0.25s; }
.scroll-animate-delay-6 { transition-delay: 0.3s; }
.scroll-animate-delay-7 { transition-delay: 0.35s; }
.scroll-animate-delay-8 { transition-delay: 0.4s; }

.education-content {
    position: relative;
}

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

.education-institution {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.education-year {
    background: var(--border-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-color);
    font-weight: 500;
    white-space: nowrap;
}

.education-role {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin: 0.5rem 0;
}

.education-description {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-top: 0.75rem;
    margin-bottom: 0;
    text-align: justify;
}

/* Profession Section */
.profession-section {
    padding: 4rem 0;
    text-align: center;
    border-top: none;
}

/* Professional Membership Section */
.professional-membership-section {
    margin: 3rem 0 2rem 0;
    text-align: left;
}

.membership-break-line {
    width: 100%;
    height: 1px;
    background: var(--border-color);
    margin: 2rem 0;
}

.membership-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
}

.membership-images-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.membership-images-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.membership-image-item {
    flex: 0 0 auto;
    max-width: 120px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

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

.membership-image-item a {
    display: block;
    text-decoration: none;
}

.membership-image-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.membership-image-item:hover img {
    box-shadow: 0 4px 12px rgba(76, 176, 80, 0.2);
}

.profession-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.profession-quote-author {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-weight: 400;
}

.profession-section .section-title-with-lines {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    margin-bottom: 3rem;
}

.profession-section .title-text {
    flex-shrink: 0;
}

.profession-section .line-left,
.profession-section .line-right {
    flex: 1;
    height: 1px;
    background: var(--border-color);
    position: relative;
}

.profession-section .line-left::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
}

.profession-section .line-right::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
}

.career-overview {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    padding: 1.5rem 0;
    text-align: left;
}

.career-overview-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 1rem;
    font-family: 'Outfit', sans-serif;
}

.career-overview p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: justify;
}

.career-overview p:last-child {
    margin-bottom: 0;
}

.profession-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 3rem;
    text-align: left;
}

.profession-timeline .timeline-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border-color);
}

.profession-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
}

.profession-content {
    position: relative;
}

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

.profession-company {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.profession-period {
    background: var(--border-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-color);
    font-weight: 500;
    white-space: nowrap;
}

.profession-role {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin: 0.5rem 0;
}

.profession-description {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-top: 0.75rem;
    margin-bottom: 0;
    list-style: none;
    padding-left: 0;
}

.profession-description li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    list-style: none;
    text-align: justify;
}

.profession-description li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Certifications Section */
.certifications-section {
    padding: 4rem 0;
    text-align: center;
}

.certifications-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.certifications-section .section-title-with-lines {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
}

.certifications-section .title-text {
    flex-shrink: 0;
}

.certifications-section .line-left,
.certifications-section .line-right {
    flex: 1;
    height: 1px;
    background: var(--border-color);
    position: relative;
}

.certifications-section .line-left::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
}

.certifications-section .line-right::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.certification-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.certification-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(76, 176, 80, 0.1);
    transform: translateY(-5px);
}

.certification-image-link {
    display: block;
    width: 100%;
    max-width: 220px;
    border-radius: 8px;
    overflow: hidden;
    background: #E6E6E6;
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border: none;
    padding: 0;
}

.certification-image-link:hover {
    box-shadow: 0 4px 12px rgba(76, 176, 80, 0.2);
    transform: translateY(-3px);
}

.certification-image-link img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

/* Certificate Lightbox */
.cert-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cert-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.cert-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

.cert-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cert-lightbox-close {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: #666;
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.2s ease;
}

.cert-lightbox-close:hover {
    color: #000;
}

.cert-lightbox-image {
    max-width: 100%;
    max-height: 75vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.cert-lightbox-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.certification-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #E6E6E6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.certification-item:hover .certification-icon {
    background: var(--accent-color);
    color: var(--bg-color);
}


.certification-icon svg {
    width: 24px;
    height: 24px;
}

.certification-name {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
    color: #000;
    text-align: center;
    font-family: 'Outfit', sans-serif;
}

.certification-info {
    color: var(--secondary-color);
    line-height: 1.4;
    text-align: justify;
    margin: 0;
    font-size: 0.75rem;
}

/* Resume & Video Section */
.resume-video-section {
    padding: 2.5rem 0;
    text-align: center;
}

.resume-video-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

.resume-download,
.about-video {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.resume-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #E6E6E6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.resume-download:hover .resume-icon {
    background: var(--accent-color);
    color: var(--bg-color);
}

.resume-download h4,
.about-video h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 0.4rem 0;
    font-family: 'Outfit', sans-serif;
}

.resume-download p,
.about-video p {
    color: var(--text-color);
    font-size: 0.85rem;
    margin: 0 0 1rem 0;
}

.resume-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.5rem;
    background: var(--accent-color);
    color: var(--bg-color);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.resume-download-btn:hover {
    background: var(--accent-color-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 176, 80, 0.3);
}

.resume-download-btn svg {
    width: 16px;
    height: 16px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Beyond Work Section */
.beyond-work-section {
    padding: 4rem 0 0.5rem;
    text-align: center;
}

.beyond-work-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.beyond-work-quote-author {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-weight: 400;
}

.beyond-work-section .section-title-with-lines {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.beyond-work-section .title-text {
    flex-shrink: 0;
}

.beyond-work-section .line-left,
.beyond-work-section .line-right {
    flex: 1;
    height: 1px;
    background: var(--border-color);
    position: relative;
}

.beyond-work-section .line-left::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
}

.beyond-work-section .line-right::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
}

/* Beyond Articles Section */
.beyond-articles-section {
    padding: 1rem 0 4rem;
    text-align: center;
}

.beyond-articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.beyond-article-item {
    display: block;
    border: none;
    border-radius: 0;
    overflow: visible;
    transition: all 0.3s ease;
    text-align: left;
    text-decoration: none;
    color: inherit;
}

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

.beyond-article-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.beyond-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.beyond-article-item:hover .beyond-article-image img {
    transform: scale(1.1);
}

.article-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.article-meta {
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 0 0 8px 0;
    display: inline-block;
}

.article-hover-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 35px;
    height: 35px;
    background: rgba(76, 176, 80, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-color);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 3;
    pointer-events: none;
}

.article-hover-icon svg {
    width: 18px;
    height: 18px;
}

.beyond-article-item:hover .article-hover-icon {
    opacity: 1;
    transform: scale(1.1);
}

.beyond-article-content {
    padding: 1.5rem 0;
}

.beyond-article-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-family: 'Outfit', sans-serif;
    line-height: 1.3;
}

.beyond-article-excerpt {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    text-align: justify;
    font-size: 0.95rem;
    text-align: justify;
}

.beyond-read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.beyond-read-more:hover {
    color: var(--accent-color-dark);
    text-decoration: underline;
}

/* Article Detail Page */
.article-detail {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0 4rem;
}

.article-breadcrumb {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.article-breadcrumb a {
    color: var(--accent-color);
    text-decoration: none;
}

.article-breadcrumb a:hover {
    text-decoration: underline;
}

.article-meta-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--bg-color);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    margin-right: 0.75rem;
}

.article-date {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.article-title {
    font-size: 2.25rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
    line-height: 1.3;
    margin: 1rem 0 1.5rem;
}

.article-featured-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.article-featured-image img:hover {
    opacity: 0.9;
}

.article-body {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-color);
    text-align: justify;
}

.article-body p {
    margin-bottom: 1.25rem;
}

.article-body .article-tags {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-top: 1.5rem;
}

.article-gallery {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.article-gallery-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-family: 'Outfit', sans-serif;
}

.article-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.article-gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.article-gallery-grid img:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.article-video-wrapper {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
}

.article-video {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.article-back-link {
    display: inline-block;
    margin-top: 2rem;
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-back-link:hover {
    color: var(--accent-color-dark);
    text-decoration: underline;
}

/* Beyond Work Category Filter */
.beyond-category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.beyond-category-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--accent-color);
    background: transparent;
    color: var(--accent-color);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.beyond-category-btn:hover,
.beyond-category-btn.active {
    background: var(--accent-color);
    color: var(--bg-color);
    text-decoration: none;
}

.beyond-article-item[data-category] {
    transition: opacity 0.3s ease;
}

.beyond-article-item.filtered-out {
    display: none;
}

/* Contact Page Section */
.contact-page-section {
    padding: 4rem 0;
    max-width: 1000px;
    margin: 0 auto;
}

/* Contact Info Section */
.contact-info-section {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-main-heading {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-family: 'Outfit', sans-serif;
}

.contact-page-indicator {
    font-size: 0.85rem;
    color: var(--secondary-color);
    letter-spacing: 0.08em;
    margin-bottom: 2rem;
    font-family: 'Outfit', sans-serif;
}

.contact-page-indicator a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-page-indicator a:hover {
    color: var(--accent-color);
}

.contact-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 500;
}

.contact-dot {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.contact-phone,
.contact-email {
    color: var(--accent-color);
}

.contact-phone-number,
.contact-email-address {
    color: #000;
    text-decoration: none;
}

.contact-email-address:hover {
    text-decoration: underline;
}

/* Contact Map Section */
.contact-map-section {
    margin-bottom: 4rem;
}

.map-wrapper {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Form Section */
.contact-form-section {
    margin-top: 4rem;
}

.contact-form-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.form-title-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Outfit', sans-serif;
    flex-shrink: 0;
}

.contact-form-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 560px;
    margin: -1.5rem auto 2.5rem auto;
}

.form-line-left,
.form-line-right {
    flex: 1;
    height: 2px;
    background: rgba(0, 0, 0, 0.35);
    position: relative;
}

.form-line-left::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
}

.form-line-right::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
}

.contact-form {
    max-width: 100%;
}

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

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

.form-group-full {
    grid-column: 1 / -1;
}

.contact-form label {
    font-size: 0.85rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 0;
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.35);
    background: transparent;
    font-size: 1rem;
    color: var(--text-color);
    font-family: 'Outfit', sans-serif;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom: 2px solid var(--accent-color);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.privacy-note {
    font-size: 0.85rem;
    color: var(--secondary-color);
    margin: 0;
}

.privacy-asterisk {
    color: var(--accent-color);
    font-weight: bold;
}

.send-message-btn {
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--bg-color);
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.send-message-btn:hover {
    background: var(--accent-color-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 176, 80, 0.3);
}

/* Contact Section (for index page) */
.contact-section {
    padding: 4rem 0 4rem 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
    margin-bottom: 0;
}

.contact-section h2 {
    font-size: 2.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.contact-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--accent-color);
    color: var(--bg-color);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--accent-color-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 176, 80, 0.3);
}

/* Footer */
.footer {
    background: #282a2d;
    padding: 1.8rem 0;
    color: #b0b0b0;
    font-size: 0.9rem;
    position: relative;
    width: calc(100% + 12rem);
    margin: 3.5rem -6rem 0 -6rem;
    z-index: 100;
    border-top: none;
    margin-bottom: 0;
    margin-top: auto;
    flex-shrink: 0;
}


.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    padding: 0 6rem;
}

.footer-left,
.footer-right {
    margin: 0;
    color: #b0b0b0;
}

.footer a {
    color: #b0b0b0;
    text-decoration: none;
}

.footer a:hover {
    color: #66bb6a;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--bg-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(76, 176, 80, 0.3);
}

.back-to-top:hover {
    background: var(--accent-color-dark);
    transform: translateY(-3px);
}

.back-to-top.show {
    display: flex;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar {
        left: 0;
    }

    .scroll-progress-line {
        display: none;
    }

    .main-container {
        flex-direction: column;
    }

    .left-sidebar {
        display: none;
    }

    .left-content {
        width: 100%;
        margin-left: 0;
        height: auto;
        padding: 2rem;
    }

    .right-image {
        display: none;
    }

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

@media (max-width: 768px) {
    .navbar {
        left: 0;
    }

    .nav-container {
        justify-content: space-between;
        position: relative;
        padding: 0;
    }

    .nav-icon-box {
        position: fixed;
        width: 90px;
        height: 90px;
        top: 0;
    }

    .nav-icon-box.nav-logo-box {
        left: 0;
    }

    .nav-icon-box:not(.nav-logo-box) {
        right: 0;
        position: fixed;
    }

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

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

    .nav-menu .nav-link {
        color: #fff;
    }

    .nav-menu .nav-link:hover {
        color: #fff;
        opacity: 0.85;
    }

    .nav-menu .nav-link::after {
        background: #fff;
    }

    .nav-menu .nav-link::before {
        background: #fff;
    }

    .menu-toggle {
        display: flex;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1002;
    }

    .left-content {
        padding: 1.5rem 1.5rem 0 1.5rem;
        overflow-x: hidden;
    }

    .left-content .footer {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        width: calc(100% + 3rem);
    }

    .skills-section {
        overflow-x: visible;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .hero-name {
        font-size: 4.2rem;
    }

    .about-section h2,
    .contact-section h2 {
        font-size: 1.5rem;
    }

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

    .reviews-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .resume-video-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .resume-video-section {
        padding: 2rem 0;
    }

    .resume-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }

    .resume-download h4,
    .about-video h4 {
        font-size: 0.95rem;
    }

    .resume-download p,
    .about-video p {
        font-size: 0.8rem;
        margin: 0 0 0.75rem 0;
    }

    .resume-download-btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.8rem;
    }

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

    .certification-item {
        padding: 0.75rem;
    }

    .certification-image-link {
        max-width: 180px;
    }

    .certification-icon {
        width: 45px;
        height: 45px;
    }

    .certification-icon svg {
        width: 20px;
        height: 20px;
    }

    .certification-name {
        font-size: 0.8rem;
    }

    .certification-info {
        font-size: 0.7rem;
    }

    .beyond-articles-grid {
        grid-template-columns: 1fr;
    }

    .contact-main-heading {
        font-size: 2.5rem;
    }

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

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

    .form-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .send-message-btn {
        width: 100%;
    }

    /* Header Indicator Line Mobile */
    .header-indicator-line {
        display: flex;
    }

    .indicator-line {
        height: 100px;
    }

    .left-content:has(.contact-page-section) .header-indicator-line .indicator-line {
        height: 70px;
    }

    /* Education & Profession Timeline Mobile */
    .education-timeline,
    .profession-timeline {
        padding-left: 2rem;
        max-width: 100%;
    }

    .education-item,
    .profession-item {
        padding-left: 1.5rem;
    }

    .timeline-dot {
        left: -2rem;
        margin-left: -4px;
    }

    .education-institution,
    .profession-company {
        font-size: 1rem;
    }

    .education-year,
    .profession-period {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }

    .education-description,
    .profession-description {
        font-size: 0.9rem;
    }

    /* Professional Membership Mobile */
    .professional-membership-section {
        margin: 2rem 0 3rem 0;
        text-align: center;
    }

    .membership-heading {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .membership-images-row {
        justify-content: center;
        gap: 0.75rem;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }

    .membership-images-row::-webkit-scrollbar {
        height: 4px;
    }

    .membership-images-row::-webkit-scrollbar-track {
        background: var(--border-color);
        border-radius: 2px;
    }

    .membership-images-row::-webkit-scrollbar-thumb {
        background: var(--accent-color);
        border-radius: 2px;
    }

    .membership-image-item {
        max-width: 100px;
        flex-shrink: 0;
    }

    /* Skills Section Mobile */
    .skills-circular-container {
        flex-direction: row;
        gap: 0;
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding: 2rem 0;
        justify-content: flex-start;
        align-items: center;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .skills-circular-container::-webkit-scrollbar {
        height: 4px;
    }

    .skills-circular-container::-webkit-scrollbar-track {
        background: var(--border-color);
        border-radius: 2px;
    }

    .skills-circular-container::-webkit-scrollbar-thumb {
        background: var(--accent-color);
        border-radius: 2px;
    }

    .skill-circle-item {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        scroll-snap-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0;
        box-sizing: border-box;
    }

    .circular-progress {
        width: 90px;
        height: 90px;
        margin: 0 auto;
        flex-shrink: 0;
        position: relative;
    }

    .circular-progress svg {
        width: 90px;
        height: 90px;
        display: block;
        overflow: visible;
    }

    .progress-ring {
        overflow: visible;
    }

    .progress-ring-circle-bg,
    .progress-ring-circle {
        overflow: visible;
    }

    .language-skills-bars {
        max-width: 100%;
    }

    /* Services Grid Mobile */
    .service-item {
        gap: 1rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon svg {
        width: 30px;
        height: 30px;
    }

    /* Reviews Section Mobile */
    .reviews-slider-container {
        flex-direction: column;
        gap: 1rem;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    /* Contact Page Mobile */
    .contact-page-section {
        padding: 2rem 0;
    }

    .map-wrapper {
        height: 300px;
    }

    .form-title-text {
        font-size: 1.8rem;
    }

    /* Beyond Work Mobile */
    .beyond-work-quote {
        font-size: 1.1rem;
    }

    .beyond-article-image {
        height: 200px;
    }

    .beyond-article-content {
        padding: 1rem 0;
    }

    .beyond-article-item h4 {
        font-size: 1.1rem;
    }

    .beyond-article-excerpt {
        font-size: 0.85rem;
    }

    /* Hero Section Mobile */
    .hero-title {
        font-size: 1.1rem;
    }

    .hero-profile-image {
        width: 150px;
        height: 150px;
        border: 15px solid #e6e6e6;
    }

    /* Section Titles Mobile */
    .section-title-with-lines .title-text {
        font-size: 1.2rem;
    }

    .section-title-with-lines {
        gap: 1rem;
    }

    /* Footer Mobile */
    .footer {
        width: 100%;
        margin: 0;
        padding: 1.5rem 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        padding: 0;
        text-align: center;
        margin: 0;
        width: 100%;
    }

    /* Back to Top Button Mobile */
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 1rem;
        right: 1rem;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .left-content {
        padding: 1rem;
    }

    .hero-name {
        font-size: 3.6rem;
    }

    .hero-title {
        font-size: 1rem;
    }

    .contact-main-heading {
        font-size: 2rem;
    }

    .form-title-text {
        font-size: 1.5rem;
    }

    .education-timeline,
    .profession-timeline {
        padding-left: 1.5rem;
    }

    .education-item,
    .profession-item {
        padding-left: 1rem;
    }

    .timeline-dot {
        left: -1.5rem;
    }

    .beyond-article-image {
        height: 180px;
    }

    .article-meta {
        font-size: 0.65rem;
        padding: 0.4rem 0.7rem;
    }

    .article-hover-icon {
        width: 30px;
        height: 30px;
        top: 0.5rem;
        right: 0.5rem;
    }

    .article-hover-icon svg {
        width: 14px;
        height: 14px;
    }

    .map-wrapper {
        height: 250px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-icon svg {
        width: 25px;
        height: 25px;
    }

    .circular-progress {
        width: 80px;
        height: 80px;
    }

    .circular-progress svg {
        width: 80px;
        height: 80px;
    }

    .skill-circle-item {
        min-width: 250px;
        max-width: 250px;
    }

    .progress-ring-circle-bg,
    .progress-ring-circle {
        stroke-width: 3;
    }
}

