
        :root {
            --accent: #1a61b2;
            --accent-600: #0845b8;
            --dark: #071133;
            --muted: #6b7280;
            --bg: #f8fafc;
            --card: #ffffff;
            --container-max: 1200px;
            --radius: 12px;
            --glass: rgba(255, 255, 255, 0.75);
            --gradient: linear-gradient(135deg, var(--accent), #6c4cff);
            --ease: cubic-bezier(.2, .9, .2, 1);
            --shadow-1: 0 10px 30px rgba(2, 6, 23, .06);
            --shadow-2: 0 14px 40px rgba(2, 6, 23, .08);
        }

        /* ===== RESET ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f9f9ff;
            color: #333;
            overflow-x: hidden;
        }
          .hamburgerBtn{
      border: none;
    background-color: transparent;
    cursor: pointer;
    padding: 3px 8px;
     display: none;
    }
    .navMenuMobile{
      display: none;
    }


        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.97);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 20px;
            z-index: 999;
        }

        /* Logo */
        nav .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        nav .logo span {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a61b2;
        }

        /* Nav links */
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }

        nav ul li {
            position: relative;
        }

        nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            padding: 8px 10px;
            transition: all 0.3s ease;
        }

        /* Hover effect */
        nav ul li a::after {
            content: "";
            display: block;
            height: 2px;
            width: 0;
            background: #1a61b2;
            margin-top: 4px;
            transition: width 0.3s ease;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        nav ul li a:hover {
            color: #1a61b2;
            transform: translateY(-2px);
        }

        /* Dropdown */
        .has-dropdown .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            display: none;
            flex-direction: column;
            min-width: 180px;
            opacity: 0;
            transform: translateY(15px);
            transition: all 0.4s ease;
        }

        .has-dropdown:hover .dropdown {
            display: flex;
            opacity: 1;
            transform: translateY(0);
        }

        .dropdown a {
            padding: 12px 18px;
            color: #333;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .dropdown a:hover {
            background: #f3f7ff;
            color: #1a61b2;
            padding-left: 24px;
        }

        /* Hamburger menu */
        .menu-toggle {
            display: none;
            font-size: 1.8rem;
            color: #1a61b2;
            cursor: pointer;
        }

        @media(max-width: 850px) {
            nav ul {
                position: absolute;
                top: 70px;
                right: 0;
                flex-direction: column;
                align-items: center;
                gap: 1px;
                background: white;
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }

            nav ul.active {
                max-height: 300px;
                padding: 20px 0;
            }

            .menu-toggle {
                display: block;
            }

            /* Mobile dropdown inside menu */
            .has-dropdown .dropdown {
                position: static;
                opacity: 1;
                display: none;
                transform: none;
                box-shadow: none;
            }

            .has-dropdown.active .dropdown {
                display: flex;
            }
        }

        .containers {
            max-width: 900px;
           margin: 80px auto 60px auto;
            background: #ffffff;
            padding: 60px;
            border-radius: 12px;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
        }

        .containerss {
            max-width: 900px;
            margin: 60px auto;
            background: #ffffff;
            padding: 60px;
            border-radius: 12px;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
        }

        .containers h1 {
            text-align: center;
            font-size: 28px;
            color: #1a61b2;
            margin-bottom: 10px;
        }

        .containers h2 {
            color: #1a61b2;
            margin-top: 40px;
            font-size: 20px;
        }

        p,
        li {
            font-size: 16px;
            line-height: 1.7;
            color: #374151;
        }

        ul {
            margin-top: 10px;
            padding-left: 25px;
        }

        .updated {
            text-align: center;
            color: #6b7280;
            font-size: 14px;
            margin-bottom: 40px;
        }

        /* footer {
            background-color: #0b63ff;
            color: white;
            text-align: center;
            padding: 40px 20px;
            margin-top: 60px;
        }

        footer .links {
            margin-bottom: 10px;
        }

        footer a {
            color: white;
            margin: 0 10px;
            text-decoration: none;
            font-size: 14px;
            transition: opacity 0.3s ease;
        }

        footer a:hover {
            opacity: 0.8;
        }

        footer p {
            margin: 5px 0 0;
            font-size: 13px;
            color: #e5e7eb;
        }

        @media (max-width: 640px) {
            nav ul {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }

            .container {
                padding: 30px;
                margin: 20px;
            }

            h1 {
                font-size: 24px;
            }

            h2 {
                font-size: 18px;
            }
        } */

        /* Footer */
        footer {
            background-color: #333;
            background: var(--dark);
            color: #cbd5e1;
            padding: 36px 24px
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 18px;
            max-width: var(--container-max);
            margin: 0 auto
        }

        footer a {
            color: #cbd5e1;
            display: block;
            margin: 6px 0
        }

        /* Back to top */
        .backtop {
            position: fixed;
            right: 20px;
            bottom: 20px;
            background: var(--accent);
            color: #fff;
            border-radius: 999px;
            padding: 12px;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 12px 40px rgba(11, 99, 255, .18);
            cursor: pointer;
            z-index: 1400;
            opacity: 0;
            transform: translateY(8px) scale(.98);
            transition: opacity .28s var(--ease), transform .28s var(--ease);
        }

        .backtop.show {
            opacity: 1;
            transform: translateY(0) scale(1)
        }

        a {
            text-decoration: none;
            text-align: left;
        }

        /* Footer links hover effect */
        footer a {
            color: #ebeef1;
            /* Default link color */
            text-decoration: none;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        footer a:hover {
            color: #1a61b2;
            /* Change color on hover */
            transform: translateX(5px);
            /* Optional slight slide effect */
        }

        footer p {
            color: #f0f3f6;

        }

        .piaddress p {

            letter-spacing: -.5px;
            position: relative;
            display: flex;
            flex-flow: row nowrap;
            gap: 10px;
            margin: 0 0;
            color: #ffff;
        }

        footer h4 {
            margin-bottom: 15px;
            /* space below the h4 */
        }

        hr {
            border: none;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            margin-top: 20px;
            /* translucent white */
        }

        /* footeer bottom */
        .terms {
            display: flex;
            align-items: center;
            justify-content: center;
            /* use 'flex-start' if you prefer left alignment */
            gap: 8px;
            margin-top: 18px;
            color: #94a3b8;
            font-size: 0.9rem;
            flex-wrap: wrap;
            /* prevents overflow on smaller screens */
        }

        .terms a {
            color: #e2e9f3;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .terms a:hover {
            color: #1a61b2;
        }
        .boxed {
  border: 1px solid #d1d5db;      /* light gray border */
  background-color: #f9fafb;      /* light background */
  padding: 16px;                  /* space inside box */
  border-radius: 8px;             /* smooth corners */
  max-width: 700px;               /* optional width limit */
  margin: 20px auto;              /* center the box */
}

@media screen and (min-width: 320px) and (max-width: 767px){
/*** Mobile Menu Starts**/
   .hamburgerBtn{
    display: block;
   }
   .navMenuDesktop{
    display: none;
   }
   .navMenuMobile.show {
        display: flex;
        position: absolute;
        background: #ddd;
        z-index: 999999;
        flex-direction: column;
        max-height: none;
                padding: 10px;
}
   .navMenuMobile.show  .has-dropdown .dropdown {
               position: static;
        opacity: 1;
        display: block;
        transform: none;
        box-shadow: none;
        width: 100%;
        text-align: left;
        background: transparent;
        padding-left: 20px;
}

   ul.navMenuMobile.show  li {
    text-align: center;
    padding: 1px 0;
    display: flex;
    flex-flow: column wrap;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
}
   ul.navMenuMobile.show  li a{
    display: block;
   }
 ul.navMenuMobile.show li a::after {
    content: none;
}

/*** Mobile Menu Ends**/



}
