  .type-container {
      font-size: 28px;
      font-weight: 400;
      display: flex;
      justify-content: center;
      align-items: baseline;
      flex-wrap: wrap;
    }

    .type-container .fixed {
      color: white;
      margin-right: 6px;
    }

    .type-container .changing {
      color: black;
      font-weight: 500;
      white-space: nowrap;
      overflow: hidden;
      border-right: 2px solid black;
      animation: blinkCursor 0.8s steps(1) infinite;
      line-height: 1;
    }

    @keyframes blinkCursor {
      0%, 100% { border-color: black; }
      50% { border-color: transparent; }
    }
 
 /* === Social Media Sidebar === */
 .social-sidebar {
     display: flex;
     justify-content: space-evenly;
     margin-top: 4rem !important;
     padding-top: 2rem !important;
     position: sticky;
     padding: 20px 10px;
     z-index: 999;
 }

 .social-sidebar a {
     display: block;
     margin: 20px 0;
     color: #ffffff;
     font-size: 20px;
     text-align: center;
     transition: color 0.3s;
 }

 .social-sidebar a:hover {
     color: #000000;
 }

 .contact-section {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     align-items: stretch;
     gap: 0;
     margin: 20px;
     
 }

 .contact-box {
     flex: 1 1 400px;
     background: linear-gradient(to bottom, #00c6ff, #0072ff);
     color: white;
     padding: 40px 30px;
     border-radius: 20px 0 0 20px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
 }

 .contact-box h2 {
     font-size: 36px;
     font-weight: 600;
     text-align: center;
 }

 .contact-box h2 span {
     text-decoration: underline;
     text-decoration-color: black;
     text-decoration-thickness: 3px;
     text-underline-offset: 6px;
 }

 .contact-info {
     margin-top: 30px;
 }

 .info-item {
     display: flex;
     align-items: center;
     margin-bottom: 30px;
 }

 .info-icon {
     background: #005d82;
     border-radius: 60%;
     padding: 15px;
     margin-right: 20px;
     font-size: 22px;
     display: flex;
     align-items: center;
     justify-content: center;
 }
 .info-content{
    margin: 2rem;
 }

 .info-content h5 {
     margin: 0 0 5px;
     font-size: 22px;
     font-weight: bold;
 }

 .map-container {
     flex: 1 1 400px;
     border-radius: 0 20px 20px 0;
     overflow: hidden;
     min-height: 400px;
 }

 .map-container iframe {
     width: 100%;
     height: 100%;
     border: 0;
 }

 /* Responsive Adjustments */
 @media (max-width: 991px) {
     .contact-section {
         flex-direction: column;
         margin-left: 20px;
     }

     .contact-box {
         border-radius: 20px 20px 0 0;
     }

     .map-container {
         border-radius: 0 0 20px 20px;
         height: 350px;
     }
 }




 /* blog html */
  .blog-card {
      background: #fff;
      border-radius: 10px;
      border: 1px solid rgba(43, 43, 43, 0.245);
      overflow: hidden;
      display: flex;
      flex-direction: row;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: 0.3s ease;
    }

    .blog-image {
      width: 100%;
      max-width: 400px;
      height: auto;
      object-fit: cover;
    }

    .blog-content {
      padding: 25px;
      flex: 1;
    }

    .blog-meta {
      display: flex;
      align-items: center;
      font-size: 14px;
      color: #555;
      margin-bottom: 10px;
      gap: 10px;
    }

    .blog-meta i {
      color: #007bff;
    }

    .blog-title {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .blog-description {
      font-size: 16px;
      color: #333;
      line-height: 1.5;
    }

    .read-more {
      margin-top: 20px;
      display: inline-block;
      font-weight: bold;
      color: #000000;
      text-decoration: none;
    }

    .read-more:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .blog-card {
        flex-direction: column;
      }

      .blog-image {
        width: 100%;
      }
    }