 body {
      margin: 0;
      width: 100%;
      font-family: 'Segoe UI', SegoeUI, "Helvetica Neue", Helvetica, Arial, sans-serif;
  overflow-x: hidden;
    }
a
{
    font-family: 'Segoe UI', SegoeUI, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 12;
}
p
{
    font-family: 'Segoe UI', SegoeUI, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 12;
}

/* Topbar container */  
.topbar {
      background-color: #cfe2f3;
      color: #000;
      padding: 0 20px;
      height: 38px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
    }

    .topbar .left,
    .topbar .right {
      display: flex;
      align-items: center;
      height: 100%;
    }

    .topbar a {
      color: #000;
      text-decoration: none;
      margin: 0 8px;
      position: relative;
      display: inline-flex;
      align-items: center;
      height: 100%;
    }

    .topbar a:hover {
      text-decoration: underline;
    }

    .topbar a::after {
      content: "";
      position: absolute;
      right: -8px;
      top: 0;
      height: 100%;
      width: 1px;
      background-color: #444;
      pointer-events: none;
    }

    .topbar a:last-child::after {
      display: none;
    }

    .topbar .icons {
      display: flex;
      align-items: center;
    }

    .topbar .icons span {
      padding: 0 6px;
    }

    .icon {
      font-style: normal;
    }

    .icon.twitter::before { content: "🐦"; }
    .icon.sitemap::before { content: "📍"; }

    .topbar .font-resize {
      font-weight: bold;
      margin: 0 10px;
    }








    /* Header */
    .header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background-color: #f9f7f7;
      color: black;
      padding: 18px 20px;
      flex-wrap: wrap;
    }

    .header-logo {
      flex: 0 1 auto;
      max-width: 140px;
    }

    .header-logo img {
      max-width: 80%;
      height: auto;
      display: block;
    }

    .header-title {
      flex: 1;
      text-align: center;
      font-size: 1.5rem;
      font-weight: bold;
    }

    @media (max-width: 600px) {
      .header-title {
        font-size: 1.2rem;
      }

      .header-logo {
        max-width: 110px;
      }
    }

    /* Sticky Navbar */
    /* Navbar */
    .navbar {
      background-color: #162F6A;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 6px 20px;
      position: sticky;
      top: 0;
      z-index: 2;
      border-bottom: 1px solid rgba(0, 0, 0, .12);
    }
    @media (max-width: 768px) {
      .navbar  {
        background-color: white;
      }
    }
    .navbar nav {
      display: flex;
    }

    .navbar nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .navbar nav > ul > li {
      display: inline-block;
      position: relative;
    }

    .navbar nav a {
      text-decoration: none;
      background-color: #162F6A;
      color: #ffffff;
      padding: 14px 15px;
      display: flex;
      line-height: 22px;
      align-items: center;
      gap: 5px;
    }
    .navbar nav a:hover
    {
      background-color: white;
      color: #000;
    }

    .navbar nav ul li:hover
    {
      background-color: #000;
    }

    /* Show submenu on hover */
    .navbar nav li:hover > ul {
      display: block;
    }

    /* Submenu styles */
    .navbar nav ul ul {
      display: none;
      position: absolute;
      background-color: #333;
      min-width: 200px;
      top: 100%;
      left: 0;
      z-index: 9999;
      border-bottom: 1px solid rgba(0, 0, 0, .12);
    }

    .navbar nav ul ul li a {
      color: white;
      padding: 8px 15px;
    }

    .navbar nav ul ul ul {
      top: 0;
      left: 100%;
    }

    .navbar nav ul ul.auto-left {
      left: auto;
      right: 100%;
    }

    /* Icons only if submenu exists */
    .navbar nav li > a::after {
      content: '';
    }

    /* Top-level items with submenu: ▼ down arrow */
    .navbar nav > ul > li:has(ul) > a::after {
        content: "\e313"; /* Material Icons: chevron_right */
        font-family: 'Material Icons Outlined';
      font-size: 10px;
      margin-left: 5px;
      display: inline-block;
      transition: transform 0.2s ease;
    }

    /* Nested submenu items with further submenus: ► right arrow */
    .navbar nav ul ul li:has(ul) > a::after {
      content: "\e5cc"; /* Material Icons: chevron_right */
      font-family: 'Material Icons Outlined';
      font-size: 18px;
      margin-left: auto;
    }

    /* Remove arrow for nested items without submenu */
    .navbar nav ul ul li:not(:has(ul)) > a::after {
      content: '';
    }


    /* Hamburger */
    .hamburger {
      display: none;
      font-size: 24px;
      cursor: pointer;
    }

    /* Mobile Sidebar Menu */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      left: -100%;
      width: 280px;
      height: 100%;
      background-color:white;
      transition: left 0.3s ease;
      z-index: 1001;
      overflow-y: auto;
    }

    .mobile-menu.active {
      left: 0;
    }

    .mobile-menu-header {
      background: #f9f7f7;
      color: #c21b1b;
      padding: 15px;
      font-weight: bold;
      text-align: center;
      bottom: 0;
      border-bottom: 1px solid #ddd;
    }
    .mobile-menu-footer {
      background: #f9f7f7;
      color: #c21b1b;
      padding: 4px 15px;
      font-weight: bold;
      text-align: center;
      bottom: 0;
      margin-top: 20px;
    }
    .mobile-menu-footer p a
    {
      color: rebeccapurple;
    }
    .mobile-menu-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .mobile-menu-header .logo {
      font-size: 20px;
    }

    .mobile-menu ul {
      list-style: none;
      margin: 0;
      padding: 0 15px;
    }

    .mobile-menu li {
      padding: 14px 0;
      border-bottom: 1px solid #ddd;
      position: relative;
    }

    .mobile-menu a {
      text-decoration: none;
      color: #000;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .mobile-menu li ul {
      display: none;
      padding-left: 15px;
    }

    .mobile-menu li.show > ul {
      display: block;
    }

    .mobile-menu li > a:after {
      content: "\e5cf";
      font-family: 'Material Icons Outlined';
      font-size: 18px;
    }

    .mobile-menu li:not(:has(ul)) > a:after {
      content: '';
    }

    .mobile-menu li.back-btn a {
      font-weight: bold;
      color: var(--primary-color);
    }

    .overlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.6);
      z-index: 1000;
    }

    .overlay.active {
      display: block;
    }

    @media (max-width: 768px) {
      .navbar nav {
        display: none;
      }

      .hamburger {
        display: block;
      }

      .mobile-menu {
        display: block;
      }
    }

    /* Page Layout */
    .main-container {
      background-color: #fff;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 20px;
      padding: 20px;
      flex-wrap: wrap;
    }
    /* Responsive Layout: 2 per row on small screens */
    @media (max-width: 768px) {
        .main-container {
            padding: 10px;
        }
    }
    .main-content {
      flex: 1;
      min-width: 0;
      padding: 2px;
      background-color: #fff;
      border: 1px solid rgba(0, 0, 0, .12);
      border-radius: 2px;
    }

    .main-content h2 {
      margin-top: 0;
      color: #2c3e50;
    }

    .main-content ul {
      padding-left: 20px;
      margin: 0;
    }

    .main-content ul li {
      margin-bottom: 10px;
      color: #333;
    }

    .right-sidebar {
      width: 300px;
      background-color: #fff;
      border: 1px solid rgba(0, 0, 0, .12);
      border-radius: 8px;
      padding: 20px;
    }

    .right-sidebar h3 {
      margin-top: 0;
      color: #d35400;
    }

    .ad-box img {
      width: 100%;
      height: auto;
      border: 1px solid #ccc;
      border-radius: 4px;
    }

    /* ✅ Responsive Stack Layout updated for max-width: 1024px */
    @media (max-width: 1024px) {
      .main-container {
        flex-direction: column;
        width: 100%;
        box-sizing: border-box;
      }

      .main-content,
      .right-sidebar {
        width: 100%;
        box-sizing: border-box;
      }

      .right-sidebar {
        margin-top: 20px;
      }
    }

    .service-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.service-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Service Box Styling */
