* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #020024, #090979, #000);
    color: white;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    padding: 20px 60px;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: white;
}

.btn {
    padding: 10px 18px;
    background: transparent;
    border: 1px solid #00d4ff;
    color: #00d4ff;
    cursor: pointer;
    border-radius: 5px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
}

/* Logo Image */
.logo img {
    width: 300px;
    height: 90px;
    object-fit: contain;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 60px;
    height: 90px;   /* âœ… FIXED HEIGHT */

    background: transparent;
}

.logo img {
    height: 140px;   /* âœ… control height only */
    width: auto;    /* maintain ratio */
}

nav {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}


.left p {
    max-width: 450px;
    line-height: 1.6;
}

header {
    position: relative;
}

header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #00d4ff,
        transparent
    );
}






















.blog-page {
    padding: 50px;
    background: linear-gradient(135deg, #020024, #090979, #000);
    text-align: center;
}

.blog-page h1 {
    font-size: 36px;
    margin-bottom: 50px;
    position: relative;

    color: #00d4ff; /* ðŸ”¥ FIX: bright cyber blue */
}

.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.blog-card {
    padding: 25px;
    border-radius: 15px;

    /* ðŸ”¥ Better glass effect (brighter) */
    background: rgba(0, 40, 120, 0.35);

    border: 1px solid rgba(0,212,255,0.3);

    backdrop-filter: blur(12px);

    text-align: left;

    position: relative;
    overflow: hidden;

    transition: 0.4s;
}


.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card h2 {
    font-size: 20px;
    margin-bottom: 10px;

    color: #00d4ff;   /* ðŸ”¥ highlight like cyber theme */
}


/* DATE */
.blog-card .date {
    font-size: 12px;
    color: #66e6ff;  /* brighter */
    margin-bottom: 15px;
}


/* CONTENT TEXT */
.blog-card p {
    font-size: 14px;
    color: #e6f7ff;  /* ðŸ”¥ much more readable */
    line-height: 1.6;
}





/* HOVER EFFECT */
.blog-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 0 40px rgba(0,212,255,0.7);
}






.blog-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
}




.wa-blue {
    width: 60px;
    height: 60px;
    background: #09ed55;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-blue img {
    width: 30px;
    filter: brightness(0) invert(1); /* makes icon white */
}


.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;   /* ✅ this pushes it to right */
    left: auto;    /* ✅ important (removes left alignment issue) */
    z-index: 9999;
}





/* FOOTER */
.footer {
    margin-top: 60px;
    padding: 20px 40px;

    text-align: center;

    background: rgba(0, 20, 60, 0.4);
    border-top: 1px solid rgba(0,212,255,0.3);

    backdrop-filter: blur(10px);
}

.footer-content p {
    margin: 5px 0;
    font-size: 13px;
    color: #aaa;
}

.footer-content p:first-child {
    color: #00d4ff;
    font-weight: 500;
}