/* Custom Fonts */
@font-face {
    font-family: 'Ethnocentric';
    src: url('fonts/ethnocentricrg.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ethnocentric';
    src: url('fonts/ethnocentricrgit.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background: radial-gradient(circle at center, #1A2A40 0%, #0A1020 80%);
    color: #FFFFFF;
    min-height: 100vh;
}

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

/* Navigation */
.navbar {
    background: rgba(10, 16, 32, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #1C2A40;
}

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

/* Navigation Links - Centered on Top */
.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    justify-content: center;
    width: 100%;
    margin-bottom: 1rem;
    order: 1;
}

.nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
}

.nav-links a:hover {
    color: #4A6C9E;
}

/* Hamburger Menu Icon */
.menu-icon {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #FFFFFF;
    z-index: 1001;
    position: absolute;
    right: 20px;
    top: 10px;
}

/* Full Width Logo Underneath Nav */
.logo-fullwidth {
    width: 100%;
    display: flex;
    justify-content: center;
    order: 2;
    padding: 1rem 0;
}

.logo-fullwidth img {
    max-width: 900px;
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 100px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 100px);
        background: rgba(10, 16, 32, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 3rem 0;
        gap: 2rem;
        transition: left 0.3s ease;
        z-index: 1000;
        border-top: 2px solid #1C2A40;
        margin-bottom: 0;
        order: 2;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem;
        font-size: 1.2rem;
        border-bottom: 1px solid rgba(28, 42, 64, 0.5);
        width: 80%;
        margin: 0 auto;
    }
    
    .nav-links a:hover {
        background: rgba(28, 42, 64, 0.5);
    }
    
    /* Logo on mobile */
    .logo-fullwidth {
        order: 1;
        margin-bottom: 0;
        padding: 0.5rem 0;
    }
    
    .logo-fullwidth img {
        max-width: 350px;
        max-height: 120px;
    }
    
    .nav-container {
        flex-direction: column;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .logo-fullwidth img {
        max-width: 280px;
        max-height: 100px;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, #0A1020 100%);
    opacity: 0.8;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 800px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    color: #E0E8F0;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: transparent;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid #1C2A40;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
}

.cta-button:hover {
    background: #1C2A40;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(28, 42, 64, 0.3);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: transparent;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
    font-weight: bold;
}

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

.service-card {
    background: rgba(14, 21, 40, 0.8);
    backdrop-filter: blur(5px);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
    border: 1px solid rgba(28, 42, 64, 0.8);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(18, 27, 48, 0.9);
    border-color: #2A3F60;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #FFFFFF;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
    font-weight: bold;
}

.service-card p {
    color: #B0C0D0;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
}

/* Trust Bar */
.trust-bar {
    padding: 3rem 0;
    background: rgba(10, 16, 32, 0.8);
    backdrop-filter: blur(5px);
    border-top: 2px solid #1C2A40;
    border-bottom: 2px solid #1C2A40;
    overflow: hidden;
    width: 100%;
}

.trust-bar h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #FFFFFF;
    font-size: 1.8rem;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
    font-weight: bold;
    padding: 0 1rem;
}

/* Infinite Scroll Container */
.logo-scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-scroll {
    display: flex;
    gap: 3rem;
    padding: 1rem 0;
    animation: scrollLogos 20s linear infinite;
    width: max-content;
}

/* Duplicate content for seamless loop */
.logo-scroll::after {
    content: '';
    display: flex;
    gap: 3rem;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-scroll:hover {
    animation-play-state: paused;
}

.client-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 100px;
    background: rgba(14, 21, 40, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid #1C2A40;
    flex-shrink: 0;
}

.client-logo span {
    color: #FFFFFF;
    font-weight: bold;
    font-size: 1.1rem;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
    text-align: center;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

/* Gallery Section */
.project-gallery {
    padding: 5rem 0;
    background: transparent;
}

.project-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
    font-weight: bold;
    padding: 0 1rem;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background: transparent;
    border: 2px solid #1C2A40;
    color: #FFFFFF;
    cursor: pointer;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
}

.filter-btn.active,
.filter-btn:hover {
    background: #1C2A40;
    color: #FFFFFF;
    border-color: #2A3F60;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 16/9;
    cursor: pointer;
    border: 1px solid #1C2A40;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: linear-gradient(to top, #0A1020, transparent);
    color: #FFFFFF;
    padding: 1rem;
    transition: bottom 0.3s;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
    font-weight: bold;
}

.gallery-item:hover .overlay {
    bottom: 0;
}

/* About Page */
.about-hero {
    margin-top: 80px;
    padding: 80px 0 60px;
    background: radial-gradient(circle at center, #1A2A40 0%, #0A1020 100%);
    text-align: center;
    border-bottom: 2px solid #1C2A40;
}

.about-hero h1 {
    font-size: 3.5rem;
    color: #FFFFFF;
    margin-bottom: 10px;
    letter-spacing: 3px;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
    font-weight: bold;
    padding: 0 1rem;
}

.about-hero h2 {
    font-size: 2rem;
    color: #4A6C9E;
    font-weight: normal;
    letter-spacing: 2px;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
    padding: 0 1rem;
}

.about-content {
    padding: 60px 0;
    background: transparent;
}

.about-text-box {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 40px 20px;
    background: rgba(14, 21, 40, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    border: 1px solid #1C2A40;
}

.about-text-box h3 {
    color: #4A6C9E;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
    font-weight: bold;
    word-wrap: break-word;
}

.about-text-box p {
    color: #D0E0F0;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
    word-wrap: break-word;
}

.about-text-box .highlight-text {
    color: #FFFFFF;
    font-size: 1.2rem;
    border-left: 4px solid #4A6C9E;
    padding-left: 20px;
    margin-top: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.stat-card {
    background: rgba(14, 21, 40, 0.8);
    backdrop-filter: blur(5px);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #1C2A40;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: #2A3F60;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: #4A6C9E;
    margin-bottom: 10px;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
}

.stat-label {
    color: #FFFFFF;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
}

/* Timeline Section */
.timeline-section {
    padding: 60px 0;
    background: transparent;
}

.timeline-section h3 {
    text-align: center;
    color: #FFFFFF;
    font-size: 2rem;
    margin-bottom: 50px;
    letter-spacing: 2px;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
    font-weight: bold;
    padding: 0 1rem;
}

.timeline {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.timeline-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
    background: rgba(14, 21, 40, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    border: 1px solid #1C2A40;
}

.timeline-item .year {
    font-size: 1.8rem;
    font-weight: bold;
    color: #4A6C9E;
    margin-bottom: 10px;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
}

.timeline-item .description {
    color: #D0E0F0;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
    word-wrap: break-word;
}

/* CONTACT PAGE */
.contact-section {
    padding: 5rem 0;
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    background: transparent;
}

.contact-section h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
    font-weight: bold;
    padding: 0 1rem;
}

.contact-section > .container > p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    color: #B0C0D0;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
    padding: 0 1rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-form {
    background: rgba(14, 21, 40, 0.8);
    backdrop-filter: blur(5px);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #1C2A40;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    font-weight: bold;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(18, 27, 48, 0.8);
    border: 1px solid #1C2A40;
    border-radius: 5px;
    color: #FFFFFF;
    font-size: 1rem;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2A3F60;
    background: rgba(22, 34, 56, 0.9);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #8A9BB0;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
}

.captcha-box {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.captcha-box span {
    background: rgba(18, 27, 48, 0.8);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #FFFFFF;
    border: 1px solid #1C2A40;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
}

.captcha-box input {
    flex: 1;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #1C2A40;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
}

.submit-btn:hover {
    background: #1C2A40;
    transform: translateY(-2px);
}

.contact-info {
    background: rgba(14, 21, 40, 0.8);
    backdrop-filter: blur(5px);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #1C2A40;
}

.contact-info h3 {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
    font-weight: bold;
}

/* Contact Person Styles */
.contact-person {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #1C2A40;
}

.contact-person h4 {
    color: #4A6C9E;
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    font-weight: bold;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
    word-wrap: break-word;
}

.contact-person .person-title {
    color: #B0C0D0;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
    word-wrap: break-word;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.2rem;
}

.contact-detail .contact-icon {
    font-size: 1.5rem;
    min-width: 40px;
    text-align: center;
}

.contact-detail a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1rem;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
    word-break: break-word;
}

.contact-detail a:hover {
    color: #4A6C9E;
}

.contact-detail strong {
    color: #4A6C9E;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.2rem;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
}

.contact-info p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #B0C0D0;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
    word-wrap: break-word;
}

.contact-info strong {
    color: #FFFFFF;
}

.office-hours {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #1C2A40;
}

.office-hours h4 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
    font-weight: bold;
}

/* Address Section */
.address-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #1C2A40;
}

.address-section h4 {
    color: #4A6C9E;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
    font-weight: bold;
}

.address-section p {
    color: #B0C0D0;
    font-style: italic;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
    word-wrap: break-word;
}

/* LOGIN PAGE */
.login-container {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    margin-top: 80px;
    background: transparent;
}

.login-form {
    background: rgba(14, 21, 40, 0.8);
    backdrop-filter: blur(5px);
    border: 1px solid #1C2A40;
    border-radius: 10px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
}

.login-form h2 {
    color: #FFFFFF;
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
    font-weight: bold;
    word-wrap: break-word;
}

.login-form .form-group {
    margin-bottom: 1.5rem;
}

.login-form label {
    color: #FFFFFF;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
}

.login-form input {
    width: 100%;
    padding: 0.8rem;
    background: rgba(18, 27, 48, 0.8);
    border: 1px solid #1C2A40;
    border-radius: 5px;
    color: #FFFFFF;
    font-size: 1rem;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
}

.login-form input:focus {
    outline: none;
    border-color: #2A3F60;
    background: rgba(22, 34, 56, 0.9);
}

.error-message {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid #FF6B6B;
    color: #FF6B6B;
    padding: 0.8rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    text-align: center;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
    word-wrap: break-word;
}

.login-btn {
    width: 100%;
    padding: 1rem;
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #1C2A40;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
}

.login-btn:hover {
    background: #1C2A40;
}

/* DASHBOARD */
.dashboard {
    margin-top: 80px;
    padding: 3rem 0;
    min-height: calc(100vh - 80px);
    background: transparent;
}

.dashboard h1 {
    color: #FFFFFF;
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
    font-weight: bold;
    padding: 0 1rem;
    word-wrap: break-word;
}

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

.dashboard-card {
    background: rgba(14, 21, 40, 0.8);
    backdrop-filter: blur(5px);
    border: 1px solid #1C2A40;
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.3s;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    border-color: #2A3F60;
}

.dashboard-card h3 {
    color: #4A6C9E;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    word-wrap: break-word;
}

.dashboard-card input,
.dashboard-card select {
    width: 100%;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(18, 27, 48, 0.8);
    border: 1px solid #1C2A40;
    border-radius: 5px;
    color: #FFFFFF;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
}

.dashboard-card input:focus,
.dashboard-card select:focus {
    outline: none;
    border-color: #2A3F60;
    background: rgba(22, 34, 56, 0.9);
}

.dashboard-card input::placeholder {
    color: #8A9BB0;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
}

.dashboard-card .btn {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.8rem;
    background: transparent;
    color: #FFFFFF;
    font-weight: bold;
    cursor: pointer;
    border: 2px solid #1C2A40;
    border-radius: 5px;
    transition: all 0.3s;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
}

.dashboard-card .btn:hover {
    background: #1C2A40;
    transform: translateY(-2px);
}

/* Password Requirements */
.password-requirements {
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: rgba(18, 27, 48, 0.5);
    border-radius: 5px;
    border-left: 3px solid #4A6C9E;
}

.password-requirements small {
    color: #B0C0D0;
    font-size: 0.8rem;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
    word-wrap: break-word;
}

/* Account Info */
.account-info {
    padding: 0.5rem 0;
}

.account-info p {
    margin-bottom: 0.8rem;
    padding: 0.8rem;
    background: rgba(18, 27, 48, 0.3);
    border-radius: 5px;
    color: #FFFFFF;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.account-info p strong {
    color: #4A6C9E;
    display: inline-block;
    min-width: 100px;
    margin-right: 10px;
}

/* Album List */
.album-list {
    max-height: 300px;
    overflow-y: auto;
}

.album-item {
    padding: 0.8rem;
    border-bottom: 1px solid #1C2A40;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.album-item:hover {
    background: rgba(18, 27, 48, 0.5);
}

.album-item a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
    word-break: break-word;
    max-width: 70%;
}

.album-item a:hover {
    color: #4A6C9E;
}

.album-item small {
    color: #8A9BB0;
    font-size: 0.8rem;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
}

.no-albums {
    color: #B0C0D0;
    text-align: center;
    padding: 1rem;
    font-style: italic;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
}

/* Alert Messages */
.alert {
    padding: 1rem;
    margin: 100px auto 1rem;
    max-width: 1200px;
    border-radius: 5px;
    text-align: center;
    position: relative;
    z-index: 99;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
    word-wrap: break-word;
    margin-left: 1rem;
    margin-right: 1rem;
}

.alert.success {
    background: rgba(14, 21, 40, 0.8);
    backdrop-filter: blur(5px);
    border: 2px solid #1C2A40;
    color: #FFFFFF;
}

.alert.error {
    background: rgba(14, 21, 40, 0.8);
    backdrop-filter: blur(5px);
    border: 2px solid #FF6B6B;
    color: #FF6B6B;
}

/* Footer */
footer {
    background: rgba(10, 16, 32, 0.8);
    backdrop-filter: blur(5px);
    padding: 2rem 1rem;
    text-align: center;
    border-top: 2px solid #1C2A40;
}

footer p {
    color: #8A9BB0;
    font-family: 'Ethnocentric', Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
    word-wrap: break-word;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
        padding: 0 1rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .timeline {
        flex-direction: column;
    }
    
    .timeline-item {
        width: 100%;
    }
    
    .account-info p {
        font-size: 0.8rem;
    }
    
    .account-info p strong {
        min-width: 80px;
        display: block;
        margin-bottom: 0.3rem;
    }
    
    .album-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .album-item a {
        max-width: 100%;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .filter-btn {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    
    .services h2 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .trust-bar h3 {
        font-size: 1.3rem;
    }
    
    .client-logo {
        min-width: 140px;
        height: 80px;
    }
    
    .client-logo span {
        font-size: 0.9rem;
    }
    
    .project-gallery h2 {
        font-size: 2rem;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-hero h2 {
        font-size: 1.3rem;
    }
    
    .about-text-box h3 {
        font-size: 1.5rem;
    }
    
    .about-text-box p {
        font-size: 0.95rem;
    }
    
    .dashboard-card {
        padding: 1rem;
    }
    
    .dashboard-card h3 {
        font-size: 1rem;
    }
    
    .dashboard-card input,
    .dashboard-card select,
    .dashboard-card .btn {
        font-size: 0.8rem;
        padding: 0.6rem;
    }
    
    .contact-section h1 {
        font-size: 2rem;
    }
    
    .contact-detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .contact-detail .contact-icon {
        min-width: auto;
    }
    
    .captcha-box {
        flex-direction: column;
        align-items: stretch;
    }
    
    .captcha-box span {
        text-align: center;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #0A1020;
}

::-webkit-scrollbar-thumb {
    background: #1C2A40;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2A3F60;
}