/* ==========================================================================
   Combined Template & Personal Brand Styles
   Using Open Sans font and professional Sprint template design
   ========================================================================== */

:root {
    --primary-green: #1a7a45;
    --primary-dark: #145a33;
    --secondary: #f5a200;
    --dark-bg: #161616;
    --dark-card: #1a1a1a;
    --text-light: #838383;
    --text-dark: #444444;
    --text-white: #ffffff;
    --border-color: #e1e6e9;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
html, body {
    font-size: 100%;
    width: 100%;
    height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

body {
    font: 13px/21px "Open Sans", Arial, sans-serif;
    color: var(--text-light);
    background-image: linear-gradient(rgba(26, 122, 69, 0.7), rgba(26, 122, 69, 0.7)), url('../images/everest.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
}

#front {
    margin: 0;
    padding: 0;
}

body > div:not(#front):not(.hero-section):not(.site-footer) {
    background-color: #f0f0f0;
}

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    color: var(--primary-green);
    text-decoration: none !important;
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -ms-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
}

a:hover {
    color: var(--secondary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Open Sans", Arial, sans-serif;
    color: var(--text-dark);
}

h1 { font-size: 2.6em; }
h2 { font-size: 2.2em; }
h3 { font-size: 1.8em; }
h4 { font-size: 1.4em; }
h5 { font-size: 1em; }
h6 { font-size: .8em; }

.hidden {
    display: none !important;
    visibility: hidden;
}

/* Prevent language flicker on page load */
html.lang-loading #experience,
html.lang-loading #education,
html.lang-loading #certifications,
html.lang-loading #skills,
html.lang-loading #publications,
html.lang-loading #contact {
    opacity: 0;
    transition: opacity 0.1s ease-in;
}

html.lang-ready #experience,
html.lang-ready #education,
html.lang-ready #certifications,
html.lang-ready #skills,
html.lang-ready #publications,
html.lang-ready #contact {
    opacity: 1;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

/* ==========================================================================
   Header Site Styling
   ========================================================================== */
.site-header {
    position: fixed;
    min-height: 100px;
    height: 100px;
    width: 100%;
    z-index: 9999;
    background-color: var(--dark-bg);
    top: 0;
    left: 0;
}

.header-wrapper {
    display: flex;
    margin: 0;
    padding: 0;
    width: 100%;
    align-items: center;
}

#templatemo_logo {
    background-color: var(--primary-green);
    height: 100px;
    display: flex;
    align-items: center;
    padding: 0 20px 0 0;
    flex-shrink: 0;
    width: calc(auto + 299px);
    min-width: 299px;
    justify-content: center;
}

.menu-column {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    width: 1300px;
    flex-shrink: 0;
    background-color: var(--dark-bg);
}

.menu-column .main-menu {
    display: block;
}

.responsive .main-menu {
    display: none;
}

@media (min-width: 992px) {
    .responsive .main-menu {
        display: none !important;
    }

    .menu-column .main-menu {
        display: block !important;
    }
}

.language-column {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 20px;
    flex: 1;
}

.logo-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
}

.logo-name {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    white-space: nowrap;
}

.logo-title {
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    color: white;
    opacity: 0.9;
    line-height: 1.2;
    white-space: nowrap;
}

.language-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100px;
}

.language-toggle {
    background-color: transparent;
    color: white;
    border: none;
    padding: 0 12px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    display: flex;
    align-items: center;
    gap: 6px;
    height: 100px;
    line-height: 100px;
}

.language-toggle:hover {
    background-color: transparent;
}

.language-toggle .fi {
    font-size: 16px;
    width: 16px;
    height: 16px;
    display: inline-block;
    border-radius: 2px;
}

.language-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--dark-bg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 80px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 0;
    border-top: 1px solid #2f2f2f;
}

.language-dropdown.active .language-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: transparent;
    border-bottom: 1px solid #2f2f2f;
    position: relative;
    text-align: center;
    gap: 8px;
}

.language-dropdown-menu a .fi {
    width: 16px;
    height: 16px;
    display: inline-block;
    border-radius: 2px;
    flex-shrink: 0;
}

