/* Responsive fix for blog grid on small screens */
@media (max-width: 768px) {
    .blog-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }
    .blog-card {
        width: 100% !important;
        margin: 0 !important;
    }
}
/* ===== Responsive Fixes: Remove Horizontal Scroll ===== */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .nav-links {
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        min-width: 0 !important;
        box-sizing: border-box;
    }
    body {
        position: relative;
        overflow-x: hidden !important;
    }
}
/* Mobile: slide-down menu from top */
@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100vw;
        background: rgba(10, 15, 27, 0.98);
        flex-direction: column;
        gap: 0.5rem;
        /* leave space for the top bar (logo + hamburger) */
        padding: 72px 20px 16px 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.35s ease, transform 0.35s ease;
        z-index: 9999;
        display: flex;
        box-shadow: 0 8px 30px rgba(0,0,0,0.6);
    }

    .nav-links a,
    .nav-links .nav-link {
        padding: 0.9rem 0;
        display: block;
        width: 100%;
    }

    .nav-links.active {
        max-height: calc(100vh - 72px); /* fill remaining viewport under top bar */
        padding: 72px 20px 20px 20px;
        overflow: auto;
    }
}
/* ===== Fix for WordPress Dynamic Menu Link Colors ===== */
.nav-links a,
.nav-links .nav-link {
    color: var(--text-light) !important;
    text-decoration: none !important;
    transition: var(--transition-smooth);
    position: relative;
    font-weight: 500;
}
a {
    list-style:none !important
     ;
}

.nav-links a:hover,
.nav-links .nav-link:hover {
    color: var(--primary-cyan) !important;
}

.nav-links a::after,
.nav-links .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--secondary-purple));
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links .nav-link:hover::after {
    width: 100%;
}
/* ===== CSS Variables - Color Scheme from Logo ===== */
:root {
    --primary-cyan: #00d4ff;
    --primary-blue: #0099ff;
    --secondary-purple: #a855f7;
    --dark-bg: #0a0f1b;
    --dark-card: #111827;
    --text-white: #ffffff;
    --text-light: #e5e7eb;
    --border-color: #1f2937;
    --accent-pink: #d946ef;
    --accent-orange: #f97316;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== Page Loader ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-bg) 0%, rgba(20, 30, 50, 0.95) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut 0.8s ease forwards;
    animation-delay: 2s;
}

.page-loader.hidden {
    display: none;
}

@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
}

.loader-content {
    text-align: center;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 5px solid var(--border-color);
    border-top: 5px solid var(--primary-cyan);
    border-right: 5px solid var(--secondary-purple);
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
    margin: 0 auto 30px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-content p {
    color: var(--primary-cyan);
    font-size: 1.1rem;
    letter-spacing: 3px;
    animation: pulse 1.5s ease-in-out infinite;
    font-weight: 600;
}

.loader-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--secondary-purple);
    border-radius: 50%;
    margin-left: 5px;
    animation: bounce 1.4s infinite ease-in-out;
}

.loader-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* ===== Scroll Progress Bar ===== */
#progressBar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--secondary-purple), var(--primary-cyan));
    width: 0%;
    z-index: 9998;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
    transition: width 0.1s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
    opacity: 0;
    animation: bodyFadeIn 0.8s ease forwards;
    animation-delay: 1.2s;
}

@keyframes bodyFadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    0% { 
        opacity: 0;
        transform: translateY(30px);
    }
    100% { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Navigation Bar ===== */
.navbar {
    background-color: rgba(10, 15, 27, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.1);
    animation: slideDown 0.6s ease-out forwards;
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-cyan), var(--secondary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 120px;
    height: 80px;
    /* border-radius: 8px; */
    /* border: 2px solid var(--primary-cyan); */
    object-fit: cover;
    transition: var(--transition-smooth);
}

.logo-img:hover {
    border-color: var(--secondary-purple);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.logo-text {
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary-cyan);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--secondary-purple));
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}
    .nav-links.active {
        display: flex;
    }

 .hamburger { 
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: transparent;
    border: 0;
    padding: 8px;
    z-index: 101;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-cyan);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
} */

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, rgba(10, 15, 27, 1) 0%, rgba(20, 30, 50, 0.5) 100%);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    animation: float 25s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out forwards;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-cyan), var(--secondary-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.cta-btn {
    background: linear-gradient(135deg, var(--primary-cyan), var(--secondary-purple));
    color: var(--dark-bg);
    border: none;
    padding: 12px 40px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
}

.cta-btn:active {
    transform: translateY(-1px);
}

/* ===== Articles Section ===== */
.articles {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(10, 15, 27, 0.92) 0%, rgba(15, 25, 45, 0.85) 100%),
                url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=3000&q=95') center/cover no-repeat fixed;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--secondary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: linear-gradient(135deg, var(--dark-card) 0%, rgba(20, 30, 50, 0.5) 100%);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 25px;
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-card:nth-child(3) { animation-delay: 0.3s; }
.blog-card:nth-child(4) { animation-delay: 0.4s; }
.blog-card:nth-child(5) { animation-delay: 0.5s; }
.blog-card:nth-child(6) { animation-delay: 0.6s; }

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
}

