/* ===== GLOBAL STYLES ===== */
:root {
    --bg-dark: #050505;
    --primary-accent: #39FF14;
    --secondary-accent: #00D2FF;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --glass-bg: rgba(5, 5, 5, 0.7);
    --glass-border: rgba(57, 255, 20, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --gradient-primary: linear-gradient(135deg, #39FF14 0%, #00D2FF 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    cursor: none;
}

/* ===== CUSTOM CURSOR ===== */
.cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.15s ease-out;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--secondary-accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
}

.cursor-ring.hover {
    width: 60px;
    height: 60px;
    border-color: var(--secondary-accent);
}

.cursor-dot.hover {
    width: 12px;
    height: 12px;
}

/* ===== ANIMATED BACKGROUND ===== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%,
            rgba(57, 255, 20, 0.05) 0%,
            transparent 50%),
        radial-gradient(circle at 80% 20%,
            rgba(0, 210, 255, 0.05) 0%,
            transparent 50%);
}

/* ===== GLASSMORPHISM EFFECTS ===== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(57, 255, 20, 0.3);
    box-shadow: 0 12px 40px rgba(57, 255, 20, 0.1);
}

.glass-navbar {
    background: rgba(5, 5, 5, 0.8) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.glass-navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(5, 5, 5, 0.9) !important;
}

/* ===== TYPOGRAPHY ===== */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ===== NAVBAR ===== */
.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
}

.brand-text {
    color: var(--text-primary);
}

.brand-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-accent) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar-toggler {
    border: 1px solid var(--glass-border);
    padding: 0.5rem;
}

.navbar-toggler-icon {
    color: var(--text-primary);
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding-top: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;

    /* Multiple background layers */
    background-image: 
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)),
        url('../image/vaping-lady-min.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    /* extra effect */
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: var(--secondary-accent);
    min-height: 3rem;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}


.hero-content {
    max-width: 800px;
    color: #fff;
}

/* subtitle */
.hero-subtitle {
    color: #00e0ff;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* main title */
.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* gradient text */
.hero-title span {
    background: linear-gradient(90deg, #00e0ff, #39ff14);
    -webkit-background-clip: text;
    color: transparent;
}

/* button */
.hero-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    background: linear-gradient(90deg, #00e0ff, #39ff14);
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

/* hover effect */
.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,255,200,0.4);
    color: #000;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: #000;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-primary {
    border: 2px solid var(--primary-accent);
    color: var(--primary-accent);
    background: transparent;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: rgba(57, 255, 20, 0.1);
    border-color: var(--secondary-accent);
    color: var(--secondary-accent);
}

.glow-btn {
    position: relative;
    overflow: hidden;
}

.glow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: left 0.5s;
}

.glow-btn:hover::before {
    left: 100%;
}


.store-section {
    background: #f5f4f1;
    padding-top: 90px;
    padding-bottom: 90px;
}

.section-header {
    margin-bottom: 40px;
}

.small-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 6px;
    color: #555;
    margin-bottom: 12px;
}

.main-title {
    font-size: 58px;
    font-weight: 800;
    color: #000;
    margin-bottom: 0;
}



/* ***********************STORE CARD************************** */

.store-card {
    text-align: left;
}

.store-img {
    width: 100%;
    height: 470px;
    overflow: hidden;
    margin-bottom: 18px;
    background: #ddd;
}

.store-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.store-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.store-card a {
    font-size: 16px;
    font-weight: 700;
    color: #ff6a00;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.store-card a:hover {
    color: #d95500;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .main-title {
        font-size: 42px;
    }

    .store-img {
        height: 380px;
    }
}

@media (max-width: 575px) {
    .store-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .main-title {
        font-size: 34px;
    }

    .store-img {
        height: 320px;
    }

    .store-card {
        text-align: center;
    }
}



/* ************************about section********************* */

.about-section {
    width: 100%;
}

/* LEFT IMAGE */
.about-img {
    width: 100%;
    height: 100vh;
    background-image: url('../image/vape-bg.jpg'); /* your image */
    background-size: cover;
    background-position: center;
}

/* RIGHT SIDE */
.about-content {
    background: #ff6a00;
    color: #fff;
    height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 60px 40px;
    text-align: center;
}