.language-dropdown-menu a .lang-text {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.language-dropdown-menu a:last-child {
    border-bottom: none;
}

.language-dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.language-dropdown-menu a.active {
    background-color: var(--primary-green);
}

.main-menu {
    text-align: center;
    position: relative;
    width: 100%;
}

.main-menu ul {
    background-color: var(--dark-bg);
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: left;
    justify-content: right;
    height: 100px;
}

.main-menu ul li {
    display: inline-block;
    width: auto;
    text-align: center;
    line-height: 100px;
    padding: 0 6px;
    position: relative;
}

.main-menu ul li a {
    color: white;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    outline: 0;
    border: 0;
    white-space: nowrap;
    letter-spacing: -0.3px;
    display: block;
    text-decoration: none;
}

.main-menu ul li a:hover,
.main-menu ul li a.current {
    color: var(--primary-green);
    text-decoration: underline;
}

.main-menu ul li a.no-hover:hover {
    color: white !important;
    text-decoration: none !important;
}

.no-pointer-events {
    pointer-events: none !important;
}

.no-pointer-events * {
    pointer-events: none !important;
}

.mobile-header-actions {
    display: none;
}

.toggle-menu {
    display: none;
    font-size: 24px;
    color: white;
    text-align: right;
    padding: 10px;
    cursor: pointer;
}

.responsive .main-menu {
    display: none;
}

.responsive .main-menu ul li {
    width: 100%;
}

.responsive .main-menu ul li a {
    line-height: 55px;
    padding: 10px 20px;
}

/* ==========================================================================
   Hero Section with Profile Card
   ========================================================================== */
.hero-section {
    padding-top: 150px;
    padding-bottom: 100px;
    color: white;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}


.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Profile Card */
.profile-card {
    background: rgba(26, 122, 69, 0.95);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.profile-photo {
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.3);
}

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

.profile-name {
    font-size: 2.2em;
    color: white;
    margin-bottom: 10px;
    font-weight: 700;
}

.profile-title {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 8px;
    font-weight: 500;
}

.profile-company {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    font-size: 1.1em;
}

.profile-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.profile-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.profile-social a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.btn-cv-download {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    gap: 6px;
}

.btn-cv-download:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    color: white;
}

/* About Content */
.about-content {
    padding-left: 40px;
}

.about-title {
    font-size: 2.5em;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-download,
.btn-contact {
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-contact {
    background: white;
    color: var(--primary-green);
}

.btn-contact:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-download {
    background: rgba(255, 255, 255, 0.2);
}

.btn-download:hover {
    background: white;
    color: var(--primary-green);
}

.btn-download i,
.btn-contact i {
    margin-right: 8px;
}

/* Compact button style */
.btn-compact {
    padding: 10px 20px;
    font-size: 14px;
}

.info-row {
    margin-top: 0;
    margin-bottom: 15px;
}

/* Info boxes for hero section */
.info-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-box-tall {
    height: calc(100% - 10px);
}

.info-box h3 {
    color: white;
    font-size: 1.1em;
    margin: 0 0 10px 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-box h3 i {
    font-size: 1em;
}

.info-highlight {
    color: white;
    font-size: 1.4em;
    font-weight: 700;
    margin: 5px 0;
}

.info-detail {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95em;
    margin: 0;
}

.compact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.compact-list li {
    color: rgba(255, 255, 255, 0.9);
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.95em;
}

.compact-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: white;
    font-weight: bold;
}

.inline-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0 15px;
}

.inline-list li::before {
    content: '•';
}

.interests-section,
.education-section {
    margin-bottom: 20px;
}

.interests-section h3,
.education-section h3 {
    color: white;
    font-size: 1.6em;
    margin-bottom: 15px;
    font-weight: 600;
}

.education-section h3 i {
    margin-right: 8px;
    font-size: 1em;
}

.interests-list {
    list-style: none;
    padding: 0;
}

.interests-list li {
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 1.15em;
}

.interests-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: white;
    font-weight: bold;
}

.education-item-mini {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.education-item-mini i {
    font-size: 22px;
    color: white;
    margin-top: 3px;
    flex-shrink: 0;
}

.education-item-mini strong {
    color: white;
    display: block;
    margin-bottom: 3px;
    font-size: 1.1em;
    line-height: 1.3;
}

.education-item-mini p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-size: 1em;
    line-height: 1.3;
}

.btn {
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
}