.blog-card:hover::before {
    left: 100%;
}

.card-header {
    margin-bottom: 15px;
}

.category {
    display: inline-block;
    color: var(--dark-bg);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.cat-ai {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
}

.cat-llm {
    background: linear-gradient(135deg, #4ecdc4, #44a5a0);
}

.cat-tech {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
}

.cat-tutorial {
    background: linear-gradient(135deg, #ffa502, #ff7e38);
}

.cat-research {
    background: linear-gradient(135deg, #a855f7, #d946ef);
}

.category:hover {
    transform: scale(1.1);
}

.blog-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-white);
    transition: var(--transition-smooth);
}

.blog-card:hover h3 {
    color: var(--primary-cyan);
}

.blog-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-light);
}

.read-more {
    color: var(--primary-cyan);
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition-smooth);
    display: inline-block;
}

.read-more:hover {
    color: var(--secondary-purple);
    transform: translateX(5px);
}

/* ===== About Section ===== */
.about {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(10, 15, 27, 0.92) 0%, rgba(15, 25, 45, 0.85) 100%),
                url('https://images.unsplash.com/photo-1460925895917-adf4e565b575?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=3000&q=95') center/cover no-repeat fixed;
    position: relative;
}

/* ===== Features Section ===== */
.features {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(10, 15, 27, 0.92) 0%, rgba(15, 25, 45, 0.85) 100%),
                url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=3000&q=95') center/cover no-repeat fixed;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    background: linear-gradient(135deg, var(--dark-card) 0%, rgba(20, 30, 50, 0.5) 100%);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 35px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-15px);
    border-color: var(--secondary-purple);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.2);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: bounce 3s ease-in-out infinite;
}

.feature-card:nth-child(1) .feature-icon { animation-delay: 0s; }
.feature-card:nth-child(2) .feature-icon { animation-delay: 0.1s; }
.feature-card:nth-child(3) .feature-icon { animation-delay: 0.2s; }
.feature-card:nth-child(4) .feature-icon { animation-delay: 0.3s; }
.feature-card:nth-child(5) .feature-icon { animation-delay: 0.4s; }
.feature-card:nth-child(6) .feature-icon { animation-delay: 0.5s; }

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-cyan);
    transition: var(--transition-smooth);
}

.feature-card:hover h3 {
    color: var(--secondary-purple);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== Stats Section ===== */
.stats {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(10, 15, 27, 0.92) 0%, rgba(15, 25, 45, 0.85) 100%),
                url('https://images.unsplash.com/photo-1557821552-17105176677c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=3000&q=95') center/cover no-repeat fixed;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.stat-card {
    background: linear-gradient(135deg, var(--dark-card) 0%, rgba(20, 30, 50, 0.5) 100%);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: pulse-bg 3s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.stat-card:hover {
    border-color: var(--primary-cyan);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-cyan), var(--secondary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

/* ===== Newsletter Section ===== */
.newsletter {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(10, 15, 27, 0.92) 0%, rgba(15, 25, 45, 0.85) 100%),
                url('https://images.unsplash.com/photo-1622035473374-431d3bbf5386?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=3000&q=95') center/cover no-repeat fixed;
    position: relative;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 15, 27, 0.9) 0%, rgba(20, 30, 50, 0.8) 100%);
    z-index: 1;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out forwards;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    background-color: var(--dark-card);
    border: 2px solid var(--border-color);
    color: var(--text-white);
    padding: 14px 20px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    background-color: rgba(0, 212, 255, 0.05);
}

