/*
Theme Name: Akm Baniul Personal Portfolio
Author: Akm Baniul
Description: A high-performance futuristic portfolio for a Senior WordPress Architect.
Version: 1.0
*/

/* Hero Section  */


:root {
    --brand-color: #F75858;
    --dark-bg: #050505;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --glass-border: rgba(247, 88, 88, 0.2);
}


html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-main);
    overflow-x: hidden;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
}









/* --- Desktop Styles --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    position: relative;
    z-index: 1001;
}

.logo { font-size: 24px; font-weight: 700; color: #fff; }
.logo span { color: var(--brand-color); }

nav ul { 
    display: flex; 
    list-style: none; 
    gap: 40px; /* gap ব্যবহার করা ভালো */
    margin: 0;
    padding: 0;
}

nav ul li a { 
    text-decoration: none; 
    color: var(--text-muted); 
    font-size: 14px; 
    transition: 0.3s; 
}

nav ul li a:hover { color: var(--brand-color); }

.mobile-toggle { 
    display: none; 
    font-size: 24px; 
    cursor: pointer; 
    color: #fff;
}

/* --- Mobile Menu Styles (max-width: 768px) --- */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block; /* মোবাইলে আইকন দেখাবে */
        z-index: 1100;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%; /* স্ক্রিনের বাইরে থাকবে */
        width: 70%;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98); /* ডার্ক গ্লাস ইফেক্ট */
        backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.4s cubic-bezier(0.77,0.2,0.05,1.0);
        z-index: 1050;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* মেনু একটিভ হলে ডান দিক থেকে স্লাইড করে আসবে */
    nav ul.active {
        right: 0;
    }

    nav ul li {
        margin: 15px 0;
        margin-left: 0; /* পুরনো মার্জিন রিমুভ */
    }

    nav ul li a {
        font-size: 18px; /* মোবাইলে ফন্ট একটু বড় */
        color: #fff;
    }
}






/* --- Hero Section Layout --- */
.hero {
    display: flex;
    padding: 220px 8%;
    align-items: center;
    justify-content: space-between;
    min-height: calc(100vh - 100px);
    gap: 50px;
}

.hero-left {
    flex: 1.2;
}

.hero-right {
    flex: 1.5;
    display: flex;
    justify-content: flex-end;
}






/* Header Base State */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 20px 0;
    background: transparent;
    transition: transform 0.5s ease-in-out, background 0.3s ease, padding 0.3s ease;
    transform: translateY(0); /* Default state */
    border: none !important; /* White border fix */
}

/* Niche scroll korle header pura vanish hoye jabe */
header.header-hidden {
    transform: translateY(-100%);
}

/* Upore scroll korle header abar ashbe */
header.header-visible {
    transform: translateY(0);
    background: rgba(10, 10, 10, 0.95); /* Dark background */
    backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Ekdom upore thakle header transparent thakbe */
header.at-top {
    transform: translateY(0);
    background: transparent;
    box-shadow: none;
    border: none;
}












/* --- Content Styling --- */
h1 { font-size: 53px; font-weight: 700; line-height: 1.1; margin-bottom: 20px; }
h1 span { color: var(--brand-color); }

p { font-size: 17px; color: var(--text-muted); margin-bottom: 35px; line-height: 1.6; max-width: 600px; }

.availability {
    background: rgba(247, 88, 88, 0.1);
    color: white;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid var(--glass-border);
}


.logo a {
    color: white !important;
    text-decoration: none;
}


.dot { height: 8px; width: 8px; background: var(--brand-color); border-radius: 50%; margin-right: 8px; box-shadow: 0 0 10px var(--brand-color); }

.cta-buttons { display: flex; flex-wrap: wrap; gap: 15px; }

.btn-primary, .btn-secondary {
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease; /* Smooth transition er jonno change kora hoyeche */
    font-size: 15px;
    text-align: center;
    display: inline-block; /* Margin/Padding thik moto kaj korar jonno */
    border: none;
    cursor: pointer;
}

/* Hover Animation */
.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px); /* Button ektu upore uthbe */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); /* Niche halka shadow porbe */
    filter: brightness(1.1); /* Button er color ektu highlight hobe */
}