.service-box {
    flex: 1 1 calc(20% - 20px);
    box-sizing: border-box;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, .12);
    text-align: center;
    background: #f9f9f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
}

/* Slight delay for each box animation */
.service-box:nth-child(1) { animation-delay: 0s; }
.service-box:nth-child(2) { animation-delay: 0.1s; }
.service-box:nth-child(3) { animation-delay: 0.2s; }
.service-box:nth-child(4) { animation-delay: 0.3s; }
.service-box:nth-child(5) { animation-delay: 0.4s; }

/* Responsive Image */
.service-box img {
    max-width: 80px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

/* Hover Animation */
.service-box:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Paragraph visibility below 900px */
@media (max-width: 900px) {
    .service-box p {
        display: none;
    }
}

/* Responsive Layout: 2 per row on small screens */
@media (max-width: 600px) {
    .service-box {
        flex: 1 1 calc(50% - 20px);
    }
}

/* Animation Keyframes */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




    footer {
      background-color: #f2f2f2;
      color: #616161;
      padding: 30px 20px 0;
      border-top: 1px solid var(--cm-sys-color-hairline, rgba(0, 0, 0, .12));
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      text-align: left;
    }

    .footer-column {
      flex: 1 1 200px;
    }

    .footer-column h3 {
      font-size: 16px;
      margin-bottom: 10px;
      color: #616161;
    }

    .footer-column p {
      font-size: 12px;
      color: #616161;
      margin: 10px 0;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
    }

    .footer-column ul li {
      margin: 8px 0;
      font-size: 12px;
      color: #616161;
    }

    .footer-column ul li::before {
      content: "»";
      color: #00bcd4;
      margin-right: 8px;
    }

    .footer-logo {
      max-width: 150px;
      margin-bottom: 10px;
    }

    /* Responsive grid for small devices */
    @media (max-width: 600px) {
      .footer-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }
      .footer-column-one {
        grid-column: 1 / 3;
      }
    }

    @media (max-width: 320px) {
      .footer-container {
        grid-template-columns: 1fr 1fr;
      }
      .footer-column-one {
        grid-column: 1 / 3;
      }
    }

    /* Footer Bottom */
    .footer-bottom {
      margin-top: 30px;
      padding: 15px 0px;
      background-color: #f2f2f2;
      border-top: 1px solid var(--cm-sys-color-hairline, rgba(0, 0, 0, .12));
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      font-size: 12px;
      color: #616161;
    }

    @media (max-width: 500px) {
      .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 5px;
      }
    }


.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
}