/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Sailec', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sailec', sans-serif;
    line-height: 1.6;
    color: #e1f3fd;
    background-color: #041d25;
    overflow-x: hidden;
}

/* Font declarations for Sailec family */
@font-face {
    font-family: 'Sailec';
    src: url('fonts/SailecRegular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sailec';
    src: url('fonts/SailecRegular.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SailecBold';
    src: url('fonts/SailecBold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Base font inheritance - Sailec for regular text */
* {
    font-family: 'Sailec', sans-serif;
}

/* Ensure specific elements use SailecBold */
.greeting, .project-title, .section-heading h3, .section-title, .logo h1 {
    font-family: 'SailecBold', sans-serif !important;
}

/* Extra specific rule for logo to ensure it works */
.nav-sidebar .logo h1,
.mobile-nav-header h1 {
    font-family: 'SailecBold', sans-serif !important;
}

/* Debug: Force SailecBold with maximum specificity */
.nav-sidebar .logo h1,
.mobile-nav-header h1,
.logo h1,
h1.logo {
    font-family: 'SailecBold', sans-serif !important;
    font-weight: 700 !important;
}

/* Image Modal/Lightbox Styles */
.image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.image-modal-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    cursor: pointer;
}

.image-modal-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.image-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: #e1f3fd;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.image-modal-close:hover {
    color: #3daed1;
}

/* Make all images clickable with cursor pointer */
.project-image img,
.placeholder-image img,
.profile-image img,
img[src*="assets/"] {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
}

.project-image img:hover,
.placeholder-image img:hover,
.profile-image img:hover,
img[src*="assets/"]:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Add subtle indicator that images are clickable */
.project-image img::after,
.placeholder-image img::after,
.profile-image img::after {
    content: "🔍";
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px;
    border-radius: 50%;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-image:hover img::after,
.placeholder-image:hover img::after,
.profile-image:hover img::after {
    opacity: 1;
}

/* Main Container */
.home-container {
    background-color: #041d25;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    width: 100%;
    height: 100vh;
}

.body-wrapper {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    width: 100%;
}

/* Fixed Navigation Sidebar */
.nav-sidebar {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 45px;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
    padding: 40px 40px 40px 150px;
    position: fixed;
    left: 0;
    top: 0;
    width: 20%;
    height: 100vh;
    background-color: #041d25;
    z-index: 1000;
}

.logo h1 {
    font-family: 'SailecBold', sans-serif !important;
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    color: #e1f3fd;
    text-align: left;
    letter-spacing: 0.24px;
    margin: 0;
}

.logo h1 a {
    color: #e1f3fd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo h1 a:hover {
    color: #3daed1;
}

.nav-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: flex-start;
}

.section-title {
    font-family: 'SailecBold', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 27.2px;
    color: #1e6075;
    margin: 0;
}

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

.nav-links li {
    margin-bottom: 24px;
}

.nav-links a {
    font-family: 'Sailec', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 27.2px;
    color: #e1f3fd;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #3daed1;
}

.case-studies-note {
    font-family: 'Sailec', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #1e6075;
    margin: 0;
    padding-top: 20px;
    text-align: left;
    letter-spacing: 0.14px;
}

.case-studies-email {
    color: #72d5f9;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.case-studies-email:hover {
    color: #3daed1;
}

/* Scrollable Main Content */
.main-content {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 121px;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 150px 120px 80px;
    position: relative;
    margin-left: 10%;
    width: 90%;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.about-section {
    display: flex;
    flex-direction: column;
    gap: 34px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    padding-top: 50px;
    padding-right: 150px;
}

.profile-image-container {
    display: flex;
    height: 0;
    align-items: center;
    padding-left: 60px;
    padding-bottom: 60px;
    justify-content: center;
    position: relative;
    width: 0;
}

.profile-image {
    transform: rotate(343.473deg);
    flex-shrink: 0;
}

.profile-image img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100px;
    width: 100px;
    border-radius: 10px;
    border: 2px solid #1e6075;
    box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.3), 0px 1px 3px 1px rgba(0,0,0,0.15);
}

.content-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    max-width: 800px;
}