.btn-primary {
    background: white;
    color: var(--primary-green);
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   Content Sections
   ========================================================================== */
.content-section {
    padding: 80px 0;
    background-color: #f0f0f0;
    max-width: 1300px;
    margin: 0 auto;
}

.content-section:nth-child(even) {
    background-color: #e8e8e8;
}

.section-title {
    border-top: 1px solid var(--border-color);
    margin-top: 0;
    padding-top: 60px;
    padding-bottom: 60px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    position: relative;
}

.section-title:before,
.section-title:after {
    content: '';
    width: 180px;
    height: 3px;
    margin-bottom: 10px;
    display: inline-block;
}

.section-title:before {
    background: linear-gradient(to right, transparent, var(--primary-green));
    margin-right: 15px;
}

.section-title:after {
    background: linear-gradient(to left, transparent, var(--primary-green));
    margin-left: 15px;
}

.bigger-text {
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 50px;
}

/* ==========================================================================
   Service/About Items
   ========================================================================== */
.service-item {
    padding-bottom: 40px;
    text-align: center;
}

.service-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.service-item .service-icon {
    margin: 0 auto;
    background-repeat: no-repeat;
    background-position: center;
    width: 100px;
    height: 113px;
    display: block;
    background-size: contain;
}

.service-item .service-icon.first {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48dGV4dCB4PSI1MCIgeT0iNTAiIGZvbnQtc2l6ZT0iNDgiIHRleHQtYW5jaG9yPSJtaWRkbGUiIGFsaWdubWVudC1iYXNlbGluZT0ibWlkZGxlIj7wn5al77iPPC90ZXh0Pjwvc3ZnPg==);
}

.service-item .service-icon.second {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48dGV4dCB4PSI1MCIgeT0iNTAiIGZvbnQtc2l6ZT0iNDgiIHRleHQtYW5jaG9yPSJtaWRkbGUiIGFsaWdubWVudC1iYXNlbGluZT0ibWlkZGxlIj7wn5SwPC90ZXh0Pjwvc3ZnPg==);
}

.service-item .service-icon.third {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48dGV4dCB4PSI1MCIgeT0iNTAiIGZvbnQtc2l6ZT0iNDgiIHRleHQtYW5jaG9yPSJtaWRkbGUiIGFsaWdubWVudC1iYXNlbGluZT0ibWlkZGxlIj7wn4yNPC90ZXh0Pjwvc3ZnPg==);
}

.service-item .service-icon.fourth {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48dGV4dCB4PSI1MCIgeT0iNTAiIGZvbnQtc2l6ZT0iNDgiIHRleHQtYW5jaG9yPSJtaWRkbGUiIGFsaWdubWVudC1iYXNlbGluZT0ibWlkZGxlIj7wn46TPC90ZXh0Pjwvc3ZnPg==);
}

/* ==========================================================================
   Experience Timeline
   ========================================================================== */
.timeline-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-green);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    box-shadow: 0 5px 20px rgba(38, 184, 100, 0.2);
    transform: translateX(10px);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.timeline-header h3 {
    margin: 0;
    font-size: 1.5em;
    color: var(--text-dark);
}

.timeline-date {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.9em;
}

.timeline-item h4 {
    color: var(--text-light);
    margin: 10px 0;
    font-size: 1.1em;
}

.timeline-item ul {
    list-style: none;
    padding-left: 0;
}

.timeline-item ul li {
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
    line-height: 1.6;
}

.timeline-item ul li:before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

/* ==========================================================================
   Skills Section
   ========================================================================== */
.skill-category {
    margin-bottom: 30px;
}

.skill-category h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 1.3em;
    text-align: center;
}

.skill-category ul {
    list-style: none;
    padding: 0;
}