.newsletter-form input::placeholder {
    color: var(--text-light);
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(10, 15, 27, 0.92) 0%, rgba(15, 25, 45, 0.85) 100%),
                url('https://images.unsplash.com/photo-1516321828183-c98e6ced3e0c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=3000&q=95') center/cover no-repeat fixed;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.testimonial-card {
    background: linear-gradient(135deg, var(--dark-card) 0%, rgba(20, 30, 50, 0.5) 100%);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--secondary-purple), var(--primary-cyan));
    transform: translateX(-100%);
    animation: slideIn 0.8s ease forwards;
}

@keyframes slideIn {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: inline-block;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-cyan), var(--secondary-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--dark-bg);
    font-size: 1.2rem;
}

.author-name {
    font-weight: 600;
    color: var(--text-white);
}

.author-title {
    color: var(--primary-cyan);
    font-size: 0.9rem;
}

/* ===== FAQ Section ===== */
.faq {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(10, 15, 27, 0.92) 0%, rgba(15, 25, 45, 0.85) 100%),
                url('https://images.unsplash.com/photo-1516321828183-c98e6ced3e0c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=3000&q=95') center/cover no-repeat fixed;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 50px;
}

.faq-item {
    background: linear-gradient(135deg, var(--dark-card) 0%, rgba(20, 30, 50, 0.5) 100%);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }

.faq-item.open {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-color: var(--primary-cyan);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 25px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--primary-cyan);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-cyan);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 25px 20px 25px;
    color: var(--text-light);
    line-height: 1.8;
}
.contact {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(10, 15, 27, 0.92) 0%, rgba(15, 25, 45, 0.85) 100%),
                url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=3000&q=95') center/cover no-repeat fixed;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: fadeInUp 0.8s ease-out forwards;
}

.contact-form input,
.contact-form textarea {
    background-color: var(--dark-card);
    border: 2px solid var(--border-color);
    color: var(--text-white);
    padding: 12px 15px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    background-color: rgba(0, 212, 255, 0.05);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-light);
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-cyan), var(--secondary-purple));
    color: var(--dark-bg);
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, rgba(10, 15, 27, 0.98) 0%, rgba(15, 25, 40, 0.95) 100%);
    border-top: 2px solid var(--border-color);
    padding: 60px 20px 30px;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), var(--secondary-purple), transparent);
    opacity: 0.5;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-section {
    animation: fadeInUp 0.8s ease-out forwards;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--secondary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-cyan), var(--secondary-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-weight: bold;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 1.1rem;
}

.footer-social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--primary-cyan);
    transform: translateX(5px);
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-newsletter input {
    background-color: rgba(20, 30, 50, 0.5);
    border: 2px solid var(--border-color);
    color: var(--text-white);
    padding: 12px 15px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-newsletter input::placeholder {
    color: var(--text-light);
}

.footer-newsletter input:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
    background-color: rgba(0, 212, 255, 0.05);
}

.footer-newsletter button {
    background: linear-gradient(135deg, var(--primary-cyan), var(--secondary-purple));
    color: var(--dark-bg);
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-smooth);
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.footer-newsletter button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);
}

.footer-bottom {
    border-top: 2px solid var(--border-color);
    padding: 40px 0 20px 0;
    margin-top: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.5s;
}

.footer-bottom p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.footer-bottom-links a {
    color: var(--primary-cyan);
    text-decoration: none;
    transition: var(--transition-smooth);
    padding: 8px 15px;
    border-radius: 5px;
    position: relative;
    font-weight: 500;
}

.footer-bottom-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--secondary-purple));
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--secondary-purple);
    background-color: rgba(0, 212, 255, 0.1);
}

.footer-bottom-links a:hover::before {
    width: calc(100% - 30px);
}

.footer-bottom-links span {
    color: var(--border-color);
    opacity: 0.7;
}

/* ===== Breadcrumb ===== */
.breadcrumb {
    padding: 20px;
    background-color: rgba(20, 30, 50, 0.3);
    margin-bottom: 40px;
    border-radius: 8px;
}

.breadcrumb a {
    color: var(--primary-cyan);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.breadcrumb a:hover {
    color: var(--secondary-purple);
}

.breadcrumb span {
    color: var(--text-light);
    margin: 0 10px;
}

/* ===== Post Section ===== */
.post-header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out forwards;
}

