/* GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f7fb;
    color: #111;
    line-height: 1.6;
}

/* REMOVE LINK STYLE */
a,
a:visited,
a:hover,
a:active,
a:focus {
    text-decoration: none;
    color: inherit;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0f172a;
    padding: 12px 20px;
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.brand-link {
    display: inline-block;
    max-width: 70%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #facc15;
    font-size: 20px;
    font-weight: bold;
}

.logo-img {
    height: 40px;
    width: auto;
    border-radius: 6px;
    object-fit: contain;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: 0.3s;
}

.menu-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* NAV MENU */
nav ul.nav-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin: 0;
    padding: 0;
}

nav ul.nav-list li a {
    color: white;
    padding: 10px 12px;
    display: block;
    font-size: 14px;
    border-radius: 8px;
    transition: 0.3s;
}

nav ul.nav-list li a:hover {
    color: #facc15;
    background: rgba(255, 255, 255, 0.06);
}

/* HERO */
.hero-box {
    background:#1d2946;
    color: white;
    text-align: center;
    margin: 90px 20px 20px;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #facc15;
    opacity: 0;
    transform: translateY(50px);
    animation: slideFadeIn 1.2s forwards;
}

.hero-content p {
    font-size: 16px;
    max-width: 600px;
    margin: auto;
    line-height: 1.6;
    color: #e5e7eb;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.5s forwards;
    animation-delay: 0.5s;
}

@keyframes slideFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* NOTICE BAR */
.notice-bar {
    background: #dcfae8;
    overflow: hidden;
    margin: 20px;
    /* border-top: 2px solid #0f172a;
    border-bottom: 2px solid #0f172a; */
    border: 2px solid #8b8787;
    border-radius: 10px;
}

.notice-track {
    display: flex;
    width: max-content;
    animation: scrollLoop 17s linear infinite;
}

.notice-track span {
    padding: 10px 40px;
    font-weight: bold;
    color: #0f172a;
    white-space: nowrap;
}

@keyframes scrollLoop {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* SECTIONS */
.services,
.tools {
    padding: 30px 15px;
}

.services h2,
.tools h2 {
    margin-bottom: 20px;
    font-size: 22px;
    border-left: 4px solid orange;
    padding-left: 10px;
}

/* GRID */
.service-container,
.tool-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 15px;
    align-items: stretch;
}

/* CARDS */
.service-card,
.tool-card {
    background: white;
    padding: 15px;
    text-align: center;
    border-radius: 15px;
    border: 2px solid #e0e0e0;
    transition: 0.3s;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.service-card:hover,
.tool-card:hover {
    transform: translateY(-6px);
    border-color: #22c55e;
    background: #fff7ed;
    cursor: pointer;
}

/* ICON */
.service-card img,
.tool-card img {
    width: 45px;
    height: 45px;
    margin-bottom: 8px;
}

/* TEXT */
.service-card h3,
.tool-card h3 {
    font-size: 13px;
    line-height: 1.3;
    margin: 5px 0 0;
}

/* TAG */
.tag {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 2px 6px;
    font-size: 10px;
    border-radius: 8px;
    color: white;
}

.tag.new {
    background: #22c55e;
}

.tag.hot {
    background: #ef4444;
}

/* MODAL BACKDROP */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(6px);
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    overflow-y: auto;
}

/* MODAL BOX */
.modal-content {
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
    margin: 70px auto;
    padding: 25px;
    width: 100%;
    max-width: 950px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    animation: popup 0.35s ease;
}

@keyframes popup {
    from {
        transform: translateY(30px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* HEADER TITLE */
.modal-content h2 {
    margin: 0;
    font-size: 22px;
    font-weight: bold;
    color: #0f172a;
    border-left: 5px solid orange;
    padding-left: 10px;
}

/* CLOSE BUTTON */
.close {
    position: absolute;
    right: 18px;
    top: 12px;
    font-size: 24px;
    cursor: pointer;
    color: #64748b;
    transition: 0.3s;
}

.close:hover {
    color: red;
    transform: rotate(90deg);
}

/* MODAL GRID */
.modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

/* LINK CARDS */
.modal-grid a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    border-radius: 12px;
    background: white;
    border: 1px solid #e2e8f0;
    font-size: 14px;
    font-weight: 500;
    color: #0f172a;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modal-grid a::before {
    content: "↗";
    font-size: 14px;
    color: #3b82f6;
    flex-shrink: 0;
}

.modal-grid a:hover {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    transform: translateY(-4px) scale(1.02);
    border-color: #3b82f6;
}

.modal-grid a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(59, 130, 246, 0.1);
    transition: 0.3s;
}

.modal-grid a:hover::after {
    width: 100%;
}

/* INFO SECTION */
.hero-box-a {
    background: linear-gradient(135deg, #ffffff, #ffffff);
    color: white;
    margin: 50px 20px;
    padding: 20px 20px 30px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(14, 13, 13, 0.3);
}

.hero-content-a h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 15px;
    color: #0f172a;
}

.hero-content-a p {
    font-size: 16px;
    max-width: 100%;
    margin: auto;
    line-height: 1.6;
    color: #585757;
}

/* FAQ */
.hero-box-faq {
    background: #ffffff;
    color: #0f172a;
    margin: 50px 20px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(14, 13, 13, 0.3);
}

.hero-content-faq h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 25px;
    color: #0f172a;
}

.faq-item {
    border-bottom: 1px solid #e2e2e2;
    padding: 15px 0;
}

