:root {
    --bg-color: #0d0d12;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0b0;
    --accent-primary: #3b82f6;
    /* Electric Blue */
    --accent-secondary: #8b5cf6;
    /* Vivid Purple */
    --accent-glass: rgba(255, 255, 255, 0.05);
    --border-glass: rgba(255, 255, 255, 0.1);
    --card-radius: 16px;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(59, 130, 246, 0.08), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(139, 92, 246, 0.08), transparent 25%);
    background-attachment: fixed;
}

/* Typography */
h1,
h2,
h3,
h4 {
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -2px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 2px;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 3rem 0;
    /* Reduced from 6rem */
}

/* Header/Hero */
header {
    /* min-height: 100vh; Removed to fit content */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 2rem;
    /* Reduced padding */
    padding-bottom: 2rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    /* Reduced gap from 2rem */
    z-index: 10;
    max-width: 900px;
    width: 100%;
}

.profile-img-container {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    position: relative;
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.3);
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--bg-color);
}

/* Capabilities Grid (New) */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    width: 100%;
    margin-top: 2rem;
}

.skill-tile {
    background: var(--accent-glass);
    border: 1px solid var(--border-glass);
    padding: 1.5rem;
    border-radius: var(--card-radius);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
}

.skill-tile:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
}

.skill-tile h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--accent-primary);
    /* Highlight title */
}

.skill-tile p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}


/* Companies Grid */
.company-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.company-logo {
    height: 60px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.company-box {
    background: white;
    padding: 1.5rem 1rem;
    border-radius: 8px;
    width: 200px;
    min-height: 180px;
    /* Increased to fit text */
    display: flex;
    flex-direction: column;
    /* Stack logo and text */
    align-items: center;
    justify-content: flex-start;
    /* Align to top */
    text-align: center;
    border: 1px solid transparent;
    transition: var(--transition);
    gap: 1rem;
    text-decoration: none;
    cursor: pointer;
}

.company-role {
    color: var(--bg-color);
    /* Dark text */
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
    margin-top: auto;
    /* Push to bottom if needed, or just flow naturally */
}

.company-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

/* Certifications Box */
.cert-box {
    background: white;
    padding: 1rem 0.5rem;
    border-radius: 8px;
    width: 170px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    border: 1px solid transparent;
    transition: var(--transition);
    color: var(--bg-color);
    text-decoration: none;
    cursor: pointer;
}

.cert-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.cert-box h4 {
    color: var(--bg-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    margin-top: auto;
    line-height: 1.3;
}

.cert-box p {
    color: #4b5563;
    font-size: 0.85rem;
    line-height: 1.4;
}

.cert-logo-container {
    background: transparent;
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.cert-logo {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Experience / Achievements */
.experience-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.exp-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.exp-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.about-item {
    text-align: center;
}

.about-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

/* General Card (used in About) */
.card {
    background: var(--accent-glass);
    border: 1px solid var(--border-glass);
    padding: 2rem;
    border-radius: var(--card-radius);
    transition: var(--transition);
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

/* Flags */
.flag-icon {
    height: 20px;
    width: auto;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    vertical-align: middle;
}

.flags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-glass);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Mobile */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .profile-img-container {
        width: 200px;
        height: 200px;
    }

    section {
        padding: 4rem 0;
    }
}. l o g o - c c m p  
   t r a n s f o r m :   s c a l e ( 1 . 5 ) ;    
 