body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
  }

/* Main Header Styling */
.main-header {
    background-color: #004080;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 30px;
    color: white;
    font-family: 'Segoe UI', sans-serif;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
    
    /* Sticky Position */
    position: sticky;
    top: 0;
    z-index: 999;
    height: 8vh;
  }
  
  /* Logo */
  .main-header img {
    height: 5vh;
    max-width: 100%;
    margin-left: 6vw;
  }
  
  /* Right Side */
  .header-right {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .header-right .phone {
    font-weight: bold;
    font-size: 1.3rem;
    color: white;
  }
  
  .header-right a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
  }
  
  .header-right a:hover {
    color: #00ffcc;
  }
  
  /* Blog Button */
  .blog-btn {
    background-color: white;
    color: #0077aa;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    transition: 0.3s ease;
  }
  
  .blog-btn:hover {
    background-color: #00b3b3;
    color: white;
  }
  

  .company-number {
    font-weight: bold;
    color: #333;
  }

  .container {
    display: flex;
    padding: 20px;
    gap: 20px;
  }

  .left-sidebar, .right-sidebar {
    width: 100%;
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
  }

  
  .center-content {
    padding: 40px 20px;
    text-align: center;
    background-color: #f9f9f9;
  }
  
  .center-content h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
  }
  
  .center-content h2 span {
    color: #2ecc71;
  }
  
  .blog-card-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .blog-card {
    height: 60vh;
    width: 20vw;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    cursor: pointer;
  }
  
  .blog-card:hover {
    transform: translateY(-5px);
  }
  
  .blog-card img {
    width: 100%;
    height: 13vw;
    object-fit: cover;
  }
  
  .blog-card-content {
    padding: 15px;
    text-align: left;
  }
  
  .blog-card-content h3 {
    font-size: 1vw;
    color: #0077cc;
    margin-bottom: 8px;
  }
  
  .blog-card-content p {
    font-size: .8vw;
    color: #555;
    line-height: 1.5;
  }
  .blog-card h4{
    color: rgb(255, 88, 88);
    font-size: .8rem;
  }
  .sidebar-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
  }

  .sidebar-link {
    display: block;
    color: #0066cc;
    text-decoration: none;
    margin: 8px 0;
  }

  .sidebar-link:hover {
    text-decoration: underline;
  }
  .mobile-humburger{
    display: none;
  }

  .blog-card-container a{
    text-decoration: none;
  }
  /* Mobile Responsive Layout for 480px and below */
/* Mobile Responsive Layout for 480px and below */
@media (max-width: 480px) {

  /* Header stays row-wise */
  .main-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    height: auto;
    width: 100%;
  }

  .main-header img {
    height: 35px;
    margin-left: 0;
  }

  .header-right {
    flex-direction: row;
    gap: 10px;
  }

  .header-right .phone {
    font-size: 1rem;
  }

  .blog-btn {
    padding: 6px 12px;
    font-size: 0.9rem;
  }

  /* Container goes column */
  .container {
    flex-direction: column;
    padding: 10px;
    gap: 15px;
  }

  /* Left Sidebar fix */
  .left-sidebar{
    display: none;
  }
  /* Mobile Hamburger Sidebar */
.mobile-sidebar-toggle {
  display: none;
}

#mobileSidebar {
  display: block;
  position: fixed;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background-color: #ffffff;
  box-shadow: 2px 0 6px rgba(0,0,0,0.1);
  padding: 20px 15px;
  z-index: 9999;
  transition: left 0.3s ease-in-out;
}

#mobileSidebar.open {
  left: 0;
}

#mobileSidebar .sidebar-link {
  display: block;
  font-size: 16px;
  margin: 10px 0;
  color: #0077cc;
  text-decoration: none;
  border-left: 4px solid #0077cc;
  padding: 10px 12px;
  border-radius: 4px;
  background-color: #f9f9f9;
}

#mobileSidebar .sidebar-link:hover {
  background-color: #e8f5ff;
}

#mobileSidebar .close-btn {
  background: none;
  border: none;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  margin-bottom: 20px;
}

.mobile-title {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
}

  .sidebar-title {
    font-size: 15px;
    margin-bottom: 10px;
    padding-left: 5px;
  }

  /* Center Blog Cards */
  .center-content {
    padding: 2px -90px;
  }

  .center-content h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .blog-card-container {
    grid-template-columns: 1fr;
    gap: 12vw;
  }

  .blog-card {
    width: 110%;
    height: auto;
  }

  .blog-card img {
    height: 200px;
    object-fit: cover;
  }

  a{
    text-decoration: none;
  }

  .blog-card-content {
    padding: 12px;
  }

  .blog-card-content h3 {
    font-size: 15px;
  }

  .blog-card-content p {
    font-size: 13px;
    color: #666;
  }

  /* Right Sidebar */
  .right-sidebar {
    width: 100%;
    padding: 10px 12px;
    background-color: #f2f2f2;
    border-radius: 8px;
    text-align: left;
    box-shadow: none;
  }

  .right-sidebar .sidebar-link {
    padding: 6px 10px;
    font-size: 14px;
    margin: 4px 0;
    border-left: 3px solid #ff6600;
    background-color: #fff;
    border-radius: 4px;
  }
  .mobile-humburger, .mobile-sidebar-toggle{
    display: block;
  }
}

