
    /* Global Styles */
    body {
      font-family: "Times New Roman", serif;
      background: url("imgs/about.jpg") no-repeat center center fixed;
      background-size: cover;
      margin: 0;
      padding: 0;
      text-align: center;
      color: #4b0000;
    }
    /* Section Container */
    .container {
      margin-top: 60px;
      padding: 0 20px;
    }

    h2 {
      font-size: 40px;
      margin-bottom: 30px;
      animation: slideUp 1s ease;
    }

    .features {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 40px;
    }

    .card {
      background: #fff8e1;
      border-radius: 10px;
      box-shadow: 0 3px 6px rgba(0,0,0,0.1);
      width: 180px;
      padding: 20px;
      text-align: center;
      animation: bounceIn 1s ease;
      transition: transform 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card img {
      width: 40px;
      height: 40px;
      margin-bottom: 15px;
    }

    .promise {
      margin: 60px 40px ;
      animation: slideUp 1s ease;
    }

    .promise h3 {
      font-size: 30px;
      margin-bottom: 20px;
    }

    .promise-tags {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 15px;
    }

    .tag {
      border-radius: 20px;
      padding: 8px 15px;
      font-size: 0.9rem;
      color: #4b0000;
      background: #fff8e1;
      animation: fadeIn 1s ease;
      transition: transform 0.3s ease;
    }

    .tag:hover {
      transform: translateY(-5px);
    }

    /* Footer */
    .footer {
      border-radius: 30px;
      background: #f8f8f85e;
      padding: 20px 10px;
      color: #333;
      margin-top: 20px; /* reduced */
      animation: slideUp 1s ease;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    .footer-column {
      flex: 1 1 200px;
      margin: 10px;
      text-align: left;
    }

    .footer-column h4 {
      font-size: 1rem;
      margin-bottom: 15px;
      font-weight: bold;
      color: #4b0000;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
    }

    .footer-column ul li {
      margin-bottom: 8px;
    }

    .footer-column ul li a {
      text-decoration: none;
      color: #333;
    }

    .footer-column ul li a:hover {
      color: #d48400;
    }

    .social-media {
      margin-top: 10px;
    }

    .social-media a {
      margin: 0 10px;
      font-size: 22px;
      color: #555;
      text-decoration: none;
      transition: 0.3s;
    }

    .social-media a:hover {
      color: #e74c3c;
    }

    .copyright {
      font-size: 0.85rem;
      margin: 15px 0;
    }

    /* Animations */
    @keyframes slideUp {
      from { transform: translateY(30px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    @keyframes bounceIn {
      0% { transform: scale(0.5); opacity: 0; }
      60% { transform: scale(1.1); opacity: 1; }
      100% { transform: scale(1); }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
  footer {
  text-align: center;
  padding: 60px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #4b0000;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}

.linkedin-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  transition: transform 0.3s ease, fill 0.3s ease;
}

.linkedin-link:hover .linkedin-icon {
  transform: translateY(-3px) scale(1.1);
  fill: #0077b5; /* LinkedIn blue on hover */
}