.post-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--secondary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.9;
    color: var(--text-light);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.post-content h2 {
    font-size: 1.8rem;
    margin: 30px 0 20px 0;
    color: var(--primary-cyan);
}

.post-content h3 {
    font-size: 1.4rem;
    margin: 25px 0 15px 0;
    color: var(--secondary-purple);
}

.post-content p {
    margin-bottom: 20px;
}

.post-content ul, .post-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.post-content li {
    margin-bottom: 10px;
}

.post-content code {
    background-color: var(--dark-card);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--primary-cyan);
    font-family: 'Courier New', monospace;
}

.post-content pre {
    background-color: var(--dark-card);
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--dark-bg);
        border-bottom: 1px solid var(--border-color);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        z-index: 99;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        padding: 10px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .hamburger {
        display: flex;
    }

    .nav-container {
        position: relative;
    }

    .logo-img {
        width: 64px;
        height: 64px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-bottom-links {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
    }

    .footer-bottom-links span {
        display: inline;
    }

    .footer-bottom {
        padding: 30px 0 15px 0;
        margin-top: 30px;
    }

    .footer-bottom p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .footer-bottom-links a {
        padding: 6px 10px;
        font-size: 0.85rem;
    }

    .about [style*="grid-template-columns: 1fr 1fr"],
    .about [style*="grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))"],
    .contact [style*="grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))"],
    .contact [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    .blog-card {
        padding: 20px;
    }

    .blog-card h3 {
        font-size: 1.3rem;
    }

    .feature-card {
        padding: 25px;
    }

    .feature-icon {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }

    .stat-card {
        padding: 30px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .contact-form {
        padding: 0 10px;
    }

    .faq-item {
        margin-bottom: 12px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 20px 15px 20px;
    }

    .footer {
        padding: 50px 20px 25px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .nav-container {
        padding: 0.75rem 15px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo-img {
        width: 40px;
        height: 40px;
    }

    .nav-links {
        top: 60px;
    }

    .logo-img {
        width: 56px;
        height: 56px;
    }

    .post-title {
        font-size: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-title {
        font-size: 1rem;
    }

    .footer-text {
        font-size: 0.9rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-btn {
        padding: 10px 30px;
        font-size: 0.95rem;
    }

    .feature-card {
        padding: 25px;
    }

    .stat-card {
        padding: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .testimonial-card {
        padding: 20px;
    }

    .footer {
        padding: 40px 15px 25px;
    }

    .footer-newsletter {
        gap: 8px;
    }

    .footer-newsletter input,
    .footer-newsletter button {
        font-size: 0.9rem;
        padding: 10px 15px;
    }

    .footer-bottom {
        padding: 25px 10px 15px 10px;
        margin-top: 20px;
    }

    .footer-bottom p {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .footer-bottom-links {
        gap: 8px;
    }

    .footer-bottom-links a {
        padding: 5px 8px;
        font-size: 0.8rem;
    }

    .footer-bottom-links span {
        font-size: 0.7rem;
    }

    /* ===== Newsletter Section Mobile ===== */
    .newsletter-content {
        padding: 0 15px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 8px;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        font-size: 0.9rem;
        padding: 12px 15px;
    }

    /* ===== Contact Form Mobile ===== */
    .contact {
        padding: 60px 15px;
    }

    .contact-form {
        padding: 0 10px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.95rem;
        padding: 10px 12px;
    }

    /* ===== Features Mobile ===== */
    .features {
        padding: 80px 15px;
    }

    .features-grid {
        gap: 20px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    /* ===== Stats Mobile ===== */
    .stats {
        padding: 80px 15px;
    }

    .stats-grid {
        gap: 20px;
    }

    .stat-card {
        padding: 25px 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    /* ===== Testimonials Mobile ===== */
    .testimonials {
        padding: 80px 15px;
    }

    .testimonials-grid {
        gap: 20px;
    }

    .testimonial-card {
        padding: 15px;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .author-name {
        font-size: 0.95rem;
    }

    .author-title {
        font-size: 0.8rem;
    }

    /* ===== FAQ Mobile ===== */
    .faq {
        padding: 80px 15px;
    }

    .faq-container {
        max-width: 100%;
        padding: 0;
    }

    .faq-question {
        padding: 15px;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 15px 15px 15px;
        font-size: 0.9rem;
    }

    /* ===== Articles Mobile ===== */
    .articles {
        padding: 80px 15px;
    }

    .blog-card {
        padding: 15px;
    }

    .blog-card h3 {
        font-size: 1.2rem;
    }

    .blog-card p {
        font-size: 0.9rem;
    }

    .category {
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    .card-meta {
        font-size: 0.85rem;
    }

    /* ===== General Mobile ===== */
    .hero {
        padding: 80px 15px;
    }

    .hero-content {
        padding: 0;
    }

    .cta-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .container {
        padding: 0 15px;
    }
}



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Navigation Bar ===== */
.navbar {
    background-color: rgba(10, 15, 27, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-cyan), var(--secondary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text {
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary-cyan);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--secondary-purple));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}


/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, rgba(10, 15, 27, 1) 0%, rgba(20, 30, 50, 0.5) 100%);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    animation: float 25s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-cyan), var(--secondary-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    background: linear-gradient(135deg, var(--primary-cyan), var(--secondary-purple));
    color: var(--dark-bg);
    border: none;
    padding: 12px 40px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    letter-spacing: 1px;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
}

/* ===== Articles Section ===== */
.articles {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(10, 15, 27, 0.85) 0%, rgba(20, 30, 50, 0.75) 100%),
                url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=3000&q=95') center/cover no-repeat fixed;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--secondary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: linear-gradient(135deg, var(--dark-card) 0%, rgba(20, 30, 50, 0.5) 100%);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.blog-card:hover::before {
    left: 100%;
}

.card-header {
    margin-bottom: 15px;
}

.category {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-cyan), var(--secondary-purple));
    color: var(--dark-bg);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.blog-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-white);
    transition: color 0.3s ease;
}

.blog-card:hover h3 {
    color: var(--primary-cyan);
}

.blog-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-light);
}

.read-more {
    color: var(--primary-cyan);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.read-more:hover {
    color: var(--secondary-purple);
    transform: translateX(5px);
}

/* ===== About Section ===== */
.about {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(10, 15, 27, 0.5) 0%, rgba(20, 30, 50, 0.3) 100%);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.9;
}

.about-content p {
    margin-bottom: 20px;
}

.about-content p:first-child {
    color: var(--primary-cyan);
    font-weight: 600;
}

/* ===== Scroll to Top Button ===== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--secondary-purple));
    border: none;
    border-radius: 50%;
    color: var(--dark-bg);
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99;
    transition: var(--transition-smooth);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.scroll-top-btn:active {
    transform: translateY(-2px);
}

/* ===== Contact Section ===== */
.contact {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(10, 15, 27, 0.92) 0%, rgba(15, 25, 45, 0.85) 100%),
                url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=3000&q=95') center/cover no-repeat fixed;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    background-color: var(--dark-card);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    padding: 12px 15px;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-light);
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-cyan), var(--secondary-purple));
    color: var(--dark-bg);
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

/* ===== Footer ===== */
.footer {
    background-color: rgba(10, 15, 27, 0.95);
    border-top: 1px solid var(--border-color);
    padding: 30px 20px;
    text-align: center;
    color: var(--text-light);
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    color: var(--primary-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-link:hover {
    color: var(--secondary-purple);
    transform: translateY(-3px);
}

/* ===== Scroll to Top Button Mobile ===== */
@media (max-width: 600px) {
    .scroll-top-btn {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1.2rem;
    }
}


/* =========================
   Navbar
========================= */

.navbar {
    position: relative;
    width: 100%;
    background: #020b1c;
    padding: 15px 30px;
    z-index: 999;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* =========================
   Logo
========================= */

.logo-img {
    width: 120px;
}

/* =========================
   Menu
========================= */

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

/* =========================
   Hamburger
========================= */

.hamburger {
    width: 40px;
    height: 40px;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #00d4ff !important;
    border-radius: 20px;
    transition: 0.3s ease;
}

/* Animation */

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}


/* =========================
   Mobile
========================= */

@media (max-width: 768px) {

    .hamburger {
        display: flex;
        
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0 mportan !important;
        right: 0;
        width: 100%;
        box-sizing: border-box;
        background: #020b1c;
        flex-direction: column;
        padding: 20px;
        gap: 25px;

        display: none;
        align-items: center;
    }

    .nav-links.active {
        display: flex;
    }
}