.faq-question {
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 10px;
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: #0f172a;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-answer {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    font-size: 16px;
    margin-top: 5px;
    color: #474444;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* FOOTER */
.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 60px 10%;
    border-top: 2px solid #4f46e5;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 230px;
}

.footer-col h2 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 10px;
}

.footer-col h2 span {
    color: #6366f1;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
    margin: 15px 0;
}

.footer-col h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 16px;
    position: relative;
    letter-spacing: 1px;
}

.footer-col h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 40px;
    height: 2px;
    background: #6366f1;
    transition: 0.3s;
}

.footer-col h3:hover::after {
    width: 70px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #94a3b8;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 6px;
}

.badges {
    margin-top: 20px;
}

.badge {
    display: inline-block;
    background: #1a2338;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-right: 10px;
    margin-bottom: 10px;
    color: #cbd5e1;
    transition: 0.3s;
}

.badge:hover {
    background: #2a3655;
}

.badge.secure {
    color: #22c55e;
}

.social-icons {
    margin-top: 15px;
}

.social-icons img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.2);
}

.social-icons a {
    display: inline-block;
    width: 44px;
    height: 44px;
    background: #1a2338;
    text-align: center;
    line-height: 44px;
    border-radius: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    color: #cbd5e1;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icons a:nth-child(1):hover {
    background: #25D366;
    color: white;
    transform: translateY(-6px);
}

.social-icons a:nth-child(2):hover {
    background: linear-gradient(45deg, #feda75, #f58529, #dd2a7b, #8134af);
    color: white;
    transform: translateY(-6px);
}

.social-icons a:nth-child(3):hover {
    background: #1877F2;
    color: white;
    transform: translateY(-6px);
}

.social-icons a:nth-child(4):hover {
    background: #FF0000;
    color: white;
    transform: translateY(-6px);
}

.social-icons a:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #1f2937;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #64748b;
}

.footer-bottom p:hover {
    color: #cbd5e1;
}

.footer-bottom .right {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    background-color: #25d366;
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-family: Arial, sans-serif;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
    margin-right: 8px;
}

.whatsapp-text {
    font-size: 16px;
}

/* TABLET */
@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
        padding: 12px 15px;
    }

    .brand-link {
        max-width: 80%;
    }

    .menu-toggle {
        display: flex;
    }

    nav {
        width: 100%;
    }

    nav ul.nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 12px;
        background: #0f172a;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    nav ul.nav-list.active {
        display: flex;
    }

    nav ul.nav-list li {
        width: 100%;
        text-align: left;
    }

    nav ul.nav-list li a {
        padding: 12px 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .logo {
        font-size: 17px;
    }

    .logo-img {
        height: 30px;
    }

    .hero-box {
        padding: 50px 15px;
    }

    .service-container,
    .tool-container {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .modal-content {
        margin: 30px auto;
        padding: 20px;
    }

    .modal-content h2 {
        font-size: 18px;
        padding-right: 30px;
    }

    .modal-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px;
    }

    .hero-content-a h2,
    .hero-content-faq h2 {
        font-size: 24px;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-bottom .right {
        justify-content: center;
    }

    .whatsapp-float {
        left: 15px;
        bottom: 15px;
        padding: 10px 12px;
    }

    .whatsapp-float img {
        width: 30px;
        height: 30px;
    }

    .whatsapp-text {
        font-size: 14px;
    }
}

/* MOBILE */
@media (max-width: 480px) {
    .navbar {
        padding: 10px 12px;
    }

    .brand-link {
        max-width: 82%;
    }

    .logo {
        font-size: 15px;
        gap: 8px;
    }

    .logo-img {
        height: 25px;
    }

    .hero-box {
        margin: 15px 10px;
        padding: 40px 15px;
    }

    .hero-content h1 {
        font-size: 20px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .services,
    .tools {
        padding: 25px 10px;
    }

    .services h2,
    .tools h2 {
        font-size: 18px;
    }

    .service-container,
    .tool-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .service-card,
    .tool-card {
        height: 130px;
        padding: 10px;
    }

    .service-card img,
    .tool-card img {
        width: 38px;
        height: 38px;
    }

    .service-card h3,
    .tool-card h3 {
        font-size: 11px;
    }

    .modal {
        padding: 10px;
    }

    .modal-content {
        margin: 15px auto;
        padding: 18px;
        border-radius: 16px;
    }

    .modal-grid {
        grid-template-columns: 1fr;
    }

    .hero-box-a,
    .hero-box-faq {
        margin: 25px 10px;
        padding: 18px 15px;
    }

    .hero-content-a h2,
    .hero-content-faq h2 {
        font-size: 20px;
    }

    .hero-content-a p,
    .faq-answer {
        font-size: 14px;
    }

    .faq-question {
        font-size: 15px;
    }

    .footer {
        padding: 40px 18px 25px;
    }

    .footer-col h2 {
        font-size: 24px;
    }

    .footer-col h3 {
        font-size: 15px;
    }

    .footer-col p,
    .footer-col ul li a,
    .footer-bottom,
    .footer-bottom .right {
        font-size: 13px;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 15px;
    }

    .whatsapp-float {
        left: 10px;
        bottom: 10px;
        padding: 8px 12px;
    }

    .whatsapp-float img {
        width: 28px;
        height: 28px;
        margin-right: 6px;
    }

    .whatsapp-text {
        font-size: 13px;
    }
}