.skill-category ul li {
    background: white;
    padding: 12px 20px;
    margin-bottom: 8px;
    border-left: 3px solid var(--primary-green);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.skill-category ul li:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

/* ==========================================================================
   Publications Section
   ========================================================================== */
.publication-item {
    background: white;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.publication-item:hover {
    box-shadow: 0 5px 20px rgba(38, 184, 100, 0.2);
    border-color: var(--primary-green);
}

.publication-item h4 {
    margin: 0 0 10px 0;
    font-size: 1.2em;
}

.publication-item h4 a {
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.publication-item h4 a:hover {
    color: var(--primary-green);
}

.publication-item h4 .fa {
    color: var(--primary-green);
    margin-right: 8px;
}

.publication-item .publication-author {
    margin: 5px 0 5px 0;
    font-size: 0.95em;
    color: var(--text-dark);
    font-style: italic;
}

.publication-item .publication-meta {
    margin: 5px 0 10px 0;
    font-size: 0.9em;
    color: var(--primary-green);
    font-weight: 500;
}

.publication-item p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

/* ==========================================================================
   Education & Certifications
   ========================================================================== */
.education-item {
    background: white;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
}

.education-item h3 {
    color: var(--text-dark);
    margin: 0 0 10px 0;
    font-size: 1.3em;
}

.education-item h4 {
    color: var(--primary-green);
    margin: 5px 0;
    font-size: 1.1em;
}

.edu-date {
    color: var(--text-light);
    font-size: 0.95em;
}

.certification-list h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 1.5em;
}

.certification-list ul {
    list-style: none;
    padding: 0;
}

.certification-list ul li {
    background: white;
    padding: 15px;
    margin-bottom: 10px;
    border-left: 3px solid var(--primary-green);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.certification-list ul li:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.certification-list .fa {
    color: var(--primary-green);
    margin-right: 10px;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-info {
    margin-top: 50px;
}

.contact-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 10px 30px rgba(38, 184, 100, 0.2);
    transform: translateY(-5px);
    border-color: var(--primary-green);
}

.contact-card .fa {
    color: var(--primary-green);
    margin-bottom: 20px;
}

.contact-card h3 {
    margin: 15px 0;
    color: var(--text-dark);
}

.contact-card a {
    color: var(--primary-green);
    font-weight: 600;
}

.contact-card p {
    margin: 0;
    color: var(--text-light);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    margin-top: 0;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 25px 0;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.site-footer a {
    color: white;
}

.site-footer span {
    margin-top: 12px;
    display: block;
}

ul.social {
    text-align: right;
    padding: 0;
    margin: 0;
    list-style: none;
}

ul.social li {
    display: inline-block;
}

ul.social li a {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    display: inline-block;
    border-radius: 3px;
    margin-left: 5px;
    transition: all 0.3s ease;
}

ul.social li a:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 991px) {
    .menu-column .main-menu {
        display: none !important;
    }

    .responsive .main-menu {
        display: none;
        border-top: 1px solid #2f2f2f;
        text-align: left;
    }

    .bx-thumbnail-wrapper {
        display: none;
    }

    .toggle-menu {
        display: block;
    }

    .header-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    #templatemo_logo {
        width: 100%;
        min-width: auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-header-actions {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .menu-column {
        display: none;
    }

    .language-column {
        display: none;
    }

    .language-dropdown-desktop {
        display: none;
    }

    .section-title:after,
    .section-title:before {
        display: none;
    }

    .responsive .main-menu ul {
        flex-direction: column;
        height: auto;
        align-items: stretch;
        justify-content: flex-start;
    }

    .responsive .main-menu ul li {
        padding: 0;
        margin: 0;
        display: block;
        border-bottom: 1px solid #2f2f2f;
        width: 100%;
        line-height: normal;
    }

    .responsive .main-menu ul li:last-child {
        border-bottom: 0;
    }

    .responsive .main-menu ul li a {
        padding: 20px;
        color: white;
        text-transform: uppercase;
        font-weight: 600;
        font-size: 13px;
        display: block;
        line-height: normal;
        text-decoration: none;
    }

    .responsive .main-menu ul li a:hover,
    .responsive .main-menu ul li a.current {
        color: var(--primary-green);
        text-decoration: underline;
    }

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

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

    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 24px;
    }

    .hero-section {
        padding-top: 120px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .profile-card {
        margin-bottom: 30px;
    }

    .about-content {
        padding-left: 0;
    }

    .about-title {
        font-size: 2em;
    }

    .profile-name {
        font-size: 1.8em;
    }

    .profile-photo {
        width: 150px;
        height: 150px;
    }

    .info-row .col-md-6,
    .info-row .col-sm-6 {
        margin-bottom: 15px;
    }

    .info-box {
        margin-bottom: 15px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn-compact {
        font-size: 13px;
        padding: 8px 16px;
    }

    #templatemo_logo h1 {
        font-size: 1.5em;
    }

    .content-section {
        padding: 50px 0;
    }

    ul.social {
        text-align: center;
        margin-top: 20px;
    }

    .site-footer .col-md-8,
    .site-footer .col-md-4 {
        text-align: center;
    }
}