/* Click korle ektu niche nambe (Active effect) */
.btn-primary:active, .btn-secondary:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.btn-primary { background: var(--brand-color); color: #fff; border: 1px solid var(--brand-color); }
.btn-secondary { border: 1px solid #333; color: #fff; }

/* --- Code Window Styling --- */
.code-window {
    background: #0d0d0d;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    overflow: hidden;
}

.window-header { background: #151515; padding: 10px 15px; display: flex; align-items: center; border-bottom: 1px solid #222; }
.dots span { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 5px; }
.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }
.file-name { margin-left: 10px; font-size: 11px; color: #555; font-family: monospace; }

.code-content {
    padding: 25px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #d1d1d1;
    min-height: 220px;
    white-space: pre-wrap;
}

.cursor { animation: blink 1s infinite; color: var(--brand-color); }
@keyframes blink { 50% { opacity: 0; } }

/* --- RESPONSIVE MEDIA QUERIES --- */

/* ট্যাবলেট (Laptops/Tablets) */
@media (max-width: 1024px) {
    h1 { font-size: 42px; }
    .hero { gap: 30px; }
}

/* ছোট ট্যাবলেট ও মোবাইল (Mobile Devices) */
@media (max-width: 768px) {
    nav { padding: 20px 5%; }
    nav ul { display: none; } /* মেনু হাইড হবে, আপনি চাইলে পরে ড্রপডাউন করতে পারেন */
    .mobile-toggle { display: block; color: white; }

    .hero {
        flex-direction: column;
        padding: 150px 5% 40px 5%;
        text-align: center;
        justify-content: center;
    }

    .hero-left {
        order: 1;
        width: 100%;
    }

    .hero-right {
        order: 2;
        width: 100%;
        justify-content: center;
        margin-top: 40px;
    }

    h1 { font-size: 36px; }
    p { margin: 0 auto 30px auto; font-size: 15px; }
    
    .cta-buttons { justify-content: center; }
    
    .code-window {
        max-width: 100%;
    }
    .all-project-button {
    text-align: center;
    padding-top: 40px;
}

}

/* একদম ছোট মোবাইল */
@media (max-width: 480px) {
    h1 { font-size: 30px; }
    .cta-buttons { flex-direction: column; width: 100%; }
    .btn-primary, .btn-secondary { width: 100%; }
    .code-content { font-size: 12px; padding: 15px; }
    .all-project-button {
    text-align: center;
    padding-top: 50px;
}
}



.all-project-button {
    text-align: center;
    padding-top: 70px;
}









/* --- About Section Styling --- */
.about-section {
    padding: 100px 8%;
    background: transparent;
    position: relative;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    justify-content: space-between;
}

.about-image {
    flex: 1;
    position: relative;
}

.image-box {
    width: 100%;
    max-width: 400px;
    height: 500px;
    background: #111;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.5s;
}

.image-box:hover img {
    filter: grayscale(0%);
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: var(--brand-color);
    padding: 20px;
    padding-right: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(247, 88, 88, 0.3);
}

.experience-badge h3 { font-size: 28px; margin-bottom: 0; }
.experience-badge p { font-size: 12px; color: #fff; margin-bottom: 0; }

.about-content {
    flex: 1.2;
}

.section-tag {
    color: var(--brand-color);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 25px;
}

.about-content p {
    margin-bottom: 30px;
}

/* Info Grid */
.personal-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.personal-info .info-item {
    align-items: start;
}

.info-item {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #222;
    padding-bottom: 10px;
}

.info-item .label {
    font-size: 12px;
    color: var(--brand-color);
    text-transform: uppercase;
}

.info-item .value {
    font-size: 16px;
    font-weight: 500;
    margin-top: 5px;
}

/* Responsive for About Section */
@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .about-image {
        display: flex;
        justify-content: center;
    }

    .experience-badge {
        right: 0;
    }

    .personal-info {
        grid-template-columns: 1fr;
    }

    .about-content h2 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 25px;
}

    
}







/* --- Futuristic Toolkit Section --- */
.toolkit-section {
    padding: 120px 8%;
    background: radial-gradient(circle at center, rgba(247, 88, 88, 0.05) 0%, transparent 70%);
    position: relative;
}



.section-header {
    text-align: center; /* টেক্সটগুলো মাঝখানে রাখবে */
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center; /* ফ্লেক্স আইটেমগুলোকে মাঝখানে রাখবে */
}

.section-header p {
    max-width: 700px;
    margin-left: auto;  /* ডেসক্রিপশনটি মাঝখানে আনার জন্য */
    margin-right: auto; /* ডেসক্রিপশনটি মাঝখানে আনার জন্য */
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 16px;
}

.section-tag {
    color: var(--brand-color);
    letter-spacing: 4px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--brand-color);
    
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.toolkit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* --- The Futuristic Card --- */
.tool-card {
    position: relative;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px; /* স্লাইট শার্প কর্নার আরও ফিউচারিস্টিক লাগে */
    padding: 50px 35px;
    overflow: hidden;
    transition: all 0.5s ease;
    backdrop-filter: blur(20px);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255,255,255,0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.tool-card:hover .card-glow {
    opacity: 1;
}

.tool-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

/* Icons styling */
.tool-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); /* হেক্সাগন শেপ */
    position: relative;
}

.tool-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.tool-card p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Individual Color Accents (Bottom border on hover) */
.tool-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    transition: width 0.4s ease;
}

