/* Modern CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #c770f0;
    --secondary-color: #623686;
    --accent-color: #cd5ff8;
    --dark-color: #0c0513;
    --surface-color: #1a1626;
    --card-bg: #1e1e2e;
    --light-color: #F5F5F5;
    --white: #ffffff;
    --gray-100: #2d2d42;
    --gray-200: #3d3d5c;
    --gray-300: #4d4d6d;    --gray-600: #b4c6fc;
    --gray-700: #d0dcf7;
    --gray-800: #ccd6f6;
    --gray-900: #ffffff;
    --success: #64ffda;
    --warning: #ffd700;
    --danger: #ff6b6b;
    --info: #54a3ff;
    
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark-color) 0%, var(--surface-color) 100%);
    --gradient-hero: linear-gradient(135deg, #0c0513 0%, #1a1626 50%, #2d1b69 100%);
    
    --shadow-sm: 0 2px 4px rgba(199, 112, 240, 0.1);
    --shadow-md: 0 4px 8px rgba(199, 112, 240, 0.15);
    --shadow-lg: 0 8px 16px rgba(199, 112, 240, 0.2);
    --shadow-xl: 0 16px 32px rgba(199, 112, 240, 0.25);
    
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #ffffff !important;
    background: var(--dark-color);
    overflow-x: hidden;
    padding-top: 80px; /* Add padding to account for fixed navbar */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section spacing */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

/* Modern Navigation */
.navbar {
    background: rgba(12, 5, 19, 0.95) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(199, 112, 240, 0.1);
    transition: var(--transition);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(199, 112, 240, 0.1);
    z-index: 1050;
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    margin-right: auto;
}

.brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.brand-title {
    font-size: 0.8rem;
    color: var(--white);
    font-weight: 400;
    opacity: 0.8;
}

.navbar-nav {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
    justify-content: flex-end;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    padding: 0.75rem !important;
    border-radius: 50%;
    transition: var(--transition);
    position: relative;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    overflow: visible;
}

/* Prevent tooltips from showing on active items unless hovered */
.navbar-nav .nav-link .nav-text {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--card-bg);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    pointer-events: none;
    border: 1px solid var(--primary-color);
}

.navbar-nav .nav-link:not(.active):hover .nav-text,
.navbar-nav .nav-link.active:hover .nav-text {
    opacity: 1;
    visibility: visible;
}

.navbar-nav .nav-link .nav-text::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 4px solid var(--primary-color);
}

.navbar-nav .nav-link:hover {
    color: var(--white) !important;
    background: var(--gradient-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.navbar-nav .nav-link:hover .nav-text {
    opacity: 1;
    visibility: visible;
}

.navbar-nav .nav-link.active {
    color: var(--white) !important;
    background: var(--gradient-primary);
    box-shadow: var(--shadow-md);
}

.navbar-nav .nav-link.active .nav-text {
    opacity: 0;
    visibility: hidden;
}

.navbar-nav .nav-link.active:hover .nav-text {
    opacity: 1;
    visibility: visible;
    background: var(--primary-color);
}

.navbar-nav .nav-link.active:hover .nav-text::before {
    border-bottom-color: var(--primary-color);
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 20px;
}

.navbar-toggler-icon .bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 2px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon .bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23c770f0" stop-opacity="0.1"/><stop offset="100%" stop-color="%23c770f0" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="150" fill="url(%23a)"/><circle cx="800" cy="800" r="200" fill="url(%23a)"/><circle cx="900" cy="300" r="100" fill="url(%23a)"/></svg>');
    opacity: 0.4;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, var(--primary-color), transparent),
        radial-gradient(2px 2px at 40px 70px, var(--accent-color), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--primary-color), transparent),
        radial-gradient(1px 1px at 130px 80px, var(--accent-color), transparent);
    background-repeat: repeat;
    background-size: 150px 100px;
    animation: float 20s linear infinite;
    opacity: 0.3;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    padding-left: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--white);
}

.hero-title .highlight {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--white);
    opacity: 0.9;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--white);
    opacity: 0.8;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* Button Styles */

.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-lg);
    border: none;
}

.btn-primary:hover {
    background: var(--gradient-accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(199, 112, 240, 0.2);
}

.social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
    color: var(--white);
    border-color: var(--primary-color);
}

