: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;
    }
}

/* body */
.container {
    max-width: 960px;
    margin: 40px auto;
    padding: 24px
}

.hed {
    display: flex;
    gap: 16px;
    align-items: center
}



h1 {
    font-size: 1.6rem;
    margin-top: 65px;
}

p.lead {
    color: var(--muted);
    margin-top: 26px
}

.card {
    background: var(--card);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 6px 18px rgba(11, 17, 32, 0.06)
}

/* ol {
    padding-left: 1.25rem
}

li {
    margin: 12px 0
}

.note {
    background: #fff7ed;
    border-left: 4px solid #ffb020;
    padding: 12px;
    border-radius: 8px;
    color: #7a4d00
}
*/
.email {
    margin-top: 12px;
    color: var(--muted)
} 
 .note {
    background: #fff7ed;
    border-left: 4px solid #ffb020;
    padding: 12px;
    border-radius: 8px;
    color: #7a4d00
}
 .card h2 {
    margin-bottom: 16px; /* space below the heading */
}

.card p {
    margin-bottom: 14px; /* space below paragraphs */
}

.card ol {
    padding-left: 20px; /* keeps list aligned properly */
}

.card ol li {
    margin-bottom: 12px; /* space between list items */
    line-height: 1.5;    /* improves readability */
}

.card .email {
    margin-top: 20px; /* space before final paragraph */
}


.screenshots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 16px
}

.screenshot {
    background: #fafafa;
    border: 1px dashed #e6e9ef;
    border-radius: 10px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px
}

.screenshot img {
    max-width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px
}

.caption {
    font-size: 0.9rem;
    color: var(--muted);
    margin-top: 8px
}





@media (max-width:480px) {
    .container {
        padding: 16px;
        margin: 20px auto
    }
}


/* 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: #ecf0f5;
    /* 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: #e8ecf1;

}

.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;
}

@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**/



}