.tool-card:hover::after {
    width: 100%;
}

/* Colors Configuration */
.border-red:hover::after, .bg-red { background: #F75858; box-shadow: 0 0 20px rgba(247, 88, 88, 0.4); }
.border-orange:hover::after, .bg-orange { background: #FF9F43; box-shadow: 0 0 20px rgba(255, 159, 67, 0.4); }
.border-green:hover::after, .bg-green { background: #10AC84; box-shadow: 0 0 20px rgba(16, 172, 132, 0.4); }
.border-blue:hover::after, .bg-blue { background: #54A0FF; box-shadow: 0 0 20px rgba(84, 160, 255, 0.4); }
.border-purple:hover::after, .bg-purple { background: #5F27CD; box-shadow: 0 0 20px rgba(95, 39, 205, 0.4); }
.border-gray:hover::after, .bg-gray { background: #576574; box-shadow: 0 0 20px rgba(87, 101, 116, 0.4); }

/* Responsive Settings */
@media (max-width: 1100px) {
    .toolkit-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .toolkit-grid { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 34px; }
    .tool-card { padding: 40px 25px; }
}

/* আইকন বক্সের ভেতর আইকনটি মাঝখানে রাখার জন্য */
.tool-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px; /* আইকনের সাইজ */
    color: #fff;
    margin-bottom: 30px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    position: relative;
    transition: transform 0.3s ease;
}

.tool-card:hover .tool-icon {
    transform: rotate(10deg) scale(1.1); /* হোভার করলে আইকনটি হালকা ঘুরবে */
}

/* আইকনের গ্লো ইফেক্ট */
.bg-red i { text-shadow: 0 0 10px rgba(247, 88, 88, 0.8); }
.bg-orange i { text-shadow: 0 0 10px rgba(255, 159, 67, 0.8); }
.bg-green i { text-shadow: 0 0 10px rgba(16, 172, 132, 0.8); }
.bg-blue i { text-shadow: 0 0 10px rgba(84, 160, 255, 0.8); }
.bg-purple i { text-shadow: 0 0 10px rgba(95, 39, 205, 0.8); }
.bg-gray i { text-shadow: 0 0 10px rgba(87, 101, 116, 0.8); }







/* --- Branding Variables --- */
:root {
    --brand-primary: #F75858;
    --brand-secondary: #154FAC;
    --dark-card: rgba(255, 255, 255, 0.03);
    --border-glow: rgba(21, 79, 172, 0.2);
    --text-color: #ffffff; /* Default color added */
    --text-muted: #a0a0a0; /* Default color added */
    --border-color: rgba(255, 255, 255, 0.1);
}

.services-section {
    padding: 100px 8%;
    text-align: center;
}

.section-tag {
    color: var(--brand-primary);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
    border-bottom: 2px solid var(--brand-primary);
    padding-bottom: 5px;
    margin-bottom: 20px;
    display: inline-block;
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    /* ডেক্সটপে ৩ কলাম */
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    margin-top: 60px;
}

.service-box {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    padding: 45px 35px;
    border-radius: 12px;
    text-align: left;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    height: 100%; /* সব বক্স সমান রাখার জন্য */
}

.service-box:hover {
    border-color: #F75858;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(21, 79, 172, 0.15);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(247, 88, 88, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.icon-wrapper i {
    font-size: 26px;
    color: var(--brand-primary);
}

.service-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
    line-height: 1.4;
}

.service-box p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ==========================================
   Responsive Breakpoints
   ========================================== */

/* ট্যাবলেট বা ছোট ল্যাপটপ (Max 1024px) */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* ২ কলামে কনভার্ট হবে */
        gap: 20px;
    }
    .services-section {
        padding: 80px 5%;
    }
}

/* মোবাইল ফোন (Max 768px) */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr; /* ১ কলামে কনভার্ট হবে */
        gap: 25px;
    }

    .section-header h2 {
        font-size: 28px; /* ফন্ট সাইজ কিছুটা ছোট করা হয়েছে */
    }

    .service-box {
        padding: 30px 25px; /* ছোট স্ক্রিনে প্যাডিং কিছুটা কমানো হয়েছে */
    }

    .icon-wrapper {
        margin-bottom: 15px;
    }
}












