body {
    background-color: #0f0f0f;
    color: #e0e0e0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
}

.navbar {
    background-color: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
}

.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    border-bottom: 1px solid #222;
}

.name-gradient {
    background: linear-gradient(90deg, #00d2ff 0%, #3a7bd5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.section-title {
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #3a7bd5;
}

.card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    border-color: #444;
}

.badge-skill {
    background-color: #2a2a2a;
    color: #00d2ff;
    border: 1px solid #444;
    margin: 3px;
    padding: 8px 12px;
    font-weight: 500;
    font-size: 0.85rem;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #333;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3a7bd5;
    border: 2px solid #0f0f0f;
}

.social-links a {
    color: #e0e0e0;
    font-size: 1.5rem;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #00d2ff;
}

.btn-primary {
    background: linear-gradient(90deg, #00d2ff 0%, #3a7bd5 100%);
    border: none;
    padding: 10px 25px;
    font-weight: 600;
}

.footer {
    padding: 50px 0;
    background-color: #0a0a0a;
    border-top: 1px solid #222;
    text-align: center;
}

/* Exotic dark accents */
.accent-blue { color: #00d2ff; }
.bg-dark-soft { background-color: #151515; }

/* Enhanced Profile Summary */
.summary-container {
    background: rgba(42, 42, 42, 0.3);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 210, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.section-subtitle {
    color: #00d2ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
    font-weight: 600;
}

.summary-item {
    font-size: 1.05rem;
    color: #d1d1d1;
    transition: all 0.3s ease;
}

.summary-item:hover {
    color: #ffffff;
    transform: translateX(10px);
}

/* Skills Category Title */
.category-title {
    color: #ff9d00; /* Exotic orange */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

/* Experience Section Styles */
.experience-card {
    border-left: 4px solid #00d2ff !important;
}

.role-text {
    color: #ffffff;
    font-weight: 700;
}

.company-text {
    color: #00d2ff;
    font-weight: 600;
}

.location-text {
    color: #a0a0a0;
}

.period-badge {
    background: linear-gradient(90deg, #3a7bd5 0%, #00d2ff 100%);
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 50px;
}

.achievement-list li {
    color: #c0c0c0;
}

/* Education Section Styles */
.education-card {
    border-top: 4px solid #ff007a !important; /* Exotic Pink/Magenta */
    background: linear-gradient(145deg, #1e1e1e, #141414);
}

.edu-degree {
    color: #ffffff;
    font-weight: 700;
}

.edu-uni {
    color: #ff007a;
    font-weight: 600;
}

.edu-year {
    color: #888;
}

/* Contact Section Styles */
.contact-card {
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-icon {
    color: #00ffcc; /* Exotic Teal */
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
}

.contact-label {
    color: #ffffff;
    font-weight: 600;
}

.contact-value {
    color: #00ffcc;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: 1.1rem;
}
