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

:root {
    --bg-dark: #0a0b10;
    --bg-card: rgba(20, 22, 37, 0.45);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(138, 43, 226, 0.2);
    
    --primary-color: #8b5cf6;
    --primary-glow: rgba(139, 92, 246, 0.5);
    --secondary-color: #06b6d4;
    --secondary-glow: rgba(6, 182, 212, 0.5);
    --accent-magenta: #ec4899;
    
    --text-primary: #f3f4f6;
    --text-muted: #9ca3af;
    --text-highlight: #ffffff;
    
    --nav-height: 80px;
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--bg-dark);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background Glowing Blobs */
body::before, body::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    z-index: -10;
    filter: blur(140px);
    opacity: 0.15;
    pointer-events: none;
}

body::before {
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    animation: float-blob 25s infinite alternate ease-in-out;
}

body::after {
    bottom: -10%;
    right: -10%;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
    animation: float-blob 20s infinite alternate-reverse ease-in-out;
}

@keyframes float-blob {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(100px, 80px) scale(1.1); }
    100% { transform: translate(-50px, -50px) scale(0.9); }
}

/* Styling Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.3);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Navigation Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(10, 11, 16, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    transition: var(--transition-smooth);
}

header.scrolled {
    background: rgba(10, 11, 16, 0.9);
    height: 70px;
    border-bottom-color: rgba(139, 92, 246, 0.2);
    box-shadow: 0 10px 30px -15px rgba(0,0,0,0.5);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 46px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
    /* Invert colors to shift white background to black, then rotate hue to match cyan/purple theme */
    filter: invert(1) hue-rotate(195deg) brightness(1.3) contrast(1.1) drop-shadow(0 2px 10px rgba(6, 182, 212, 0.3));
    mix-blend-mode: screen;
}

header.scrolled .logo-img {
    height: 38px;
}

nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    position: relative;
    padding: 6px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    transition: var(--transition-fast);
    border-radius: 2px;
}

.nav-links a.active, .nav-links a:hover {
    color: var(--text-highlight);
}

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

.cta-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Glass Buttons */
.btn {
    padding: 10px 22px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #7c3aed);
    color: #fff;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.7);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--text-highlight);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
    color: var(--secondary-color);
}

/* Hamburger menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* Layout Main container */
main {
    margin-top: var(--nav-height);
    min-height: calc(100vh - var(--nav-height));
    position: relative;
}

/* Sections Transition */
section {
    padding: 80px 8% 100px;
    min-height: calc(100vh - var(--nav-height));
    display: none;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

section.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

/* Typography styles */
h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-highlight);
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #fff 40%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* Glassmorphism Containers */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: rgba(139, 92, 246, 0.25);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.7), 0 0 40px rgba(139, 92, 246, 0.05);
}

