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

body {
    background: #0b0c10;
    font-family: 'Poppins', sans-serif;
    color: #c5c6c7;
    position: relative;
    z-index: 5;
}

/* ===== HEADER ===== */
header {
    background: #1f2833;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #45a29e;
    position: relative;
    z-index: 50;
}

.logo img {
    height: 55px;              /* adjust size */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 6px #66fcf1); /* neon glow */
    transition: 0.3s ease;
}

.logo img:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 12px #66fcf1);
}
/* NAVBAR */
nav a {
    color: #c5c6c7;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover,
nav a.active {
    color: #66fcf1;
    text-shadow: 0 0 8px #66fcf1;
}

.btn-nav {
    padding: 8px 15px;
    border: 2px solid #66fcf1;
    border-radius: 6px;
    transition: 0.3s;
}

.btn-nav:hover {
    background: #66fcf1;
    color: #0b0c10;
}

/* ===== HERO ===== */
.hero {
    text-align: center;
    padding: 120px 20px;
    position: relative;
    z-index: 20;
}

.glitch {
    font-size: 70px;
    font-weight: 900;
    color: #66fcf1;
    position: relative;
    text-transform: uppercase;
}

/* ===== SERVICE CARDS ===== */
.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    padding: 40px 20px;
    position: relative;
    z-index: 20;
}

.card {
    width: 30%;
    background: rgba(31,40,51,0.75);
    backdrop-filter: blur(10px);
    border: 1px solid #45a29e;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 0 12px rgba(102,252,241,0.18);
    transition: 0.3s;
    cursor: pointer;
    text-decoration: none;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 18px rgba(102,252,241,0.4);
}

.card h3 {
    color: #66fcf1;
    font-size: 20px;
    margin-bottom: 10px;
}

/* Make cards fully clickable */
a.full-link {
    display: block;
    color: inherit;
}

/* ===== FOOTER ===== */
footer {
    margin-top: 60px;
    background: #1f2833;
    border-top: 2px solid #45a29e;
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 20;
}

/* ===== BACKGROUND CANVAS FIX ===== */
#matrix,
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -5 !important;
    pointer-events: none;
}

/* Cursor */
#cursor {
    position: fixed;
    width: 14px;
    height: 14px;
    background: #66fcf1;
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: screen;
    filter: blur(3px);
    z-index: 9999;
}

/* Scroll Button */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #66fcf1;
    padding: 12px;
    font-size: 22px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    display: none;
    z-index: 100;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .card {
        width: 100% !important;
    }
}
.hero .cta-btn {
    display: inline-block;
    background: #45a29e;
    color: #0b0c10;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
    border: 2px solid #66fcf1;
    box-shadow: 0 0 12px #66fcf1;
}

.hero .cta-btn:hover {
    background: #66fcf1;
    color: #0b0c10;
    transform: translateY(-4px);
    box-shadow: 0 0 20px #66fcf1;
}
/* FIX: Make entire service card clickable */
.card-link {
    display: block !important;
    text-decoration: none;
    color: inherit;
}
/* ============================
   FAQ SECTION (BOX STYLE)
   ============================ */

.faqs {
    padding: 60px 20px;
    text-align: center;
    width: 90%;
    max-width: 900px;
    margin: auto;
}

.faq-box {
    background: rgba(31,40,51,0.92);
    border: 1px solid #45a29e;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 0 12px rgba(102,252,241,0.3);
    transition: 0.3s;
}

.faq-box:hover {
    box-shadow: 0 0 20px rgba(102,252,241,0.7);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px;
    text-align: left;
    font-size: 18px;
    color: #66fcf1;
    cursor: pointer;
    font-weight: 600;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: rgba(11,12,16,0.9);
    padding: 0 20px;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 10px 0 20px 0;
    color: #c5c6c7;
}
/* -------------------------------
   TESTIMONIALS BOX DESIGN
-------------------------------- */
.testimonials {
    padding: 70px 20px;
    text-align: center;
}

.testimonial-box {
    background: rgba(31, 40, 51, 0.92);
    border: 1px solid #45a29e;
    border-radius: 14px;
    padding: 25px;
    margin: 20px auto;
    max-width: 800px;
    box-shadow: 0 0 20px rgba(102,252,241,0.2);
    transition: 0.3s;
}

.testimonial-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(102,252,241,0.6);
}

.testimonial-text {
    color: #c5c6c7;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.testimonial-author {
    color: #66fcf1;
    font-weight: 600;
    font-size: 16px;
}
/* -------------------------------------
   BLOG LIST BOXES
-------------------------------------- */
.blog-list {
    max-width: 900px;
    margin: 120px auto 50px;
    padding: 20px;
}

.blog-list .section-title {
    text-align: left;
    color: #66fcf1;
    font-size: 32px;
    margin-bottom: 25px;
    text-shadow: 0 0 10px #66fcf1;
}

/* Blog Card */
.blog-box {
    background: rgba(31,40,51,0.85);
    border: 1px solid #45a29e;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 0 22px rgba(102,252,241,0.2);
    backdrop-filter: blur(7px);
    transition: 0.3s;
}

.blog-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 28px rgba(102,252,241,0.45);
}

.blog-box h3 {
    font-size: 24px;
    color: #66fcf1;
    margin-bottom: 10px;
}

.blog-box p {
    color: #c5c6c7;
    margin-bottom: 15px;
}

/* Read More Button */
.blog-read {
    color: #66fcf1;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.blog-read:hover {
    text-shadow: 0 0 10px #66fcf1;
}
