@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #17b2a6;
    --primary-dark: #129087;
    --secondary: #ff9f43;
    --secondary-hover: #ff8c1a;
    --success: #8cc34b;
    --success-hover: #7ab03c;
    --text-dark: #2d3436;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary);
    color: var(--text-light);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Background Animated Blobs */
.blob {
    position: fixed;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
    animation: drift 10s infinite alternate ease-in-out;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.blob-2 {
    bottom: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(140, 195, 75, 0.3);
    border-radius: 50%;
    animation-duration: 15s;
    animation-delay: 2s;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

/* Glassmorphism Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(23, 178, 166, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    padding: 15px 5%;
    background: rgba(18, 144, 135, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
    transition: transform 0.3s ease;
}

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

.logo-icon {
    width: 34px;
    height: 34px;
    background: white;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 17px;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
}

/* Animated Underline Hover Effect */
.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a:hover {
    color: #f1f2f6;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

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

.user-greeting {
    color: white;
    font-weight: 600;
    margin-right: 15px;
}

.logout-btn {
    background: rgba(231, 76, 60, 0.2); 
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.logout-btn span {
    color: #ff7675;
}

.mobile-actions {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hamburger Menu Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    display: block;
    width: 28px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease;
    background-color: white;
    border-radius: 2px;
}

/* Mobile Responsive Adjustments */
@media screen and (max-width: 992px) {
    .navbar {
        padding: 15px 5% !important;
        height: 70px;
    }

    .menu-toggle {
        display: block !important;
        position: relative;
        z-index: 10001;
    }

    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .nav-links {
        position: fixed !important;
        left: -100% !important;
        top: 0 !important;
        flex-direction: column !important;
        background: rgba(18, 144, 135, 0.98) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        width: 100% !important;
        height: 100vh !important;
        text-align: center !important;
        transition: all 0.3s ease !important;
        padding-top: 100px !important;
        z-index: 10000 !important;
        gap: 30px !important;
        display: flex !important;
    }

    /* CSS Only Toggle */
    #nav-toggle:checked ~ .nav-links {
        left: 0 !important;
    }

    #nav-toggle:checked ~ .menu-toggle .bar:nth-child(2) { opacity: 0; }
    #nav-toggle:checked ~ .menu-toggle .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    #nav-toggle:checked ~ .menu-toggle .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .nav-links li a {
        font-size: 22px !important;
        display: block;
        padding: 10px;
    }

    .nav-actions {
        display: none !important;
    }

    .mobile-actions {
        display: flex !important;
        padding: 20px 10%;
        margin-top: 20px;
    }

    .logo {
        font-size: 20px !important;
        z-index: 10001 !important;
    }
}

.btn {
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Button Glow & Lift on Hover */
.btn-login {
    background-color: var(--success);
    color: white;
    box-shadow: 0 4px 15px rgba(140, 195, 75, 0.4);
}

.btn-login:hover {
    background-color: var(--success-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(140, 195, 75, 0.6);
}

.btn-register {
    background-color: var(--secondary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 159, 67, 0.4);
}

.btn-register:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 159, 67, 0.6);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Ripple Effect for Buttons */
.btn::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    opacity: 0;
    transition: transform 0.5s, opacity 0.5s;
}

.btn:active::after {
    transform: scale(3);
    opacity: 1;
    transition: 0s;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 140px 5% 100px; /* Increased top padding for fixed navbar */
    min-height: 100vh;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    animation: slideInLeft 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.hero-subtitle {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInDown 0.8s ease-out;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Gradient Text Effect */
.highlight-text {
    background: linear-gradient(135deg, #fff, #e0f7fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 520px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-buttons .btn {
    padding: 16px 36px;
    font-size: 16px;
    border-radius: 50px; 
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    animation: slideInRight 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 650px;
    border-radius: 20px;
    /* Soft glowing shadow for 3D effect */
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.25));
    animation: floatComplex 8s ease-in-out infinite;
    transform-origin: center center;
}

/* Vacancy Section */
.vacancies-section {
    padding: 120px 5%;
    background-color: #ffffff;
    color: var(--text-dark);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 18px;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.section-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 25px auto 0;
    border-radius: 10px;
}

.vacancy-search-bar {
    max-width: 800px;
    margin: -30px auto 60px;
    background: white;
    padding: 10px;
    border-radius: 50px;
    display: flex;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    position: relative;
    z-index: 20;
}

.vacancy-search-bar input {
    flex: 1;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    outline: none;
    font-size: 16px;
}

.btn-search {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-search:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.vacancy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.vacancy-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.vacancy-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(23, 178, 166, 0.12);
    border-color: var(--primary);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.company-logo {
    width: 60px;
    height: 60px;
    background: #f8fbfb;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    border: 1px solid #f0f0f0;
}

.vacancy-badge {
    padding: 8px 16px;
    background: rgba(23, 178, 166, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

.vacancy-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #1a1a1a;
    line-height: 1.3;
}

.department-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vacancy-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.tag {
    font-size: 12px;
    color: #555;
    background: #f1f4f4;
    padding: 6px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.vacancy-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.vacancy-footer {
    margin-top: auto;
    padding-top: 25px;
    border-top: 1px dashed #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vacancy-salary {
    font-weight: 800;
    color: var(--primary);
    font-size: 18px;
}

.btn-view {
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 12px;
    background: #f8fbfb;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 1px solid rgba(23, 178, 166, 0.2);
}

.vacancy-card:hover .btn-view {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.view-all-container {
    text-align: center;
    margin-top: 60px;
}

.btn-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--text-dark);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-all:hover {
    background: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(23, 178, 166, 0.3);
}

/* Process Section */
.process-section {
    padding: 120px 5%;
    background: linear-gradient(180deg, #f8fbfb 0%, #e0f2f1 100%);
    position: relative;
    overflow: hidden;
}

/* Background Decoration for Section */
.process-section::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(23, 178, 166, 0.05);
    border-radius: 50%;
    filter: blur(50px);
}

.process-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

/* Vertical Line - More Vibrant */
.process-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: linear-gradient(to bottom, 
        #17b2a6 0%, 
        #ff9f43 25%, 
        #f5576c 50%, 
        #8cc34b 75%, 
        #17b2a6 100%
    );
    transform: translateX(-50%);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(23, 178, 166, 0.2);
}

.process-step {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
    position: relative;
    width: 100%;
}

.process-content {
    width: 42%;
    padding: 35px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.process-content:hover {
    transform: scale(1.05);
    background: #ffffff;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.process-step:nth-child(odd) .process-content {
    margin-right: auto;
    text-align: right;
}

.process-step:nth-child(even) .process-content {
    margin-left: auto;
    text-align: left;
}

.process-icon {
    width: 85px;
    height: 85px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    font-size: 32px;
    border: 6px solid #fff;
    transition: all 0.3s ease;
}

.process-step:hover .process-icon {
    transform: translateX(-50%) scale(1.1) rotate(10deg);
    box-shadow: 0 12px 30px rgba(23, 178, 166, 0.3);
}

.step-number {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: white;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-1 .step-number { background: linear-gradient(135deg, #00d2ff, #3a7bd5); }
.step-2 .step-number { background: linear-gradient(135deg, #6a11cb, #2575fc); }
.step-3 .step-number { background: linear-gradient(135deg, #f093fb, #f5576c); }
.step-4 .step-number { background: linear-gradient(135deg, #f9d423, #ff4e50); }
.step-5 .step-number { background: linear-gradient(135deg, #4facfe, #00f2fe); }

.process-content h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.process-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Mobile Adjustments for Process */
@media (max-width: 768px) {
    .process-container::before {
        left: 30px;
    }
    .process-icon {
        left: 30px;
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    .process-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        text-align: left !important;
    }
}

/* Vacancy Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 46, 45, 0.6); /* Semi-transparent dark teal */
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    background: white;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 30px;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-header {
    padding: 40px;
    background: linear-gradient(135deg, #f8fbfb 0%, #e0f2f1 100%);
    border-bottom: 1px solid #eee;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.modal-body {
    padding: 40px;
}

.modal-job-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.modal-dept {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
}

.detail-section {
    margin-bottom: 30px;
}

.detail-section h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-list {
    list-style: none;
}

.detail-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    color: #555;
    line-height: 1.6;
}

.detail-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.modal-footer {
    padding: 30px 40px;
    background: #f9f9f9;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

/* Candidate Dashboard Styles */
.dashboard-body {
    background: linear-gradient(135deg, #e0f2f1 0%, #ffffff 50%, #f0f4f4 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    position: relative;
    overflow-x: hidden;
}

.dashboard-body::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(23, 178, 166, 0.05);
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
}

.dashboard-wrapper {
    display: flex;
    width: 100%;
    max-width: 1300px;
    margin: 20px auto;
    gap: 30px;
    padding: 0 25px;
    position: relative;
    z-index: 10;
}

/* Sidebar - More Professional & Not Pale */
.sidebar {
    width: 320px;
    flex-shrink: 0;
}

.profile-card-mini {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    margin-bottom: 25px;
}

.avatar-upload {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 20px;
}

.avatar-upload img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 10px 25px rgba(23, 178, 166, 0.2);
}

.sidebar-name {
    font-size: 22px;
    font-weight: 800;
    color: #0b2e2d;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.sidebar-menu {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    padding: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
}

.menu-item a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 20px;
    color: #546e7a;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border-radius: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-item.active a {
    background: var(--primary);
    color: white;
    box-shadow: 0 8px 20px rgba(23, 178, 166, 0.3);
}

.menu-item a:hover:not(.active a) {
    background: rgba(23, 178, 166, 0.08);
    color: var(--primary);
    transform: translateX(5px);
}

/* Main Content Area */
.dashboard-content {
    flex: 1;
}

.content-card {
    background: white;
    border-radius: 32px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.04);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.card-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 25px;
}

.card-title {
    font-size: 26px;
    font-weight: 800;
    color: #0b2e2d;
    position: relative;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: -27px;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--primary);
    border-radius: 10px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 50px;
}

.info-item {
    padding: 15px 20px;
    background: #fbfcfc;
    border-radius: 16px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: #f1f8f7;
    border-left-color: var(--primary);
    transform: translateY(-2px);
}

.info-label {
    font-size: 12px;
    color: #90a4ae;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.info-value {
    font-size: 16px;
    color: #263238;
    font-weight: 700;
}

.btn-edit-profile {
    background: var(--primary);
    color: white;
    padding: 12px 28px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(23, 178, 166, 0.2);
}

.btn-edit-profile:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(23, 178, 166, 0.3);
}

/* Animations */
@keyframes floatComplex {
    0% { transform: translateY(0px) rotate(0deg) scale(1); }
    33% { transform: translateY(-20px) rotate(1deg) scale(1.02); }
    66% { transform: translateY(-10px) rotate(-1deg) scale(0.98); }
    100% { transform: translateY(0px) rotate(0deg) scale(1); }
}

@keyframes slideInLeft {
    0% { transform: translateX(-50px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    0% { transform: translateX(50px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes fadeInDown {
    0% { transform: translateY(-20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Footer Styles */
.footer {
    background-color: #0b2e2d; /* Very dark teal for contrast */
    padding: 80px 5% 20px;
    color: #e0f2f1;
    position: relative;
    z-index: 10;
}

/* Dashboard Footer Alignment Fix */
.dashboard-body .footer {
    padding-left: 25px;
    padding-right: 25px;
}

.dashboard-body .footer-container {
    max-width: 1300px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 25px;
    margin-bottom: 60px;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 24px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

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

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #b2dfdb;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #b2dfdb;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.2);
    color: white;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    border-color: var(--primary);
    background: rgba(0,0,0,0.4);
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.4);
}

.btn-subscribe {
    background: var(--primary);
    color: white;
    padding: 12px 20px;
}

.btn-subscribe:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #80cbc4;
}

/* Responsive */
@media (max-width: 1100px) {
    .hero-title {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .navbar {
        flex-wrap: wrap;
        padding: 15px 5%;
    }
    
    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 15px;
        gap: 20px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 130px;
    }
    
    .hero-content {
        margin-bottom: 60px;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-description {
        margin: 0 auto 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        justify-content: center;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    /* Dashboard Responsive Layout */
    .dashboard-wrapper {
        flex-direction: column;
        padding: 0 15px;
    }
    
    .sidebar {
        width: 100%;
        position: static !important;
        height: auto !important;
    }
    
    .content-card {
        padding: 30px 20px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    .nav-links {
        flex-direction: column;
        gap: 15px;
        display: none; /* Can be toggled via JS in a real app */
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}
