:root {
    /* Color Palette */
    --bg-dark: #070B14;
    --bg-surface: #111827;
    --primary: #00E1D9; /* Cyan */
    --secondary: #7F5AF0; /* Purple */
    --accent: #2CB67D; /* Green */
    
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    
    --shadow-soft: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --shadow-glow: 0 0 20px rgba(0, 225, 217, 0.3);

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

body {
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Shapes for Aesthetics */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    top: 30%;
    right: -200px;
    opacity: 0.25;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.section {
    padding: 6rem 0;
}

.highlight {
    color: var(--primary);
}

.highlight-text {
    font-weight: 600;
    color: var(--text-main);
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism Classes */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(0, 225, 217, 0.4);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #00A6A0);
    color: var(--bg-dark);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px rgba(0, 225, 217, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: rgba(0, 225, 217, 0.1);
    transform: translateY(-3px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(7, 11, 20, 0.85);
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo span {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: var(--transition);
    background-color: var(--text-main);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.greeting {
    font-family: 'Inter', monospace;
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.name {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.title {
    font-size: 1.8rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.description {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 2.5rem;
}

.cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    font-size: 1.2rem;
    color: var(--text-main);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* Profile Card Area */
.hero-logo-container {
    position: relative;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
}

.official-mulesoft-logo {
    width: 250px;
    height: 250px;
    color: var(--primary);
    opacity: 0.85;
    filter: drop-shadow(0 0 25px rgba(0, 225, 217, 0.3));
}

.badge {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    padding: 0.8rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: float 6s ease-in-out infinite;
}

.badge i {
    color: var(--primary);
}

.badge:nth-child(2) {
    top: 50px;
    right: 20px;
}

.badge-salesforce {
    bottom: 50px;
    left: 20px;
    animation-delay: -3s !important;
}

.badge-salesforce i {
    color: #00A1E0; /* Salesforce blue */
}


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

/* Sections Global */
.section-title {
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.section-title h2 {
    font-size: 2.5rem;
}

.section-title .line {
    height: 1px;
    background: var(--glass-border);
    flex-grow: 1;
    position: relative;
}

.section-title .line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

/* About Section */
.about-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 800px;
}

/* Experience Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    width: 2px;
    background: var(--glass-border);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 60px;
}

.timeline-dot {
    position: absolute;
    left: 11px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 4px solid var(--primary);
    box-shadow: 0 0 10px rgba(0, 225, 217, 0.5);
}

.timeline-content .date {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(0, 225, 217, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 0.3rem;
}

.timeline-content h4 {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

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

.job-list li {
    margin-bottom: 0.8rem;
    color: var(--text-muted);
    position: relative;
    padding-left: 1.5rem;
}

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

.job-list li strong {
    color: var(--text-main);
}

/* Skills */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.skill-category h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.skill-category h3 i {
    color: var(--primary);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tag {
    background: var(--bg-surface);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.tag:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.highlight-tag {
    background: rgba(0, 225, 217, 0.1);
    color: var(--primary);
    border-color: rgba(0, 225, 217, 0.3);
}

/* Education and Cert */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.cert-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cert-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(0, 161, 224, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-icon i {
    font-size: 2.5rem;
    color: #00A1E0; /* Salesforce brand color */
}

.cert-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.cert-details .issuer {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.edu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.edu-card {
    display: flex;
    gap: 2rem;
}

.edu-year {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--glass-border);
    -webkit-text-stroke: 1px var(--primary);
    min-width: 100px;
}

.edu-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.edu-info h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.edu-info p {
    color: var(--text-muted);
}

/* Footer / Contact Contact */
.footer {
    padding-bottom: 2rem;
}

.contact-box {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(180deg, var(--glass-bg) 0%, rgba(0, 225, 217, 0.05) 100%);
    margin-bottom: 5rem;
}

.contact-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-box p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
}

.contact-links {
    margin-bottom: 2rem;
}

.contact-info {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.contact-info i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-visual {
        order: 1;
        margin: 0 auto;
    }
    
    .description {
        margin: 0 auto 2.5rem;
    }

    .cta-group {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
    
    .name {
        font-size: 3.5rem;
    }
    
    .edu-card {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .edu-year {
        font-size: 1.5rem;
        -webkit-text-stroke: 0px transparent;
        color: var(--primary);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 1001; /* Ensure hamburger is above menu */
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: var(--bg-surface);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        justify-content: center;
        gap: 2rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 2.5rem 0;
    }

    .section {
        padding: 4rem 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .timeline::before {
        left: 10px;
    }
    
    .timeline-dot {
        left: 1px;
    }
    
    .timeline-item {
        padding-left: 40px;
    }
}

/* Animation Classes Additions */
.fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.fade-in.appear {
    opacity: 1;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.appear {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right.appear {
    opacity: 1;
    transform: translateX(0);
}

/* Custom Styles Added */
.mulesoft-logo {
    width: 65px;
    height: 65px;
    color: var(--primary);
    filter: drop-shadow(0 0 10px rgba(0, 225, 217, 0.5));
}

.cert-link {
    cursor: pointer;
    display: block;
    border-radius: 16px;
}

.cert-link:hover .cert-card {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(0, 225, 217, 0.4);
}

.custom-image {
    background: transparent;
    padding: 0;
}

.custom-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}
