    /* Global Styles */
    :root {
        --primary-color: #0066CC;
        --secondary-color: #00CC99;
        --accent-color: #FF9933;
        --light-bg: #f3f4f6;
        --dark-text: #1f2937;
        --light-text: #f9fafb;
      }
      
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      }
      
      body {
        color: var(--dark-text);
        line-height: 1.6;
      }
      
      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }
      
      a {
        text-decoration: none;
        color: var(--primary-color);
        transition: color 0.3s ease;
      }
      
      a:hover {
        color: var(--secondary-color);
      }
      
      .btn {
        display: inline-block;
        padding: 12px 24px;
        background-color: var(--primary-color);
        color: var(--light-text);
        border-radius: 6px;
        font-weight: 600;
        transition: all 0.3s ease;
      }
      
      .btn:hover {
        background-color: var(--secondary-color);
        color: var(--light-text);
        transform: translateY(-2px);
      }
      
      /* Header */
      header {
        background-color: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: sticky;
        top: 0;
        z-index: 100;
      }
      
      .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
      }
      
      .logo {
        display: flex;
        align-items: center;
        font-size: 24px;
        font-weight: 700;
        color: var(--dark-text);
      }
      
      .logo svg {
        margin-right: 10px;
        color: var(--primary-color);
      }
      
      nav ul {
        display: flex;
        list-style: none;
      }
      
      nav ul li {
        margin-left: 30px;
      }
      
      nav ul li a {
        font-weight: 500;
        color: var(--dark-text);
      }
      
      nav ul li a:hover {
        color: var(--primary-color);
      }
      
      /* Hero Section */
      .hero {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: var(--light-text);
        padding: 100px 0;
        position: relative;
        overflow: hidden;
      }
      
      .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
        opacity: 0.3;
      }
      
      .hero-content {
        max-width: 700px;
        position: relative;
        z-index: 1;
      }
      
      .hero h1 {
        font-size: 48px;
        font-weight: 800;
        margin-bottom: 20px;
        line-height: 1.2;
      }
      
      .hero p {
        font-size: 20px;
        margin-bottom: 30px;
        opacity: 0.9;
      }
      
      .name_logo {
        font-size: 2em;
      }
      
      .highlighted_text {
     
      }
      


      /* About Section */
      .about {
        padding: 100px 0;
      }
      
      .section-title {
        text-align: left;
      }
      
      .section-title h2 {
        font-size: 36px;
        font-weight: 700;
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
      }
            
      .mission-values {
        display: flex;
        gap: 30px;
        margin-top: 40px;
      }
      
      .mission-box, .values-box {
        flex: 1;
        background-color: var(--light-bg);
        padding: 40px;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
      }
      
      .mission-box h3, .values-box h3 {
        font-size: 24px;
        margin-bottom: 20px;
      }
      
      /* Research Areas */
      .research {
        padding: 100px 0;
        background-color: var(--light-bg);
      }
      
      .research-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
      }
      
      .research-card {
        background-color: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
        font-size: smaller;
      }
      
      .research-card:hover {
        transform: translateY(-5px);
      }
      
      .research-card-img {
        height: 200px;
        background-color: #ddd;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #666;
      }
      
      .research-card-content {
        padding: 30px;
      }
      
      .research-card h3 {
        font-size: 22px;
        margin-bottom: 15px;
      }
      
      /* Team Section */
      .team {
        padding: 30px 0;
      }
      
      .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
      }
      
      .team-member {
        text-align: center;
      }
      
      .team-img {
        width: 180px;
        height: 180px;
        border-radius: 50%;
        margin: 0 auto 20px;
        background-color: #ddd;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #666;
      }
      
      .team-member h3 {
        font-size: 20px;
        margin-bottom: 5px;
      }
      
      .team-member p {
        color: var(--primary-color);
        font-weight: 500;
      }

      /* Collective */
      .collective {
        padding: 30px 0;
      }
      
      .collaborator-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 30px;
        margin-top: 40px;
      }
      
      .collaborator h3 {
        font-size: 20px;
        margin-bottom: 5px;
      }
      
      .collaborator p {
        color: var(--primary-color);
        font-weight: 500;
      }

      /* Publications */
      .publications {
        padding: 100px 0;
        background-color: var(--light-bg);
      }
      
      .publication-list {
        margin-top: 40px;
      }
      
      .publication-item {
        background-color: white;
        padding: 30px;
        border-radius: 8px;
        margin-bottom: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
      }
      
      .publication-item h3 {
        font-size: 20px;
        margin-bottom: 10px;
      }
      
      .publication-item p.authors {
        color: #666;
        font-style: italic;
        margin-bottom: 10px;
      }
      
      .publication-item p.journal {
        font-weight: 500;
        color: var(--primary-color);
      }
      
      /* Contact Section */
      .contact {
        padding: 30px 0;
        background-color: var(--light-bg);
        
      }
      
      .contact-content {
        display: flex;
        gap: 50px;
        margin-top: 40px;
      }
      
      .contact-info {
        flex: 1;
      }
      
      .contact-info h3 {
        font-size: 24px;
        margin-bottom: 20px;
      }
      
      .contact-details {
        margin-bottom: 30px;
      }
      
      .contact-details p {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
      }
      
      .contact-details svg {
        margin-right: 10px;
        color: var(--primary-color);
      }
      
      .contact-form {
        flex: 1;
      }
      
      .form-group {
        margin-bottom: 20px;
      }
      
      .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
      }
      
      .form-group input,
      .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 16px;
      }
      
      .form-group textarea {
        height: 150px;
      }
      
      /* Footer */
      footer {
        background-color: #1f2937;
        color: var(--light-text);
        padding: 60px 0 30px;
      }
      
      .footer-content {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        margin-bottom: 50px;
      }
      
      .footer-col {
        flex: 1;
        min-width: 200px;
      }
      
      .footer-col h4 {
        font-size: 18px;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
      }
      
      .footer-col h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background-color: var(--accent-color);
      }
      
      .footer-col ul {
        list-style: none;
      }
      
      .footer-col ul li {
        margin-bottom: 10px;
      }
      
      .footer-col ul li a {
        color: #d1d5db;
        transition: color 0.3s ease;
      }
      
      .footer-col ul li a:hover {
        color: var(--accent-color);
      }
      
      .social-links {
        display: flex;
        gap: 15px;
      }
      
      .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: var(--light-text);
        transition: all 0.3s ease;
      }
      
      .social-links a:hover {
        background-color: var(--accent-color);
        transform: translateY(-3px);
      }
      
      .footer-bottom {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }
      
      @media (max-width: 768px) {
        .mission-values {
          flex-direction: column;
        }
        
        .contact-content {
          flex-direction: column;
        }
        
        .header-content {
          flex-direction: column;
        }
        
        nav ul {
          margin-top: 20px;
        }
        
        nav ul li {
          margin-left: 15px;
          margin-right: 15px;
        }
        
        .hero h1 {
          font-size: 36px;
        }
      }

 .publication-list > div {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
}

.publication-list > div:last-child {
  border-bottom: none;
}

.publication-list img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}

.publication-content {
  flex: 1;
}