.greeting {
    font-family: 'SailecBold', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    color: #e1f3fd;
    text-align: left;
    letter-spacing: 0.24px;
    margin: 0;
    width: 100%;
}

.bio {
    font-family: 'Sailec', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 27.2px;
    color: #e1f3fd;
    text-align: left;
    letter-spacing: 0.16px;
    margin: 0;
    width: 100%;
}

.section-heading {
    display: flex;
    flex-direction: column;
    gap: -20px;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 40px;
}

.section-heading h3 {
    font-family: 'SailecBold', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 27.2px;
    color: #e1f3fd;
    text-align: left;
    letter-spacing: 0.16px;
    margin: 0;
}

.underline {
    height: 0;
    width: 847px;
    max-width: 100%;
    position: relative;
}

.underline img {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: -1px;
    width: 100%;
    height: 100%;
}

.values-list {
    font-family: 'Sailec', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 27.2px;
    color: #e1f3fd;
    text-align: left;
    letter-spacing: 0.16px;
    margin: 0;
    width: 100%;
}

.values-list ul {
    margin: 0;
    padding-left: 0;
    list-style: none !important;
}

.values-list li {
    margin-bottom: 16px;
    line-height: 27.2px;
    list-style: none !important;
}

.values-list li {
    margin-bottom: 16px;
    line-height: 27.2px;
}

.values-list li:last-child {
    margin-bottom: 0;
}

/* Divider */
.divider {
    height: 1px;
    width: 100%;
    background-color: #1e6075;
    margin: 0px 0 10px 0;
    opacity: 0.6;
}

/* Divider on ChipperCash page - match image width */
.work-section .divider {
    width: 100%;
    max-width: 847px;
}

/* Custom Scrollbar for Main Content */
.main-content::-webkit-scrollbar {
    width: 8px;
}

.main-content::-webkit-scrollbar-track {
    background: #0a2a32;
}

.main-content::-webkit-scrollbar-thumb {
    background: #1e6075;
    border-radius: 4px;
}

.main-content::-webkit-scrollbar-thumb:hover {
    background: #3daed1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    /* Ensure Sailec font is applied to all elements */
    * {
        font-family: 'Sailec', sans-serif !important;
    }
    
    /* Preserve specific font families for headings and titles */
    .greeting, .project-title, .section-heading h3, .section-title, .logo h1 {
        font-family: 'SailecBold', sans-serif !important;
    }
    
    .body-wrapper {
        width: 100%;
    }
    
    .nav-sidebar {
        width: 20%;
        padding: 40px 30px 40px 80px;
    }
    
    .main-content {
        margin-left: 10%;
        width: 90%;
        padding: 80px 80px 40px 60px;
    }
    
    /* Standardized font sizes for large screens */
    .greeting, .project-title {
        font-size: 24px;
        font-family: 'SailecBold', sans-serif;
        line-height: 1.2;
    }
    
    .bio, .section-heading h3, .nav-links a, .section-title, .project-description, .project-text {
        font-size: 16px;
        line-height: 27.2px;
        font-family: 'Sailec', sans-serif;
    }
    
    .content-text {
        max-width: 700px;
    }
    
    .project-description {
        max-width: 700px;
    }
    
    .project-text {
        max-width: 700px;
    }
    
    .underline {
        width: 100%;
        max-width: 700px;
    }
    
    .work-section .divider {
        max-width: 700px;
    }

    .project-image {
        width: 100%;
        max-width: 100%;
        height: 600px;
        border-radius: 10px;
    }
    
    .placeholder-image {
        width: 100%;
        max-width: 100%;
        height: 580px;
        border-radius: 10px;
    }

    .mobile-menu-toggle {
        display: none ;
    }
}