/* TITLE */
.about-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* TEXT */
.about-content p {
    font-size: 16px;
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 15px;
}

/* BUTTON */
.learn-btn {
    margin-top: 25px;
    padding: 12px 30px;
    background: #fff;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.learn-btn:hover {
    background: #000;
    color: #fff;
}



/* shop-local-section */


.shop-local-section {
    background: #f5f4f1;
    padding: 80px 0;
}

.shop-local-box {
    position: relative;
    border: 4px solid #111;
    padding: 70px 0px 60px;
    background: transparent;
    text-align: center;
    min-height: 580px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.shop-local-tag {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #f5f4f1;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.shop-local-tag p {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 5px;
    color: #4b5663;
}

.shop-local-tag span {
    display: block;
    width: 90px;
    height: 4px;
    background: #111;
}

.shop-local-box h2 {
    font-size: 40px;
    line-height: 1.05;
    font-weight: 800;
    color: #000;
    margin-bottom: 28px;
}

.shop-local-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #5c6670;
    max-width: 470px;
    margin: 0 auto 30px;
}

.location-btn {
    display: inline-block;
    font-size: 16px;
    font-weight: 800;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.location-btn:hover {
    color: #ff6a00;
}

.shop-local-image img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    display: block;
}


/* ===== 3D SHAPE ANIMATION ===== */
.floating-shape {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tetrahedron {
    width: 300px;
    height: 300px;
    animation: rotate 20s linear infinite;
}

.shape-face {
    fill: rgba(57, 255, 20, 0.1);
    stroke: var(--primary-accent);
    stroke-width: 1;
    transition: fill 0.3s ease;
}

.shape-face:nth-child(2) {
    fill: rgba(0, 210, 255, 0.1);
    stroke: var(--secondary-accent);
}

@keyframes rotate {
    from {
        transform: rotateX(20deg) rotateY(0deg);
    }

    to {
        transform: rotateX(20deg) rotateY(360deg);
    }
}

.floating-orb {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-accent);
    box-shadow: 0 0 20px var(--primary-accent);
    animation: float 3s ease-in-out infinite;
}

.orb-2 {
    width: 15px;
    height: 15px;
    background: var(--secondary-accent);
    box-shadow: 0 0 15px var(--secondary-accent);
    animation-delay: 0.5s;
    top: 20%;
    left: 30%;
}