/* Hero Section */
.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero-left h1 {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.hero-left h1 span.gradient-text {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color), var(--accent-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-left p {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 540px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-highlight);
    background: linear-gradient(135deg, #fff 50%, var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Interactive Floating Cards inside Hero Right */
.hero-right {
    position: relative;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-card {
    position: absolute;
    width: 280px;
    padding: 24px;
    border-radius: var(--border-radius-md);
    background: rgba(20, 22, 37, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    animation: hover-float 6s infinite ease-in-out;
}

.glow-card-1 {
    top: 10%;
    left: 5%;
    border-left: 3px solid var(--primary-color);
}

.glow-card-2 {
    bottom: 10%;
    right: 5%;
    border-left: 3px solid var(--secondary-color);
    animation-delay: -3s;
}

@keyframes hover-float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.glow-card-2 .card-icon {
    background: rgba(6, 182, 212, 0.15);
    color: var(--secondary-color);
}

.card-title h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.card-title p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.card-body {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.card-tags {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.tag {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

.tag-highlight {
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-color);
}

/* About Us Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-left-img {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 450px;
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border-color);
}

.about-left-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
    transition: var(--transition-smooth);
}

.about-left-img:hover img {
    transform: scale(1.05);
    filter: brightness(0.9);
}

.img-overlay-card {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: rgba(10, 11, 16, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    padding: 20px 30px;
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    max-width: 260px;
}

.about-right h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-right p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.value-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.value-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--border-radius-sm);
    background: rgba(6, 182, 212, 0.1);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.95rem;
}

.value-text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.value-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 35px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-md);
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 20px var(--primary-glow);
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-fast);
    margin-top: auto;
}

.service-link:hover {
    color: var(--text-highlight);
    gap: 8px;
}

/* Interactive Details Modal overlay */
.overlay-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 11, 16, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.overlay-modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: #11121d;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 550px;
    padding: 40px;
    position: relative;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

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

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

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

.modal-icon {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.modal-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.modal-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.modal-features {
    list-style: none;
    margin-bottom: 30px;
}

.modal-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.modal-features li i {
    color: var(--secondary-color);
}

/* Multi-step Registration Wizard */
.wizard-container {
    max-width: 700px;
    margin: 0 auto;
}

.wizard-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.wizard-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.wizard-step-progress {
    position: absolute;
    top: 20px;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    z-index: 1;
    transition: var(--transition-smooth);
}

.step-indicator {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #11121d;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-muted);
    z-index: 2;
    transition: var(--transition-smooth);
    position: relative;
}

.step-indicator.active {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
}

.step-indicator.completed {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 15px var(--primary-glow);
}

.step-indicator span.label {
    position: absolute;
    bottom: -28px;
    white-space: nowrap;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.step-indicator.active span.label {
    color: var(--text-highlight);
}

/* Wizard Form Elements */
.wizard-form-panel {
    display: none;
}

.wizard-form-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group label span.required {
    color: var(--accent-magenta);
}

.form-control {
    background: rgba(10, 11, 16, 0.5);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    font-size: 0.95rem;
    color: var(--text-primary);
    outline: none;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.15);
    background: rgba(10, 11, 16, 0.8);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

/* Custom File Upload Styling */
.file-upload-wrapper {
    position: relative;
    width: 100%;
}

.file-upload-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(10, 11, 16, 0.4);
    border: 2px dashed var(--border-color);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
}

.file-upload-btn:hover {
    border-color: var(--secondary-color);
    background: rgba(6, 182, 212, 0.05);
}

.file-upload-btn i {
    font-size: 2rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.file-upload-btn:hover i {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-name {
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 500;
}

/* Error/Validation States */
.form-group.has-error .form-control {
    border-color: var(--accent-magenta);
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.15);
}

.error-msg {
    color: var(--accent-magenta);
    font-size: 0.8rem;
    margin-top: 6px;
    display: none;
}

.form-group.has-error .error-msg {
    display: block;
}

/* Navigation buttons in wizard */
.wizard-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* Contacts Section */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    background: rgba(6, 182, 212, 0.1);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-card-details h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.contact-card-details p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-btn:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-glow);
    transform: translateY(-2px);
}

/* Map placeholder inside Contact Info */
.map-placeholder {
    height: 200px;
    border-radius: var(--border-radius-md);
    background: linear-gradient(135deg, rgba(20, 22, 37, 0.8), rgba(10, 11, 16, 0.9));
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    background-image: 
        radial-gradient(var(--secondary-color) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 20px 20px, 40px 40px, 40px 40px;
}

.map-pin {
    position: relative;
    color: var(--accent-magenta);
    font-size: 2rem;
    z-index: 2;
    animation: pin-bounce 2s infinite ease-in-out;
}

@keyframes pin-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.map-pin::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 4px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    filter: blur(1px);
    z-index: -1;
}

/* Dynamic Interactive Dashboard Layout */
.dashboard-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 30px;
    min-height: calc(100vh - 220px);
}

.dashboard-sidebar {
    background: rgba(20, 22, 37, 0.4);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-self: start;
}

.sidebar-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 15px;
}

.avatar-placeholder {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
}

.sidebar-profile h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.sidebar-profile p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.dashboard-menu-item {
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    text-align: left;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.dashboard-menu-item:hover, .dashboard-menu-item.active {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-highlight);
}

.dashboard-menu-item.active {
    border-left: 3px solid var(--secondary-color);
    background: rgba(6, 182, 212, 0.05);
}

.dashboard-content-panel {
    display: none;
}

.dashboard-content-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.dashboard-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.dashboard-header-bar h2 {
    font-size: 1.6rem;
}

.metrics-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.metric-card {
    padding: 24px;
    background: rgba(20, 22, 37, 0.35);
}

.metric-header {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.metric-val {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-highlight);
}

/* Dashboard Job List or Candidate List */
.dashboard-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.list-item-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: rgba(20, 22, 37, 0.3);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
}

.list-item-card:hover {
    border-color: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
    background: rgba(20, 22, 37, 0.45);
}

.list-item-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.list-item-avatar {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.list-item-details h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.list-item-details p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.list-item-status {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-pending { background: rgba(234, 179, 8, 0.15); color: #eab308; }
.status-approved { background: rgba(34, 197, 94, 0.15); color: #22c55e; }
.status-interview { background: rgba(6, 182, 212, 0.15); color: #06b6d4; }
.status-rejected { background: rgba(239, 68, 68, 0.15); color: #ef4444; }

/* Testimonials Carousel / Slider on Home page */
.testimonials-section {
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 10px;
}

.testimonial-box {
    background: rgba(20, 22, 37, 0.3);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 30px;
    position: relative;
}

.testimonial-rating {
    color: #eab308;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
}

.author-info h4 {
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.author-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot.active {
    background: var(--secondary-color);
    width: 24px;
    border-radius: 4px;
}

/* Footer Section */
footer {
    border-top: 1px solid var(--border-color);
    background: #06070a;
    padding: 60px 8% 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 15px;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 1.05rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

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

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-highlight);
    transform: translateX(3px);
    display: inline-block;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    text-decoration: none;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--text-highlight);
}

/* Success notification message popup */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #11121d;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--secondary-color);
    padding: 16px 24px;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 5000;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.toast-notification.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.toast-notification.success {
    border-left-color: #22c55e;
}

.toast-notification.success i {
    color: #22c55e;
}

/* Mobile Responsiveness styling */
@media (max-width: 1024px) {
    header {
        padding: 0 5%;
    }
    section {
        padding: 60px 5% 80px;
    }
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-left h1 {
        font-size: 3rem;
    }
    .hero-left p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-btns {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-right {
        height: 350px;
    }
    .glow-card {
        width: 250px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-left-img {
        height: 350px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background: rgba(10, 11, 16, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        gap: 35px;
        transition: var(--transition-smooth);
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .cta-group {
        display: none;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 2.2rem;
    }
    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
}