@media (max-width: 1024px) {
    /* Ensure Sailec font is applied to all elements */
    * {
        font-family: 'Sailec', sans-serif !important;
    }
    
    /* Preserve specific font families for headings and titles */
    .greeting, .project-title, .section-heading h3, .section-title, .logo h1 {
        font-family: 'SailecBold', sans-serif !important;
    }
    
    .mobile-menu-toggle {
        display: block;
        background-color: rgba(30, 96, 117, 0.6);
        padding: 12px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(30, 96, 117, 0.3);
    }
    
    .nav-sidebar {
        width: 25%;
        padding: 30px 20px 30px 60px;
    }
    
    .main-content {
        margin-left: 15%;
        width: 85%;
        padding: 60px 60px 40px 40px;
    }
    
    /* Standardized font sizes for medium screens */
    .greeting, .project-title {
        font-size: 24px;
        font-family: 'SailecBold', sans-serif;
        line-height: 1.2;
    }
    
    .bio, .section-heading h3, .nav-links a, .section-title, .project-description, .project-text {
        font-size: 16px;
        line-height: 27.2px;
        font-family: 'Sailec', sans-serif;
    }
    
    .content-text {
        max-width: 600px;
    }
    
    .project-description {
        max-width: 600px;
    }
    
    .project-text {
        max-width: 600px;
    }
    
    .underline {
        max-width: 600px;
    }
    
    .work-section .divider {
        max-width: 600px;
    }

    .project-image {
        width: 100%;
        max-width: 100%;
        height: 520px;
        border-radius: 10px;
    }
    
    .placeholder-image {
        width: 100%;
        max-width: 100%;
        height: 500px;
        border-radius: 10px;
    }

    .mobile-menu-toggle {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Ensure Sailec font is applied to all elements */
    * {
        font-family: 'Sailec', sans-serif !important;
    }
    
    /* Preserve specific font families for headings and titles */
    .greeting, .project-title, .section-heading h3, .section-title, .logo h1 {
        font-family: 'SailecBold', sans-serif !important;
    }
    
    .body-wrapper {
        flex-direction: column;
    }
    
    .nav-sidebar {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-content {
        margin-left: 0;
        width: 100%;
        padding: 40px 20px;
        gap: 60px;
    }
    
    .about-section {
        padding-top: 60px;
        padding-right: 0;
    }
    
    .profile-image-container {
        display: block;
        padding-bottom: 100px;
        padding-left: 20px;
    }
    
    .underline {
        width: 100%;
        max-width: 100%;
    }
    
    .work-section .divider {
        max-width: 100%;
    }
    
    .work-section {
        gap: 60px;
    }
    
    .project-header {
        gap: 15px;
    }
    
    .project-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    /* Standardized font sizes for mobile */
    .greeting, .project-title {
        font-size: 22px;
        font-family: 'SailecBold', sans-serif;
        line-height: 1.2;
    }
    
    .bio, .section-heading h3, .nav-links a, .section-title, .project-description, .project-text {
        font-size: 16px;
        line-height: 24px;
        font-family: 'Sailec', sans-serif;
    }
    
    .project-image {
        width: 100%;
        max-width: 100%;
        height: 440px;
        border-radius: 8px;
    }
    
    .placeholder-image {
        height: 400px;
    }
    
    .content-text {
        max-width: 100%;
    }
    
    .project-description {
        max-width: 100%;
    }
    
    .project-text {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    /* Ensure Sailec font is applied to all elements */
    * {
        font-family: 'Sailec', sans-serif !important;
    }
    
    /* Preserve specific font families for headings and titles */
    .greeting, .project-title, .section-heading h3, .section-title, .logo h1 {
        font-family: 'SailecBold', sans-serif !important;
    }
    
    .nav-sidebar {
        padding: 15px;
        gap: 20px;
    }
    
    .main-content {
        padding: 30px 15px;
        gap: 40px;
    }
    
    .about-section {
        padding-top: 40px;
    }
    
    /* Standardized font sizes for small mobile */
    .greeting, .project-title {
        font-size: 20px;
        font-family: 'SailecBold', sans-serif;
        line-height: 1.2;
    }
    
    .bio, .section-heading h3, .nav-links a, .section-title, .project-description, .project-text {
        font-size: 16px;
        line-height: 22px;
        font-family: 'Sailec', sans-serif;
    }
    
    .work-section {
        gap: 40px;
    }
    
    .project-header {
        gap: 12px;
    }
    
    .project-image {
        width: 100%;
        max-width: 100%;
        height: 340px;
        border-radius: 6px;
    }
    
    .placeholder-image {
        height: 320px;
    }
    
    .project-link {
        gap: 8px;
    }
    
    .arrow-icon {
        width: 20px;
        height: 20px;
    }
    
    .logo h1 {
        font-size: 20px;
        font-family: 'SailecBold', sans-serif;
    }
    
    .nav-section {
        gap: 20px;
    }
    
    .nav-links li {
        margin-bottom: 20px;
    }
}

@media (max-width: 360px) {
    /* Ensure Sailec font is applied to all elements */
    * {
        font-family: 'Sailec', sans-serif !important;
    }
    
    /* Preserve specific font families for headings and titles */
    .greeting, .project-title, .section-heading h3, .section-title, .logo h1 {
        font-family: 'SailecBold', sans-serif !important;
    }
    
    .main-content {
        padding: 20px 10px;
        gap: 30px;
    }
    
    .nav-sidebar {
        padding: 10px;
        gap: 15px;
    }
    
    /* Standardized font sizes for extra small mobile */
    .greeting, .project-title {
        font-size: 18px;
        font-family: 'SailecBold', sans-serif;
        line-height: 1.2;
    }
    
    .bio, .section-heading h3, .nav-links a, .section-title, .project-description, .project-text {
        font-size: 16px;
        line-height: 20px;
        font-family: 'Sailec', sans-serif;
    }
    
    .work-section {
        gap: 30px;
    }
    
    .project-image {
        width: 100%;
        max-width: 100%;
        height: 290px;
        border-radius: 4px;
    }
    
    .placeholder-image {
        height: 260px;
    }
}

/* ChipperCash Page Styles */
.work-section {
    display: flex;
    flex-direction: column;
    gap: 80px;
    width: 100%;
}

.project-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.project-title-row {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    gap: 20px;
}

.project-title {
    font-family: 'SailecBold', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 30.6px;
    color: #e1f3fd;
    letter-spacing: 0.18px;
    margin: 0;
}

.project-period {
    font-family: 'Sailec', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 27.2px;
    color: #3daed1;
    letter-spacing: 0.16px;
}

.project-description {
    font-family: 'Sailec', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 27.2px;
    color: #e1f3fd;
    letter-spacing: 0.16px;
    margin: 0;
    width: 100%;
    max-width: 842px;
}

.project-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.project-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.project-heading h3 {
    font-family: 'SailecBold', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 27.2px;
    color: #e1f3fd;
    letter-spacing: 0.16px;
    margin: 0;
}

.project-image {
    width: 100%;
    max-width: 847px;
    height: 662px;
    border-radius: 10px;
    overflow: hidden;
}

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

.placeholder-image {
    background-color: #d9d9d9;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 600px;
}

.placeholder-content {
    color: #666;
    font-size: 18px;
    font-weight: 700;
    font-family: 'SailecBold', sans-serif;
}

.project-text {
    font-family: 'Sailec', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 27.2px;
    color: #e1f3fd;
    letter-spacing: 0.16px;
    width: 100%;
    max-width: 847px;
}

.project-text p {
    margin: 0 0 16px 0;
}

.project-text p:last-child {
    margin-bottom: 0;
}

.project-link {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    transition: transform 0.3s ease;
}

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

.link-text {
    font-family: 'Sailec', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    color: #72d5f9;
    text-decoration: none;
    letter-spacing: 0.16px;
    transition: color 0.3s ease;
}

.link-text:hover {
    color: #3daed1;
}

/* Billions link styling to match link-text */
.billions-link {
    font-family: 'Sailec', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    color: #72d5f9;
    text-decoration: none;
    letter-spacing: 0.16px;
    transition: color 0.3s ease;
}

.billions-link:hover {
    color: #3daed1;
}

.arrow-icon {
    width: 24px;
    height: 24px;
}

/* Navigation Active State */
.nav-active {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.active-link {
    font-family: 'Sailec', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 27.2px;
    color: #72d5f9 !important;
    text-decoration: none;
    letter-spacing: 0.16px;
    position: relative;
    transition: all 0.3s ease;
}



/* Enhanced hover effects for active links */
.active-link:hover {
    color: #3daed1 !important;
}



/* Enhanced hover effects for regular nav links */
.nav-links a:hover {
    color: #3daed1;
    transition: all 0.3s ease;
}

/* Smooth transitions for all navigation elements */
.nav-links a,
.mobile-nav-section a,
.nav-active,
.active-link {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Active state for mobile navigation */
.mobile-nav-active a {
    color: #72d5f9;
    font-weight: 600;
    position: relative;
}



/* Enhanced mobile navigation hover effects */
.mobile-nav-section a:hover {
    color: #3daed1;
}



/* Additional pseudo-classes for better visual feedback */
.nav-links a:active,
.mobile-nav-section a:active {
    transition: transform 0.1s ease;
}

/* Smooth appearance animation for active states */
.nav-active::before {
    animation: fadeInSlide 0.3s ease-out;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Enhanced active indicator with glow effect */
.nav-active::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, #72d5f9 0%, #3daed1 100%);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(114, 213, 249, 0.4);
    animation: activeGlow 2s ease-in-out infinite alternate;
}

@keyframes activeGlow {
    from {
        box-shadow: 0 0 8px rgba(114, 213, 249, 0.4);
    }
    to {
        box-shadow: 0 0 16px rgba(114, 213, 249, 0.6), 0 0 24px rgba(114, 213, 249, 0.3);
    }
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    /* Ensure Sailec font is applied to all mobile elements */
    * {
        font-family: 'Sailec', sans-serif !important;
    }
    
    /* Preserve specific font families for headings and titles */
    .greeting, .project-title, .section-heading h3, .section-title, .logo h1 {
        font-family: 'SailecBold', sans-serif !important;
    }
    
    /* Additional font consistency for mobile */
    html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, li, ul, ol, button, input, textarea, select, label {
        font-family: 'Sailec', sans-serif !important;
    }
    
    .mobile-menu-toggle {
        display: block; /* Hidden by default, shown only on mobile/tablet */
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1001;
        cursor: pointer;
        background-color: rgba(30, 96, 117, 0.6);
        padding: 12px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(30, 96, 117, 0.3);
    }

    .hamburger-icon {
        width: 30px;
        height: 24px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .hamburger-icon span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #e1f3fd;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .mobile-nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(4, 29, 37, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1002;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mobile-nav-overlay.active {
        display: flex;
        opacity: 1;
        visibility: visible;
    }
    
    /* Ensure mobile navigation is always accessible */
    .mobile-nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(4, 29, 37, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1002;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .mobile-nav-content {
        width: 100%;
        height: 100%;
        padding: 40px 20px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
        padding-top: 80px;
    }

    .mobile-nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 400px;
        margin-bottom: 60px;
        align-self: flex-start;
        position: relative;
        z-index: 1003;
    }

    .mobile-nav-header h1 {
        font-family: 'SailecBold', sans-serif !important;
        font-size: 28px;
        font-weight: 700;
        margin: 0;
        color: #e1f3fd;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .mobile-nav-header h1 a {
        font-family: 'SailecBold', sans-serif !important;
        color: #e1f3fd !important;
        text-decoration: none;
        font-weight: 700;
        text-shadow: 0 2px 4px rgba(0, 0, 0.3);
    }

    .close-menu {
        background: none;
        border: none;
        color: #e1f3fd;
        font-family: 'Sailec', sans-serif;
        font-size: 32px;
        cursor: pointer;
        padding: 0;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: color 0.3s ease;
    }

    .close-menu:hover {
        color: #3daed1;
    }

    .mobile-nav-section {
        margin-bottom: 40px;
        width: 100%;
        max-width: 400px;
        align-self: flex-start;
    }

    .mobile-nav-section h3 {
        font-family: 'SailecBold', sans-serif;
        color: #1e6075;
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .mobile-nav-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-nav-section li {
        margin-bottom: 15px;
    }

    .mobile-nav-section a {
        font-family: 'Sailec', sans-serif;
        color: #e1f3fd;
        text-decoration: none;
        font-size: 18px;
        font-weight: 400;
        transition: color 0.3s ease;
        display: block;
        padding: 10px 0;
    }

    .mobile-nav-section a:hover {
        color: #3daed1;
    }

    /* Hamburger Animation */
    .mobile-menu-toggle.active .hamburger-icon span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active .hamburger-icon span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
} 