.orb-3 {
    width: 10px;
    height: 10px;
    background: #ffffff;
    box-shadow: 0 0 10px #ffffff;
    animation-delay: 1s;
    top: 70%;
    right: 25%;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ===== ABOUT SECTION ===== */
.section-padding {
    padding: 100px 0;
}

.bg-dark {
    background: rgba(0, 0, 0, 0.5);
}

.about-card {
    padding: 3rem;
    height: 100%;
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-content p {
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item h4 {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.code-snippet {
    overflow: hidden;
}

.code-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
}

.code-dots {
    display: flex;
    gap: 0.5rem;
    margin-right: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27ca3f;
}

.code-title {
    color: var(--text-secondary);
    font-family: monospace;
}

.code-body {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
}

.code-body pre {
    margin: 0;
    overflow-x: auto;
}

.code-keyword {
    color: var(--primary-accent);
}

.code-class {
    color: var(--secondary-accent);
}

.code-function {
    color: #ff79c6;
}

.code-self {
    color: #8be9fd;
}

.code-comment {
    color: #6272a4;
}

/* ===== SKILLS SECTION ===== */
.skills-category {
    padding: 2rem;
    height: 100%;
}

.category-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.skill-badge {
    background: rgba(57, 255, 20, 0.1);
    color: var(--primary-accent);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(57, 255, 20, 0.3);
    animation: float-badge 3s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.1s);
}

.skill-badge:nth-child(2n) {
    background: rgba(0, 210, 255, 0.1);
    color: var(--secondary-accent);
    border-color: rgba(0, 210, 255, 0.3);
}

@keyframes float-badge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ===== NEW SERVICES SECTION ===== */
.service-card {
    padding: 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-accent);
    margin-bottom: 1.5rem;
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(57, 255, 20, 0.1);
    border: 2px solid rgba(57, 255, 20, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-features li {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.service-features i {
    color: var(--primary-accent);
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

.service-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.service-tech span {
    background: rgba(0, 210, 255, 0.1);
    color: var(--secondary-accent);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 210, 255, 0.2);
}

/* ===== TECH STACK VISUALIZATION ===== */
.tech-visualization {
    position: relative;
    height: 600px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
}

.tech-center {
    position: absolute;
    width: 120px;
    height: 120px;
    z-index: 2;
}

.center-orb {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 700;
    box-shadow: 0 0 40px var(--primary-accent);
    animation: pulse 2s infinite;
}

.center-orb i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.center-orb span {
    font-size: 0.8rem;
    text-align: center;
}

.tech-orbit {
    position: absolute;
    border: 1px solid rgba(57, 255, 20, 0.3);
    border-radius: 50%;
    animation: rotate linear infinite;
}

.orbit-1 {
    width: 300px;
    height: 300px;
    animation-duration: 40s;
}

.orbit-2 {
    width: 450px;
    height: 450px;
    animation-duration: 60s;
}

.orbit-3 {
    width: 600px;
    height: 600px;
    animation-duration: 80s;
}

.tech-item {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(15, 15, 15, 0.9);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    border: 2px solid var(--glass-border);
    transition: all 0.3s ease;
    cursor: pointer;
}

.tech-item:hover {
    background: rgba(57, 255, 20, 0.1);
    border-color: var(--primary-accent);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

.tech-item i {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.tech-item span {
    font-size: 0.7rem;
    text-align: center;
}

/* Position tech items around the orbit */
.orbit-1 .tech-item:nth-child(1) {
    top: -35px;
    left: calc(50% - 35px);
}

.orbit-1 .tech-item:nth-child(2) {
    top: calc(50% - 35px);
    right: -35px;
}

.orbit-1 .tech-item:nth-child(3) {
    bottom: -35px;
    left: calc(50% - 35px);
}

.orbit-2 .tech-item:nth-child(1) {
    top: -35px;
    left: calc(25% - 35px);
}

.orbit-2 .tech-item:nth-child(2) {
    top: calc(25% - 35px);
    right: -35px;
}

.orbit-2 .tech-item:nth-child(3) {
    bottom: calc(25% - 35px);
    right: -35px;
}

.orbit-2 .tech-item:nth-child(4) {
    bottom: -35px;
    left: calc(25% - 35px);
}

.orbit-3 .tech-item:nth-child(1) {
    top: -35px;
    left: calc(15% - 35px);
}

.orbit-3 .tech-item:nth-child(2) {
    top: calc(15% - 35px);
    right: -35px;
}

.orbit-3 .tech-item:nth-child(3) {
    bottom: calc(15% - 35px);
    right: -35px;
}

.orbit-3 .tech-item:nth-child(4) {
    bottom: -35px;
    left: calc(15% - 35px);
}

.orbit-3 .tech-item:nth-child(5) {
    bottom: calc(50% - 35px);
    left: -35px;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 40px var(--primary-accent);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 60px var(--primary-accent);
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    padding: 2.5rem;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--primary-accent);
    opacity: 0.3;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--glass-border);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.author-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.rating {
    color: #ffd700;
    font-size: 0.9rem;
}

/* ===== BLOG/ARTICLES SECTION ===== */
.home-article .article-card {
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
}

.home-article .article-card:hover {
    transform: translateY(-10px);
}

.home-article .article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.home-article .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-article .article-card:hover .article-image img {
    transform: scale(1.1);
}

.home-article .article-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(57, 255, 20, 0.9);
    color: #000;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.home-article .article-content {
    padding: 2rem;
}

.home-article .article-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.home-article .article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.home-article .article-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.home-article .article-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.home-article .article-link {
    color: var(--primary-accent);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.home-article .article-link:hover {
    color: var(--secondary-accent);
    gap: 1rem;
}

/* ===== BUTTON VARIATIONS ===== */
.btn-outline-secondary {
    border: 2px solid var(--secondary-accent);
    color: var(--secondary-accent);
    background: transparent;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background: rgba(0, 210, 255, 0.1);
    border-color: var(--primary-accent);
    color: var(--primary-accent);
}

.glow-btn-outline {
    position: relative;
    overflow: hidden;
}

.glow-btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transition: left 0.5s;
}

.glow-btn-outline:hover::before {
    left: 100%;
}

/* ===== RESPONSIVE UPDATES ===== */
@media (max-width: 992px) {
    .tech-visualization {
        height: 500px;
    }

    .orbit-1 {
        width: 250px;
        height: 250px;
    }

    .orbit-2 {
        width: 350px;
        height: 350px;
    }

    .orbit-3 {
        width: 450px;
        height: 450px;
    }

    .tech-item {
        width: 60px;
        height: 60px;
    }

    .tech-item i {
        font-size: 1.2rem;
    }

    .tech-item span {
        font-size: 0.6rem;
    }
}

@media (max-width: 768px) {
    .tech-visualization {
        height: 400px;
    }

    .orbit-1 {
        width: 200px;
        height: 200px;
    }

    .orbit-2 {
        width: 280px;
        height: 280px;
    }

    .orbit-3 {
        width: 360px;
        height: 360px;
    }

    .center-orb {
        width: 80px;
        height: 80px;
    }

    .center-orb i {
        font-size: 1.5rem;
    }

    .center-orb span {
        font-size: 0.7rem;
    }

    .tech-item {
        width: 50px;
        height: 50px;
    }

    .testimonials-carousel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .tech-visualization {
        height: 300px;
    }

    .orbit-1 {
        width: 150px;
        height: 150px;
    }

    .orbit-2 {
        width: 220px;
        height: 220px;
    }

    .orbit-3 {
        width: 280px;
        height: 280px;
    }

    .center-orb {
        width: 60px;
        height: 60px;
    }

    .center-orb i {
        font-size: 1.2rem;
    }

    .center-orb span {
        font-size: 0.6rem;
    }

    .tech-item {
        width: 40px;
        height: 40px;
    }

    .tech-item i {
        font-size: 1rem;
    }

    .tech-item span {
        font-size: 0.5rem;
    }

    .service-card,
    .testimonial-card {
        padding: 2rem;
    }
}

/* ===== PORTFOLIO SECTION ===== */
.project-card {
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    border-radius: 20px 20px 0 0;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px 20px 0 0;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    padding: 2rem;
}

.overlay-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.overlay-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.project-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.project-link {
    color: var(--primary-accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-link:hover {
    color: var(--secondary-accent);
}

.project-info {
    padding: 1.5rem;
    background: rgba(30, 30, 30, 0.5);
    border-radius: 0 0 20px 20px;
}

.project-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.project-tags span {
    background: rgba(57, 255, 20, 0.1);
    color: var(--primary-accent);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
}

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 3rem;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
}

.timeline-date {
    position: absolute;
    top: 0;
    background: var(--gradient-primary);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-date {
    right: -25px;
}

.timeline-item:nth-child(even) .timeline-date {
    left: -25px;
}

.timeline-content {
    padding: 2rem;
    position: relative;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.timeline-content h4 {
    font-size: 1.1rem;
    color: var(--secondary-accent);
    margin-bottom: 1rem;
    font-weight: 500;
}

.timeline-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.timeline-content ul {
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.timeline-content li {
    margin-bottom: 0.5rem;
}

/* ===== CONTACT FORM ===== */
.contact-form {
    padding: 3rem;
}

.form-floating {
    position: relative;
}

.form-control {
    background: rgba(30, 30, 30, 0.5);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(30, 30, 30, 0.8);
    border-color: var(--primary-accent);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.1);
    color: var(--text-primary);
}

.form-control:focus~label {
    color: var(--primary-accent);
}

.form-control.is-invalid {
    border-color: #ff4757;
}

.form-control.is-valid {
    border-color: var(--primary-accent);
}

.form-label {
    color: var(--text-secondary);
    padding-left: 1rem;
}

/* ===== FOOTER ===== */
.footer {
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid var(--glass-border);
}

.brand-footer h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.brand-footer h3 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-footer p {
    color: var(--text-secondary);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(30, 30, 30, 0.5);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--gradient-primary);
    color: #000;
    border-color: transparent;
    transform: translateY(-5px);
}

.copyright {
    color: var(--text-secondary);
    margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 70px !important;
        padding-right: 0 !important;
    }

    .timeline-date {
        left: 0 !important;
        right: auto !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .cursor-ring,
    .cursor-dot {
        display: none;
    }

    body {
        cursor: auto;
    }

    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .home-article .article-content {
        padding: .8rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .glass-card {
        padding: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }
}

/* Add these styles if missing */
.tilt-card {
    position: relative;
    transition: transform 0.3s ease;
}

.glow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.animate-feature {
    animation: slideInLeft 0.5s ease forwards;
    opacity: 0;
    transform: translateX(-20px);
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-star {
    animation: starTwinkle 2s ease-in-out infinite;
}

@keyframes starTwinkle {

    0%,
    100% {
        transform: scale(1);
        color: #ffd700;
    }

    50% {
        transform: scale(1.1);
        color: #ffed4e;
    }
}

/* ===== ARTICLE CONTENT ===== */
.article-header {
    margin-top: 120px;
}

.article-content {
    padding: 5rem 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.article-featured-image {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-featured-image:hover img {
    transform: scale(1.05);
}

.content-block {
    margin-bottom: 3rem;
}

.content-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    position: relative;
    padding-left: 1.5rem;
}

.content-block h2:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.content-block h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--text-primary);
}

.content-block p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.content-block ul,
.content-block ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
    color: var(--text-secondary);
}

.content-block li {
    margin-bottom: 0.8rem;
}

.content-block strong {
    color: var(--text-primary);
}


.message-textarea{
    height: 145px !important;
}

/* ===== CODE BLOCKS ===== */
.code-block {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    overflow: hidden;
    margin: 2rem 0;
}

.code-header {
    background: rgba(30, 30, 30, 0.9);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
}

.code-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27ca3f;
}

.code-language {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.code-body {
    padding: 2rem;
    overflow-x: auto;
}

.code-body pre {
    margin: 0;
}

/* ===== INFO BOXES ===== */
.info-box {
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.info-box.tip {
    background: rgba(57, 255, 20, 0.05);
    border-left: 4px solid var(--primary-accent);
}

.info-box.warning {
    background: rgba(255, 193, 7, 0.05);
    border-left: 4px solid #ffc107;
}

.info-box.info {
    background: rgba(0, 210, 255, 0.05);
    border-left: 4px solid var(--secondary-accent);
}

.info-box-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.info-box-header i {
    font-size: 1.5rem;
}

.info-box.tip .info-box-header i {
    color: var(--primary-accent);
}

.info-box.warning .info-box-header i {
    color: #ffc107;
}

.info-box.info .info-box-header i {
    color: var(--secondary-accent);
}

.info-box-header h4 {
    margin: 0;
    font-size: 1.2rem;
}

/* ===== IMAGE GALLERY ===== */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .image-caption {
    transform: translateY(0);
}

/* ===== AUTHOR BIO ===== */
.author-bio {
    padding: 3rem;
    margin: 4rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.author-info {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--glass-border);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.author-details p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.author-social {
    display: flex;
    gap: 1rem;
}

.author-social a {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.author-social a:hover {
    color: var(--primary-accent);
}

/* ===== RELATED ARTICLES ===== */
.related-articles {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.related-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.related-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.related-card:hover {
    transform: translateY(-10px);
}

.related-image {
    height: 200px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-card:hover .related-image img {
    transform: scale(1.1);
}

.related-content {
    padding: 1.5rem;
    background: rgba(30, 30, 30, 0.5);
}

.related-category {
    display: inline-block;
    background: rgba(57, 255, 20, 0.1);
    color: var(--primary-accent);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.related-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.related-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== SHARE WIDGET ===== */
.share-widget {
    position: fixed;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.share-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.share-button:hover {
    transform: scale(1.1);
    color: #fff;
}

.share-button.twitter:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
}

.share-button.linkedin:hover {
    background: #0077B5;
    border-color: #0077B5;
}

.share-button.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

/* ===== TABLE OF CONTENTS ===== */
.toc-widget {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 1.5rem;
    width: 300px;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 1000;
}

.toc-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-accent);
}

.toc-list {
    list-style: none;
    padding: 0;
}

.toc-list li {
    margin-bottom: 0.5rem;
}

.toc-list a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

.toc-list a:hover,
.toc-list a.active {
    color: var(--primary-accent);
}

.toc-list .toc-h2 {
    padding-left: 1rem;
}

.toc-list .toc-h3 {
    padding-left: 2rem;
    font-size: 0.9rem;
}

.blog-hero-section {
    padding: 180px 0 80px;
    position: relative;
    overflow: hidden;
}

.blog-hero-section .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 50%, rgba(57, 255, 20, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 20%, rgba(0, 210, 255, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.blog-hero-section .hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-hero-section .hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* ===== ARTICLES GRID ===== */
.page-articles-section {
    padding: 5rem 0;
}

.page-articles-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.page-articles-section .section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.page-articles-section .articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.page-articles-section .article-card {
    height: 100%;
    transition: transform 0.3s ease;
}

.page-articles-section .article-image {
    height: 200px;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.page-articles-section .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.page-articles-section .article-card:hover .article-image img {
    transform: scale(1.1);
}

.page-articles-section .article-content {
    padding: 1.5rem;
}

.page-articles-section .article-category {
    display: inline-block;
    background: rgba(57, 255, 20, 0.1);
    color: var(--primary-accent);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.page-articles-section .article-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    color: var(--text-primary);
    text-decoration: none;
    display: block;
}

.page-articles-section .article-title:hover {
    color: var(--primary-accent);
}

.page-articles-section .article-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.page-articles-section .article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(57, 255, 20, 0.1);
}

.page-articles-section .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-articles-section .meta-item i {
    color: var(--primary-accent);
    font-size: 0.9rem;
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
    padding: 3rem 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    margin: 4rem 0;
}

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.category-btn {
    background: rgba(57, 255, 20, 0.05);
    border: 1px solid rgba(57, 255, 20, 0.2);
    color: var(--text-secondary);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-btn:hover,
.category-btn.active {
    background: rgba(57, 255, 20, 0.15);
    color: var(--primary-accent);
    border-color: var(--primary-accent);
}

/* ===== PAGINATION ===== */
.pagination-section {
    padding: 2rem 0;
}

.pagination {
    justify-content: center;
}

.page-link {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    margin: 0 0.3rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: rgba(57, 255, 20, 0.1);
    color: var(--primary-accent);
    border-color: var(--primary-accent);
}

.page-item.active .page-link {
    background: var(--gradient-primary);
    border-color: var(--primary-accent);
    color: var(--bg-dark);
    font-weight: 600;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    padding: 5rem 0;
}

.newsletter-card {
    padding: 3rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-text {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    color: var(--text-primary);
    font-family: inherit;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-accent);
}

.newsletter-btn {
    background: var(--gradient-primary);
    border: none;
    color: var(--bg-dark);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
}

/* ===== BLOG HERO SECTION ===== */
.blog-hero-section {
    padding: 180px 0 80px;
    position: relative;
    overflow: hidden;
}

.blog-hero-section .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 50%, rgba(57, 255, 20, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 20%, rgba(0, 210, 255, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.blog-hero-section .hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.blog-hero-section .hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* ===== ARTICLES GRID ===== */
.page-articles-section {
    padding: 5rem 0;
}

.page-articles-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    line-height: 1.3;
}

.page-articles-section .section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.page-articles-section .articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.page-articles-section .article-card {
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-articles-section .article-card:hover {
    transform: translateY(-10px);
}

.page-articles-section .article-image {
    height: 200px;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    flex-shrink: 0;
}

.page-articles-section .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.page-articles-section .article-card:hover .article-image img {
    transform: scale(1.1);
}

.page-articles-section .article-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-articles-section .article-category {
    display: inline-block;
    background: rgba(57, 255, 20, 0.1);
    color: var(--primary-accent);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    font-weight: 500;
    align-self: flex-start;
}

.page-articles-section .article-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    color: var(--text-primary);
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.page-articles-section .article-title:hover {
    color: var(--primary-accent);
}

.page-articles-section .article-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.page-articles-section .article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(57, 255, 20, 0.1);
    flex-shrink: 0;
}

.page-articles-section .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.page-articles-section .meta-item i {
    color: var(--primary-accent);
    font-size: 0.9rem;
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
    padding: 3rem 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    margin: 4rem 0;
}

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.category-btn {
    background: rgba(57, 255, 20, 0.05);
    border: 1px solid rgba(57, 255, 20, 0.2);
    color: var(--text-secondary);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.category-btn:hover,
.category-btn.active {
    background: rgba(57, 255, 20, 0.15);
    color: var(--primary-accent);
    border-color: var(--primary-accent);
}

/* ===== PAGINATION ===== */
.pagination-section {
    padding: 2rem 0;
}

.pagination {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.page-link {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    margin: 0;
    border-radius: 10px;
    transition: all 0.3s ease;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.page-link:hover {
    background: rgba(57, 255, 20, 0.1);
    color: var(--primary-accent);
    border-color: var(--primary-accent);
}

.page-item.active .page-link {
    background: var(--gradient-primary);
    border-color: var(--primary-accent);
    color: var(--bg-dark);
    font-weight: 600;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    padding: 5rem 0;
}

.newsletter-card {
    padding: 3rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.newsletter-text {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-accent);
}

.newsletter-btn {
    background: var(--gradient-primary);
    border: none;
    color: var(--bg-dark);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(57, 255, 20, 0.2);
}

/* =========================== */
/* ===== RESPONSIVE DESIGN ===== */
/* =========================== */

/* Large Devices (Laptops/Desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .page-articles-section .articles-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 1.5rem;
    }

    .newsletter-card {
        padding: 2.5rem;
    }
}

/* Medium Devices (Tablets, less than 992px) */
@media (max-width: 991.98px) {
    .blog-hero-section {
        padding: 150px 0 60px;
    }

    .blog-hero-section .hero-title {
        font-size: 3.2rem;
    }

    .blog-hero-section .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .page-articles-section .section-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    .page-articles-section .articles-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .categories-section {
        padding: 2.5rem 0;
        margin: 3rem 0;
    }

    .newsletter-section {
        padding: 4rem 0;
    }

    .newsletter-card {
        padding: 2rem;
    }

    .newsletter-title {
        font-size: 1.8rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-btn {
        width: 100%;
    }
}

/* Small Devices (Landscape Phones, less than 768px) */
@media (max-width: 767.98px) {
    .blog-hero-section {
        padding: 130px 0 50px;
    }

    .blog-hero-section .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1.2rem;
    }

    .blog-hero-section .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .page-articles-section {
        padding: 4rem 0;
    }

    .page-articles-section .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .page-articles-section .articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-articles-section .article-image {
        height: 180px;
    }

    .page-articles-section .article-content {
        padding: 1.25rem;
    }

    .page-articles-section .article-title {
        font-size: 1.2rem;
    }

    .categories-section {
        padding: 2rem 0;
        margin: 2.5rem 0;
        border-radius: 20px;
    }

    .categories-grid {
        gap: 0.8rem;
    }

    .category-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .newsletter-section {
        padding: 3rem 0;
    }

    .newsletter-card {
        padding: 1.5rem;
    }

    .newsletter-title {
        font-size: 1.6rem;
    }

    .newsletter-text {
        font-size: 0.95rem;
    }

    .pagination {
        gap: 0.3rem;
    }

    .page-link {
        min-width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

/* Extra Small Devices (Portrait Phones, less than 576px) */
@media (max-width: 575.98px) {
    .blog-hero-section {
        padding: 120px 0 40px;
    }

    .blog-hero-section .hero-title {
        font-size: 2.2rem;
    }

    .blog-hero-section .hero-subtitle {
        font-size: 0.95rem;
    }

    .page-articles-section {
        padding: 3rem 0;
    }

    .page-articles-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .page-articles-section .section-title:after {
        width: 40px;
        height: 3px;
        bottom: -8px;
    }

    .page-articles-section .article-image {
        height: 160px;
    }

    .page-articles-section .article-category {
        font-size: 0.75rem;
        padding: 0.25rem 0.8rem;
    }

    .page-articles-section .article-title {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .page-articles-section .article-excerpt {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .page-articles-section .article-meta {
        font-size: 0.8rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .page-articles-section .meta-item {
        width: 100%;
        justify-content: space-between;
    }

    .categories-grid {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .categories-grid::-webkit-scrollbar {
        height: 4px;
    }

    .categories-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 2px;
    }

    .categories-grid::-webkit-scrollbar-thumb {
        background: var(--primary-accent);
        border-radius: 2px;
    }

    .category-btn {
        flex-shrink: 0;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .newsletter-title {
        font-size: 1.4rem;
    }

    .newsletter-input {
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
    }

    .newsletter-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }

    .pagination {
        gap: 0.2rem;
    }

    .page-link {
        min-width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
}

/* Very Small Devices (less than 375px) */
@media (max-width: 374.98px) {
    .blog-hero-section .hero-title {
        font-size: 1.8rem;
    }

    .page-articles-section .section-title {
        font-size: 1.6rem;
    }

    .page-articles-section .articles-grid {
        gap: 1.2rem;
    }

    .page-articles-section .article-content {
        padding: 1rem;
    }

    .page-articles-section .article-title {
        font-size: 1rem;
    }

    .newsletter-card {
        padding: 1.2rem;
    }
}



/* **************mobile resposive ********************  */


/* =========================
   GLOBAL MOBILE FIX
========================= */
html,
body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* desktop fixed background mobile এ problem করে */
.hero-section {
    background-attachment: scroll;
}

/* =========================
   TABLET
========================= */
@media (max-width: 991.98px) {

    .hero-section {
        min-height: auto;
        padding-top: 110px;
        padding-bottom: 70px;
        background-position: 65% center;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        min-height: auto;
    }

    .hero-description {
        font-size: 1rem;
    }

    .store-img {
        height: 340px;
    }

    .about-img,
    .about-content {
        height: auto;
        min-height: 420px;
    }

    .about-content {
        padding: 50px 25px;
    }

    .about-content h2 {
        font-size: 2.2rem;
    }

    .shop-local-box {
        min-height: auto;
        padding: 60px 25px 45px;
    }

    .shop-local-box h2 {
        font-size: 2.2rem;
        line-height: 1.15;
    }

    .shop-local-image img {
        height: auto;
        min-height: 420px;
    }

    .shop-local-tag span {
        width: 45px;
    }

    .section-title,
    .main-title {
        font-size: 2.5rem;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 767.98px) {

    .message-textarea {
    height: 83px !important;
}

    body {
        cursor: auto;
    }

    .cursor-ring,
    .cursor-dot {
        display: none;
    }

    .navbar-brand {
        font-size: 1.4rem;
    }

    .nav-link {
        margin: 0.25rem 0;
    }

    .hero-section {
        padding-top: 100px;
        padding-bottom: 50px;
        text-align: center;
        background-position: 68% center;
        height: 50vh;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-btn {
        display: inline-block;
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }

    .store-section,
    .shop-local-section,
    .section-padding {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .store-card {
        text-align: center;
    }

    .store-img {
        height: 280px;
    }

    .main-title,
    .section-title {
        font-size: 2rem;
    }

    .about-img {
        min-height: 320px;
    }

    .about-content {
        min-height: auto;
        padding: 40px 20px;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .about-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .shop-local-box {
        padding: 50px 20px 40px;
        border-width: 3px;
    }

    .shop-local-box h2 {
        font-size: 1.9rem;
        line-height: 1.2;
    }

    .shop-local-box p {
        font-size: 15px;
        line-height: 1.7;
    }

    .shop-local-image img {
        min-height: 320px;
    }

    .shop-local-tag {
        top: -14px;
        padding: 0 10px;
        gap: 10px;
    }

    .shop-local-tag p {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .shop-local-tag span {
        width: 25px;
        height: 3px;
    }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 575.98px) {

    .hero-title {
        font-size: 1.7rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .main-title,
    .section-title {
        font-size: 1.7rem;
    }

    .store-img {
        height: 350px;
    }

    .about-content h2,
    .shop-local-box h2 {
        font-size: 1.5rem;
    }

    .shop-local-box {
        padding: 45px 15px 35px;
    }

    .shop-local-tag p {
        font-size: 11px;
        letter-spacing: 2px;
    }


    .store-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.message-textarea {
    height: 73px !important;
}
}