.highlight {
    font-weight: bold;
    background: linear-gradient(74deg, 
        #4285f4 0%, 
        #9b72cb 9%, 
        #d96570 20%, 
        #d96570 24%, 
        #9b72cb 35%, 
        #4285f4 44%, 
        #9b72cb 50%, 
        #d96570 56%, 
        #d96570 75%, 
        #9b72cb 87%, 
        #4285f4 100%
    );
    /* background: linear-gradient(74deg, 
        #4285f4 0%, 
        #9b72cb 18%, 
        #d96570 40%, 
        #d96570 48%, 
        #9b72cb 70%, 
        #4285f4 88%, 
        #9b72cb 100%
    ); */

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
  }
  

.vhighlight {
    /* font-weight: bold; */
  }
  

.linkedin-icon {
  width: 36px; /* Adjust the width as needed */
  height: 36px; /* Adjust the height as needed */
  padding: 5px;
  vertical-align:bottom; /* Align the icon vertically with the text */
}



.details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.12s ease-out;
}

.details.show {
    max-height: 1000px; /* Adjust this value based on the expected maximum height */
    overflow: hidden;
    transition: max-height 0.2s ease-in;
}

/* --- New Design Updates --- */

.block-intro {
    position: relative;
    /* Ensure the background image stays, but we handle the overlay separately */
    overflow: hidden; 
}

/* The spotlight effect */
.block-intro::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Let clicks pass through */
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
        rgba(255, 255, 255, 0.4),
        transparent 40%
    );
    z-index: 1; /* Place above the background image but below content (content z-index needs checking) */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.block-intro:hover::after {
    opacity: 1;
}

/* Ensure content stays on top of the spotlight */
.block-intro .container {
    position: relative;
    z-index: 2;
}

/* Typography */
body, h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Inter', sans-serif !important;
}

/* General Layout */
body {
    background-color: #fbfbfb;
    color: #2d3748;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95) !important;
}

/* Cards / Sections */
.portfolio-info-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    border: 1px solid #f0f0f0;
}

/* Experience / Education Items */
.item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 5px solid #4285f4; /* Accent color border */
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #f0f0f0;
    border-left: 5px solid #4285f4;
}

.item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.item .organization, .item .place {
    font-weight: 600;
    color: #4a5568;
}

.item .period {
    color: #718096;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Headings */
h2.text-center {
    font-weight: 800;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

/* Add a small underline to headings */
h2.text-center::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #4285f4, #9b72cb);
    margin: 10px auto 0;
    border-radius: 2px;
}

.heading {
    margin-bottom: 0px !important; /* Override default 80px margin */
}

.portfolio-block {
    padding-top: 60px;
    padding-bottom: 60px;
}