/* General Reset */
body, h1, h2, h3, p, ul {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
  }
  
  /* Header Section */
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    border-bottom: 2px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .logo img {
    width: 80px;
    height: auto;
  }
  
  .profile-thumbnail img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #4CAF50;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
  }
  
  .profile-thumbnail img:hover {
    transform: scale(1.1);
  }
  
  /* Title Section */
  .title-container {
    text-align: center;
    margin: 30px 0;
  }
  
  .title-container h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
  }
  
  /* Service Cards */
  #pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
  }
  
  .service-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 350px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
  }
  
  .service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
  
  .service-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .service-box p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
  }
  
  .duration {
    display: inline-block;
    background-color: #e0e7ff;
    color: #333;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    margin-top: 10px;
  }
  
  .hidden-details {
    display: none;
    margin-top: 15px;
  }
  
  .hidden-details .price {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .hidden-details .description {
    font-size: 1rem;
    color: #444;
    margin-bottom: 15px;
  }
  
  .contact-btn {
    display: inline-block;
    background-color: #2563eb;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s;
  }
  
  .contact-btn:hover {
    background-color: #1e40af;
  }
  
  /* Resume Modal */
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
  }
  
  .iframe-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    height: 90%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    overflow: hidden;
  }
  
  .iframe-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  
  /* Close Button */
  .iframe-modal-content .close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 25px;
    font-weight: bold;
    color: #555;
    cursor: pointer;
    transition: color 0.3s;
  }
  
  .iframe-modal-content .close:hover {
    color: red;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .service-box {
      width: 90%;
    }
  
    .iframe-modal-content {
      width: 95%;
      height: 95%;
    }
  
    .title-container h1 {
      font-size: 2rem;
    }
  }
  