/* --- Projects Section --- */
.projects-section {
    padding: 100px 8%;
    background-color: var(--bg-color);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: #F75858; /* আপনার রেড ব্র্যান্ড কালার */
    box-shadow: 0 10px 30px rgba(247, 88, 88, 0.1);
}

.project-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #1a1a1a; /* ইমেজ না থাকলে ডিফল্ট কালার */
}

.project-img img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.project-card:hover .project-img img {
    transform: scale(1.1);
}

.project-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.category-tag {
    font-size: 10px;
    font-weight: 700;
    color: #F75858; /* ব্লু এক্সেন্ট */
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.project-content h3 {
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 12px;
}

.project-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.tech-stack {
    display: flex;
    gap: 10px;
}

.tech-stack span {
    font-size: 11px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.live-btn {
    color: var(--text-color);
    font-size: 18px;
    transition: 0.3s;
}

.live-btn:hover {
    color: #F75858;
}

/* Responsive */
@media (max-width: 1024px) {
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .projects-grid { grid-template-columns: 1fr; }
}

.all-project-button{
    
}








/* Contact Section */

.contact-section {
    padding: 100px 5%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-top: 50px;
    align-items: center;
}

/* Contact Info Side */
 .info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    background: var(--card-bg);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.info-item i {
    font-size: 24px;
    color: #F75858;
}

.info-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
	text-align:center;
	
}

.info-item p {
    font-size: 14px;
    color: var(--text-muted);
}

/* WhatsApp Card Side */
.whatsapp-card {
    background: linear-gradient(145deg, rgba(37, 211, 102, 0.1), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(37, 211, 102, 0.3);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
}

.wa-icon {
    font-size: 60px;
    color: #25D366;
    margin-bottom: 20px;
}

.whatsapp-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.whatsapp-card p {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
    margin:auto;
    Padding-bottom:15px;
}

.wa-btn {
    display: inline-block;
    background: #25D366;
    color: #fff;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.wa-btn:hover {
    background: #1eb954;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .whatsapp-card {
        order: -1; /* মোবাইলে হোয়াটসঅ্যাপ কার্ড আগে দেখাবে */
    }
}







/* Footer Section */

.main-footer {
    padding: 60px 5% 30px;
    background-color: var(--bg-color);
    border-top: 1px solid var(--border-color);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 30px;
}

/* ব্র্যান্ডিং */
.footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
}

.footer-logo span {
    color: #F75858;
}
.footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 5px;
}

/* লিঙ্কস */
.footer-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 15px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #F75858;
}

/* সোশ্যাল আইকন স্টাইল */
.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-socials a:hover {
    background: #F75858;
    border-color: #F75858;
    color: #fff;
    transform: translateY(-3px);
}

/* কপিরাইট অংশ */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

/* মোবাইল রেসপন্সিভ */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-socials {
        justify-content: center;
    }
}






@media (max-width: 768px) {
    /* আগের সব display: none বা flex সরিয়ে ফেলুন এবং এটি দিন */
    #nav-menu {
        display: flex !important; /* ফোর্সফুলি ফ্লেক্স রাখা যাতে স্লাইড কাজ করে */
        position: fixed;
        top: 0;
        right: -100%; 
        width: 280px; /* নির্দিষ্ট উইডথ দিন */
        height: 100vh;
        background: #0a0a0f !important;
        flex-direction: column;
        transition: 0.5s ease;
        z-index: 9999;
    }

    #nav-menu.active {
        right: 0 !important;
    }

    .mobile-toggle {
        display: block !important;
        position: relative;
        z-index: 10000;
    }
}






/*journey-section*/

.journey-section {
    padding: 80px 0;
    background: #0a0a0f00;
    color: #fff;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.section-title span {
    color: var(--brand-color);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 30px;
}

/* মেইন ভার্টিকাল লাইন */
.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

/* গোল ডট */
.timeline-dot {
    position: absolute;
    left: -35px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--brand-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--brand-color);
}

.timeline-date {
    font-size: 14px;
    color: var(--brand-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(10px);
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.timeline-content .company {
    display: block;
    font-style: italic;
    color: #ccc;
    margin-bottom: 15px;
    font-size: 14px;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
}

.timeline-content ul li {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.timeline-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--brand-color);
}

/* Responsive */
@media (max-width: 768px) {
    .timeline {
        padding-left: 20px;
    }
    .timeline-content:hover {
        transform: none;
    }
    
    .journey-section .section-title {
    display: flex;
    flex-direction: column;
}
    
}




.project-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.project-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}