.fiverr-link {
    background: rgba(29, 191, 115, 0.1) !important;
}

.fiverr-link:hover {
    background: #1DBF73 !important;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-image {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-xl);
    margin: 0 auto;
}

.profile-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
    transition: var(--transition);
}

.profile-image:hover .image-overlay {
    opacity: 0.8;
}

.profile-image:hover .profile-pic {
    transform: scale(1.1);
}

/* Section Styles */
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
    position: relative;
    font-family: 'Space Grotesk', sans-serif;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Global Text Color Override - Force White Text */
p, span, div:not(.highlight):not(.brand-name), li, 
.about-description,
.hero-description,
.timeline-content p,
.timeline-content li,
.timeline-date,
.project-content p,
.cert-content p,
.contact-info p,
.contact-item,
.social-link,
.nav-close,
.brand-title,
.skill-item span,
input, textarea,
.navbar-nav .nav-link,
.navbar-nav .nav-text {
    color: #ffffff !important;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--surface-color);
}

.about-content {
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 1px solid rgba(199, 112, 240, 0.1);
}

.stat:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--white);
    font-weight: 500;
}

/* Experience Section */
.experience {
    padding: 100px 0;
    background: var(--dark-color);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 4rem;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 4rem;
}

.timeline-dot {
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--card-bg);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    top: 0;
    box-shadow: var(--shadow-md);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -12px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -12px;
}

.timeline-content {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
    border: 1px solid rgba(199, 112, 240, 0.1);
}

.timeline-content:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.timeline-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-date {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
    font-weight: 500;
    opacity: 0.8;
}

.timeline-content p {
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.timeline-content ul {
    list-style: none;
    padding-left: 0;
}

.timeline-content li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    color: var(--white);
    line-height: 1.6;
    opacity: 0.9;
}

.timeline-content li::before {
    content: '✨';
    position: absolute;
    left: 0;
    font-size: 1rem;
}

/* Modern Skills Section */
.skills {
    padding: 100px 0;
    background: var(--surface-color);
}

.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.skill-category {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 1px solid rgba(199, 112, 240, 0.1);
    position: relative;
    overflow: hidden;
}

.skill-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.skill-category:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.skill-category:hover::before {
    background: var(--gradient-accent);
}

.skill-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.skill-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.skill-category h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.skill-items .skill-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.skill-item span {
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}

.skill-bar {
    width: 60%;
    height: 8px;
    background: var(--gray-100);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    width: 0%;
    transition: width 2s ease-in-out;
    position: relative;
}

