:root {
      --primary-color: #dc3545;
      --secondary-color: #dc3545ba;
      --accent-color: #173f5f;
      --light-bg: #f8f9fa;
      --dark-text: #343a40;
      --light-text: #f8f9fa;
    }
    
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--dark-text);
      background-color: var(--light-bg);
      line-height: 1.6;
    }
    
    .navbar {
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      background-color: white;
    }
    .bg-badge{
        background-color: var(--secondary-color) !important;
    }
    
    .navbar-brand {
      font-weight: 700;
      color: var(--primary-color);
    }
    
    .hero-section {
      padding: 4rem 0;
      background: linear-gradient(135deg, #baf1e5 0%, #c3cfe2 100%);
      color: #000;
      border-radius: 0 0 2rem 2rem;
      margin-bottom: 3rem;
    }
    
    .profile-image {
      width: 180px;
      height: 180px;
      object-fit: cover;
      border-radius: 50%;
      border: 5px solid white;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
    .section-title {
      position: relative;
      margin-bottom: 2rem;
      font-weight: 700;
      color: var(--accent-color);
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -10px;
      width: 50px;
      height: 4px;
      background-color: var(--primary-color);
      border-radius: 2px;
    }
    
    .experience-card {
      border: none;
      border-radius: 1rem;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
      margin-bottom: 1.5rem;
    }
    
    .experience-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }
    
    .experience-period {
      background-color: var(--primary-color);
      color: white;
      padding: 0.2rem 0.8rem;
      border-radius: 2rem;
      font-size: 0.85rem;
    }
    
    .education-card {
      border: 1px solid rgba(0,0,0,0.1);
      border-radius: 1rem;
      transition: all 0.3s ease;
      text-decoration: none;
      color: var(--dark-text);
      margin-bottom: 1rem;
    }
    
    .education-card:hover {
      background-color: var(--light-bg);
      border-color: var(--primary-color);
      transform: translateY(-3px);
    }
    
    .skill-category {
      display: inline-block;
      padding: 0.5rem 1rem;
      background-color: var(--primary-color);
      color: white;
      border-radius: 2rem;
      margin-bottom: 1rem;
      font-weight: 600;
    }
    
    .skill-item {
      border: none;
      border-radius: 0.5rem;
      margin-bottom: 0.5rem;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    
    .skill-experience {
      background-color: var(--secondary-color);
      color: white;
      border-radius: 1rem;
      font-size: 0.8rem;
      padding: 0.2rem 0.7rem;
    }
    
    .certificate-card {
      border: none;
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      margin-bottom: 2rem;
    }
    
    .certificate-img {
      max-height: 150px;
      object-fit: contain;
      padding: 1rem;
    }
    
    .certificate-card .card-body {
      padding: 1.5rem;
    }
    
    .download-btn {
      margin-top: 2rem;
    }
    
    .download-btn .btn {
      padding: 0.8rem 1.5rem;
      margin-bottom: 0.5rem;
      border-radius: 0.5rem;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    
    .download-btn .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .contact-info {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.5rem;
    }
    
    .contact-icon {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--light-bg);
      color: var(--primary-color);
      border-radius: 50%;
    }
    
    footer {
      background-color: var(--accent-color);
      color: white;
      padding: 2rem 0;
      margin-top: 4rem;
    }
    
    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }
    
    .social-links a {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: rgba(255,255,255,0.1);
      color: white;
      border-radius: 50%;
      transition: all 0.3s ease;
    }
    
    .social-links a:hover {
      background-color: var(--primary-color);
      transform: translateY(-3px);
    }

    .social-icons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: #f8f9fa;
        color: var(--primary-color);
        margin-right: 0.75rem;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .social-icons a:hover {
        background-color: var(--primary-color);
        color: white;
        transform: translateY(-3px);
    }

    .btn-primary {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        padding: 0.6rem 1.5rem;
        border-radius: 0.5rem;
    }

    .btn-primary:hover {
        background-color: #c82333;
        border-color: #bd2130;
    }

    .btn-outline-primary{
        border-color: var(--primary-color);
        color: var(--primary-color);
    }

    .btn-outline-primary:hover {
        background-color: #c82333;
    }
    
    @media (max-width: 768px) {
      .hero-section {
        text-align: center;
        padding: 3rem 0;
      }
      
      .profile-image {
        margin-bottom: 1.5rem;
      }
      
      .section-title::after {
        left: 50%;
        transform: translateX(-50%);
      }
      
      .section-title {
        text-align: center;
      }
    }