body {
    margin:0;
    font-family:'Segoe UI';
    background:#f9fafb;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: white;
}

.hero {
    padding:60px 20px;   /* reduced height */
    text-align:center;
    background:linear-gradient(135deg,#3b82f6,#60a5fa);
    color:white;
}

/* TEXT SIZE CONTROL */
.hero h1 {
    font-size:32px;
    margin-bottom:10px;
}

.hero p {
    font-size:16px;
    opacity:0.9;
}

@keyframes gradientMove {
    0% {background:linear-gradient(135deg,#3b82f6,#06b6d4);}
    100% {background:linear-gradient(135deg,#6366f1,#22c55e);}
}

/* CTA */
.cta {
    margin-top:20px;
    padding:12px 25px;
    background:white;
    color:#2563eb;
    border:none;
    border-radius:8px;
    cursor:pointer;
}

.trust {
    text-align:center;
    padding:20px 20px 10px;   /* reduced bottom padding */
    font-size:18px;
    color:#555;
}

.stats h2 {
    color:#2563eb;
}

/* MODULES */
.modules {
    padding:30px 20px 60px;   /* reduced top padding */
    text-align:center;
}

.module-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.card {
    background:white;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    transition:0.3s;
}

.card:hover {
    transform:translateY(-10px) scale(1.02);
}

/* NOTICE */
.notice {
    background:#facc15;
    padding:12px;
    text-align:center;
    font-weight:500;
    font-size:15px;
}

.notice .icon {
    margin-right:8px;
}

/* ABOUT */
.about {
    padding:40px 20px 20px;   /* reduced bottom space */
    text-align:center;
}

/* CONTACT */
.contact {
    padding:20px 20px 40px;   /* reduced top space */
}

/* CHAT */
.chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #2563eb;
    color: white;
    padding: 15px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
}

/* FOOTER */
footer {
    text-align:center;
    padding:30px;
    background:white;
}

/* DROPDOWN */
.login-dropdown {position:relative;}
.dropdown-menu {
    display:none;
    position:absolute;
    right:0;
    background:white;
}
.login-dropdown:hover .dropdown-menu {
    display:block;
}.page {
    max-width: 900px;
    margin: 60px auto;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.page h1 {
    margin-bottom: 20px;
}/* LOGIN BUTTON */
.login-btn {
    background:#e0edff;   /* light blue */
    color:#2563eb;        /* soft text */
    padding:6px 12px;     /* reduced size */
    border:none;
    border-radius:6px;
    font-size:14px;
    font-weight:500;
    cursor:pointer;
    transition:0.3s;
}

/* HOVER EFFECT */
.login-btn:hover {
    background:#2563eb;
    color:white;
}

/* DROPDOWN */
.login-dropdown {
    position:relative;
}

.dropdown-menu {
    display:none;
    position:absolute;
    right:0;
    width:260px;
    background:white;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
    overflow:hidden;
}

/* LOGIN CARDS */
.login-card {
    display:flex;
    align-items:center;
    padding:15px;
    text-decoration:none;
    color:#333;
    border-bottom:1px solid #eee;
    transition:0.3s;
}

.login-card span {
    font-size:24px;
    margin-right:10px;
}

.login-card:hover {
    background:#f1f5f9;
    transform:scale(1.02);
}

/* SHOW DROPDOWN */
.login-dropdown:hover .dropdown-menu {
    display:block;
}
/* CONTACT SECTION */
.contact {
    padding:60px;
    text-align:center;
}

.contact-container {
    display:flex;
    gap:30px;
    margin-top:30px;
    align-items:center;
}

/* MAP LEFT */
.map {
    flex:1;
}

.map iframe {
    width:100%;
    height:250px;
    border-radius:12px;
    border:0;
}

/* CONTACT RIGHT */
.contact-info {
    flex:1;
    text-align:left;
    font-size:16px;
}
@media (max-width:768px){
    .contact-container {
        flex-direction:column;
    }
}
.contact-container {
    background:white;
    padding:20px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}
body {
    font-family: 'Segoe UI', 'Inter', sans-serif;
}
.logo-box span {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
}nav a {
    text-transform: uppercase;
    font-size: 13px;
}
/* NAV MENU PREMIUM STYLE */
nav {
    display: flex;
    align-items: center;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #1e293b;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    position: relative;
    transition: 0.3s;
}

/* UNDERLINE ANIMATION */
nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #2563eb;
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}

/* HOVER COLOR */
nav a:hover {
    color: #2563eb;
}
/* FOOTER MAIN */
.footer {
    background: #ffffff;
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid #e5e7eb;
}

/* TOP TEXT */
.footer-top p {
    margin: 5px 0;
    font-size: 14px;
    color: #6b7280;
}

/* HIGHLIGHT BRAND */
.footer-top span {
    color: #1e293b;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* LINKS */
.footer-links {
    margin-top: 15px;
}

.footer-links a {
    margin: 0 10px;
    text-decoration: none;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}

/* HOVER EFFECT */
.footer-links a:hover {
    color: #2563eb;
}

/* UNDERLINE ANIMATION */
.footer-links a::after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background: #2563eb;
    transition: 0.3s;
    margin: auto;
}

.footer-links a:hover::after {
    width: 100%;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;   /* space between links */
    margin-top: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    text-decoration: none;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    transition: 0.3s;
}

/* HOVER EFFECT */
.footer-links a:hover {
    color: #2563eb;
}

/* UNDERLINE ANIMATION */
.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background: #2563eb;
    transition: 0.3s;
}

.footer-links a:hover::after {
    width: 100%;
}
.footer-links a:not(:last-child)::before {
    content: "|";
    margin-right: 15px;
    color: #ccc;
}
/* MODULE GRID */
.module-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

/* COMMON CARD */
.card {
    padding:30px;
    border-radius:14px;
    color:white;
    font-weight:700;
    font-size:18px;
    text-align:center;
    cursor:pointer;
    transition:0.3s;
}

/* COLORS */
.accounting { background: linear-gradient(135deg,#6366f1,#4f46e5); }
.gst        { background: linear-gradient(135deg,#22c55e,#16a34a); }
.income     { background: linear-gradient(135deg,#f59e0b,#d97706); }
.roc        { background: linear-gradient(135deg,#06b6d4,#0891b2); }
.audit      { background: linear-gradient(135deg,#ef4444,#dc2626); }
.payroll    { background: linear-gradient(135deg,#8b5cf6,#7c3aed); }

/* HOVER EFFECT */
.card:hover {
    transform: translateY(-8px) scale(1.03);
}
/* CARD */
.card {
    padding:30px;
    border-radius:16px;
    color:white;
    text-align:center;
    transition:0.3s;
    cursor:pointer;
}

/* ICON */
.card .icon {
    font-size:36px;
    margin-bottom:10px;
}

/* TITLE */
.card .title {
    font-size:18px;
    font-weight:700;
}

/* HOVER */
.card:hover {
    transform: translateY(-10px) scale(1.04);
}

.about {
    margin-bottom:0;
}

.contact {
    margin-top:0;
}