.skill-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* New Simple Skills Section */
.skills-container-simple {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.skill-category-simple {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 1px solid rgba(199, 112, 240, 0.1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.skill-category-simple h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-top: 1rem;
}

.skill-tag {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: var(--transition);
    display: inline-block;
}

.skill-tag:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Projects Section */
.projects {
    padding: 100px 0;
    background: var(--dark-color);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(199, 112, 240, 0.1);
}

.project-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.project-image {
    height: 250px;
    position: relative;
    overflow: hidden;
    background: var(--surface-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    gap: 1rem;
}

.project-placeholder.social {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.project-placeholder.education {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.project-placeholder.bms {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.project-placeholder span {
    font-size: 1.2rem;
    font-weight: 600;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(199, 112, 240, 0.9), rgba(205, 95, 248, 0.9));
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image:hover .project-overlay {
    opacity: 1;
}

.project-image:hover .project-img {
    transform: scale(1.1);
}

.project-info {
    text-align: center;
    color: var(--white);
}

.project-status {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.project-content p {
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    opacity: 0.9;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.project-tech span {
    background: rgba(199, 112, 240, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--primary-color);
}

/* Awards Section */
.awards {
    padding: 100px 0;
    background: var(--surface-color);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.award-card {
    background: var(--gradient-primary);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.award-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.award-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.award-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    margin: 0 auto 2rem auto;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.award-content {
    position: relative;
    z-index: 1;
}

.award-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.award-content h4 {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.award-year {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 1rem;
    display: block;
    font-weight: 600;
}

.award-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Certifications Section */
.certifications {
    padding: 100px 0;
    background: var(--dark-color);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.certification-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border-left: 5px solid var(--primary-color);
    position: relative;
    border: 1px solid rgba(199, 112, 240, 0.1);
}

.certification-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-top: 30px solid var(--primary-color);
}

.certification-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.cert-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.cert-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.cert-content h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cert-year {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
    font-weight: 600;
    opacity: 0.8;
}

.cert-content p {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--surface-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    padding: 1rem;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid rgba(199, 112, 240, 0.1);
}

.contact-item:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(10px);
    border-color: var(--primary-color);
}

.contact-item i {
    width: 24px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-item:hover i {
    color: var(--white);
}

.contact-form {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(199, 112, 240, 0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid rgba(199, 112, 240, 0.2);    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--surface-color);
    color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--card-bg);
    box-shadow: 0 0 0 3px rgba(199, 112, 240, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Footer */
.footer {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.footer-links a:hover {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Modern Typing Animation */
.typing-text {
    border-right: 2px solid var(--primary-color);
    animation: typing-cursor 1s infinite;
}

@keyframes typing-cursor {
    0%, 50% { border-right-color: var(--primary-color); }
    51%, 100% { border-right-color: transparent; }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .skills-container,
    .skills-container-simple {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .skill-category-simple {
        padding: 1.2rem;
    }
    
    .skill-category-simple h3 {
        font-size: 1rem;
    }
    
    .skill-tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .awards-grid,
    .certifications-grid {
        grid-template-columns: 1fr;
    }
    
    .navbar-nav .nav-link {
        font-size: 1rem;
        margin: 0.2rem 0;
    }
    
    /* Fix hire me buttons on tablet */
    .hire-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hire-buttons .btn {
        min-width: 250px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .profile-image {
        width: 220px;
        height: 220px;
    }
    
    .hero-content {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .skills-container-simple {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 4rem !important;
        padding-right: 0 !important;
    }
    
    .timeline-dot {
        left: 18px !important;
        right: auto !important;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .skills-container {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .btn {
        width: 200px;
        text-align: center;
    }
    
    .profile-image {
        width: 280px;
        height: 280px;
    }
    
    .brand-name {
        font-size: 1.2rem;
    }
    
    .brand-title {
        font-size: 0.7rem;
    }
    
    /* Ensure hire me buttons stack properly on mobile */
    .hire-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hire-buttons .btn {
        width: 100%;
        max-width: 280px;
        font-size: 0.95rem;
        padding: 12px 20px;
    }
      /* Fix navbar active states on mobile */
    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link:focus {
        color: var(--white) !important;
        background: var(--gradient-primary) !important;
    }
      /* Mobile Navigation Adjustments */
    .navbar {
        padding: 0.3rem 0;
    }
    
    .navbar-toggler {
        z-index: 1051;
        border: none;
        padding: 0.25rem;
        margin-right: 0.5rem;
    }
      .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(12, 5, 19, 0.98);
        backdrop-filter: blur(20px);
        z-index: 1050;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }
    
    .navbar-collapse.show {
        transform: translateX(0);
    }
    
    .navbar-nav {
        padding: 5rem 1rem 2rem;
        flex-direction: column;
        gap: 1rem;
        min-height: 100vh;
        justify-content: flex-start;
    }    .navbar-nav .nav-link {
        width: 100%;
        height: auto;
        border-radius: 12px;
        padding: 1rem 1.5rem !important;        display: flex;
        align-items: center;
        gap: 1rem;
        justify-content: flex-start;
        font-size: 1.1rem;
        background: rgba(199, 112, 240, 0.05);
        border: 1px solid rgba(199, 112, 240, 0.1);
        margin-bottom: 0.5rem;
        color: var(--white) !important;
    }
    
    .navbar-nav .nav-link:hover {
        background: var(--gradient-primary);
        color: var(--white) !important;
        transform: translateX(10px);
        border-color: transparent;
    }
    
    .navbar-nav .nav-link .nav-text {
        position: static;
        opacity: 1;
        visibility: visible;
        background: none;
        color: inherit;
        padding: 0;
        transform: none;
        font-size: 1rem;
        font-weight: 500;
    }
    
    .navbar-nav .nav-link:hover .nav-text {
        color: var(--white) !important;
    }
    
    .navbar-nav .nav-link .nav-text::before {
        display: none;
    }
    
    .navbar-nav .nav-link i {
        font-size: 1.2rem;
        width: 24px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .profile-image {
        width: 220px;
        height: 220px;
    }
    
    .timeline-content,
    .skill-category,
    .project-card,
    .award-card,
    .certification-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Tablet Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .navbar-nav .nav-link {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    
    .navbar-nav .nav-link .nav-text {
        font-size: 0.7rem;
        bottom: -32px;
    }
    
    .profile-image {
        width: 250px;
        height: 250px;
    }
    
    .hero-container {
        gap: 2.5rem;
    }
    
    .cv-card {
        max-width: 320px;
    }
    
    .skills-container-simple {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* CV Download Navigation Button */
.navbar-nav .cv-download-nav {
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
    margin-left: 0.5rem;
    border: 2px solid var(--primary-color);
}

.navbar-nav .cv-download-nav:hover {
    background: var(--gradient-accent) !important;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(199, 112, 240, 0.4);
}

.navbar-nav .cv-download-nav .nav-text {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--surface-color);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-accent);
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

/* Hire Me Section */
.hire-me {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
}

.hire-me .section-title {
    color: var(--white) !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    -webkit-text-fill-color: var(--white) !important;
}

.hire-me::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="300" cy="200" r="100" fill="url(%23a)"/><circle cx="700" cy="600" r="150" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

.hire-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hire-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.7;
}

.hire-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-item p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.hire-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hire-buttons .btn {
    white-space: nowrap;
    min-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 480px) {
    .hire-buttons .btn {
        white-space: normal;
        min-width: auto;
        width: 100%;
        max-width: 280px;
        text-align: center;
        line-height: 1.3;
    }
}

.fiverr-btn {
    background: #1DBF73 !important;
    border-color: #1DBF73 !important;
}

.fiverr-btn:hover {
    background: #19a463 !important;
    transform: translateY(-3px);
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: var(--gradient-primary);
}

.shadow-custom {
    box-shadow: var(--shadow-xl);
}

/* Dark Mode Support (Future Enhancement) */
@media (prefers-color-scheme: dark) {
    :root {
        --white: #1a1a1a;
        --gray-100: #2d2d2d;
        --gray-200: #404040;
        --gray-700: #e0e0e0;
        --gray-800: #f0f0f0;
        --dark-color: #f0f0f0;
    }
}

/* Mobile Navigation Close Button */
.nav-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 1051;
}

.nav-close:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: rotate(90deg);
}

/* Modern Card Hover Glow Effects */
.skill-category:hover,
.project-card:hover,
.timeline-content:hover,
.certification-card:hover,
.award-card:hover {
    box-shadow: 0 8px 32px rgba(199, 112, 240, 0.3);
}

/* Floating particles background for hero */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: floating 6s ease-in-out infinite;
    opacity: 0.6;
}

.floating-particles::before {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-particles::after {
    top: 60%;
    right: 20%;
    animation-delay: 3s;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px);
        opacity: 1;
    }
}

/* Enhanced button hover effects */
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(199, 112, 240, 0.4);
}

/* Animated gradient border for navigation */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--primary-color));
    border-radius: 50%;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    opacity: 1;
    animation: rotate-gradient 2s linear infinite;
}

@keyframes rotate-gradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* FINAL OVERRIDE: Force all text to be white except specific purple elements */
body, body *, 
.container, .container *,
.section-title, .section-title *,
.hero-content, .hero-content *,
.about-content, .about-content *,
.timeline-content, .timeline-content *,
.project-content, .project-content *,
.contact-content, .contact-content *,
.cert-content, .cert-content *,
.navbar, .navbar *,
p, span, div, h1, h2, h3, h4, h5, h6, li, a, 
.text-white, .text-light {
    color: #ffffff !important;
}

/* Override Bootstrap default colors */
.text-dark, .text-muted, .text-secondary {
    color: #ffffff !important;
}

/* Preserve purple/gradient text for specific elements */
.highlight,
.brand-name,
.timeline-content h4,
.cert-content h4,
.project-tech span,
.skill-tag,
.text-gradient {
    background: linear-gradient(45deg, #c770f0, #cd5ff8) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
}

/* Navigation hover states */
.navbar-nav .nav-link:hover {
    color: #ffffff !important;
}
